@charset "UTF-8";

/*----------------------------------------
 Common
----------------------------------------*/
body {
	font-family: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
	font-size: 3.5vw;
	line-height: 1.7;
	letter-spacing: .1em;
	color: #504f4f;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	animation: loadFinish 1.5s ease;
}
@keyframes loadFinish {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
body.open {
	overflow-x: hidden;
}
_::-webkit-full-page-media, _:future, :root body.open {
	overflow: hidden;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.font-mincho {
	font-family: 'Shippori Mincho B1', serif;
}
.font-gothic {
	font-family: 'dnp-shuei-gothic-gin-std', sans-serif;
}
.font-en {
	font-family: 'Josefin Sans', sans-serif;
}
.font-din {
	font-family: 'din-2014', sans-serif;
}
.sp-view {
	display: block !important;
}
.sp-flex {
	display: flex !important;
}
.pc-view,
.pc-inline-view {
	display: none !important;
}

/* h2 Decoration */
/* Line */
.title-deco {
	display: block;
	position: relative;
	margin: 0 auto;
	line-height: 1;
	border-width: 1.5px;
	border-style: solid;
	border-image-source: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
	border-image-slice: 0 0 1 0;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 6.6vw;
	font-weight: 300;
	color: #83bbcc;
	text-align: center;
}
/* Left Circle */
.title-deco::before {
	content: "";
	position: absolute;
	top: 5.95vw;
	left: 0;
	margin: 0 auto;
	width: 1.55vw;
	height: 1.55vw;
	background-color: #2dc3f3;
	border-radius:  50%;
}
/* Right Circle */
.title-deco::after {
	content: "";
	position: absolute;
	top: 5.95vw;
	right: 0;
	margin: 0 auto;
	width: 1.55vw;
	height: 1.55vw;
	background-color: #fb7ad2;
	border-radius:  50%;
}
/* Text */
.title-deco span {
	position: relative;
	display: inline-block;
	color: transparent;
	background-image: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
	-webkit-background-clip: text;
}
/* Triangle */
.title-deco-triangle {
	display: block;
	content: "";
	position: relative;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0  1vw 3.5vw 1vw;
	border-color: transparent transparent #959ee2 transparent;
	z-index: 1;
}

/* h2 Decoration Animation */
/* Line */
.title-deco.delighter {
	transform: rotate(0);
	transition: transform ease-out;
}
.title-deco.delighter.started {
	animation: shake-line 4s forwards;
}
@keyframes shake-line {
	20% {
		transform: rotate(-2deg);
	}
	40% {
		transform: rotate(3.25deg);
	}
	60% {
		transform: rotate(.5deg);
	}
	80% {
		transform: rotate(-1.5deg);
	}
	100% {
		transform: rotate(.01deg);
	}
}
/* Text */
.title-deco.delighter span {
	transform: rotate(0);
	transition: transform ease-out;
}
.title-deco.delighter.started span {
	animation: shake-text 4s forwards;
}
@keyframes shake-text {
	20% {
		transform: rotate(-3deg);
	}
	40% {
		transform: rotate(1.25deg);
	}
	60% {
		transform: rotate(-2deg);
	}
	80% {
		transform: rotate(-1.5deg);
	}
	100% {
		transform: rotate(.01deg);
	}
}

/* Text hover Animation */
.txt-grad {
	display: inline;
	padding-bottom: .2vw;
	background-image: linear-gradient(90deg, rgba(80, 79, 79, .6), rgba(80, 79, 79, .6));
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 1px;
	transition: background-size .4s;
}
.txt-grad:hover {
	background-size: 100% 1px;
}

/* Button hover Animation */
.btn-grad {
	margin: 0 auto;
	padding: 2px;
	height: 13.2vw;
	width: 64.8vw;
	background-image: linear-gradient(140deg, rgba(98, 210, 246, 1), rgba(252, 150, 219, 1));
	background-size: 120% auto;
	font-family: 'Josefin Sans', sans-serif;
	color:#fff;
	border-radius: 50px;
	text-align: center;
	line-height: 13.2vw;
}
.btn-grad a {
	display: block;
	position: relative;
	width: 64.8vw;
	height: calc(13.2vw - 4px);
	background: rgba(255, 255, 255, 0);
	border-radius: 50px;
	text-align: center;
	font-size: 5vw;
	font-weight: 300;
	letter-spacing: .02em;
	line-height: calc(13.2vw - 2px);
	transition: all .5s;
}
.btn-grad a:hover {
	color: #504f4f;
	background: rgba(255, 255, 255, 1);
}
.btn-grad a::after {
	content: '';
	position: absolute;
	top: 42%;
	right: 5vw;
	width: 11px;
	height: 11px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: rotate(45deg);
	transition: all .5s;
}
.btn-grad a:hover::after {
	right: 4vw;
	border-color: #83bbcc;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	body {
		font-size: 17px;
	}
	.sp-view,
	.sp-flex {
		display: none !important;
	}
	.pc-view {
		display: block !important;
	}
	.pc-inline-view {
		display: inline-block !important;
	}

	/* h2 Decoration */
	/* Line */
	.title-deco {
		font-size: 2.5vw;
	}
	/* Left Circle */
	.title-deco::before {
		top: 88%;
		width: .6vw;
		height: .6vw;
	}
	/* Right Circle */
	.title-deco::after {
		top: 88%;
		width: .6vw;
		height: .6vw;
	}
	/* Triangle */
	.title-deco-triangle {
		border-width: 0  .425vw 1.45vw .425vw;
	}
}

/*----------------------------------------
 Header
----------------------------------------*/
.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	margin-top: 4.6vw;
	padding: 0 20vw 0 5.8vw;
	width: 100%;
	height: 9.8vw;
	z-index: 10;
}
.header-logo {
	position: fixed;
	top: 4.8vw;
	left: 5.8vw;
	width: 30vw;
	z-index: 30;
}
.header-pc {
	display: none;
}
.header-instagram {
	display: flex;
	position: fixed;
	top: 6.85vw;
	z-index: 30;
	right: 22.3vw;
	width: 5.2vw;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
}
.header-instagram.open {
	visibility: visible;
	opacity: 1;
}
#header-sp-input {
	display: none;
}
.header-sp-toggle {
	position: fixed;
	top: 4.6vw;
	right: 6vw;
	z-index: 40;
	width: 7.8vw;
	height: 7.8vw;
	cursor: pointer;
}
.header-sp-toggle span {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #504f4f;
	transition: transform .6s ease-in-out, top .5s ease;
}
.header-sp-toggle span:nth-child(1) {
	top: 4vw;
}
.header-sp-toggle span:nth-child(2) {
	top: 5.8vw;
}
#header-sp-input:checked ~ .header-sp-toggle span:nth-child(1) {
	top: 4.7vw;
	transform: rotate(45deg);
}
#header-sp-input:checked ~ .header-sp-toggle span:nth-child(2) {
	top: 4.7vw;
	transform: rotate(-45deg);
}
.header-sp-modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background: url(../img/common/sp/bg_menu_smmo.webp) no-repeat;
	background-size: 100% 100%;
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
	font-size: 7vw;
	font-weight: 300;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
	/* 背景固定用1 */
	overscroll-behavior: contain;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
