@charset "UTF-8";

/* =============================================================================

Common CSS

・ヘッダー、フッター等のページ共通で使用される要素「.g-×××」

上記はここに記述する

============================================================================= */


/* タイポグラフィシステム ユーティリティ
----------------------------------------------------------------------------- */

/* 欧文タイトルA 擬似要素にするかも*/
.u-heading-a-en {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	line-height: var(--text-a-lh);

	@media (width > 767px) {/* PC */
		font-size: var(--text-a-fs-pc);
		letter-spacing: var(--text-a-ls-pc);
	}
	@media (width <= 767px) {/* SP */
		font-size: var(--text-a-fs-sp);
		letter-spacing: var(--text-a-ls-sp);
	}
}

/* 和文テキストA キャッチピー*/
.u-text-a-ja {
	font-family: var(--ff-shuei);
	line-height: 2.4;
	letter-spacing: 0.2em;

	@media (width > 767px) {/* PC */
		font-size: 1.8rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1.4rem;
	}
}

/* 和文テキストB 本文*/
.u-text-b-ja {
	/* font-family: var(--ff-shuei); */
	line-height: 2.4;
	letter-spacing: 0;

	@media (width > 767px) {/* PC */
		font-size: 1.4rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1rem;
		white-space: nowrap;
	}
}

/* Text Align Utilities */
.u-ta-left {
	text-align: left;
}

.u-ta-center {
	text-align: center;
}

.u-ta-right {
	text-align: right;
}


/* h2 デフォルトスタイル 欧文は擬似要素
----------------------------------------------------------------------------- */
.u-heading-mixed {
	position: relative;
	display: inline-block;
	text-align: center;
	font-weight: var(--text-fw-ja);
	line-height: 1;
	letter-spacing: 0;
	z-index: 1;

	@media (width > 767px) {/* PC */
		min-width: 32rem;
		font-size: 1.2rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1rem;
	}
	& span {
		position: relative;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1;
		&::before {
			display: block;
			content: attr(data-subtext);
			text-transform: uppercase;
			font-family: var(--ff-loniki);
			font-weight: var(--text-fw-en);
			line-height: var(--text-a-lh);
			color: var(--cc-pinkgold);
			@media (width > 767px) {/* PC */
				padding-block-end: 2.8rem;
				font-size: var(--text-a-fs-pc);
				letter-spacing: var(--text-a-ls-pc);
			}
			@media (width <= 767px) {/* SP */
				padding-block-end: 1.8rem;
				font-size: var(--text-a-fs-sp);
				letter-spacing: var(--text-a-ls-sp);
			}
		}
	}
	/* 装飾付きバリエーション */
	&:where(.-decorated) {
		padding-inline: 4rem;
		&::before, &::after {
			content: '';
			position: absolute;
			top: 0;
			width: 1px;
			height: 100%;
			background-color: var(--cc-line-A);
			transform: scale(1);
			z-index: 1;
		}
		&::before {
			left: 0;
		}
		&::after {
			right: 0;
		}
	}
	/* -js_underline用 */
	&:where(.-decorated.-js_underline) {
		&::before {
			transform-origin: top;
		}
		&::after {
			transform-origin: bottom right;
		}
		&::before, &::after {
			transform: scale(0);
			transition: transform 0.3s ease-out;
			transition-delay: 0.3s;
		}
	}
	&:where(.-min_sp) {
		@media (width <= 767px) {/* SP */
			& span {
				&::before {
					font-size: 1.8rem;
					line-height: 1.4;
				}
			}
		}
	}
	/* 下層ページタイトル */
	&:where(.-sub-page-title) {
		@media (width > 767px) {
			min-width: auto;
			font-size: 1.4rem;
		}
		& span {
			&::before {
				@media (width > 767px) {
					font-size: 4rem;
				}
				@media (width <= 767px) {
					font-size: 2.8rem;
					letter-spacing: 0.14em;
				}
			}
		}
	}
	&:where(.-left) {
		& span {
			@media (width > 767px) {
				align-items: flex-start;
			}
		}
	}
}


