@charset "UTF-8";

/*================================================================
# kv
================================================================ */
.kv {
	width: 100%;
	padding: 8rem 0 0;
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	overflow: hidden;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-font-feature-settings: "pkna";
	font-feature-settings: "pkna";
	text-orientation: upright;
}

.kv__words {
	width: 30%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.kv__title {
	margin: 0;
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
	-webkit-mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-mask-position: 200% 0;
	mask-position: 200% 0;
}

.kv__title .inner {
	margin: 0;
	font-size: 3.2rem;
	font-weight: 400;
	color: var(--gold);
	letter-spacing: 0.2em;
}

@keyframes maskFadeIn {
	0% {
		-webkit-mask-position: 200% 0;
		mask-position: 200% 0;
	}

	100% {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}

.kv__img {
	width: 70%;
	animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
	-webkit-mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-mask-position: 200% 0;
	mask-position: 200% 0;
}

.kv__title::after {
	display: none;
}

/*================================================================
# intro
================================================================ */
.intro02 {
	margin: 8rem 0 0;
	text-align: center;
}

.intro02 .intro02__title01 {
	padding: 2px 16px 4px;
	background-color: var(--white);
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--black);
}

.intro02 .intro02__title02 {
	font-size: 20px;
	line-height: 1.618;
	color: var(--gold);
}

.intro02 .intro02__title03 {
	margin: 24px 0 0;
	font-size: 32px;
	font-weight: 400;
}

.intro02 .intro02__title03 span {
	padding: 0 0 8px;
	position: relative;
	font-size: 22px;
	font-weight: 400;
}

.intro02 .intro02__title03 span:before {
	width: calc(100% + 24px);
	height: 1px;
	background-color: var(--beige);
	position: absolute;
	content: "";
	bottom: 0;
	left: -12px;
}

.intro02 .intro02__title03 strong {
	padding: 16px 0 0;
	display: block;
	font-size: 32px;
	font-weight: 400;
}

.intro02 .intro02__text {
	margin: 32px 0 0;
}

/*================================================================
# 中面 - アンカー
================================================================ */
.anchor--list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.anchor--list li {
	width: 100%;
	border-bottom: 1px solid var(--border);
}

.anchor--list li:first-child {
	border-top: 1px solid var(--border);
}

.anchor--list a {
	min-height: 7.2rem;
	padding: 1.6rem 4rem 1.6rem 0.8rem;
	border-radius: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--gold);
	letter-spacing: 0.04em;
	transition: color 0.3s;
}

.anchor--list a strong {
	margin-top: 0.2rem;
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--text01);
	letter-spacing: 0.05em;
}

.anchor--list a::after {
	width: 1rem;
	height: 0.6rem;
	margin: 0;
	opacity: 0.6;
	background-color: var(--gold);
	position: absolute;
	content: "";
	top: 50%;
	right: 0.8rem;
	display: block;
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
}

/*================================================================
#
================================================================ */
.section {
	padding: 0;
}

.layout01 .type {
	margin: 8rem 0 0;
}

.layout01.img-gallery .row .left {
	padding: 0;
}

.layout01.img-gallery .row {
	margin: 4rem 0 0;
}

.layout01 .row .popup {
	width: 16rem;
	height: 16rem;
	padding: 4px 15px;
	border: 1px solid var(--white);
	border-radius: 9999px;
	position: absolute;
	top: -1.6rem;
	right: 0rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	color: var(--white);
	text-align: center;
	z-index: 2;
}

.layout01 .row .popup:before {
	width: 24px;
	height: 24px;
	border-right: 1px solid var(--white);
	background-color: var(--back03);
	position: absolute;
	content: "";
	top: 90%;
	left: 16px;
	transform: skew(-40deg);
}

.layout01 .row .popup strong {
	font-size: 18px;
}

.heading02 .title-jp span {
	font-size: 2.4rem;
}

.heading02 .title-jp02 {
	margin: 2.4rem 0 0;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.618;
}

.heading02 .title-jp02 strong {
	font-size: 5.8rem;
	font-weight: 400;
}

/*================================================================
# plan-box
================================================================ */
.plan-box {
	max-width: 1420px;
	margin: 4rem auto 0;
	padding: 0;
}

