
@charset "UTF-8";

/* ==========================================================================
Base
========================================================================== */

/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}

:where(body) {
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  overflow: visible;

  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

:root {
  --color-00-main: #a65a74;
  --color-00-sub: #fff7fb;
  --color-00-text: var(--color-00-main);
  --color-00-black: #000;
  --color-00-white: #fff;
  --color-01-pink: #fff7fb;
  --gradation-01: linear-gradient(90deg, #b9a59d 0%, #a28478 100%);
  --font-main: "zen-old-mincho", serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-en: "EB Garamond", serif;
  --clip-path-01: polygon(18% 0, 100% 1%, 100% 80%, 82% 100%, 0 100%, 0 20%);
  --clip-path-02: polygon(50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%, 15% 15%);
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-behavior: auto;
}

html:has(dialog[open]) {
  overflow: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-00-white);
  color: var(--color-00-text);
  font-family: var(--font-main);
}

/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media print, screen and (width <=767px) {
  .-pc-only {
    display: none !important;
  }
}

@media print, screen and (width >=768px) {
  .-sp-only {
    display: none !important;
  }
}

@media print, screen and (width <=767px) {
  #tab {
    scroll-margin-top: 70px;
  }
}

/* ==========================================================================
Components
========================================================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 71px;
  background-color: rgb(255 255 255 / 91%);
  border-radius: 0 0 25px 25px;
  opacity: 0;
  color: var(--color-00-black);
  pointer-events: none;
  transition: opacity 200ms;
  filter: drop-shadow(0 1px 13px rgb(0 0 0 / 16%));
}

.c-header.-showed {
  opacity: 1;
  pointer-events: auto;
}

.c-header__body {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px 8px;
}

@media print, screen and (width >=768px) {
  .c-header__body {
    padding-inline: 50px;
  }
}

.c-header__logo {
  width: 182px;
  height: 22px;
}

.c-header__logo-link {
  display: block;
}

.c-header__burger {
  z-index: 201;
  width: 50px;
  height: 50px;
}

.c-header__burger-button {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: unset;
  border: none;
  align-items: center;
  justify-content: center;
}

.c-header__burger-button[aria-expanded="true"] .c-header__burger-icon > span {
  background-color: var(--color-00-black);
}

.c-header__burger-button[aria-expanded="true"] .c-header__burger-icon > span:nth-child(1) {
  transform: translateY(8px) rotate(30deg);
}

.c-header__burger-button[aria-expanded="true"] .c-header__burger-icon > span:nth-child(2) {
  transform: scale(0, 0) !important;
}

.c-header__burger-button[aria-expanded="true"] .c-header__burger-icon > span:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
}

@media (hover: hover) {
  .c-header__burger-button[aria-expanded="true"] {
    transition: opacity 200ms;
  }

  .c-header__burger-button[aria-expanded="true"]:hover {
    opacity: 0.7;
  }
}

.c-header__burger-button:hover .c-header__burger-icon > span:nth-child(2) {
  transform: scale(0.6, 1);
}

.c-header__burger-icon {
  display: flex;
  width: 32px;
  height: 18px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
}

.c-header__burger-icon > span {
  display: block;
  overflow: hidden;
  width: 32px;
  height: 1px;
  background-color: var(--color-00-black);
  border-radius: 2px;
  transition: transform 100ms;
}

.c-header__burger-icon > span:nth-child(2) {
  transform-origin: right center;
  transform: scale(0.6, 1);
}

.c-burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 190;
  width: 100%;
  max-width: none;
  height: 100lvh;
  max-height: none;
  background-color: transparent;
  border: none;
  color: var(--color-00-text);
}

.c-burger-menu__body {
  position: relative;
  overflow: scroll;
  height: auto;
  height: 100%;
  max-height: 100lvh;
  margin: 0 0 0 auto;
  padding-top: 109px;
  background-color: rgb(255 255 255 / 91%);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__body {
    height: 100%;
  }
}

.c-burger-menu__logo {
  aspect-ratio: 303/76;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__logo {
    width: 303px;
    max-width: none;
  }
}

.c-burger-menu__logo a {
  display: block;
}

.c-burger-menu__inner {
  padding: 20px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
  }
}

.c-burger-menu__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__list {
    grid-template-columns: 1fr 1fr minmax(0, 0.5fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px 40px;
    align-items: start;
    padding-inline: 20px;
    margin-top: 32px;
  }
}

.c-burger-menu__item.-jam {
  border-top: 1px solid var(--color-00-text);
  border-bottom: 1px solid var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item.-jam {
    grid-column: 3;
    grid-row: 1/span 3;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid var(--color-00-text);
    padding-left: 40px;
  }
}

.c-burger-menu__item.-jam .c-burger-menu__item-link .c-burger-menu__item-image {
  grid-area: image;
}

@media print, screen and (width <=767px) {
  .c-burger-menu__item.-jam .c-burger-menu__item-link {
    grid-template-areas: "image jam-title" "jam-text jam-text";
    align-items: center;
    padding-block: 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item.-jam .c-burger-menu__item-link {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "jam-title" "jam-text";
    gap: 16px 0;
    height: auto;
    align-content: start;
    text-align: center;
  }
}

.c-burger-menu__item-link {
  display: grid;
  color: var(--color-00-text);
  grid-template-columns: 130px 1fr;
  gap: 10px;
  text-decoration: none;
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-link {
    grid-template-columns: 40% 1fr;
    gap: 20px;
    align-items: start;
  }
}

@media (hover: hover) {
  .c-burger-menu__item-link {
    transition: opacity 300ms;
  }

  .c-burger-menu__item-link:hover {
    opacity: 0.7;
  }

  .c-burger-menu__item-link:hover img {
    transform: scale(1.05);
  }
}

.c-burger-menu__item-image {
  overflow: hidden;
}

.c-burger-menu__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.c-burger-menu__item-content {
  font-size: 15px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-content {
    margin-right: -1em;
    font-size: 23px;
    letter-spacing: -0.01em;
  }
}

.c-burger-menu__item-text-en {
  display: block;
  width: fit-content;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text-en {
    font-size: 16px;
  }
}

.c-burger-menu__item-text-ja {
  display: block;
  margin-top: 4px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text-ja {
    font-size: 20px;
  }
}

.c-burger-menu__item-text-sub {
  font-size: 10px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text-sub {
    font-size: 12px;
  }
}

.c-burger-menu__item-jam-title {
  grid-area: jam-title;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-jam-title {
    font-size: 14px;
    text-align: left;
    letter-spacing: -0.03em;
    align-self: auto;
  }
}

.c-burger-menu__item-jam-text {
  grid-area: jam-text;
  font-size: 13px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-jam-text {
    font-size: 13px;
    align-self: auto;
    text-align: left;
  }
}

.c-footer {
  position: relative;
  z-index: 1;
  font-family: var(--font-noto-sans);
}

@media print, screen and (width >=768px) {
  .c-footer {
    min-width: 1200px;
  }
}

.c-footer__banners {
  background-color: #fff;
  color: #000;
  padding-block: 30px;
}

@media print, screen and (width >=768px) {
  .c-footer__banners {
    padding-block: 50px;
  }
}

.c-footer__banners-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media print, screen and (width >=768px) {
  .c-footer__banners-list {
    width: 100%;
    max-width: 1100px;
    justify-content: center;
    grid-template-columns: repeat(2, 300px);
    margin: 0 auto;
    gap: 90px;
  }
}

.c-footer__banners-link {
  display: block;
  padding: 8px 20px;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-footer__banners-link {
    padding: 0;
  }
}

.c-footer__banners-link img {
  display: block;
  width: 100%;
}

.c-footer__content {
  background-color: #000;
  color: #fff;
  padding-block: 40px 20px;
}

@media print, screen and (width >=768px) {
  .c-footer__content {
    padding-block: 50px;
    padding-inline: 50px;
  }
}

.c-footer__body {
  display: grid;
  grid-template-columns: 1fr;
}

@media print, screen and (width >=768px) {
  .c-footer__body {
    width: 1100px;
    margin: 0 auto;
    align-items: center;
    grid-template-areas: "copyright list";
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
}

.c-footer__list {
  gap: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  margin: auto;
}

@media print, screen and (width >=768px) {
  .c-footer__list {
    grid-area: list;
    justify-content: flex-end;
    width: 100%;
    grid-template-columns: auto auto;
  }
}

.c-footer__list li a {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer__list li a {
    transition: opacity 200ms;
  }

  .c-footer__list li a:hover {
    opacity: 0.7;
  }
}

.c-footer__copyright {
  display: block;
  margin-top: 40px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-footer__copyright {
    margin-top: 0;
    font-size: 12px;
    grid-area: copyright;
  }
}

.c-hero {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-hero {
    min-width: 1200px;
  }
}

.c-hero h1 {
  display: block;
  width: 100%;
  height: auto;
}

.c-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-content-wrapper {
  position: relative;
  z-index: 10;
}

@media print, screen and (width >=768px) {
  .c-content-wrapper {
    min-width: 1200px;
  }
}

.c-content-wrapper__inner {
  position: relative;
}

.c-content-wrapper__inner::before {
  position: absolute;
  left: 50%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  content: "";
  transform: translateX(-50%);
}

@media print, screen and (width <=767px) {
  .c-content-wrapper__inner::before {
    top: -100px;
    height: 100px;
    background-size: max(100%, 400px) 100px;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper__inner::before {
    top: -200px;
    height: 200px;
    background-size: 100% 200px;
  }
}

.c-content-wrapper.-home {
  overflow: hidden;
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-home .c-content-wrapper__inner {
    margin-top: calc(180.2666666667vw - 30px);
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-home .c-content-wrapper__inner {
    margin-top: 56.149341142vw;
  }
}

.c-content-wrapper.-home .c-content-wrapper__inner .c-content-wrapper__background1 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/bg_top_content1.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.c-content-wrapper.-home .c-content-wrapper__inner .c-content-wrapper__background2 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/bg_top_content2.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.c-content-wrapper.-home .c-content-wrapper__inner .c-content-wrapper__background3 {
  padding: 0 20px 100px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/bg_top_news_sp.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-home .c-content-wrapper__inner .c-content-wrapper__background3 {
    padding-bottom: 240px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/bg_top_news.webp");
  }
}

.c-content-wrapper.-new-items {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/new/bg_new.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner {
    margin-top: 100vw;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner {
    margin-top: calc(0.5622254758 * max(100vw, 1200px));
  }
}

.c-content-wrapper.-lip {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/lip/bg_lip.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-lip .c-content-wrapper__inner {
    margin-top: 100vw;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-lip .c-content-wrapper__inner {
    margin-top: calc(0.5622254758 * max(100vw, 1200px));
  }
}

.c-lower-hero {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-lower-hero {
    min-width: 1200px;
    max-height: 100vh;
  }
}

@media print, screen and (width >=768px) {
  .c-lower-hero.-make-look picture {
    height: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-lower-hero.-lip img {
    max-height: 100vh;
  }
}

.c-lower-hero picture {
  display: block;
  width: 100%;
  height: auto;
}

@media print, screen and (width >=768px) {
  .c-lower-hero picture {
    max-height: 100vh;
  }
}

.c-lower-hero img {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
  object-fit: cover;
  -webkit-user-drag: none;
  object-position: center bottom;
}

.c-lower-title {
  position: relative;
  padding: 64px 0;
}

@media print, screen and (width >=768px) {
  .c-lower-title {
    width: 840px;
    margin: 0 auto;
    padding: 130px 0;
  }
}

.c-lower-title__main {
  font-size: 22px;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-lower-title__main {
    font-size: 35px;
  }
}

.c-lower-title__lead {
  margin: 32px auto 0;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.92;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-lower-title__lead {
    margin-top: 54px;
    font-size: 18px;
    line-height: 2.55;
  }
}

.c-lower-title.-lip {
  color: var(--color-00-white);
}

.c-fixed-background {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

@media print, screen and (width >=768px) {
  .c-fixed-background {
    min-width: 1200px;
    padding: 0;
  }
}

.c-fixed-background__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media print, screen and (width <=767px) {
  .c-fixed-background__background {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/fixed_background_sp.webp");
    background-position: top center;
  }
}

@media print, screen and (width >=768px) {
  .c-fixed-background__background {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/fixed_background_pc.webp");
  }
}

.c-fixed-background__content {
  position: relative;
  z-index: 2;
}

@media print, screen and (width >=768px) {
  .c-fixed-background__content {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-top-contents {
  margin-top: 30px;
  background-color: var(--color-00-white);
  border-right: 1px solid var(--color-00-black);
  border-left: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-top-contents {
    margin-top: 70px;
  }
}

.c-top-contents__section-header {
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  border-top: 1px solid var(--color-00-black);
}

.c-top-contents__section-body {
  --shadow-color: #ccc;

  display: grid;
  padding: 30px 20px;
  border-top: 1px solid var(--color-00-black);
  grid-template-columns: 1fr;
  gap: 40px;
  grid-template-areas: "image" "content";
}

.c-top-contents__section-body.-section1 {
  --shadow-color: #fbf4fc;
}

.c-top-contents__section-body.-section2 {
  --shadow-color: #edfdf6;
}

.c-top-contents__section-body.-section3 {
  --shadow-color: #f9f4df;
}

.c-top-contents__section-body.-section4 {
  --shadow-color: #eef8fc;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-body {
    padding: 50px 40px;
    gap: 40px;
    align-items: center;
  }

  .c-top-contents__section-body.-section1 {
    grid-template-columns: 614px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section2 {
    grid-template-columns: 1fr 614px;
    grid-template-areas: "content image";
  }

  .c-top-contents__section-body.-section2 .c-top-contents__section-content::before {
    right: auto;
    left: 0;
  }

  .c-top-contents__section-body.-section3 {
    grid-template-columns: 614px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section4 {
    grid-template-columns: 1fr 614px;
    grid-template-areas: "content image";
  }

  .c-top-contents__section-body.-section4 .c-top-contents__section-content::before {
    right: auto;
    left: 0;
  }
}

@media print, screen and (width >=768px) and (width >=768px) {
  .c-top-contents__section-body.-section4 .c-top-contents__section-title {
    z-index: 2;
    margin-right: -1em;
    letter-spacing: -0.03em;
  }
}

.c-top-contents__section-image {
  grid-area: image;
}

.c-top-contents__section-image.-clip {
  position: relative;
  margin-right: 20px;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-image.-clip {
    margin-right: 0;
  }
}

.c-top-contents__section-image.-clip img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.c-top-contents__section-image.-clip::before {
  position: absolute;
  top: -8px;
  left: 8px;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--shadow-color);
  content: "";
  clip-path: url("#top-mask2");
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-image.-clip::before {
    top: -16px;
    left: 24px;
  }
}

.c-top-contents__section-image-container {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip-path: url("#top-mask2");
}

.c-top-contents__section-content {
  position: relative;
  grid-area: content;
}

.c-top-contents__section-content::before {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 95px;
  height: 100px;
  background-color: var(--shadow-color);
  content: "";
  clip-path: url("#top-mask3");
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-content::before {
    top: -48px;
    right: 0;
    left: auto;
    width: 190px;
    height: 200px;
  }
}

.c-top-contents__section-title {
  position: relative;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-title {
    font-size: 32px;
  }
}

.c-top-contents__section-text {
  position: relative;
  margin-top: 16px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-text {
    font-size: 18px;
  }
}

.c-top-contents__section-button {
  margin: 24px 0 0 auto;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-button {
    margin-top: 32px;
  }
}

.c-top-index {
  max-width: 420px;
  margin-top: 60px;
  margin-inline: auto;
}

@media print, screen and (width >=768px) {
  .c-top-index {
    margin-top: 100px;
  }
}

.c-top-index__list {
  display: grid;
  margin-top: 24px;
  padding: 10px 20px 32px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  grid-template-columns: 1fr;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-top-index__list {
    margin-top: 32px;
    padding: 16px 40px 40px;
  }
}

.c-top-index__item {
  border-bottom: 1px solid var(--color-00-black);
}

.c-top-index__link {
  display: grid;
  padding: 24px 0 4px;
  color: var(--color-00-text);
  text-decoration: none;
  grid-template-columns: 1fr 20px;
}

@media print, screen and (width <=767px) {
  .c-top-index__link {
    align-items: center;
    gap: 8px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-index__link {
    padding: 24px 0 4px;
    gap: 20px;
  }
}

@media (hover: hover) {
  .c-top-index__link {
    transition: opacity 300ms;
  }

  .c-top-index__link:hover {
    opacity: 0.7;
  }
}

.c-top-index__link-number {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.c-top-index__link-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-top-index__link-icon.-bottom {
  transform: rotate(90deg);
}

.c-top-button__link {
  display: flex;
  width: 100%;
  max-width: 260px;
  height: 50px;
  margin: 0 auto;
  gap: 10px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 40%), #e6f9ff);
  border-radius: 100px;
  color: var(--color-00-text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 16px rgb(0 0 0 / 16%));
}

.c-top-button__link span {
  margin-top: -4px;
}

.c-top-button__link::after {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media (hover: hover) {
  .c-top-button__link {
    transition: opacity 300ms;
  }

  .c-top-button__link:hover {
    opacity: 0.7;
  }
}

:root {
  --news-text-color: var(--color-00-text);
  --news-border-color: var(--color-00-text);
  --news-background-color: #fff7fb;
  --news-tab-border-color: var(--color-00-text);
}

.c-news.-skindiagnosis {
  --news-text-color: var(--color-00-black);
  --news-border-color: var(--color-00-black);
  --news-tab-border-color: var(--color-00-black);
  --news-background-color: var(--color-00-white);
}

.c-news.-skindiagnosis .c-news__inner {
  padding: 0;
}

.c-news.-skindiagnosis .c-news__tabs-container {
  border-top: 1px solid var(--news-tab-border-color);
  border-bottom: none;
}

@media print, screen and (width >=768px) {
  .c-news {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-news__header {
  padding: 40px 0;
}

.c-news__header-title {
  color: var(--color-01-pink);
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

@media print, screen and (width >=768px) {
  .c-news__header-title {
    font-size: 65px;
  }
}

.c-news__inner {
  background-color: var(--news-background-color);
}

@media print, screen and (width >=768px) {
  .c-news__inner {
    width: 1100px;
    margin: 0 auto;
    padding: 24px;
  }
}

.c-news__tabs-container {
  border-bottom: 1px solid var(--news-tab-border-color);

  /*
  町田を非表示の場合のみコメントアウトを解除してください。
  　*/

  /*
  &.-skindiagnosis {
    @media print, screen and (min-width:768px) {
      padding-inline: 200px;
    }

    .c-news__tab[data-index='6'] {
      display: none;
    }
  }
  */
}

