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

/* ---------------------------------------
  基本情報
-----------------------------------------*/

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: 500;
	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: #272676;
	font-size: 1.0rem;
	text-align: left;
	min-width: 128rem;
}

main {
	display: block;
	overflow: hidden;
	padding-top: 10rem;
}

section {
	position: relative;
}

.wrap {
	width: 120rem;
	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;
}

.flex.jc_center {
	justify-content: center;
}

.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*/
.en {
	font-weight: 500;
	font-family: 'Vollkorn', serif;
}

.gothic {
	font-weight: 400;
	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: 12rem;
	}

	.wrap {
		width: 84%;
	}

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

	.sp_block {
		display: block;
	}
}

/* ---------------------------------------
  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: 100px;
	background-color: #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

#header .wrap {
	width: 120rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .logowrap .logo {
	width: 35.9rem;
}

#header .logowrap a {
	display: block;
}

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

#header .menuwrap {
	display: flex;
}

#header .catch {
	font-size: 0;
	line-height: 1;
	width: 17.2rem;
    margin: 1.4rem auto 0;
}

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

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

#header .gnavi > li {
	font-weight: 700;
	font-size: 1.55rem;
	letter-spacing: 0.1em;
}

#header .gnavi > li + li {
	margin-left: 6rem;
}

#header .gnavi a {
	display: block;
	transition: .3s ease;
}

.btn_entry_top a {
	width: 240px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background : linear-gradient(135deg, rgba(48, 74, 181, 1), rgba(39, 38, 118, 1), rgba(48, 74, 181, 1));
	background-size: 200% 100%;
	transition: .3s ease; 
	position: relative;
}

.btn_entry_top a .btntxt {
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.5;
}

.btn_entry_top a .btntxt .en {
	display: block;
	font-weight: 600;
	font-size: 2.2rem;
	letter-spacing: 0.14em;
}

#header .btn_entry_top a::before {
	content: "";
	width: 18px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transition: .3s ease;
}

@media screen and (min-width: 768px) {
	#header .gnavi > li a:hover {
		color: #67679f;
	}

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

	#header .btn_entry_top a:hover::before {
		width: 18px;
	}
	

	#header .logowrap {
		margin-left: -10rem;
	}
}

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

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

	#header .logowrap .logo {
		width: 18.8rem;
	}

	#header .menu-trigger {
		display: block;
		width: 7rem;
		height: 7rem;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 100;
	}

	#header .menu-trigger::before {
		content: "";
		width: 16.6rem;
		height: 16.6rem;
		border-radius: 50%;
		background: url(../img/common/trigger_bg_b.png) no-repeat center / contain;
		position: absolute;
		right: -6rem;
		top: -5rem;
	}

	#header.navOpen .menu-trigger::before {
		background: url(../img/common/trigger_bg_w.png) no-repeat center / contain;
	}

	#header .menu-trigger span {
		display: inline-block;
		width: 100%;
		height: .4rem;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		background-color: #272676;
		transition: all .4s;
	}

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

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

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

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

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

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

	#header nav#menu .menuwrap .menulogo .logo {
		font-size: 0;
		width: 25.8rem;
		margin: 0 auto;
	}

	#header nav#menu .menuwrap .menulogo .catch {
		font-size: 0;
		width: 30.8rem;
		margin: 5rem auto 0;
	}

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

	#header .gnavi > li {
		font-size: 3.52rem;
	}

	#header .gnavi > li + li {
		margin-left: 0;
		margin-top: 1.5em;
	}

	#header .gnavi a {
		display: block;
		transition: .3s ease;
	}

	#header .gnavi > li > a::before {
		content: "";
		width: 2.2rem;
		height: .3rem;
		background-color: #272676;
		display: inline-block;
		position: relative;
		vertical-align: .4em;
		margin-right: 1em;
		transition: .3s ease;
	}

	#header .closebtn {
		position: relative;
		text-align: center;
		margin-top: 12rem;
		line-height: 1.5;
	}

	#header .closebtn span {
		display: inline-block;
		position: relative;
		font-weight: 600;
		font-size: 3.52rem;
		letter-spacing: 0.14em;
		padding-left: 4.5rem;
	}

	#header .closebtn span::before,
	#header .closebtn span::after {
		content: "";
		width: 2.2rem;
		height: .3rem;
		background-color: #272676;
		position: absolute;
		left: 0;
		top: 48%;
		margin-top: -.15rem;
		transition: .3s ease;
	}

	#header .closebtn span::before {
		transform: rotate(45deg);
	}

	#header .closebtn span::after {
		transform: rotate(-45deg);
	}

	#header .btn_entry_top {
		margin-top: 6.8rem;
		margin-left: auto;
		margin-right: auto;
	}

	#header .btn_entry_top a {
		width: 55.6rem;
		height: 17.6rem;
		box-shadow: 3rem 3rem 3rem rgba(39, 38, 118, 0.3);
		margin: 0 auto;
	}

	#header .btn_entry_top a::before {
		content: "";
		width: 28px;
		height: 1px;
		background-color: #fff;
		position: absolute;
		right: 0;
		top: 50%;
		transition: .3s ease;
	}

	#header .btn_entry_top a .btntxt {
		font-size: 2.2rem;
		line-height: 1.8;
	}

	#header .btn_entry_top a .btntxt .en {
		font-size: 3.2rem;
	}
}


/* ---------------------------------------
  main common
-----------------------------------------*/
.page_wrap {
	position: relative;
}