/* 背景固定用2 */
.header-sp-modal::before,
.header-sp-modal::after {
	display: flex;
	content: "";
	width: 1px;
	height: calc(100vh + 1px);
}
.header-sp-modal::-webkit-scrollbar {
	display: none;
}

.header-sp-menu {
	display: flex;
	flex-direction: column;
	margin-top: 21.5vw;
	width: inherit;
	height: inherit;
}
.header-sp-menu a {
	display: block;
	padding: 4.8vw 0;
	width: 100%;
	line-height: 1;
	font-size: 8.5vw;
	transition: background-color .3s;
}
.header-sp-menu a span {
	display: inline-block;
	color: transparent;
	background-image: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
	-webkit-background-clip: text;
}
.header-sp-menu a:hover {
	background: rgba(149, 158, 226, .2);
}
.header-sp-shop {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 5.4vw 0 1vw;
	text-align: center;
}
.header-sp-shop li {
	margin-bottom: 6.6vw;
	padding: 2px;
	height: 14vw;
	background-image: linear-gradient(140deg, rgba(98, 210, 246, 1), rgba(252, 150, 219, 1));
	border-radius: 50px;
}
.header-sp-shop li:last-of-type {
	margin-bottom: 11.2vw;
}
.header-sp-shop li a {
	display: block;
	position: relative;
	padding-top: .5vw;
	width: 76vw;
	height: calc(14vw - 4px);
	background: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 5vw;
	font-weight: 300;
	letter-spacing: .02em;
	line-height: calc(14vw - 2px);
	transition: all .5s;
}
.header-sp-shop li a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0);
}
.header-sp-shop li a::after {
	content: '';
	position: absolute;
	top: 42%;
	right: 5vw;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #e231b5;
	border-right: 1.5px solid #e231b5;
	transform: rotate(45deg);
	transition: all .5s;
}
.header-sp-shop li a:hover::after {
	right: 4vw;
	border-color: #fff;
}
.header-sp-shop li a span {
	display: inline-block;
	color: transparent;
	background-image: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
	-webkit-background-clip: text;
}
.header-sp-shop li a:hover span {
	color: #fff;
}
#header-sp-input:checked ~ .header-sp-modal {
	visibility: visible;
	opacity: 1;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	.header {
		margin-top: 0;
		padding: 0 0 0 0;
		width: 100%;
		height: 76px;
		background: linear-gradient(to top, rgba(255, 255, 255, 0) 30%, #fff 100%);
	}
	.header-logo {
		top: 12px;
		left: 50px;
		width: 162px;
		transition: all .5s;
	}
	.header-pc {
		display: flex;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 14px;
		letter-spacing: 0;
	}
	.header-pc nav {
		display: flex;
		align-items: center;
		position: relative;
	}
	.header-pc-menu {
		display: flex;
		justify-content: center;
	}
	.header-pc-menu li:not(:last-of-type) {
		padding-right: max(2.35vw, 47px);
	}
	.header-pc-menu li:last-of-type {
		padding-right: max(20vw, 400px);
	}
	.header-pc-menu a {
		position: relative;
	}
	.header-pc-menu a::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #504f4f;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
	}
	.header-pc-menu a:hover::after {
		visibility: visible;
		bottom: -8px;
		opacity: 1;
	}
	.header-pc-shop {
		position: absolute;
		top: 16px;
		right: 50px;
		width: 240px;
		height: 42px;
		font-size: 14px;
		overflow: hidden;
		transition: all .5s;
	}
	.header-pc-shop-btn {
		display: block;
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 42px;
		background-image: linear-gradient(45deg, rgba(113,188,233,1) 10%, rgba(212,236,234,1) 80%, rgba(249,241,170,1) 100%);
		background-size: 120% auto;
		font-size: 14px;
		font-weight: 300;
		color:#fff;
		border-radius: 22px;
		text-align: center;
		line-height: 42px;
		transition: border-radius .1s;
		cursor: pointer;
	}
	.header-pc-shop-btn::before {
		content: '';
		display: block;
		margin: 0 auto;
		width: 100%;
		height: 42px;
		background-image: linear-gradient(160deg, rgba(113,188,233,1) 10%, rgba(212,236,234,1) 60%, rgba(249,241,170,1) 80%);
		background-size: 120% auto;
		border-radius: 22px;
		opacity: 1;
		transition: opacity .5s;
	}
	.header-pc-shop-btn::after {
		content: '';
		position: absolute;
		top: 13px;
		right: 33px;
		width: 7px;
		height: 7px;
		border-top: 1.5px solid #fff;
		border-right: 1.5px solid #fff;
		transform: rotate(135deg);
		transition: transform .5s, top .5s;
	}
	.header-pc-shop-btn:hover::before {
		opacity: 0;
	}
	.header-pc-shop-btn span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header-pc-shop dd {
		height: 50px;
		text-align: center;
		line-height: 50px;
		background: #fff;
		transition: all .5s;
	}
	.header-pc-shop dd:not(:first-of-type) {
		border-top: 1px solid #83bbcc;
	}
	.header-pc-shop dd:last-child {
		border-radius: 0 0 22px 22px;
	}
	.header-pc-shop dd:hover {
		background: #c9e1e8;
	}
	.header-pc-shop dd a {
		display: block;
		color: #83bbcc;
		transition: all .5s;
	}
	.header-pc-shop dd a:hover {
		color: #fff;
	}
	.header-pc-shop.open {
		height: calc(42px + (50px * 5));
	}
	.header-pc-shop.open .header-pc-shop-btn {
		background-position: right center;
	}
	.header-pc-shop.open .header-pc-shop-btn::before {
		opacity: 0;
	}
	.header-pc-shop.open .header-pc-shop-btn::after {
		top: calc(13px + 4px);
		transform: rotate(315deg);
	}
	.header-pc-shop-btn.menu-reset {
		border-radius: 22px;
		transition-delay: .45s;
	}
	.header-pc-shop-btn.menu-show {
		border-radius: 22px 22px 0 0;
		transition-delay: .1ms;
	}
	.header-instagram {
		top: 22px;
		right: 340px;
		width: 29px;
		visibility: visible;
		opacity: 1;
	}
	.header-sp {
		display: none;
	}
}

