@charset "utf-8";

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
}
@media (max-width: 840px) {
	html {
		font-size: 1.190vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.333vw;
	}
}
body {
	font-size: 1.5rem;
	font-family: "Noto Sans CJK JP", sans-serif;
	line-height: 1;
	font-feature-settings: "palt";
	overflow-wrap: anywhere;
}
a {
	color: #333;
	text-decoration: none;
}
a img {
	transition: opacity 0.3s ease-out;
}
a img:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* a[href^="tel:"]:hover {
	opacity: inherit;
	color: inherit;
	cursor: default;
} */

.wrapper {
	max-height: 100%; /*for android*/
}
.sp {
	display: none;
}

/*非表示設定*/
.invisible {
	display: none;
}
.bold {
	font-weight: bold;
}

@media (max-width: 768px) {
	.sp {
		display: inherit;
	}
	.pc {
		display: none;
	}
	body {
		font-size: 2.8rem;
	}
}

header {
	background-color: #fff;
}
.bg {
	position: relative;
	padding: 13.5rem 0 6rem;
}
.bg::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	max-width: 330rem;
	background: url(/base/pc/store/special/lifeplusdesign/2025ss/img/bg.png) no-repeat;
	background-size: cover;
	background-position: center top;
	position: fixed;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translatex(-50%);
}
h1 {
	width: 64.3rem;
	margin: 0 auto;
}
.day {
	width: 31.3rem;
	margin: -3rem auto 0;
}
.ttlShop {
	width: 15.4rem;
	margin: -2rem auto 0;
}
.inner {
	max-width: 86rem;
	margin: 0 auto;
	padding: 0 1rem;
}
.cont {
	margin-top: 2rem;
	padding: 5.5rem 0 6rem;
	background-color: #fff;
	border-radius: 1rem;
}
.cont + .cont {
	margin-top: 6rem;
}
h2 {
	font-size: 4.5rem;
	font-weight: 600;
	text-align: center;
	line-height: 6.1rem;
	letter-spacing: 0.3em;
	color: #ff7891;
}
h2 span {
	letter-spacing: 0.19em;
}
.lead {
	margin-top: 3rem;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 3.7rem;
	letter-spacing: 0.3em;
	text-align: center;
	color: #433e33;
}
@media (max-width: 768px) {
	.bg {
		padding: 11rem 0 6rem;
	}
	.bg::before {
		max-width: 100%;
		background: url(/base/pc/store/special/lifeplusdesign/2025ss/img/bg_sp.png) no-repeat;
		background-size: cover;
		background-position: center top;
	}
	h1 {
		width: 71.5rem;
	}
	.day {
		width: 52.1rem;
		margin: -3rem auto 0;
	}
	.ttlShop {
		width: 28.4rem;
		margin: -4rem auto 0;
	}
	.inner {
		max-width: 100%;
		padding: 0 3.5rem;
	}
	.cont {
		padding: 6rem 0;
	}
	h2 {
		font-size: 4.9rem;
		letter-spacing: 0.3em;
	}
	.lead {
		margin-top: 6rem;
		font-size: 2.8rem;
		line-height: 5rem;
		letter-spacing: 0.2em;
	}
}