/* js 擬似要素のアニメーション
----------------------------------------------------------------------------- */
.-js_underline {
	&.is-active {
		&::before, &::after {
			transform: scale(1);
		}
	}
}

/* 追従フッター
----------------------------------------------------------------------------- */
.flowbottomSP {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 44px;
	display: table;
	text-align: center;
	transition: transform 1.0s;
	transform: translateY(100%);
	z-index: 999;
	a {
		display: table-cell;
		background-color: #FFF;
		vertical-align: middle;
		&:nth-child(2) {
			background-color: #FFFEB7;
		}
	}
	& span {
		font-size: 1.1rem;
	}

	.state_fewscroll & {
		transform: none;
	}
}

/* ページトップボタン
----------------------------------------------------------------------------- */
.pagetopbtn {
	display: block;
	position: fixed;
	bottom: 60px;
	right: 10px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	filter: opacity(0%);
	pointer-events: none;
	background-color: #fff;
	z-index: 999;
	margin-bottom: env(safe-area-inset-bottom);
	&:before {
		content: "";
		display: block;
		position: absolute;
		top: 7px;
		bottom: 0;
		right: 0;
		left: 0;
		width: 12px;
		height: 12px;
		margin: auto;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		transform: rotate(-45deg);
	}

	@media(hover) {
		& {
			transition: 0.2s;
		}
		&:hover {
			opacity:.6;
		}
	}

	.state_screenheightscroll & {
		filter: opacity(100%);
		pointer-events: auto;
	}
}

/* ヘッダー
----------------------------------------------------------------------------- */
/* Menu dialog removed - using HTML dialog element instead */
.g-header {
}
.g-header-row {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid var(--cc-line-A);
	@media (width <= 767px) {/* SP */
		.link {
			margin-top: 20px;
		}
		.one {
			font-size: 2rem;
			color: #FFF;
			font-weight: bold;
			display: block;
			text-align: center;
			+ .one {
				margin-top: 10px;
			}
		}
	}
	.g-header-inner {
		width: 100%;
		height: var(--header-height-pc);
		display: flex;
		align-items: center;
		background-color: var(--cc-back);
		@media (width > 767px) {/* PC */
			justify-content: center;
		}
		@media (width <= 767px) {/* SP */
			height: var(--header-height-sp);
			padding-inline: 2rem 0;
		}
	}
	.g-header-logo {
		display: block;
		height: auto;
		@media (width > 767px) {/* PC */
			width: 18rem;
		}
		@media (width <= 767px) {/* SP */
			width: 13rem;
			outline: none;
		}
		@media(hover) {
			& {
				transition: 0.2s;
			}
			&:hover {
				opacity: 0.6;
			}
		}
	}
	.link {
	}
}



.g-header-fixed-link {
	position: fixed;
	top: 0;
	display: flex;
	z-index: 1001;
	@media (width > 767px) {/* PC */
		height: var(--header-height-pc);
		right: 8rem;
	}
	@media (width <= 767px) {/* SP */
		height: var(--header-height-sp);
		right: 6rem;;
	}
	> * {
		border-right: 1px solid var(--cc-line-A);
		@media (hover) {
			& {
				transition: 0.3s;
			}
			&:hover {
				opacity: 0.6;
			}
		}
	}
}
.g-header-btn-like {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	@media (width > 767px) {/* PC */
		width: 10rem;
	}
	@media (width <= 767px) {/* SP */
		width: 5.3rem;
	}
	svg {
		@media (width > 767px) {/* PC */
			width: 2rem;
			height: 1.8rem;
		}
		@media (width <= 767px) {/* SP */
			width: 1.2rem;
			height: 1.1rem;
		}
	}
}
.g-header-btn-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	letter-spacing: 0.1em;
	@media (width > 767px) {/* PC */
		padding-inline: 4rem;
		font-size: 1.4rem;
	}
	@media (width <= 767px) {/* SP */
		padding-inline: 1.5rem;
		font-size: 1rem;
	}
}
.g-header-menu-button {
	width: 8rem;
	height: var(--header-height-pc);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1001;
	background: transparent;
	border: none;
	cursor: pointer;
	@media (width <= 767px) {/* SP */
		height: var(--header-height-sp);
		width: 6rem;
	}

	.g-header-menu-icon-bar {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 3rem;
		height: 2px;
		margin: auto;
		background-color: #343434;
		transition: 0.3s;
		@media (width <= 767px) {/* SP */
			width: 2.2rem;
		}
		&:nth-child(1) {
			top: -6px;
		}
		&:nth-child(2) {
			bottom: -6px;
		}
	}

	&[aria-expanded="true"] .g-header-menu-icon-bar {
		&:nth-child(1) {
			transform: rotate(45deg);
			top: 0;
		}
		&:nth-child(2) {
			transform: rotate(-45deg);
			bottom: 0;
		}
	}
}