@media (min-width: 1280px) and (max-width: 1535px) {
	.header-pc-menu li:last-of-type {
		padding-right: 360px;
	}
	.header-instagram {
		right: 300px;
	}
	.header-pc-shop {
		width: 200px;
		font-size: 13px;
	}
	.header-pc-shop-btn {
		font-size: 13px;
	}
}

@media (min-width: 1025px) and (max-width: 1279px) {
	.header-pc-menu li:not(:last-of-type) {
		padding-right: 40px;
	}
	.header-pc-menu li:last-of-type {
		padding-right: 350px;
	}
	.header-instagram {
		right: 290px;
	}
	.header-pc-shop {
		width: 190px;
		font-size: 12px;
	}
	.header-pc-shop-btn {
		font-size: 12px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.header-logo {
		left: 20px;
		width: 142px;
	}
	.header-pc-menu li:not(:last-of-type) {
		padding-right: 20px;
	}
	.header-pc-menu li:last-of-type {
		padding-right: 265px;
	}
	.header-instagram {
		right: 220px;
	}
	.header-pc-shop {
		right: 20px;
		width: 180px;
		font-size: 11px;
	}
	.header-pc-shop-btn {
		font-size: 11px;
	}
}

/*----------------------------------------
 Header（202403 ヘッダーボタン追加修正）
----------------------------------------*/
/*-- PC --------*/
@media screen and (min-width: 769px) {
	.header-pc-shoplist-btn {
		display: block;
		position: relative;
		margin: 0 auto;
		padding: 2px;
		width: 100%;
		height: 42px;
		background-image: linear-gradient(140deg, rgba(98, 210, 246, 1), rgba(252, 150, 219, 1));
		background-size: 120% auto;
		font-size: 14px;
		font-weight: 300;
		border-radius: 22px;
		text-align: center;
		line-height: 42px;
		transition: border-radius .1s;
		cursor: pointer;
	}
	.header-pc-shoplist-btn a {
		content: '';
		display: block;
		margin: 0 auto;
		width: 100%;
		height: calc(42px - (2px * 2));
		background: #fff;
		border-radius: 22px;
		opacity: 1;
		transition: all .5s;
	}

	/* 旧ヘッダーショップリストボタン */
	/*
	.header-pc-shoplist-btn {
		display: block;
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 42px;
		background-image: linear-gradient(90deg, rgba(241, 166, 200, .7) 0%, rgba(105, 193, 238, .7) 100%);
		background-size: 120% auto;
		font-size: 14px;
		font-weight: 300;
		color:#fff;
		border-radius: 22px;
		text-align: center;
		line-height: 42px;
		transition: border-radius .1s;
		cursor: pointer;
	}
	.header-pc-shoplist-btn::before {
		content: '';
		display: block;
		margin: 0 auto;
		width: 100%;
		height: 42px;
		background-image: linear-gradient(90deg, rgba(218, 237, 165, .7) 5%, rgba(105, 193, 238, .7) 30%, rgba(162, 163, 225, .7) 50%, rgba(241, 166, 200, .7) 80%);
		background-size: 120% auto;
		border-radius: 22px;
		opacity: 1;
		transition: opacity .5s;
	}
	.header-pc-shoplist-btn::after {
		content: '';
		position: absolute;
		top: 13px;
		right: 33px;
		width: 7px;
		height: 7px;
		border-top: 1.5px solid #fff;
		border-right: 1.5px solid #fff;
		transform: rotate(135deg);
		transition: transform .5s, top .5s;
	}
	*/

	.header-pc-shoplist-btn a:hover {
		background: rgba(255, 255, 255, 0);
	}
	.header-pc-shoplist-btn a span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: inline-block;
		white-space: nowrap;
		color: transparent;
		background-image: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
		-webkit-background-clip: text;
		transition: color .5s;
	}

	/*-- for Safari --------*/
	_::-webkit-full-page-media, _:future, :root .header-pc-shoplist-btn a span {
		padding: 1px;
		clip-path: inset(1px);
	}

	.header-pc-shoplist-btn a:hover span {
		color: #fff;
	}

	/*
	.header-pc-shop.open .header-pc-shoplist-btn {
		background-position: right center;
	}
	.header-pc-shop.open .header-pc-shoplist-btn::before {
		opacity: 0;
	}
	*/

	/* 旧ヘッダーショップリストボタン */
	/*
	.header-pc-shop.open .header-pc-shoplist-btn::after {
		top: calc(13px + 4px);
		transform: rotate(315deg);
	}
	.header-pc-shoplist-btn.menu-reset {
		border-radius: 22px;
		transition-delay: .45s;
	}
	.header-pc-shoplist-btn.menu-show {
		border-radius: 22px 22px 0 0;
		transition-delay: .1ms;
	}
	*/
}

