

@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-text: #184a78;
  --color-00-accent: #f0f033;
  --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-text);
  font-family: var(--font-main);
}

/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media print, screen and (width <=767px) {
  .-pc-only {
    display: none !important;
  }
}

@media print, screen and (width >=768px) {
  .-sp-only {
    display: none !important;
  }
}

@media print, screen and (width <=767px) {
  #tab {
    scroll-margin-top: 70px;
  }
}

/* ==========================================================================
Components
========================================================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 71px;
  background-color: rgb(255 255 255 / 91%);
  border-radius: 0 0 25px 25px;
  opacity: 0;
  color: var(--color-00-text);
  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-text);
}

.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-text);
  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-text);
}

.c-burger-menu__body {
  position: relative;
  overflow: scroll;
  height: auto;
  height: 100%;
  max-height: 100lvh;
  margin: 0 0 0 auto;
  padding-top: 109px;
  background-color: rgb(255 255 255 / 91%);
}

@media print, screen and (width >=768px) {
  .c-burger-menu__body {
    height: 100%;
  }
}

.c-burger-menu__logo {
  aspect-ratio: 303/76;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__logo {
    width: 303px;
    max-width: none;
  }
}

.c-burger-menu__logo a {
  display: block;
}

.c-burger-menu__inner {
  padding: 20px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__inner {
    max-width: 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-text);
  grid-template-columns: 130px 1fr;
  gap: 10px;
  text-decoration: none;
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-link {
    grid-template-columns: 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-link:hover img {
    transform: scale(1.05);
  }
}

.c-burger-menu__item-image {
  overflow: hidden;
}

.c-burger-menu__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.c-burger-menu__item-content {
  font-size: 15px;
}

@media print, screen and (width >=768px) {
  .c-burger-menu__item-content {
    margin-right: -1em;
    font-size: 23px;
    letter-spacing: -0.01em;
  }
}

.c-burger-menu__item-text-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-text);
  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%;
}

@media print, screen and (width >=768px) {
  .c-hero {
    min-width: 1200px;
  }
}

.c-hero h1 {
  display: block;
  width: 100%;
  height: auto;
}

.c-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-content-wrapper {
  position: relative;
  z-index: 10;
}

@media print, screen and (width >=768px) {
  .c-content-wrapper {
    min-width: 1200px;
  }
}

.c-content-wrapper__inner {
  position: relative;
}

.c-content-wrapper__inner::before {
  position: absolute;
  left: 50%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  content: "";
  transform: translateX(-50%);
}

@media print, screen and (width <=767px) {
  .c-content-wrapper__inner::before {
    top: -100px;
    height: 100px;
    background-size: max(100%, 400px) 100px;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper__inner::before {
    top: -200px;
    height: 200px;
    background-size: 100% 200px;
  }
}

.c-content-wrapper.-home {
  overflow: hidden;
}

.c-content-wrapper.-home .c-content-wrapper__inner {
  background-color: rgb(252 248 253 / 97%);
  color: #000;
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-home .c-content-wrapper__inner {
    margin-top: calc(180.2666666667vw + 20px);
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-home .c-content-wrapper__inner {
    margin-top: calc(56.25vw + 100px);
  }
}

@media screen and (width >=768px) and (width < 1200px) {
  .c-content-wrapper.-home .c-content-wrapper__inner {
    margin-top: 775px;
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-home .c-content-wrapper__inner::before {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_pink_sp.svg");
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-home .c-content-wrapper__inner::before {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_pink_pc.svg");
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-make-look .c-content-wrapper__inner {
    margin-top: calc(140vw - 10px);
    padding-top: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-make-look .c-content-wrapper__inner {
    margin-top: calc(56.4082278481vw + 100px);
    padding-top: 0;
  }
}

@media screen and (width >=768px) and (width < 1200px) {
  .c-content-wrapper.-make-look .c-content-wrapper__inner {
    margin-top: 776px;
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-make-look .c-content-wrapper__inner::before {
    top: -80px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_pink_sp.svg");
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-make-look .c-content-wrapper__inner::before {
    top: -200px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_pink_pc.svg");
  }
}

.c-content-wrapper.-make-look .c-content-wrapper__content {
  background-color: rgb(252 248 253 / 97%);
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner {
    margin-top: calc(117.2588832487vw - 15px);
    padding-top: 10px;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner {
    margin-top: calc(56.149341142vw + 100px);
    padding-top: 0;
  }
}

@media screen and (width >=768px) and (width < 1200px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner {
    margin-top: 776px;
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner::before {
    top: -90px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_green_sp.svg");
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-new-items .c-content-wrapper__inner::before {
    top: -200px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_green_pc.svg");
  }
}

.c-content-wrapper.-new-items .c-content-wrapper__content {
  background-color: rgb(249 254 252 / 97%);
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-new-items .c-content-wrapper__content {
    padding-bottom: 80px;
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-nails .c-content-wrapper__inner {
    margin-top: calc(117.2588832487vw - 15px);
    padding-top: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-nails .c-content-wrapper__inner {
    margin-top: calc(56.4082278481vw + 100px);
    padding-top: 0;
  }
}

@media screen and (width >=768px) and (width < 1200px) {
  .c-content-wrapper.-nails .c-content-wrapper__inner {
    margin-top: 776px;
  }
}

@media print, screen and (width <=767px) {
  .c-content-wrapper.-nails .c-content-wrapper__inner::before {
    top: -90px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_yellow_sp.svg");
  }
}

@media print, screen and (width >=768px) {
  .c-content-wrapper.-nails .c-content-wrapper__inner::before {
    top: -200px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_yellow_pc.svg");
  }
}

.c-content-wrapper.-nails .c-content-wrapper__content {
  background-color: rgb(254 253 248 / 97%);
}

.c-lower-hero {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-lower-hero {
    min-width: 1200px;
  }
}

@media print, screen and (width >=768px) {
  .c-lower-hero.-make-look picture {
    height: auto;
  }
}

.c-lower-hero picture {
  display: block;
  width: 100%;
  height: auto;
}

.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-lower-title {
  position: relative;
  padding: 40px 0 60px;
}

@media print, screen and (width >=768px) {
  .c-lower-title {
    width: 840px;
    margin: 0 auto;
    padding: 40px 0 130px;
  }
}

.c-lower-title__main {
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-lower-title__main {
    margin: 0;
  }
}

.c-lower-title__lead {
  margin: 36px 40px 0;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.92;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-lower-title__lead {
    width: 520px;
    margin: 8px 0 0 auto;
    font-size: 18px;
    line-height: 2.55;
  }
}

.c-lower-title.-make-look .c-lower-title__main {
  width: 89.3333333333vw;
}

@media print, screen and (width >=768px) {
  .c-lower-title.-make-look .c-lower-title__main {
    width: 620px;
  }
}

.c-lower-title.-new-items {
  padding-top: 40px;
  padding-bottom: 0;
}

@media print, screen and (width >=768px) {
  .c-lower-title.-new-items {
    width: 740px;
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.c-lower-title.-new-items .c-lower-title__main {
  width: 78.1333333333vw;
}

@media print, screen and (width >=768px) {
  .c-lower-title.-new-items .c-lower-title__main {
    width: 506px;
  }
}

.c-lower-title.-nails {
  padding-top: 40px;
  padding-bottom: 30px;
}

@media print, screen and (width >=768px) {
  .c-lower-title.-nails {
    width: 820px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.c-lower-title.-nails .c-lower-title__main {
  width: 87.7333333333vw;
}

@media print, screen and (width >=768px) {
  .c-lower-title.-nails .c-lower-title__main {
    width: 576px;
  }
}

.c-fixed-background {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

@media print, screen and (width >=768px) {
  .c-fixed-background {
    min-width: 1200px;
    padding: 0;
  }
}

.c-fixed-background__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media print, screen and (width <=767px) {
  .c-fixed-background__background {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/fixed_background_sp.webp");
    background-position: top center;
  }
}

@media print, screen and (width >=768px) {
  .c-fixed-background__background {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/fixed_background_pc.webp");
  }
}

.c-fixed-background__content {
  position: relative;
  z-index: 2;
}

@media print, screen and (width >=768px) {
  .c-fixed-background__content {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-top-contents {
  margin-top: 30px;
  background-color: var(--color-00-white);
  border-right: 1px solid var(--color-00-black);
  border-left: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-top-contents {
    margin-top: 70px;
  }
}

.c-top-contents__section-header {
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  border-top: 1px solid var(--color-00-black);
}

.c-top-contents__section-body {
  --shadow-color: #ccc;

  display: grid;
  padding: 30px 20px;
  border-top: 1px solid var(--color-00-black);
  grid-template-columns: 1fr;
  gap: 40px;
  grid-template-areas: "image" "content";
}

.c-top-contents__section-body.-section1 {
  --shadow-color: #fbf4fc;
}

.c-top-contents__section-body.-section2 {
  --shadow-color: #edfdf6;
}

.c-top-contents__section-body.-section3 {
  --shadow-color: #f9f4df;
}

.c-top-contents__section-body.-section4 {
  --shadow-color: #eef8fc;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-body {
    padding: 50px 40px;
    gap: 40px;
    align-items: center;
  }

  .c-top-contents__section-body.-section1 {
    grid-template-columns: 614px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section2 {
    grid-template-columns: 1fr 614px;
    grid-template-areas: "content image";
  }

  .c-top-contents__section-body.-section2 .c-top-contents__section-content::before {
    right: auto;
    left: 0;
  }

  .c-top-contents__section-body.-section3 {
    grid-template-columns: 614px 1fr;
    grid-template-areas: "image content";
  }

  .c-top-contents__section-body.-section4 {
    grid-template-columns: 1fr 614px;
    grid-template-areas: "content image";
  }

  .c-top-contents__section-body.-section4 .c-top-contents__section-content::before {
    right: auto;
    left: 0;
  }
}

@media print, screen and (width >=768px) and (width >=768px) {
  .c-top-contents__section-body.-section4 .c-top-contents__section-title {
    z-index: 2;
    margin-right: -1em;
    letter-spacing: -0.03em;
  }
}

.c-top-contents__section-image {
  grid-area: image;
}

.c-top-contents__section-image.-clip {
  position: relative;
  margin-right: 20px;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-image.-clip {
    margin-right: 0;
  }
}

.c-top-contents__section-image.-clip img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.c-top-contents__section-image.-clip::before {
  position: absolute;
  top: -8px;
  left: 8px;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--shadow-color);
  content: "";
  clip-path: url("#top-mask2");
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-image.-clip::before {
    top: -16px;
    left: 24px;
  }
}

.c-top-contents__section-image-container {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip-path: url("#top-mask2");
}

.c-top-contents__section-content {
  position: relative;
  grid-area: content;
}

.c-top-contents__section-content::before {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 95px;
  height: 100px;
  background-color: var(--shadow-color);
  content: "";
  clip-path: url("#top-mask3");
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-content::before {
    top: -48px;
    right: 0;
    left: auto;
    width: 190px;
    height: 200px;
  }
}

.c-top-contents__section-title {
  position: relative;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-title {
    font-size: 32px;
  }
}

.c-top-contents__section-text {
  position: relative;
  margin-top: 16px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-text {
    font-size: 18px;
  }
}

.c-top-contents__section-button {
  margin: 24px 0 0 auto;
}

@media print, screen and (width >=768px) {
  .c-top-contents__section-button {
    margin-top: 32px;
  }
}

.c-top-index {
  max-width: 420px;
  margin-top: 60px;
  margin-inline: auto;
}

@media print, screen and (width >=768px) {
  .c-top-index {
    margin-top: 100px;
  }
}

.c-top-index__list {
  display: grid;
  margin-top: 24px;
  padding: 10px 20px 32px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  grid-template-columns: 1fr;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-top-index__list {
    margin-top: 32px;
    padding: 16px 40px 40px;
  }
}

.c-top-index__item {
  border-bottom: 1px solid var(--color-00-black);
}

.c-top-index__link {
  display: grid;
  padding: 24px 0 4px;
  color: var(--color-00-text);
  text-decoration: none;
  grid-template-columns: 1fr 20px;
}

@media print, screen and (width <=767px) {
  .c-top-index__link {
    align-items: center;
    gap: 8px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-index__link {
    padding: 24px 0 4px;
    gap: 20px;
  }
}

@media (hover: hover) {
  .c-top-index__link {
    transition: opacity 300ms;
  }

  .c-top-index__link:hover {
    opacity: 0.7;
  }
}

.c-top-index__link-number {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.c-top-index__link-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-top-index__link-icon.-bottom {
  transform: rotate(90deg);
}

.c-top-button__link {
  display: flex;
  width: 100%;
  max-width: 260px;
  height: 50px;
  margin: 0 auto;
  gap: 10px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 40%), #e6f9ff);
  border-radius: 100px;
  color: var(--color-00-text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 16px rgb(0 0 0 / 16%));
}

.c-top-button__link span {
  margin-top: -4px;
}

.c-top-button__link::after {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media (hover: hover) {
  .c-top-button__link {
    transition: opacity 300ms;
  }

  .c-top-button__link:hover {
    opacity: 0.7;
  }
}

.c-news {
  --news-text-color: var(--color-00-text);
  --news-border-color: var(--color-00-text);

  margin-bottom: 80px;
  background-color: var(--color-00-white);
  border-left: 1px solid var(--news-border-color);
  border-right: 1px solid var(--news-border-color);
}

.c-news.-skindiagnosis {
  --news-text-color: var(--color-00-black);
  --news-border-color: 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/2026summer/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/2026summer/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(--news-border-color);
}

@media print, screen and (width <=767px) {
  .c-news__tabs-container {
    padding: 32px 8px;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs-container {
    padding: 40px;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs-container.-skindiagnosis {
    padding-inline: 200px;
  }
}

.c-news__tabs-container.-skindiagnosis .c-news__tab[data-index="6"] {
  display: none;
}

@media print, screen and (width <=767px) {
  .c-news__tabs {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px;
    align-items: stretch;
    width: fit-content;
    margin-inline: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
}

.c-news__tab {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 60px;
  padding: 0 24px;
  background-color: transparent;
  border: 1px solid var(--news-border-color);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width <=767px) {
  .c-news__tab:nth-child(1), .c-news__tab:nth-child(6) {
    grid-column: span 2;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tab {
    height: 40px;
    flex: 0 0 auto;
  }
}

.c-news__tab::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  content: "";
}

@media print, screen and (width <=767px) {
  .c-news__tab::before {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/fixed_background_sp.webp");
    background-position: top center;
  }
}

@media print, screen and (width >=768px) {
  .c-news__tab::before {
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/fixed_background_pc.webp");
  }
}

.c-news__tabs-container.-skindiagnosis .c-news__tab::before {
  background-image: none;
}

.c-news__tab.-active::before {
  opacity: 0.6;
}

.c-news__tabs-container.-skindiagnosis .c-news__tab.-active {
  background-color: var(--color-00-black);
}

.c-news__tabs-container.-skindiagnosis .c-news__tab.-active span {
  color: var(--color-00-white);
}

.c-news__tab span {
  display: block;
  color: var(--news-text-color);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media print, screen and (width >=768px) {
  .c-news__tab span {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.04em;
  }
}

.c-news__content {
  display: none;
}

.c-news__content.-active {
  display: block;
}

.c-news-list {
  --news-text-color: var(--color-00-text);
  --news-border-color: var(--color-00-text);

  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-family: var(--font-noto-sans);
}

.c-news-list.-skindiagnosis {
  --news-text-color: var(--color-00-black);
  --news-border-color: 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-bottom: 1px solid var(--news-border-color);
  }
}

.c-news-list__item {
  padding: 20px 15px;
  border-bottom: 1px solid var(--news-border-color);
  color: var(--color-00-text);
}

@media print, screen and (width >=768px) {
  .c-news-list__item {
    padding: 60px 30px;
  }

  .c-news-list__item:nth-child(odd) {
    border-right: 1px solid var(--news-border-color);
  }
}

.c-news-list__head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-news-list__head {
    gap: 24px;
    grid-template-columns: 226px 1fr;
  }
}

.c-news-list__image {
  border: 1px solid var(--color-80-gray);
  aspect-ratio: 1/1;
}

.c-news-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-list__area {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__area {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.c-news-list__date {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__date {
    font-size: 14px;
  }
}

.c-news-list__title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news-list__title {
    font-size: 17px;
  }
}

.c-news-list__body {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__body {
    font-size: 14px;
  }
}

.c-news-list__body > a {
  color: inherit;
}

.c-news-list__link1, .c-news-list__link2 {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__link1, .c-news-list__link2 {
    font-size: 14px;
  }
}

.c-news-list__link1 a, .c-news-list__link2 a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list__link1 a:hover, .c-news-list__link2 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-news-list__category-title {
  width: fit-content;
  padding: 10px 24px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  color: var(--color-00-text);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width <=767px) {
  .c-news-list__category-title {
    margin: 32px auto 24px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list__category-title {
    padding-inline: 24px;
    min-width: 200px;
    margin: 72px auto 32px;
  }
}

.c-news-list__category-title:first-of-type {
  margin-top: 0;
}

.c-news-list-large {
  --news-text-color: var(--color-00-text);
  --news-border-color: var(--color-00-text);

  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--news-border-color);
}

.c-news-list-large.-skindiagnosis {
  --news-text-color: var(--color-00-black);
  --news-border-color: var(--color-00-black);
}

.c-news-list-large__item {
  display: grid;
  background-color: var(--color-00-white);
  color: var(--news-text-color);
  border-top: 1px solid var(--news-border-color);
  font-family: var(--font-noto-sans);
}

@media print, screen and (width <=767px) {
  .c-news-list-large__item {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content" "body";
    gap: 20px;
    padding: 40px 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-list-large__item {
    grid-template-columns: 405px 1fr;
    grid-template-areas: "image content" "image body";
    align-items: center;
    gap: 32px 64px;
    padding: 60px;
  }

  .c-news-list-large__item:nth-child(even) {
    grid-template-columns: 1fr 405px;
    grid-template-areas: "content image" "body image";
  }
}

.c-news-list-large__image {
  width: 62.9333333333vw;
  margin: 0 auto;
  border: 1px solid var(--color-80-gray);
  grid-area: image;
  aspect-ratio: 1/1;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__image {
    align-self: start;
    width: 100%;
  }
}

.c-news-list-large__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-list-large__content {
  grid-area: content;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__content {
    align-self: end;
  }
}

.c-news-list-large__body {
  grid-area: body;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__body {
    font-size: 14px;
    align-self: start;
  }
}

.c-news-list-large__body a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list-large__body a:hover {
  opacity: 0.7;
}

.c-news-list-large__title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__title {
    margin-top: 0;
    font-size: 18px;
  }
}

.c-news-list-large__area {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__area {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-list-large__date {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__date {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-list-large__link1 {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list-large__link1 {
    font-size: 14px;
  }
}

.c-news-list-large__link1 a {
  color: var(--news-text-color);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list-large__link1 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-button__link {
  display: flex;
  width: 100%;
  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-text);
  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-text);
  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-text);
  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;
}

@media print, screen and (width >=768px) {
  .c-top-collage {
    min-width: 1200px;
  }
}

.c-top-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print, screen and (width <=767px) {
  .c-top-collage__title {
    width: 81.0666666667vw;
    margin: 0 auto 0 0;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__title {
    width: 576px;
    margin: 0 auto;
  }
}

.c-top-collage__copy {
  color: var(--color-00-text);
  font-family: var(--font-main);
  font-weight: 700;
}

@media print, screen and (width <=767px) {
  .c-top-collage__copy {
    margin: 4.2666666667vw auto 0;
    font-size: 3.4666666667vw;
    line-height: 1.9;
    text-align: left;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__copy {
    margin: 70px auto 0;
    font-size: 18px;
    line-height: 2.5;
    text-align: center;
  }
}

.c-top-collage__content {
  position: relative;
  z-index: 1;
}

@media print, screen and (width <=767px) {
  .c-top-collage__content {
    height: 157.3333333333vw;
    padding: 0 32px;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__content {
    height: 800px;
    padding: 60px 0 0;
  }
}

.c-top-collage__images {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.c-top-collage__image {
  position: absolute;
  clip-path: url("#top-mask1");
  aspect-ratio: 387/573;
}

@media print, screen and (width <=767px) {
  .c-top-collage__image {
    width: 45.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__image {
    width: 387px;
  }
}

@media print, screen and (width <=767px) {
  .c-top-collage__image.-image1 {
    top: 22.6666666667vw;
    left: 62.4vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__image.-image1 {
    top: -30px;
    left: calc(50% + 250px);
  }
}

@media print, screen and (width <=767px) {
  .c-top-collage__image.-image2 {
    top: 90.6666666667vw;
    left: -5.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__image.-image2 {
    top: 200px;
    left: calc(50% - 620px);
  }
}

@media print, screen and (width <=767px) {
  .c-top-collage__button {
    width: 50%;
    margin: 32vw 0 0 auto;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__button {
    margin: 40px auto 0;
  }
}

.c-top-collage__button a {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgb(255 255 255 / 40%), #e6f9ff);
  border-radius: 100px;
  color: var(--color-00-text);
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 16px rgb(0 0 0 / 16%));
}

@media print, screen and (width <=767px) {
  .c-top-collage__button a {
    width: 37.3333333333vw;
    height: 13.3333333333vw;
    font-size: 4.8vw;
  }
}

@media print, screen and (width >=768px) {
  .c-top-collage__button a {
    width: 260px;
    height: 50px;
    font-size: 18px;
    gap: 10px;
  }

  .c-top-collage__button a span {
    margin-top: -4px;
  }

  .c-top-collage__button a::after {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/icon_arrow_black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
  }
}

@media (hover: hover) {
  .c-top-collage__button a {
    transition: opacity 300ms;
  }

  .c-top-collage__button a:hover {
    opacity: 0.7;
  }
}

.c-local-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/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-text);
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-local-footer__item-link {
    grid-template-columns: 184px 1fr;
    gap: 20px;
  }
}

@media (hover: hover) {
  .c-local-footer__item-link {
    transition: opacity 300ms;
  }

  .c-local-footer__item-link:hover {
    opacity: 0.7;
  }

  .c-local-footer__item-link:hover img {
    transform: scale(1.05);
  }
}

.c-local-footer__item-image {
  overflow: hidden;
}

.c-local-footer__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.c-local-footer__item-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-link {
  display: block;
  overflow: hidden;
}

.c-local-footer__jam-link img {
  transition: transform 200ms;
}

.c-local-footer__jam-link:hover img {
  transform: scale(1.05);
}

.c-local-footer__jam-image {
  grid-area: image;
  overflow: hidden;
}

.c-local-footer__jam-title {
  color: var(--color-00-text);
  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-text);
  font-size: 13px;
  line-height: 1.8em;
  letter-spacing: 0.01em;
}

@media print, screen and (width >=768px) {
  .c-local-footer__jam-text {
    font-size: 14px;
    align-self: self-start;
    line-height: 2em;
  }
}

.c-local-footer__banners1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners1 {
    margin-top: 80px;
    gap: 50px;
  }
}

.c-local-footer__banners2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 30px;
  gap: 20px;
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners2 {
    justify-content: center;
    grid-template-columns: repeat(2, 300px);
    margin-block: 50px 40px;
    gap: 90px;
  }
}

.c-local-footer__banners2-link {
  display: block;
  padding: 8px 20px;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-local-footer__banners2-link {
    padding: 0;
  }
}

.c-local-footer__banners2-link img {
  display: block;
  width: 100%;
}

.c-item-scroll-list {
  --background-color: var(--color-00-white);

  position: relative;
  z-index: 10;
  padding: 40px 0 60px;
  background-color: var(--background-color);
  color: var(--color-00-text);
}

.c-item-scroll-list.-transparent {
  --background-color: transparent;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list {
    padding: 48px 0;
  }
}

@media print, screen and (width <=767px) {
  .c-item-scroll-list.-top {
    padding-bottom: 120px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list.-top {
    padding-bottom: 120px;
  }
}

.c-item-scroll-list .splide__arrow {
  top: 54px;
  width: 32px;
  height: 32px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1/1;
  transform: none;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow {
    top: 41px;
    width: 58px;
    height: 58px;
  }
}

.c-item-scroll-list .splide__arrow svg {
  display: none;
}

.c-item-scroll-list .splide__arrow.splide__arrow--next {
  right: -16px;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow.splide__arrow--next {
    right: -29px;
  }
}

.c-item-scroll-list .splide__arrow.splide__arrow--prev {
  left: -16px;
  transform: scaleX(-1);
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list .splide__arrow.splide__arrow--prev {
    left: -29px;
  }
}

.c-item-scroll-list .splide__arrow[disabled] {
  display: none;
  cursor: not-allowed;
}

.c-item-scroll-list .splide__pagination {
  bottom: -40px;
  display: grid;
  height: 10px;
  margin: 0;
  padding: 0;
  background-color: #e3f3fa;
  border-radius: 10px;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

@media print, screen and (width <=767px) {
  .c-item-scroll-list .splide__pagination {
    margin-inline: 24px;
  }
}

.c-item-scroll-list .splide__pagination li {
  margin: 0;
  padding: 0;
}

.c-item-scroll-list .splide__pagination button {
  width: 100%;
  height: 10px;
  margin: 0;
  padding: 0;
  background-color: var(--color-00-text);
  border-radius: 10px;
  opacity: 0;
  transform: none !important;
}

.c-item-scroll-list .splide__pagination button.is-active {
  opacity: 1;
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list__inner {
    width: 1120px;
    margin: 0 auto;
  }
}

.c-item-scroll-list__title {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width <=767px) {
  .c-item-scroll-list__list .splide__list:not(:has(> li:nth-child(3))) {
    justify-content: center;
  }
}

@media print, screen and (width >=768px) {
  .c-item-scroll-list__list .splide__list:not(:has(> li:nth-child(6))) {
    justify-content: center;
  }
}

.c-item-scroll-list__item {
  position: relative;
  width: 160px;
}

.c-item-scroll-list__item-button {
  display: block;
  width: 140px;
  margin: 0 10px;
  background-color: var(--background-color);
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-scroll-list__item-button {
    transition: opacity 200ms;
  }

  .c-item-scroll-list__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-scroll-list__item-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--color-00-text);
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.c-item-scroll-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-scroll-list__item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-scroll-list__item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-scroll-list__item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-scroll-list__item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-scroll-list__item-price-icon::before, .c-item-scroll-list__item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-scroll-list__item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-item-makelook-list {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

@media print, screen and (width <=767px) {
  .c-item-makelook-list {
    flex-wrap: wrap;
    overflow: hidden;
  }
}

.c-item-makelook-list__item {
  position: relative;
  width: 140px;
}

.c-item-makelook-list__item-button {
  display: block;
  width: 140px;
  margin: 0;
  background-color: var(--color-00-white);
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-makelook-list__item-button {
    transition: opacity 200ms;
  }

  .c-item-makelook-list__item-button:hover {
    opacity: 0.8;
  }
}

.c-item-makelook-list__item-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

.c-item-makelook-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-makelook-list__item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-makelook-list__item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-makelook-list__item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-makelook-list__item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-makelook-list__item-price-icon::before, .c-item-makelook-list__item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-makelook-list__item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-single {
    width: 140px;
    margin-inline: auto;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-single {
    width: 370px;
  }
}

.c-item-detail-list.-single .c-item-detail-list__inner {
  width: 100%;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list.-single .c-item-detail-list__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list.-single .c-item-detail-list__list {
    grid-template-columns: 1fr;
  }
}

.c-item-detail-list.-single .c-item-detail-list__item {
  grid-template-rows: auto;
  grid-row: auto;
}

.c-item-detail-list.-single .c-item-detail-list__copy {
  display: none;
}

.c-item-detail-list.-single .c-item-detail-list__buttons:not(:has(.c-button)) {
  display: none;
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__inner {
    width: 1100px;
    margin: 0 auto;
  }
}

.c-item-detail-list__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.c-item-detail-list__list {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__list {
    width: fit-content;
    margin: 40px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
    margin: -30px 0 60px;
  }
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__pc-item {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__pc-item {
    display: contents;
  }
}

.c-item-detail-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
  padding-inline: 20px;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__item {
    width: 258px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__item {
    gap: 0;
    margin-top: 90px;
  }
}

.c-item-detail-list__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

.c-item-detail-list__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-detail-list__image {
  position: relative;
  overflow: hidden;
  width: 186px;
  height: 186px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.c-item-detail-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-detail-list__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-detail-list__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-detail-list__price {
  margin: 2em 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-detail-list__date1, .c-item-detail-list__date2 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__single-button {
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__buttons {
  display: grid;
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.c-item-detail-list__button {
  height: 38px;
}

.c-item-detail-list__shop {
  margin-top: 15px;
  font-family: var(--font-noto-sans);
}

.c-item-detail-list__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-detail-list__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-detail-list__shop-text span::after {
  content: " / ";
}

.c-item-detail-list__shop-text span:last-child::after {
  content: none;
}

@media print, screen and (width <=767px) {
  .c-item-detail-list__sp-item {
    position: relative;
    display: contents;
    width: 160px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-detail-list__sp-item {
    display: none;
  }
}

.c-item-detail-list__sp-item-button {
  display: block;
  width: 140px;
  margin: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .c-item-detail-list__sp-item-button {
    transition: opacity 200ms;
  }

  .c-item-detail-list__sp-item-button:hover {
    opacity: 0.8;
  }
}

.c-item-detail-list__sp-item-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--color-00-text);
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.c-item-detail-list__sp-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-item-detail-list__sp-item-uv-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.c-item-detail-list__sp-item-brand {
  display: block;
  margin-top: 10px;
  font-family: var(--font-noto-sans);
  font-size: 11px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-inline: -1em;
  letter-spacing: -0.03em;
}

.c-item-detail-list__sp-item-price {
  display: flex;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-item-detail-list__sp-item-price-icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-00-text);
  border-radius: 50%;
}

.c-item-detail-list__sp-item-price-icon::before, .c-item-detail-list__sp-item-price-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--color-00-white);
  content: "";
  transform: translate(-50%, -50%);
}

.c-item-detail-list__sp-item-price-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-item-nails-list {
  padding-bottom: 80px;
}

@media print, screen and (width >=768px) {
  .c-item-nails-list {
    padding-bottom: 150px;
  }
}

.c-item-nails-list__inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__inner {
    gap: 80px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__inner {
    width: 1100px;
    margin: 0 auto;
    gap: 100px;
  }
}

.c-item-nails-list__header {
  position: relative;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__header {
    width: 78.9333333333vw;
    margin: 0 auto 20px 0;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__header {
    width: 582px;
    margin: 0 auto 20px;
  }
}

.c-item-nails-list__header-image {
  width: 100%;
  aspect-ratio: 582/415;
  clip-path: url("#nails-mask");
}

.c-item-nails-list__title {
  position: absolute;
  display: flex;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__title {
    right: -40px;
    bottom: -16px;
    min-width: 197px;
    height: 42px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__title {
    right: -148px;
    bottom: 70px;
    min-width: 262px;
    height: 56px;
    font-size: 24px;
  }
}

.c-item-nails-list__body {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 64px;
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__body-content {
    padding-inline: 40px;
  }
}

.c-item-nails-list__list {
  display: grid;
  gap: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x;
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__list {
    grid-auto-flow: column;
    grid-auto-columns: min-content;
  }

  .c-item-nails-list__list::before, .c-item-nails-list__list::after {
    display: block;
    width: calc((100vw - 258px - 20px - 20px) / 2);
    content: "";
  }
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
  }
}

@media print, screen and (width <=767px) {
  .c-item-nails-list__list.-new {
    align-items: start;
    grid-template-rows: auto;
  }

  .c-item-nails-list__list.-new .c-item-nails-list__item {
    align-items: start;
    height: 730px !important;
    margin-bottom: 186px;
  }

  .c-item-nails-list__list.-new .c-item-nails-list__item:nth-child(5) {
    height: auto !important;
    margin-bottom: 0;
    grid-template-rows: auto;
  }
}

.c-item-nails-list__item {
  padding-inline: 20px;
}

.c-item-nails-list__copy {
  margin-bottom: 19px;
  font-family: var(--font-main);
  font-weight: bold;
  text-align: center;
}

.c-item-nails-list__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.77;
  letter-spacing: -0.05em;
}

.c-item-nails-list__image {
  position: relative;
}

.c-item-nails-list__image img {
  width: 100%;
  height: auto;
}

.c-item-nails-list__container1 {
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__container2 {
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__brand {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.c-item-nails-list__name {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__color {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__size {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-nails-list__price {
  margin: 2em 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__note1 {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-nails-list__date1, .c-item-nails-list__date2 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__single-button {
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__buttons {
  display: grid;
  margin: 15px 0 5px;
  font-family: var(--font-noto-sans);
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

@media print, screen and (width >=768px) {
  .c-item-nails-list__buttons {
    max-width: 240px;
    margin-inline: auto;
  }
}

.c-item-nails-list__button {
  height: 38px;
}

.c-item-nails-list__shop {
  margin-top: 15px;
  font-family: var(--font-noto-sans);
}

.c-item-nails-list__shop-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-nails-list__shop-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-nails-list__shop-text span::after {
  content: " / ";
}

.c-item-nails-list__shop-text span:last-child::after {
  content: none;
}

.c-item-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  overflow-y: auto;
  overflow-y: scroll;
  width: 100%;
  height: 100dvh;
  margin: 0 auto;
  padding: 0;
  background-color: rgb(0 0 0 / 0%);
  border: 0;
  color: var(--color-00-white);
  transition: opacity 200ms;
  overscroll-behavior: none;
}

.c-item-modal__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-text);
  border: none;
  align-items: center;
  justify-content: center;
}

.c-item-modal__close-icon {
  display: flex;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.c-item-modal__close-icon > span {
  display: block;
  overflow: hidden;
  width: 26px;
  height: 1px;
  background-color: var(--color-00-white);
  border-radius: 2px;
  transition: transform 100ms;
}

.c-item-modal__close-icon > span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.c-item-modal__close-icon > span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}

.c-item-modal__inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 44px;
  background-color: var(--color-00-white);
  color: var(--color-00-text);
  font-family: var(--font-noto-sans);
}

.c-item-modal__copy {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: var(--font-main);
}

.c-item-modal__copy p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.c-item-modal__copy sup {
  font-size: 80%;
  vertical-align: super;
}

.c-item-modal__layout-content1 {
  grid-area: content1;
  width: 240px;
  margin: 0 auto;
}

.c-item-modal__layout-content2 {
  grid-area: content2;
  width: 220px;
  margin: 10px auto 0;
}

.c-item-modal__layout-content3 {
  grid-area: content3;
  width: 220px;
  margin: 12px auto 0;
}

.c-item-modal__layout-content3:not(:has(.c-button)) {
  margin-top: 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 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__color {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__size {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.c-item-modal__price {
  margin: 8px 0 0 auto;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}

.c-item-modal__note1 {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.6;
}

.c-item-modal__date1, .c-item-modal__date2 {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.c-item-modal__date1 + .c-item-modal__date2 {
  margin-top: 5px;
}

.c-item-modal__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 {
  position: relative;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-make-look-content {
    min-width: 1200px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content.-look2 {
    margin-top: 100px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content.-look2 {
    margin-top: 80px;
  }
}

.c-make-look-content__header {
  position: relative;
}

.c-make-look-content__header img {
  display: block;
  width: 100%;
  height: auto;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__body {
    margin: 0 auto;
    padding: 0;
    padding-top: 30px;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__body {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
    padding-top: 100px;
  }
}

.c-make-look-content__collage {
  position: relative;
  width: 100%;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage {
    width: 1100px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 {
    height: 189.0666666667vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 {
    height: 2036px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image1 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image1 {
    top: 0;
    left: 8vw;
    width: 50.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image1 {
    top: 0;
    left: 107px;
    width: 507px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image2 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    top: 20vw;
    left: 60.2666666667vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image2 {
    top: 218px;
    left: 650px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image3 {
  aspect-ratio: 394/588;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    top: 78.9333333333vw;
    left: 5.3333333333vw;
    width: 36.5333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image3 {
    top: 846px;
    left: 73px;
    width: 394px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image4 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    top: 77.3333333333vw;
    left: 48vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image4 {
    top: 800px;
    left: 523px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look1 .c-make-look-content__image5 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image5 {
    top: 118.4vw;
    left: 48vw;
    width: 47.2vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look1 .c-make-look-content__image5 {
    top: 1277px;
    left: 523px;
    width: 507px;
  }
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 {
    height: 195.2vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 {
    height: 2104px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image1 {
  aspect-ratio: 394/588;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image1 {
    top: 0;
    left: 22.6666666667vw;
    width: 36.5333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image1 {
    top: 0;
    left: 200px;
    width: 394px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image2 {
  aspect-ratio: 292/402;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    top: 30.6666666667vw;
    left: 62.4vw;
    width: 26.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image2 {
    top: 336px;
    left: 630px;
    width: 292px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image3 {
  aspect-ratio: 507/757;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    top: 58.6666666667vw;
    left: 5.3333333333vw;
    width: 46.9333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image3 {
    top: 630px;
    left: 18px;
    width: 507px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image4 {
  aspect-ratio: 400/550;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    top: 81.6vw;
    left: 57.3333333333vw;
    width: 37.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image4 {
    top: 880px;
    left: 570px;
    width: 400px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image5 {
  aspect-ratio: 400/550;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image5 {
    top: 144vw;
    left: 10.6666666667vw;
    width: 37.3333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image5 {
    top: 1550px;
    left: 70px;
    width: 400px;
  }
}

.c-make-look-content__collage.-look2 .c-make-look-content__image6 {
  aspect-ratio: 453/241;
}

@media print, screen and (width <=767px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image6 {
    top: 136vw;
    left: 52.5333333333vw;
    width: 42.1333333333vw;
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-content__collage.-look2 .c-make-look-content__image6 {
    top: 1485px;
    left: 517px;
    width: 453px;
  }
}

.c-make-look-content__image1, .c-make-look-content__image2, .c-make-look-content__image3, .c-make-look-content__image4, .c-make-look-content__image5, .c-make-look-content__image6 {
  position: absolute;
}

.c-make-look-content__copy {
  margin-top: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.05em;
  padding-inline: 20px;
}

@media print, screen and (width >=768px) {
  .c-make-look-content__copy {
    margin-top: 60px;
  }
}

.c-make-look-header {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  padding: 100px 20px 0;
  background-color: transparent;
}

@media print, screen and (width >=768px) {
  .c-make-look-header {
    margin-top: -100px;
    padding: 100px 0 0;
  }
}

.c-make-look-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1366px;
  height: 200px;
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/common/content_top_pink_pc.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 200px;
  content: "";
}

.c-make-look-header__background {
  padding-top: 100px;
  background-color: rgb(252 248 253 / 97%);
}

.c-make-look-header__inner {
  max-width: 1010px;
  margin: 0 auto;
}

.c-make-look-header__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media print, screen and (width >=768px) {
  .c-make-look-header__title {
    font-size: 47px;
  }
}

.c-make-look-header__text {
  margin-top: 56px;
  margin-right: -20px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-make-look-header__text {
    width: 700px;
    margin-top: 56px;
    margin-right: 0;
    margin-left: auto;
    font-size: 18px;
  }
}

.c-make-look {
  position: relative;
  background-color: var(--color-00-white);
}

.c-make-look-uv {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr;
  grid-template-areas: "title2" "title" "image" "content";
  gap: 16px;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv {
    grid-template-columns: auto auto;
    grid-template-areas: "title2 title2" "title title" "image content";
    gap: 60px 80px;
    align-items: start;
    justify-content: center;
  }
}

.c-make-look-uv__title2 {
  grid-area: title2;
  max-width: 230px;
  margin: 40px auto 20px;
  padding: 10px 24px;
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__title2 {
    margin-top: 80px;
  }
}

.c-make-look-uv__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  grid-area: title;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__title {
    margin-top: -40px;
  }
}

.c-make-look-uv__image {
  grid-area: image;
  width: 264px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__image {
    width: 371px;
    margin: 0;
  }
}

.c-make-look-uv__content {
  grid-area: content;
}

@media print, screen and (width >=768px) {
  .c-make-look-uv__content {
    /* ready */
  }
}

