
@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-brown: #c4afa7;
  --color-60-gray: #6b7075;
  --color-70-gray: #979ca1;
  --color-80-gray: #dbdee3;
  --color-90-gray: #f2f3f5;
  --color-95-gray: #f7f7f7;
  --color-01-orange: #db5631;
  --color-01-brown: #6e3010;
  --color-02-brown: #a5877c;
  --color-03-brown: #c4b5b0;
  --color-background-01: #b98671;
  --color-background-02: #d7c4bd;
  --color-background-03: #d7c9af;
  --color-background-04: #cfe2e3;
  --color-background-05: #e8e8e8;
  --color-background-06: #e0b3b6;
  --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;
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-padding-top: 71px;
  scroll-behavior: smooth;
}

html:has(dialog[open]) {
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  html {
    scroll-padding-top: 104px;
  }
}

body {
  margin: 0;
  padding: 71px 0 0;
  background-color: var(--color-00-brown);
  color: var(--color-00-black);
  font-family: var(--font-main);
}

@media print, screen and (width >= 768px) {
  body {
    padding-top: 104px;
  }
}

body:has(header.c-header.-home) {
  padding-top: 0;
  background-color: var(--color-00-white);
}

/* 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) {
  .-is-pc-only {
    display: none !important;
  }
}

@media print, screen and (width >=768px) {
  .-is-sp-only {
    display: none !important;
  }
}

/* ==========================================================================
Components
========================================================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 71px;
  background-color: var(--color-00-white);
  color: var(--color-00-black);
  transition: background-color 400ms;
}

@media print, screen and (width >=768px) {
  .c-header {
    height: 104px;
    background-color: var(--color-00-brown);
  }
}

.c-header.-home {
  background-color: transparent;
}

.c-header.-home .c-header__logo a {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/logo_white.svg");
}

.c-header.-home .c-header__burger-icon > span {
  background-color: var(--color-00-white);
}

.c-header.-scrolled {
  background-color: var(--color-00-white);
}

.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: 235px;
  height: 32px;
}

@media print, screen and (width >=768px) {
  .c-header__logo {
    width: 334px;
    height: 37px;
  }
}

.c-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/logo_black.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-header__logo a {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/logo_white.svg");
  }
}

.c-header__logo-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

.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;
}

@media print, screen and (width >=768px) {
  .c-header__burger-icon > span {
    background-color: var(--color-00-white);
  }
}

.c-header__burger-icon > span:nth-child(2) {
  transform-origin: right center;
  transform: scale(0.6, 1);
}
.c-header__burger-button:hover .c-header__burger-icon > span:nth-child(2) {
  transform: scale(1, 1);
}
.c-burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 200;
  width: 100%;
  max-width: 500px;
  height: 100lvh;
  background-color: transparent;
  border: none;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-burger-menu {
    max-width: 960px;
  }
}

.c-burger-menu__body {
  position: relative;
  overflow: scroll;
  height: auto;
  max-height: 100lvh;
  margin: 0 0 0 auto;
}

.c-burger-menu__logo-body {
  position: sticky;
  top: 0;
  display: flex;
  height: 71px;
  background-color: var(--color-00-white);
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px 8px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__logo-body {
    position: relative;
    height: auto;
    padding: 73px 0 0 53px;
    background-color: rgb(255 255 255 / 95%);
  }
}

.c-burger-menu__logo {
  width: 235px;
  height: 32px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__logo {
    width: 350px;
    height: 41px;
  }
}

.c-burger-menu__logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/logo_black.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

.c-burger-menu__logo-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

.c-burger-menu__inner {
  padding: 20px;
  background-color: rgb(255 255 255 / 91%);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__inner {
    margin: 0 auto;
    padding: 0;
    background-color: rgb(255 255 255 / 95%);
  }
}

.c-burger-menu__inner.-white {
  padding: 30px 20px 100px;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__inner.-white {
    padding: 33px 277px 30px 130px;
    background-color: rgb(255 255 255 / 95%);
  }
}

.c-burger-menu__inner a {
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__inner a {
    transition: opacity 200ms;
  }
}

.c-burger-menu__inner a:hover {
  opacity: 0.7;
}

.c-burger-menu__inner a p {
  color: var(--color-00-black);
}

.c-burger-menu__navigation a {
  color: inherit;
}

.c-burger-menu__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
  margin-top: 10px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__list {
    gap: 30px;
    margin-top: 0;
    padding: 33px 218px 0 130px;
  }
}

.c-burger-menu__item-link {
  display: grid;
  height: 100%;
  text-decoration: none;
  grid-template-columns: 1fr 62px;
  gap: 20px;
}

@media print, screen and (width <= 420px) {
  .c-burger-menu__item-link {
    grid-template-columns: 1fr 62px;
  }
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-link {
    transition: filter 200ms;
    grid-template-columns: 1fr auto;
    gap: 30px;
  }

  .c-burger-menu__item-link:hover {
    filter: brightness(1.1);
  }
}

.c-burger-menu__item-image {
  margin: auto;
}

.c-burger-menu__item-image.-arrow {
  margin-top: 14px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-image.-arrow {
    align-content: center;
    height: 100%;
    margin-top: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-image.-arrow img {
    margin-bottom: 5px;
  }
}

.c-burger-menu__item-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-text {
    font-size: 24px;
    align-content: center;
  }
}

.c-burger-menu__buttom-logo {
  margin: 55px -20px 0;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__buttom-logo {
    margin: 55px 40px 0;
  }
}

.c-burger-menu__buttom-image {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.c-burger-menu__buttom-image::after {
  width: auto;
  height: 1px;
  background-color: var(--color-00-black);
  content: "";
}

.c-burger-menu__bottom-content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 28px;
}

.c-burger-menu__bottom-item {
  display: grid;
  align-items: center;
  grid-template-columns: 128px auto;
  gap: 22px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__bottom-item {
    grid-template-columns: 203px auto;
    width: 570px;
    gap: 25px;
  }
}

.c-burger-menu__bottom-text {
  font-size: 18px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__bottom-text {
    font-size: 28px;
  }
}

.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;
  overflow: hidden;
  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 right;
}

@media print, screen and (width >=768px) {
  .c-hero img {
    object-position: center center;
  }
}

.c-top-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--color-00-white);
}

.c-top-main::before {
  display: block;
  width: 100%;
  height: 100lvh;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-top-main {
    min-width: 1200px;
  }
}

.c-top-main__header {
  position: relative;
  z-index: 2;
  height: 660px;
}

@media print, screen and (width >=768px) {
  .c-top-main__header {
    height: 820px;
  }
}

.c-top-main__header-block1, .c-top-main__header-block2, .c-top-main__header-block3, .c-top-main__header-block4, .c-top-main__header-block5 {
  position: absolute;
}

.c-top-main__header-block1 {
  top: 190px;
  left: -20px;
  z-index: 2;
  width: 100px;
  background-color: var(--color-background-03);
  opacity: 0.75;
  aspect-ratio: 233/515;
  clip-path: polygon(0 0, 50% 0, 50% 30%, 100% 30%, 100% 100%, 0 100%);
}

@media print, screen and (width >=768px) {
  .c-top-main__header-block1 {
    top: 150px;
    left: 135px;
    width: 233px;
  }
}

.c-top-main__header-block2 {
  bottom: 160px;
  left: -80px;
  z-index: 3;
  width: 100px;
  background-color: var(--color-background-04);
  opacity: 0.8;
  aspect-ratio: 233/515;
  mix-blend-mode: multiply;
}

@media print, screen and (width >=768px) {
  .c-top-main__header-block2 {
    bottom: 0;
    left: 0;
    width: 233px;
  }
}

.c-top-main__header-block3 {
  right: -60px;
  bottom: 40px;
  z-index: 4;
  width: 80px;
  background-color: var(--color-background-01);
  opacity: 0.5;
  aspect-ratio: 160/322;
  mix-blend-mode: multiply;
}

@media print, screen and (width >=768px) {
  .c-top-main__header-block3 {
    right: 75px;
    bottom: -100px;
    width: 160px;
  }
}

.c-top-main__header-block4 {
  right: -60px;
  bottom: 100px;
  z-index: 3;
  width: 120px;
  background-color: var(--color-background-04);
  opacity: 0.8;
  aspect-ratio: 233/515;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 40%, 30% 40%);
  mix-blend-mode: multiply;
}

@media print, screen and (width >=768px) {
  .c-top-main__header-block4 {
    right: 135px;
    bottom: -25px;
    width: 233px;
  }
}

.c-top-main__header-block5 {
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 70px;
  background-color: var(--color-background-05);
}

@media print, screen and (width >=768px) {
  .c-top-main__header-block5 {
    width: 68.75vw;
    height: 200px;
  }
}

.c-top-main__body {
  position: relative;
  z-index: 1;
  background-color: var(--color-background-05);
}

@media print, screen and (width >=768px) {
  .c-top-main__body {
    min-width: 1200px;
  }
}

.c-top-main__background {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--color-03-brown);
}

@media print, screen and (width >=768px) {
  .c-top-main__background {
    left: 80px;
    width: calc(100% - 80px);
  }
}

.c-top-main__inner {
  position: relative;
  z-index: 2;
  padding: 50px 20px 90px;
}

@media print, screen and (width >=768px) {
  .c-top-main__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 0 80px;
  }
}

.c-top-main__title {
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
}

.c-top-main__title::after {
  display: block;
  width: 98px;
  height: 1px;
  margin: 20px auto 0;
  content: "";
  border-top: 1px solid var(--color-00-white);
}

.c-top-main__title-line1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-main__title-line1 {
    font-size: 25px;
    letter-spacing: 0.05em;
  }
}

.c-top-main__title-line2 {
  margin: 5px 0 0;
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-top-main__title-line2 {
    font-size: 39px;
  }
}

.c-top-main__title-line2 span {
  color: var(--color-01-orange);
}

.c-top-main__title-line3 {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-main__title-line3 {
    margin-top: 15px;
    font-size: 20px;
  }
}

.c-top-main__days {
  margin: 20px 0 70px;
  font-family: var(--font-noto-sans);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-top-main__days {
    margin-bottom: 80px;
    font-size: 30px;
  }
}

.c-top-main__lead {
  margin: 0 10px 35px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-top-main__lead {
    margin: 0 0 80px;
    font-size: 40px;
    text-align: center;
  }
}

.c-top-main__text {
  position: relative;
  margin: 0 10px;
  padding-bottom: 160px;
  font-size: 13px;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-top-main__text {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 180px;
    font-size: 21px;
    text-align: center;
  }
}

.c-top-main__text::after {
  position: absolute;
  right: -20px;
  bottom: 60px;
  z-index: -1;
  display: block;
  width: 230px;
  height: auto;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/top/text_autumn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  content: "";
  aspect-ratio: 557/227;
}

@media print, screen and (width >=768px) {
  .c-top-main__text::after {
    right: -160px;
    bottom: 70px;
    width: 557px;
  }
}

.c-top-main__coontent-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media print, screen and (width <=767px) {
  .c-top-main__coontent-area {
    display: none;
  }
}

.c-top-main__coontent-area-block1 {
  position: absolute;
  top: 300px;
  left: -180px;
  z-index: 1;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-03);
  opacity: 0.75;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block2 {
  position: absolute;
  top: 450px;
  left: -80px;
  z-index: 2;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-04);
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block3 {
  position: absolute;
  top: 850px;
  right: -80px;
  z-index: 1;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-04);
  opacity: 0.5;
}

.c-top-main__coontent-area-block4 {
  position: absolute;
  top: 1180px;
  right: 80px;
  z-index: 1;
  width: 160px;
  height: 322px;
  background-color: var(--color-background-01);
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block5 {
  position: absolute;
  top: 1500px;
  left: 10px;
  z-index: 1;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-04);
  opacity: 0.7;
  clip-path: polygon(0 0, 60% 0, 60% 30%, 100% 30%, 100% 100%, 0 100%);
}

.c-top-main__coontent-area-block6 {
  position: absolute;
  top: 1770px;
  left: -100px;
  z-index: 2;
  width: 160px;
  height: 322px;
  background-color: var(--color-background-01);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block7 {
  position: absolute;
  top: 1775px;
  right: -130px;
  z-index: 3;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-03);
  opacity: 0.8;
}

.c-top-main__coontent-area-block8 {
  position: absolute;
  top: 1905px;
  right: -150px;
  z-index: 2;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-04);
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block9 {
  position: absolute;
  top: 2000px;
  right: -100px;
  z-index: 1;
  width: 233px;
  height: 515px;
  background-color: var(--color-background-01);
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.c-top-main__coontent-area-block10 {
  position: absolute;
  bottom: 1100px;
  left: 0;
  z-index: 1;
  width: 277px;
  height: 900px;
  background-color: var(--color-background-01);
  opacity: 0.6;
  mix-blend-mode: multiply;
  clip-path: polygon(0 0, 50% 0, 50% 30%, 100% 30%, 100% 100%, 0 100%);
}

.c-top-main__coontent-area-block11 {
  position: absolute;
  bottom: 1100px;
  left: 0;
  z-index: 2;
  width: 210px;
  height: 500px;
  background-color: var(--color-background-04);
  opacity: 0.7;
  clip-path: polygon(0 0, 50% 0, 50% 30%, 100% 30%, 100% 100%, 0 100%);
}

.c-top-main__coontent-area-block12 {
  position: absolute;
  right: 0;
  bottom: 200px;
  z-index: 1;
  width: 277px;
  height: 900px;
  background-color: var(--color-background-01);
  opacity: 0.7;
  mix-blend-mode: multiply;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%, 0 35%, 50% 35%);
}

.c-top-main__coontent-area-block13 {
  position: absolute;
  right: -50px;
  bottom: 150px;
  z-index: 2;
  width: 210px;
  height: 500px;
  background-color: var(--color-background-04);
  opacity: 0.7;
  clip-path: polygon(0 0, 50% 0, 50% 30%, 100% 30%, 100% 100%, 0 100%);
}

.c-maincut-item {
  color: var(--color-00-white);
  font-family: var(--font-noto-sans);
}

.c-maincut-item img {
  display: block;
  width: 100%;
  height: auto;
}

.c-maincut-item__title {
  position: relative;
  display: flex;
  margin: 0 -20px 55px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--font-main);
}

body.p-home .c-maincut-item__title {
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-maincut-item__title {
    margin-bottom: 40px;
  }
}

.c-maincut-item__title span {
  display: block;
  flex: 0 0 auto;
  font-size: 20px;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__title span {
    font-size: 22px;
  }
}

.c-maincut-item__title::after {
  display: block;
  height: 1px;
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid var(--color-00-white);
}

body.p-home .c-maincut-item__title::after {
  border-color: var(--color-00-white);
}

.c-maincut-item__list {
  margin: 0 -20px 0 0;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__list {
    margin: 0;
  }
}

.c-maincut-item__item {
  scroll-snap-align: start;
  width: 270px;
  padding-right: 20px;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__item {
    width: 320px;
  }
}

.c-maincut-item__item img {
  clip-path: url("#path1");
}

.c-maincut-item__copy {
  margin-bottom: 15px;
  font-family: var(--font-main);
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__copy {
    margin-bottom: 30px;
  }
}

.c-maincut-item__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
}

body.p-home .c-maincut-item__copy p {
  color: var(--color-00-black);
  filter: drop-shadow(0 0 8px rgb(112 138 186 / 40%));
}

@media print, screen and (width >=768px) {
  .c-maincut-item__copy p {
    font-size: 20px;
  }
}

.c-maincut-item__image {
  position: relative;
  width: 250px;
  margin-bottom: 20px;
  border: 1px solid var(--color-01-brown);
}

@media print, screen and (width >=768px) {
  .c-maincut-item__image {
    width: 300px;
    margin-bottom: 16px;
  }
}

.c-maincut-item__date {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: block;
  width: 95px;
  height: 95px;
  margin: 0 auto;
  background-color: var(--color-02-brown);
  border-radius: 50%;
  color: var(--color-00-white);
  font-family: var(--font-main);
  line-height: 1;
  transform-origin: left top;
}

@media print, screen and (width <=767px) {
  .c-maincut-item__date {
    transform: scale(0.8);
  }
}

.c-maincut-item__date > span {
  position: absolute;
  display: block;
  letter-spacing: 0;
}

.c-maincut-item__date-text1 {
  top: calc(50% - 33px);
  left: calc(50% - 33px);
  width: fit-content;
  font-size: 28px;
  text-align: right;
}

.c-maincut-item__date-text2 {
  top: calc(50% - 18px);
  left: 0;
  width: 100%;
  font-size: 20px;
  text-align: center;
}

.c-maincut-item__date-text3 {
  top: calc(50% - 10px);
  left: calc(50% + 3px);
  width: fit-content;
  font-size: 28px;
  text-align: left;
}

.c-maincut-item__date-text4 {
  top: calc(50% + 17px);
  left: 0;
  width: 100%;
  font-size: 18px;
  text-align: center;
}

.c-maincut-item__brand {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__brand {
    font-size: 16px;
  }
}

.c-maincut-item__details[open] .c-maincut-item__summary::after {
  content: "▲";
}

.c-maincut-item__summary {
  position: relative;
  display: flex;
  height: 32px;
  margin-top: 15px;
  background: var(--gradation-01);
  color: var(--color-00-white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__summary {
    height: 44px;
    font-size: 16px;
    transition: filter 200ms;
  }

  .c-maincut-item__summary:hover {
    filter: brightness(1.1);
  }
}

.c-maincut-item__summary::-webkit-details-marker {
  display: none; /* 矢印を消す */
}

