html, body {
  width: 100%;
  height: max-content;
  margin: 0;
  padding: 0;
  font-size: 17px;
  -webkit-overflow-scrolling: touch;
  color: #191919;
  background-color: #f7f4f1;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: "Titillium Web", serif;
  font-weight: 400;
}
html.is-hidden, body.is-hidden {
  overflow: hidden;
}

body::after {
  content: "";
  display: block;
  position: relative;
  clear: both;
}

a {
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6, b, strong {
  margin: 0;
  font-weight: normal;
}

h1, h2 {
  font-weight: "Michroma", serif;
  font-weight: 400;
}

b, strong {
  font-weight: 700;
}

img {
  border: none;
  margin: 0;
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  color: currentColor;
  padding: 0;
  margin: 0;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}

button {
  background-color: transparent;
  cursor: pointer;
}

select {
  color: currentColor;
  padding: 0 0.5rem;
  border: 1px solid currentColor;
  background-color: transparent;
}

input:active, textarea:active, button:active, select:active,
input:focus, textarea:focus, button:focus, select:focus {
  outline: 0;
}

table {
  width: 100%;
  text-align: left;
  font-size: 0.8rem;
  border-collapse: collapse;
}
@media (max-width: 1120px) {
  table {
    overflow: auto;
    max-width: calc(100vw - 3rem);
    display: block;
  }
}
@media (max-width: 1120px) {
  table tbody {
    display: table;
  }
}
table *:first-child:not(thead) tr:first-child {
  background-color: transparent;
  border-bottom: 1px solid #f3f3f3;
  font-weight: 700;
}
table *:first-child:not(thead) tr:first-child * {
  font-weight: 700;
}
table *:first-child:not(thead) tr:nth-child(2n+1):not(:first-child) {
  background-color: #f3f3f3;
}
table *:first-child:not(thead) tr:nth-child(2n+2):not(:first-child) {
  background-color: transparent;
}
table tr:nth-child(2n+2):not(thead tr) {
  background-color: #f3f3f3;
}
@media (max-width: 1120px) {
  table thead {
    display: table;
  }
}
table thead tr {
  background-color: transparent;
  border-bottom: 1px solid #f3f3f3;
  font-weight: 700;
}
table thead th {
  font-weight: 700;
}
table th {
  padding: 1.25rem;
  font-weight: 400;
}
table td {
  padding: 1.25rem;
}

.o-content {
  width: calc(100% - 6rem);
  max-width: calc(1400px - 6rem);
  margin: 0 auto;
}
@media (max-width: 1120px) {
  .o-content {
    width: calc(100% - 2rem);
  }
}
@media (max-width: 620px) {
  .o-content {
    width: calc(100% - 1rem);
  }
}
.o-content--max {
  width: calc(100% - 2rem);
  max-width: initial;
}
@media (max-width: 620px) {
  .o-content--max {
    width: calc(100% - 1rem);
  }
}
.o-content--padding {
  padding: 1.25rem;
  box-sizing: border-box;
  background-color: #ffffff;
}

.o-wrapper {
  width: 100%;
  min-height: calc(100vh - 4.5rem);
}
@media (max-width: 900px) {
  .o-wrapper {
    min-height: calc(100vh - 3rem);
  }
}

.o-hidden {
  display: none;
}

.o-video {
  width: 100%;
  padding-bottom: 56.6%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.o-video > * {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
}
.o-video > iframe {
  width: calc(100vmax + 200px);
  height: calc(56.6vmax + 200px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  touch-action: none;
}
.o-video--break {
  padding-bottom: 0;
  height: 35vw;
  max-height: calc(100vh - 4.5rem);
}
@media (max-width: 900px) {
  .o-video--break {
    height: 56.6vw;
  }
}
.o-video--full {
  padding-bottom: 0;
  height: calc(100vh - 4.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .o-video--full {
    height: 56.6vw;
    max-height: calc(100vh - 4.5rem);
  }
}

.o-title {
  margin: 2.5rem auto 1.5rem;
}
.o-title > * {
  font-size: 1.8rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .o-title > * {
    font-size: 1.5rem;
  }
}

.o-space {
  height: 4rem;
}

.o-btn {
  border: 1px solid currentColor;
  background-color: transparent;
  color: currentColor;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Oswald", serif;
  letter-spacing: -0.03em;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  text-align: center;
  appearance: none;
  cursor: pointer;
}
.o-btn--color {
  color: #ffffff;
  background-color: #191919;
  border-color: #191919;
}
@media (min-width: 1120px) {
  .o-btn:hover {
    background-color: currentColor;
  }
  .o-btn:hover span {
    filter: invert(1);
  }
}
.o-btn--full {
  width: 100%;
  box-sizing: border-box;
  padding: 0.6666666667rem 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.o-btn--sub {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  background-color: rgba(234, 234, 234, 0.2);
  color: #ffffff;
}
.o-btn--sub::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid currentColor;
  border-bottom: none;
  border-left: none;
  display: block;
  position: relative;
  transform-origin: center;
  transform: rotate(45deg);
  left: -0.1rem;
}
.o-btn--center {
  margin: 0 auto;
  grid-column: 1/5;
}
@media (max-width: 900px) {
  .o-btn--center {
    grid-column: 1/3;
  }
}

@media (min-width: 1120px) {
  select.o-btn:hover {
    color: #ffffff;
    background-color: #191919;
    border-color: #191919;
  }
}

.o-price {
  font-size: 0.8rem;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.o-price span {
  text-decoration: line-through;
  opacity: 0.5;
}

.o-map {
  width: 100%;
  height: 100%;
  position: relative;
}
.o-map__int {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.o-language {
  border: none;
}

.c-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #111111;
  color: #ffffff;
  padding: 1rem 0;
  font-family: "Oswald", serif;
  font-weight: 500;
}
@media (max-width: 1120px) {
  .c-header {
    padding: 0.5rem 0;
  }
}
.c-header__int {
  display: grid;
  grid-template-columns: 1fr auto;
}
.c-header__logo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.c-header__logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}
@media (max-width: 1120px) {
  .c-header__logo img {
    height: 2rem;
    width: 12rem;
    object-fit: contain;
  }
}
.c-header__menus {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1120px) {
  .c-header__menus {
    display: none;
  }
}
@media (max-width: 1120px) {
  .c-header__menus.is-active {
    display: flex;
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #191919;
    height: calc(100% - 3rem);
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 4rem;
    box-sizing: border-box;
  }
  .c-header__menus select {
    padding: 0.5rem;
    margin: 0 auto;
  }
}
.c-header__nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1120px) {
  .c-header__nav:first-child::after {
    content: "";
    width: 1px;
    height: 1rem;
    background-color: currentColor;
  }
}
@media (max-width: 1120px) {
  .c-header__nav {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .c-header__nav:nth-child(2) {
    flex-direction: row;
    justify-content: space-between;
  }
  .c-header__nav:nth-child(2) .c-header__nav-item {
    justify-content: center;
    padding-bottom: 1.5rem;
  }
}
.c-header__nav-item {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  position: relative;
}
.c-header__nav-item.is-active {
  font-weight: 600;
}
.c-header__nav-item.is-active > a {
  font-weight: 600;
}
.c-header__nav-item.is-active .c-header__nav-item-menu {
  font-weight: 400;
}
@media (min-width: 1120px) {
  .c-header__nav-item:hover .c-header__nav-item-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .c-header__nav-item .o-btn {
    display: none;
  }
}
@media (max-width: 1120px) {
  .c-header__nav-item {
    padding: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: initial;
    flex-wrap: wrap;
    line-height: 2rem;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    border-bottom: 1px solid #191919;
  }
  .c-header__nav-item.is-active .o-btn--sub::after {
    transform: rotate(135deg);
    left: 0rem;
    top: -0.1rem;
  }
}
.c-header__nav-item img {
  width: 1rem;
  height: 1rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) contrast(2) invert(1) grayscale(1);
}
.c-header__nav-item-menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  top: 100%;
  width: max-content;
  max-width: 300%;
  background-color: #ffffff;
  color: #191919;
  opacity: 0;
  visibility: hidden;
  overflow: visible;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1120px) {
  .c-header__nav-item-menu {
    transition: none;
  }
  .c-header__nav-item-menu.is-active {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 3;
    text-align: right;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background-color: #191919;
    color: #ffffff;
  }
  .c-header__nav-item-menu.is-active > * {
    margin: 0 auto;
    border-bottom: none;
  }
}
.c-header__nav-item-menu > * {
  padding: 0.5rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
  transition: padding 400ms ease;
}
@media (min-width: 1120px) {
  .c-header__nav-item-menu > *:hover {
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 1120px) {
  .c-header__nav-item-menu > * {
    width: 100%;
    border-top: 1px solid rgba(234, 234, 234, 0.2);
    display: block;
  }
}
.c-header__nav-item-menu > *.is-active {
  font-weight: 600;
}
.c-header__btn {
  display: none;
}
@media (max-width: 1120px) {
  .c-header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 2rem;
    height: 2rem;
    padding: 0;
  }
  .c-header__btn span {
    display: block;
    width: 1.2rem;
    height: 1px;
    background-color: currentColor;
    position: relative;
  }
  .c-header__btn span::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    bottom: -0.4rem;
    left: 0;
    display: block;
    position: absolute;
  }
  .c-header__btn span::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    top: -0.4rem;
    left: 0;
    display: block;
    position: absolute;
  }
}
.c-header.is-menu .c-header__btn span {
  background-color: transparent;
}
.c-header.is-menu .c-header__btn span::after {
  bottom: 0;
  transform-origin: center;
  transform: rotate(45deg);
}
.c-header.is-menu .c-header__btn span::before {
  top: 0;
  transform-origin: center;
  transform: rotate(-45deg);
}