/* menu */
.menu {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem 2rem;
	position: relative;
}
.menu::after {
	content: "";
	width: 100%;
}
.menu li {
	width: 22.025%;
	position: relative;
}
.menu li:nth-child(n+4) {
	order: 1;
}
.menu li:nth-child(n+4):nth-child(-n+7) {
	margin-top: -4rem;
}
.menu a {
	display: block;
	position: relative;
}
.menu a::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-color: rgba(255,120,145,0.7) transparent transparent transparent;
	border-width: 1.3rem 0.75rem 0 0.75rem;
	position: absolute;
	bottom: 0.5rem;
	left: calc(50% - 0.75rem);
}
.menu a:hover {
	opacity: 0.7;
}
.menu a:hover img {
	opacity: 1;
}
.menu .menuTtl {
	width: 100%;
	height: 9rem;
	position: absolute;
	top: calc(50% - 4.5rem);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2rem;
	text-align: center;
	color: #fff;
	background-color: rgba(255,120,145,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.menu {
		margin-top: 8rem;
		justify-content: space-between;
		gap: 3rem 2rem;
		padding: 0 2rem;
	}
	.menu::after {
		content: none;
	}
	.menu li {
		width: 47.997%;
	}
	.menu li:nth-child(n+4) {
		order: 0;
	}
	.menu li:nth-child(n+4):nth-child(-n+7) {
		margin-top: 0;
	}
	.menu a::after {
		border-width: 2.1rem 1.25rem 0 1.25rem;
		bottom: 01rem;
		left: calc(50% - 1.25rem);
	}
	.menu .menuTtl {
		height: 14.6rem;
		top: calc(50% - 7.3rem);
		font-size: 2.2rem;
		line-height: 3.2rem;
	}
}

/* cat */
.cont.cat {
	padding: 5.5rem 5rem 6rem;
}
.cont h3 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.7rem;
	text-align: center;
	color: #ff7891;
}
.cont .contLead {
	margin-top: 3rem;
	font-weight: 700;
	line-height: 2.8rem;
	text-align: center;
}
.cont .contBox {
	margin-top: 5rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6rem 0;
}
.cont .contBox .box {
	width: 44.325%;
}
.cont .contBox .box.full {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 0 2rem;
}
.cont .contBox .box.full02 {
	align-items: center;
}
.cont .contBox .box.small {
	width: 30.946%;
}
.cont .contBox .box.full .pic {
	width: 48.2rem;
}
.cont .contBox .box.full02 .pic {
	width: 32.7rem;
}
.cont .contBox .detail {
	margin-top: 1.5rem;
}
.cont .contBox .box.full .detail {
	margin-top: 0;
	width: 23.6rem;
}
.cont .contBox .box.full02 .detail {
	width: 32.7rem;
}
.cont .contBox .detail .txt {
	font-weight: 500;
	line-height: 1.8rem;
}
.cont .contBox .detail .txt .bold {
	display: inline-block;
	margin-bottom: 0.5rem;
}
.cont .contBox .detail p + p {
	margin-top: 1em;
}
.cont .btn {
	margin-top: 1em;
	width: 22.9rem;
}
.cont .btn a {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	border: solid 1px #464646;
	padding: 0.5rem;
	position: relative;
}
.cont .btn a::after {
	content: "";
	border-top: solid 1px #464646;
	border-right: solid 1px #464646;
	width: 1rem;
	height: 1rem;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 0.5rem);
	right: 1rem;
}
.cont .btn a:hover {
	opacity: 0.7;
}
.cont .txtBox {
	margin-top: -4.5rem;
	display: flex;
	justify-content: space-between;
}
.cont .txtBox > div {
	width: 48%;
}
.cont .txtBox .detail {
	margin-top: 0;
}
.cont .txtBox .popupTtl {
	font-weight: 700;
}
.cont .txtBox .popupTxt {
	margin-top: 0.5rem;
	line-height: 1.8rem;
}
@media (max-width: 768px) {
	.cont.cat {
		padding: 6rem 3rem;
	}
	.cont h3 {
		font-size: 3.5rem;
		line-height: 5rem;
	}
	.cont .contLead {
		margin-top: 5rem;
		font-size: 2.8rem;
		line-height: 4.8rem;
	}
	.cont .contBox {
		margin-top: 5rem;
		display: block;
	}
	.cont .contBox .box {
		width: 100%;
	}
	.cont .contBox .box + .box {
		margin-top: 8rem;
	}
	.cont .contBox .box.full {
		width: 100%;
		display: block;
	}
	.cont .contBox .box.small {
		width: 100%;
	}
	.cont .contBox .box.full .pic {
		width: 100%;
	}
	.cont .contBox .box.full02 .pic {
		width: 100%;
	}
	.cont .contBox .detail {
		margin-top: 3rem;
	}
	.cont .contBox .box.full .detail {
		margin-top: 3rem;
		width: 100%;
	}
	.cont .contBox .box.full02 .detail {
		width: 100%;
	}
	.cont .contBox .detail .txt {
		line-height: 3.4rem;
	}
	.cont .contBox .detail .txt .bold {
		margin-bottom: 1rem;
	}
	.cont .btn {
		width: 100%;
	}
	.cont .btn a {
		font-size: 2.9rem;
		padding: 1.5rem;
	}
	.cont .btn a::after {
		width: 1.4rem;
		height: 1.4rem;
		top: calc(50% - 0.7rem);
		right: 2rem;
	}
	.cont .txtBox {
		margin-top: 3rem;
		display: block;
	}
	.cont .txtBox > div {
		width: 100%;
	}
	.cont .txtBox > div + div {
		margin-top: 1em;
	}
	.cont .txtBox .popupTxt {
		margin-top: 1rem;
		line-height: 3.4rem;
	}
}

/* swiper */
.slide {
	position: relative;
}
.swiper-prev, .swiper-next {
	width: 2.6rem;
	height: 2.6rem;
	position: absolute;
	top: calc(50% - 1.3rem);
	z-index: 10;
	cursor: pointer;
}
.swiper-prev {
	left: -1.2rem;
}
.swiper-next {
	right: -1.2rem;
}
@media (max-width: 768px) {
	.swiper-prev, .swiper-next {
		width: 5.2rem;
		height: 5.2rem;
		top: calc(50% - 2.6rem);
	}
	.swiper-prev {
		left: -2rem;
	}
	.swiper-next {
		right: -2rem;
	}
}