@media print, screen and (width <=767px) {
  .c-news__tabs-container {
    margin-right: 10px;
    margin-left: 10px;
    padding: 8px 0;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs-container {
    padding: 8px 24px 32px;
  }

  .c-news__tabs-container.-skindiagnosis {
    padding: 32px 24px;
  }
}

@media print, screen and (width <=767px) {
  .c-news__tabs {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px;
    align-items: stretch;
    width: fit-content;
    margin-inline: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

.c-news__tab {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 45px;
  padding: 0 16px;
  background-color: transparent;
  border: 1px solid var(--news-tab-border-color);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width <=767px) {
  .c-news__tab:nth-child(1), .c-news__tab:nth-child(6) {
    grid-column: span 2;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tab {
    height: 40px;
    flex: 0 0 auto;
  }
}

.c-news__tab::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  content: "";
}

@media (hover: hover) {
  .c-news__tab:hover {
    background-color: #ee8b78;
  }

  .c-news__tab:hover span {
    color: var(--color-01-pink);
  }

  .c-news__tabs-container.-skindiagnosis .c-news__tab:hover {
    background-color: var(--color-00-black);
  }

  .c-news__tabs-container.-skindiagnosis .c-news__tab:hover span {
    color: var(--color-00-white);
  }
}

.c-news__tab.-active {
  background-color: #ee8b78;
}

.c-news__tab.-active span {
  color: var(--color-01-pink);
}

.c-news__tabs-container.-skindiagnosis .c-news__tab.-active {
  background-color: var(--color-00-black);
}

.c-news__tabs-container.-skindiagnosis .c-news__tab.-active span {
  color: var(--color-00-white);
}

.c-news__tab span {
  display: block;
  color: var(--news-text-color);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media print, screen and (width >=768px) {
  .c-news__tab span {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.04em;
  }
}

.c-news__content {
  display: none;
}

.c-news__content.-active {
  display: block;
}

.c-news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-family: var(--font-noto-sans);
}

@media print, screen and (width <=767px) {
  .c-news-list {
    border-bottom: 1px solid var(--news-border-color);
  }

  .c-news-list.-small {
    margin-right: 10px;
    margin-left: 10px;
  }

  .c-news-list:last-child {
    border-bottom: none;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-news-list:has(.c-news-list__item:nth-child(even):last-child) .c-news-list__item:nth-last-child(2) {
    border-bottom: none;
  }
}

.c-news-list__item {
  padding: 20px 15px;
  border-bottom: 1px solid var(--news-border-color);
  color: var(--color-00-text);
}

@media print, screen and (width <=767px) {
  .c-news-list__item:last-child {
    border-bottom: none;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list__item {
    position: relative;
    padding: 60px 30px;
  }

  .c-news-list__item:nth-child(odd) {
    border-right: 1px solid var(--news-border-color);
  }

  .c-news-list__item:nth-child(odd):not(:nth-child(1))::after {
    position: absolute;
    top: -20px;
    right: -20px;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--news-background-color);
    content: "";
  }

  .c-news-list__item:last-child {
    border-bottom: none;
  }
}

.c-news-list__head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-news-list__head {
    gap: 24px;
    grid-template-columns: 226px 1fr;
  }
}

.c-news-list__image {
  border: 1px solid var(--color-80-gray);
  aspect-ratio: 1/1;
}

.c-news-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-list__area {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__area {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.c-news-list__date {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__date {
    font-size: 14px;
  }
}

.c-news-list__title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news-list__title {
    font-size: 17px;
  }
}

.c-news-list__body {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__body {
    font-size: 14px;
  }
}

.c-news-list__body > a {
  color: inherit;
}

.c-news-list__body > span {
  font-size: 80%;
}

.c-news-list__link1, .c-news-list__link2 {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__link1, .c-news-list__link2 {
    font-size: 14px;
  }
}

.c-news-list__link1 a, .c-news-list__link2 a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list__link1 a:hover, .c-news-list__link2 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media print, screen and (width <=767px) {
  .c-news-list__category-title.c-item-category-title {
    margin: 32px auto 24px;
    font-size: 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list__category-title.c-item-category-title {
    margin: 72px auto 32px;
    font-size: 20px;
  }
}

.c-news-list__category-title.c-item-category-title:first-of-type {
  margin-top: 0;
}

.c-news-list-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--news-border-color);
}

.c-news-list-large__item {
  display: grid;
  background-color: var(--color-00-white);
  color: var(--news-text-color);
  border-top: 1px solid var(--news-border-color);
  font-family: var(--font-noto-sans);
}

@media print, screen and (width <=767px) {
  .c-news-list-large__item {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content" "body";
    gap: 20px;
    padding: 40px 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list-large__item {
    grid-template-columns: 405px 1fr;
    grid-template-areas: "image content" "image body";
    align-items: center;
    gap: 32px 64px;
    padding: 60px;
  }

  .c-news-list-large__item:nth-child(even) {
    grid-template-columns: 1fr 405px;
    grid-template-areas: "content image" "body image";
  }
}

.c-news-list-large__image {
  width: 62.9333333333vw;
  margin: 0 auto;
  border: 1px solid var(--color-80-gray);
  grid-area: image;
  aspect-ratio: 1/1;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__image {
    align-self: start;
    width: 100%;
  }
}

.c-news-list-large__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-list-large__content {
  grid-area: content;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__content {
    align-self: end;
  }
}

.c-news-list-large__body {
  grid-area: body;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__body {
    font-size: 14px;
    align-self: start;
  }
}

.c-news-list-large__body a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list-large__body a:hover {
  opacity: 0.7;
}

.c-news-list-large__title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__title {
    margin-top: 0;
    font-size: 18px;
  }
}

.c-news-list-large__area {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__area {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-list-large__date {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__date {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-list-large__link1 {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__link1 {
    font-size: 14px;
  }
}

.c-news-list-large__link1 a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list-large__link1 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-button__link {
  display: flex;
  width: 100%;
  padding-left: 1.5em;
  border: 1px solid var(--color-00-text);
  color: var(--color-00-text);
  font-family: var(--font-en);
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media print, screen and (width <=767px) {
  .c-button__link {
    width: 55.4666666667vw;
    height: 12.2666666667vw;
    font-size: 4.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-button__link {
    width: 364px;
    height: 80px;
    font-size: 20px;
  }
}

.c-button__link::after {
  display: block;
  width: 32px;
  height: auto;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  aspect-ratio: 44/16;
}

@media print, screen and (width >=768px) {
  .c-button__link::after {
    width: 44px;
  }
}

.c-button__link.-look {
  background-color: #ffd4e5;
}

@media print, screen and (width >=768px) {
  .c-button__link.-look {
    background-color: #ffcee2;
  }
}

.c-button__link.-new {
  background-color: #ffd1cf;
}

@media print, screen and (width >=768px) {
  .c-button__link.-new {
    background-color: #ffd3d4;
  }
}

.c-button__link.-lip {
  background-color: #ffd5c2;
}

@media print, screen and (width >=768px) {
  .c-button__link.-lip {
    background-color: #ffd2be;
  }
}

.c-button__link.-tips {
  background-color: #fff7fb;
}

@media (hover: hover) {
  .c-button__link {
    transition: background-color 200ms ease, color 200ms ease;
  }

  .c-button__link::after {
    transition: filter 200ms ease;
  }

  .c-button__link:hover {
    background-color: var(--color-00-text);
    color: var(--color-00-sub);
  }

  .c-button__link:hover::after {
    filter: brightness(0) invert(1);
  }
}

.c-item-detail-list__list.-lip .c-item-button__link {
  background-color: var(--color-00-white);
  color: var(--color-00-text);
}

.c-item-button__link {
  display: flex;
  width: 100%;
  height: 32px;
  padding-bottom: 1px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.03em;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

.c-item-button__link.-reserve {
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  color: var(--color-00-text);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-item-button__link.-reserve:hover {
    opacity: 0.7;
  }
}

.c-item-button__link.-netshop {
  background-color: var(--color-00-text);
  color: var(--color-00-white);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-item-button__link.-netshop:hover {
    opacity: 0.7;
  }
}

.c-item-button__link.-normal {
  background-color: var(--color-00-white);
  color: var(--color-00-text);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-item-button__link.-normal:hover {
    opacity: 0.7;
  }
}

.c-top-message {
  position: relative;
  z-index: 10;
  padding: 72px 40px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/bg_top_message.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-top-message {
    min-width: 1200px;
    padding: 160px 40px;
  }
}

.c-top-message__inner {
  position: relative;
  z-index: 1;
}

@media print, screen and (width >=768px) {
  .c-top-message__inner {
    display: grid;
    grid-template-columns: auto auto;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }
}

.c-top-message__lead {
  font-weight: 700;
  line-height: 1.8;
}

@media print, screen and (width <=767px) {
  .c-top-message__lead {
    font-size: 8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-message__lead {
    font-size: 40px;
  }
}

.c-top-message__text {
  font-weight: 700;
}

@media print, screen and (width <=767px) {
  .c-top-message__text {
    margin: 10.6666666667vw auto 0;
    font-size: 3.4666666667vw;
    line-height: 3;
  }
}

@media print, screen and (width >=768px) {
  .c-top-message__text {
    margin: 0;
    font-size: 18px;
    line-height: 2.5;
  }
}

.c-top-look {
  position: relative;
}

@media print, screen and (width <=767px) {
  .c-top-look {
    padding: 101.3333333333vw 5.3333333333vw 42.6666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look {
    width: 1100px;
    margin: 0 auto;
    padding: 76px 0 86px;
  }
}

.c-top-look__inner {
  z-index: 1;
}

.c-top-look__background {
  position: absolute;
  z-index: 0;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-top-look__background.-photo1 {
  z-index: 1;
  height: auto;
  aspect-ratio: 912/1368;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_photo1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-photo1 {
    top: 9.3333333333vw;
    left: 37.3333333333vw;
    width: 57.0666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-photo1 {
    top: 76px;
    right: 0;
    width: 456px;
  }
}

.c-top-look__background.-photo2 {
  z-index: 1;
  height: auto;
  aspect-ratio: 908/662;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_photo2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-photo2 {
    bottom: 0;
    left: 8vw;
    width: 50.6666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-photo2 {
    top: 595px;
    left: 0;
    width: 454px;
  }
}

.c-top-look__background.-image1 {
  height: auto;
  aspect-ratio: 538/206;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_image1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-image1 {
    top: 0;
    left: 77.3333333333vw;
    width: 33.6vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-image1 {
    top: 0;
    right: -130px;
    width: 269px;
  }
}

.c-top-look__background.-image2 {
  height: auto;
  aspect-ratio: 208/476;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_image2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-image2 {
    top: 52.2666666667vw;
    left: -2.6666666667vw;
    z-index: 2;
    width: 17.6vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-image2 {
    top: 177px;
    left: -180px;
    width: 104px;
  }
}

.c-top-look__background.-image3 {
  height: auto;
  aspect-ratio: 266/186;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_image3.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-image3 {
    bottom: 14.6666666667vw;
    left: -2.6666666667vw;
    width: 14.4vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-image3 {
    top: 636px;
    left: -133px;
    width: 133px;
  }
}

.c-top-look__background.-image4 {
  height: auto;
  aspect-ratio: 410/340;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_image4.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-image4 {
    top: 34.6666666667vw;
    left: 5.3333333333vw;
    width: 34.6666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-image4 {
    top: 669px;
    left: 503px;
    width: 205px;
  }
}

.c-top-look__background.-image5 {
  height: auto;
  aspect-ratio: 722/282;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/look_image5.webp");
}

@media print, screen and (width <=767px) {
  .c-top-look__background.-image5 {
    bottom: 28.2666666667vw;
    left: 66.6666666667vw;
    width: 55.2vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__background.-image5 {
    right: -133px;
    bottom: 0;
    width: 361px;
  }
}

.c-top-look__content {
  position: relative;
  z-index: 10;
}

.c-top-look__copy {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-look__copy {
    margin-top: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__copy {
    margin-top: 64px;
    font-size: 32px;
  }
}

.c-top-look__description {
  font-weight: 700;
  letter-spacing: 0;
}

@media print, screen and (width <=767px) {
  .c-top-look__description {
    margin-top: 4.2666666667vw;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__description {
    margin-top: 32px;
    font-size: 18px;
  }
}

.c-top-look__button {
  width: fit-content;
}

@media print, screen and (width <=767px) {
  .c-top-look__button {
    margin-top: 10.6666666667vw;
    margin-right: 0;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-top-look__button {
    margin-top: 336px;
    margin-right: 0;
    margin-left: auto;
  }
}

.c-top-new {
  position: relative;
}

@media print, screen and (width <=767px) {
  .c-top-new {
    padding: 77.3333333333vw 5.3333333333vw 55.4666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new {
    width: 1100px;
    margin: 0 auto;
    padding: 200px 0 410px;
  }
}

.c-top-new__inner {
  z-index: 1;
}

.c-top-new__background {
  position: absolute;
  z-index: 0;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-top-new__background.-photo1 {
  z-index: 2;
  height: auto;
  aspect-ratio: 1260/944;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_photo1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-photo1 {
    top: 13.3333333333vw;
    right: 5.3333333333vw;
    width: 77.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-photo1 {
    top: 110px;
    left: -72px;
    width: 630px;
  }
}

.c-top-new__background.-image1 {
  height: auto;
  aspect-ratio: 408/486;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_image1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-image1 {
    top: 8vw;
    left: 0;
    width: 25.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-image1 {
    top: 0;
    left: -133px;
    width: 204px;
  }
}

.c-top-new__background.-image2 {
  height: auto;
  aspect-ratio: 436/298;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_image2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-image2 {
    bottom: 10.1333333333vw;
    left: 0;
    width: 32vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-image2 {
    bottom: 300px;
    left: -116px;
    width: 218px;
  }
}

.c-top-new__background.-image3 {
  height: auto;
  aspect-ratio: 996/466;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_image3.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-image3 {
    top: 66.6666666667vw;
    left: 2.6666666667vw;
    width: 22.4vw;
    background-position: center bottom;
    background-size: cover;
    aspect-ratio: 84/58;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-image3 {
    bottom: 116px;
    left: 64px;
    width: 498px;
  }
}

.c-top-new__background.-image4 {
  height: auto;
  aspect-ratio: 402/258;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_image4.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-image4 {
    top: 77.8666666667vw;
    left: 11.7333333333vw;
    width: 20.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-image4 {
    bottom: 283px;
    left: 527px;
    width: 201px;
  }
}

.c-top-new__background.-image5 {
  height: auto;
  aspect-ratio: 644/904;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/new_image5.webp");
}

@media print, screen and (width <=767px) {
  .c-top-new__background.-image5 {
    right: 0;
    bottom: 0;
    width: 45.0666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__background.-image5 {
    right: -133px;
    bottom: 0;
    width: 322px;
  }
}

.c-top-new__content {
  position: relative;
  z-index: 10;
}

.c-top-new__title {
  width: fit-content;
  margin: 0 0 0 auto;
  text-align: right;
}

.c-top-new__copy {
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-new__copy {
    margin-top: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__copy {
    margin-top: 64px;
    font-size: 32px;
  }
}

.c-top-new__description {
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  letter-spacing: 0;
}

@media print, screen and (width <=767px) {
  .c-top-new__description {
    margin-top: 4.2666666667vw;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__description {
    margin-top: 32px;
    font-size: 18px;
  }
}

.c-top-new__button {
  width: fit-content;
}

@media print, screen and (width <=767px) {
  .c-top-new__button {
    margin-top: 10.6666666667vw;
    margin-right: auto;
    margin-left: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-top-new__button {
    margin-top: 150px;
    margin-right: auto;
    margin-left: 0;
  }
}

.c-top-lip {
  position: relative;
}

@media print, screen and (width <=767px) {
  .c-top-lip {
    padding: 88vw 5.3333333333vw 90.6666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip {
    width: 1100px;
    margin: 0 auto;
    padding: 244px 0 553px;
  }
}

.c-top-lip__inner {
  z-index: 1;
}

.c-top-lip__background {
  position: absolute;
  z-index: 0;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-top-lip__background.-photo1 {
  z-index: 2;
  height: auto;
  aspect-ratio: 1260/944;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_photo1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-photo1 {
    top: 17.0666666667vw;
    right: 0;
    width: 77.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-photo1 {
    top: 196px;
    right: -72px;
    width: 630px;
  }
}

.c-top-lip__background.-photo2 {
  z-index: 2;
  height: auto;
  aspect-ratio: 1292/1034;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_photo2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-photo2 {
    bottom: 21.3333333333vw;
    left: 5.3333333333vw;
    width: 77.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-photo2 {
    bottom: 136px;
    left: -133px;
    width: 646px;
  }
}

.c-top-lip__background.-image1 {
  z-index: 2;
  height: auto;
  aspect-ratio: 460/160;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_image1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-image1 {
    top: 86.1333333333vw;
    right: 14.1333333333vw;
    width: 21.3333333333vw;
    aspect-ratio: 80/48;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-image1 {
    top: 100px;
    left: -133px;
    width: 230px;
  }
}

.c-top-lip__background.-image2 {
  height: auto;
  aspect-ratio: 340/526;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_image2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-image2 {
    top: 94.6666666667vw;
    right: 10.6666666667vw;
    width: 9.0666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-image2 {
    top: 0;
    left: 395px;
    width: 170px;
  }
}

.c-top-lip__background.-image3 {
  height: auto;
  aspect-ratio: 538/234;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_image3.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-image3 {
    top: 0;
    right: 4.2666666667vw;
    width: 28.2666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-image3 {
    top: 126px;
    right: -133px;
    width: 269px;
  }
}

.c-top-lip__background.-image4 {
  height: auto;
  aspect-ratio: 578/452;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_image4.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-image4 {
    right: 0;
    bottom: 77.3333333333vw;
    width: 42.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-image4 {
    bottom: 206px;
    left: 585px;
    width: 289px;
  }
}

.c-top-lip__background.-image5 {
  height: auto;
  aspect-ratio: 594/742;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/top/lip_image5.webp");
}

@media print, screen and (width <=767px) {
  .c-top-lip__background.-image5 {
    top: 40.8vw;
    left: 0;
    width: 31.4666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__background.-image5 {
    right: -220px;
    bottom: 400px;
    width: 297px;
  }
}

.c-top-lip__content {
  position: relative;
  z-index: 10;
}

.c-top-lip__copy {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-lip__copy {
    margin-top: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__copy {
    margin-top: 64px;
    margin-left: 44px;
    font-size: 32px;
  }
}

.c-top-lip__description {
  font-weight: 700;
  letter-spacing: 0;
}

@media print, screen and (width <=767px) {
  .c-top-lip__description {
    margin-top: 4.2666666667vw;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__description {
    margin-top: 64px;
    margin-left: 44px;
    font-size: 18px;
  }
}

.c-top-lip__button {
  width: fit-content;
}

@media print, screen and (width <=767px) {
  .c-top-lip__button {
    margin-top: 12vw;
    margin-right: 0;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-top-lip__button {
    margin-top: 118px;
    margin-left: auto;
  }
}

.c-top-tips {
  position: relative;
  padding: 64px 40px;
  background-color: #fff7fb;
  border-top: 1px solid var(--color-00-text);
  border-bottom: 1px solid var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-top-tips {
    padding: 40px;
  }
}

.c-top-tips__title {
  position: absolute;
  padding: 0.25em 0;
  background-color: #fff7fb;
  border: 1px solid var(--color-00-text);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

@media print, screen and (width <=767px) {
  .c-top-tips__title {
    top: 0;
    left: 20px;
    width: 150px;
    font-size: 36px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-tips__title {
    top: 0;
    left: calc(50% - 600px);
    width: 228px;
    height: auto;
    font-size: 57px;
  }
}

.c-top-tips__title span {
  display: block;
  transform: translateY(-0.1em);
}

@media print, screen and (width >=768px) {
  .c-top-tips__inner {
    display: grid;
    width: 1050px;
    margin: 0 auto;
    grid-template-columns: 1fr 448px;
    grid-template-areas: "content image";
    align-items: center;
    justify-content: space-between;
  }
}

@media print, screen and (width >=768px) {
  .c-top-tips__image {
    grid-area: image;
  }
}

@media print, screen and (width >=768px) {
  .c-top-tips__content {
    grid-area: content;
  }
}

.c-top-tips__copy {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-tips__copy {
    margin-top: 24px;
    margin-right: -1em;
    font-size: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-tips__copy {
    margin-top: 0;
    font-size: 32px;
    letter-spacing: 0;
  }
}

.c-top-tips__description {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-tips__description {
    margin-top: 16px;
    font-size: 13px;
    line-height: 2;
  }
}

@media print, screen and (width >=768px) {
  .c-top-tips__description {
    margin-top: 32px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
  }
}

.c-top-tips__button {
  width: fit-content;
  margin: 48px auto 0;
}

@media print, screen and (width >=768px) {
  .c-top-tips__button {
    margin-left: 0;
  }
}

.c-top-service {
  padding: 40px 20px;
}

@media print, screen and (width >=768px) {
  .c-top-service {
    padding: 80px 40px;
  }
}

.c-top-service__inner {
  position: relative;
  margin: 0 auto;
  padding: 60px 20px 40px;
  background-color: #fff7fb;
}

@media print, screen and (width >=768px) {
  .c-top-service__inner {
    display: grid;
    width: 1100px;
    padding: 60px 40px;
    grid-template-columns: 506px 1fr;
    gap: 40px;
    align-items: center;
    justify-content: start;
  }
}

.c-top-service__title {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}

@media print, screen and (width >=768px) {
  .c-top-service__title {
    top: 30px;
    right: 40px;
    font-size: 25px;
  }
}

.c-top-service__title::before {
  display: block;
  width: 10px;
  height: 1px;
  content: "";
  border-top: 1px solid var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-top-service__title::before {
    width: 15px;
  }
}

.c-top-service__copy {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-service__copy {
    margin-top: 24px;
    margin-right: -1em;
    font-size: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-service__copy {
    margin-top: 0;
    font-size: 32px;
    letter-spacing: 0;
  }
}

.c-top-service__description {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media print, screen and (width <=767px) {
  .c-top-service__description {
    margin-top: 16px;
    font-size: 13px;
    line-height: 2;
  }
}

@media print, screen and (width >=768px) {
  .c-top-service__description {
    margin-top: 32px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
  }
}

.c-top-service__button {
  width: fit-content;
  margin: 24px auto 0;
}

@media print, screen and (width >=768px) {
  .c-top-service__button {
    margin: 32px auto 0 0;
  }
}

.c-local-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -1px;
  padding: 40px 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/bg_footer.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-local-footer {
    min-width: 1200px;
    padding: 100px 0;
  }
}

.c-local-footer a {
  opacity: 1;
  color: var(--color-00-white);
  text-decoration: none;
}

@media (hover: hover) {
  .c-local-footer a {
    transition: opacity 300ms;
  }

  .c-local-footer a:hover {
    opacity: 0.7;
  }
}

.c-local-footer__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-local-footer__inner {
    max-width: 1100px;
  }
}

.c-local-footer__title {
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
}

.c-local-footer__title-link {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.c-local-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top: 60px;
  }
}

.c-local-footer__item-link {
  display: grid;
  color: var(--color-00-text);
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: start;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-link {
    grid-template-columns: 184px 1fr;
    gap: 20px;
  }
}

@media (hover: hover) {
  .c-local-footer__item-link {
    transition: opacity 300ms;
  }

  .c-local-footer__item-link:hover {
    opacity: 0.7;
  }

  .c-local-footer__item-link:hover img {
    transform: scale(1.05);
  }
}

.c-local-footer__item-image {
  overflow: hidden;
}

.c-local-footer__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.c-local-footer__item-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  justify-content: start;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text {
    gap: 10px;
  }
}

.c-local-footer__item-text-en {
  width: fit-content;
  padding-bottom: 2px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text-en {
    font-size: 16px;
  }
}

.c-local-footer__item-text-ja {
  margin-right: -1em;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.03em;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text-ja {
    font-size: 20px;
  }
}

.c-local-footer__item-text-sub {
  font-size: 10px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text-sub {
    font-size: 12px;
  }
}

.c-local-footer__jam {
  margin-top: 40px;
  border-top: 1px solid var(--color-00-white);
  font-family: var(--font-noto-sans);
}

@media print, screen and (width >=768px) {
  .c-local-footer__jam {
    margin-top: 60px;
  }
}

.c-local-footer__jam-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  grid-template-areas: "image title" "text text";
  max-width: 750px;
  margin-inline: auto;
  padding-block: 20px 23px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__jam-inner {
    grid-template-columns: 205px 1fr;
    padding-block: 30px 36px;
    align-items: center;
    gap: 11px 45px;
    grid-template-areas: "image title" "image text";
  }
}

.c-local-footer__jam-link {
  display: block;
  overflow: hidden;
}

.c-local-footer__jam-link img {
  transition: transform 200ms;
}

.c-local-footer__jam-link:hover img {
  transform: scale(1.05);
}

.c-local-footer__jam-image {
  grid-area: image;
  overflow: hidden;
}

.c-local-footer__jam-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  grid-area: title;
}

@media print, screen and (width >=768px) {
  .c-local-footer__jam-title {
    align-self: self-end;
    font-size: 20px;
  }
}

.c-local-footer__jam-text {
  grid-area: text;
  font-size: 13px;
  line-height: 1.8em;
  letter-spacing: 0.01em;
}

@media print, screen and (width >=768px) {
  .c-local-footer__jam-text {
    font-size: 14px;
    align-self: self-start;
    line-height: 2em;
  }
}

.c-local-footer__banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media print, screen and (width <=767px) {
  .c-local-footer__banners {
    max-width: 480px;
    margin-inline: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners {
    margin-top: 80px;
    gap: 50px;
  }
}

.c-item-scroll-list {
  --background-color: var(--color-00-white);

  position: relative;
  z-index: 10;
  padding: 30px 0 150px;
  background-color: var(--background-color);
  color: var(--color-00-text);
}

.c-item-scroll-list.-transparent {
  --background-color: transparent;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list {
    padding: 40px 0 120px;
  }
}

.c-item-scroll-list .splide__arrow {
  top: 54px;
  width: 32px;
  height: 32px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1/1;
  transform: none;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow {
    top: 41px;
    width: 58px;
    height: 58px;
  }
}

.c-item-scroll-list .splide__arrow svg {
  display: none;
}

.c-item-scroll-list .splide__arrow.splide__arrow--next {
  right: -16px;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow.splide__arrow--next {
    right: -29px;
  }
}

.c-item-scroll-list .splide__arrow.splide__arrow--prev {
  left: -16px;
  transform: scaleX(-1);
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow.splide__arrow--prev {
    left: -29px;
  }
}

.c-item-scroll-list .splide__arrow[disabled] {
  display: none;
  cursor: not-allowed;
}

.c-item-scroll-list .splide__pagination {
  bottom: -40px;
  display: grid;
  height: 10px;
  margin: 0;
  padding: 0;
  background-color: #f5dee6;
  border-radius: 10px;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

@media print, screen and (width <=767px) {
  .c-item-scroll-list .splide__pagination {
    margin-inline: 24px;
  }
}

.c-item-scroll-list .splide__pagination li {
  margin: 0;
  padding: 0;
}

.c-item-scroll-list .splide__pagination button {
  width: 100%;
  height: 10px;
  margin: 0;
  padding: 0;
  background-color: var(--color-00-text);
  border-radius: 10px;
  opacity: 0;
  transform: none !important;
}

.c-item-scroll-list .splide__pagination button.is-active {
  opacity: 1;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list__inner {
    width: 1058px;
    margin: 0 auto;
  }
}

.c-item-scroll-list__title {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width <=767px) {
  .c-item-scroll-list__list .splide__list:not(:has(> li:nth-child(3))) {
    justify-content: center;
  }
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list__list .splide__list:not(:has(> li:nth-child(6))) {
    justify-content: center;
  }
}

.c-item-scroll-list__item {
  position: relative;
  width: 160px;
}

.c-item-scroll-list__item-button {
  display: block;
  width: 140px;
  margin: 0 10px;
  background-color: var(--background-color);
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-scroll-list__item-button {
    transition: opacity 200ms;
  }

  .c-item-scroll-list__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-scroll-list__item-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.c-item-scroll-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-scroll-list__item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-scroll-list__item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-scroll-list__item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-scroll-list__item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-scroll-list__item-price-icon::before, .c-item-scroll-list__item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-scroll-list__item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-item-makelook-list {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

@media print, screen and (width <=767px) {
  .c-item-makelook-list {
    flex-wrap: wrap;
    overflow: hidden;
  }
}

.c-item-makelook-list__item {
  position: relative;
  width: 140px;
}

.c-item-makelook-list__item-button {
  display: block;
  width: 140px;
  margin: 0;
  background-color: var(--color-00-white);
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-makelook-list__item-button {
    transition: opacity 200ms;
  }

  .c-item-makelook-list__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-makelook-list__item-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

.c-item-makelook-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-makelook-list__item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-makelook-list__item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-makelook-list__item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-makelook-list__item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-makelook-list__item-price-icon::before, .c-item-makelook-list__item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-makelook-list__item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

:root {
  --detail-list-color: var(--color-00-text);
}

.c-item-detail-list {
  color: var(--detail-list-color);
}

.c-item-detail-list.-lip {
  --detail-list-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-lip .c-item-detail-list__list {
    grid-template-columns: repeat(3, 1fr);
    width: 820px;
    margin: 0 auto;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(7) .c-item-detail-list__item::before,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(15) .c-item-detail-list__item::before,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(23) .c-item-detail-list__item::before {
    content: "";
  }

  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(5) .c-item-detail-list__item::before,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(11) .c-item-detail-list__item::before,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(17) .c-item-detail-list__item::before {
    content: none;
  }

  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(13) .c-item-detail-list__item::after,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(15) .c-item-detail-list__item::after,
  .c-item-detail-list.-lip .c-item-detail-list__pc-item:nth-of-type(17) .c-item-detail-list__item::after {
    content: none;
  }
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-lip .c-item-detail-list__sp-item-price-icon {
    background-color: var(--color-00-white);
  }

  .c-item-detail-list.-lip .c-item-detail-list__sp-item-price-icon::before, .c-item-detail-list.-lip .c-item-detail-list__sp-item-price-icon::after {
    background-color: var(--color-00-text);
  }
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-lip .c-item-detail-list__list, .c-item-detail-list.-new .c-item-detail-list__list {
    gap: 40px;
    margin-bottom: 100px;
  }

  .c-item-detail-list.-lip .c-item-detail-list__sp-item-button::before, .c-item-detail-list.-new .c-item-detail-list__sp-item-button::before {
    position: absolute;
    bottom: -20px;
    left: -10px;
    width: calc(100% + 20px);
    height: 1px;
    content: "";
    border-top: 1px solid var(--detail-list-color);
  }

  .c-item-detail-list.-lip .c-item-detail-list__sp-item-button::after, .c-item-detail-list.-new .c-item-detail-list__sp-item-button::after {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 1px;
    height: calc(100% + 20px);
    content: "";
    border-left: 1px solid var(--detail-list-color);
  }

  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(18) .c-item-detail-list__sp-item-button::before,
  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(220) .c-item-detail-list__sp-item-button::before, .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(18) .c-item-detail-list__sp-item-button::before,
  .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(220) .c-item-detail-list__sp-item-button::before {
    content: none;
  }

  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(4) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(8) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(12) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-lip .c-item-detail-list__sp-item:nth-of-type(16) .c-item-detail-list__sp-item-button::after, .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(4) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(8) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(12) .c-item-detail-list__sp-item-button::after,
  .c-item-detail-list.-new .c-item-detail-list__sp-item:nth-of-type(16) .c-item-detail-list__sp-item-button::after {
    content: none;
  }
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-single {
    width: 140px;
    margin-inline: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-single {
    width: 370px;
  }
}

.c-item-detail-list.-single .c-item-detail-list__inner {
  width: 100%;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-single .c-item-detail-list__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-single .c-item-detail-list__list {
    grid-template-columns: 1fr;
  }
}

.c-item-detail-list.-single .c-item-detail-list__item {
  grid-template-rows: auto;
  grid-row: auto;
}

.c-item-detail-list.-single .c-item-detail-list__copy {
  display: none;
}

.c-item-detail-list.-single .c-item-detail-list__buttons:not(:has(.c-item-button)) {
  display: none;
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__inner {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-item-detail-list__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.c-item-detail-list__list {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__list {
    width: fit-content;
    margin: 40px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
    margin: -30px 0 60px;
  }

  .c-item-detail-list__list.-new > .c-item-detail-list__pc-item:nth-last-child(2) .c-item-detail-list__item::after {
    content: none;
  }
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__pc-item {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__pc-item {
    display: contents;
  }
}

.c-item-detail-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
  padding-inline: 20px;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__item {
    width: 258px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__item {
    position: relative;
    margin-top: 90px;
    gap: 0;
  }

  .c-item-detail-list__item::before {
    position: absolute;
    top: -30px;
    right: -10px;
    width: 1px;
    height: calc(100% + 50px);
    border-right: 1px solid var(--detail-list-color);
    content: "";
  }

  .c-item-detail-list__item::after {
    position: absolute;
    right: 10px;
    bottom: -40px;
    width: calc(100% - 20px);
    height: 1px;
    content: "";
    border-top: 1px solid var(--detail-list-color);
  }

  .c-item-detail-list__pc-item:nth-of-type(7) .c-item-detail-list__item::before, .c-item-detail-list__pc-item:nth-of-type(15) .c-item-detail-list__item::before, .c-item-detail-list__pc-item:nth-of-type(23) .c-item-detail-list__item::before {
    content: none;
  }
}

.c-item-detail-list__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

.c-item-detail-list__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-detail-list__image {
  position: relative;
  overflow: hidden;
  width: 186px;
  height: 186px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.c-item-detail-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-detail-list__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-detail-list__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__price {
  margin: 1em 0 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__note1, .c-item-detail-list__note2 {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-detail-list__date1, .c-item-detail-list__date2 {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__date1 + .c-item-detail-list__date2 {
  margin-top: 0;
}

.c-item-detail-list__buttons {
  display: grid;
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-detail-list__buttons:not(:has(> :nth-child(2))) {
  grid-template-columns: 1fr;
}

.c-item-detail-list__button {
  height: 38px;
}

.c-item-detail-list__shop {
  margin-top: 15px;
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-detail-list__shop-text span::after {
  content: " / ";
}

.c-item-detail-list__shop-text span:last-child::after {
  content: none;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__sp-item {
    position: relative;
    display: contents;
    width: 160px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__sp-item {
    display: none;
  }
}

.c-item-detail-list__sp-item-button {
  display: block;
  width: 140px;
  margin: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-detail-list__sp-item-button {
    transition: opacity 200ms;
  }

  .c-item-detail-list__sp-item-button:hover {
    opacity: 0.8;
  }
}

.c-item-detail-list__sp-item-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.c-item-detail-list__sp-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-detail-list__sp-item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-detail-list__sp-item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-detail-list__sp-item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-detail-list__sp-item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-detail-list__sp-item-price-icon::before, .c-item-detail-list__sp-item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-detail-list__sp-item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-item-lip-list {
  padding-bottom: 40px;
  color: var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-item-lip-list {
    padding-bottom: 80px;
  }
}

.c-item-lip-list.-lip {
  color: var(--color-00-white);
}

.c-item-lip-list.-lip .c-item-button__link {
  background-color: var(--color-00-white);
  color: var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__inner {
    width: 860px;
    margin: 0 auto;
  }
}

@media print, screen and (width <=767px) {
  .c-item-lip-list__list {
    margin: 20px 0 40px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__list {
    margin: 60px 0;
  }
}

@media print, screen and (width >=768px) {
  .c-item-lip-list .c-item-lip-list__list.is-initialized:not(.is-active) .splide__track,
  .c-item-lip-list .c-item-lip-list__list .splide__track {
    display: contents;
  }

  .c-item-lip-list .c-item-lip-list__list.is-initialized:not(.is-active) .splide__list,
  .c-item-lip-list .c-item-lip-list__list .splide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
}

@media print, screen and (width <=767px) {
  .c-item-lip-list .c-item-lip-list__list.is-initialized .splide__arrow {
    background-color: transparent;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/lip/icon-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    transition: opacity 0.3s ease;
  }

  .c-item-lip-list .c-item-lip-list__list.is-initialized .splide__arrow svg {
    visibility: hidden;
  }

  .c-item-lip-list .c-item-lip-list__list.is-initialized .splide__arrow--next {
    right: 25px;
  }

  .c-item-lip-list .c-item-lip-list__list.is-initialized .splide__arrow--prev {
    left: 25px;
    transform: translateY(-50%) scaleX(-1);
  }

  .c-item-lip-list .c-item-lip-list__list.is-initialized .splide__arrow:disabled {
    opacity: 0;
    pointer-events: none;
  }
}

.c-item-lip-list__item {
  list-style: none;
}

@media print, screen and (width <=767px) {
  .c-item-lip-list__item {
    position: relative;
    padding-inline: 60px;
  }

  .c-item-lip-list__item::before, .c-item-lip-list__item::after {
    position: absolute;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    content: "";
    border-left: 1px solid var(--color-00-white);
  }

  .c-item-lip-list__item::before {
    left: 20px;
  }

  .c-item-lip-list__item::after {
    right: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__item {
    padding-inline: 0;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    gap: 0;
  }
}

.c-item-lip-list__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

@media print, screen and (width <=767px) {
  .c-item-lip-list__copy {
    padding-top: 40px;
  }

  .c-item-lip-list__copy::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    content: "";
    border-top: 1px solid var(--color-00-white);
  }
}

.c-item-lip-list__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-lip-list__image {
  position: relative;
  overflow: hidden;
  width: 245px;
  height: 245px;
  margin: 0 auto 20px;
}

.c-item-lip-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-lip-list__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-lip-list__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-lip-list__brand {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-lip-list__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-lip-list__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-lip-list__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-lip-list__price {
  margin: 1em 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__price {
    margin: 0;
  }
}

.c-item-lip-list__note1, .c-item-lip-list__note2 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__note1, .c-item-lip-list__note2 {
    margin: 0;
  }
}

.c-item-lip-list__date1, .c-item-lip-list__date2 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-lip-list__buttons {
  display: grid;
  margin: 20px 0 10px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-lip-list__buttons:not(:has(> :nth-child(2))) {
  grid-template-columns: 1fr;
}

@media print, screen and (width >=768px) {
  .c-item-lip-list__buttons {
    margin: 15px 0 0;
  }
}

.c-item-lip-list__button {
  height: 38px;
}

.c-item-lip-list__shop {
  margin-top: 10px;
  font-family: var(--font-noto-sans);
}

@media print, screen and (width <=767px) {
  .c-item-lip-list__shop {
    padding-bottom: 40px;
  }

  .c-item-lip-list__shop::after {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    content: "";
    border-top: 1px solid var(--color-00-white);
  }
}

.c-item-lip-list__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-lip-list__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-lip-list__shop-text:last-child::after {
  content: none;
}

.c-item-lip-list__shop-text span::after {
  content: " | ";
}

.c-item-lip-list__shop-text span:last-child::after {
  content: none;
}

.c-item-nails-list {
  padding-bottom: 80px;
}

@media print, screen and (width >=768px) {
  .c-item-nails-list {
    padding-bottom: 150px;
  }
}

.c-item-nails-list__inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__inner {
    gap: 80px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__inner {
    width: 1100px;
    margin: 0 auto;
    gap: 100px;
  }
}

.c-item-nails-list__header {
  position: relative;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__header {
    width: 78.9333333333vw;
    margin: 0 auto 20px 0;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__header {
    width: 582px;
    margin: 0 auto 20px;
  }
}

.c-item-nails-list__header-image {
  width: 100%;
  aspect-ratio: 582/415;
  clip-path: url("#nails-mask");
}

.c-item-nails-list__title {
  position: absolute;
  display: flex;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__title {
    right: -40px;
    bottom: -16px;
    min-width: 197px;
    height: 42px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__title {
    right: -148px;
    bottom: 70px;
    min-width: 262px;
    height: 56px;
    font-size: 24px;
  }
}

.c-item-nails-list__body {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 64px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__body-content {
    padding-inline: 40px;
  }
}

.c-item-nails-list__list {
  display: grid;
  gap: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__list {
    grid-auto-flow: column;
    grid-auto-columns: min-content;
  }

  .c-item-nails-list__list::before, .c-item-nails-list__list::after {
    display: block;
    width: calc((100vw - 258px - 20px - 20px) / 2);
    content: "";
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__list.-new {
    align-items: start;
    grid-template-rows: auto;
  }

  .c-item-nails-list__list.-new .c-item-nails-list__item {
    align-items: start;
    height: 730px !important;
    margin-bottom: 186px;
  }

  .c-item-nails-list__list.-new .c-item-nails-list__item:nth-child(5) {
    height: auto !important;
    margin-bottom: 0;
    grid-template-rows: auto;
  }
}

.c-item-nails-list__item {
  padding-inline: 20px;
}

.c-item-nails-list__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

.c-item-nails-list__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-nails-list__image {
  position: relative;
}

.c-item-nails-list__image img {
  width: 100%;
  height: auto;
}

.c-item-nails-list__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-nails-list__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__price {
  margin: 2em 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__note1, .c-item-nails-list__note2 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-nails-list__date1, .c-item-nails-list__date2 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__buttons {
  display: grid;
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-nails-list__buttons:not(:has(> :nth-child(2))) {
  grid-template-columns: 1fr;
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__buttons {
    max-width: 240px;
    margin-inline: auto;
  }
}

.c-item-nails-list__button {
  height: 38px;
}

.c-item-nails-list__shop {
  margin-top: 15px;
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-nails-list__shop-text span::after {
  content: " / ";
}

.c-item-nails-list__shop-text span:last-child::after {
  content: none;
}

.c-item-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  overflow-y: auto;
  overflow-y: scroll;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 auto;
  padding: 0;
  background-color: rgb(0 0 0 / 0%);
  border: 0;
  color: var(--color-00-white);
  transition: opacity 200ms;
  overscroll-behavior: none;
}

.c-item-modal::backdrop {
  background-color: rgb(0 0 0 / 60%);
  backdrop-filter: blur(4px);
}

.c-item-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.c-item-modal__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  padding: 20px;
}

.c-item-modal__close {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: 60px;
  height: 50px;
  margin: -20px -20px 0 auto;
  background-color: unset;
  background-color: var(--color-00-text);
  border: none;
  align-items: center;
  justify-content: center;
}

.c-item-modal__close-icon {
  display: flex;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.c-item-modal__close-icon > span {
  display: block;
  overflow: hidden;
  width: 26px;
  height: 1px;
  background-color: var(--color-00-white);
  border-radius: 2px;
  transition: transform 100ms;
}

.c-item-modal__close-icon > span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.c-item-modal__close-icon > span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}

.c-item-modal__inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 44px;
  background-color: var(--color-01-pink);
  color: var(--color-00-text);
  font-family: var(--font-noto-sans);
}

.c-item-modal__copy {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: var(--font-main);
}

.c-item-modal__copy p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.c-item-modal__copy sup {
  font-size: 80%;
  vertical-align: super;
}

.c-item-modal__layout-content1 {
  grid-area: content1;
  width: 240px;
  margin: 0 auto;
}

.c-item-modal__layout-content2 {
  grid-area: content2;
  width: 220px;
  margin: 10px auto 0;
}

.c-item-modal__layout-content3 {
  grid-area: content3;
  width: 220px;
  margin: 12px auto 0;
}

.c-item-modal__layout-content3:not(:has(.c-item-button)) {
  margin-top: 0;
}

.c-item-modal__image {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.c-item-modal__image img {
  border: solid 1px var(--color-01-text);
}

.c-item-modal__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-modal__name {
  margin: 5px 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__color {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__size {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__price {
  margin: 0 0 8px auto;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}

.c-item-modal__note1, .c-item-modal__note2 {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-modal__date1, .c-item-modal__date2 {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-modal__date1 + .c-item-modal__date2 {
  margin-top: 5px;
}

.c-item-modal__buttons {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-modal__buttons:not(:has(> :nth-child(2))) {
  grid-template-columns: 1fr;
}

.c-item-modal__shop {
  width: 220px;
  margin: 10px auto 0;
}

.c-item-modal__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-modal__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-modal__shop-text span::after {
  content: " | ";
}

.c-item-modal__shop-text span:last-child::after {
  content: none;
}

.c-make-look-content {
  position: relative;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-make-look-content {
    min-width: 1200px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content.-look2 {
    margin-top: 100px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content.-look2 {
    margin-top: 80px;
  }
}

.c-make-look-content__header {
  position: relative;
}

.c-make-look-content__header img {
  display: block;
  width: 100%;
  height: auto;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__body {
    margin: 0 auto;
    padding: 0;
    padding-top: 30px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__body {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
    padding-top: 100px;
  }
}

.c-make-look-content__collage {
  position: relative;
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage {
    width: 1100px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 {
    height: 189.0666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 {
    height: 2036px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image1 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image1 {
    top: 0;
    left: 8vw;
    width: 50.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image1 {
    top: 0;
    left: 107px;
    width: 507px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image2 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    top: 20vw;
    left: 60.2666666667vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    top: 218px;
    left: 650px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image3 {
  aspect-ratio: 394/588;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    top: 78.9333333333vw;
    left: 5.3333333333vw;
    width: 36.5333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    top: 846px;
    left: 73px;
    width: 394px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image4 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    top: 77.3333333333vw;
    left: 48vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    top: 800px;
    left: 523px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image5 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image5 {
    top: 118.4vw;
    left: 48vw;
    width: 47.2vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image5 {
    top: 1277px;
    left: 523px;
    width: 507px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 {
    height: 195.2vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 {
    height: 2104px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image1 {
  aspect-ratio: 394/588;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image1 {
    top: 0;
    left: 22.6666666667vw;
    width: 36.5333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image1 {
    top: 0;
    left: 200px;
    width: 394px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image2 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    top: 30.6666666667vw;
    left: 62.4vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    top: 336px;
    left: 630px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image3 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    top: 58.6666666667vw;
    left: 5.3333333333vw;
    width: 46.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    top: 630px;
    left: 18px;
    width: 507px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image4 {
  aspect-ratio: 400/550;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    top: 81.6vw;
    left: 57.3333333333vw;
    width: 37.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    top: 880px;
    left: 570px;
    width: 400px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image5 {
  aspect-ratio: 400/550;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image5 {
    top: 144vw;
    left: 10.6666666667vw;
    width: 37.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image5 {
    top: 1550px;
    left: 70px;
    width: 400px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image6 {
  aspect-ratio: 453/241;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image6 {
    top: 136vw;
    left: 52.5333333333vw;
    width: 42.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image6 {
    top: 1485px;
    left: 517px;
    width: 453px;
  }
}

.c-make-look-content__image1, .c-make-look-content__image2, .c-make-look-content__image3, .c-make-look-content__image4, .c-make-look-content__image5, .c-make-look-content__image6 {
  position: absolute;
}

.c-make-look-content__copy {
  margin-top: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.05em;
  padding-inline: 20px;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__copy {
    margin-top: 60px;
  }
}

.c-make-look-header {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  padding: 100px 20px 0;
  background-color: transparent;
}

@media print, screen and (width >=768px) {
  .c-make-look-header {
    margin-top: -100px;
    padding: 100px 0 0;
  }
}

.c-make-look-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1366px;
  height: 200px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/common/content_top_pink_pc.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 200px;
  content: "";
}

.c-make-look-header__background {
  padding-top: 100px;
  background-color: rgb(252 248 253 / 97%);
}

.c-make-look-header__inner {
  max-width: 1010px;
  margin: 0 auto;
}

.c-make-look-header__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media print, screen and (width >=768px) {
  .c-make-look-header__title {
    font-size: 47px;
  }
}

.c-make-look-header__text {
  margin-top: 56px;
  margin-right: -20px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-make-look-header__text {
    width: 700px;
    margin-top: 56px;
    margin-right: 0;
    margin-left: auto;
    font-size: 18px;
  }
}

.c-make-look {
  position: relative;
  background-color: var(--color-00-white);
}

.c-make-look-uv {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr;
  grid-template-areas: "title2" "title" "image" "content";
  gap: 16px;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv {
    grid-template-columns: auto auto;
    grid-template-areas: "title2 title2" "title title" "image content";
    gap: 60px 80px;
    align-items: start;
    justify-content: center;
  }
}

.c-make-look-uv__title2 {
  grid-area: title2;
  max-width: 230px;
  margin: 40px auto 20px;
  padding: 10px 24px;
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__title2 {
    margin-top: 80px;
  }
}

.c-make-look-uv__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  grid-area: title;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__title {
    margin-top: -40px;
  }
}

.c-make-look-uv__image {
  grid-area: image;
  width: 264px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__image {
    width: 371px;
    margin: 0;
  }
}

.c-make-look-uv__content {
  grid-area: content;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__content {
    /* ready */
  }
}

.c-make-look-items {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-make-look-items {
    margin-top: 80px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    grid-template-areas: "base" "eyes" "cheeks" "lips" "nails";
    gap: 50px;
  }

  .c-make-look-items.-make-look2 {
    grid-template-areas: "base" "eyes" "cheeks" "lips" "nails";
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-items {
    width: 700px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "base base" "eyes cheeks" "lips nails";
    gap: 80px;
  }

  .c-make-look-items.-make-look2 {
    grid-template-areas: "base base" "eyes cheeks" "lips nails";
  }
}

.c-make-look-items__base {
  grid-area: base;
  overflow: hidden;
}

.c-make-look-items__eyes {
  grid-area: eyes;
}

.c-make-look-items__cheeks {
  grid-area: cheeks;
}

.c-make-look-items__lips {
  grid-area: lips;
}

.c-make-look-items__nails {
  grid-area: nails;
}

.c-make-look-items__cheeks {
  grid-area: cheeks;
}

.c-make-look-items__title {
  max-width: 230px;
  margin: 0 auto 20px;
  padding: 10px 24px;
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.c-make-credit {
  margin: 0;
  padding: 60px 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit {
    width: 1100px;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.c-make-credit__title {
  margin-left: 20px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit__title {
    font-size: 14px;
  }
}

.c-make-credit__content {
  margin-top: 8px;
  padding: 0 20px;
}

.c-make-credit__list {
  display: grid;
  gap: 5px;
}

.c-make-credit__item {
  display: flex;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2em;
}

@media print, screen and (width >=768px) {
  .c-make-credit__item {
    font-size: 14px;
  }
}

.c-make-credit__item span:first-child {
  flex: 0 0 auto;
}

.c-make-credit__item span:last-child {
  flex: 1 1 auto;
}

.c-make-credit__item a {
  color: inherit;
  text-decoration: underline;
}

.c-title {
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 0 0 0.3em;
  color: var(--color-00-text);
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  letter-spacing: 0;
}

.c-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-00-text);
  content: "";
  transition: transform 0.8s ease-out;
  transform: scaleX(0);
  transform-origin: left center;
}

.c-title.-showed::after {
  transform: scaleX(1);
}

@media print, screen and (width <=767px) {
  .c-title {
    font-size: 11.7333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-title {
    font-size: 65px;
  }
}

.c-title.-white {
  color: var(--color-00-white);
}

.c-item-category-title {
  width: 220px;
  margin: 0 auto;
  padding: 8px 0;
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  color: var(--color-00-text);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-item-category-title {
    width: 270px;
  }
}

.c-item-category-title.-white {
  border-color: var(--color-00-white);
  color: var(--color-00-white);
}

.c-lip-category-title {
  position: relative;
  color: var(--color-00-white);
}

@media print, screen and (width <=767px) {
  .c-lip-category-title {
    margin-top: 40px;
  }
}

@media print, screen and (width >=768px) {
  .c-lip-category-title {
    width: 1100px;
    margin: 120px auto 0;
  }
}

.c-item-lip-list + .c-lip-category-title {
  margin-top: 0;
}

.c-lip-category-title__picture {
  display: block;
}

@media print, screen and (width >=768px) {
  .c-lip-category-title__picture {
    width: 1015px;
  }
}

.c-lip-category-title__picture img {
  display: block;
  width: 100%;
  height: auto;
}

@media print, screen and (width <=767px) {
  .c-lip-category-title__content {
    padding: 16px 32px;
  }
}

@media print, screen and (width >=768px) {
  .c-lip-category-title__content {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    padding: 32px 0;
  }
}

.c-lip-category-title__title {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-lip-category-title__title {
    font-size: 65px;
  }
}

.c-lip-category-title__lead {
  margin-top: 16px;
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
}

@media print, screen and (width >=768px) {
  .c-lip-category-title__lead {
    font-size: 18px;
  }
}

@media print, screen and (width <=767px) {
  .c-lip-category-title.-glossy {
    text-align: right;
  }
}

.c-lip-category-title.-glossy .c-lip-category-title__title {
  filter: drop-shadow(0 0 20px rgb(224 105 22));
}

@media print, screen and (width <=767px) {
  .c-lip-category-title.-matte {
    text-align: left;
  }
}

@media print, screen and (width >=768px) {
  .c-lip-category-title.-matte .c-lip-category-title__content {
    text-align: right;
  }
}

.c-lip-category-title.-matte .c-lip-category-title__title {
  filter: drop-shadow(0 0 20px rgb(147 18 16));
}

@media print, screen and (width <=767px) {
  .c-lip-category-title.-satin {
    text-align: right;
  }
}

@media print, screen and (width >=768px) {
  .c-lip-category-title.-satin .c-lip-category-title__content {
    top: auto;
    bottom: 0;
  }
}

.c-lip-category-title.-satin .c-lip-category-title__title {
  filter: drop-shadow(0 0 20px rgb(221 21 152));
}

.c-new-items__header {
  max-width: 1010px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

@media print, screen and (width >=768px) {
  .c-new-items__header {
    padding: 100px 0 0;
  }
}

.c-new-items__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  margin-inline: -10px;
}

@media print, screen and (width >=768px) {
  .c-new-items__title {
    font-size: 35px;
  }
}

.c-new-items__lead {
  margin-top: 32px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-new-items__lead {
    width: 650px;
    margin: 48px auto;
    font-size: 18px;
  }
}

.c-new-items__text {
  margin: 40px 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-new-items__text {
    font-size: 18px;
  }
}

.c-skindiagnosis-header {
  padding: 32px 0 60px;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header {
    padding: 80px 0;
  }
}

.c-skindiagnosis-header__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  margin-inline: -10px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header__title {
    font-size: 35px;
    margin-inline: 0;
  }
}

.c-skindiagnosis-header__text {
  margin-top: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header__text {
    width: 700px;
    margin: 30px auto 0;
    font-size: 18px;
  }
}

.c-skindiagnosis-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero {
    height: 776px;
  }
}

.c-skindiagnosis-hero__image {
  --bg-duration-sp: 40000ms;
  --bg-duration-pc: 60000ms;

  height: 220px;
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 100%;
  will-change: background-position;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image {
    height: 388px;
  }
}

.c-skindiagnosis-hero__image.-image1 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/skindiagnosis/hero_background1.webp");
  animation: skin-hero-animation1-sp var(--bg-duration-sp) linear infinite;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image.-image1 {
    animation: skin-hero-animation1-pc var(--bg-duration-pc) linear infinite;
  }
}

.c-skindiagnosis-hero__image.-image2 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026autumn/assets/images/skindiagnosis/hero_background2.webp");
  animation: skin-hero-animation2-sp var(--bg-duration-sp) linear infinite;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image.-image2 {
    animation: skin-hero-animation2-pc var(--bg-duration-pc) linear infinite;
  }
}

@keyframes skin-hero-animation1-sp {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: -1769px top;
  }
}

@keyframes skin-hero-animation2-sp {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: 1769px top;
  }
}

@keyframes skin-hero-animation1-pc {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: -3120px top;
  }
}

@keyframes skin-hero-animation2-pc {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: 3120px top;
  }
}

.c-skindiagnosis {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 20px 40px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis {
    width: 1200px;
    padding: 0 50px 80px;
  }
}

.js-inview {
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.8s ease-out;
  transform: translateY(50px);
}

.js-inview.-showed {
  opacity: 1;
  transform: translateY(0);
}