.page_wrap::before {
	content: "";
	width: 100%;
	height: 721px;
	background: linear-gradient(160.42deg, rgba(255, 255, 255, 1) 45%, rgba(237, 235, 250, 1) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.page_wrap::before {
		height: 95.2rem;
	}
}

/* slick
----------------*/
.slick-slider {
	opacity: 0;
	transition: opacity .3s linear;
}

.slick-slider.slick-initialized {
	opacity: 1;
}


/* pagettl
----------------*/
#pagettl {
	height: 23rem;
	background: linear-gradient(90deg, rgba(247, 248, 255, 1) 0%, rgba(234, 237, 255, 1) 100%);
}

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

#pagettl .ttl {
	position: relative;
	font-weight: 700;
	font-size: 1.5rem;
}

#pagettl .ttl span.en {
	display: block;
	position: relative;
	font-weight: 600;
	font-size: 4rem;
	line-height: 1;
	letter-spacing: 0.15em;
	padding-bottom: .4em;
	margin-bottom: .5em;
}

#pagettl .ttl span.en::after {
	content: "";
	width: 3rem;
	height: .3rem;
	background-color: #272676;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}

/* btn
----------------*/
.btn a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 19.6rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: .75em 2.5em .75em 2.25em;
	background: linear-gradient(90deg, rgba(48, 74, 181, 1), rgba(39, 38, 118, 1), rgba(48, 74, 181, 1));
	background-size: 200% 100%;
	box-shadow: 2rem 2rem 2rem rgba(39, 38, 118, .3);
	transition: .3s ease;
}

.btn a::before {
	content: "";
	width: 2.8rem;
	height: .1rem;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transition: .3s ease;
}

.btn._back a::before{
	right: auto;
	left: 0;
}


@media screen and (min-width: 768px) {
	.btn a:hover {
		background-position: right center;
	}

	.btn a:hover::before {
		width: 1.8rem;
	}

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

}

@media screen and (max-width: 767px) {
	#pagettl {
		height: 36rem;
	}

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

	#pagettl .ttl span.en {
		font-size: 6.48rem;
	}

	#pagettl .ttl span.en::after {
		width: 4.7rem;
		height: .48rem;
	}

	.btn a {
		min-width: 29.4rem;
		font-size: 2.4rem;
		padding: .75em 2.5em;
	}

	.btn a::before {
		width: 4.2rem;
		height: 1px;
	}
}

/* ---------------------------------------
  ENTRY ボタン
-----------------------------------------*/
@media screen and (max-width: 768px) {
	.btn_entry {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
	}

	.btn_entry.nofixed {
		position: absolute;
	}

	.btn_entry a {
		width: 100%;
		height: 15.3rem;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, rgba(48, 74, 181, 1) 0%, rgba(39, 38, 118, 1) 100%);
	}

	.btn_entry a::before {
		content: "";
		width: 7rem;
		height: 1px;
		background-color: #fff;
		position: absolute;
		right: 0;
		top: 50%;
	}

	.btn_entry a .btntxt {
		text-align: center;
		color: #fff;
		font-size: 2.4rem;
		line-height: 1.8;
	}

	.btn_entry a .btntxt .en {
		display: block;
		font-weight: 600;
		line-height: 1.2;
		font-size: 3.9rem;
	}
}

/* ---------------------------------------
  フッター
-----------------------------------------*/
#footer {
	padding-bottom: 2.5rem;
}

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

#footer .logowrap .logo {
	width: 32.8rem;
	margin: 0 auto;
}

#footer .logowrap .logo a {
	display: block;
}

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


#footer .inner {
	background-color: #fff;
}

#footer .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0 1.4rem;
}

#footer .fnavi {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#footer .fnavi li {
	color: #000;
	font-size: 1.2rem;
	line-height: 1.75;
}

#footer .fnavi li + li {
	margin-left: 5rem;
}

#footer .fnavi li a {
	display: flex;
	align-items: center;
	transition: .3s ease;
}

#footer .fnavi li .ico {
	height: 1.75em;
	display: inline-flex;
	align-items: center;
	margin-right: 1.6rem;
	margin-top: -.1rem;
}

#footer .copyright {
	color: #333333;
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
	#footer .fnavi li a:hover {
		opacity: .7;
	}
}

@media screen and (max-width: 767px) {
	#footer {
		padding-bottom: 15.3rem;
	}

	#footer .logowrap {
		padding: 8rem 0;
	}

	#footer .logowrap .logo {
		width: 43.7rem;
	}

	#footer .inner {
		background: transparent;
	}

	#footer .wrap {
		width: 100%;
		display: block;
		padding: 0;
	}

	#footer .fnavi {
		justify-content: space-between;
		padding: 2.25rem 6rem;
		background-color: #fff;
	}

	#footer .fnavi li {
		font-size: 1.8rem;
	}

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

	#footer .fnavi li .ico {
		width: 2.2rem;
		margin-right: 1.6rem;
		margin-top: 0;
	}

	#footer .fnavi li:nth-child(1) .ico {
		width: 2.7rem;
	}

	#footer .copyright {
		text-align: center;
		font-size: 1.8rem;
		padding: 3.2rem 6rem 4.8rem;
	}
}


/* ---------------------------------------
  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 */