/* eventBox */
.cont .eventBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.cont .eventBox .pic {
	width: 30.6rem;
}
.cont .eventBox .pic .picNote {
	margin-top: 1rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2rem;
}
.cont .eventBox .detail {
	margin-top: 0;
	width: 37.6rem;
}
.cont .eventBox .detail .eventTtl {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
}
.cont .eventBox .detail .eventTtl span {
	font-weight: 700;
}
.cont .eventBox .detail .txt {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2rem;
}
@media (max-width: 768px) {
	.cont .eventBox {
		width: 100%;
		display: block;
	}
	.cont .eventBox + .eventBox {
		margin-top: 8rem;
	}
	.cont .eventBox .pic {
		width: 100%;
	}
	.cont .eventBox .pic .picNote {
		margin-top: 3rem;
		font-size: 2.9rem;
		line-height: 4rem;
	}
	.cont .eventBox .detail {
		margin-top: 3rem;
		width: 100%;
	}
	.cont .eventBox .detail .eventTtl {
		font-size: 3.1rem;
	}
	.cont .eventBox .detail .txt {
		font-size: 2.9rem;
		line-height: 4rem;
	}
}

/* artist */
.cont.artist {
	padding: 5.5rem 10rem 6rem 6rem;
}
.cont.artist .artistBox {
	margin-top: 4.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 4rem;
}
.cont.artist .artistBox + .artistBox {
	margin-top: 5rem;
}
.cont.artist .artistBox .picBox {
	width: 30.1rem;
}
.cont.artist .artistBox .picBox .pic01 {
	width: 17.2rem;
	margin: 0 auto;
}
.cont.artist .artistBox .picBox .picNote {
	width: 17.2rem;
	margin: 0.5rem auto 0;
	font-size: 1.2rem;
	font-weight: 500;
}
.cont.artist .artistBox .artistTxtBox {
	width: 33.5rem;
}
.cont.artist .artistBox .artistTxtBox .jp {
	font-size: 1.8rem;
	font-weight: 700;
}
.cont.artist .artistBox .artistTxtBox .en {
	margin-top: 1rem;
	font-weight: 500;
}
.cont.artist .artistBox .artistTxtBox .txt {
	margin-top: 1.5rem;
	font-weight: 500;
	line-height: 1.8rem;
	text-align: justify;
}
.cont.artist .contNote {
	margin-top: 4rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2rem;
	text-align: center;
}
@media (max-width: 768px) {
	.cont.artist {
		padding: 6rem 4rem;
	}
	.cont.artist .artistBox {
		margin-top: 6rem;
		display: block;
	}
	.cont.artist .artistBox + .artistBox {
		margin-top: 7.5rem;
	}
	.cont.artist .artistBox .picBox {
		width: 100%;
	}
	.cont.artist .artistBox .picBox .pic01 {
		width: 32.5rem;
	}
	.cont.artist .artistBox .picBox .picNote {
		width: 32.5rem;
		font-size: 2.2rem;
	}
	.cont.artist .artistBox .artistTxtBox {
		margin-top: 4.5rem;
		width: 100%;
	}
	.cont.artist .artistBox .artistTxtBox .jp {
		font-size: 3.3rem;
	}
	.cont.artist .artistBox .artistTxtBox .en {
		margin-top: 1.5rem;
	}
	.cont.artist .artistBox .artistTxtBox .txt {
		margin-top: 2.5rem;
		line-height: 3.4rem;
	}
	.cont.artist .contNote {
		margin-top: 7.5rem;
		font-size: 2.8rem;
		line-height: 3.4rem;
		text-align: left;
	}
}

