@charset "utf-8";

/*--------------------------------------------------
	default
--------------------------------------------------*/
a:link { color: #a97af8; text-decoration: none; }
a:visited { color: #a97af8; text-decoration: none; }
a:hover { color: #a97af8; text-decoration: none; }
.disable { pointer-events: none; opacity: 0.3; }
@media screen and (min-width: 768px) {
a[href^="tel:"] { pointer-events: none; color: inherit; }
}

.bold {	font-weight: bold; }

::selection {background: #a97af8;color:#fff; }
::-moz-selection {background: #a97af8;color:#fff; }

.sp { display: none !important; }
@media screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: inherit !important; }
}

/*--------------------------------------------------
	layout
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	line-height: 1;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.0rem;
	color: #354ea1;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	background: #f0f4f4;
}
img {
	max-width: 100%;
	height: auto;
}

.wrap {
	position: relative; /* parallax */
	height: 0%; /* parallax */
	padding-top: unquote("min(100vh,75%)"); /* parallax */
	text-align: left;
	font-size: 1.6rem;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100%;
}
.animated_gradient {
	min-height: 100vh;
	background: linear-gradient(-90deg,
		rgba(209,238,92,0.3),
		rgba(242,113,155,0.25),
		rgba(100,141,215,0.3),
		rgba(188,114,222,0.3),
		rgba(248,222,119,0.3)
		);
	background-size: 250% 250%;
	animation: gradientShift 15s linear infinite;
}
@keyframes gradientShift {
	0% { background-position: 0% 0%; }
	50% { background-position: 100% 100%; }
	100% { background-position: 0% 0%; }
}

.inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
}
@media screen and (max-width: 767px) {
	.wrap {
		font-size: 1.4rem;
		background-image: url(../images/bg_sp.jpg);
		background-position: center top;
		background-repeat: repeat-y;
	}
	.animated_gradient {
		min-height: auto;
		height: auto;
		background: linear-gradient(-90deg,
			rgba(209,238,92,0.3),
			rgba(242,113,155,0.25),
			rgba(100,141,215,0.3),
			rgba(188,114,222,0.3),
			rgba(248,222,119,0.3)
			);
		background-size: 300% 300%;
		animation: gradientShift 15s linear infinite;
	}

	.inner {
		max-width: 100%;
		padding: 0 4%;
	}
}

/*--------------------------------------------------
	common
--------------------------------------------------*/
.mhstbox {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.mhstbox + .mhstbox {
	margin-top: 80px;
}
.mhstbox_top, .mhstbox_btm {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
}
.mhstbox_top {
	top: 0;
}
.mhstbox_btm {
	bottom: 0;
}
.mhstbox_top img, .mhstbox_btm img {
	width: 100%;
}
.mhstbox_mdl {
	position: relative;
	background: url(../images/mhstbox_mdl.png) no-repeat center center / 100% 96%;
	z-index: 1;
}
.mhstbox_bg {
	min-height: 280px;
	margin: 0 8px;
	padding: 80px 50px 80px;
}
.mhstbox_bg:before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 8px;
	left: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.6);
}
.mhstbox_inner {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.mhstbox + .mhstbox {
		margin-top: 40px;
	}
	.mhstbox_mdl {
		background: url(../images/mhstbox_mdl_sp.png) no-repeat center center / 100% 96%;
	}
	.mhstbox_bg {
		margin: 0 6px;
		padding: 50px 5.33% 50px;
	}
	.mhstbox_bg:before {
		top: 6px;
		bottom: 6px;
		left: 6px;
		right: 6px;
	}
}