.c-maincut-item__summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--color-02_black);
  font-size: 12px;
  line-height: 1;
  content: "▼";
  transform: translateY(-50%);
}

@media print, screen and (width >=768px) {
  .c-maincut-item__summary::after {
    font-size: 16px;
  }
}

.c-maincut-item__name {
  margin: 15px 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__name {
    font-size: 16px;
  }
}

.c-maincut-item__color {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__color {
    font-size: 16px;
  }
}

.c-maincut-item__size {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__size {
    font-size: 16px;
  }
}

.c-maincut-item__price {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__price {
    font-size: 16px;
  }
}

.c-maincut-item__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__note1 {
    font-size: 14px;
  }
}

.c-maincut-item__date1, .c-maincut-item__date2 {
  margin: 0;
  color: var(--color-01-brown);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__date1, .c-maincut-item__date2 {
    font-size: 18px;
  }
}

.c-maincut-item__single-button {
  margin: 10px 0 20px;
}

.c-maincut-item__buttons {
  display: grid;
  margin: 10px 0 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__buttons {
    gap: 14px;
  }
}

.c-maincut-item__button {
  height: 38px;
}

.c-maincut-item__shop-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__shop-title {
    font-size: 16px;
  }
}

.c-maincut-item__shop-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-maincut-item__shop-text {
    font-size: 14px;
  }
}