.c-make-look-items {
  display: grid;
}

@media print, screen and (width <=767px) {
  .c-make-look-items {
    margin-top: 80px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    grid-template-areas: "base" "eyes" "cheeks" "lips" "nails";
    gap: 50px;
  }

  .c-make-look-items.-make-look2 {
    grid-template-areas: "base" "eyes" "cheeks" "lips" "nails";
  }
}

@media print, screen and (width >=768px) {
  .c-make-look-items {
    width: 700px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "base base" "eyes cheeks" "lips nails";
    gap: 80px;
  }

  .c-make-look-items.-make-look2 {
    grid-template-areas: "base base" "eyes cheeks" "lips nails";
  }
}

.c-make-look-items__base {
  grid-area: base;
  overflow: hidden;
}

.c-make-look-items__eyes {
  grid-area: eyes;
}

.c-make-look-items__cheeks {
  grid-area: cheeks;
}

.c-make-look-items__lips {
  grid-area: lips;
}

.c-make-look-items__nails {
  grid-area: nails;
}

.c-make-look-items__cheeks {
  grid-area: cheeks;
}

.c-make-look-items__title {
  max-width: 230px;
  margin: 0 auto 20px;
  padding: 10px 24px;
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.c-make-credit {
  margin: 0;
  padding: 60px 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit {
    width: 1100px;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.c-make-credit__title {
  margin-left: 20px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-make-credit__title {
    font-size: 14px;
  }
}

.c-make-credit__content {
  margin-top: 8px;
  padding: 0 20px;
}

.c-make-credit__list {
  display: grid;
  gap: 5px;
}

.c-make-credit__item {
  display: flex;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2em;
}

@media print, screen and (width >=768px) {
  .c-make-credit__item {
    font-size: 14px;
  }
}

.c-make-credit__item span:first-child {
  flex: 0 0 auto;
}

.c-make-credit__item span:last-child {
  flex: 1 1 auto;
}

.c-make-credit__item a {
  color: inherit;
  text-decoration: underline;
}

.c-title {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 24px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-text);
  border-radius: 100px;
  color: var(--color-00-text);
  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;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header {
    padding: 80px 0;
  }
}

.c-skindiagnosis-header__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  margin-inline: -10px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header__title {
    font-size: 35px;
    margin-inline: 0;
  }
}

.c-skindiagnosis-header__text {
  margin-top: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-header__text {
    width: 700px;
    margin: 30px auto 0;
    font-size: 18px;
  }
}

.c-skindiagnosis-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero {
    height: 776px;
  }
}