/* Dialog Menu
----------------------------------------------------------------------------- */
.g-header-menu-dialog {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	padding: 0;
	background-color: rgba(var(--cc-back-rgb), 0.96);
	color: inherit;
	z-index: 1000;

	&::backdrop {
		background-color: rgba(0, 0, 0, 0);
		height: calc(100vh - var(--header-height-pc));
		bottom: 0;
		top: auto;
		@media (width <= 767px) {/* SP */
			height: calc(100vh - var(--header-height-sp));
		}
	}

	&:not([open]) {
		display: none;
	}

	&[open] {
		display: flex;
		animation: menu-dialog-fade-in 0.4s ease-out;

	}
}
/* dialog デザイン合わせ */
.g-header-menu-dialog {
	max-width: 100%;
	margin: 0;
	border-top: 1px solid var(--cc-line-A);
	@media (width > 767px) {/* PC */
		/* top: var(--header-height-pc); */
		top: 0;
	}
	@media (width <= 767px) {/* SP */
		top: var(--header-height-sp);
		/* top: 0; */
	}
}
.g-header-menu-dialog-container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.g-header-menu-dialog-close {
	background: transparent;
	border: none;
	cursor: pointer;
	height: var(--header-height-pc);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1002;
	@media (width > 767px) {/* PC */
		width: 8rem;
	}
	@media (width <= 767px) {/* SP */
		width: 6rem;
		height: var(--header-height-sp);
	}

	.g-header-menu-icon-close .g-header-menu-icon-bar {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 3rem;
		height: 2px;
		margin: auto;
		background-color: #343434;
		transition: 0.3s;
		@media (width <= 767px) {/* SP */
			width: 2.2rem;
		}
		&:nth-child(1) {
			transform: rotate(45deg);
		}
		&:nth-child(2) {
			transform: rotate(-45deg);
		}
	}
}

.g-header-menu-dialog .g-header-menu-area {
	flex: 1;
	@media (width > 767px) {/* PC */
		padding-block: calc(var(--header-height-pc) + 10rem) 12rem;
	}
	@media (width <= 767px) {/* SP */
		overflow-y: auto;
		padding-block: 0 5rem;
	}
}

@keyframes menu-dialog-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.g-header-menu-dialog .g-header-menu-navi {
	display: flex;
	flex-wrap: wrap;
	@media (width > 767px) {/* PC */
		justify-content: center;
	}
	@media (width <= 767px) {/* SP */
		width: calc(100% - 6rem);
		margin-inline: auto;
	}
}