@media (min-width: 1280px) and (max-width: 1535px) {
	.header-pc-shoplist-btn {
		font-size: 13px;
	}
}

@media (min-width: 1025px) and (max-width: 1279px) {
	.header-pc-shoplist-btn {
		font-size: 12px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.header-pc-shoplist-btn {
		font-size: 11px;
	}
}

/*----------------------------------------
 Footer
----------------------------------------*/
.footer{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 3vw;
	align-items: center;
	font-family: 'Josefin Sans', sans-serif;
	color: #504f4f;
}
.footer-logo {
	margin-bottom: 12vw;
	width: 36vw;
	transition: all .5s;
}
.footer-list-shop {
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.footer-list-shop li {
	margin-bottom: 6.6vw;
	padding: 2px;
	height: 14vw;
	background-image: linear-gradient(140deg, rgba(98, 210, 246, 1), rgba(252, 150, 219, 1));
	border-radius: 50px;
}
.footer-list-shop li:last-of-type {
	margin-bottom: 11.2vw;
}
.footer-list-shop li a {
	display: block;
	position: relative;
	padding-top: .5vw;
	width: 76vw;
	height: calc(14vw - 4px);
	background: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 5vw;
	font-weight: 300;
	letter-spacing: .02em;
	line-height: calc(14vw - 2px);
	transition: all .5s;
}
.footer-list-shop li a:hover {
	background: rgba(255, 255, 255, 0);
}
.footer-list-shop li a::after {
	content: '';
	position: absolute;
	top: 42%;
	right: 5vw;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #e231b5;
	border-right: 1.5px solid #e231b5;
	transform: rotate(45deg);
	transition: all .5s;
}
.footer-list-shop li a:hover::after {
	right: 4vw;
	border-color: #fff;
}
.footer-list-shop li a span {
	display: inline-block;
	color: transparent;
	background-image: linear-gradient(90deg, rgba(45, 195, 243, 1), rgba(251, 122, 210, 1));
	-webkit-background-clip: text;
}
.footer-list-shop li a:hover span {
	color: #fff;
}
.footer-list-nav a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.footer-list-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #504f4f;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.footer-list-nav a:hover::after {
	visibility: visible;
	bottom: -8px;
	opacity: 1;
}
.footer-list-nav {
	display: flex;
	justify-content: center;
	margin-bottom: 7.5vw;
	font-size: 2.65vw;
	letter-spacing: .01em;
}
.footer-list-nav li:not(:last-of-type) {
	padding-right: 9.2vw;
}
.footer-copy {
	font-size: 2.4vw;
	letter-spacing: .01em;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	.footer {
		padding-bottom: 50px;
	}
	.footer-logo {
		margin-bottom: 80px;
		width: clamp(184px, 10.2vw, 204px);
	}
	.footer-list-shop {
		display: none;
	}
	.footer-list-nav {
		display: flex;
		justify-content: center;
		margin-bottom: 80px;
		font-size: 14px;
		letter-spacing: .1em;
	}
	.footer-list-nav li:not(:last-of-type) {
		padding-right: 50px;
	}
	.footer-copy {
		font-size: 14px;
		letter-spacing: .1em;
	}
}

/*----------------------------------------
 Animation
----------------------------------------*/
/* FadeIn Up */
.del-fade-up.delighter {
	opacity: 0;
	transform: translateY(5vw);
	transition: all 1s ease-out;
 }
.del-fade-up.delighter.started {
	opacity: 1;
	transform: none;
}
/* FadeIn Up Delay */
.del-fade-up-2.delighter {
	opacity: 0;
	transform: translateY(5vw);
	transition: all 1s ease-out .2s;
}
.del-fade-up-2.delighter.started {
	opacity: 1;
	transform: none;
}
/* SlideIn Left */
.del-slide-l.delighter {
	opacity: 0;
	transform: translateX(8vw);
	transition: all 1s ease-out;
}
.del-slide-l.delighter.started {
	opacity: 1;
	transform: none;
}
/* SlideIn Right */
.del-slide-r.delighter {
	opacity: 0;
	transition: all 1s ease-out;
	transform: translateX(-8vw);
}
.del-slide-r.delighter.started {
	opacity: 1;
	transform: none;
}
/* FadeIn Blur */
.del-blur.delighter {
	opacity: 0;
	filter: blur(5vw);
	transition: all 1s cubic-bezier(.645, .045, .355, 1);
}
.del-blur.delighter.started {
	opacity: 1;
	filter: blur(0);
}
/* Fade Only */
.del-fade.delighter {
	opacity: 0;
	transition: all 1s ease-out;
}
.del-fade.delighter.started {
	opacity: 1;
}


/*----------------------------------------
 231006 Header（SPのみ）, Footer　SNSアイコン追加
----------------------------------------*/
.header-sp-list-sns {
	display: flex;
	justify-content: center;
	margin: 6vw 0 6.6vw;
}
.header-sp-list-sns li:not(:last-of-type) {
	padding-right: 9.2vw;
}
.header-sp-list-sns a {
	display: flex;
}
.header-sp-list-sns img {
	width: 5.2vw;
}
.footer-list-sns {
	display: flex;
	justify-content: center;
	margin-bottom: 12vw;
}
.footer-list-sns li:not(:last-of-type) {
	padding-right: 9.2vw;
}
.footer-list-sns a {
	display: flex;
}
.footer-list-sns img {
	width: 5.2vw;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	.footer-list-sns {
		margin-bottom: 80px;
	}
	.footer-list-sns li:not(:last-of-type) {
		padding-right: 50px;
	}
	.footer-list-sns a {
		display: inline;
	}
	.footer-list-sns img {
		width: 29px;
	}
}


/*----------------------------------------
 SPハンバーガーメニュー、PCヘッダーメニューに「SPECIAL」追加
----------------------------------------*/
/* 231128 花雫(ハナシズク) 特設ページ */
.header-sp-menu .header-sp-hanashizuku a span {
	background-image: linear-gradient(90deg, rgba(255, 126, 161, 1) 10%, rgba(255, 195, 226, 1) 60%, rgba(255, 161, 223, 1) 80%);
}
/* 240424 露花(ツユカ) 特設ページ */
.header-sp-menu .header-sp-tsuyuka a span {
	background-image: linear-gradient(90deg, rgba(222, 190, 233, 1) 0%, rgba(196, 116, 181, 1) 100%);
}
/*-- PC --------*/
@media screen and (min-width: 769px) {
	.header-pc-menu .header-pc-hanashizuku a,
	.header-pc-menu .header-pc-tsuyuka a,
	.header-pc-menu .header-pc-sawaka a {
		display: inline-block;
		color: transparent;
		-webkit-background-clip: text;
		font-weight: 600;
	}
	/* 231128 花雫(ハナシズク) 特設ページ */
	.header-pc-menu .header-pc-hanashizuku a,
	.header-pc-menu .header-pc-hanashizuku a::after {
		background-image: linear-gradient(90deg, rgba(255, 126, 161, 1) 0%, rgba(255, 161, 223, 1) 100%);
	}
	/* 240424 露花(ツユカ) 特設ページ */
	.header-pc-menu .header-pc-tsuyuka a,
	.header-pc-menu .header-pc-tsuyuka a::after {
		background-image: linear-gradient(90deg, rgba(222, 190, 233, 1) 0%, rgba(196, 116, 181, 1) 100%);
	}
	/* 250414 爽果（サワカ）特設ページ */
	.header-pc-menu .header-pc-sawaka a,
	.header-pc-menu .header-pc-sawaka a::after {
		background-image: linear-gradient(90deg, rgb(0 158 254) 0%, rgb(111 197 248) 37.0447%, rgb(162 199 0) 100%);
	}
}