/*--------------------------------------------------
	header
--------------------------------------------------*/
.header_hamburgerBtn {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 100px;
	height: 100px;
	background: linear-gradient(to bottom,  rgba(123,104,213,1) 0%,rgba(53,78,161,1) 100%);
	border-radius: 5px;
	filter: drop-shadow(0 0 20px rgba(53,78,161,0.2));
	cursor: pointer;
	z-index: 299;
}
.header_hamburger {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 44px;
	margin: auto;
	z-index: 300;
}
.header_hamburger span {
	display: block;
	height: 4px;
	width: 100%;
	background-color: #fff;
	transition: 0.4s;
}
.header_hamburger span + span {
	margin-top: 16px;
}
.header_nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 25%;
	min-width: 520px;
	height: 100%;
	padding: 8% 2.08%;
	background: rgba(53, 78, 161, 0.85);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
	z-index: 200;
}
.header_nav.open {
	opacity: 1;
	pointer-events: auto;
}
.header_hamburgerBtn.active span:nth-child(1) {
	transform: rotate(45deg) translate(14px, 14px);
}
.header_hamburgerBtn.active span:nth-child(2) {
	opacity: 0;
}
.header_hamburgerBtn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(14px, -14px);
}
.header_menu {
	font-size: 2.8rem;
	font-weight: bold;
}
.header_menu li + li,
.header_submenu li + li {
	margin-top: 40px;
}
.header_menu li a {
	color: #fff;
}
.header_menu li a:hover {
	text-decoration: none;
}
.header_submenu {
	line-height: 1.6;
	font-size: 1.8rem;
	margin-top: 40px;
}
.header_submenu li {
	padding-left: 15px;
	border-left: 4px #a97af8 solid;
}
.header_submenu li span {
	color: #a97af8;
}
@media screen and (max-width: 767px) {
	.header_hamburgerBtn {
		top: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
	.header_hamburger {
		width: 30px;
		height: 22px;
		margin: auto;
	}
	.header_hamburger span {
		height: 2px;
	}
	.header_hamburger span + span {
		margin-top: 8px;
	}
	.header_nav {
		width: 69.33%;
		min-width: initial;
		padding: 15% 5.33%;
	}
	.header_hamburgerBtn.active span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
	}
	.header_hamburgerBtn.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}
	.header_menu {
		font-size: 2rem;
	}
	.header_menu li + li,
	.header_submenu li + li {
		margin-top: 30px;
	}
	.header_submenu {
		font-size: 1.2rem;
		margin-top: 30px;
	}
	.header_submenu li {
		padding-left: 5px;
		border-left: 3px #a97af8 solid;
	}
}

/*--------------------------------------------------
	content
--------------------------------------------------*/
#intro {
	background: url(../images/bg_head.png) center top no-repeat;
	background-size: contain;
}
.intro_logo {
	text-align: center;
}
.intro_message {
	text-align: center;
	margin-top: -20px;
}
@media screen and (max-width: 767px) {
	#intro {
		background: url(../images/bg_head_sp.png) center top no-repeat;
		background-size: contain;
		overflow: hidden;
	}
	.intro_logo {
		margin-top: 60px;
	}
	.intro_logo img {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 127.73vw;
		max-width: initial;
	}
	.intro_message {
		margin-top: 20px;
	}
}


#campaign {
	margin-top: 120px;
}
.campaign_head {
	text-align: center;
}
.campaign_area {
	margin-top: 120px;
}
.campaign_block {
	position: relative;
	width: 100%;
	text-align: center;
	color: #fff;
	background: linear-gradient(to bottom,  rgba(123,104,213,1) 5%,rgba(123,104,213,1) 5%,rgba(53,78,161,1) 100%);
	filter: drop-shadow(0 0 20px rgba(53,78,161,0.2));
	z-index: 1;
}
.campaign_blockInner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px 110px;
}
.campaign_blockHead, .campaign_blockDeco {
	position: absolute;
	top: -80px;
	/* right: 0;
	left: 0; */
	left: 50%;
	transform: translateX(-50%);
}
.campaign_blockHead {
	z-index: -1;
}
.campaign_blockDeco {
	width: 100%;
}
.campaign_blockCont {
	transform: translateY(-20px);
}
@media screen and (max-width: 767px) {
	#campaign {
		margin-top: 60px;
	}
	.campaign_area {
		margin-top: 60px;
	}
	.campaign_blockInner {
		max-width: 100%;
		padding: 0 0 60px;
	}
	.campaign_blockHead, .campaign_blockDeco {
		top: -45px;
	}
	.campaign_blockCont {
		transform: translateY(-10px);
	}
}


