@media only screen and (max-width: 768px) {
	.only-pc {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	.only-sp {
		display: none;
	}
}

@media only screen and (min-width: 1281px) {
	.only-tab {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.only-tab {
		display: none;
	}
}

#nav {
	position: fixed;
	width: 100%;
	top: 0;
	background-color: #fff;
	z-index: 5;
	overflow: hidden;
}
#nav .wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 760px;
	height: 56px;
	background-color: inherit;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	#nav .wrapper {
		width: 100%;
	}
}
#nav .wrapper .logo-main {
	width: 140px;
	cursor: pointer;
}
#nav .wrapper .hamburger-lines {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 24px;
	height: 22px;
	right: 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: pointer;
}
#nav .wrapper .hamburger-lines .line {
	width: 100%;
	height: 2px;
	background-color: #000;
}
#nav .items {
	position: fixed;
	opacity: 0;
	width: 0;
	height: 0;
	left: 0;
	top: -100%;
	z-index: 100;
	background-color: inherit;
	-webkit-transition: top 0.2s;
	transition: top 0.2s;
}
@media only screen and (max-width: 768px) {
	#nav .items {
		left: -100%;
		-webkit-transition: left 0.2s;
		transition: left 0.2s;
	}
}
#nav .items .item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 70px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 16px;
	letter-spacing: 0.3px;
}
@media only screen and (max-width: 768px) {
	#nav .items .item {
		height: 54px;
		border-bottom: 1px solid #ddd;
	}
	#nav .items .item:first-of-type {
		border-top: 1px solid #ddd;
	}
}
#nav .items .item a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 760px;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 32px;
	cursor: pointer;
}
#nav .items .item a::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 15px;
	right: 30px;
	background-image: url('/rb/osechitest/assets/images/components/nav/arrow.svg');
	background-repeat: no-repeat;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#nav .items .item:last-of-type a {
	padding-left: 67.5px;
	letter-spacing: -2px;
}
#nav .items .item:last-of-type a::before {
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	left: 32.5px;
	top: 50%;
	background-image: url('/rb/osechitest/assets/images/components/nav/logo-sub.svg');
	background-repeat: no-repeat;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#nav.active .hamburger-lines {
	right: 14px;
}
#nav.active .hamburger-lines .line:nth-of-type(1) {
	width: 28px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: left;
	transform-origin: left;
}
#nav.active .hamburger-lines .line:nth-of-type(2) {
	display: none;
}
#nav.active .hamburger-lines .line:nth-of-type(3) {
	width: 28px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: left;
	transform-origin: left;
}
#nav.active .items {
	width: 100%;
	height: auto;
	top: 56px;
	background-color: #fff;
	opacity: 1;
	z-index: -1;
}
@media only screen and (max-width: 768px) {
	#nav.active .items {
		display: block;
		left: 0;
		z-index: 0;
	}
}
#nav.active .bg {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 56px;
	left: 0;
	background-color: #222;
	opacity: 0.5;
	z-index: -1;
}

#notification {
	width: 100%;
	height: 56px;
	background-color: #ac1d24;
	overflow: hidden;
}
#notification p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-family: 'Shippori Mincho', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0.02em;
}
#notification figure {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#notification figure img {
	width: auto;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
#notification.lastweek {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #b6985c;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#faq {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}
#faq .faq__heading {
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	color: #b6985c;
	padding-top: 65px;
	padding-bottom: 37px;
}
@media only screen and (max-width: 768px) {
	#faq .faq__heading {
		padding-bottom: 30px;
	}
}
#faq .faq__questions {
	width: 100%;
	margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
	#faq .faq__questions {
		width: 91.5%;
		margin: 0 auto;
		margin-bottom: 56px;
	}
}
#faq .faq__questions__question {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.4px;
	border-top: 1px #b6985c solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