.c-skindiagnosis-hero__image {
  --bg-duration-sp: 40000ms;
  --bg-duration-pc: 60000ms;

  height: 220px;
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 100%;
  will-change: background-position;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image {
    height: 388px;
  }
}

.c-skindiagnosis-hero__image.-image1 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/skindiagnosis/hero_background1.webp");
  animation: skin-hero-animation1-sp var(--bg-duration-sp) linear infinite;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image.-image1 {
    animation: skin-hero-animation1-pc var(--bg-duration-pc) linear infinite;
  }
}

.c-skindiagnosis-hero__image.-image2 {
  background-image: url("/shibuyabeautyjam/cosmeticfair/2026summer/assets/images/skindiagnosis/hero_background2.webp");
  animation: skin-hero-animation2-sp var(--bg-duration-sp) linear infinite;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis-hero__image.-image2 {
    animation: skin-hero-animation2-pc var(--bg-duration-pc) linear infinite;
  }
}

@keyframes skin-hero-animation1-sp {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: -1769px top;
  }
}

@keyframes skin-hero-animation2-sp {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: 1769px top;
  }
}

@keyframes skin-hero-animation1-pc {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: -3120px top;
  }
}

@keyframes skin-hero-animation2-pc {
  0% {
    background-position: 0 top;
  }

  100% {
    background-position: 3120px top;
  }
}

.c-skindiagnosis {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 20px;
}

@media print, screen and (width >=768px) {
  .c-skindiagnosis {
    width: 1200px;
    padding: 0 50px;
  }
}

.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);
}





.souryo-smartphone {
    background: #268faa;
    color: #ffffff;
    padding: 20px 20px 30px;
    font-size: clamp(15px,2.0vw,22px);
    font-family: 'Noto Sans JP';
}
@media print, screen and (width <=768px) {
  .souryo-smartphone {
    margin-top: -25%;
    padding: 17% 20px 30px;
  }
}
.souryo-smartphone h6 {
    font-size: clamp(17px, 2.5vw, 29px);
    margin: 0 0 15px;
}

.souryo-smartphone h6 span {
    font-size: clamp(14px, 2.1vw, 22px);
    color: #383737;
    background: #ffdf63;
    padding: 0 24px 3px 15px;
    border-radius: 100vh;
}
@media print, screen and (width <=768px) {
  .souryo-smartphone h6 span{
    display:block;
    text-align:center;
    width:170px;
  margin:0 auto 5px 0
  }
  .souryo-smartphone p br{
    display:none
  }
}



