


@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-black: #000;
  --color-00-white: #fff;
  --color-00-red: #C96D72;
  --color-00-brown: #c4afa7;
  --color-60-gray: #6b7075;
  --color-70-gray: #979ca1;
  --color-80-gray: #dbdee3;
  --color-90-gray: #f2f3f5;
  --color-95-gray: #f7f7f7;
  --color-01-brown: #623b12;
  --color-01-beige: #ffe7a2;
  --color-02-beige: #f8f3c4;
  --color-01-pink: #F6E9EE;
  --color-background-01: #816527;
  --color-background-02: #6c4723;
  --color-button-01: #b79853;
  --color-button-02: #57300d;
  --gradation-01: linear-gradient(90deg, #b9a59d 0%, #a28478 100%);
  --font-main: "zen-old-mincho", serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", 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-black);
  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%;
  height: 100lvh;
  background-color: transparent;
  border: none;
  color: var(--color-00-black);
}

.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: 1010px;
    margin: 0 auto;
    padding: 0;
  }
}

.c-burger-menu__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top: 60px;
  }
}

.c-burger-menu__item.-jam {
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

.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-areas: "image jam-title" "image jam-text";
    align-items: center;
    grid-template-columns: 120px 1fr;
    gap: 4px 16px;
    height: 100%;
  }
}

.c-burger-menu__item-link {
  display: grid;
  color: var(--color-00-black);
  grid-template-columns: 130px 1fr;
  gap: 10px;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-link {
    grid-template-columns: 184px 1fr;
    gap: 20px;
  }
}

@media (hover: hover) {
  .c-burger-menu__item-link {
    transition: opacity 300ms;
  }

  .c-burger-menu__item-link:hover {
    opacity: 0.7;
  }
}

.c-burger-menu__item-image {
  clip-path: var(--clip-path-01);
}

.c-burger-menu__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-burger-menu__item-content {
  font-size: 15px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-content {
    font-size: 23px;
  }
}

.c-burger-menu__item-text-number {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text-number {
    font-size: 20px;
  }
}

.c-burger-menu__item-text-text {
  display: block;
  margin-top: 4px;
  font-weight: bold;
}

.c-burger-menu__item-text-text-sub {
  font-size: 10px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text-text-sub {
    font-size: 15px;
  }
}

.c-burger-menu__item-jam-title {
  grid-area: jam-title;
  font-family: var(--font-noto-sans);
  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;
    letter-spacing: -0.03em;
    align-self: self-end;
  }
}

.c-burger-menu__item-jam-text {
  grid-area: jam-text;
  font-family: var(--font-noto-sans);
  font-size: 13px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-jam-text {
    font-size: 13px;
    align-self: self-start;
  }
}

.c-footer {
  position: relative;
  z-index: 1;
  background-color: var(--color-00-black);
  color: var(--color-00-white);
  padding-block: 40px 20px;
}

@media print, screen and (width >=768px) {
  .c-footer {
    padding-block: 50px;
    padding-inline: 50px;
    min-width: 1200px;
  }
}

.c-footer__body {
  display: grid;
  grid-template-columns: 1fr;
  font-family: "FOT-TsukuARdGothic Std", serif;
}

@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-family: "FOT-TsukuARdGothic Std", serif;
  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%;
  height: 100lvh;
}

@media print, screen and (width >=768px) {
  .c-hero {
    min-width: 1200px;
  }
}

.c-hero h1 {
  display: block;
  width: 100%;
  height: 100%;
}

.c-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

@media print, screen and (width >=768px) {
  .c-hero img {
    object-position: center center;
  }
}

.c-lower-hero {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-lower-hero {
    min-width: 1200px;
  }
}

.c-lower-hero picture {
  display: block;
  width: 100%;
  height: auto;
}

@media print, screen and (width >=768px) {
  .c-lower-hero picture {
    height: 770px;
  }
}