.plan-box .row {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.plan-box .left {
	width: 88%;
	margin: -6.4rem auto 0;
	position: relative;
	z-index: 2;
	order: 2;
}

.plan-box .right {
	width: 100%;
	margin: 8rem 0 0 auto;
	padding: 5.4rem 3.2rem 10rem;
	background: var(--white);
	position: relative;
	color: var(--blue);
	order: 1;
}

.plan-box .plan-tag {
	margin: 0;
	position: relative;
}

.plan-box .plan-tag span {
	padding: 0.5rem 1.5rem;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--gold);
	letter-spacing: 0.05em;
}

.plan-box .plan-copy {
	margin: 2.4rem 0 0;
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--blue);
}

.plan-box .plan-name {
	margin: 0.4rem 0 0;
	position: relative;
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--blue);
}

.plan-box .plan-period {
	margin: 2.4rem 0 0;
	position: relative;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--blue);
}

.plan-box .plan-text {
	margin: 2.4rem 0 0;
	position: relative;
	font-size: 1.4rem;
	line-height: 2;
	color: var(--blue);
}

.plan-box .list-title {
	margin: 1.6rem 0 0;
	font-size: 2rem;
	font-weight: bold;
	color: var(--blue);
	text-align: center;
}

.plan-box .list-title em {
	margin: 0 0.4rem;
	font-size: 3.2rem;
}

.plan-box .box {
	margin: 0.8rem 0 0;
	padding: 3.2rem;
	background-color: rgba(210, 197, 191, 0.5);
	position: relative;
	font-size: 1.4rem;
	font-weight: 600;
}

.plan-box .box .list {
	margin: 0 0 0 16px;
	list-style: none;
}

.plan-box .box .list>li {
	text-indent: -16px;
}

.plan-box .box .list>li::before {
	margin-right: 0.4rem;
	content: "★";
	font-size: 1.4rem;
	color: var(--blue);
}

.plan-box .box .list>li+li {
	margin: 0.8rem 0 0;
}

.plan-box .box .list ul {
	margin: 8px 0 0 8px;
}

.plan-box .box .list ul li+li {
	margin: 0.8em 0 0;
}

.plan-box .plan-btn {
	margin-top: 2rem;
	text-align: center;
}