.c-maincut-item__shop-text span::after {
  content: " / ";
}

.c-maincut-item__shop-text span:last-child::after {
  content: none;
}

.c-top-contents {
  position: relative;
  z-index: 1;
}

@media print, screen and (width >=768px) {
  .c-top-contents {
    width: 100%;
    min-width: 1200px;
    margin: auto;
  }
}

.c-top-contents__main {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-top-contents__main {
    margin-top: 0;
    margin-right: auto;
    padding-bottom: clamp(257px, 21.1458333333vw, 406px);
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__main.-right {
    margin-right: 0;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__main.-right .c-top-contents__image {
    margin-right: 0;
    margin-left: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__main.-right .c-top-contents__content {
    top: clamp(393px, 32.3958333333vw, 622px);
    right: auto;
    left: clamp(132px, 10.8854166667vw, 209px);
    width: clamp(475px, 39.1145833333vw, 751px);
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__main.-right .c-top-contents__content-main {
    padding: 62px 20px 50px 199px;
    padding-right: clamp(5px, 0.5208333333vw, 10px);
    padding-left: clamp(126px, 10.3645833333vw, 199px);
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__image {
    width: clamp(890px, 73.28125vw, 1407px);
  }
}

.c-top-contents__content {
  position: relative;
  height: 446px;
}

@media print, screen and (width >=768px) {
  .c-top-contents__content {
    position: absolute;
    top: clamp(408px, 33.59375vw, 645px);
    right: clamp(64px, 5.3125vw, 102px);
    width: clamp(464px, 38.2291666667vw, 734px);
  }
}

.c-top-contents__content-main {
  position: absolute;
  top: -34px;
  z-index: 2;
  width: 100%;
  margin-left: 20px;
  padding: 53px 20px 53px 16px;
  background-color: rgb(214 196 189 / 69%);
}

@media print, screen and (width >=768px) {
  .c-top-contents__content-main {
    position: relative;
    top: auto;
    margin-left: 0;
    padding: 62px 33px 50px;
    background-color: rgb(214 196 189 / 89%);
  }
}

@media print, screen and (width >=768px) {
  .c-top-contents__content-inner {
    margin: 0 auto 0 0;
  }
}

.c-top-contents__title {
  margin: 0 0 20px;
  color: var(--color-00-black);
  font-family: zen-old-mincho, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-contents__title {
    font-size: clamp(24px, 1.9270833333vw, 37px);
    line-height: clamp(33px, 2.65625vw, 51px);
  }
}

.c-top-contents__text {
  margin: 0;
  margin-top: 20px;
  color: var(--color-00-black);
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-contents__text {
    font-size: clamp(11.4px, 0.9375vw, 18px);
    line-height: clamp(22px, 1.7708333333vw, 34px);
  }
}

.c-top-contents__button {
  position: absolute;
  right: 86px;
  bottom: -40px;
}

@media print, screen and (width >=768px) {
  .c-top-contents__button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 38px;
  }
}

.c-top-contents__button a {
  position: relative;
  display: flex;
  width: fit-content;
  height: 53px;
  padding: 0 25px;
  color: var(--color-00-black);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: filter 200ms;
}

@media print, screen and (width >=768px) {
  .c-top-contents__button a {
    height: clamp(53.125px, 4.4270833333vw, 4.4270833333vw);
    padding: 0 clamp(43.75px, 3.6458333333vw, 3.6458333333vw);
  }
}

.c-top-contents__button a:hover {
  filter: brightness(1.1);
}

.c-top-contents__button a span {
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 8px;
  font-family: zen-old-mincho, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-top-contents__button a span {
    padding-bottom: clamp(5px, 0.4166666667vw, 0.4166666667vw);
    font-size: clamp(26.25px, 2.1875vw, 2.1875vw);
  }
}

.c-top-contents__button a::before {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-02-brown);
  content: "";
}

.c-top-contents__button a::after {
  position: absolute;
  top: 15px;
  right: -50px;
  z-index: 2;
  display: block;
  width: 64px;
  height: 13px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/arrow_button_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-top-contents__button a::after {
    top: clamp(21.875px, 1.8229166667vw, 1.8229166667vw);
    right: clamp(-21.875px, -1.8229166667vw, -1.8229166667vw);
    width: clamp(40px, 3.3333333333vw, 3.3333333333vw);
    height: clamp(8.125px, 0.6770833333vw, 0.6770833333vw);
  }
}

.c-cosme {
  position: relative;
  z-index: 1;
  background-color: var(--color-00-brown);
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-cosme {
    min-width: 1200px;
  }
}

.c-cosme__image {
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-cosme__image {
    min-width: 1200px;
  }
}

.c-cosme__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

@media print, screen and (width >=768px) {
  .c-cosme__inner {
    padding: 120px 0 0;
  }
}

.c-cosme__title {
  font-size: 30px;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-cosme__title {
    font-size: 49px;
    line-height: 1.3;
  }
}

.c-cosme__title.-top-line::before {
  display: block;
  width: 210px;
  margin: 0 auto 70px;
  content: "";
  border-top: 1px solid var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-cosme__title.-top-line::before {
    margin-bottom: 120px;
  }
}

.c-cosme__content {
  padding-bottom: 70px;
  text-align: center;
}

.c-cosme__content:last-of-type {
  padding-bottom: 120px;
}

@media print, screen and (width >=768px) {
  .c-cosme__content {
    margin: auto;
    padding-bottom: 120px;
  }
}

.c-cosme__text {
  margin: 30px 0 50px;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
}

@media print, screen and (width >=768px) {
  .c-cosme__text {
    width: 630px;
    margin: auto;
    padding: 50px 0;
    font-size: 20px;
  }
}

.c-cosme__button {
  width: 236px;
  margin: auto;
}

@media print, screen and (width >=768px) {
  .c-cosme__button {
    width: 439px;
    height: 85px;
  }
}

.c-cosme__button a {
  position: relative;
  display: flex;
  width: 100%;
  height: 53px;
  color: var(--color-00-black);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-cosme__button a {
    height: 100%;
    transition: filter 200ms;
  }
}

.c-cosme__button a:hover {
  filter: brightness(1.1);
}

.c-cosme__button a span {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 10px;
  padding-bottom: 8px;
  font-family: zen-old-mincho, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-cosme__button a span {
    font-size: 42px;
  }
}

.c-cosme__button a::before {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-02-brown);
  content: "";
}

.c-cosme__button a::after {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 2;
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/icon_blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-cosme__button a::after {
    top: 50%;
    right: 52px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
  }
}

.c-cosme__button > div {
  position: relative;
  display: flex;
  width: 100%;
  height: 53px;
  background-color: #ccc;
  color: var(--color-00-black);
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-cosme__button > div {
    height: 100%;
  }
}

.c-cosme__button > div span {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 10px;
  padding-bottom: 8px;
  font-family: zen-old-mincho, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-cosme__button > div span {
    font-size: 42px;
  }
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis {
    display: grid;
    width: clamp(1100px, 67.3250564334vw, 1193px);
    margin: auto;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis .c-cosme__button {
    width: 100%;
  }
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis-content {
    display: grid;
    width: 498px;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis-content:nth-child(n+3) .c-cosme__diagnosis-image {
    margin-top: 100px;
  }
}

.c-cosme__diagnosis-image {
  margin-top: 70px;
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis-image {
    margin-top: 0;
  }
}

.c-cosme__diagnosis-text {
  margin: 25px 0;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
}

@media print, screen and (width >=768px) {
  .c-cosme__diagnosis-text {
    font-size: 32px;
  }
}

.c-beautyjam {
  position: relative;
  z-index: 1;
  background-color: var(--color-00-white);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-beautyjam {
    min-width: 1200px;
  }
}

@media print, screen and (width >=768px) {
  .c-beautyjam__hidden {
    overflow: hidden;
  }
}

@media print, screen and (width >=768px) {
  .c-beautyjam__width200 {
    width: 200%;
    margin: 0 -50%;
  }
}

.c-beautyjam__inner {
  margin: 0 auto;
  padding: 120px 20px;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__inner {
    padding: 200px 0;
  }
}

.c-beautyjam__titlelogo {
  margin: auto;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__titlelogo {
    width: 640px;
  }
}

.c-beautyjam__contents {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 70px;
  margin-top: 50px;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__contents {
    width: clamp(1100px, 71.1458333333vw, 1366px);
    margin: 120px auto 0;
    margin-top: 120px;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 70px;
  }
}

@media print, screen and (width >=768px) {
  .c-beautyjam__content {
    grid-row: span 4;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
  }
}

.c-beautyjam__title {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__title {
    margin-top: 32px;
    margin-bottom: 44px;
    font-size: 32px;
    line-height: 1.3;
  }
}

.c-beautyjam__button {
  width: 236px;
  margin: auto;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__button {
    width: 439px;
    height: 85px;
  }
}

.c-beautyjam__button a {
  position: relative;
  display: flex;
  width: 100%;
  height: 53px;
  color: var(--color-00-white);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__button a {
    height: 100%;
    transition: opacity 200ms;
  }
}

.c-beautyjam__button a:hover {
  opacity: 0.7;
}

.c-beautyjam__button a span {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 10px;
  padding-bottom: 8px;
  font-family: zen-old-mincho, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__button a span {
    font-size: 42px;
  }
}

.c-beautyjam__button a::before {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-00-black);
  content: "";
}

@media print, screen and (width >=768px) {
  .c-beautyjam__button a::before {
    mix-blend-mode: multiply;
  }
}

.c-beautyjam__button a::after {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 2;
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/icon_blank_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-beautyjam__button a::after {
    top: 50%;
    right: 52px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
  }
}

.c-beautyjam__banner {
  margin-top: 70px;
  padding: 20px 15px;
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-beautyjam__banner {
    width: 1100px;
    margin: 120px auto 0;
    padding: 30px 40px 30px 60px;
  }
}

.c-beautyjam__banner a {
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__banner a {
    transition: opacity 200ms;
  }
}

.c-beautyjam__banner a:hover {
  opacity: 0.7;
}

.c-beautyjam__banner a p {
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-beautyjam__banner-inner {
    display: grid;
    grid-template-columns: 205px auto;
    gap: 40px;
    place-items: center;
  }
}

.c-beautyjam__banner-image img {
  width: 100%;
}

.c-beautyjam__banner-content {
  font-family: "Noto Sans JP", serif;
}

.c-beautyjam__banner-title {
  margin-top: 20px;
  font-size: 18px;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__banner-title {
    margin-top: 0;
    font-size: 26px;
    font-weight: bold;
  }
}

.c-beautyjam__banner-text {
  margin-top: 18px;
  font-size: 14px;
}

@media print, screen and (width >=768px) {
  .c-beautyjam__banner-text {
    font-size: 20px;
  }
}

.c-news {
  position: relative;
  z-index: 1;
  background-color: var(--color-00-brown);
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-news {
    min-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
  }
}

.c-news__inner {
  padding: 60px 20px 100px;
}

@media print, screen and (width >=768px) {
  .c-news__inner {
    width: 1100px;
    margin: 0 auto;
    padding: 120px 0;
  }
}

.c-news__title {
  margin: 0 0 50px;
  color: var(--color-00-white);
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-news__title {
    margin-bottom: 60px;
  }
}

.c-news__title h2 {
  margin: 0 0 5px;
  font-size: 32px;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-news__title h2 {
    font-size: 40px;
  }
}

.c-news__title p {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.07em;
}

@media print, screen and (width >=768px) {
  .c-news__title p {
    font-size: 18px;
  }
}

.c-news__tabs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 40px;
}

@media print, screen and (width >=768px) {
  .c-news__tabs {
    gap: 9px;
    margin-bottom: 40px;
  }
}

.c-news__tab {
  display: flex;
  width: 109px;
  height: 55px;
  padding: 8px 5px;
  background: var(--gradation-01);
  border: none;
  color: var(--color-00-white);
  cursor: pointer;
  transition: opacity 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-news__tab {
    width: 212px;
    height: 91px;
    padding: 24px 9px;
    transition: opacity 200ms;
  }

  .c-news__tab:hover {
    opacity: 0.7;
  }
}

.c-news__tab.-active {
  background-color: var(--color-01-brown);
  background-image: none;
}

.c-news__tab.-active span {
  color: var(--color-00-white);
}

.c-news__tab span {
  display: block;
  color: var(--color-01-text);
  font-size: 10px;
  line-height: 1.3;
  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__contents {
  margin-bottom: 50px;
}

@media print, screen and (width >=768px) {
  .c-news__contents {
    margin-bottom: 130px;
  }
}

.c-news__content {
  display: none;
}

.c-news__content.-active {
  display: block;
}

.c-news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  font-family: var(--font-noto-sans);
}

@media print, screen and (width >=768px) {
  .c-news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }
}

.c-news-list__item {
  padding: 20px 15px;
  background-color: var(--color-00-white);
  border: 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__head {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-news-list__head {
    gap: 24px;
  }
}

.c-news-list__image img {
  border: 1px solid var(--color-00-black);
}

.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 {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__link1 {
    font-size: 14px;
  }
}

.c-news-list__link1 a {
  color: var(--color-00-black);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list__link1 a:hover {
  opacity: 0.7;
}

.c-news-large-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media print, screen and (width >=768px) {
  .c-news-large-list {
    gap: 70px;
    margin-bottom: 100px;
  }
}

.c-news-large-list__item {
  padding: 20px 15px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-news-large-list__item {
    display: grid;
    padding: 30px 60px;
    grid-template-columns: 350px 1fr;
    gap: 45px;
    align-items: center;
  }
}

@media print, screen and (width >=768px) {
  .c-news-large-list__image {
    align-self: start;
  }
}

.c-news-large-list__image img {
  width: 100%;
  border: 1px solid var(--color-00-black);
}

.c-news-large-list__content {
  font-family: var(--font-noto-sans);
}

.c-news-large-list__title {
  margin-top: 10px;
  font-family: var(--font-main);
  font-size: 35px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news-large-list__title {
    margin-top: 0;
    font-size: 40px;
    line-height: 1.1;
  }
}

.c-news-large-list__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-large-list__area {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-large-list__brand {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-large-list__brand {
    margin-top: 20px;
    font-size: 17px;
  }
}

.c-news-large-list__text {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-large-list__text {
    margin-top: 20px;
    font-size: 14px;
  }
}

.c-news-large-list__text a {
  color: var(--color-00-black);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-large-list__text a:hover {
  opacity: 0.7;
}

.c-footer-navigation {
  position: relative;
  top: 0;
  z-index: 1;
  background-color: var(--color-00-brown);
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-footer-navigation {
    min-width: 1200px;
  }
}

.c-footer-navigation a {
  color: inherit;
}

.c-footer-navigation__inner {
  padding: 80px 20px 0;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__inner {
    width: 1100px;
    margin: 0 auto;
    padding: 200px 0 0;
  }
}

.c-footer-navigation__head {
  text-align: center;
}

.c-footer-navigation__title::after {
  display: block;
  width: 98px;
  height: 1px;
  margin: 20px auto 0;
  content: "";
  border-top: 1px solid var(--color-00-white);
}

.c-footer-navigation__title h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 0.055em;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__title h2 {
    font-size: 39px;
  }
}

.c-footer-navigation__title h2 span {
  color: var(--color-01-orange);
}

.c-footer-navigation__title p {
  margin: 0;
}

.c-footer-navigation__title p:nth-of-type(1) {
  font-size: 18px;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__title p:nth-of-type(1) {
    font-size: 25px;
  }
}

.c-footer-navigation__title p:nth-of-type(2) {
  font-size: 16px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__title p:nth-of-type(2) {
    font-size: 20px;
  }
}

.c-footer-navigation__days {
  margin: 20px 0 30px;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__days {
    margin-bottom: 70px;
    font-size: 30px;
  }
}

.c-footer-navigation__button {
  width: 250px;
  height: 50px;
  margin: 0 auto 70px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button {
    width: 340px;
    height: 60px;
    margin: 0 auto 113px;
  }
}

.c-footer-navigation__button a {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: var(--color-02-brown);
  border-radius: 25px;
  color: var(--color-00-white);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button a {
    border-radius: 30px;
    transition: opacity 300ms;
  }

  .c-footer-navigation__button a:hover {
    opacity: 0.7;
  }
}

.c-footer-navigation__button span {
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button span {
    font-size: 20px;
  }
}

.c-footer-navigation__button-viewmore {
  display: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-viewmore {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin-top: 0;
  }
}

.c-footer-navigation__button-viewmore p {
  position: relative;
  display: flex;
  width: fit-content;
  height: 53px;
  padding: 0 25px;
  color: var(--color-00-black);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-viewmore p {
    height: 63px;
    padding: 0 45px;
  }
}

.c-footer-navigation__button-viewmore p span {
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 8px;
  font-family: zen-old-mincho, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-viewmore p span {
    font-size: 34px;
  }
}

.c-footer-navigation__button-viewmore p::before {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradation-01);
  content: "";
}

.c-footer-navigation__button-viewmore p::after {
  position: absolute;
  top: 15px;
  right: -50px;
  z-index: 2;
  display: block;
  width: 64px;
  height: 13px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/arrow_burger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-footer-navigation__button-viewmore.-arrow p::after {
  top: 30px;
  right: -30px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/arrow_burger.svg");
}

.c-footer-navigation__button-viewmore.-blank p {
  width: 100%;
}

.c-footer-navigation__button-viewmore.-blank p::after {
  top: 23px;
  right: 15px;
  width: 23px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/icon_blank.svg");
}

.c-footer-navigation__button-coming {
  display: none;
  height: 100%;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-coming {
    display: block;
  }
}

.c-footer-navigation__button-coming div {
  position: relative;
  display: flex;
  width: 100%;
  height: 53px;
  background-color: #ccc;
  color: var(--color-00-black);
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-coming div {
    height: 100%;
  }
}

.c-footer-navigation__button-coming div span {
  padding-bottom: 8px;
  font-size: 24px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__button-coming div span {
    font-size: 34px;
  }
}

.c-footer-navigation__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 73px 62px;
    padding: 0 45px;
  }
}

.c-footer-navigation__item {
  flex: 0 0 336px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item {
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
  }
}

.c-footer-navigation__item a {
  display: block;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item a {
    display: grid;
    align-items: center;
    gap: 15px;
    transition: opacity 300ms;
    grid-template-columns: auto;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }

  .c-footer-navigation__item a:hover {
    opacity: 0.7;
  }
}

.c-footer-navigation__item-coming {
  display: block;
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-coming {
    display: grid;
    align-items: center;
    gap: 15px;
    grid-template-columns: auto;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}

.c-footer-navigation__item-image {
  margin-right: 14px;
  box-shadow: 15px 15px 0 rgb(165 135 124);
}

.c-footer-navigation__item-image img {
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-image {
    margin-right: 9px;
    box-shadow: 9px 8px 0 rgb(165 135 124);
  }
}

.c-footer-navigation__item-link {
  display: grid;
  height: 100%;
  margin-top: 26px;
  text-decoration: none;
  grid-template-columns: 1fr 62px;
  gap: 20px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-link {
    display: block;
    margin-top: 0;
  }
}

.c-footer-navigation__item-text {
  position: relative;
  display: block;
  color: var(--color-00-black);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-text {
    font-size: 28px;
    text-align: left;
  }
}

.c-footer-navigation__item-text::after {
  position: absolute;
  top: calc(50% - 6px);
  right: -15px;
  display: block;
  width: 64px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-text::after {
    content: none;
  }
}

.c-footer-navigation__item-arrow {
  margin-top: 14px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-arrow {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__item-arrow img {
    margin-bottom: 5px;
  }
}

.c-footer-navigation__top {
  position: relative;
  display: flex;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.5;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__top {
    margin-top: 50px;
    font-size: 26px;
    letter-spacing: 0.1em;
    transition: opacity 200ms;
  }
}

@media print, screen and (width >=768px) and (width <= 1340px) {
  .c-footer-navigation__top {
    font-size: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__top:hover {
    opacity: 0.7;
  }
}

.c-footer-navigation__top::after {
  display: block;
  width: 30px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  flex: 0 0 30px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__top::after {
    flex: 0 0 50px;
    width: 50px;
    height: 14px;
  }
}

@media print, screen and (width >=768px) and (width <= 1340px) {
  .c-footer-navigation__top::after {
    flex: 0 0 40px;
    width: 40px;
    height: 13px;
  }
}

.c-footer-navigation__beautyjam {
  margin-top: 100px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam {
    margin-top: 120px;
  }
}

.c-footer-navigation__beautyjam-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  margin-right: -20px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-logo {
    margin-right: auto;
  }
}

.c-footer-navigation__beautyjam-logo::after {
  width: auto;
  height: 1px;
  background-color: var(--color-00-black);
  content: "";
}

.c-footer-navigation__beautyjam-inner {
  padding: 36px 0 0;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-inner {
    padding: 0;
  }
}

.c-footer-navigation__beautyjam-content {
  display: grid;
  color: var(--color-00-black);
  grid-template-rows: repeat(2, 1fr);
  gap: 31px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-content {
    width: 677px;
    margin: 70px 157px 70px 265px;
  }
}

.c-footer-navigation__beautyjam-content a {
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-content a {
    transition: opacity 200ms;
  }
}

.c-footer-navigation__beautyjam-content a:hover {
  opacity: 0.7;
}

.c-footer-navigation__beautyjam-item {
  display: grid;
  align-items: center;
  grid-template-columns: 141px auto;
  gap: 25px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-item {
    grid-template-columns: 203px auto;
    width: 677px;
    gap: 25px;
  }
}

.c-footer-navigation__beautyjam-text {
  font-size: 18px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__beautyjam-text {
    font-size: 28px;
  }
}

.c-footer-navigation__banner {
  margin-top: 70px;
  padding: 20px 15px;
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__banner {
    width: 1100px;
    margin: 70px auto 0;
    padding: 30px 40px 30px 60px;
  }
}

.c-footer-navigation__banner a {
  text-decoration: none;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__banner a {
    transition: opacity 200ms;
  }
}

.c-footer-navigation__banner a:hover {
  opacity: 0.7;
}

.c-footer-navigation__banner a p {
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__banner-inner {
    display: grid;
    grid-template-columns: 205px auto;
    gap: 40px;
    place-items: center;
  }
}

.c-footer-navigation__banner-image img {
  width: 100%;
}

.c-footer-navigation__banner-content {
  font-family: "Noto Sans JP", serif;
}

.c-footer-navigation__banner-title {
  margin-top: 20px;
  font-size: 18px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__banner-title {
    margin-top: 0;
    font-size: 26px;
    font-weight: bold;
  }
}

.c-footer-navigation__banner-text {
  margin-top: 18px;
  font-size: 14px;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__banner-text {
    font-size: 20px;
  }
}

.c-footer-navigation__text2 {
  position: relative;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__text2 {
    margin-top: 64px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.c-footer-navigation__text3 {
  position: relative;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

@media print, screen and (width >=768px) {
  .c-footer-navigation__text3 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.c-button__link {
  display: flex;
  width: 100%;
  height: 38px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-button__link {
    height: 55px;
    border-radius: 30px;
    font-size: 20px;
  }
}

.c-button__link.-reserve {
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-brown);
  color: var(--color-01-brown);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-button__link.-reserve:hover {
    opacity: 0.7;
  }
}

.c-button__link.-netshop {
  background: var(--gradation-01);
  border: 0;
  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: var(--gradation-01);
  border: 0;
  color: var(--color-00-white);
  transition: opacity 300ms;
}

@media print, screen and (width >=768px) {
  .c-button__link.-normal:hover {
    opacity: 0.7;
  }
}

.c-banners {
  padding: 100px 20px;
}

@media print, screen and (width >=768px) {
  .c-banners {
    width: 1100px;
    margin: auto;
    padding: 70px 0 120px;
  }
}

.c-banners__calender {
  margin-bottom: 25px;
}

@media print, screen and (width >=768px) {
  .c-banners__calender {
    margin-bottom: 50px;
  }
}

.c-banners__calender-button-link {
  position: relative;
  display: flex;
  width: 100%;
  height: 153px;
  background: var(--gradation-01);
  color: var(--color-00-white);
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  transition: filter 200ms;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

@media print, screen and (width >=768px) {
  .c-banners__calender-button-link {
    height: 225px;
  }
}

.c-banners__calender-button-link:hover {
  filter: brightness(1.1);
}

.c-banners__calender-button-text-en {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  gap: 8px;
}

@media print, screen and (width >=768px) {
  .c-banners__calender-button-text-en {
    font-size: 40px;
    gap: 13px;
  }
}

.c-banners__calender-button-text-en::before {
  display: block;
  width: 29px;
  height: 29px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2025autumn/assets/images/common/icon_calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-banners__calender-button-text-en::before {
    width: 36px;
    height: 36px;
  }
}

.c-banners__calender-button-text-jp {
  font-size: 20px;
}

@media print, screen and (width >=768px) {
  .c-banners__calender-button-text-jp {
    font-size: 18px;
  }
}

.c-banners__tokyu {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media print, screen and (width >=768px) {
  .c-banners__tokyu {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-content: center;
  }
}

.c-banners__tokyu-item {
  width: 100%;
}

.c-banners__tokyu a {
  display: flex;
  background-color: var(--color-00-white);
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-banners__tokyu a {
    height: 167px;
  }
}

@media (hover: hover) {
  .c-banners__tokyu a {
    transition: opacity 200ms;
  }

  .c-banners__tokyu a:hover {
    opacity: 0.7;
  }
}

.c-lower-hero {
  position: relative;
}

.c-lower-hero__image {
  width: 100%;
  height: auto;
}

@media print, screen and (width >=768px) {
  .c-lower-hero__image {
    min-width: 1200px;
    height: 973px;
  }
}

.c-lower-hero__image img {
  width: 100%;
  height: auto;
}

@media print, screen and (width >=768px) {
  .c-lower-hero__image img {
    object-position: center center;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.c-lower-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 40px 20px;
}

@media print, screen and (width >=768px) {
  .c-lower-hero__content {
    max-width: 1466px;
    margin: 0 auto;
    padding: 90px 50px 0;
  }
}

.c-lower-hero__title {
  color: var(--color-00-white);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-lower-hero__title {
    font-size: 52px;
  }
}

.c-lower-contents {
  position: relative;
  overflow: hidden;
  background-color: var(--color-00-brown);
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-lower-contents {
    min-width: 1200px;
  }
}

.c-lower-contents__inner {
  padding: 45px 20px 90px;
}

@media print, screen and (width >=768px) {
  .c-lower-contents__inner {
    width: 1100px;
    margin: auto;
    padding: 120px 0;
  }
}

.c-lower-contents__title {
  font-size: 19px;
}

@media print, screen and (width >=768px) {
  .c-lower-contents__title {
    font-size: 40px;
  }
}

.c-lower-contents__text {
  margin: 32px 0 70px;
  font-size: 13px;
}

@media print, screen and (width >=768px) {
  .c-lower-contents__text {
    margin: 43px 0 120px;
    font-size: 21px;
  }
}

.c-special-care {
  position: relative;
  background-color: var(--color-background-02);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-special-care {
    min-width: 1200px;
  }
}

.c-special-care__inner {
  padding: 120px 20px;
}

@media print, screen and (width >=768px) {
  .c-special-care__inner {
    width: 1100px;
    margin: auto;
    padding: 227px 0 200px;
  }
}

.c-relaxing {
  position: relative;
  background-color: var(--color-background-02);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-relaxing {
    min-width: 1200px;
  }
}

.c-relaxing__inner {
  padding: 100px 20px 110px;
}

@media print, screen and (width >=768px) {
  .c-relaxing__inner {
    width: 1100px;
    margin: auto;
    padding: 150px 0 200px;
  }
}

.c-trend-color {
  position: relative;
  background-color: var(--color-background-06);
  color: var(--color-00-black);
}

.c-trend-color__inner {
  padding: 100px 20px 110px;
}

@media print, screen and (width >=768px) {
  .c-trend-color__inner {
    width: 1100px;
    margin: auto;
    padding: 150px 0 200px;
  }
}

.c-list-item {
  font-family: var(--font-noto-sans);
}

.c-list-item + .c-list-item {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-list-item + .c-list-item {
    margin-top: 120px;
  }
}

.c-list-item__body {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-list-item__body {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
  }
}

.c-list-item__copy {
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-list-item__copy {
    margin-bottom: 50px;
  }
}

.c-list-item__copy p {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-list-item__copy p {
    font-size: 22px;
  }
}

.c-list-item__copy sup {
  font-size: 80%;
  vertical-align: super;
}

.c-list-item__copy small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-list-item__copy small {
    font-size: 16px;
  }
}

.c-list-item__layout {
  display: grid;
  grid-template-areas: "content1 content2" "content4 content4" "content3 content3";
  grid-template-columns: 130px 1fr;
  gap: 15px;
  align-items: start;
}

@media print, screen and (width >=768px) {
  .c-list-item__layout {
    grid-template: "content1 content2" auto "content1 content3" 1fr "content4 content4" auto / 350px 1fr;
    gap: 15px 30px;
    align-items: start;
  }
}

.c-list-item__layout-content1 {
  grid-area: content1;
}

.c-list-item__layout-content2 {
  grid-area: content2;
}

@media print, screen and (width >=768px) {
  .c-list-item__layout-content2 {
    align-self: self-end;
  }
}

.c-list-item__layout-content3 {
  grid-area: content3;
}

@media print, screen and (width >=768px) {
  .c-list-item__layout-content3 {
    align-self: self-start;
  }
}

.c-list-item__layout-content3:not(:has(p)) {
  display: none;
}

.c-list-item__layout-content4 {
  grid-area: content4;
}

@media print, screen and (width >=768px) {
  .c-list-item__layout-content4 {
    justify-content: center;
    margin-top: 20px;
  }
}

.c-list-item__layout-content4:not(:has(.c-button)) {
  display: none;
}

@media print, screen and (width >=768px) {
  .c-list-item__image {
    grid-area: image;
  }
}

.c-list-item__image img {
  border: solid 1px var(--color-00-black);
}

.c-list-item__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__brand {
    font-size: 16px;
  }
}

.c-list-item__name {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__name {
    font-size: 16px;
  }
}

.c-list-item__color {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__color {
    font-size: 16px;
  }
}

.c-list-item__size-price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.c-list-item__size {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__size {
    font-size: 16px;
  }
}

.c-list-item__price {
  margin: 0 0 10px auto;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
}

@media print, screen and (width >=768px) {
  .c-list-item__price {
    font-size: 16px;
  }
}

.c-list-item__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__note1 {
    font-size: 14px;
  }
}

.c-list-item__date1, .c-list-item__date2 {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__date1, .c-list-item__date2 {
    font-size: 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-list-item__single-button {
    width: 350px;
    margin: 0 auto;
  }
}

.c-list-item__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

@media print, screen and (width >=768px) {
  .c-list-item__buttons {
    width: 535px;
    gap: 14px;
    margin: 0 auto;
  }
}

.c-list-item__button {
  height: 38px;
}

@media print, screen and (width >=768px) {
  .c-list-item__button {
    height: 55px;
  }
}

.c-list-item__shop {
  margin-top: 10px;
}

.c-list-item__shop-title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__shop-title {
    font-size: 16px;
  }
}

.c-list-item__shop-text {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item__shop-text {
    font-size: 14px;
  }
}

.c-list-item__shop-text span::after {
  content: " / ";
}

.c-list-item__shop-text span:last-child::after {
  content: none;
}

.c-list-item-large {
  font-family: var(--font-noto-sans);
}

.c-list-item-large + .c-list-item-large {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-list-item-large + .c-list-item-large {
    margin-top: 120px;
  }
}

.c-list-item-large__body {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__body {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

@media print, screen and (width >=768px) {
  .c-list-item-large__image {
    grid-area: image;
  }
}

.c-list-item-large__image img {
  border: solid 1px var(--color-00-black);
}

.c-list-item-large__single-button {
  margin: 20px 0;
}

@media print, screen and (width >=768px) and (width >=768px) {
  .c-list-item-large__single-button {
    width: 350px;
    margin: 30px auto 50px;
  }
}

.c-list-item-large__buttons {
  display: grid;
  margin: 20px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__buttons {
    width: 535px;
    gap: 35px;
    margin: 30px auto 50px;
  }
}

.c-list-item-large__buttons:not(:has(.c-button)) {
  display: none;
}

.c-list-item-large__button {
  height: 38px;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__button {
    height: 55px;
  }
}

.c-list-item-large__copy {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__copy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.c-list-item-large__copy p {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__copy p {
    font-size: 29px;
  }
}

.c-list-item-large__copy sup {
  font-size: 80%;
  vertical-align: super;
}

.c-list-item-large__copy small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__copy small {
    font-size: 16px;
  }
}

.c-list-item-large__copy::after {
  display: block;
  width: 165px;
  height: 1px;
  margin: 20px auto 0;
  background-color: var(--color-00-black);
  content: "";
}

@media print, screen and (width >=768px) {
  .c-list-item-large__copy::after {
    width: 266px;
    margin: 40px auto 0;
  }
}

@media print, screen and (width >=768px) {
  .c-list-item-large__brand-name-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
  }
}

.c-list-item-large__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__brand {
    font-size: 20px;
  }
}

.c-list-item-large__name {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__name {
    margin: 0;
    font-size: 20px;
  }
}

.c-list-item-large__color-size-price-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__color-size-price-wrapper {
    gap: 20px;
  }
}

.c-list-item-large__color {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__color {
    font-size: 18px;
  }
}

.c-list-item-large__size {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__size {
    font-size: 18px;
  }
}

.c-list-item-large__price {
  margin-left: auto;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__price {
    margin-left: 0;
    font-size: 18px;
    text-align: left;
  }
}

.c-list-item-large__note1 {
  margin: 10px 0;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__note1 {
    font-size: 14px;
  }
}

.c-list-item-large__date1, .c-list-item-large__date2 {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__date1, .c-list-item-large__date2 {
    display: inline-block;
    margin-right: 20px;
    font-size: 18px;
  }
}

.c-list-item-large__shop {
  margin-top: 20px;
}

.c-list-item-large__shop-title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__shop-title {
    font-size: 18px;
  }
}

.c-list-item-large__shop-text {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-list-item-large__shop-text {
    font-size: 18px;
  }
}

.c-list-item-large__shop-text span::after {
  content: " / ";
}

.c-list-item-large__shop-text span:last-child::after {
  content: none;
}

.c-list-item-large__date {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  display: block;
  width: 95px;
  height: 95px;
  margin: 0 auto;
  background-color: var(--color-02-brown);
  border-radius: 50%;
  color: var(--color-00-white);
  font-family: var(--font-main);
  line-height: 1;
  transform-origin: left top;
}

@media print, screen and (width <=767px) {
  .c-list-item-large__date {
    top: 10px;
    left: 10px;
    transform: scale(0.8);
  }
}

.c-list-item-large__date > span {
  position: absolute;
  display: block;
  letter-spacing: 0;
}

.c-list-item-large__date-text1 {
  top: calc(50% - 33px);
  left: calc(50% - 33px);
  width: fit-content;
  font-size: 28px;
  text-align: right;
}

.c-list-item-large__date-text2 {
  top: calc(50% - 18px);
  left: 0;
  width: 100%;
  font-size: 20px;
  text-align: center;
}

.c-list-item-large__date-text3 {
  top: calc(50% - 10px);
  left: calc(50% + 3px);
  width: fit-content;
  font-size: 28px;
  text-align: left;
}

.c-list-item-large__date-text4 {
  top: calc(50% + 17px);
  left: 0;
  width: 100%;
  font-size: 18px;
  text-align: center;
}

.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);
}



