@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.sec01 .mainBox {
	position: relative;
	width: 100%;
	height: 100%;
}
.sec01 .mainBox .mainImg {
	margin-top: 7px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 288px;
}
.sec01 .mainBox .scroll {
	margin-left: -22px;
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 43px;
	animation: scroll_down 2s ease-in-out infinite;
}
.sec02 .original {
	position: relative;
	width: 100%;
	height: 100%;
}
.sec02 .original .innerBox {
	margin: 11px 0 0 -30px;
	width: 752px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.sec02 .original .innerBox .textBox {
	max-width: 299px;
}
.sec02 .original .innerBox .closeBox {
	margin-top: -10px;
	max-width: 340px;
}
.sec02 .original .innerBox h2 {
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	font-feature-settings : "palt";
}
.sec02 .original .innerBox h2 span {
	margin-bottom: 4px;
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	font-family: "brandon-grotesque",sans-serif;
	letter-spacing: 0.1em;
}
.sec02 .original .innerBox h3 {
	margin-bottom: 27px;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.sec02 .original .innerBox p {
	margin-bottom: 27px;
	color: #280d33;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 2;
	letter-spacing: 0.14em;
	-webkit-font-smoothing: antialiased;
	font-feature-settings : "palt";
}
.sec02 .original .innerBox .txt {
	font-size: 1.7rem;
}
.sec02 .original .innerBox p:last-child {
	margin-bottom: 0;
}
.fig {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.fig .img {
	position: absolute;
	top: -63px;
	right: -46px;
	width: 551px;
	opacity: 0.24;
}
.fig .img02 {
	bottom: -54px;
	left: -62px;
	width: 547px;
	top: auto;
	right: auto;
}
.fig .imgBox {
	margin: 1px 0 0 18px;
	width: 634px;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.fig .imgBox .photoBox {
	max-width: 381px;
	order: 2;
	margin: 3px 0 0 -53px;
}
.fig .imgBox .textBox {
	width: 369px;
	margin-top: 52px;
}
.fig .imgBox .textBox h2 {
	margin-bottom: 19px;
	width: 148px;
}
.fig .imgBox .textBox h3 {
	margin-bottom: 24px;
	color: #7c4994;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}
.fig .imgBox .textBox h3 span {
	vertical-align: -1px;
	font-size: 1.9rem;
}
.fig .imgBox .textBox p {
	margin-bottom: 19px;
	color: #7c4994;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1.766;
}
.fig .imgBox .textBox .btn a {
	padding: 15px 10px;
	width: 196px;
	height: 50px;
	display: block;
	color: #fff;
	font-size: 1.3rem;
	font-family: "brandon-grotesque",sans-serif;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.18em;
	box-sizing: border-box;
	background: url(../img/index/btn_bg.png) no-repeat center center / 100% 100%;
	position: relative;
}
@media all and (min-width: 897px) {
	.fig .imgBox .textBox .btn a:hover {
		opacity: 0.7;
		background-image: url(../img/index/btn_bg_hover.png);
	}
}
.fig .imgBox .textBox .btn a::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	width: 12px;
	height: 2px;
	background-color: #fff;
	content: '';
}
.sec04 {
	position: relative;
	width: 100%;
	height: 100%;
}
.sec04 .imgBox {
	margin: -16px 0 0 29px;
	max-width: 514px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: flex-end;
}
.sec04 .imgBox .photoBox {
	margin-right: 52px;
	width: 172px;
}
.sec04 .imgBox .textBox {
	margin-bottom: 23px;
	flex: 1;
}
.sec04 .imgBox h2 {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin-bottom: 8px;
}
.sec04 .imgBox p a {
	font-size: 3.2rem;
	font-weight: 500;
	font-family: "brandon-grotesque",sans-serif;
	letter-spacing: 0.05em;
	white-space: nowrap;
	line-height: 1;
	text-decoration: underline;
	transition: all 0.3s;
}
.sec04 .imgBox p a:hover {
	opacity: 0.8;
}
@keyframes scroll_down {
	0% {
		transform: translate(0, -20px);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translate(0, 20px);
		opacity: 0;
	}
}
@media all and (max-width: 896px) {
	.sec01 .mainBox .mainImg {
		margin-top: -7px;
		width: 220px;
	}
	.sec01 .mainBox .scroll {
		bottom: 62px;
		width: 39px;
		margin-left: -20px;
	}
	.sec02 .original .innerBox {
		margin: 0;
		width: 100%;
		display: block;
		padding: 20px 50px 0;
		box-sizing: border-box;
	}
	.sec02 .original .innerBox .closeBox {
		margin: 0 0 26px;;
		max-width: inherit;
	}	
	.sec02 .original .innerBox h2 {
		font-size: 1.1rem;
		font-weight: 800;
		letter-spacing: 0.1em;
	}
	.sec02 .original .innerBox h2 span {
		margin-bottom: 1px;
		font-size: 2.1rem;
		letter-spacing: 0.06em;
	}	
	.sec02 .original .innerBox h3 {
		margin-bottom: 20px;
		font-size: 2.3rem;
		letter-spacing: 0.05em;
	}
	.sec02 .original .innerBox .textBox {
		max-width: inherit;
		text-align: center;
	}
	.sec02 .original .innerBox p {
		margin-bottom: 24px;
		font-size: 1.3rem;
		line-height: 1.846;
		letter-spacing: 0.1em;
	}
	.sec02 .original .innerBox .txt {
		font-size: 1.6rem;
		margin-bottom: 19px;
	}
	.fig .img {
		top: auto;
		right: -24px;
		width: 452px;
		opacity: 0.24;
		bottom: -25px;
		left: -53px;
	}
	.fig .img02 {
		display: none;
	}
	.fig .imgBox {
		margin: 0;
		padding: 63px 30px 0;
		box-sizing: border-box;
		max-width: inherit;
		display: block;
		width: 100%;
	}
	.fig .imgBox .textBox {
		margin-top: 0;
		width: auto;
	}
	.fig .imgBox .photoBox {
		max-width: 286px;
		margin: 0 -14px -32px auto;
	}
	.fig .imgBox .textBox h2 {
		margin-bottom: 17px;
		width: 148px;
	}
	.fig .imgBox .textBox h3 {
		margin-bottom: 20px;
	}
	.fig .imgBox .textBox p {
		margin-bottom: 24px;
		letter-spacing: 0.03em;
	}
	.fig .imgBox .textBox .btn {
		padding-left: 2px;
	}
	.sec04 .imgBox {
		margin: 0;
		max-width: inherit;
		display: block;
	}
	.sec04 .imgBox .photoBox {
		margin: 0 auto 37px;
		width: 189px;
	}
	.sec04 .imgBox .textBox {
		margin-bottom: 0;
		text-align: center;
	}
	.sec04 .imgBox h2 {
		font-size: 1.56rem;
		margin-bottom: 7px;
	}
	.sec04 .imgBox p a {
		font-size: 2.55rem;
	}
}
@media all and (max-width: 374px) {
	.sec02 .original .innerBox {
		padding: 20px 20px 0;
	}
	.fig .imgBox .textBox h3 {
		font-size: 1.2rem;
	}
	.fig .imgBox .textBox h3 span {
		font-size: 1.6rem;
	}
	.fig .imgBox .textBox p {
		font-size: 1.3rem;
	}
}
@media all and (max-width: 896px) and (max-height: 400px) {
	.sec01 .mainBox .mainImg {
		margin-top: -7px;
		width: 190px;
	}
	.sec02 .original .innerBox .closeBox {
		margin: 0 0 8px;
	}	
	.sec02 .original .innerBox h2 {
		font-size: 1rem;
	}
	.sec02 .original .innerBox h2 span {
		font-size: 1.7rem;
		letter-spacing: 0;
	}
	.sec02 .original .innerBox h3 {
		margin-bottom: 6px;
		font-size: 1.4rem;
	}
	.sec02 .original .innerBox p {
		margin-bottom: 10px;
		font-size: 1.2rem;
		line-height: 1.646;
	}
	.sec02 .original .innerBox .txt {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}
	.fig .imgBox .photoBox {
		max-width: 200px;
		margin: 0 -14px -57px auto;
	}	
	.fig .imgBox .textBox h2 {
		margin-bottom: 13px;
		width: 110px;
	}
	.fig .imgBox .textBox h3 {
		margin-bottom: 8px;
	}
	.fig .imgBox .textBox h3 span {
		font-size: 1.8rem;
	}
	.fig .imgBox .textBox p {
		margin-bottom: 8px;
	}
	.fig .imgBox {
		padding: 0 30px;
	}
	.sec04 .imgBox .photoBox {
		margin: 0 auto 22px;
		width: 150px;
	}
	.sec04 .imgBox h2 {
		font-size: 1.46rem;
		margin-bottom: 5px;
	}
	.sec04 .imgBox p a {
		font-size: 2.2rem;
	}
}
@media all and (max-width: 374px) and (max-height: 550px) {
	.sec02 .original .innerBox .closeBox {
		margin: 0 0 8px;
	}
	.sec02 .original .innerBox h2 {
		font-size: 1rem;
	}
	.sec02 .original .innerBox h2 span {
		font-size: 1.6rem;
	}
	.sec02 .original .innerBox h3 {
		margin-bottom: 8px;
		font-size: 1.4rem;
	}
	.sec02 .original .innerBox p {
		margin-bottom: 9px;
		font-size: 1.2rem;
		line-height: 1.446;
	}
	.sec02 .original .innerBox .txt {
		font-size: 1.3rem;
		margin-bottom: 9px;
	}
	.fig .imgBox {
		padding: 14px 30px 0;
	}
	.fig .imgBox .photoBox {
		max-width: 200px;
		margin: 0 -14px -50px auto;
	}
	.fig .imgBox .textBox h2 {
		margin-bottom: 12px;
		width: 100px;
	}
	.fig .imgBox .textBox h3 {
		margin-bottom: 7px;
		font-size: 1.1rem;
	}
	.fig .imgBox .textBox h3 span {
		font-size: 1.4rem;
	}
	.fig .imgBox .textBox p {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
	.sec04 .imgBox .photoBox {
		margin: 0 auto 18px;
		width: 108px;
	}
	.sec04 .imgBox h2 {
		font-size: 1.36rem;
		margin-bottom: 7px;
	}
	.sec04 .imgBox p a {
		font-size: 2rem;
	}
}
.td-220915{
	text-decoration: underline;
	text-decoration-color: #280d33;
}