.c-lower-hero img {
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media print, screen and (width >=768px) {
  .c-lower-hero img {
    object-position: center center;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.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-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/fixed_background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-fixed-background__content {
  position: relative;
  z-index: 2;
}

@media print, screen and (width >=768px) {
  .c-fixed-background__content {
    width: 1100px;
    margin: 0 auto;
  }
}

@media print, screen and (width >=768px) {
  .c-item-list2__inner {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-item-list2__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.c-item-list2__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-list2__list {
    grid-auto-flow: column;
    grid-auto-columns: min-content;
  }

  .c-item-list2__list::before, .c-item-list2__list::after {
    display: block;
    width: calc((100vw - 258px - 20px - 20px) / 2);
    content: "";
  }
}

@media print, screen and (width >=768px) {
  .c-item-list2__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
}

@media print, screen and (width <=767px) {
  .c-item-list2__list.-new {
    align-items: start;
    grid-template-rows: auto;
  }

  .c-item-list2__list.-new .c-item-list2__item {
    align-items: start;
    height: 730px !important;
    margin-bottom: 186px;
  }

  .c-item-list2__list.-new .c-item-list2__item:nth-child(5) {
    height: auto !important;
    margin-bottom: 0;
    grid-template-rows: auto;
  }
}

.c-item-list2__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
  padding-inline: 20px;
}

@media print, screen and (width <=767px) {
  .c-item-list2__item {
    width: 258px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

@media print, screen and (width >=768px) {
  .c-item-list2__item {
    gap: 0;
  }

  .c-item-list2__item:nth-child(n+5) {
    margin-top: 80px;
  }
}

.c-item-list2__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

.c-item-list2__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-list2__image {
  position: relative;
  overflow: hidden;
  width: 186px;
  height: 186px;
  margin: 0 auto 20px;
  padding: 20px;
  border: 1px solid var(--color-00-black);
  border-radius: 50%;
}

.c-item-list2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-list2__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-list2__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-list2__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-list2__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-list2__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-list2__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-list2__price {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-list2__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-list2__date1, .c-item-list2__date2 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-list2__single-button {
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
}

.c-item-list2__buttons {
  display: grid;
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-list2__button {
  height: 38px;
}

.c-item-list2__shop {
  margin-top: 15px;
  font-family: var(--font-noto-sans);
}

.c-item-list2__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-list2__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-list2__shop-text span::after {
  content: " / ";
}

.c-item-list2__shop-text span:last-child::after {
  content: none;
}

.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 {
  display: grid;
  padding: 30px 20px;
  border-top: 1px solid var(--color-00-black);
  grid-template-columns: 1fr;
  gap: 40px;
  grid-template-areas: "image" "content";
}

@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: 620px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section2 {
    grid-template-columns: 1fr 620px;
    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: 506px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section4 {
    grid-template-columns: 1fr 506px;
    grid-template-areas: "content image";
  }

  .c-top-contents__section-body.-section4 .c-top-contents__section-content::before {
    right: auto;
    left: 0;
  }
}

.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: 20px;
  left: 20px;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(190deg, #FFF2F8 0%, #FFFDFD 100%);
  content: "";
  clip-path: var(--clip-path-01);
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-image.-clip::before {
    top: 24px;
    left: 24px;
  }
}

.c-top-contents__section-image-container {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip-path: var(--clip-path-01);
}

.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(--color-01-pink);
  content: "";
  clip-path: var(--clip-path-02);
}

@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 {
  width: 140px;
  margin: 24px 0 0 auto;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-button {
    width: 170px;
  }
}

@media (hover: hover) {
  .c-top-contents__section-button-link {
    transition: opacity 300ms;
  }

  .c-top-contents__section-button-link:hover {
    opacity: 0.7;
  }
}

.c-top-index {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-top-index {
    margin-top: 100px;
  }
}

.c-top-index__list {
  display: grid;
  margin-top: 24px;
  background-color: var(--color-00-white);
  border-top: 1px solid var(--color-00-black);
  border-left: 1px solid #000;
  grid-template-columns: 1fr;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-top-index__list {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-top-index__item {
  border-right: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-top-index__item:last-child {
    grid-column: 1/-1;
  }

  .c-top-index__item:last-child .c-top-index__link {
    justify-content: center;
    grid-template-columns: auto auto auto;
  }
}

.c-top-index__link {
  display: grid;
  padding: 16px;
  color: var(--color-00-black);
  text-decoration: none;
}

@media print, screen and (width <=767px) {
  .c-top-index__link {
    grid-template-areas: "number icon" "text icon";
    grid-template-columns: 1fr 20px;
    align-items: center;
    gap: 8px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-index__link {
    padding: 40px 24px;
    grid-template-areas: "number text icon";
    grid-template-columns: 130px 1fr 20px;
    align-items: center;
    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: 14px;
  font-weight: bold;
  line-height: 1;
  grid-area: number;
}

@media print, screen and (width >=768px) {
  .c-top-index__link-number {
    font-size: 17px;
  }
}

.c-top-index__link-text {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  grid-area: text;
}

@media print, screen and (width >=768px) {
  .c-top-index__link-text {
    font-size: 22px;
    letter-spacing: -0.01em;
  }
}

.c-top-index__link-icon {
  display: block;
  grid-area: icon;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/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-news {
  margin-bottom: 80px;
  background-color: var(--color-00-white);
  border-left: 1px solid var(--color-00-black);
  border-right: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-news {
    margin-bottom: 100px;
  }
}

.c-news__header {
  display: flex;
  padding: 40px 24px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/top/news_background_sp.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

@media print, screen and (width >=768px) {
  .c-news__header {
    padding: 90px 24px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/top/news_background_pc.webp");
  }
}

.c-news__header-number {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.c-news__header-title {
  font-size: 27px;
  font-weight: bold;
  line-height: 1;
}

.c-news__tabs-container {
  border-top: 1px solid var(--color-00-black);
  padding: 40px 0;
}

@media print, screen and (width <=767px) {
  .c-news__tabs-container {
    overflow-x: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs-container.-skin {
    padding-inline: 100px;
  }
}

.c-news__tabs-container.-skin .c-news__tab[data-index="5"] {
  display: none;
}

.c-news__tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 6px;
}

@media print, screen and (width <=767px) {
  .c-news__tabs::before, .c-news__tabs::after {
    display: block;
    width: 20px;
    height: 1px;
    content: "";
    flex: 0 0 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.c-news__tab {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  overflow: hidden;
  height: 60px;
  padding: 0 24px;
  background-color: transparent;
  border: 1px solid var(--color-00-black);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-news__tab {
    height: 40px;
  }
}

.c-news__tab::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/fixed_background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  content: "";
}

.c-news__tab.-active::before {
  opacity: 0.6;
}

.c-news__tab span {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media print, screen and (width >=768px) {
  .c-news__tab span {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.04em;
  }
}

.c-news__contents {
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-news__contents {
    margin-bottom: 30px;
  }
}

.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);
  border-bottom: 1px solid var(--color-00-black);
}

@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(odd):last-child)::after {
    display: block;
    content: "";
    border-top: 1px solid var(--color-00-black);
  }
}

.c-news-list__item {
  padding: 20px 15px;
  border-top: 1px solid var(--color-00-black);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-news-list__item {
    padding: 60px 30px;
  }

  .c-news-list__item:nth-child(odd) {
    border-right: 1px solid var(--color-00-black);
  }
}

.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__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(--color-00-black);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list__link1 a:hover, .c-news-list__link2 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-news-list-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.c-news-list-large__item {
  display: grid;
  background-color: var(--color-00-white);
  color: var(--color-00-black);
  border-top: 1px solid var(--color-00-black);
  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(--color-00-black);
  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(--color-00-black);
  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%;
  height: 32px;
  padding-bottom: 1px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

.c-button__link.-reserve {
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  color: var(--color-00-black);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-button__link.-reserve:hover {
    opacity: 0.7;
  }
}

.c-button__link.-netshop {
  background-color: var(--color-00-black);
  border: 1px solid var(--color-00-black);
  color: var(--color-00-white);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-button__link.-netshop:hover {
    opacity: 0.7;
  }
}

.c-button__link.-normal {
  background-color: var(--color-00-black);
  border: 1px solid var(--color-00-black);
  color: var(--color-00-white);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-button__link.-normal:hover {
    opacity: 0.7;
  }
}

.c-top-collage {
  position: relative;
  z-index: 10;
  margin-top: 100lvh;
  background-image: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, white 30%);
  color: #000;
}

.c-top-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-top-collage__title {
  position: absolute;
  z-index: 10;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (width <=767px) {
  .c-top-collage__title {
    top: 235.7333333333vw;
    left: 5.3333333333vw;
    font-size: 5.8666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__title {
    top: 53.8799414348vw;
    left: 36.6032210835vw;
    font-size: 3.4407027818vw;
    letter-spacing: 0.1em;
  }
}

.c-top-collage__title-text .char {
  filter: drop-shadow(0.5em 0.5em 0.03em rgb(255 255 255 / 80%));
}

.c-top-collage__content {
  position: relative;
  display: grid;
  gap: 0;
}

@media print, screen and (width <=767px) {
  .c-top-collage__content {
    grid-template-areas: "item1 item3" "item2 item3" "item4 item4" "item5 item5" "item6 item6" "item7 item8" "item9 item9" "item10 item10";
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__content {
    grid-template-areas: "item1 item1 item3 item3" "item2 item4 item3 item3" "item5 item5 item6 item7" "item5 item5 item6 item9" "item10 item10 item8 item9";
  }
}

.c-top-collage__item {
  position: relative;
}

.c-top-collage__item picture {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.c-top-collage__item.-item1 {
  grid-area: item1;
}

.c-top-collage__item.-item2 {
  grid-area: item2;
}

.c-top-collage__item.-item3 {
  grid-area: item3;
}

.c-top-collage__item.-item4 {
  grid-area: item4;
}

.c-top-collage__item.-item5 {
  grid-area: item5;
}

.c-top-collage__item.-item6 {
  grid-area: item6;
  background-color: var(--color-00-white);
}

.c-top-collage__item.-item7 {
  grid-area: item7;
}

.c-top-collage__item.-item8 {
  grid-area: item8;
}

.c-top-collage__item.-item9 {
  grid-area: item9;
}

.c-top-collage__item.-item10 {
  grid-area: item10;
}

.c-top-collage__item-button {
  position: absolute;
  aspect-ratio: 168/27;
  transform: rotate(-9deg);
}

@media print, screen and (width <=767px) {
  .c-top-collage__item-button {
    right: 5.3333333333vw;
    bottom: 10.6666666667vw;
    width: 37.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__item-button {
    right: 1.4641288433vw;
    bottom: 2.9282576867vw;
    width: 12.298682284vw;
  }
}


.c-local-footer__topics-attention{
  font-size:16px;
  text-align:left;
}


.c-top-collage__item-button a {
  display: block;
}

.c-local-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/footer_background.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-inline: 20px;
}

@media print, screen and (width >=768px) {
  .c-local-footer {
    min-width: 1200px;
    padding-inline: 0;
  }
  
}

.c-local-footer a {
  opacity: 1;
  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;
  padding-top: 80px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__inner {
    max-width: 1100px;
    padding-top: 100px;
  }
}

.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-black);
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-link {
    grid-template-columns: 184px 1fr;
    gap: 20px;
  }
}

.c-local-footer__item-image {
  clip-path: var(--clip-path-01);
}

.c-local-footer__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-local-footer__item-content {
  font-size: 15px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-content {
    font-size: 23px;
  }
}

.c-local-footer__item-text-number {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text-number {
    font-size: 20px;
  }
}

.c-local-footer__item-text-text {
  display: block;
  margin-top: 4px;
  font-weight: bold;
}

.c-local-footer__item-text-text-sub {
  font-size: 10px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-text-text-sub {
    font-size: 15px;
  }
}

.c-local-footer__jam {
  margin-top: 40px;
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
  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-image {
  grid-area: image;
}

.c-local-footer__jam-title {
  color: var(--color-00-black);
  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;
  color: var(--color-00-black);
  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__topics {
  margin-top: 28px;

  font-family: var(--font-noto-sans);
}

@media print, screen and (width >=768px) {
  .c-local-footer__topics {
    margin-top: 50px;
  }
}

.c-local-footer__topics-title {
  width: 100%;
  color: #ffffff;
  padding:20px;
}


@media print, screen and (width >=768px) {
  .c-local-footer__topics-title {
    font-size: 29px;
    padding-block: 11px;
  }
}

.c-local-footer__topics-title h3 {
  font-size: 16px;
  border-bottom: solid #fff 1px;
  padding:10px;
  font-weight:bold;
}

@media print, screen and (width >=768px) {
  .c-local-footer__topics-title h3 {
    font-size: 25px;
    color:#fff;
    border-bottom: solid #fff 2px;
  }
}

.c-local-footer__topics-content {
  position: relative;
  display: flex;
  margin-top:50px;
  font-family: var(--font-noto-sans);
  background-color: var(--color-00-white);
  text-align: center;
  gap: 16px 10px;
  color: #fff;
  font-weight:bold;
  flex-wrap: wrap;
  background-size:cover;
  background-repeat:no-repeat;
  background-image: url(/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/footer_topics_background.webp);
}

.c-local-footer__topics-content c-local-footer__topics-textbox{
   flex-direction: column;
   color: #fff;
   font-weight: bold;
   width:100%;
}

@media print, screen and (width >=768px) {
  .c-local-footer__topics-content {
    padding: 15px 30px 40px;
    align-items: center;
    gap: 30px 20px;
  }
  
.c-local-footer__topics-content c-local-footer__topics-textbox{
   flex-direction: column;
   width:calc((100% - 20px) / 2);
}
 
.c-local-footer__topics-image {
  grid-area: image;
  width: calc((100% - 20px) / 2);
  margin-inline: auto;
}
}

.c-local-footer__topics-image {
  grid-area: image;
  width: 100％-webkit-fill-available;
  max-width: 300px;
  margin-inline: auto;
}

.c-local-footer__topics-lead {
  font-size: 14px;
  text-align: left;
  letter-spacing: -0.03em;
  padding-bottom:25px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__topics-lead {
    font-size: 20px;
  }
}

.c-local-footer__topics-content .c-local-footer__topics-text {
  font-size: 25px;
  line-height: 1.8em;
  text-align:left;
  background-color: #ffffff;
  padding:18px;
  margin-bottom:20px;
  color: #f0831e;
  line-height: 20px;
}

.c-local-footer__topics-text mark{
	 background: linear-gradient(transparent 45%, #f0831e3b 0%);
     color:#f0831e;
}

@media print, screen and (width <=767px) {
.c-local-footer__topics {
  padding:18px;
  }
  .c-local-footer__topics-content {
    padding: 20px;
    align-items: center;
    margin-top: 28px;
  }	

.c-local-footer__topics-content .c-local-footer__topics-text{
  font-size:18px;padding:10px;
  line-height:25px;
  margin-bottom: 15px;
}


.c-local-footer__topics-title h3 {
  font-size: 20px;
  padding:0 15px 15px;
  font-weight:bold;
  line-height: 30px;
}
	
}



@media print, screen and (width >=768px) {
  .c-local-footer__topics-text {
    font-size: 14px;
  }
}

.c-local-footer__topics-button {
  grid-area: button;
  position: relative;
}

  .c-local-footer__topics-button {
    width: fit-content;
    margin: 0 auto;
  }
.c-local-footer__topics-button-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  padding: 14px 20px 14px 0;
  background-color: #000;
  border-radius: 100px;
  color: rgb(255 255 255 / 91%);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-local-footer__topics-button-link {
    width: 387px;
    max-width: none;
    padding: 10px 10px 10px 0;
    font-size: 20px;
    margin-inline: auto;
  }
}

.c-local-footer__topics-button-link::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-local-footer__phone-order {
  margin-top: 28px;
  border: 1px solid var(--color-00-red);
  font-family: var(--font-noto-sans);
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order {
    margin-top: 50px;
  }
}

.c-local-footer__phone-order-title {
  width: 100%;
  background-color: var(--color-00-red);
  color: var(--color-00-white);
  text-align: center;
  padding-block: 16px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-title {
    font-size: 20px;
    padding-block: 11px;
  }
}

.c-local-footer__phone-order-title h3 {
  font-size: 14px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-title h3 {
    font-size: 20px;
  }
}

.c-local-footer__phone-order-content {
  position: relative;
  display: grid;
  padding: 10px 20px 40px;
  background-color: var(--color-00-white);
}

@media print, screen and (width <=767px) {
  .c-local-footer__phone-order-content {
    grid-template-columns: 1fr;
    align-items: center;
    grid-template-areas: "image" "lead" "notice" "stores" "button";
    gap: 16px 10px;
  }
  .c-local-footer__topics-attention{
  font-size: 13px;
  margin: 10px 0 20px;
}

  .c-local-footer__topics-title {
    padding: 0;
}

.c-local-footer__topics-button {
    width:100%;
    min-width: 250px;
    margin: 0 auto;
}
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-content {
    padding-block: 33px;
    grid-template-columns: 1fr;
    gap: 20px;
    grid-template-areas: "lead" "stores" "button";
  }
}

.c-local-footer__phone-order-image {
  grid-area: image;
}

@media print, screen and (width <=767px) {
  .c-local-footer__phone-order-image {
    width: 150px;
    margin-inline: auto;
    padding-right: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-image {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 192px;
    transform: translateY(-50%);
  }
}

.c-local-footer__phone-order-lead {
  margin-right: -5px;
  font-size: 14px;
  letter-spacing: -0.03em;
  grid-area: lead;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-lead {
    width: 540px;
    font-size: 18px;
    margin-inline: auto;
  }
}

.c-local-footer__phone-order-lead sup {
  margin-left: -0.5em;
}

.c-local-footer__phone-order-stores {
  grid-area: stores;
  font-size: 10px;
  line-height: 1.8em;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-stores {
    width: 540px;
    font-size: 14px;
    margin-inline: auto;
  }
}

.c-local-footer__phone-order-stores > span {
  display: inline-block;
  margin-right: 0.5em;
}

.c-local-footer__phone-order-notice {
  grid-area: notice;
  font-size: 10px;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-notice {
    position: absolute;
    right: 44px;
    bottom: 44px;
    font-size: 14px;
  }
}

.c-local-footer__phone-order-button {
  grid-area: button;
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-button {
    width: fit-content;
    margin: 0 auto;
  }
}

.c-local-footer__phone-order-button-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  padding: 14px 20px 14px 0;
  background-color: var(--color-00-black);
  border-radius: 100px;
  color: var(--color-00-white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-local-footer__phone-order-button-link {
    width: 387px;
    max-width: none;
    padding: 10px 10px 10px 0;
    font-size: 20px;
    margin-inline: auto;
  }
}

.c-local-footer__phone-order-button-link::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-local-footer__banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 30px;
  gap: 20px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners {
    justify-content: center;
    grid-template-columns: repeat(2, 300px);
    margin-block: 50px 40px;
    gap: 90px;
  }
}

.c-local-footer__banners-link {
  display: block;
  padding: 8px 20px;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners-link {
    padding: 0;
  }
}

.c-local-footer__banners-link img {
  display: block;
  width: 100%;
}

.c-item-list1 {
  position: relative;
  z-index: 10;
  padding: 40px 0 0;
  background-color: var(--color-00-white);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-item-list1 {
    padding: 48px 0 60px;
  }
}

.c-item-list1.-top {
  padding-bottom: 40px;
}

@media print, screen and (width >=768px) {
  .c-item-list1.-top {
    padding-bottom: 40px;
  }
}

.c-item-list1__inner {
  margin: 0 auto;
}

.c-item-list1__title {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-item-list1__list .splide__track {
    visibility: visible !important;
  }

  .c-item-list1__list .splide__list {
    justify-content: center;
    display: flex !important;
  }
}

.c-item-list1__item {
  width: 130px;
}

.c-item-list1__item-button {
  display: block;
  background-color: var(--color-00-white);
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-list1__item-button {
    transition: opacity 200ms;
  }

  .c-item-list1__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-list3 {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 0 20px;
  background-color: var(--color-00-white);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-item-list3 {
    margin-bottom: 100px;
  }
}

.c-item-list3__inner {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0;
}

.c-item-list3__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

@media print, screen and (width >=768px) {
  .c-item-list3__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-item-list3__item {
  border-right: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

.c-item-list3__item-button {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: var(--color-00-white);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .c-item-list3__item-button {
    transition: opacity 200ms;
  }

  .c-item-list3__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-list3__item-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 30px;
  height: 26px;
  background-color: var(--color-00-black);
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026spring/assets/images/common/icon_plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  content: "";
}

.c-item-list3__item-image {
  max-width: 200px;
}

.c-item-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  overflow-y: auto;
  overflow-y: scroll;
  width: 100%;
  height: 100dvh;
  margin: 0;
  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__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  backdrop-filter: blur(4px);
}

.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-black);
  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-00-white);
  color: var(--color-00-black);
  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: 10px auto 0;
}

.c-item-modal__image {
  position: relative;
}

.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 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__color {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__size {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__price {
  margin: 0 0 10px auto;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}

.c-item-modal__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-modal__date1, .c-item-modal__date2 {
  margin: 10px 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__single-button {
  margin: 0;
}

.c-item-modal__buttons {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.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 {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-make-look-content {
    min-width: 1200px;
    margin-top: 100px;
  }
}

.c-make-look-content__header {
  position: relative;
}

.c-make-look-content__image1 {
  aspect-ratio: 1366/844;
  position: relative;
  z-index: 1;
}

.c-make-look-content__image1 img {
  width: 100%;
  height: auto;
}

.c-make-look-content__title {
  position: absolute;
  right: 5.3333333333vw;
  bottom: 5.3333333333vw;
  z-index: 2;
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__title {
    right: calc(50% - 550px);
    bottom: 3.6603221083vw;
  }
}

.c-make-look-content__title-text {
  font-size: 6.4vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__title-text {
    font-size: 3.5871156662vw;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content__body {
    padding: 30px 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__body {
    width: 1100px;
    margin: 0 auto;
    padding: 90px 0 60px;
  }
}

.c-make-look-content__collage {
  display: grid;
  width: 100%;
  gap: 0;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage {
    grid-template-columns: 1fr;
    grid-template-areas: "image2" "image3" "image4";
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage {
    width: 1100px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
  }

  .c-make-look-content__collage.-look1 {
    grid-template-areas: "image3 image2" "image3 image4";
  }

  .c-make-look-content__collage.-look2 {
    grid-template-areas: "image2 image3" "image4 image3";
  }

  .c-make-look-content__collage.-look3 {
    grid-template-areas: "image3 image2" "image3 image4";
  }

  .c-make-look-content__collage.-look4 {
    grid-template-areas: "image2 image3" "image4 image3";
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image2 {
  aspect-ratio: 816/1216;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    width: 50.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    width: 408px;
    margin-left: 64px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image3 {
  aspect-ratio: 1014/1514;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    width: 65.8666666667vw;
    margin-top: 20px;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    width: 507px;
    justify-self: end;
    margin-top: 220px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image4 {
  aspect-ratio: 1040/662;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    width: 72.8vw;
    margin-top: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    width: 520px;
    margin-top: 210px;
    margin-left: 32px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image2 {
  aspect-ratio: 1040/662;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    width: 72.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    width: 520px;
    justify-self: end;
    margin-right: 32px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image3 {
  aspect-ratio: 1014/1514;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    width: 65.8666666667vw;
    margin-top: 20px;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    width: 507px;
    margin-top: 200px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image4 {
  aspect-ratio: 1040/662;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    width: 72.8vw;
    margin-top: 20px;
    margin-left: -20px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    width: 520px;
    justify-self: end;
    margin-top: 400px;
    margin-right: 56px;
  }
}

.c-make-look-content__collage.-look3 .c-make-look-content__image2 {
  aspect-ratio: 1040/712;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image2 {
    width: 72.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image2 {
    width: 520px;
  }
}

.c-make-look-content__collage.-look3 .c-make-look-content__image3 {
  aspect-ratio: 1014/1514;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image3 {
    width: 65.8666666667vw;
    margin-top: 20px;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image3 {
    width: 507px;
    justify-self: end;
    margin-top: 178px;
    margin-right: 32px;
  }
}

.c-make-look-content__collage.-look3 .c-make-look-content__image4 {
  aspect-ratio: 1040/630;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image4 {
    width: 74.1333333333vw;
    margin-top: 20px;
    margin-left: -20px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look3 .c-make-look-content__image4 {
    width: 520px;
    margin-top: 420px;
  }
}

.c-make-look-content__collage.-look4 .c-make-look-content__image2 {
  aspect-ratio: 672/1002;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image2 {
    width: 44.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image2 {
    justify-self: end;
    width: 336px;
    margin-right: 110px;
  }
}

.c-make-look-content__collage.-look4 .c-make-look-content__image3 {
  aspect-ratio: 1148/1712;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image3 {
    width: 65.8666666667vw;
    margin-top: 20px;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image3 {
    width: 574px;
    margin-top: 240px;
    margin-left: -64px;
  }
}

.c-make-look-content__collage.-look4 .c-make-look-content__image4 {
  aspect-ratio: 708/1050;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image4 {
    width: 38.6666666667vw;
    margin-top: 20px;
    margin-left: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look4 .c-make-look-content__image4 {
    justify-self: end;
    width: 354px;
    margin-top: 248px;
    margin-right: 140px;
  }
}

.c-make-look-content__image2 {
  grid-area: image2;
}

.c-make-look-content__image3 {
  grid-area: image3;
}

.c-make-look-content__image4 {
  grid-area: image4;
}

.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;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__copy {
    margin-top: 60px;
  }
}

.c-make-look-header {
  padding: 32px 20px 0;
}

@media print, screen and (width >=768px) {
  .c-make-look-header {
    padding: 100px 0 0;
  }
}

.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__title-text .char {
  filter: drop-shadow(0.5em 0.5em 0.03em rgb(229 227 228 / 56%));
}

.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-credit {
  margin: 60px 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit {
    width: 1100px;
    margin: 48px auto 90px;
  }
}

.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 {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit__item {
    font-size: 14px;
  }
}

.c-make-credit__item a {
  color: var(--color-00-red);
}

.c-title {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 24px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  border-radius: 100px;
  color: var(--color-00-black);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-title {
    padding-inline: 24px;
    min-width: 200px;
  }
}

.c-title.-margin {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-title.-margin {
    margin-top: 100px;
  }
}

.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;
}

@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/2026spring/assets/images/skin/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/2026spring/assets/images/skin/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;
  }
}

.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);
}



