/*=======================
基本設定
=======================*/

html { /* 1rem = 10px設定*/ /* 10px / カンプ幅(ex.540px) × 100% */
	font-size: 1.8518518519vw;
}

/*=======================
共通パーツ
=======================*/

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	letter-spacing: normal;
}

body.is-fixed {
	overflow: clip;
}

body.modal-open {
	overflow: hidden;
}

.body-container {
	display: flex;
	flex-direction: column;
}

.inner {
	margin: 0 auto;
	max-width: 496px;
}

.nav-item {
	border-bottom: 1px solid #fff;
	margin-inline: auto;
	max-width: 300px;
	padding: 20px 0;
	width: 100%;
}

.nav-item:nth-child(1) .nav-item-link {
	width: 80px;
}

.nav-item:nth-child(2) .nav-item-link {
	width: 264px;
}

.nav-item:nth-child(3) .nav-item-link {
	width: 264px;
}

.nav-item:last-child {
	border-bottom: none;
}

.nav-item-link {
	display: block;
	margin-inline: auto;
}

.page-content {
	margin-inline: auto;
	width: 540px;
}

.page-content .left,
.page-content .right {
	background: #ce342f;
	height: 100dvh;
	padding: 20px;
	position: relative;
	position: fixed;
	top: 0;
	width: calc((100% - 540px) / 2);
}

.page-content .left::before,
.page-content .left::after,
.page-content .right::before,
.page-content .right::after {
	content: "";
	height: 440px;
	position: absolute;
	width: 100%;
}

.page-content .left {
	display: grid;
	left: 0;
	place-content: center;
}

.page-content .left::before {
	background: url(../img/left_bg_top.svg) no-repeat center center/cover;
	left: 0;
	top: 0;
}

.page-content .left::after {
	background: url(../img/left_bg_bottom.svg) no-repeat center center/cover;
	bottom: 0;
	left: 0;
}

.page-content .right {
	display: grid;
	place-content: center;
	right: 0;
}

.page-content .right::before {
	background: url(../img/right_bg_top.svg) no-repeat center center/cover;
	left: 0;
	top: 0;
}

.page-content .right::after {
	background: url(../img/right_bg_bottom.svg) no-repeat center center/cover;
	bottom: 0;
	left: 0;
}

.page-content .left-logo {
	margin-bottom: 40px;
	max-width: 223px;
	position: relative;
	z-index: 10;
}

.page-content .right-content {
	max-width: 300px;
	position: relative;
	z-index: 1;
}

.page-content .right-title {
	margin-inline: auto;
	max-width: 250px;
}

.page-content .right-nav {
	margin-top: 32px;
}

.page-content .main {
	background: url(../img/main_bg.svg) no-repeat center center/cover;
	min-height: calc(100vh - 108px);
}

.btn {
	border: 2px solid #fff;
	border-radius: 32px;
	color: #fff;
	cursor: pointer;
	display: grid;
	font-size: 18px;
	height: 64px;
	letter-spacing: 0.2em;
	place-content: center;
	position: relative;
	width: 240px;
	z-index: 5;
}

br.is-pc {
	display: block;
}

br.is-sp {
	display: none;
}

span.is-pc {
	display: inline;
}

