@charset "UTF-8";

/* 全体 */
body {
	position: relative;
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	/* PC時は中央 */
	align-items: center;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #FFF1DE 25%, transparent 25%, transparent 75%, #FFF1DE 75%), linear-gradient(45deg, #FFF1DE 25%, transparent 25%, transparent 75%, #FFF1DE 75%);
	background-position: 0 0, 90px 90px;
	background-size: 180px 180px;
}

.pc-btn-area {
	position: absolute;
	left: 6vw;
	top: 8vh;
	width: 20vw;
	max-width: 300px;
}

.pc-banner-area {
	position: absolute;
	right: 6vw;
	top: 14vh;
	width: 20vw;
	max-width: 300px;

}

@media screen and (max-width: 767px) {
	.pc-btn-area {
		display: none;
	}

	.pc-banner-area {
		display: none;
	}
}

/* スマホビューを再現するラッパー */
.lp-wrapper {
	width: 375px;
	/* PCではスマホサイズ */
	height: 100vh;
	background: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); */
	border-right: 4px solid #f19500;
	border-left: 4px solid #f19500;
}

/* コンテンツ */
.lp-content {
	width: 345px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
}

.lp-content img {
	display: block;
	margin: 0 auto;
}


.block {
	/* height: 100vh; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* background: #eee; */
	/* border-bottom: 1px solid #ccc; */
}


/* アンカーリンク */
.btn-ttl-deco::before {
	content: "";
	position: absolute;
	top: 15px;
	left: -122px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org01.svg") no-repeat center top;
	z-index: -1;
}

.btn-ttl-deco::after {
	content: "";
	position: absolute;
	top: 109px;
	left: 118px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org02.svg") no-repeat center top;
	z-index: -1;
}

.hov-action:hover {
	opacity: 0.8;
}

.btn-wrapper,
.festival-wrapper {
	position: relative;
	z-index: 0;
	background-color: #FFF1DE;
	padding-bottom: 50px;
}

.ttl-img {
	padding-top: 80px;
	padding-bottom: 50px;
	margin: 0 auto;
}

.btn-area {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btn-area img {
	display: block;
	width: 100%;
	height: auto;
}

.banner-area {
	padding-top: 50px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* トップ */
.top_content {
	position: relative;
	display: inline-block;
}

.top_backimg {
	display: block;
	width: 100%;
	height: auto;
}

.top_deco {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}


.top_ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/* マグロ解体ショー */
.maguro-text {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}

.maguro-text small {
	font-size: 1.3rem;
	font-weight: 100;
}

.gentei-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff5131;
	border-bottom: 5px solid #ff5131;
	width: fit-content;
	margin: 30px auto 10px;
}

.gentei-text span {
	font-size: 3rem;
}

.maguro-date {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 40px;
	justify-items: center;
	padding-bottom: 50px;
	z-index: 1;
}

.maguro-wrapper {
	background-image: url(./img/maguro_background.svg);
	background-size: cover;
	padding: 100px 0;
}

.maguro-ttl-deco::before {
	content: "";
	position: absolute;
	top: 310px;
	left: 128px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_wht01.svg") no-repeat center top;
	z-index: 0;
}

.maguro-ttl-deco::after {
	content: "";
	position: absolute;
	top: 370px;
	left: -128px;
	width: 100%;
	height: 140px;
	background: url("./img/cloud_wht02.svg") no-repeat center top;
	z-index: 0;
}

/* 会場情報色ちがい */
.festival-content {
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 30px;
}

.festival-content-red {
	border: 2px solid #B70F0F;
	box-shadow: 4px 4px #B70F0F;
}

.festival-content-green {
	border: 2px solid #008F0E;
	box-shadow: 4px 4px #008F0E;
}

.festival-content-purple {
	border: 2px solid #7500A3;
	box-shadow: 4px 4px #7500A3;
}

.festival-content-blue {
	border: 2px solid #0052CC;
	box-shadow: 4px 4px #0052CC;
}

.text-deco {
	width: fit-content;
	font-size: 2.4rem;
	font-weight: bold;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 0px 30px;
	border-radius: 60px;
}

.text-deco-red {
	border: 1px solid #B70F0F;
	color: #B70F0F;
}

.text-deco-green {
	border: 1px solid #008F0E;
	color: #008F0E;
}

.text-deco-purple {
	border: 1px solid #7500A3;
	color: #7500A3;
}

.text-deco-blue {
	border: 1px solid #0052CC;
	color: #0052CC;
}


.event-text {
	position: relative;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
	padding-left: 20px;
}

.event-red::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: #B70F0F;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	left: 0;
	transform: translateY(-50%);
}