.g-header-menu-dialog .g-header-menu-list {
	position: relative;
	z-index: 1;
	@media (width > 767px) {/* PC */
		width: 24rem;
		/* max-height: 24rem; */
		padding-inline: 4rem;
		&::before {
			content: '';
			position: absolute;
			top: 3.5rem;
			bottom: 0;
			left: 0;
			width: 1px;
			margin-block: auto;
			background-color: var(--cc-line-A);
			height: 100%;
			z-index: -1;
		}
		&:last-of-type {
			&::after {
				content: '';
				position: absolute;
				top: 3.5rem;
				bottom: 0;
				right: 0;
				width: 1px;
				margin-block: auto;
				background-color: var(--cc-line-A);
				height: 100%;
				z-index: -1;
			}
		}
	}
	@media (width <= 767px) {/* SP */
		width: 50%;
		padding-block: 3rem;
		/* .g-header-menu-listの３個目以降をセレクタ指定 */
		&:nth-of-type(n + 3) {
			position: relative;
			z-index: 1;
			&::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: calc(100% * 2);
				height: 1px;
				background-color: var(--cc-line-A);
				z-index: 1;
			}
		}
	}
}

.g-header-menu-dialog .g-header-menu-item {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	& a {
		position: relative;
		display: inline-block;
		padding-block: 1.2rem;
		padding-left: 1.4rem;
		z-index: 1;
		&::before {
			position: absolute;
			content: "";
			top: 0;
			bottom: 0;
			left: 0;
			margin-block: auto;
			width: 0.8rem;
			height: 1px;
			background-color: var(--cc-pinkgold);
			z-index: 1;
		}
		& span {
			position: relative;
			display: inline-block;
			line-height: 1;
			z-index: 1;
			&::before {
				display: inline-block;
				content: '';
				position: absolute;
				inset: 0;
				top: 0;
				left: 0;
				height: 100%;
				background-color: #DCCFC2;
				transition: all 0.3s ease-out;
				transform: scaleX(0);
				transform-origin: left;
				will-change: transform;
				z-index: -1;
			}
		}
		@media (hover) {
			&:hover {
				& span {
					&::before {
						transform: scaleX(1);
					}
				}
			}
		}
	}
}

.g-header-menu-dialog .g-header-menu-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	@media (width > 767px) {/* PC */
		gap: 8rem;
		margin-top: 9rem;
	}
	@media (width <= 767px) {/* SP */
		flex-direction: column;
		gap: 3rem;
		margin-top: 2rem;
	}
}

.g-header-menu-dialog .g-header-menu-sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	margin-top: 8rem;
	@media (width <= 767px) {/* SP */
		gap: 4.4rem;
		margin-top: 4rem;
	}
	& a {
		display: block;
		width: 2.6rem;
		height: 2.6rem;
		svg {
			width: 100%;
			height: 100%;
		}
		@media(hover) {
			& {
				transition: opacity 0.3s;
			}
			&:hover {
				opacity: 0.6;
			}
		}
	}
}