span.is-sp {
	display: none;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

.js-fadeUp {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

/*=======================
ヘッダー
=======================*/

.header {
	left: 50%;
	padding: 25px 36px;
	position: absolute;
	translate: -50% 0;
	width: 540px;
}

.header-logo {
	width: 98px;
}

.drawer-icon {
	display: none;
}

.drawer {
	display: none;
}

/*=======================
フッター
=======================*/

.footer {
	background: #edc855;
	display: grid;
	height: 108px;
	margin-inline: auto;
	place-content: center;
	width: 540px;
}

.footer-btn {
	background: #e73732;
}

/*=======================
トップ
=======================*/

.mv {
	background-image: url(../img/mv_bg.svg);
	background-repeat: no-repeat;
	overflow: hidden;
}

.mv-title {
	margin-left: 12px;
	margin-top: 82px;
	width: 495px;
}

.mv-lead {
	margin: 20px auto 0;
	position: relative;
	width: 460px;
}

.mv-lead::before,
.mv-lead::after {
	content: "";
	position: absolute;
}

.mv-lead::before {
	animation: animation_rotate steps(2, end) infinite alternate 0.8s;
	background: url(../img/mv_lead_deco_01.svg) no-repeat center center/cover;
	bottom: -15px;
	height: 81px;
	left: 9px;
	width: 70px;
}

.mv-lead::after {
	animation: animation_rotate steps(2, end) infinite alternate-reverse 0.8s;
	background: url(../img/mv_lead_deco_02.svg) no-repeat center center/cover;
	bottom: -23px;
	height: 97px;
	right: 5px;
	width: 84px;
}

.mv-slider {
	margin-top: 47px;
}

.mv-slider-reverse {
	margin-top: 16px;
	transform: scaleX(-1);
}

.mv-slider-reverse .swiper-slide {
	transform: scaleX(-1);
}

.mv-slider .swiper-wrapper,
.mv-slider-reverse .swiper-wrapper {
	transition-timing-function: linear;
}

.mv-slider .swiper-slide,
.mv-slider-reverse .swiper-slide {
	border: 2px solid #edc855;
	border-radius: 16px;
	height: 120px;
	margin: 0 8px;
	overflow: hidden;
	width: 120px;
}

.mv-slider .swiper-slide img,
.mv-slider-reverse .swiper-slide img {
	-o-object-fit: cover;
	height: 120px;
	object-fit: cover;
	width: 120px;
}

.method {
	padding-top: 105px;
}

.method-title {
	margin-inline: auto;
	width: 453px;
}

.method-items {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	margin-top: 25px;
}

.method-attention {
	margin: 30px auto 0;
	width: 480px;
}

.category {
	overflow: hidden;
	padding: 69px 0 24px;
}

.category-title {
	margin-inline: auto;
	position: relative;
	width: 320px;
}

.category-title::before,
.category-title::after {
	background: url(../img/category_deco.svg) no-repeat center center/cover;
	content: "";
	height: 90px;
	position: absolute;
	translate: 0 -50%;
	width: 224px;
}

.category-title::before {
	left: -231px;
	top: 68%;
}

.category-title::after {
	right: -226px;
	rotate: 168deg;
	top: 19%;
}

.category-items {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
}

.category-item {
	width: 240px;
}

.category-item .category-item-img {
	height: 236px;
}

.category-item .category-item-img img {
	-o-object-fit: cover;
	height: 236px;
	object-fit: cover;
	width: 240px;
}

.category-item .category-item-name {
	font-size: 18px;
}

.category-item-link {
	border: 2px solid #edc855;
	border-radius: 16px;
	display: block;
	overflow: hidden;
}

.category-item-img img {
	-o-object-fit: cover;
	object-fit: cover;
}

.category-item-name {
	background: #edc855;
	color: #000;
	display: grid;
	font-weight: bold;
	height: 40px;
	letter-spacing: 0.1em;
	place-content: center;
}

.category-content-wrapper {
	display: grid;
	gap: 72px 0;
	grid-template-columns: 1fr;
	padding-top: 40px;
}

.category-content {
	position: relative;
}

.category-content::before {
	background: url(../img/category_bg.svg) no-repeat center center/cover;
	content: "";
	height: 652px;
	left: 49%;
	position: absolute;
	top: -29px;
	translate: -50% 0;
	width: 783px;
}

.category-content-title {
	margin-inline: auto;
	position: relative;
}

.category-content-title::before,
.category-content-title::after {
	background: url(../img/category_content_title_deco.svg) no-repeat center center/cover;
	content: "";
	height: 15px;
	position: absolute;
	top: 44%;
	translate: 0 -50%;
	width: 251px;
}

.category-content-title::before {
	left: -192px;
}

.category-content-title::after {
	right: -184px;
}

.category-content-title img {
	margin-inline: auto;
}

.category-content-title--food img {
	width: 104px;
}

.category-content-title--sweets img {
	width: 291px;
}

.category-content-title--fashion img {
	width: 345px;
}

.category-content-title--lifestyle img {
	width: 366px;
}

.category-content-title--cosme img {
	width: 128px;
}

.category-content-title--others img {
	width: 124px;
}

.category-content-items {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	margin-top: 38px;
	position: relative;
}

.category-content-item {
	border: 2px solid #edc855;
	display: grid;
	gap: 0;
	grid-row: span 6;
	grid-template-rows: subgrid;
}

.category-content-item-head {
	height: 238px;
}

.category-content-item-head img {
	-o-object-fit: cover;
	height: 238px;
	object-fit: cover;
	width: 238px;
}

.category-content-item-body {
	background: #fff;
	display: grid;
	grid-row: span 4;
	grid-template-rows: subgrid;
	padding: 11px 4px 9px 16px;
	position: relative;
}

.category-content-item-num {
	background: #e73732;
	border-radius: 50%;
	display: grid;
	height: 64px;
	place-content: center;
	position: absolute;
	right: 8px;
	top: -41px;
	width: 64px;
}

.category-content-item-num-container {
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-align: center;
}

.category-content-item-num-container .large {
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	font-weight: 600;
	margin-top: 4px;
}

.category-content-item-shop {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.1666666667;
}

.category-content-item-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	margin-top: 5px;
}

.category-content-item-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 8px;
}