#faq .faq__questions__question .question-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 64px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 32.5px;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	#faq .faq__questions__question .question-title {
		line-height: 20px;
	}
}
#faq .faq__questions__question .question-title::before {
	content: 'Q';
	position: absolute;
	left: 0;
	color: #b6985c;
	font-size: 22px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	#faq .faq__questions__question .question-title::before {
		left: 8px;
	}
}
#faq .faq__questions__question .question-title::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 15px;
	height: 20px;
	top: 22.5px;
	right: 13px;
	background-image: url('/rb/osechitest/assets/images/components/faq/arrow.svg');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
	#faq .faq__questions__question .question-title::after {
		top: 26px;
		right: 5.5px;
	}
}
#faq .faq__questions__question .question-description-wrapper {
	width: 100%;
	display: grid;
	grid-template-rows: 0fr;
	-webkit-transition: grid-template-rows 0.5s ease-out;
	transition: grid-template-rows 0.5s ease-out;
	transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
}
#faq .faq__questions__question .question-description {
	line-height: 22px;
	font-weight: 400;
	overflow: hidden;
}
#faq .faq__questions__question:last-of-type {
	border-bottom: 1px #b6985c solid;
}
@media only screen and (max-width: 768px) {
	#faq .faq__questions__question:last-of-type {
		padding: 6pxm 0;
	}
	#faq .faq__questions__question:last-of-type .question-title {
		letter-spacing: 1px;
		padding-right: 30px;
	}
}
#faq .faq__questions__question.active {
	padding-bottom: 20px;
}
#faq .faq__questions__question.active .question-title::after {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
#faq .faq__questions__question.active .question-description-wrapper {
	grid-template-rows: 1fr;
}

footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #222;
	gap: 40px;
	padding-bottom: 40px;
}
footer .top .related-informations {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer .top .related-informations li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 54px;
	font-size: 16px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: solid 1px #333333;
	border-top: none;
}
footer .top .related-informations li a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 780px;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 400;
	padding-right: 25px;
	padding-left: 32.5px;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	footer .top .related-informations li a {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}
footer .top .related-informations li a::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 10px;
	height: 20px;
	top: 20px;
	right: 29px;
	background-image: url('/rb/osechitest/assets/images/components/footer/arrow.svg');
	background-repeat: no-repeat;
}
footer .top .related-informations li:last-of-type {
	height: 60px;
}
footer .top .related-informations li:last-of-type a::before {
	content: '';
	display: inline-block;
	width: 0px;
	height: 30px;
	background-image: url('/rb/osechitest/assets/images/components/footer/logo.svg');
	background-repeat: no-repeat;
	padding-left: 32.5px;
	z-index: 1;
}
footer .top .related-informations li:last-of-type a {
	letter-spacing: -2px;
}
footer .top .related-informations li:last-of-type a::after {
	top: 23px;
}
footer .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}
@media only screen and (max-width: 768px) {
	footer .bottom {
		margin-top: 57.5px;
	}
}
footer .bottom .company-informations {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 366px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
}
footer .bottom .company-informations li a {
	position: relative;
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0.2px;
	padding: 0 10px;
}
footer .bottom .company-informations li a::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 1px;
	height: 18px;
	top: 5px;
	right: 0px;
	background-color: #fff;
}
footer .bottom .company-informations li:nth-child(3) a::after,
footer .bottom .company-informations li:nth-child(4) a::after {
	display: none;
}
footer .bottom .copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #b6985c;
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	line-height: 18px;
	letter-spacing: 0.1px;
	gap: 22px;
}