.plan-box .plan-btn a {
	width: 100%;
	padding: 2.4rem 0.8rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, #866b0b, #cfaf3b);
	box-shadow: 0 5px 15px rgba(67, 53, 3, 0.457);
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.plan-box .plan-btn a .arrow-icon {
	width: 24px;
	height: 24px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0.8rem;
	bottom: 0;
	transition: transform 0.3s ease-in-out;
}

.plan-box .note {
	margin: 0.4rem 0 0;
	font-size: 1.1rem;
	color: var(--blue);
	text-indent: -1em;
}

/*================================================================
# slider
================================================================ */
.splide {
	width: 640px;
	margin: 4rem 0 0;
}

.custom-pagination {
	margin-top: 2rem;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start;
}

.custom-pagination-dot {
	width: 4px;
	height: 4px;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 50%;
	background: #ccc;
	transition: 0.3s ease;
}

.custom-pagination-dot.is-active {
	background: var(--gold);
	transform: scale(2);
}

/*================================================================
# 手巻き寿司プラン
================================================================ */
.temaki-plan {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 0 16px 64px;
}

.temaki-plan .pc {
	display: none !important;
}

.temaki-plan__inner {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.temaki-plan__image {
	width: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	order: 1;
}

.temaki-plan__image>img {
	width: 100%;
	aspect-ratio: 843 / 562;
	object-fit: cover;
}

.temaki-plan__body {
	width: 100%;
	margin: 0;
	padding: 32px 24px;
	background: var(--white);
	color: var(--blue);
	order: 2;
}

.temaki-plan__tag {
	margin: 0;
	position: relative;
}

.temaki-plan__tag span {
	padding: 5px 14px;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	color: var(--gold);
	letter-spacing: 0.05em;
}

.temaki-plan__copy {
	margin: 20px 0 0;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
	color: var(--blue);
}

.temaki-plan__name {
	margin: 8px 0 0;
	position: relative;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.45;
	color: var(--blue);
}

.temaki-plan__period {
	margin: 20px 0 0;
	position: relative;
	font-size: 15px;
	font-weight: bold;
	color: var(--blue);
}

.temaki-plan__text {
	margin: 20px 0 0;
	position: relative;
	font-size: 14px;
	line-height: 2;
	color: var(--blue);
}

.temaki-plan__img {
	width: 100%;
	margin: 24px 0 0;
}

.temaki-plan__img img {
	width: 100%;
	aspect-ratio: 843 / 562;
	object-fit: cover;
}

.temaki-plan__menu {
	margin: 24px 0 0;
	padding: 28px 18px 24px;
	background: linear-gradient(180deg, #12203f 0%, #091226 100%);
	position: relative;
	overflow: hidden;
	color: var(--white);
}

.temaki-plan__menu::before {
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	pointer-events: none;
	border: 1px solid rgba(194, 164, 117, 0.6);
	position: absolute;
	content: "";
	top: 8px;
	left: 8px;
}

.temaki-plan__menu::after {
	width: 140px;
	height: 140px;
	pointer-events: none;
	border-radius: 9999px;
	background: radial-gradient(circle, rgba(194, 164, 117, 0.3) 0%, rgba(194, 164, 117, 0) 70%);
	position: absolute;
	content: "";
	top: -56px;
	right: -56px;
}

.temaki-plan__menu-head {
	position: relative;
	text-align: center;
	z-index: 1;
}

.temaki-plan__menu-label {
	padding: 4px 14px;
	border-top: 1px solid rgba(194, 164, 117, 0.8);
	border-bottom: 1px solid rgba(194, 164, 117, 0.8);
	display: inline-block;
	font-size: 11px;
	line-height: 1.4;
	color: var(--gold);
	letter-spacing: 0.12em;
}

.temaki-plan__menu-title {
	margin: 8px 0 0;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--gold);
	letter-spacing: 0.08em;
}

.temaki-plan__menu-list {
	margin: 22px 0 0;
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	z-index: 1;
}

.temaki-plan__menu-item {
	border: 1px solid rgba(194, 164, 117, 0.45);
	background: rgba(255, 255, 255, 0.06);
	position: relative;
	display: flex;
	align-items: stretch;
	overflow: visible;
}

.temaki-plan__menu-img {
	width: 36%;
	flex-shrink: 0;
	overflow: hidden;
}

.temaki-plan__menu-img img {
	width: 100%;
	height: 100%;
	min-height: 96px;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.temaki-plan__menu-body {
	width: 64%;
	min-height: auto;
	padding: 14px 14px 14px 28px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.temaki-plan__menu-num {
	width: 34px;
	height: 34px;
	background: none;
	position: absolute;
	top: -8px;
	left: -8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: var(--blue);
	text-indent: 0;
	z-index: 2;
}

.temaki-plan__menu-num::before {
	width: 34px;
	height: 34px;
	border: none;
	background: linear-gradient(135deg, #f5df8e, #9a7422);
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: -1;
	transform: rotate(45deg);
}

.temaki-plan__menu-num::after {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(12, 20, 44, 0.45);
	position: absolute;
	content: "";
	top: 3px;
	left: 3px;
	z-index: -1;
	transform: rotate(45deg);
}

.temaki-plan__menu-name {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--gold);
	letter-spacing: 0.04em;
}

.temaki-plan__menu-body p {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--text01);
}

.temaki-plan__menu-item:hover .temaki-plan__menu-img img {
	filter: brightness(1.08);
	transform: scale(1.06);
}

.temaki-plan__btn {
	margin-top: 24px;
	text-align: center;
}

.temaki-plan__btn a {
	width: 100%;
	padding: 20px 48px 20px 24px;
	border-radius: 9999px;
	background: linear-gradient(135deg, #866b0b, #cfaf3b);
	box-shadow: 0 5px 15px rgba(67, 53, 3, 0.457);
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.6;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.temaki-plan__btn a strong {
	font-size: 17px;
}

.temaki-plan__btn a .arrow-icon {
	width: 22px;
	height: 22px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	transition: transform 0.3s ease-in-out;
}

.temaki-plan__btn a:hover {
	background: linear-gradient(135deg, #554301, #a58921);
	transform: translateY(3px);
}

.temaki-plan__btn a:hover .arrow-icon {
	transform: translateX(3px);
}