.category-content-item-tag {
	background: #e73732;
	border-radius: 32px;
	color: #fff;
	display: grid;
	font-size: 10px;
	font-weight: 300;
	height: 16px;
	letter-spacing: 0.05em;
	min-width: 80px;
	place-content: center;
}

.category-content-item-price {
	color: #e73732;
	font-family: "Roboto", sans-serif;
	font-size: 36px;
	font-weight: 500;
	margin-top: 7px;
	text-align: right;
}

.category-content-item-price .medium,
.category-content-item-price .small {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.category-content-item-price .medium {
	font-size: 18px;
}

.category-content-item-price .small {
	font-size: 12px;
}

.category-content-item-link {
	background: #e73732;
	color: #fff;
	display: grid;
	font-size: 14px;
	font-weight: bold;
	height: 32px;
	letter-spacing: 0.2em;
	place-content: center;
}

.category-content-btn {
	margin: 36px auto 0;
}

.category-attention-items {
	margin-top: 21px;
}

.category-attention-item {
	color: #fff;
	font-size: 11px;
	line-height: 1.4545454545;
}

.modal {
	background: transparent;
	border: none;
	display: grid;
	height: 100%;
	inset: 0;
	max-height: initial;
	max-width: initial;
	padding: 50px;
	place-content: center;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.modal:not([open]) {
	display: none;
	pointer-events: none;
	visibility: hidden;
}

.modal-bg {
	background: rgba(0, 0, 0, 0.56);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.modal-content-wrapper {
	border-radius: 16px;
	overflow-y: auto;
	position: relative;
}

.modal-close {
	background: #fff;
	border: 1px solid #e73732;
	border-radius: 50%;
	cursor: pointer;
	height: 32px;
	margin-left: auto;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 32px;
	z-index: 10;
}

.modal-close-bar {
	background: #e73732;
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 20px;
}

.modal-close-bar:first-of-type {
	rotate: 45deg;
}

.modal-close-bar:last-of-type {
	rotate: -45deg;
}

.modal-content {
	background: #fff;
	border-radius: 16px;
	padding: 16px 24px 24px;
	position: relative;
	width: 440px;
}

.modal-img {
	display: grid;
	margin-inline: auto;
	place-content: center;
	width: 320px;
}

.modal-img img {
	-o-object-fit: cover;
	object-fit: cover;
}

.modal-shop {
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
	margin-top: 9px;
}

.modal-name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}

.modal-price {
	color: #e73732;
	font-family: "Roboto", sans-serif;
	font-size: 48px;
	font-weight: 500;
	margin-top: 14px;
	text-align: right;
}

.modal-price .medium,
.modal-price .small {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.modal-price .medium {
	font-size: 26px;
}

.modal-price .small {
	font-size: 17px;
}

.modal-price-text {
	font-size: 14px;
	margin-top: 5px;
	text-align: right;
}

.modal-info-wrapper {
	margin-top: 26px;
}

.modal-info {
	border-bottom: 1px solid #e73732;
	display: grid;
	grid-template-columns: 94px 1fr;
	padding: 10px 0;
}

.modal-info:first-of-type {
	padding-top: 0;
}

.modal-info dt {
	font-size: 10px;
	font-weight: 600;
	padding-left: 2px;
	padding-top: 5px;
}

.modal-info dd {
	font-size: 12px;
	line-height: 1.6666666667;
}

.modal-tags {
	display: flex;
	gap: 6px;
}

.modal-tag {
	background: #e73732;
	border-radius: 12px;
	color: #fff;
	display: grid;
	font-size: 16px;
	height: 25px;
	letter-spacing: 0.05em;
	place-content: center;
	width: 120px;
}

.modal-link {
	background: #e73732;
	border-radius: 32px;
	color: #fff;
	display: grid;
	font-size: 16px;
	height: 64px;
	letter-spacing: 0.1em;
	line-height: 1.5625;
	margin: 16px auto 0;
	place-content: center;
	text-align: center;
	width: 320px;
}

/*=======================
下層
=======================*/

.low-content {
	overflow: hidden;
	padding: 130px 0 16px;
}

.low-content .category-content-title::before,
.low-content .category-content-title::after {
	width: 25px;
}

@media not screen and (min-width:768px) {

.inner {
	margin-inline: auto;
	max-width: initial;
	width: 49.6rem;
}

.page-content {
	width: 54rem;
}

.page-content .left,
.page-content .right {
	display: none;
}

.page-content .main {
	min-height: calc(100vh - 10.8rem);
}

.btn {
	border-radius: 3.2rem;
	border-width: 0.2rem;
	font-size: 1.8rem;
	height: 6.4rem;
	width: 24rem;
}

br.is-pc {
	display: none;
}

br.is-sp {
	display: inline;
}

span.is-pc {
	display: none;
}

span.is-sp {
	display: inline;
}

.header {
	padding: 2.5rem 3.6rem;
	width: 100%;
}

.header-logo {
	width: 9.8rem;
}

.drawer-icon {
	background: #e73732;
	border: 2px solid #fff;
	cursor: pointer;
	display: grid;
	height: 8rem;
	place-content: center;
	position: fixed;
	right: 0;
	width: 8rem;
	z-index: 1000;
}

.drawer-bars {
	height: 4.2rem;
	position: relative;
	width: 4.8rem;
}

.drawer-bar {
	background: #fff;
	border-radius: 0.3rem;
	height: 0.6rem;
	position: absolute;
	transition: all 0.3s ease;
	width: 4.8rem;
}

.drawer-bar.bar01 {
	top: 0;
}

.drawer-bar.bar02 {
	top: 50%;
	transform: translateY(-50%);
}

.drawer-bar.bar03 {
	bottom: 0;
	top: initial;
}

.drawer-bar.is-active.bar01 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.drawer-bar.is-active.bar02 {
	opacity: 0;
	visibility: hidden;
}

.drawer-bar.is-active.bar03 {
	bottom: initial;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.drawer {
	background: url(../img/main_bg.svg) no-repeat center center/cover;
	display: block;
	height: 100dvh;
	opacity: 0;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 20;
}

.drawer.is-active {
	opacity: 1;
	visibility: visible;
}

.drawer-logo {
	margin-left: 1.2rem;
	margin-top: 2.4rem;
	width: 9.4rem;
}

.drawer-container {
	padding: 0.7rem 0 4rem;
}

.drawer-nav-item {
	max-width: 39.2rem;
	padding: 3.1rem 0;
}

.drawer-nav-item:nth-child(1) .drawer-nav-item-link {
	width: 11rem;
}

.drawer-nav-item:nth-child(2) .drawer-nav-item-link {
	width: 34.5rem;
}

.drawer-nav-item:nth-child(3) .drawer-nav-item-link {
	width: 36.6rem;
}

.drawer-nav-item:last-of-type {
	margin-bottom: 0;
}

.drawer-btn-wrapper {
	display: grid;
	gap: 2.4rem;
	grid-template-columns: 1fr;
	margin-top: 4rem;
}

.drawer-btn {
	margin-inline: auto;
}

.footer {
	height: 10.8rem;
	width: 100%;
}

.mv-title {
	margin-left: 1.2rem;
	margin-top: 8.2rem;
	width: 49.5rem;
}

.mv-lead {
	margin-top: 2rem;
	width: 46rem;
}

.mv-lead::before {
	bottom: -1.5rem;
	height: 8.1rem;
	left: 0.9rem;
	width: 7rem;
}

.mv-lead::after {
	bottom: -2.3rem;
	height: 9.7rem;
	right: 0.5rem;
	width: 8.4rem;
}

.mv-slider {
	margin-top: 4.7rem;
}

.mv-slider-reverse {
	margin-top: 1.6rem;
}

.mv-slider .swiper-slide,
.mv-slider-reverse .swiper-slide {
	border-radius: 1.6rem;
	border-width: 0.2rem;
	height: 12rem;
	margin: 0 0.8rem;
	width: 12rem;
}

.mv-slider .swiper-slide img,
.mv-slider-reverse .swiper-slide img {
	height: 12rem;
	width: 12rem;
}

.method {
	padding-top: 10.5rem;
}

.method-title {
	width: 45.3rem;
}

.method-items {
	gap: 1.6rem;
	margin-top: 2.5rem;
}

.method-attention {
	margin-top: 3rem;
	width: 48rem;
}

.category {
	padding: 6.9rem 0 2.4rem;
}

.category-title {
	width: 32rem;
}

.category-title::before,
.category-title::after {
	height: 9rem;
	width: 22.4rem;
}

.category-title::before {
	left: -23.1rem;
}

.category-title::after {
	right: -22.6rem;
}

.category-items {
	gap: 1.6rem;
	margin-top: 4rem;
}

.category-item {
	width: 24rem;
}

.category-item .category-item-img {
	height: 23.6rem;
}

.category-item .category-item-img img {
	height: 23.6rem;
	width: 24rem;
}

.category-item .category-item-name {
	font-size: 1.8rem;
}

.category-item-link {
	border-radius: 1.6rem;
	border-width: 0.2rem;
}

.category-item-name {
	height: 4rem;
}

.category-content-wrapper {
	gap: 7.2rem 0;
	padding-top: 4rem;
}

.category-content::before {
	height: 65.2rem;
	top: -2.9rem;
	width: 78.3rem;
}

.category-content-title::before,
.category-content-title::after {
	height: 1.5rem;
	width: 25.1rem;
}

.category-content-title::before {
	left: -19.2rem;
}

.category-content-title::after {
	right: -18.4rem;
}

.category-content-title--food img {
	width: 10.4rem;
}

.category-content-title--sweets img {
	width: 29.1rem;
}

.category-content-title--fashion img {
	width: 34.5rem;
}

.category-content-title--lifestyle img {
	width: 36.6rem;
}

.category-content-title--cosme img {
	width: 12.8rem;
}

.category-content-title--others img {
	width: 12.4rem;
}

.category-content-items {
	gap: 1.6rem;
	margin-top: 3.8rem;
}

.category-content-item {
	border-width: 0.2rem;
}

.category-content-item-head {
	height: 23.8rem;
}

.category-content-item-head img {
	height: 23.8rem;
	width: 23.8rem;
}

.category-content-item-body {
	padding: 1.1rem 0.4rem 0.9rem 1.6rem;
}

.category-content-item-num {
	height: 6.4rem;
	right: 0.8rem;
	top: -4.1rem;
	width: 6.4rem;
}

.category-content-item-num-container {
	font-size: 1.2rem;
}

.category-content-item-num-container .large {
	font-size: 2.2rem;
	margin-top: 0.4rem;
}

.category-content-item-shop {
	font-size: 1.2rem;
}

.category-content-item-name {
	font-size: 1.6rem;
	margin-top: 0.5rem;
}

.category-content-item-tags {
	gap: 0.4rem;
	margin-top: 0.8rem;
}

.category-content-item-tag {
	border-radius: 3.2rem;
	font-size: 1rem;
	height: 1.6rem;
	min-width: 8rem;
}

.category-content-item-price {
	font-size: 3.6rem;
	margin-top: 0.7rem;
}

.category-content-item-price .medium {
	font-size: 1.8rem;
}

.category-content-item-price .small {
	font-size: 1.2rem;
}

.category-content-item-link {
	font-size: 1.4rem;
	height: 3.2rem;
}

.category-content-btn {
	margin-top: 3.6rem;
}

.category-attention-items {
	margin-top: 2.1rem;
}

.category-attention-item {
	font-size: 1.1rem;
}

.modal {
	padding: 5rem;
}

.modal-content-wrapper {
	border-radius: 1.6rem;
}

.modal-close {
	height: 3.2rem;
	right: 1rem;
	top: 1rem;
	width: 3.2rem;
}

.modal-close-bar {
	height: 0.1rem;
	width: 2rem;
}

.modal-content {
	border-radius: 1.6rem;
	padding: 1.6rem 2.4rem 2.4rem;
	width: 44rem;
}

.modal-img {
	width: 32rem;
}

.modal-shop {
	font-size: 1.6rem;
	margin-top: 0.9rem;
}

.modal-name {
	font-size: 2rem;
}

.modal-price {
	font-size: 4.8rem;
	margin-top: 1.4rem;
}

.modal-price .medium {
	font-size: 2.6rem;
}

.modal-price .small {
	font-size: 1.7rem;
}

.modal-price-text {
	font-size: 1.4rem;
	margin-top: 0.5rem;
}

.modal-info-wrapper {
	margin-top: 2.6rem;
}

.modal-info {
	grid-template-columns: 9.4rem 1fr;
	padding: 1rem 0;
}

.modal-info dt {
	font-size: 1rem;
	padding-left: 0.2rem;
	padding-top: 0.5rem;
}

.modal-info dd {
	font-size: 1.2rem;
}

.modal-tags {
	gap: 0.6rem;
}

.modal-tag {
	border-radius: 1.2rem;
	font-size: 1.6rem;
	height: 2.5rem;
	width: 12rem;
}

.modal-link {
	border-radius: 3.2rem;
	font-size: 1.6rem;
	height: 6.4rem;
	margin-top: 1.6rem;
	width: 32rem;
}

.low-content {
	padding: 13rem 0 1.6rem;
}

.low-content .category-content-title::before,
.low-content .category-content-title::after {
	width: 2.5rem;
}

}

@media screen and (min-width: 768px) and (max-width: 1230px) {

.nav-item:nth-child(1) .nav-item-link {
	width: 3rem;
}

.nav-item:nth-child(2) .nav-item-link {
	width: 10rem;
}

.nav-item:nth-child(3) .nav-item-link {
	width: 10rem;
}

}

@media screen and (min-width: 768px) and (max-width: 1000px) {

.page-content .left-logo {
	display: none;
}

.page-content .right-content {
	display: none;
}

}

@keyframes animation_rotate {

0% {
	transform: rotate(4deg);
}

100% {
	transform: rotate(-8deg);
}

}

