@charset "utf-8";

.lowerLayer .mainContentWrap {
	padding-bottom: 100px;
}
@media (max-width: 768px) {
	.lowerLayer .mainContentWrap.bgGray.spWhite {
		padding-bottom: 13.333vw;
		background: var(--whiteColor);
	}
}

/* lowerLayerContent */
section.lowerLayerContent {
	max-width: 1020px;
	margin: 0 auto;
	padding: 20px 30px 0;
}
section.lowerLayerContent + section.lowerLayerContent {
	padding-top: 50px;
}
@media (max-width: 768px) {
	section.lowerLayerContent {
		padding: 0;
		margin: 0 -4vw;
	}
	section.lowerLayerContent + section.lowerLayerContent {
		padding-top: 0;
	}
}

.lowerLayer .innerBox {
	background: var(--whiteColor);
	padding: 60px;
	border-radius: 20px;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.07);
}
@media (max-width: 768px) {
	.lowerLayer .innerBox {
		padding: 30px 5.333vw;
		border-radius: 0;
		box-shadow: none;
	}
}

/* articleTtlWrap */
.lowerLayer .articleTtlWrap {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--grayBorderColor);
}
.lowerLayer .articleTtlWrap .iconWrap {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-end;
	gap: 0 10px;
}
.lowerLayer .articleTtlWrap .iconWrap .black,
.lowerLayer .articleTtlWrap .iconWrap .green {
	line-height: 1;
	text-align: center;
}
.lowerLayer .articleTtlWrap .iconWrap .black span {
	font-size: 13px;
	color: var(--whiteColor);
	background: var(--baseColor);
	padding: 4px 4px 5px;
	display: inline-block;
}
.lowerLayer .articleTtlWrap .iconWrap .green span {
	font-size: 13px;
	color: var(--whiteColor);
	background: var(--greenColor);
	padding: 2px 3px 3px;
	display: inline-block;
}
.lowerLayer .articleTtlWrap h1.articleTtl {
	font-size: 26px;
	font-weight: 600;
}
.lowerLayer .articleTtlWrap .date {
	margin-top: 15px;
	font-size: 14px;
}
@media (max-width: 768px) {
	.lowerLayer .articleTtlWrap {
		padding-bottom: 16px;
	}
	.lowerLayer .articleTtlWrap .iconWrap {
		margin-bottom: 10px;
		gap: 0 10px;
	}
	.lowerLayer .articleTtlWrap .iconWrap .black span {
		font-size: 13px;
		padding: 2px 4px 3px;
	}
	.lowerLayer .articleTtlWrap .iconWrap .green span {
		font-size: 12px;
		padding: 1px 3px 2px;
	}
	.lowerLayer .articleTtlWrap h1.articleTtl {
		font-size: 19px;
	}
	.lowerLayer .articleTtlWrap .date {
		margin-top: 10px;
		font-size: 12px;
	}
}

