@charset "utf-8";


/* mainSlide */
main .mainSlide {
	display: none;
}
main .mainSlide.slick-initialized {
	display: block;
}
main .mainSlide p {
	margin: 0 1.5rem;
	width: 62rem;
}
main .mainSlide p img {
	border-radius: 0 0 4rem 4rem;
}
main .mainSlide .slickPrev {
	width: 7.4rem;
	position: absolute;
	top: calc(50% - 4rem - 3.7rem);
	left: calc(50% - 23%);
	z-index: 1;
}
main .mainSlide .slickNext {
	width: 7.4rem;
	position: absolute;
	top: calc(50% - 4rem - 3.7rem);
	right: calc(50% - 23%);
	z-index: 1;
}
main .mainSlide .slickDots {
	margin: 3rem 0 0;
	display: flex;
	justify-content: center;
}
main .mainSlide .slickDots li {
	background: var(--grayColor);
	margin: 0 0.5rem;
	width: 1rem;
	height: 1rem;
	border-radius: 0.5rem;
}
main .mainSlide .slickDots li.slick-active {
	background: var(--mainColor);
}
main .mainSlide .slickDots li button {
	display: none;
}
@media (max-width: 768px) {
	main .mainSlide p {
		margin: 0;
		width: 100%;
	}
	main .mainSlide p img {
		border-radius: 0 0 0 4rem;
	}
	main .mainSlide .slickDots {
		margin: 2.5rem 0 0;
	}
	main .mainSlide .slickDots li {
		margin: 0 0.7rem;
		width: 1.6rem;
		height: 1.6rem;
		border-radius: 0.8rem;
	}
}

/* event */
main .event {
	margin-top: 10rem;
	padding: 1rem 0 8rem;
	position: relative;
}
main .event::before {
	display: block;
	content: '';
	width: calc(100% - 5rem);
	height: 100%;
	border-radius: 4rem 0 0 4rem;
	background-color: var(--subColor);
	position: absolute;
	top: 0;
	left: 5rem;
	z-index: -1;
}
main .event .ttl {
	position: relative;
	top: -4.5rem;
}
main .event .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 5.5rem 1.6%;
}
main .event .wrap > div {
	width: 23.75%;
}
main .event .pic {
	width: 100%;
	max-width: 28.5rem;
}
main .event .pic img {
	width: 28.5rem;
	height: 28.5rem;
	object-fit: cover;
	border-radius: 2rem;
}
main .event .ttlTxt {
	margin-top: 0.8rem;
	font-weight: 700;
}
main .event .period {
	margin-top: 0.3rem;
	font-size: 1.4rem;
	font-weight: 400;
}
main .event .btnType01 {
	margin: 5.5rem auto 0;
	width: 32rem;
}
@media (max-width: 1360px) {
	main .event::before {
		width: 100%;
		left: 0;
	}
}
@media (max-width: 768px) {
	main .event {
		margin-top: 11rem;
		padding: 1rem 0 7rem;
	}
	main .event .ttl {
		margin-bottom: -3rem;
		top: -6.5rem;
	}
	main .event .wrap {
		gap: 5.5rem 4.3%;
	}
	main .event .wrap > div {
		width: 47.8%;
	}
	main .event .pic {
		max-width: 33rem;
	}
	main .event .pic img {
		width: 33rem;
		height: 33rem;
		border-radius: 2.3rem;
	}
	main .event .ttlTxt {
		margin-top: 1.3rem;
		font-size: 2.6rem;
		line-height: 1.5;
	}
	main .event .period {
		margin-top: 0.5rem;
		font-size: 2.4rem;
	}
	main .event .btnType01 {
		margin: 5.5rem auto 0;
		width: 48rem;
	}
}

/* feature */
main .feature {
	margin-top: 10rem;
	padding: 1rem 0 8rem;
	position: relative;
}
main .feature::before {
	display: block;
	content: '';
	width: calc(100% - 5rem);
	height: 100%;
	border-radius: 0 4rem 4rem 0;
	background-color: var(--subColor);
	position: absolute;
	top: 0;
	right: 5rem;
	z-index: -1;
}
main .feature .ttl {
	position: relative;
	top: -4.5rem;
}
main .feature .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem 2.5%;
}
main .feature .wrap > div {
	width: 31.6%;
}
main .feature .pic {
	border-radius: 2rem;
}
main .feature .ttlTxt {
	margin-top: 1.5rem;
	font-weight: 700;
}
main .feature .period {
	margin-top: 0.5rem;
	font-size: 1.4rem;
	font-weight: 400;
}
@media (max-width: 1360px) {
	main .feature::before {
		width: 100%;
		right: 0;
	}
}
@media (max-width: 768px) {
	main .feature {
		margin-top: 12rem;
		padding: 1rem 0 8rem;
	}
	main .feature .ttl {
		margin-bottom: -3rem;
		top: -6.5rem;
	}
	main .feature .wrap {
		flex-wrap: nowrap;
		gap: 0 4.3%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 3rem;
	}
	main .feature .wrap > div {
		width: 56.5%;
		flex: 0 0 56.5%;
		scroll-snap-align: start;
	}
	main .feature .pic {
		border-radius: 2.3rem;
	}
	main .feature .ttlTxt {
		margin-top: 1rem;
		font-size: 2.6rem;
		line-height: 1.5;
	}
	main .feature .period {
		font-size: 2.4rem;
	}
}