.event-green::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: #008F0E;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	left: 0;
	transform: translateY(-50%);
}

.event-purple::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: #7500A3;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	left: 0;
	transform: translateY(-50%);
}

.event-blue::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: #0052CC;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	left: 0;
	transform: translateY(-50%);
}



.sab-ttl {
	width: fit-content;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	border-radius: 50px;
	margin: 0 auto;
	padding: 0 20px;
	z-index: 1;
}

.sab-ttl-red {
	background-color: #B70F0F;
	position: relative;
}

.sab-ttl-green {
	background-color: #008F0E;
	position: relative;

}

.sab-date {
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 120%;
	margin-bottom: 10px;
}

.sab-date-red {
	color: #B70F0F;
}

.sab-date-green {
	color: #008F0E;
}

.sab-content {
	background-color: #fff;
	margin-top: -25px;
	margin-bottom: 30px;
}

.sab-content-red {
	border: 2px solid #B70F0F;
	border-radius: 10px;
}

.sab-content-green {
	border: 2px solid #008F0E;
	border-radius: 10px;

}




/* 会場情報 */
.festival-ttl-deco::before {
	content: "";
	position: absolute;
	top: -17px;
	left: -126px;
	width: 100%;
	height: 160px;
	background: url("./img/kokoru_01.svg") no-repeat center top;
	z-index: 0;
}

.branch-text {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	margin-top: -30px;
	color: #333;
}


.event-content {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
}

.festival-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 60px;
}



.sab-venue {
	font-size: 2.4rem;
	font-weight: bold;
	color: #333;
	text-align: center;
	line-height: 120%;
	margin-bottom: 20px;
}


.sab-event-01,
.sab-event-02 {
	padding: 40px 20px;
	position: relative;
	text-align: center;
}

.sab-event-01 {
	padding-top: 55px;
}

.sab-event-02::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #B70F0F;
}

/* .map-url::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url("./img/map-icon.svg") no-repeat center / contain;
	vertical-align: middle;
	margin-bottom: 4px;
} */

.map-url {
	display: inline-flex;
	align-items: center;
	font-size: 1.8rem;
	text-decoration: underline;
	justify-content: center;
}


.map-pin {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 26px;
	margin-right: 6px;
	background: currentColor;
	clip-path: path("M9 0 C13.97 0 18 4.03 18 9 C18 15 9 26 9 26 C9 26 0 15 0 9 C0 4.03 4.03 0 9 0 Z");
}

.map-pin::after {
	content: "";
	position: absolute;
	top: 40%;
	left: 50%;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -60%);
}

.map-deco {
	border: 1px solid #333;
	border-radius: 5px;
}

.map-text {
	font-size: 1.5rem;
}

/* 背景処理 */
.btn-wrapper::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 0;
	width: 100%;
	height: 90px;
	background: url("./img/backdeco_01.svg") no-repeat center top;
	background-size: cover;
}

.btn-wrapper::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 100%;
	height: 90px;
	background: url("./img/backdeco_02.svg") no-repeat center bottom;
	background-size: cover;
}

.festival-wrapper::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 0;
	width: 100%;
	height: 90px;
	background: url("./img/backdeco_01.svg") no-repeat center top;
	background-size: cover;
}

.footer::before {
	content: "";
	position: absolute;
	bottom: 440px;
	left: 0;
	width: 100%;
	height: 90px;
	background: url("./img/backdeco_02.svg") no-repeat center bottom;
	background-size: cover;
	z-index: 1;
}

/* 動画 */
.yt-wrap {
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	position: relative;
}

.yt-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* 限定セット */
.specialsale {
	margin: 50px 0;
}

.limited-set-img {
	padding-bottom: 20px;
}

.contact-text {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	padding: 40px 0 10px;
}

.contact-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.8em 1.2em;
	border: 2px solid #2CA5DF;
	border-radius: 50px;
	background: #ffffff;
	color: #2CA5DF;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.contact-btn-icon {
	position: absolute;
	right: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2CA5DF;
	border-radius: 50%;
	width: 2.2em;
	height: 2.2em;
	transition: background 0.3s ease;
}