/* magazin */
.magazin {
	margin-top: 6rem;
}
.magazin + .cont {
	margin-top: 6rem;
}
.magazin a {
	display: block;
	padding: 4.5rem 0 3.5rem;
	background-color: #fff;
	border-radius: 1rem;
	position: relative;
}
.magazin a::after {
	content: "";
	width: 13.1rem;
	height: 15.9rem;
	background: url(/base/pc/store/special/lifeplusdesign/2025ss/img/magazin.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -0.5rem;
	right: 0;
}
.magazin a:hover {
	opacity: 0.7;
}
.magazin h4 {
	font-size: 2.3rem;
	font-weight: 700;
	text-align: center;
}
.magazin .magezinTxt {
	margin-top: 1.5rem;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}
@media (max-width: 768px) {
	.magazin {
		margin-top: 6rem;
	}
	.magazin + .cont {
		margin-top: 6rem;
	}
	.magazin a {
		display: block;
		padding: 4.5rem 0 3.5rem;
		background-color: #fff;
		border-radius: 1rem;
		position: relative;
	}
	.magazin a::after {
		width: 16.1rem;
		height: 18.9rem;
		top: -3.5rem;
		right: -2rem;
	}
	.magazin h4 {
		font-size: 3.3rem;
		line-height: 1.3;
	}
	.magazin .magezinTxt {
		margin-top: 1.5rem;
		font-size: 3rem;
	}
}

/* online */
.online .onlineTxt {
	margin-top: 1rem;
	font-weight: 500;
	text-align: center;
}
.online .linkBtn {
	width: 61.5rem;
	margin: 4rem auto 0;
}
.online .linkBtn + .linkBtn {
	margin-top: 2.5rem;
}
.online .linkBtn a {
	display: block;
	border: solid 2px #000;
	padding: 1.5rem;
	position: relative;
}
.online .linkBtn.coming a {
	pointer-events: none;
}
.online .linkBtn a::after {
	content: "";
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	width: 1.2rem;
	height: 1.2rem;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 0.6rem);
	right: 2.5rem;
}
.online .linkBtn.coming a::after {
	content: "COMING SOON";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8.5rem;
	height: 8.5rem;
	border: none;
	background-color: #ff7891;
	border-radius: 50%;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 2.4rem;
	transform: translateY(-50%);
}
.online .linkBtn a:hover {
	opacity: 0.7;
}
.online .linkBtn img {
	display: block;
}
.online .linkBtn:first-of-type img {
	width: 26.8rem;
	margin: 0 auto;
}
.online .linkBtn:nth-of-type(2) img {
	width: 13.8rem;
	margin: 0 auto;
}
.online .linkBtn:last-of-type img {
	width: 27.3rem;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.online .onlineTxt {
		margin-top: 2rem;
		font-size: 2rem;
	}
	.online .linkBtn {
		width: 55.5rem;
		margin: 5rem auto 0;
	}
	.online .linkBtn + .linkBtn {
		margin-top: 2.5rem;
	}
	.online .linkBtn a {
		border: solid 0.3rem #000;
		padding: 1.5rem;
	}
	.online .linkBtn a::after {
		width: 1.5rem;
		height: 1.5rem;
		top: calc(50% - 0.75rem);
		right: 2.5rem;
	}
	.online .linkBtn.coming a::after {
		width: 7rem;
		height: 7rem;
		font-size: 1.5rem;
		top: 10%;
		left: 0;
		transform: translate(-50%, -50%);
	}
	.online .linkBtn:first-of-type img {
		width: 35.8rem;
	}
	.online .linkBtn:nth-of-type(2) img {
		width: 19.8rem;
	}
	.online .linkBtn:last-of-type img {
		width: 34.3rem;
	}
}

/* shop */
.shop {
	padding: 5.5rem 6rem 6rem;
}
.shop .shopList {
	margin-top: 4rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3.5rem 0;
}
.shop .shopList li {
	width: 46.528%;
}
.shop .shopList li a {
	display: block;
	border: solid 1px #000;
	font-size: 1.9rem;
	font-weight: 600;
	padding: 1rem 3rem;
	position: relative;
}
.shop .shopList li a::after {
	content: "";
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	width: 1.2rem;
	height: 1.2rem;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 0.6rem);
	right: 1.5rem;
}
.shop .shopList li a:hover {
	opacity: 0.7;
}
@media (max-width: 768px) {
	.shop {
		padding: 6rem 4rem;
	}
	.shop .shopList {
		margin-top: 4rem;
		gap: 2.5rem 0;
	}
	.shop .shopList li {
		width: 100%;
	}
	.shop .shopList li a {
		font-size: 3rem;
		padding: 2.2rem 3.5rem;
	}
	.shop .shopList li a::after {
		width: 1.6rem;
		height: 1.6rem;
		top: calc(50% - 0.8rem);
		right: 1.7rem;
	}
}

/* bnr */
.bnr {
	margin-top: 6rem;
}

/* note */
.noteBox {
	background-color: #fff;
}
.note {
	font-weight: 500;
	line-height: 2.3rem;
	padding: 3.5rem 0 2.5rem;
}
@media (max-width: 768px) {
	.note {
		line-height: 4rem;
		padding: 6rem 0;
	}
}

/* pagetop */
.pagetop {
	width: 6.7rem;
	position: fixed;
	right: 1.5rem;
	bottom: 2rem;
	z-index: 999;
}
@media (max-width: 768px) {
	.pagetop {
		width: 9rem;
	}
}

footer {
	background-color: #fff;
}