.g-header-menu-sns-item--facebook {
	background-image: url('/assets/img/icon-facebook.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.g-header-menu-sns-item--instagram {
	background-image: url('/assets/img/icon-instagram.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.pankuzu {
	width: 100%;
	background-color: var(--cc-back);
	border-top: 1px solid var(--cc-line-A);
	margin: auto;
	text-align: left;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	box-sizing: content-box;
	-ms-overflow-style: none;
  scrollbar-width: none;
	@media (width > 767px) {
		height: 3.8rem;
	}
	@media (width <= 767px) {
		height: 3.3rem;
	}
	&::-webkit-scrollbar {
    display: none;
	}
	p {
		text-decoration: none;
		border: none;
		display: block;
		height: 100%;
		@media (width > 767px) {
			padding-inline: 4.8rem;
		}
		@media (width <= 767px) {
			padding-inline: 3rem;
		}
	}
	.link {
		height: 100%;
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		word-break: keep-all;
		+ .link {
			margin-left: 28px;
			&:before {
				content: "";
				display: block;
				width: 6px;
				height: 6px;
				border-right: 1px solid var(--cc-black-B);
				border-top: 1px solid var(--cc-black-B);
				position: absolute;
				top: 0;
				bottom: 0;
				left: -22px;
				margin: auto;
				transform: rotate(45deg);
			}
		}
		&:last-of-type {
			@media (width <= 767px) {
				padding-right: 3rem;
			}
		}
		& a {
			font-family: var(--ff-loniki);
			font-size: 1.2rem;
			line-height: 1;
			letter-spacing: 0.16em;
			color: var(--cc-black-B);
			text-transform: uppercase;
		}
	}
}


/* フッター
----------------------------------------------------------------------------- */
.g-footer {
	position: relative;
	background: var(--cc-back);
	border-top: 1px solid var(--cc-line-A);
	@media (width > 767px) {/* PC */
	}
}

.g-footer-inner {
	position: relative;
}

/* トップセクション */
.g-footer-top {
	width: 100%;
	@media (width > 767px) {/* PC */
		display: flex;
		align-items: center;
		border-bottom: 0.1rem solid var(--cc-line-A);
	}
	@media (width <= 767px) {/* SP */
	}
}

/* ボックスリンク */
.g-footer-top-link {
	display: flex;
	align-items: center;
	@media (width > 767px) {/* PC */
		flex-direction: column;
		justify-content: center;
		width: 33%;
		height: 23.4rem;
		&:nth-of-type(n + 2) {
			border-left: 1px solid var(--cc-line-A);
		}
	}
	@media (width <= 767px) {/* SP */
		position: relative;
		z-index: 1;
		padding-block: 2.5rem;
		border-bottom: 1px solid var(--cc-line-A);
		.u-heading-mixed {
			padding-inline-start: 3rem;
			&::after {
				content: "";
				position: absolute;
				display: block;
				top: 0;
				left: 0;
				width: 1px;
				height: 100%;
				background-color: var(--cc-line-A);
				z-index: 1;
			}
			& span {
				align-items: baseline;
				&::before {
					padding-block-end: 1.5rem;
				}
			}
		}
		/* ._schedule ~ .g-footer-top-link-svg {
			svg {
				width: 2.6rem;
				height: 2.6rem;
			}
		} */
		.c-btn-tertiary {
			position: absolute;
			right: 3rem;
			top: 0;
			bottom: 0;
			margin-block: auto;
			pointer-events: none;
		}
	}
	.g-footer-top-link-svg {
		@media (width > 767px) {/* PC */
			margin-bottom: 1rem;
		}
		@media (width <= 767px) {/* SP */
			display: grid;
			place-content: center;
			width: 9rem;
		}
	}
	@media (hover) {
		& {
			@media (width > 767px) {/* PC */
				.u-heading-mixed {
					&::after {
						content: "";
						position: absolute;
						top: 0.9rem;
						right: 0;
						background-image: url('/assets/img/icon-arrow-pg.svg');
						background-repeat: no-repeat;
						background-position: center;
						background-size: contain;
						width: 1.8rem;
						height: 1.4rem;
						transform: scale(0);
						transition: transform 0.3s ease-out;
					}
					&._schedule {
						&::after {
							right: 4rem;
						}
					}
					&.--faq {
						&::after {
							right: calc(50% - 5.7rem);
						}
					}
					&.--family {
						&::after {
							right: 0.1rem;
						}
					}
					& span {
						&::before {
							transition: all 0.3s ease-out;
							transform: translateX(0);
						}
					}
				}
			}
			@media (width <= 767px) {/* SP */
			}
		}
		&:hover {
			@media (width > 767px) {/* PC */
				.u-heading-mixed {
					&::after {
						transform: scale(1);
					}
					& span {
						&::before {
							transform: translateX(-8px);
						}
					}
				}
			}
			@media (width <= 767px) {/* SP */
				.c-btn-tertiary {
					transform: scale(0.9);
					background-color: var(--cc-pinkgold);
					svg {
						path {
							fill: var(--cc-white-A);
						}
					}
				}
			}
		}
	}
}

.g-footer-menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;

	@media (width > 767px) {/* PC */
		padding-block: 2rem;
		border-inline-end: 0.1rem solid var(--cc-line-A);

		&:last-child {
			border-inline-end: none;
		}
	}
	@media (width <= 767px) {/* SP */
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding-block: 1.6rem;
		padding-inline: 3rem 5rem;
		border-bottom: 0.1rem solid var(--cc-line-A);

		&::after {
			content: '';
			position: absolute;
			inset-inline-end: 3rem;
			width: 3rem;
			height: 3rem;
			border: 0.1rem solid var(--cc-pinkgold);
			border-radius: 50%;
			background-image: url('/assets/img/icon-arrow-circle.svg');
			background-repeat: no-repeat;
			background-position: center;
			background-size: 1rem;
		}

		&:last-child {
			border-bottom: 0.1rem solid var(--cc-line-A);
		}
	}
}

.g-footer-icon {
	@media (width > 767px) {/* PC */
		width: 3rem;
		height: 3rem;
		margin-block-end: 1.6rem;
	}
	@media (width <= 767px) {/* SP */
		width: 2.6rem;
		height: 2.6rem;
		margin-inline-end: 2rem;
		flex-shrink: 0;
	}

	& img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

/* ボタンセクション */
.g-footer-buttons {
	display: flex;
	justify-content: center;
	border-bottom: 0.1rem solid var(--cc-line-A);

	@media (width > 767px) {/* PC */
		padding-block: 10rem;
		gap: 8rem;
	}
	@media (width <= 767px) {/* SP */
		flex-direction: column;
		align-items: center;
		padding-block: 6rem;
		gap: 3rem;
	}
}

/* メインコンテンツセクション */
.g-footer-main {
	@media (width > 767px) {/* PC */
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		border-bottom: 0.1rem solid var(--cc-line-A);
		padding-block: 5rem;
		> * {
			padding-block: 5rem;
		}
	}
	@media (width <= 767px) {/* SP */
		padding-block: 7.8rem 6rem;
		border-bottom: 0.1rem solid var(--cc-line-A);
		padding-inline: 8vw;
	}
}

/* ロゴコンテンツ */
.g-footer-logo {
	@media (width > 767px) {/* PC */
		padding-inline: 0 8.8rem;
	}
	@media (width <= 767px) {/* SP */

	}
}
.g-footer-logo-img {
	@media (width > 767px) {/* PC */
		align-self: start;
		padding-block-start: .4rem;
		margin-top: .9rem;
	}
	@media (width <= 767px) {/* SP */
		text-align: center;
		margin-block-end: 2.4rem;
	}
	& a {
		display: block;
		@media (width > 767px) {/* PC */
			width: 26.4rem;
		}
		@media (width <= 767px) {/* SP */
			width: 20rem;
			margin-inline: auto;
		}
		@media (hover) {
			& {
				transition: opacity 0.3s;
			}
			&:hover {
				opacity: 0.6;
			}
		}
	}
	& img {
		width: 100%;
		height: auto;
	}
}

.g-footer-sns {
	display: flex;
	@media (width > 767px) {/* PC */
		gap: 4rem;
		margin-top: 10.4rem;
	}
	@media (width <= 767px) {/* SP */
		justify-content: center;
		gap: 4.4rem;
	}
	& a {
		@media (width > 767px) {/* PC */
			width: 2.6rem;
            height: 2.6rem;
		}
		@media (width <= 767px) {/* SP */
			width: 2.2rem;
			height: 2.2rem;
		}
		& img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
		@media (hover) {
			& {
				transition: opacity 0.3s;
			}
			&:hover {
				opacity: 0.6;
			}
		}
	}
}
.g-footer-sns-facebook {
	background-image: url('/assets/img/icon-facebook.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.g-footer-sns-instagram {
	background-image: url('/assets/img/icon-instagram.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}


.g-footer-info {
	@media (width > 767px) {/* PC */
		padding-inline: 7.7rem;
		position: relative;
		z-index: 1;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			margin-block: auto;
			left: 0;
			width: 1px;
			height: 19rem;
			background-color: var(--cc-line-A);
			z-index: 1;
		}
	}
	@media (width <= 767px) {/* SP */
		margin-block: 4rem 0;
	}
}

.g-footer-tel {
	padding-block: 1rem;
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	color: var(--cc-pinkgold);
	letter-spacing: 0.15em;
	line-height: 1;

	@media (width > 767px) {/* PC */
		font-size: 3rem;
	}
	@media (width <= 767px) {/* SP */
		padding-block: 1.1rem 1.5rem;
		font-size: 2.4rem;
	}
	& a {
		display: block;
	}
}

.g-footer-address {
	line-height: 2;

	@media (width > 767px) {/* PC */
		font-size: 1.4rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1rem;

		p:last-child {
			font-size: 1.2rem;
		}
	}
}

.g-footer-hours {
	line-height: 2;

	@media (width > 767px) {/* PC */
		font-size: 1.4rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1.2rem;
	}
}
.g-footer-hours-text {
	&:nth-of-type(2) {
		@media (width > 767px) {/* PC */
			margin-left: 7.1rem;
		}
		@media (width <= 767px) {/* SP */
			margin-left: 6rem;
		}
	}
}

.g-footer-note {
	line-height: 2;
	margin-block-start: 0.8rem;

	@media (width <= 767px) {/* SP */
		margin-block-start: 1.8rem;
		font-size: 1rem;
	}
}

.g-footer-nav {
	@media (width > 767px) {/* PC */
		padding-inline: 8rem;
		position: relative;
		z-index: 1;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			margin-block: auto;
			left: 0;
			width: 1px;
			height: 19rem;
			background-color: var(--cc-line-A);
			z-index: 1;
		}
	}
	@media (width <= 767px) {/* SP */
		margin-block-start: 3.4rem;
	}
}

.g-footer-nav-column {
	display: flex;
	flex-wrap: wrap;
	@media (width > 767px) {/* PC */
		height: 19rem;
		gap: 2rem;
	}
	@media (width <= 767px) {/* SP */
		justify-content: space-between;
		height: 19.5rem;
	}
}
.g-footer-nav-list {
	@media (width > 767px) {/* PC */
		min-width: 9rem;
		margin-top: -1rem;
		&:nth-of-type(n + 2) {
			min-width: 14rem;
		}
		&:nth-of-type(3) {
			min-width: 14rem;
		}
	}
	@media (width <= 767px) {/* SP */
	}
}
.g-footer-nav-item {
}
.g-footer-nav-link {
	display: inline-block;
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	letter-spacing: 0.15em;
	line-height: 1.7;
	padding-block: 1.1rem;
	& span {
		position: relative;
		display: inline-block;
		line-height: 1;
		z-index: 1;
		&::before {
			display: inline-block;
			content: '';
			position: absolute;
			inset: 0;
			top: 0;
			left: 0;
			height: 100%;
			background-color: #DCCFC2;
			transition: all 0.3s ease-out;
			transform: scaleX(0);
			transform-origin: left;
			will-change: transform;
			z-index: -1;
		}
	}
	@media (width > 767px) {/* PC */
		font-size: 1.2rem;
	}
	@media (width <= 767px) {/* SP */
		font-size: 1rem;
	}
	@media (hover) {
		& {
		}
		&:hover {
			& span {
				&::before {
					transform: scaleX(1);
				}
			}
		}
	}
}
.g-footer-nav-link._mylist {
	display: flex;
	align-items: center;
	@media (width > 767px) {/* PC */
		margin-block-start: 4.3rem;
	}
	@media (width <= 767px) {/* SP */
  		margin-block-start: 4.1rem;
	}
	.g-footer-mylist-text {
		position: relative;
		display: inline-block;
		z-index: 1;
		@media (width > 767px) {/* PC */
			padding-left: 2.8rem;
		}
		@media (width <= 767px) {/* SP */
			padding-left: 1.8rem;
		}
		&::after {
			position: absolute;
			content: "";
			display: inline-block;
            left: 0;
            top: 0;
            bottom: 0;
            margin-block: auto;
			background-image: url(../img/icon-heart-pg.svg);
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
			z-index: 1;
			@media (width > 767px) {/* PC */
				width: 1.6rem;
				height: 1.4rem;
			}
			@media (width <= 767px) {/* SP */
				width: 1.2rem;
				height: 1.1rem;
				bottom: -0.15em;
			}
		}
	}
	svg {
		@media (width > 767px) {/* PC */
			width: 1.6rem;
			height: 1.4rem;
			margin-right: 1.2rem;
		}
		@media (width <= 767px) {/* SP */
			width: 1.2rem;
			height: 1.1rem;
			margin-right: 0.6rem;
		}
	}
}

/* コピーライト */
.g-footer-copyright {
	background: var(--cc-back);
	text-align: center;
	border-top: 0.1rem solid var(--cc-line-A);

	@media (width > 767px) {/* PC */
		padding-block: 2.1rem;
	}
	@media (width <= 767px) {/* SP */
		padding-block: 1.2rem;
	}

	p {
		color: var(--cc-black-B);
		letter-spacing: 0.1em;
		line-height: 2;
		margin-block: 0;
		margin-inline: 0;

		@media (width > 767px) {/* PC */
			font-size: 1rem;
		}
		@media (width <= 767px) {/* SP */
			font-size: 0.8rem;
		}
	}
}

/* コンタクトエリア
----------------------------------------------------------------------------- */
.mod-contact {
	background-color: var(--cc-back);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--cc-line-A);

	@media (width > 767px) {
		padding-block: 8rem;
	}
	@media (width <= 767px) {
		padding-block: 6rem;
	}
}

.mod-contact-lead {
	line-height: 2.4;

	@media (width > 767px) {
		font-size: 1.4rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
	}
}

.mod-contact-tel {
	font-family: var(--ff-loniki);
	font-weight: var(--text-fw-en);
	color: var(--cc-pinkgold);
	letter-spacing: 0.15em;
	line-height: 1;

	@media (width > 767px) {
		font-size: 3rem;
		margin-top: 2.4rem;
	}
	@media (width <= 767px) {
		font-size: 2.4rem;
		margin-top: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	& a {
		display: block;
	}

	&::before {
		@media (width <= 767px) {
			content: '';
			display: block;
			width: 2.4rem;
			height: 2.4rem;
			margin-right: 0.2rem;
			margin-top: 0.3rem;
			background-image: url('/assets/img/icon-phone.svg');
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
		}
	}
}

.mod-contact-hours {
	line-height: 2;

	@media (width > 767px) {
		font-size: 1.4rem;
		margin-top: 2.6rem;
	}
	@media (width <= 767px) {
		font-size: 1rem;
		margin-top: 1.8rem;
	}
}

.mod-contact-link {
	@media (width > 767px) {
		margin-top: 3.8rem;
	}
	@media (width <= 767px) {
		margin-top: 2.4rem;
	}
}

/* View Animation - data-view対応
----------------------------------------------------------------------------- */
[data-view] {
	opacity: 0;
	transition-property: opacity, transform;
	transition-timing-function: ease-out;
	transition-duration: 0.8s;
	transition-delay: 0s; /* デフォルト値、JSで動的に変更される */

	/* アニメーション完了時 */
	&.js-viewed {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fade Only - opacityのみの変化 */
[data-view="fade"] {
	transform: none;

	&.js-viewed {
		transform: none;
	}
}

/* Fade Up - 下からふわっと表示 */
[data-view="fadeUp"] {
	transform: translateY(3rem);

	&.js-viewed {
		transform: translateY(0);
	}
}

/* Fade Down - 上からふわっと表示 */
[data-view="fadeDown"] {
	transform: translateY(-3rem);

	&.js-viewed {
		transform: translateY(0);
	}
}

/* Fade Left - 左からふわっと表示 */
[data-view="fadeLeft"] {
	transform: translateX(-3rem);

	&.js-viewed {
		transform: translateX(0);
	}
}

/* Fade Right - 右からふわっと表示 */
[data-view="fadeRight"] {
	transform: translateX(3rem);

	&.js-viewed {
		transform: translateX(0);
	}
}

