@charset "UTF-8";
.u-flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.flex-between-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   ORME front — index.php
   desktop 1440 / mobile ≤640 (Figma 360)
   ========================================================= */
:root {
  --orme-page-ink: #1b1b1b;
  --orme-bg-primary: #e1ddd7;
  --orme-bg-secondary: #eae7e2;
  --orme-accent-primary: #464e3f;
  --orme-accent-secondary: #a79d92;
  --orme-accent-tertiary: #7a797a;
  --orme-inner: 65.3vw;
  --orme-margin: 40px;
  --orme-grid-column-width: 95px;
  --orme-grid-gutter: 20px;
  --orme-grid-cg: calc(var(--orme-grid-column-width) + var(--orme-grid-gutter));
  --orme-grid-padding: calc(
    var(--orme-grid-cg) + var(--orme-grid-column-width) + var(--orme-margin)
  );
  --orme-card-padding: 44px;
  --orme-font-size-base-sp: clamp(13px, calc(16 / 360 * 100vw), 24px);
}

@media screen and (max-width: 1000px) {
  :root {
    --orme-inner: calc(100vw - var(--orme-margin) * 2);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --orme-margin: calc(24 / 360 * 100vw);
    --orme-grid-column-width: calc(18 / 360 * 100vw);
    --orme-grid-gutter: calc(24 / 360 * 100vw);
    --orme-grid-padding: calc(
      var(--orme-grid-cg) + var(--orme-grid-column-width) + var(--orme-margin)
    );
    --orme-card-padding: var(--orme-grid-gutter);
  }
}
body {
  background-color: var(--orme-bg-secondary);
  color: var(--orme-page-ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

picture {
  display: block;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  font-family: var(--font-g);
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--orme-accent-primary);
  margin-bottom: 12px;
}

@media screen and (max-width: 640px) {
  body {
    font-size: var(--orme-font-size-base-sp);
  }
  .label {
    font-size: 0.5625em;
    margin-bottom: 0.33em;
  }
}
#orme .front-sec .inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--orme-grid-gutter);
}
#orme .front-sec .inner > * {
  flex: 1;
  max-width: calc(50% - var(--orme-grid-gutter) / 2);
}
#orme .front-sec .ims {
  position: relative;
  z-index: 2;
}
#orme .front-sec .content .content-head {
  position: relative;
  z-index: 1;
  padding-bottom: 0.5em;
}
#orme .front-sec .content .content-head::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: calc(var(--orme-grid-cg) * 3 + var(--orme-grid-gutter) * 2);
  background-color: var(--orme-accent-secondary);
  max-width: calc(100% + var(--orme-grid-cg) + var(--orme-grid-gutter));
}
#orme .front-sec .content .head-h2 {
  font-family: var(--font-g);
  font-weight: 300;
  font-size: 1.5em;
  letter-spacing: 0.01em;
  line-height: 1.65em;
  color: var(--orme-accent-primary);
}
#orme .front-sec .content .content-body {
  max-width: calc(var(--orme-grid-cg) * 6);
  margin-top: 1.75em;
}
#orme .front-sec .content .content-body p {
  font-size: 1em;
  line-height: 2;
  letter-spacing: 0;
}
#orme .front-sec .content .content-body p + p {
  margin-top: 2em;
}
#orme .front-sec:nth-child(odd of .front-sec) .content {
  padding-left: var(--orme-grid-column-width);
  padding-right: var(--orme-grid-padding);
}
#orme .front-sec:nth-child(odd of .front-sec) .content .content-head::after {
  width: calc(var(--orme-grid-cg) * 3 + var(--orme-grid-gutter) * 2);
  left: calc(var(--orme-grid-cg) * -1 - var(--orme-grid-gutter));
  bottom: 0;
}
#orme .front-sec:nth-child(even of .front-sec) .inner {
  flex-direction: row-reverse;
}
#orme .front-sec:nth-child(even of .front-sec) .content {
  padding-left: 0;
  padding-right: var(--orme-card-padding);
}
#orme .front-sec:nth-child(even of .front-sec) .content .content-head::after {
  width: calc(100% + var(--orme-card-padding) + var(--orme-grid-gutter));
  left: 0;
  bottom: 0;
}
#orme .front-sec + .front-sec {
  padding-top: 10.4375em;
}
@media screen and (max-width: 640px) {
  #orme .front-sec .inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--orme-grid-column-width);
  }
  #orme .front-sec .inner > * {
    flex: none;
    max-width: 100%;
  }
  #orme .front-sec:nth-child(odd of .front-sec), #orme .front-sec:nth-child(even of .front-sec) {
    padding-inline: 0;
  }
  #orme .front-sec:nth-child(odd of .front-sec) .inner, #orme .front-sec:nth-child(even of .front-sec) .inner {
    flex-direction: column;
  }
  #orme .front-sec:nth-child(odd of .front-sec) .content, #orme .front-sec:nth-child(even of .front-sec) .content {
    padding-inline: var(--orme-grid-gutter);
  }
  #orme .front-sec:nth-child(odd of .front-sec) .content .content-head::after, #orme .front-sec:nth-child(even of .front-sec) .content .content-head::after {
    left: calc(var(--orme-grid-gutter) * -1);
    width: 100%;
  }
  #orme .front-sec .content .content-head {
    padding-bottom: 0.9375em;
  }
  #orme .front-sec .content .content-head::after {
    max-width: calc(var(--orme-grid-cg) * 6);
  }
  #orme .front-sec .content .head-h2 {
    font-size: 0.875em;
  }
  #orme .front-sec .content .content-body {
    max-width: none;
    margin-top: 1.375em;
  }
  #orme .front-sec .content .content-body p {
    font-size: 0.6875em;
  }
  #orme .front-sec .content .content-body p + p {
    margin-top: 2em;
  }
  #orme .front-sec + .front-sec {
    padding-top: 80px;
  }
}
#orme #mainImage {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  overflow: hidden;
  color: var(--orme-bg-secondary);
  background-color: var(--orme-bg-primary);
  margin: 0;
}
#orme #mainImage .inner {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
  padding-inline: 9.375vw;
  padding-top: 4.625em;
  transition: all 0.3s;
}
#orme #mainImage .lgm-wrap {
  width: 8.4375em;
  margin-bottom: 9.1875em;
}
#orme #mainImage .lgm-wrap img {
  width: 100%;
  height: auto;
}
#orme #mainImage .copytitle .hd-h1 {
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#orme #mainImage .copytitle .text-jp {
  font-family: var(--font-m);
  font-size: 1.75em;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.65em;
}
#orme #mainImage .copytitle .text-en {
  font-family: var(--font-g);
  font-size: 1.5625em;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.65em;
}
#orme #mainImage .bgi,
#orme #mainImage .bgi img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}
#orme #mainImage .bgi img {
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 700px) {
  #orme #mainImage .inner {
    padding-inline: 11.7vw;
  }
}
@media screen and (max-width: 640px) {
  #orme #mainImage {
    min-height: 0;
    height: 100svh;
    max-height: 100svh;
  }
  #orme #mainImage .inner {
    top: auto;
    bottom: 0;
    transform: none;
    padding-top: 4.5em;
    padding-bottom: 2.25em;
    padding-bottom: calc(2.25em + env(safe-area-inset-bottom, 0px));
  }
  #orme #mainImage .lgm-wrap {
    width: 5.75em;
    margin-bottom: 2.5em;
  }
  #orme #mainImage .lgm-wrap img {
    filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.35));
  }
  #orme #mainImage .copytitle {
    text-shadow: 0px 1px 2.3px #000000;
  }
  #orme #mainImage .copytitle .hd-h1 {
    gap: 0.25em;
  }
  #orme #mainImage .copytitle .text-jp {
    font-size: 0.8125em;
  }
  #orme #mainImage .copytitle .text-en {
    font-size: 0.6875em;
    line-height: 1.5em;
  }
}
#orme #orme-objects {
  padding-block: 167px;
  background-color: var(--orme-bg-primary);
}
#orme #orme-objects .ims,
#orme #orme-objects .im-wrap {
  background-color: var(--orme-bg-primary);
}
#orme #orme-objects .ims {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: calc(50vw - var(--orme-grid-gutter) / 2);
  aspect-ratio: 710/610;
}
#orme #orme-objects .ims .ims-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
#orme #orme-objects .ims .im-wrap {
  position: absolute;
  top: 0;
  width: calc(31.94vw + 1px);
  aspect-ratio: 460/610;
  overflow: hidden;
  animation: orme-slideanime 15s infinite cubic-bezier(0.76, 0, 0.24, 1) both;
}
#orme #orme-objects .ims .im-wrap:nth-child(1) {
  left: calc(100% - 1 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap:nth-child(2) {
  left: calc(100% - 2 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap:nth-child(3) {
  left: calc(100% - 3 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap:nth-child(4) {
  left: calc(100% - 4 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap:nth-child(5) {
  left: calc(100% - 5 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap:nth-child(6) {
  left: calc(100% - 6 * 31.94vw);
}
#orme #orme-objects .ims .im-wrap picture,
#orme #orme-objects .ims .im-wrap img {
  display: block;
  width: 110%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
#orme #orme-objects .ims .im-wrap img {
  position: absolute;
  top: -5%;
  left: -10%;
  object-fit: cover;
  animation: orme-slidein 15s infinite cubic-bezier(0.61, 1, 0.88, 1) both;
}
#orme #orme-objects .content {
  flex: initial;
  width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2);
  padding-right: 0;
  transition: all 0.3s;
}
#orme #orme-objects .content .content-body {
  margin-top: 2.5em;
}
#orme #orme-objects .content .content-body p + p {
  margin-top: 1.25em;
}
#orme #orme-objects .content-inner {
  max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2 - var(--orme-grid-column-width));
}
#orme #orme-objects .bt-shop {
  margin-top: 46px;
}
@media screen and (max-width: 1000px) {
  #orme #orme-objects .content {
    padding-left: calc(var(--orme-margin) - var(--orme-grid-gutter) / 2);
    padding-right: 0;
  }
  #orme #orme-objects .content-inner {
    max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2 - var(--orme-margin));
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-objects {
    padding: 0;
  }
  #orme #orme-objects .inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding-block: 3.125em;
  }
  #orme #orme-objects .inner > * {
    flex: none;
    max-width: none;
  }
  #orme #orme-objects .ims {
    flex: 0 0 41.6666666667vw;
    width: 41.6666666667vw;
    max-width: 41.6666666667vw;
    aspect-ratio: auto;
    display: block;
    overflow: hidden;
  }
  #orme #orme-objects .ims .ims-grid {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
  #orme #orme-objects .ims .ims-grid .im-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 150/161;
    animation: none;
  }
  #orme #orme-objects .ims .ims-grid .im-wrap:nth-child(n+4) {
    display: none;
  }
  #orme #orme-objects .ims .ims-grid .im-wrap picture,
  #orme #orme-objects .ims .ims-grid .im-wrap img {
    width: 100%;
    height: 100%;
    position: static;
    animation: none;
    left: 0;
    top: 0;
  }
  #orme #orme-objects .content {
    flex: 1;
    width: auto;
    min-width: 0;
    max-width: none;
    padding-block: 1.9375em;
    padding-inline: var(--orme-grid-cg);
  }
  #orme #orme-objects .content .content-head::after {
    left: calc(var(--orme-grid-gutter) * -1 - var(--orme-grid-cg));
    width: calc(100% + var(--orme-grid-cg) + var(--orme-grid-gutter));
  }
  #orme #orme-objects .content .head-h2 {
    font-size: 0.8125em;
  }
  #orme #orme-objects .content .content-body {
    margin-top: 1.9375em;
  }
  #orme #orme-objects .content .content-body p {
    font-size: 0.6875em;
  }
  #orme #orme-objects .content .content-body p + p {
    margin-top: 2em;
  }
  #orme #orme-objects .content-inner {
    max-width: 100%;
  }
  #orme #orme-objects .bt-shop {
    font-size: 0.625em;
    margin-top: 3.1em;
  }
}
#orme #orme-mosaic {
  width: 100%;
  padding-block: 10.25em;
}
#orme #orme-mosaic .ims-grid {
  display: grid;
  grid-template-columns: 230fr 210fr 210fr 230fr;
  grid-template-areas: "m1 m2 m3 m3" "m4 m5 m5 m6";
  gap: var(--orme-grid-gutter);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  transition: all 0.3s;
}
#orme #orme-mosaic .ims-grid .im-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
#orme #orme-mosaic .ims-grid picture {
  width: 100%;
}
#orme #orme-mosaic .ims-grid img {
  position: absolute;
  top: 0;
  left: 0;
}
#orme #orme-mosaic .ims-grid .m1 {
  grid-area: m1;
  aspect-ratio: 230/336;
}
#orme #orme-mosaic .ims-grid .m2 {
  grid-area: m2;
  aspect-ratio: 210/336;
}
#orme #orme-mosaic .ims-grid .m3 {
  grid-area: m3;
  aspect-ratio: 460/336;
  height: 100%;
}
#orme #orme-mosaic .ims-grid .m4 {
  grid-area: m4;
  aspect-ratio: 230/336;
}
#orme #orme-mosaic .ims-grid .m5 {
  grid-area: m5;
  aspect-ratio: 440/336;
  height: 100%;
}
#orme #orme-mosaic .ims-grid .m6 {
  grid-area: m6;
  aspect-ratio: 230/336;
}
@media screen and (min-width: 641px) {
  #orme #orme-mosaic .ims-grid {
    width: var(--orme-inner);
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-mosaic {
    padding-inline: var(--orme-margin);
    padding-block: 4.5em;
  }
  #orme #orme-mosaic .ims-grid {
    grid-template-columns: minmax(0, 67fr) minmax(0, 74fr) minmax(0, 74fr) minmax(0, 67fr);
    gap: 0.625em;
  }
  #orme #orme-mosaic .ims-grid .m1 {
    aspect-ratio: 67/135;
  }
  #orme #orme-mosaic .ims-grid .m2 {
    aspect-ratio: 74/135;
  }
  #orme #orme-mosaic .ims-grid .m3 {
    aspect-ratio: 151/135;
  }
  #orme #orme-mosaic .ims-grid .m4 {
    aspect-ratio: 67/136;
  }
  #orme #orme-mosaic .ims-grid .m5 {
    aspect-ratio: 158/136;
  }
  #orme #orme-mosaic .ims-grid .m6 {
    aspect-ratio: 67/136;
  }
}
#orme #orme-beginning .inner {
  width: 100%;
  transition: all 0.3s;
}
#orme #orme-beginning .im-wrap {
  aspect-ratio: 460/610;
}
@media screen and (min-width: 641px) {
  #orme #orme-beginning .inner {
    width: var(--orme-inner);
    margin-inline: auto;
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-beginning .im-wrap {
    aspect-ratio: 360/225;
  }
}
#orme #orme-form .ims-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--orme-grid-gutter);
}
#orme #orme-form .ims-grid .im-wrap {
  width: 100%;
}
#orme #orme-form .ims-grid .im-wrap:nth-of-type(2) {
  max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2);
  margin-left: auto;
}
#orme #orme-form .content {
  flex: initial;
  width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2);
  padding-right: 0;
  transition: all 0.3s;
}
#orme #orme-form .content .content-head::after {
  width: calc(var(--orme-grid-cg) * 4 + var(--orme-grid-gutter) * 1);
}
#orme #orme-form .content-inner {
  max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2 - var(--orme-grid-column-width));
}
@media screen and (max-width: 1000px) {
  #orme #orme-form .content {
    padding-left: var(--orme-margin);
    padding-right: 0;
  }
  #orme #orme-form .content-inner {
    max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2 - var(--orme-margin));
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-form {
    padding-top: 0;
    margin-top: 6.5625em;
  }
  #orme #orme-form .inner {
    gap: 3.25em;
  }
  #orme #orme-form .ims {
    overflow: hidden;
  }
  #orme #orme-form .ims-grid {
    flex-direction: column-reverse;
    gap: 0.625em;
  }
  #orme #orme-form .ims-grid .im-wrap {
    width: auto;
    min-width: 0;
    overflow: hidden;
  }
  #orme #orme-form .ims-grid .im-wrap:nth-of-type(1) {
    width: calc(var(--orme-grid-cg) * 6);
    max-width: 100%;
    aspect-ratio: 252/196;
    margin-left: auto;
    margin-right: 0;
  }
  #orme #orme-form .ims-grid .im-wrap:nth-of-type(2) {
    padding-left: 0;
    aspect-ratio: 168/97;
    width: calc(var(--orme-grid-cg) * 4);
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
  #orme #orme-form .content {
    width: 100%;
    padding-left: calc(var(--orme-grid-cg) * 2 + var(--orme-grid-gutter));
    padding-right: cacl(var(--orme-margin)-0.5em);
  }
  #orme #orme-form .content .content-head::after {
    width: calc(100% + var(--orme-margin));
    left: 0;
  }
  #orme #orme-form .content-inner {
    max-width: 100%;
  }
}
#orme #orme-texture {
  padding-inline: 0;
  overflow: hidden;
}
#orme #orme-texture .ims-grid {
  display: grid;
  grid-template-columns: minmax(0, 210fr) minmax(0, 480fr);
  grid-template-areas: "t1 t2" "t3 t2";
  gap: var(--orme-grid-gutter);
}
#orme #orme-texture .ims-grid .im-wrap {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
#orme #orme-texture .ims-grid .im-wrap:nth-child(1) {
  grid-area: t1;
  aspect-ratio: 210/374;
}
#orme #orme-texture .ims-grid .im-wrap:nth-child(2) {
  grid-area: t2;
  aspect-ratio: 480/610;
  height: 100%;
}
#orme #orme-texture .ims-grid .im-wrap:nth-child(3) {
  grid-area: t3;
  aspect-ratio: 210/216;
}
@media screen and (min-width: 641px) {
  #orme #orme-texture .content {
    max-width: calc((var(--orme-inner) - var(--orme-grid-gutter)) / 2);
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  #orme #orme-texture .content {
    max-width: calc(50% - var(--orme-grid-gutter) / 2);
    padding-left: var(--orme-margin);
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-texture {
    padding-top: 7.6875em;
  }
  #orme #orme-texture .ims-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "t1 t2" "t1 t3";
    gap: 0.625em;
  }
  #orme #orme-texture .ims-grid .im-wrap:nth-child(1) {
    aspect-ratio: 175/326;
  }
  #orme #orme-texture .ims-grid .im-wrap:nth-child(2) {
    aspect-ratio: 175/204;
  }
  #orme #orme-texture .ims-grid .im-wrap:nth-child(3) {
    aspect-ratio: 175/111;
  }
  #orme #orme-texture .content {
    padding-inline: var(--orme-grid-padding);
  }
}
@media screen and (max-width: 640px) {
  #orme #orme-beginning .inner,
  #orme #orme-texture .inner {
    gap: 2.5625em;
  }
  #orme #orme-beginning .content,
  #orme #orme-texture .content {
    max-width: 100%;
    padding-inline: calc(var(--orme-grid-cg) + var(--orme-margin));
  }
  #orme #orme-beginning .content .content-head,
  #orme #orme-texture .content .content-head {
    padding-bottom: 0.9375em;
  }
  #orme #orme-beginning .content .content-head::after,
  #orme #orme-texture .content .content-head::after {
    left: calc((var(--orme-grid-cg) + var(--orme-margin)) * -1);
    width: calc(var(--orme-grid-cg) * 6 + var(--orme-margin) * 2);
  }
}
#orme #orme-closing {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  height: 1402.78px;
  margin-top: 13.125em;
  color: var(--orme-bg-secondary);
  overflow: hidden;
}
#orme #orme-closing .ims,
#orme #orme-closing .ims picture,
#orme #orme-closing .ims img {
  position: absolute;
  inset: 0;
}
#orme #orme-closing .ims::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 69.4%;
  background: var(--orme-accent-tertiary);
  mix-blend-mode: multiply;
  pointer-events: none;
}
#orme #orme-closing .content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--orme-inner);
  margin: 0 auto;
  padding: 0 0 194px;
  box-sizing: border-box;
}
#orme #orme-closing .content .content-body {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
#orme #orme-closing .content p {
  font-size: 1em;
  line-height: 2em;
  letter-spacing: 0;
}
#orme #orme-closing .content .bt-shop {
  padding: 2.2em 1em;
  font-size: 1.75em;
  margin-top: 109px;
}
#orme #orme-closing .content .bt-shop:hover {
  border-color: var(--orme-bg-secondary);
  color: var(--orme-bg-secondary);
}
@media screen and (max-width: 640px) {
  #orme #orme-closing {
    min-height: initial;
    height: initial;
    margin-top: 6.625em;
    aspect-ratio: 360/712;
    overflow: hidden;
  }
  #orme #orme-closing .content {
    padding: 3.75em 0 4.6875em;
  }
  #orme #orme-closing .content p {
    font-size: 0.6875em;
  }
  #orme #orme-closing .content .bt-shop {
    margin-top: 3.615em;
    padding: 1.875em 1.5em;
    font-size: 0.8125em;
    max-width: calc(100% - var(--orme-grid-cg) * 2);
  }
  #orme #orme-closing .content .content-body {
    gap: 1.5em;
  }
  #orme #orme-closing .ims::after {
    height: 65.4%;
  }
}
#orme #orme-strip ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
}
#orme #orme-strip li {
  flex: 0 0 23.61vw;
  width: 23.61vw;
  aspect-ratio: 340/453;
  overflow: hidden;
  margin: 0;
}
#orme #orme-strip img {
  display: block;
  pointer-events: none;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #orme #orme-strip li {
    flex-basis: 55.4166666667vw;
    width: 55.4166666667vw;
    aspect-ratio: 199.5/266;
  }
}

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