.contact-btn .icon-arrow {
	width: 1.1em;
	height: auto;
	fill: #ffffff;
	transition: fill 0.3s ease;
}

.btn-orange {
	border: 2px solid #f19500;
	color: #f19500;
}

.btn-orange-icon {
	background: #f19500;
}



@media (hover: hover) and (pointer: fine) {
	.contact-btn:hover {
		background: #2CA5DF;
		color: #ffffff;
	}

	.contact-btn:hover .contact-btn-icon {
		background: #ffffff;
	}

	.contact-btn:hover .icon-arrow {
		fill: #2CA5DF;
	}
	.btn-orange:hover {
		background: #f19500;
		color: #ffffff;
	}
	.btn-orange:hover .icon-arrow {
		fill: #f19500;
	}
}


/* 上に戻るボタン */
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20%;
	width: 70px;
	height: 70px;
	background-color: #f19500;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	line-height: 70px;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 9999;
}

.back-to-top.show {
	opacity: 1;
	pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
	.back-to-top:hover {
		background-color: #fff;
		color: #f19500;
		border: 2px solid #f19500;
		transform: scale(1.1);
	}
}

@media (max-width: 768px) {
	.back-to-top {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 34px;
		bottom: 20px;
		right: 20px;
	}
}

@media screen and (max-width: 767px) {
	body {
		display: block;
		height: auto;
	}

	.lp-wrapper {
		width: 100%;
		height: auto;
		border-radius: 0;
		box-shadow: none;
		border: none;
	}

	.btn-wrapper::before {
		top: -118px;
		height: 118px;
	}

	.btn-wrapper::after {
		bottom: -110px;
		height: 120px;
	}

	.festival-wrapper::before {
		top: -118px;
		height: 118px;
	}

	.footer::before {
		top: 0;
		height: 110px;
	}
}

/* 特化販売（下層ページ） */
.product-main{
	position: relative;
}
.product-top_ttl{
	width: 90%;
}
.product-top{
	margin-top: 110px;
}

.product-cont-01,
.product-cont-02 {
	padding: 20px 10px;
	position: relative;
	text-align: center;
}

.product-cont-01 {
	padding-top: 35px;
}

.product-cont-green .product-cont-02::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #008F0E;
}

.product-cont-purple .product-cont-02::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #7500A3;
}

.product-cont-orange .product-cont-02::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ff742f;
}

.product-cont {
	background-color: #fff;
	margin-top: -20px;
	margin-bottom: 30px;
}

.product-cont-green {
	border: 2px solid #008F0E;
	border-radius: 10px;
}

.product-cont-purple {
	border: 2px solid #7500A3;
	border-radius: 10px;
}

.product-cont-blue {
	border: 2px solid #0052CC;
	border-radius: 10px;
}

.product-cont-red {
	border: 2px solid #B70F0F;
	border-radius: 10px;
}

.product-cont-orange {
	border: 2px solid #ff742f;
	border-radius: 10px;
}

.product-ttl {
	width: fit-content;
	font-size: 2.0rem;
	color: #fff;
	border-radius: 50px;
	margin: 0 auto;
	padding: 0 60px;
	z-index: 1;
}

.product-ttl-green {
	background-color: #008F0E;
	position: relative;
}

.product-ttl-purple {
	background-color: #7500A3;
	position: relative;
}

.product-ttl-blue {
	background-color: #0052CC;
	position: relative;
}

.product-ttl-red {
	background-color: #B70F0F;
	position: relative;
}

.product-ttl-orange {
	background-color: #ff742f;
	position: relative;
}

.set-deco::before {
	content: "";
	position: absolute;
	top: 70px;
	left: -122px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org01.svg") no-repeat center top;
	z-index: -1;
}

.set-deco::after {
	content: "";
	position: absolute;
	top: 0;
	left: 118px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org02.svg") no-repeat center top;
	z-index: -1;
}
.medama-deco::before {
	content: "";
	position: absolute;
	top: 1286px;
	left: -122px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org01.svg") no-repeat center top;
	z-index: -1;
}

.medama-deco::after {
	content: "";
	position: absolute;
	top: 1210px;
	left: 118px;
	width: 100%;
	height: 90px;
	background: url("./img/cloud_org02.svg") no-repeat center top;
	z-index: -1;
}