.price__title {
	width: calc(252 * 100vw / 375);
	margin: calc(60 * 100vw / 375) auto calc(35 * 100vw / 375);
}
@media only screen and (min-width: 769px) {
	.price__title {
		margin: 90px auto 57px;
		width: 359px;
	}
}
@media only screen and (max-width: 768px) {
	.price__main {
		margin: 0 auto calc(45 * 100vw / 375);
		width: calc(345 * 100vw / 375);
	}
}
@media only screen and (min-width: 769px) {
	.price__main {
		margin: 0px auto 95px;
		max-width: 1086px;
	}
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
	.price__main {
		padding: 0 20px;
	}
}
.price__main span {
	font-size: calc(14 * 100vw / 375);
	font-weight: 400;
}
@media only screen and (min-width: 769px) {
	.price__main span {
		font-size: 16px;
	}
}
.price__main .text-top {
	margin-left: auto;
	display: block;
	margin-bottom: calc(14 * 100vw / 375);
}
@media only screen and (min-width: 769px) {
	.price__main .text-top {
		margin-bottom: 14px;
	}
}
.price__main .text-bottom {
	display: block;
	margin-top: 12px;
}
@media only screen and (max-width: 768px) {
	.price__main .text-bottom {
		margin: 0 auto;
		text-align: center;
		margin-top: calc(20 * 100vw / 375);
		line-height: calc(20 * 100vw / 375);
	}
}
@media only screen and (max-width: 768px) {
	.price__main .price-list-container {
		width: calc(277 * 100vw / 375);
		overflow: scroll;
	}
	.price__main .price-list-container img {
		width: calc(480 * 100vw / 375);
	}
}
.price__main .price-list-names {
	width: calc(70 * 100vw / 375);
}
@media only screen and (max-width: 768px) {
	.price__main-list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.price.regular .price__main {
	max-width: 930px;
}
@media only screen and (max-width: 768px) {
	.price.regular .price-list-container img {
		width: calc(400 * 100vw / 375);
	}
}
.price.pb .price__main {
	max-width: 930px;
}
@media only screen and (max-width: 768px) {
	.price.pb .price-list-container img {
		width: calc(400 * 100vw / 375);
	}
}

#lineup {
	width: 100%;
	background-image: url('/rb/osechitest/assets/images/bg/yellow.jpg');
	background-size: cover;
}
#lineup .lineup__title {
	width: 350px;
	padding-top: 56px;
	padding-bottom: 40px;
	margin: 0 auto;
}
#lineup .lineup__filter__title {
	color: #b6985c;
	font-size: 16px;
	text-align: center;
	font-weight: normal;
}
#lineup .lineup__filter__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 300px;
	gap: 8px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #b6985c;
	font-size: 14px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 16px;
}
@media only screen and (max-width: 768px) {
	#lineup .lineup__filter__items {
		margin-top: 15px;
	}
}
#lineup .lineup__filter__items .items__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	background-color: #fff;
	border-radius: 30px;
	padding: 6px 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
#lineup .lineup__filter__items .items__item.active {
	color: #fff;
	background-color: #b6985c;
}
#lineup .lineup__osechis {
	display: grid;
	grid-template-columns: repeat(4, 164px);
	-webkit-column-gap: 18px;
	-moz-column-gap: 18px;
	column-gap: 18px;
	row-gap: 24px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 32px 0 52px 0;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	#lineup .lineup__osechis {
		grid-template-columns: repeat(2, 164px);
		-webkit-column-gap: 14px;
		-moz-column-gap: 14px;
		column-gap: 14px;
		row-gap: 24px;
	}
}
#lineup .lineup__osechis .osechi {
	display: none;
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
#lineup .lineup__osechis .osechi a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 12px;
}
#lineup .lineup__osechis .osechi a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: 0.6s all;
	transition: 0.6s all;
}
#lineup .lineup__osechis .osechi a:hover::after {
	opacity: 0.7;
}
@media only screen and (max-width: 768px) {
	#lineup .lineup__osechis .osechi a::after {
		content: none;
	}
}
#lineup .lineup__osechis .osechi__categories {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 4px;
	padding: 0 12px;
	margin: 0 auto;
}
#lineup .lineup__osechis .osechi__categories__category {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #b6985c;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 6px 0;
}
#lineup .lineup__osechis .osechi__description {
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.3;
}
#lineup .lineup__osechis .osechi .sold-out-mask {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(34, 34, 34, 0.8);
	font-family: 'Shippori Mincho', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	color: #fff;
	padding-top: 68px;
}
#lineup .lineup__osechis .osechi[data-is-sold-out] .sold-out-mask {
	display: block;
}
#lineup .lineup__osechis .osechi.filtered {
	display: block;
}