/* mvWrap */
.lowerLayer .mvWrap {
	margin-bottom: 40px;
}
.lowerLayer .mainSwiper {
	padding-top: 40px;
	padding-bottom: 5px;
	max-width: 720px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.lowerLayer .mainSwiper .swiper-wrapper {
	align-items: center;
}
.lowerLayer .mainSwiper .swiper-slide img {
	display: block;
	width: auto;
	max-width: calc(100% - 180px);
	height: auto;
	margin: 0 auto;
}
.lowerLayer .mainSwiper .pager {
	margin: 25px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lowerLayer .mainSwiper .pager .swiperPause {
	display: block;
	width: 26px;
	margin-right: 8px;
}
.lowerLayer .mainSwiper .swiper-button-lock + .pager {
	 display: none;
}
.lowerLayer .mainSwiper .pager .swiper-pagination {
	position: static;
	width: auto;
	display: flex;
	align-items: center;
}
.lowerLayer .mainSwiper .pager .swiper-pagination-bullet {
	margin: 0 8px;
	width: 11px;
	height: 11px;
	overflow: hidden;
	cursor: pointer;
	background: var(--grayBorderColor);
	opacity: 1;
	border-radius: 11px;
	transition: all 0.42s;
	position: relative;
}
.lowerLayer .mainSwiper .pager .swiper-pagination-bullet-active {
	background: var(--baseColor);
}
@media (max-width: 768px) {
	.lowerLayer .mvWrap {
		margin-bottom: 25px;
	}
	.lowerLayer .mainSwiper {
		padding-top: 26px;
		width: 100%;
	}
	.lowerLayer .mainSwiper .swiper-slide img {
		max-width: 100%;
	}
	.lowerLayer .mainSwiper .pager {
		margin-top: 12px;
	}
	.lowerLayer .mainSwiper .pager .swiperPause {
		width: 22px;
		margin-top: 3px;
		margin-right: 8px;
	}
	.lowerLayer .mainSwiper .pager .swiper-pagination-bullet {
		margin: 0 8px;
	}
}
/* swiper */
.lowerLayer .swiper-prev,
.lowerLayer .swiper-next {
	width: 61px;
	height: 61px;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	transform: translateY(-50%);
}
.lowerLayer .swiper-prev {
	left: 5px;
}
.lowerLayer .swiper-next {
	right: 5px;
}
@media (max-width: 768px) {
	.lowerLayer .mainSwiper .swiper-prev,
	.lowerLayer .mainSwiper .swiper-next {
		display: none;
	}
}

/* articleContent */
.lowerLayer .articleContent h2 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 40px;
	line-height: 1.7;
}
.lowerLayer .articleContent h2 + p {
	margin-top: 30px;
}
.lowerLayer .articleContent p {
	font-size: 16px;
	line-height: 1.7;
	text-align: justify;
}
.lowerLayer .articleContent p + p {
	margin-top: 20px;
}
.lowerLayer .articleContent p + div,
.lowerLayer .articleContent div + p {
	margin-top: 30px;
}
.lowerLayer .articleContent .picCenter {
	text-align: center;
	max-width: 720px;
	margin: 30px auto 0;
}
.lowerLayer .articleContent .picCenter img {
	max-width: calc(100% - 180px);
}
.lowerLayer .articleContent .articlePicFlex {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}
.lowerLayer .articleContent .articlePicFlex .articlePic {
	width: 28.571429%;
}
.lowerLayer .articleContent .articlePicFlex .articlePicTxt {
	flex: 1;
}
.lowerLayer .articleContent .articleMovieWrap {
	margin-top: 30px;
}
.lowerLayer .articleContent .articleMovieWrap .articleMovie {
	margin: 0 auto;
	width: 100%;
	max-width: 540px;
}
.lowerLayer .articleContent .articleMovieWrap .articleMovie .movie {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.lowerLayer .articleContent .articleMovieWrap .articleMovie .movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.lowerLayer .articleContent .articleMovieWrap p + .articleMovie,
.lowerLayer .articleContent .articleMovieWrap .articleMovie + p {
	margin-top: 20px;
}
@media (max-width: 768px) {
	.lowerLayer .articleContent h2 {
		font-size: 15px;
		margin-top: 25px;
	}
	.lowerLayer .articleContent h2 + p {
		margin-top: 20px;
	}
	.lowerLayer .articleContent p {
		font-size: 14px;
	}
	.lowerLayer .articleContent p + p {
		margin-top: 15px;
	}
	.lowerLayer .articleContent p + div,
	.lowerLayer .articleContent div + p {
		margin-top: 20px;
	}
	.lowerLayer .articleContent .picCenter {
		max-width: 100%;
		margin: 20px auto 0;
	}
	.lowerLayer .articleContent .picCenter img {
		max-width: 100%;
	}
	.lowerLayer .articleContent .articlePicFlex {
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 25px;
	}
	.lowerLayer .articleContent .articlePicFlex .articlePic {
		width: 100%;
	}
	.lowerLayer .articleContent .articleMovieWrap {
		margin-top: 20px;
	}
	.lowerLayer .articleContent .articleMovieWrap .articleMovie {
		max-width: 100%;
	}
	.lowerLayer .articleContent .articleMovieWrap p + .articleMovie,
	.lowerLayer .articleContent .articleMovieWrap .articleMovie + p {
		margin-top: 10px;
	}
	.lowerLayer .articleContent .taLSp {
		text-align: left !important;
	}
}

/* shopLink */
.lowerLayer .shopLink {
	margin-top: 50px;
	padding: 20px 25px 22px;
	background: var(--grayBgColor);
	display: flex;
	gap: 0 30px;
}
.lowerLayer .shopLink .shopPic {
	width: 20.238095%;
}
.lowerLayer .shopLink .shopTxtWrap {
	width: calc(100% - 20.238095% - 30px);
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo dt {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--grayBorderColor);
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo .shopCategory {
	font-size: 14px;
	display: block;
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo .shopName {
	font-size: 18px;
	font-weight: 600;
	display: block;
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo .floorBox {
	display: flex;
	font-size: 13px;
	margin-top: 10px;
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo .floorBox .floorNum + .floorTxt::before {
	content: "｜";
}
.lowerLayer .shopLink .shopTxtWrap .shopInfo .floorBox .floorNum + .floorTxt {
	padding-left: 1em;
	text-indent: -1em;
}
.lowerLayer .shopLink .shopTxtWrap .shopBtn {
	width: 210px;
	margin-top: 20px;
}
.lowerLayer .shopLink .shopTxtWrap .shopBtn a {
	width: 100%;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--greenColor);
	color: var(--whiteColor);
	font-size: 14px;
	font-weight: 600;
	position: relative;
	border-radius: 38px;
	padding-bottom: 2px;
	padding-right: 5px;
}
.lowerLayer .shopLink .shopTxtWrap .shopBtn a::after {
	content: "";
	position: absolute;
	border-top: solid 2px var(--whiteColor);
	border-right: solid 2px var(--whiteColor);
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	top: calc(50% - 5px);
	right: 15px;
}
@media (max-width: 768px) {
	.lowerLayer .shopLink {
		margin-top: 35px;
		padding: 15px 20px 16px;
		gap: 0 15px;
	}
	.lowerLayer .shopLink .shopPic {
		width: 29.850746%;
	}
	.lowerLayer .shopLink .shopTxtWrap {
		width: calc(100% - 29.850746% - 15px);
	}
	.lowerLayer .shopLink .shopTxtWrap .shopInfo dt {
		padding-bottom: 10px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopInfo .shopCategory {
		font-size: 12px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopInfo .shopName {
		font-size: 15px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopInfo .floorBox {
		font-size: 11.5px;
		margin-top: 10px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopBtn {
		width: 100%;
		max-width: 175px;
		margin-top: 15px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopBtn a {
		height: 33px;
		font-size: 12px;
		padding-right: 10px;
	}
	.lowerLayer .shopLink .shopTxtWrap .shopBtn a::after {
		width: 6px;
		height: 6px;
		top: calc(50% - 4px);
		right: 14px;
	}
}


/* others */
.lowerLayer .others .innerBox {
	padding: 50px 60px;
}
.lowerLayer .others h3 {
	font-size: 24px;
	font-weight: 600;
}
.lowerLayer .others .othersCont {
	margin: 30px auto 0;
}
.lowerLayer .others .swiper {
	padding: 2px;
}
.lowerLayer .others .swiper .swiper-wrapper {
	gap: 30px 3.17460267%;
	flex-wrap: wrap;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox {
	height: auto;
	width: 22.619048%;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox a {
	display: block;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox a .pic {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox a .pic img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 5px 8px;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .black,
.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .green {
	line-height: 1;
	text-align: center;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .black span {
	font-size: 13px;
	color: var(--whiteColor);
	background: var(--baseColor);
	padding: 4px 7px 6px;
	display: inline-block;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .green span {
	font-size: 14px;
	color: var(--whiteColor);
	background: var(--greenColor);
	padding: 2px 5px 3px;
	display: inline-block;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .ttl {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 600;
}
.lowerLayer .others .swiper .swiper-wrapper .othersBox .date {
	margin-top: 8px;
	font-size: 13px;
}
@media (max-width: 768px) {
	.lowerLayer .others .innerBox {
		padding: 30px 0 0;
	}
	.lowerLayer .others h3 {
		font-size: 18px;
		padding: 0 5.333vw;
	}
	.lowerLayer .others .othersCont {
		margin: 25px auto 0;
	}
	.lowerLayer .others .swiper {
		padding: 2px 5.333vw 0;
	}
	.lowerLayer .others .swiper .swiper-wrapper {
		gap: 0;
		flex-wrap: nowrap;
	}
	.lowerLayer .others .swiper .swiper-wrapper .othersBox {
		height: auto;
		width: auto;
	}
	.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap {
		margin-top: 12px;
		gap: 5px 7px;
	}
	.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .black span {
		font-size: 11px;
		padding: 3px 4px 4px;
	}
	.lowerLayer .others .swiper .swiper-wrapper .othersBox .iconWrap .green span {
		font-size: 11px;
		padding: 1px 4px 2px;
	}
	.lowerLayer .others .swiper .swiper-wrapper .othersBox .ttl {
		margin-top: 8px;
		font-size: 13px;
	}
	.lowerLayer .itemWrap .item .date {
		margin-top: 6px;
		font-size: 11.5px;
	}
	.lowerLayer .others .swiper .swiper-horizontal>.swiper-scrollbar,
	.lowerLayer .others .swiper-scrollbar.swiper-scrollbar-horizontal {
		margin-top: 6vw;
	}
}