.history_list {
	height: 520px;
	padding: 60px 0;
	background: rgba(255,255,255,0.8);
	box-shadow:
	0 0 60px rgba(255,255,255,1),
	0 0 60px rgba(255,255,255,1); 
}
.history_list .slick-track {
	display: flex;
	align-items: center;
}
.history_item {
	width: 286px !important;
	margin: 0 15px;
}
.history_item.rectangle {
	width: 400px !important;
}
.history_item.square {
	width: 318px !important;
}
@media screen and (max-width: 767px) {
	.history_list {
		height: 260px;
		padding: 30px 0;
	}
	.history_item {
		width: 143px !important;
		margin: 0 8px;
	}
	.history_item.rectangle {
		width: 200px !important;
	}
	.history_item.square {
		width: 159px !important;
	}
}


.event {
	margin-top: 100px;
}
.event_head {
	text-align: center;
}
.event_inner {
	line-height: 1.6;
	text-align: center;
	font-size: 1.8rem;
}
.event_intro {
	color: #a97af8;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.event_ribbon {
	font-size: 3rem;
	color: #fff;
	font-weight: bold;
	margin: 10px -50px 40px;
	padding: 20px 20px 15px;
	background: linear-gradient(to bottom,  rgba(123,104,213,1) 0%,rgba(53,78,161,1) 100%);
	filter: drop-shadow(0 0 20px rgba(53,78,161,0.2));
}
.event_border {
	width: 60%;
	border: 0;
	height: 1px;
	margin: 40px auto;
	background-image: linear-gradient(to right, rgba(53,78,161,0), rgba(53,78,161,1), rgba(53,78,161,0));
}
.event_itemName {
	font-weight: bold;
}
.event_itemSpec {
	font-size: 1.4rem;
	margin-top: 1em;
}
.event_itemImg {
	margin-top: 20px;
}
.event_detail {
	text-align: left;
	margin-top: 40px;
}
.event_subttl {
	font-size: 2.2rem;
	color: #fff;
	font-weight: bold;
	padding: 10px 10px 5px;
	background: #354ea1;
}
.event_subttl + p, .event_detail p + p {
	margin-top: 1em;
}
.event_note {
	font-size: 1.4rem;
	text-indent: -1em;
	margin-top: 1em;
	padding-left: 1em;
}
@media screen and (max-width: 767px) {
	.event {
		margin-top: 50px;
	}
	.event_head {
		width: 50.67%;
		margin: 0 auto;
	}
	.event_inner {
		text-align: left;
		font-size: 1.4rem;
	}
	.event_intro {
		text-align: center;
	}
	.event_ribbon {
		font-size: 1.6rem;
		margin: 10px -6.67% 20px;
		padding: 15px 6.67% 15px;
	}
	.event_border {
		margin: 25px auto;
	}
	.event_itemSpec {
		font-size: 1.2rem;
	}
	.event_itemImg {
		margin-top: 10px;
	}
	.event_detail {
		margin-top: 20px;
	}
	.event_subttl {
		font-size: 1.4rem;
		padding: 5px;
	}
	.event_note {
		font-size: 1.2rem;
	}
}





/*--------------------------------------------------
	footer
--------------------------------------------------*/
footer {
	margin-top: 100px;
	padding-bottom: 20px;
}
.footer_bnr {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_bnr li {
	width: 400px;
	margin: 0 10px;
}
.footer_copy {
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	footer {
		margin-top: 50px;
	}
	.footer_copy {
		font-size: 1rem;
		margin-top: 20px;
	}
}