.c-footer {
  width: 100%;
  background-color: #191919;
  color: #ffffff;
  font-size: 0.9rem;
}
.c-footer__int {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0 0;
}
.c-footer__int--full {
  padding: 4rem 0 1rem;
  justify-content: flex-end;
}
.c-footer__int--full * {
  color: #ee7077;
}
@media (max-width: 1120px) {
  .c-footer__int {
    gap: 0.3333333333rem;
  }
}
@media (max-width: 900px) {
  .c-footer__int {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem 2rem;
  }
}
@media (max-width: 620px) {
  .c-footer__int {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem 1rem;
  }
}
.c-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 0 1rem 0 0;
  border-right: 1px solid rgba(234, 234, 234, 0.2);
}
@media (max-width: 620px) {
  .c-footer__column:first-child img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1120px) {
  .c-footer__column {
    padding: 0 0.3333333333rem 0 0;
  }
}
@media (max-width: 900px) {
  .c-footer__column {
    padding: 0;
    border: none;
  }
}
@media (max-width: 620px) {
  .c-footer__column:first-child {
    grid-column: 1/3;
  }
  .c-footer__column:first-child img {
    max-width: 50%;
  }
}
.c-footer__column:last-child {
  padding: 0;
  border-right: none;
}
@media (max-width: 620px) {
  .c-footer__column:last-child {
    grid-column: 1/3;
  }
  .c-footer__column:last-child img {
    max-width: 50%;
  }
}
.c-footer__column h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Oswald", serif;
}
.c-footer__column p {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: right;
}
@media (max-width: 900px) {
  .c-footer__column p {
    text-align: initial;
  }
}
.c-footer__column *:not(h3) {
  margin: 0;
}
.c-footer__column-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.c-footer__column-item img {
  max-width: 1rem;
  max-height: 1rem;
  display: block;
  filter: invert(1);
}
.c-footer__column img {
  max-width: 100%;
  mix-blend-mode: lighten;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.c-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
.c-grid--4 .c-grid__btn {
  grid-column: 1/5;
}
.c-grid--4 .splide {
  grid-column: 1/5;
}
.c-grid--4 .splide .c-card {
  height: 100%;
}
.c-grid--4 .splide .c-card--over {
  height: max-content;
}
.c-grid--4 .splide__arrow {
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
}
@media (max-width: 1120px) {
  .c-grid--4 .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 900px) {
  .c-grid--4 .splide__arrow {
    top: 100%;
    transform: initial;
    width: 2rem;
    height: 2rem;
  }
}
.c-grid--4 .splide__arrow svg {
  display: none;
}
.c-grid--4 .splide__arrow:disabled {
  display: none;
}
.c-grid--4 .splide__arrow::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-color: currentColor;
  filter: drop-shadow(0px 0px 4px #ffffff);
}
@media (max-width: 900px) {
  .c-grid--4 .splide__arrow::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.c-grid--4 .splide__arrow--prev {
  left: -2rem;
}
@media (max-width: 900px) {
  .c-grid--4 .splide__arrow--prev {
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.c-grid--4 .splide__arrow--prev::after {
  transform: rotate(45deg);
}
.c-grid--4 .splide__arrow--next {
  right: -2rem;
}
@media (max-width: 900px) {
  .c-grid--4 .splide__arrow--next {
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.c-grid--4 .splide__arrow--next::after {
  transform: rotate(-135deg);
}
@media (max-width: 1120px) {
  .c-grid--4 {
    grid-gap: 1rem;
  }
  .c-grid--4 .splide {
    grid-column: 1/5;
  }
  .c-grid--4 .splide .c-card {
    height: 100%;
  }
  .c-grid--4 .splide .c-card--over {
    height: max-content;
  }
}
@media (max-width: 900px) {
  .c-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid--4 .splide {
    grid-column: 1/3;
  }
  .c-grid--4 .c-grid__btn {
    grid-column: 1/3;
  }
}
@media (max-width: 620px) {
  .c-grid--4 {
    grid-gap: 0.5rem;
  }
}
.c-grid--6 {
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1rem;
}
@media (min-width: 1120px) {
  .c-grid--6 .splide {
    grid-column: 1/7;
    visibility: visible;
    overflow: initial;
  }
  .c-grid--6 .splide__track {
    overflow: initial;
  }
  .c-grid--6 .splide__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2rem;
  }
  .c-grid--6 .splide__slide {
    width: 100% !important;
    margin: 0 !important;
  }
  .c-grid--6 .splide .c-card {
    height: 100%;
  }
  .c-grid--6 .splide .c-card--over {
    height: max-content;
  }
}
@media (max-width: 1120px) {
  .c-grid--6 {
    grid-gap: 1rem;
  }
  .c-grid--6 .splide {
    grid-column: 1/7;
  }
  .c-grid--6 .splide .c-card {
    height: 100%;
  }
  .c-grid--6 .splide .c-card--over {
    height: max-content;
  }
}
@media (max-width: 900px) {
  .c-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid--6 .splide {
    grid-column: 1/4;
  }
}
.c-grid--slider {
  display: block;
  grid-gap: 0;
}
.c-grid--slider .splide__arrow {
  background-color: #ffffff;
  width: 2rem;
  height: 2rem;
}
.c-grid--slider .splide__arrow:disabled {
  display: none;
}
.c-grid--slider .splide__arrow--prev {
  left: 1rem;
}
.c-grid--slider .splide__arrow--next {
  right: 1rem;
}
.c-grid--flex {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}
.c-grid--flex > * {
  max-width: 50%;
}
.c-grid--flex:has(.c-card:nth-child(3)) {
  gap: 1rem;
}
@media (max-width: 900px) {
  .c-grid--flex {
    gap: 1rem;
  }
  .c-grid--flex:has(.c-card:nth-child(4)) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
  .c-grid--flex:has(.c-card:nth-child(4)) > * {
    max-width: initial;
  }
}
@media (max-width: 620px) {
  .c-grid--flex {
    gap: 0.5rem;
  }
  .c-grid--flex:has(.c-card:nth-child(3)) {
    gap: 0.5rem;
  }
  .c-grid--flex:has(.c-card:nth-child(4)) {
    grid-gap: 0.5rem;
  }
}

.c-card {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.c-card:not(.c-card--title, .c-card--over) {
  background-color: #ffffff;
}
.c-card__img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 0.5rem;
  z-index: 0;
  background-color: #ffffff;
}
.c-card__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}
.c-card__info {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.c-card__info:not(.c-card--title .c-card__info, .c-card--over .c-card__info, .c-card--new .c-card__info) {
  padding: 0 0.5rem 1rem;
}
.c-card__info * {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.c-card__info-title-00 {
  font-family: "Oswald", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.c-card__info .o-btn {
  margin-top: 1rem;
  position: relative;
  z-index: 4;
}
.c-card__info .o-price {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6em;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.c-card--shop .c-card__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
}
.c-card--shop .c-card__info > *:not(.o-btn, .c-card__info-title-00) {
  margin: 0;
}
.c-card--shop .c-card__info *:not(.c-card__info-title-00) {
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .c-card--shop .c-card__info-title-00 {
    font-size: 1rem;
  }
}
.c-card--over {
  display: block;
  height: max-content;
}
.c-card--over .c-card__img {
  margin-bottom: 0;
}
.c-card--over .c-card__info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.8) 95.37%);
  color: #ffffff;
  box-sizing: border-box;
  padding: 1rem 3.5rem;
}
.c-card--title {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.c-card--title .c-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.c-card--title .c-card__info * {
  font-size: 1.8rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .c-card--title .c-card__info * {
    font-size: 1.5rem;
  }
}
.c-card--new .c-card__img {
  padding: 0;
  margin: 0;
  aspect-ratio: 1/0.75;
  object-fit: cover;
}
.c-card--new .c-card__img::after {
  display: none;
}
.c-card--new .c-card__info {
  padding: 0.5rem 0.5rem 1rem;
}
.c-card--new .c-card__info > * {
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
  line-height: 1.6em;
}
.c-card--new .c-card__info-title-00 {
  font-family: "Oswald", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .c-card--new .c-card__info-title-00 {
    font-size: 1rem;
  }
}

.c-break {
  width: 100%;
  height: 35vw;
  max-height: calc(100vh - 4.5rem);
  position: relative;
  margin: 2rem auto;
}
@media (max-width: 900px) {
  .c-break {
    height: auto;
    min-height: 70vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.c-break__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-break__img > img, .c-break__img video, .c-break__img iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.c-break__img > iframe {
  pointer-events: none;
  width: calc(100vmax + 200px);
  height: calc(56.6vmax + 200px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  touch-action: none;
}
@media screen and (min-height: 66vw) {
  .c-break__img > iframe {
    width: calc(180vh + 100px);
    height: calc(100vh - var(--wp-admin--admin-bar--height));
  }
}
.c-break__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.c-break__img--slider::after {
  display: none;
}
.c-break__info {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}
@media (max-width: 900px) {
  .c-break__info {
    bottom: 0;
    padding: 1rem 0;
    position: relative;
  }
}
.c-break__info-int {
  color: #ffffff;
}
@media (max-width: 900px) {
  .c-break__info-int {
    font-size: 1rem;
    font-weight: 300;
  }
}
.c-break__info-int-00 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-family: "Michroma", serif;
}
@media (max-width: 900px) {
  .c-break__info-int-00 {
    font-size: 2rem;
  }
}
.c-break__info-box {
  max-width: 30rem;
}
.c-break__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.c-break__slider .splide__track, .c-break__slider .splide__list {
  height: 100%;
}
.c-break__slide {
  height: 100%;
  max-width: 100vw;
}
.c-break__slide img {
  height: 100%;
  width: auto;
  display: block;
}
@media (min-width: 1120px) {
  .c-break .o-btn:hover {
    color: #191919;
    background-color: #ffffff;
    border-color: #ffffff;
  }
}

.c-page {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 1120px) {
  .c-page {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 900px) {
  .c-page {
    grid-template-columns: 100%;
  }
}
.c-page__image {
  width: 100%;
  height: calc(100vh - 4.5rem);
  position: -webkit-sticky;
  position: sticky;
  top: 4.5rem;
}
@media (max-width: 900px) {
  .c-page__image {
    position: relative;
    top: initial;
    height: 56.6vw;
    max-height: calc(100vh - 4.5rem - 3rem);
  }
}
.c-page__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.c-page__txt {
  width: calc(100% - 3rem);
  max-width: calc((1400px - 6rem) / 2);
  height: fit-content;
  box-sizing: border-box;
  padding: 2rem;
  padding-right: 0;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .c-page__txt {
    width: calc(100% - 2rem);
    margin: 1rem auto 2rem;
    max-width: initial;
    padding: 0;
  }
}
@media (max-width: 620px) {
  .c-page__txt {
    width: calc(100% - 1rem);
  }
}
.c-page__gallery {
  margin: 1rem auto;
}
.c-page__gallery .js-splide-close {
  display: none;
}
.c-page__gallery .splide__list {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.c-page__gallery .splide__slide {
  font-size: 0.9rem;
}
.c-page__gallery .splide__slide p {
  margin-bottom: 0 !important;
  margin-top: 0.5em !important;
}
.c-page__gallery .splide__arrow {
  background: none;
}
.c-page__gallery .splide__arrow--prev {
  left: 1rem;
}
.c-page__gallery .splide__arrow--next {
  right: 1rem;
}
.c-page__gallery-post-img {
  width: 100%;
  height: 0;
  padding-bottom: 66.6%;
  position: relative;
  cursor: pointer;
}
.c-page__gallery-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-page__gallery.is-full {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.c-page__gallery.is-full .js-splide-close {
  display: block;
  min-width: 2rem;
  height: 2rem;
  line-height: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-weight: 600;
}
.c-page__gallery.is-full .splide__list {
  display: flex !important;
  gap: 0;
}
.c-page__gallery.is-full .splide__slide {
  text-align: center;
}
.c-page__gallery.is-full .c-page__gallery-post-img {
  padding-bottom: 0;
  height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
.c-page__gallery.is-full .c-page__gallery-post-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
}
.c-page--error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 4.5rem);
}
@media (max-width: 900px) {
  .c-page--error {
    min-height: calc(100vh - 3rem);
  }
}
.c-page--error .c-page__txt {
  text-align: center;
}
.c-page--error .c-page__txt * {
  margin: 0;
}
.c-page.is-single {
  width: calc(100% - 6rem);
  max-width: calc(1400px - 6rem);
  margin: 0 auto;
  display: block;
}
@media (max-width: 1120px) {
  .c-page.is-single {
    width: calc(100% - 2rem);
  }
}
@media (max-width: 620px) {
  .c-page.is-single {
    width: calc(100% - 1rem);
  }
}
.c-page.is-single .c-page__image {
  display: none;
}
.c-page.is-single .c-page__txt {
  width: 100%;
  max-width: initial;
  padding-left: 0;
  padding-right: 0;
  background-color: #ffffff;
  padding: 0 1.25rem;
  box-sizing: border-box;
  margin: 1.25rem auto;
}
.c-page.is-single .c-page__txt::after {
  content: "";
  display: block;
  clear: both;
  height: 2.5rem;
}
.c-page.is-single .c-page__txt > *:first-child:not(img, iframe, .wp-caption, .aligncenter, .alignleft, .alignright, video) {
  padding-top: 1.25rem;
}
.c-page.is-single .c-page__txt > img:first-child {
  max-height: calc(100vh - 12rem);
  object-fit: cover;
}
.c-page.is-single .c-page__txt > *:last-child:not(img, iframe, .wp-caption, .aligncenter, .alignleft, .alignright, video) {
  padding-bottom: 2.5rem;
}
.c-page.is-single .c-page__txt blockquote {
  column-count: initial;
  column-gap: initial;
  background: #ededed;
  padding: 0.8rem;
  border-left: 5px solid #e30a17;
}
.c-page.is-single .c-page__txt.s-text blockquote * {
  display: block;
}
.c-page.is-single .c-page__gallery .splide__list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 620px) {
  .c-page.is-single .c-page__gallery .splide__list {
    grid-template-columns: 1fr 1fr;
  }
}

body.is-over {
  overflow: hidden;
}

.c-product {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 25rem;
}
@media (max-width: 900px) {
  .c-product {
    grid-template-columns: 100%;
  }
  .c-product .c-break {
    min-height: 56vw;
  }
}
.c-product__image {
  grid-column: 1/3;
}
.c-product__image:first-child {
  grid-row: 1;
}
@media (max-width: 900px) {
  .c-product__image {
    grid-column: 1;
  }
}
.c-product__info {
  position: sticky;
  position: -webkit-sticky;
  top: 4.5rem;
  min-height: calc(100vh - 4.5rem);
  grid-row: 1;
  grid-column: 2;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 3rem);
  max-width: calc((1400px - 6rem) / 2);
  grid-row: 1/3;
  pointer-events: none;
  z-index: 4;
}
@media (max-width: 900px) {
  .c-product__info {
    position: relative;
    top: 0;
    grid-row: 2;
    grid-column: 1;
    max-width: initial;
    min-height: initial;
    width: 100%;
  }
}
.c-product__info-int {
  max-width: 19rem;
  box-sizing: border-box;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  width: 100%;
  font-size: 0.9rem;
  z-index: 3;
  position: relative;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .c-product__info-int {
    max-width: initial;
  }
}
.c-product__info-int *:not(.o-btn, h1, .o-price, .c-quantity *) {
  margin: 0.5rem 0;
}
.c-product__info-int h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}
@media (max-width: 900px) {
  .c-product__info-int h1 {
    font-size: 1.5rem;
  }
}
.c-product__info-int .o-price {
  font-family: "Oswald", serif;
  font-size: 1rem;
  font-weight: 500;
  margin: 0.5rem 0;
}
@media (max-width: 900px) {
  .c-product__info-int .o-price {
    font-size: 1.5rem;
  }
}
.c-product__info-int .o-btn {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.c-product__xtra {
  margin: 3rem auto 3rem 0;
  max-width: 70rem;
  width: 100%;
}

.c-quantity {
  position: relative;
  width: 4.5rem;
  padding: 0;
  margin: 0;
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid currentColor;
}
.c-quantity input {
  width: 2.3rem;
  height: 2.3rem;
  line-height: 2.3rem;
  display: block;
  margin: 0;
  padding: 0 2.3rem;
  border: none;
  text-align: center;
  box-sizing: content-box;
  font-size: 1em;
  background-color: transparent;
  color: #191919;
}
.c-quantity-nav {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.c-quantity-button {
  position: absolute;
  cursor: pointer;
  width: 2.3rem;
  text-align: center;
  user-select: none;
  line-height: 2.3rem;
  top: 0;
  border: none;
  height: 2.3rem;
  font-family: "Titillium Web", serif;
}
@media (min-width: 1120px) {
  .c-quantity-button:hover {
    background-color: #191919;
    color: #ffffff;
  }
}
.c-quantity-down {
  left: 0;
  border-right: 1px solid #191919;
}
.c-quantity-up {
  right: -6.9rem;
  border-left: 1px solid #191919;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  margin: 0;
}
.c-quantity input[type=number]::-webkit-outer-spin-button,
.c-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-quantity input[type=number] {
  -moz-appearance: textfield;
}
.c-quantity--full {
  width: 100%;
}
.c-quantity--full input {
  width: 100%;
  box-sizing: border-box;
}
.c-quantity--full .c-quantity-nav {
  width: 100%;
}
.c-quantity--full .c-quantity-up {
  right: 0;
}

.c-filter {
  top: 4.5rem;
  position: -webkit-sticky;
  position: sticky;
  z-index: 4;
  background-color: #f7f4f1;
}
@media (max-width: 1120px) {
  .c-filter {
    top: 3rem;
  }
}
.c-filter__nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  overflow: auto;
  white-space: nowrap;
  padding: 1rem 0;
  padding-right: 1rem;
}
@media (max-width: 1120px) {
  .c-filter__nav {
    padding: 0.5rem 0;
    padding-right: 1rem;
  }
}
.c-filter__nav-item {
  font-size: 0.8rem;
  font-weight: 400;
  border-color: transparent;
  box-shadow: 0 0 3px 0px #ccc;
  background-color: #ffffff;
}
.c-filter__nav-item.is-active {
  border: 1px solid currentColor;
  box-shadow: initial;
}

.s-text > * {
  margin: 1rem 0;
  line-height: 1.4em;
}
.s-text > *:first-child {
  margin-top: 0;
}
.s-text > *:last-child {
  margin-bottom: 0;
}
.s-text p {
  margin: 1rem 0;
}
.s-text > img:not(.aligncenter, .alignleft, .alignright, .aligncenter img, .alignleft img, .alignright img) {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  width: calc(100% + 2.5rem);
  height: auto;
  max-width: initial;
}
.s-text a {
  text-decoration: underline;
}
.s-text hr {
  clear: both;
  margin: 0;
  height: 0;
  border: none;
  opacity: 0;
  display: block;
}
.s-text blockquote {
  margin: 1rem 0;
  width: 100%;
  box-sizing: border-box;
  column-count: 2;
  column-gap: 2rem;
  padding: 0;
  border: none;
}
.s-text blockquote * {
  display: inline-block;
}
.s-text .wp-caption {
  margin: 0;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
  width: fit-content;
}
.s-text .wp-caption img {
  margin: 0;
  max-width: 100%;
}
.s-text .wp-caption p {
  margin: 0.3rem auto 0;
  text-align: center;
}
.s-text .aligncenter {
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 1rem auto;
  text-align: center;
}
.s-text .aligncenter.wp-caption {
  max-width: 100%;
}
.s-text .aligncenter.wp-caption p {
  text-align: left;
}
.s-text .alignleft {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  float: left;
  max-width: calc(100% - 1rem);
  position: relative;
}
.s-text .alignleft.wp-caption {
  max-width: calc(100% - 1rem);
}
.s-text .alignright {
  margin-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  float: right;
  max-width: calc(100% - 1rem);
  position: relative;
}
.s-text .alignright.wp-caption {
  max-width: calc(100% - 1rem);
}
.s-text .alignright.wp-caption p {
  text-align: right;
}
.s-text .u-iframe {
  width: 100%;
  height: 0;
  padding-bottom: 56.6%;
  position: relative;
}
.s-text .u-iframe iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.s-text video {
  width: 100%;
  position: relative;
}
.s-text audio {
  width: 100%;
}
.s-text h1 {
  font-family: "Michroma", serif;
  font-size: 2.5rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .s-text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 620px) {
  .s-text h1 {
    font-size: 1.4rem;
  }
}
.s-text h2 {
  font-family: "Michroma", serif;
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .s-text h2 {
    font-size: 1.5rem;
  }
}
.s-text h3 {
  font-family: "Michroma", serif;
  font-size: 1.25rem;
  font-weight: 400;
}
.s-text h4 {
  font-family: "Michroma", serif;
  font-size: 0.9rem;
  font-weight: 400;
}
.s-text h5 {
  font-family: "Michroma", serif;
  font-size: 0.8rem;
  font-weight: 400;
}
.s-text h6 {
  font-family: "Michroma", serif;
  font-size: 1rem;
  font-weight: 400;
}
.s-text h6 a {
  font-family: "Oswald", serif;
  font-weight: 500;
  border: 1px solid #191919;
  color: #ffffff;
  background-color: #191919;
  padding: 0.5rem 1rem;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  text-align: center;
  appearance: none;
  cursor: pointer;
}
@media (min-width: 1120px) {
  .s-text h6 a:hover {
    background-color: #ffffff;
    color: #191919;
  }
}
.s-text--page ul {
  padding: 0;
  column-count: inherit;
  column-gap: inherit;
  font-size: 1em;
  padding-left: 2em;
}
.s-text::after {
  content: "";
  display: block;
  clear: both;
}

.splide__sr {
  display: none !important;
}

.splide__pagination__page {
  background: rgba(234, 234, 234, 0.2);
}
.splide__pagination__page.is-active {
  transform: initial;
}

@media (max-width: 620px) {
  .s-nav {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.3rem;
  }
  .s-nav h6 {
    margin: 0;
    display: block !important;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
  .s-nav h6 a {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.2rem;
  }
}

.woocommerce {
  width: 100%;
  max-width: 1020px;
  margin: 2rem auto 4rem;
}
.woocommerce * {
  font-size: 13px;
  color: currentColor;
  font-family: "Titillium Web", serif;
}
.woocommerce form .form-row {
  color: currentColor;
}
.woocommerce form .form-row label {
  line-height: 2em;
  text-transform: uppercase;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
}
.woocommerce form .form-row textarea {
  resize: none;
  padding: 10px;
}
.woocommerce form .form-row.validate-postcode {
  width: 47%;
  float: left;
}
.woocommerce form .form-row.validate-phone {
  width: 47%;
  float: right;
  clear: initial;
}
.woocommerce .select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.1);
  height: 40px;
}
.woocommerce-checkout.checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px 20px;
  grid-template-rows: auto auto auto auto;
}
@media (max-width: 900px) {
  .woocommerce-checkout.checkout {
    display: block;
  }
}
.woocommerce-checkout.checkout > * {
  width: 100%;
  float: initial;
}
.woocommerce #customer_details > * {
  float: initial;
  width: 100%;
}
.woocommerce h3 {
  text-align: left;
  font-size: 1.1em;
  margin: 10px 3px;
  font-weight: 500;
  text-transform: uppercase;
}
.woocommerce .col2-set {
  margin-bottom: 0px;
  width: 100%;
  grid-row: 2/5;
}
.woocommerce #order_review_heading {
  grid-column: 2;
  grid-row: 2;
  height: fit-content;
  text-align: left;
  width: 100%;
}
.woocommerce #order_review {
  width: 100%;
  grid-column: 2;
  grid-row: 3;
  padding-top: 3px;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.woocommerce table.shop_table {
  font-weight: 500;
  border-radius: 0;
}
.woocommerce table.shop_table strong {
  font-weight: 500;
}
.woocommerce-checkout #payment {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.woocommerce-checkout #payment div.payment_box {
  background-color: #f9f9f9;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #f9f9f9;
}
.woocommerce button.button.alt {
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 0;
  text-transform: uppercase;
  background-color: #191919;
  width: 100%;
  border: 1px solid #191919;
  color: #ffffff;
}
@media (min-width: 1120px) {
  .woocommerce button.button.alt:hover {
    background-color: transparent;
    color: #191919;
  }
}
.woocommerce ul.order_details {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.woocommerce ul.order_details li {
  border: none;
  padding: 0;
  margin: 0;
}
.woocommerce address {
  width: 100%;
  background-color: rgba(234, 234, 234, 0.2);
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
}
.woocommerce-order h2 {
  color: currentColor;
  font-size: 1.2rem;
  font-family: "Titillium Web", serif;
  margin: 0;
  margin-bottom: 0.5rem;
}
.woocommerce-order h3 {
  color: currentColor;
  font-size: 1rem;
  font-family: "Titillium Web", serif;
  margin: 0;
}
.woocommerce-order span {
  color: rgba(234, 234, 234, 0.2);
}
.woocommerce-order a {
  text-decoration: underline;
}
.woocommerce-order .woocommerce-order-details {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}
.woocommerce ul.order_details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
.woocommerce-cart-form__cart-item img {
  max-width: 100px;
}
.woocommerce table.cart img {
  max-width: 100px;
}
.woocommerce table.shop_table thead {
  font-family: "Oswald", serif;
  font-weight: 500;
}
.woocommerce table.shop_table thead th {
  font-family: "Oswald", serif;
  font-weight: 500;
  font-size: 15px;
}
.woocommerce table.cart td.actions .input-text {
  width: 120px;
}
.woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6 {
  font-family: "Oswald", serif;
  font-weight: 500;
  font-size: 1rem;
}
.woocommerce .cart .button {
  border-radius: 0px;
  font-family: "Oswald", serif;
  font-weight: 500;
}
.woocommerce-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 900px) {
  .woocommerce-order {
    grid-template-columns: 1fr;
  }
}
.woocommerce-order > *:not(ul, div, section, article) {
  grid-column: 1/3;
}
@media (max-width: 900px) {
  .woocommerce-order > *:not(ul, div, section, article) {
    grid-column: initial;
  }
}
.woocommerce-order > p {
  font-family: "Oswald", serif;
  font-weight: 500;
  font-size: 1rem;
}
.woocommerce-order .col2-set .col-1, .woocommerce-order .col2-set .col-2 {
  width: calc(50% - 0.5rem);
}
@media (max-width: 900px) {
  .woocommerce-order .col2-set .col-1, .woocommerce-order .col2-set .col-2 {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.woocommerce-customer-details {
  grid-column: 1/3;
}
@media (max-width: 900px) {
  .woocommerce-customer-details {
    grid-column: initial;
  }
}
.woocommerce .woocommerce-customer-details address {
  border: none;
  background-color: #f7f4f1;
}
.woocommerce ul.order_details {
  border-bottom: none;
  padding-bottom: none;
  margin-bottom: 0;
}
.woocommerce .woocommerce-order-details {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.woocommerce ul.order_details li {
  font-size: 0.8em;
}
.woocommerce-error {
  padding: 1em 2em 1em 3.5em;
}
.woocommerce table tr {
  background-color: transparent;
}
.woocommerce table tr:nth-child(2n+2):not(thead tr) {
  background-color: transparent;
}

/*# sourceMappingURL=style.css.map */