/* information */
main .information {
	padding: 7rem 0 6rem;
}
main .information .wrap {
	display: flex;
	align-items: center;
	gap: 0 7rem;
}
main .information .ttlWrap {
	width: 19rem;
}
main .information .ttlWrap .btnType03 {
	margin: 1.5rem auto 0;
	width: 100%;
}
main .information .ttlWrap .ttl {
	font-size: 4.6rem;
}
main .information .infoWrap {
	width: 94rem;
	border-bottom: solid 1px var(--grayColor);
}
main .information .info {
	border-top: solid 1px var(--grayColor);
}
main .information .info a {
	padding: 2.5rem 0;
	display: flex;
	align-items: center;
	gap: 0 1.5rem;
}
main .information .info .date {
	margin-right: 0.5rem;
	font-size: 1.4rem;
	color: #666;
}
main .information .info .tags {
	margin-top: 0;
}
main .information .info .txt {
	position: relative;
}
main .information .info .pdf .txt::after {
	margin-left: 0.7rem;
	display: inline-block;
	content: '';
	width: 3.5rem;
	height: 2.1rem;
	background-image: url(/emiterrace/common/img/icon_pdf.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: bottom;
}
main .information .info .page .txt::after {
	margin-left: 0.7rem;
	display: inline-block;
	content: '';
	width: 2rem;
	height: 2rem;
	background-image: url(/emiterrace/common/img/icon_blank.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: bottom;
}
@media (max-width: 768px) {
	main .information {
		padding: 6rem 0 6rem;
	}
	main .information .wrap {
		flex-direction: column;
		gap: 1.5rem 0;
	}
	main .information .ttlWrap {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	main .information .ttlWrap .btnType03 {
		margin: 0;
		width: 25rem;
	}
	main .information .ttlWrap .ttl {
		font-size: 5.8rem;
	}
	main .information .infoWrap {
		width: 100%;
		border-width: 0.2rem;
	}
	main .information .info {
		border-width: 0.2rem;
	}
	main .information .info a {
		flex-wrap: wrap;
		gap: 0.5rem 1.5rem;
	}
	main .information .info .date {
		font-size: 2.4rem;
	}
	main .information .info .txt {
		width: 100%;
		font-size: 2.6rem;
		line-height: 1.5;
	}
	main .information .info .pdf .txt::after {
		margin-left: 1.3rem;
		width: 6.2rem;
		height: 3.4rem;
	}
	main .information .info .page .txt::after {
		margin-left: 1.3rem;
		width: 3rem;
		height: 3rem;
		vertical-align: sub;
	}
}

/* shopnews */
main .shopnews {
	margin-top: 6rem;
	padding: 1rem 0 5rem;
	position: relative;
}
main .shopnews::before {
	display: block;
	content: '';
	width: calc(100% - 5rem);
	height: 100%;
	border-radius: 4rem 0 0 4rem;
	background-color: var(--subColor);
	position: absolute;
	top: 0;
	left: 5rem;
	z-index: -1;
}
main .shopnews .ttl {
	position: relative;
	top: -4.5rem;
}
main .shopnews .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 6rem 1.6%;
}
main .shopnews .wrap > div {
	width: 23.75%;
}
main .shopnews .pic {
	width: 100%;
	max-width: 28.5rem;
}
main .shopnews .pic img {
	width: 28.5rem;
	height: 28.5rem;
	object-fit: cover;
	border-radius: 2rem;
}
main .shopnews .date {
	margin-top: 1.5rem;
	font-size: 1.4rem;
	font-weight: 400;
}
main .shopnews .ttlTxt {
	margin-top: 0.5rem;
	font-weight: 700;
}
main .shopnews .shopName {
	margin-top: 0.5rem;
	font-size: 1.4rem;
	font-weight: 400;
}
main .shopnews .btnType01 {
	margin: 5.5rem auto 0;
	width: 32rem;
}
@media (max-width: 1360px) {
	main .shopnews::before {
		width: 100%;
		left: 0;
	}
}
@media (max-width: 768px) {
	main .shopnews {
		margin-top: 6rem;
		padding: 1rem 0 7rem;
	}
	main .shopnews .ttl {
		margin-bottom: -3rem;
		top: -6.5rem;
	}
	main .shopnews .wrap {
		gap: 5.5rem 4.3%;
	}
	main .shopnews .wrap > div {
		width: 47.8%;
	}
	main .shopnews .pic {
		max-width: 33rem;
	}
	main .shopnews .pic img {
		width: 33rem;
		height: 33rem;
		border-radius: 2.3rem;
	}
	main .shopnews .date {
		margin-top: 1rem;
		font-size: 2.4rem;
	}
	main .shopnews .ttlTxt {
		margin-top: 0;
		font-size: 2.6rem;
		line-height: 1.5;
	}
	main .shopnews .shopName {
		font-size: 2.4rem;
	}
	main .shopnews .btnType01 {
		width: 48rem;
	}
}
