




@charset "UTF-8";

/* ==========================================================================
Base
========================================================================== */

/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}

:where(body) {
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  overflow: visible;

  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

:root {
  --color-00-black: #000;
  --color-00-white: #fff;
  --color-00-brown: #c4afa7;
  --color-60-gray: #6b7075;
  --color-70-gray: #979ca1;
  --color-80-gray: #dbdee3;
  --color-90-gray: #f2f3f5;
  --color-95-gray: #f7f7f7;
  --color-01-brown: #623b12;
  --color-01-beige: #ffe7a2;
  --color-02-beige: #f8f3c4;
  --color-background-01: #d2dee0;
  --color-background-02: #f8d1ee;
  --color-background-03: rgb(255 244 252 / 90%);
  --color-button-01: #b79853;
  --color-button-02: #57300d;
  --color-category-event: #fdc29f;
  --color-category-popup: #c0ffb1;
  --color-category-present: #fff796;
  --color-category-limited: #fd9eee;
  --color-category-original: #b7d8df;
  --color-category-service: #e0f9fa;
  --gradation-01: linear-gradient(90deg, #b9a59d 0%, #a28478 100%);
  --font-main: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-oswald: "Oswald", sans-serif;
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html:has(dialog[open]) {
  overflow: hidden !important;
}

@media print, screen and (width >=768px) {
  html {
    scroll-padding-top: 95px;
  }
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background-01);
  color: var(--color-00-black);
  font-family: var(--font-main);
}

body.p-home {
  padding-top: 0;
  background-color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  body.p-home {
    padding-top: 0;
  }
}

/* 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-hero {
  z-index: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
}

@media print, screen and (width >=768px) {
  .c-hero {
    min-width: 1100px;
    margin: 0 auto;
  }
}

.c-hero__image img {
  width: 100%;
  height: auto;
}

.c-main {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

@media print, screen and (width >=768px) {
  .c-main {
    padding: 150px 50px 170px;
  }
}

.c-main__inner {
  width: 335px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-main__inner {
    width: 1100px;
  }
}

.c-main__title > span {
  display: block;
  line-height: 1;
  text-align: center;
}

.c-main__title > span:nth-child(1) {
  font-family: var(--font-oswald);
  font-size: 20px;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__title > span:nth-child(1) {
    font-size: 20px;
  }
}

.c-main__title > span:nth-child(2) {
  margin-top: 10px;
  font-family: var(--font-oswald);
  font-size: 32px;
  letter-spacing: 0.1em;
}

@media print, screen and (width >=768px) {
  .c-main__title > span:nth-child(2) {
    font-size: 32px;
  }
}

.c-main__title > span:nth-child(3) {
  margin-top: 25px;
  font-family: var(--font-oswald);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__title > span:nth-child(3) {
    font-size: 46px;
    letter-spacing: 0.08em;
  }
}

.c-main__title > span:nth-child(3) > span {
  font-size: 19px;
}

@media print, screen and (width >=768px) {
  .c-main__title > span:nth-child(3) > span {
    font-size: 33px;
  }
}

.c-main__shop {
  margin-top: 50px;
}

.c-main__shop > li {
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-main__shop > li {
    font-size: 15px;
  }
}

.c-main__text {
  margin-top: 50px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__text {
    margin-top: 50px;
    font-size: 20px;
  }
}

.c-main__map {
  position: relative;
  width: 335px;
  margin: 40px auto 0;
}

@media print, screen and (width <=767px) {
  .c-main__map {
    display: grid;
    grid-template-areas: "plusq" "image" "shinqs" "dress";
  }
}

@media print, screen and (width >=768px) {
  .c-main__map {
    width: 1100px;
    margin-top: 150px;
  }
}

.c-main__map-image {
  margin: 0 auto;
}

@media print, screen and (width <=767px) {
  .c-main__map-image {
    grid-area: image;
    margin-top: 15px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-image {
    width: 500px;
  }
}

.c-main__map-shop {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop {
    position: absolute;
    width: fit-content;
  }
}

.c-main__map-shop::after {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  content: "";
}

@media print, screen and (width <=767px) {
  .c-main__map-shop.-dress-table {
    z-index: 1;
    display: grid;
    margin: 30px auto 0 0;
    grid-area: dress;
    grid-template-areas: "logo name";
    grid-template-columns: 100px 1fr;
    gap: 10px;
    align-items: start;
  }

  .c-main__map-shop.-dress-table::after {
    top: -326px;
    left: 51px;
    width: 16px;
    height: 312px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_dress_table_sp.svg");
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-logo {
    width: 100px;
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-name {
    margin-top: 15px;
  }

  .c-main__map-shop.-dress-table .-circle1 {
    top: -10px;
    right: -70px;
    width: 123px;
  }

  .c-main__map-shop.-dress-table .-circle2 {
    top: 50px;
    right: -100px;
    width: 77px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-dress-table {
    top: 80px;
    left: 10px;
    display: grid;
    gap: 20px;
    grid-template-areas: "name logo";
    grid-template-columns: 1fr 102px;
    align-items: start;
  }

  .c-main__map-shop.-dress-table::after {
    top: 60px;
    left: 262px;
    width: 126px;
    height: 65px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_dress_table_pc.svg");
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-logo {
    width: 102px;
  }

  .c-main__map-shop.-dress-table .-circle1 {
    top: -50px;
    left: -95px;
    width: 200px;
  }

  .c-main__map-shop.-dress-table .-circle2 {
    top: 70px;
    left: 0;
    width: 130px;
  }
}

@media print, screen and (width <=767px) {
  .c-main__map-shop.-plusq {
    grid-area: plusq;
    display: grid;
    grid-template-areas: "name logo";
    grid-template-columns: auto 1fr;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
  }

  .c-main__map-shop.-plusq::after {
    top: 50px;
    left: 145px;
    width: 16px;
    height: 239px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_plusq_sp.svg");
  }

  .c-main__map-shop.-plusq .c-main__map-shop-logo {
    width: 108px;
    align-self: start;
  }

  .c-main__map-shop.-plusq .-circle1 {
    top: -25px;
    left: -75px;
    width: 123px;
  }

  .c-main__map-shop.-plusq .-circle2 {
    top: 50px;
    left: -10px;
    width: 65px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-plusq {
    top: -50px;
    right: 10px;
    display: grid;
    gap: 20px;
    grid-template-areas: "logo name";
    grid-template-columns: 151px 1fr;
    align-items: center;
  }

  .c-main__map-shop.-plusq::after {
    top: 34px;
    left: -190px;
    width: 183px;
    height: 262px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_plusq_pc.svg");
  }

  .c-main__map-shop.-plusq .c-main__map-shop-logo {
    width: 151px;
  }

  .c-main__map-shop.-plusq .-circle1 {
    top: -14px;
    right: -75px;
    width: 187px;
  }

  .c-main__map-shop.-plusq .-circle2 {
    top: 90px;
    right: 30px;
    width: 108px;
  }
}

@media print, screen and (width <=767px) {
  .c-main__map-shop.-shinqs {
    display: grid;
    width: fit-content;
    margin: 20px 0 0 auto;
    grid-area: shinqs;
    grid-template-areas: "name logo";
    grid-template-columns: 1fr 110px;
    align-items: center;
    gap: 10px;
  }

  .c-main__map-shop.-shinqs::after {
    top: -206px;
    right: 20px;
    width: 16px;
    height: 206px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_shinqs_sp.svg");
  }

  .c-main__map-shop.-shinqs .c-main__map-shop-logo {
    width: 110px;
  }

  .c-main__map-shop.-shinqs .-circle1 {
    top: -15px;
    left: -30px;
    width: 86px;
  }

  .c-main__map-shop.-shinqs .-circle2 {
    top: 10px;
    left: -70px;
    width: 77px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-shinqs {
    right: -60px;
    bottom: 130px;
    display: grid;
    gap: 26px;
    grid-template-areas: "logo name";
    grid-template-columns: 126px 1fr;
    align-items: center;
  }
}

@media print and (width <= 1240px), screen and (width >=768px) and (width <= 1240px) {
  .c-main__map-shop.-shinqs {
    grid-template-areas: "logo" "name";
    grid-template-columns: 160px;
    right: 82px;
    bottom: 44px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-shinqs::after {
    top: -68px;
    left: -110px;
    width: 100px;
    height: 124px;
    background-image: url("/shibuyabeautyjam/specialcontents/2026summer/assets/images/map_line_shinqs_pc.svg");
  }

  .c-main__map-shop.-shinqs .c-main__map-shop-logo {
    width: 126px;
  }

  .c-main__map-shop.-shinqs .-circle1 {
    top: -30px;
    right: -25px;
    width: 160px;
  }

  .c-main__map-shop.-shinqs .-circle2 {
    top: 70px;
    right: 50px;
    width: 130px;
  }
}

.c-main__map-shop-logo {
  grid-area: logo;
  margin: 0;
}

.c-main__map-shop-name {
  grid-area: name;
  font-family: var(--font-oswald);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-name {
    letter-spacing: 0.1em;
  }
}

.c-main__map-shop-name > span {
  display: block;
}

.c-main__map-news {
  margin-top: 20px;
}

@media print, screen and (width >=768px) {
  .c-main__map-news {
    margin-top: 40px;
  }
}

.c-main__map-news-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-01-blue);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: underline;
}

@media print, screen and (width >=768px) {
  .c-main__map-news-link {
    font-size: 16px;
  }
}

.c-tab {
  display: grid;
  margin: 0;
  grid-template-columns: 34% 32% 34%;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-tab {
    margin: 0;
  }
}

.c-tab.-top .c-tab__button {
  border-radius: 130px 130px 0 0;
}

@media print, screen and (width >=768px) {
  .c-tab.-top .c-tab__button {
    border-radius: 170px 170px 0 0;
  }
}

.c-tab.-bottom .c-tab__button {
  border-radius: 0 0 130px 130px;
}

@media print, screen and (width >=768px) {
  .c-tab.-bottom .c-tab__button {
    border-radius: 0 0 170px 170px;
  }
}

.c-tab__button {
  display: flex;
  height: 96px;
  background-color: var(--color-background-01);
  border: none;
  cursor: pointer;
  transition: background-color 200ms, opacity 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-tab__button {
    height: 110px;
  }

  .c-tab__button:hover {
    opacity: 0.7;
  }
}

.c-tab__button.-active {
  background-color: var(--color-background-02);
}

.c-tab__button span {
  width: 100%;
}

.c-tab__button span img {
  transform: translate3d(0, 0, 0);
}

.c-tab__button[data-index="1"] span {
  display: block;
  max-width: 93px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="1"] span {
    max-width: 153px;
  }
}

.c-tab__button[data-index="2"] span {
  display: block;
  max-width: 75px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="2"] span {
    max-width: 126px;
  }
}

.c-tab__button[data-index="3"] span {
  display: block;
  max-width: 53px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="3"] span {
    max-width: 64px;
  }
}

.c-news {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  .c-news {
    min-width: 1100px;
  }
}

.c-news__container {
  background-color: var(--color-background-03);
}

.c-news__inner {
  padding: 60px 20px 100px;
}

@media print, screen and (width >=768px) {
  .c-news__inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 50px;
  }
}

.c-news__title {
  margin: 0 0 50px;
  color: var(--color-01-blue);
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-news__title {
    margin-bottom: 60px;
  }
}

.c-news__title h2 {
  margin: 0 0 5px;
  font-size: 32px;
  letter-spacing: 0.06em;
}

@media print, screen and (width >=768px) {
  .c-news__title h2 {
    font-size: 40px;
  }
}

.c-news__title p {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.07em;
}

@media print, screen and (width >=768px) {
  .c-news__title p {
    font-size: 18px;
  }
}

.c-news__tabs {
  display: grid;
  margin: 0 -15px;
  transform: skewX(15deg);
  grid-template-columns: 34% 32% 34%;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-news__tabs {
    margin: 0 -45px;
    transform: skewX(45deg);
  }
}

.c-news__tab {
  display: flex;
  height: 86px;
  border: none;
  cursor: pointer;
  transition: background-color 200ms, opacity 200ms;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-news__tab:hover {
    opacity: 0.9;
  }
}

.c-news__tab span {
  filter: invert(0);
  transform: skewX(-15deg);
}

@media print, screen and (width >=768px) {
  .c-news__tab span {
    transform: skewX(-45deg);
  }
}

.c-news__tab span img {
  transform: translate3d(0, 0, 0);
}

.c-news__tab[data-index="1"] {
  background-color: #28364d;
}

.c-news__tab[data-index="1"].-active {
  background-color: rgb(40 54 77 / 0%);
}

.c-news__tab[data-index="1"].-active span {
  filter: invert(0);
}

.c-news__tab[data-index="1"].-active + .c-news__tab {
  background-color: #46647c;
}

.c-news__tab[data-index="1"] span {
  display: block;
  width: 53px;
  filter: invert(1);
}

@media print, screen and (width >=768px) {
  .c-news__tab[data-index="1"] span {
    width: 64px;
  }
}

.c-news__tab[data-index="2"] {
  background-color: #46647c;
}

.c-news__tab[data-index="2"].-active {
  background-color: rgb(40 54 77 / 0%);
}

.c-news__tab[data-index="2"].-active span {
  filter: invert(0);
}

.c-news__tab[data-index="2"].-active + .c-news__tab {
  background-color: #46647c;
}

.c-news__tab[data-index="2"] span {
  display: block;
  width: 93px;
  filter: invert(1);
}

@media print, screen and (width >=768px) {
  .c-news__tab[data-index="2"] span {
    width: 153px;
  }
}

.c-news__tab[data-index="3"] {
  background-color: #28364d;
}

.c-news__tab[data-index="3"].-active {
  background-color: rgb(40 54 77 / 0%);
}

.c-news__tab[data-index="3"].-active span {
  filter: invert(0);
}

.c-news__tab[data-index="3"] span {
  display: block;
  width: 75px;
  filter: invert(1);
}

@media print, screen and (width >=768px) {
  .c-news__tab[data-index="3"] span {
    width: 126px;
  }
}

.c-news__content {
  display: none;
}

.c-news__content.-active {
  display: block;
}

.c-present {
  position: relative;
  z-index: 1;
  margin-top: -96px;
  padding: 166px 20px 70px;
  background-color: #fff;
}

@media print, screen and (width >=768px) {
  .c-present {
    margin-top: -110px;
    padding: 250px 50px 140px;
  }
}

@media print, screen and (width >=768px) {
  .c-present__inner {
    width: 500px;
    margin: 0 auto;
  }
}

.c-present__title {
  font-family: var(--font-oswald);
}

.c-present__title > span {
  display: block;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.03em;
}

.c-present__title > span:nth-child(1) {
  font-size: 23px;
}

.c-present__title > span:nth-child(2) {
  font-size: 34px;
}

.c-present__image {
  margin-top: 35px;
}

.c-present__image img {
  display: block;
  width: 100%;
  height: auto;
}

.c-present__lead {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.c-present__date {
  margin-top: 25px;
  font-size: 16px;
}

.c-present__shop-title {
  margin-top: 30px;
  font-size: 14px;
}

.c-present__shop {
  margin-top: 5px;
}

.c-present__shop li {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.c-present__text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
}

.c-present__note {
  display: flex;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25em;
}

.c-present__note > span:first-child {
  flex: 0 0 auto;
}

.c-present__note + .c-present__note {
  margin-top: 5px;
}

.c-shibuya109lab {
  margin-top: 30px;
}

@media print, screen and (width >=768px) {
  .c-shibuya109lab {
    margin-top: 50px;
  }
}

.c-shibuya109lab__inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.c-shibuya109lab__image {
  overflow: hidden;
  width: 110px;
  height: 110px;
  border: 1px solid var(--color-00-black);
  border-radius: 50%;
}

.c-shibuya109lab__content-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.c-shibuya109lab__content-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.c-shibuya109lab__button {
  width: 250px;
  margin: 15px auto 0;
}

@media print, screen and (width >=768px) {
  .c-shibuya109lab__button {
    margin-top: 30px;
  }
}

.c-shibuya109lab__button a {
  position: relative;
  display: flex;
  padding: 16px 0;
  background-color: var(--color-background-01);
  border-radius: 100px;
  color: var(--color-00-black);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .c-shibuya109lab__button a {
    transition: opacity 300ms;
  }

  .c-shibuya109lab__button a:hover {
    opacity: 0.7;
  }
}

.c-shibuya109lab__button a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 10px;
  height: 14px;
  background-color: var(--color-00-black);
  content: "";
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-shibuya109lab__banner {
  margin-top: 40px;
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
  padding: 20px 0;
}

.c-shibuya109lab__banner-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 230px;
  margin: 0 auto;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-shibuya109lab__banner-link {
    width: 100%;
    grid-template-columns: 230px 1fr;
    gap: 25px;
    align-items: center;
  }
}

@media (hover: hover) {
  .c-shibuya109lab__banner-link {
    transition: opacity 300ms;
  }

  .c-shibuya109lab__banner-link:hover {
    opacity: 0.7;
  }
}

.c-shibuya109lab__banner-text {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

.c-shibuya109lab__banner-text::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 10px;
  height: 14px;
  background-color: var(--color-00-black);
  content: "";
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-shibuya109lab__banner-description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
}

.c-shop-information {
  margin: 70px 0 0;
}

@media print, screen and (width >=768px) {
  .c-shop-information {
    display: grid;
    width: 853px;
    margin: 80px auto 0;
    grid-template-columns: 1fr 410px;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}

.c-shop-information__title {
  font-family: var(--font-oswald);
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.04em;
}

.c-shop-information__text {
  margin-top: 20px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.c-shop-information__image {
  overflow: hidden;
  margin-top: 15px;
  border-radius: 30px;
}

@media print, screen and (width >=768px) {
  .c-shop-information__image {
    margin-top: 0;
  }
}

.c-shop-information__image a {
  display: block;
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  .c-shop-information__image a:hover img {
    transform: scale(1.1);
  }

  .c-shop-information__image a img {
    transition: transform 0.3s;
  }
}

.c-news-main {
  border: 1px solid var(--color-00-black);
  border-radius: 10px;
}

@media print, screen and (width >=768px) {
  .c-news-main {
    width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
  }
}

.c-news-main__title {
  position: relative;
  display: block;
  width: fit-content;
  margin: -15px auto 0;
  padding: 0 10px;
  background-color: var(--color-background-01);
  font-family: var(--font-oswald);
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}

@media print, screen and (width >=768px) {
  .c-news-main__title {
    margin-top: -30px;
    font-size: 46px;
  }
}

.c-news-main__title-sub {
  position: absolute;
  bottom: -2em;
  left: 50%;
  display: block;
  width: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  transform: translateX(-50%);
}

@media print, screen and (width >=768px) {
  .c-news-main__title-sub {
    bottom: -2.5em;
    font-size: 18px;
  }
}

.c-news-main__inner {
  padding: 0 20px 20px;
}

@media print, screen and (width >=768px) {
  .c-news-main__inner {
    padding: 0 50px 50px;
  }
}

.c-news-main__lead {
  margin: 60px auto 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-main__lead {
    width: 600px;
    margin-top: 100px;
  }
}

.c-news-main__item {
  margin: 60px auto 0;
}

@media print, screen and (width >=768px) {
  .c-news-main__item {
    width: 600px;
    margin-top: 100px;
  }
}

.c-news-main__item-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-title {
    font-size: 25px;
  }
}

.c-news-main__item-image {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-image {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.c-news-main__item-date {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-date {
    margin-top: 30px;
    font-size: 14px;
  }
}

.c-news-main__item-shop {
  margin-top: 5px;
  font-size: 10px;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-shop {
    margin-top: 10px;
    font-size: 13px;
  }
}

.c-news-main__item-text {
  margin-top: 10px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-text {
    margin-top: 20px;
    font-size: 14px;
  }
}

.c-news-main__item-banner {
  margin-top: 20px;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-banner {
    margin-top: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-main__item-banner a {
    transition: opacity 200ms;
  }

  .c-news-main__item-banner a:hover {
    opacity: 0.7;
  }
}

.c-news-main__item-banner2 {
  margin: 60px 21px 0;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-banner2 {
    width: 600px;
    margin: 60px auto 0;
  }
}

@media print, screen and (width >=768px) {
  .c-news-main__item-banner2 a {
    transition: opacity 200ms;
  }

  .c-news-main__item-banner2 a:hover {
    opacity: 0.7;
  }
}

.c-news-main__item-caption {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-main__item-caption {
    margin-top: 5px;
    font-size: 12px;
  }
}

.c-news-main__profile {
  margin: 40px auto 0;
}

@media print, screen and (width >=768px) {
  .c-news-main__profile {
    width: 600px;
    margin-top: 60px;
  }
}

.c-news-main__profile-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media print, screen and (width >=768px) {
  .c-news-main__profile-inner {
    grid-template-columns: 197px 1fr;
    gap: 20px;
  }
}

.c-news-main__profile-logo {
  width: 163px;
  margin: 0 auto;
}

.c-news-main__profile-content-title {
  font-size: 12px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-news-main__profile-content-title {
    font-size: 14px;
  }
}

.c-news-main__profile-content-text {
  margin-top: 5px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-news-main__profile-content-text {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-main__topic {
  margin: 40px auto 0;
  border: 1px solid var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-news-main__topic {
    width: 600px;
    margin-top: 60px;
  }
}

.c-news-main__topic-title {
  width: fit-content;
  margin: -24px auto 0;
  padding: 0 10px;
  background-color: var(--color-background-01);
  font-family: var(--font-oswald);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-title {
    margin: -24px auto 0 20px;
  }
}

.c-news-main__topic-inner {
  display: grid;
  padding: 5px 15px 15px;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-inner {
    padding: 10px 20px 20px;
    grid-template-columns: 1fr 250px;
    grid-template-areas: "content image" "text text";
    gap: 10px 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-image {
    grid-area: image;
  }
}

.c-news-main__topic-content {
  word-break: break-all;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-content {
    grid-area: content;
  }
}

.c-news-main__topic-content-title {
  font-size: 12px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-content-title {
    font-size: 14px;
  }
}

.c-news-main__topic-content-date {
  margin-top: 5px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-content-date {
    margin-top: 10px;
    font-size: 14px;
  }
}

.c-news-main__topic-text {
  margin-top: 10px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-news-main__topic-text {
    grid-area: text;
    margin-top: 20px;
    font-size: 14px;
  }
}

.c-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 15px;
  margin: 40px auto 0;
}

@media print, screen and (width >=768px) {
  .c-news-list {
    width: 1077px;
    margin: 120px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 54px;
  }
}

.c-news-list__item {
  padding: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__item {
    position: relative;
    padding: 0;
  }
}

.c-news-list__content {
  margin: 15px 0 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__content {
    margin-top: 20px;
  }
}

.c-news-list__image {
  position: relative;
}

.c-news-list__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-news-list__category.-event span {
  background-color: var(--color-category-event);
}

.c-news-list__category.-event::before {
  background-color: #f8d2ee;
}

.c-news-list__category.-popup span, .c-news-list__category.-pop-up span {
  background-color: var(--color-category-popup);
}

.c-news-list__category.-popup::before, .c-news-list__category.-pop-up::before {
  background-color: #f8d2ee;
}

.c-news-list__category.-present span {
  background-color: var(--color-category-present);
}

.c-news-list__category.-present::before {
  background-color: #f8d2ee;
}

.c-news-list__category.-limited span {
  background-color: var(--color-category-limited);
}

.c-news-list__category.-limited::before {
  background-color: #f8d2ee;
}

.c-news-list__category.-original span {
  background-color: var(--color-category-original);
}

.c-news-list__category.-original::before {
  background-color: #f8d2ee;
}

.c-news-list__category.-service span {
  background-color: var(--color-category-service);
}

.c-news-list__category.-service::before {
  background-color: #f8d2ee;
}

.c-news-list__category span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 68px;
  border-radius: 50%;
  color: var(--color-00-black);
  font-family: var(--font-oswald);
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width <=767px) {
  .c-news-list__category span {
    transform: translate(-10px, -40%);
  }
}

@media print, screen and (width >=768px) {
  .c-news-list__category span {
    width: 107px;
    font-size: 22px;
    transform: translate(-40%, -40%);
  }
}

.c-news-list__category::before {
  position: absolute;
  top: 1%;
  left: -2%;
  z-index: 0;
  width: 68px;
  border-radius: 50%;
  content: "";
  aspect-ratio: 1/1;
}

@media print, screen and (width <=767px) {
  .c-news-list__category::before {
    left: -2%;
    transform: translate(-10px, -40%);
  }
}

@media print, screen and (width >=768px) {
  .c-news-list__category::before {
    width: 107px;
    transform: translate(-40%, -40%);
  }
}

.c-news-list__brand {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-list__brand {
    font-size: 15px;
  }
}

.c-news-list__date {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-list__date {
    margin-top: 5px;
    font-size: 14px;
  }
}

.c-news-list__title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  word-break: break-all;
}

@media print, screen and (width >=768px) {
  .c-news-list__title {
    font-size: 18px;
  }
}

.c-news-list__shop {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-list__shop {
    margin-top: 40px;
    font-size: 13px;
  }
}

.c-news-list__area {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}

@media print, screen and (width >=768px) {
  .c-news-list__area {
    font-size: 13px;
  }
}

.c-news-list__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}

@media print, screen and (width >=768px) {
  .c-news-list__text {
    margin-top: 40px;
    font-size: 14px;
  }
}

.c-news-list__text-link1, .c-news-list__text-link2 {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: break-all;
}

@media print, screen and (width >=768px) {
  .c-news-list__text-link1, .c-news-list__text-link2 {
    font-size: 14px;
  }
}

.c-news-list__text-link1 a, .c-news-list__text-link2 a {
  color: var(--color-01-blue);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-list__text-link1 a:hover, .c-news-list__text-link2 a:hover {
  opacity: 0.7;
  text-emphasis: none;
}

.c-news-pickup-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list {
    width: 1100px;
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

.c-news-pickup-list__item {
  padding: 0;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__item {
    position: relative;
    display: grid;
    gap: 60px;
    padding: 0;
    align-items: center;
  }

  .c-news-pickup-list__item:nth-child(even) {
    grid-template-columns: 1fr 485px;
    grid-template-areas: "content image";
  }

  .c-news-pickup-list__item:nth-child(odd) {
    grid-template-columns: 485px 1fr;
    grid-template-areas: "image content";
  }
}

.c-news-pickup-list__content {
  margin: 15px 0 0;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__content {
    margin-top: 0;
    grid-area: content;
  }
}

.c-news-pickup-list__image {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__image {
    grid-area: image;
    align-self: start;
  }
}

.c-news-pickup-list__image img {
  aspect-ratio: 485/330;
  object-fit: cover;
}

.c-news-pickup-list__category.-event span {
  background-color: var(--color-category-event);
}

.c-news-pickup-list__category.-popup span, .c-news-pickup-list__category.-pop-up span {
  background-color: var(--color-category-popup);
}

.c-news-pickup-list__category.-present span {
  background-color: var(--color-category-present);
}

.c-news-pickup-list__category.-limited span {
  background-color: var(--color-category-limited);
}

.c-news-pickup-list__category.-original span {
  background-color: var(--color-category-original);
}

.c-news-pickup-list__category span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 68px;
  border-radius: 50%;
  color: var(--color-00-black);
  font-family: var(--font-oswald);
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  transform: translate(-40%, -40%);
}

@media print, screen and (width <=767px) {
  .c-news-pickup-list__category span {
    left: 20px;
  }
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__category span {
    width: 107px;
    font-size: 22px;
  }
}

.c-news-pickup-list__category::before {
  position: absolute;
  top: 1%;
  left: -2%;
  z-index: 0;
  width: 68px;
  background-color: #f8d2ee;
  border-radius: 50%;
  content: "";
  transform: translate(-40%, -40%);
  aspect-ratio: 1/1;
}

@media print, screen and (width <=767px) {
  .c-news-pickup-list__category::before {
    left: calc(-2% + 20px);
  }
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__category::before {
    width: 107px;
  }
}

.c-news-pickup-list__brand {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__brand {
    font-size: 15px;
  }
}

.c-news-pickup-list__date {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__date {
    margin-top: 5px;
    font-size: 14px;
  }
}

.c-news-pickup-list__title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__title {
    font-size: 18px;
  }
}

.c-news-pickup-list__shop {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__shop {
    margin-top: 40px;
    font-size: 13px;
  }
}

.c-news-pickup-list__area {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__area {
    font-size: 13px;
  }
}

.c-news-pickup-list__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__text {
    margin-top: 40px;
    font-size: 14px;
  }
}

.c-news-pickup-list__text img {
  width: 100%;
  max-width: 240px;
}

.c-news-pickup-list__text-link1, .c-news-pickup-list__text-link2 {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: break-all;
}

@media print, screen and (width >=768px) {
  .c-news-pickup-list__text-link1, .c-news-pickup-list__text-link2 {
    font-size: 14px;
  }
}

.c-news-pickup-list__text-link1 a, .c-news-pickup-list__text-link2 a {
  color: var(--color-01-blue);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-pickup-list__text-link1 a:hover, .c-news-pickup-list__text-link2 a:hover {
  opacity: 0.7;
  text-emphasis: none;
}

.c-news-kaorium-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  margin: 40px auto 0;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list {
    width: 1100px;
    margin: 80px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
  }
}

.c-news-kaorium-list__item {
  position: relative;
  padding: 0;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 16px;
  }
}

.c-news-kaorium-list__logo {
  margin: 0 auto;
}

.c-news-kaorium-list__logo.-q {
  width: 202px;
}

.c-news-kaorium-list__logo.-shinqs {
  width: 140px;
}

.c-news-kaorium-list__logo.-dress-table {
  width: 102px;
}

.c-news-kaorium-list__content {
  margin: 15px 0 0;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__content {
    margin-top: 0;
  }
}

@media print, screen and (width <=767px) {
  .c-news-kaorium-list__image {
    margin-top: 15px;
  }
}

.c-news-kaorium-list__image img {
  aspect-ratio: 335/200;
  object-fit: cover;
}

.c-news-kaorium-list__brand {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__brand {
    font-size: 15px;
  }
}

.c-news-kaorium-list__date {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__date {
    margin-top: 5px;
    font-size: 14px;
  }
}

.c-news-kaorium-list__title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__title {
    font-size: 18px;
  }
}

.c-news-kaorium-list__shop {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__shop {
    margin-top: 40px;
    font-size: 13px;
  }
}

.c-news-kaorium-list__area {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__area {
    font-size: 13px;
  }
}

.c-news-kaorium-list__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__text {
    margin-top: 40px;
    font-size: 14px;
  }
}

.c-news-kaorium-list__text-link1, .c-news-kaorium-list__text-link2 {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news-kaorium-list__text-link1, .c-news-kaorium-list__text-link2 {
    font-size: 14px;
  }
}

.c-news-kaorium-list__text-link1 a, .c-news-kaorium-list__text-link2 a {
  color: var(--color-01-blue);
  text-decoration: underline;
  transition: opacity 300ms;
}

.c-news-kaorium-list__text-link1 a:hover, .c-news-kaorium-list__text-link2 a:hover {
  opacity: 0.7;
  text-emphasis: none;
}

.c-circle {
  position: absolute;
  z-index: -1;
  height: auto;
  border-radius: 50%;
  opacity: 0.55;
  aspect-ratio: 1/1;
  mix-blend-mode: darken;
}

.c-circle.-category1 {
  background-color: #d7eaed;
}

.c-circle.-category2 {
  background-color: #fffcc4;
}

.c-circle.-category3 {
  background-color: #ffe2c2;
}

.c-circle.-category4 {
  background-color: #dcffd5;
}

.c-circle.-category5 {
  background-color: #fceefb;
}

.c-circle.-category6 {
  background-color: #edfcfc;
}

.c-circle.-float1 {
  animation: circle-float1 6s ease-in-out infinite;
}

.c-circle.-float2 {
  animation: circle-float2 6s ease-in-out infinite;
}

.c-circle.-float3 {
  animation: circle-float3 6s ease-in-out infinite;
}

.c-circle.-delay1 {
  animation-delay: 0s;
}

.c-circle.-delay2 {
  animation-delay: -1s;
}

.c-circle.-delay3 {
  animation-delay: -2s;
}

.c-circle.-delay4 {
  animation-delay: -3s;
}

.c-circle.-delay5 {
  animation-delay: -4s;
}

@keyframes circle-float1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(6px, -10px);
  }

  50% {
    transform: translate(-4px, 8px);
  }

  75% {
    transform: translate(-8px, -4px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes circle-float2 {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-10px, -6px);
  }

  40% {
    transform: translate(-2px, 8px);
  }

  60% {
    transform: translate(8px, 4px);
  }

  80% {
    transform: translate(6px, -8px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes circle-float3 {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(8px, 6px);
  }

  25% {
    transform: translate(-12px, 4px);
  }

  40% {
    transform: translate(4px, -10px);
  }

  55% {
    transform: translate(-4px, 12px);
  }

  70% {
    transform: translate(10px, -4px);
  }

  85% {
    transform: translate(-6px, 8px);
  }

  100% {
    transform: translate(0, 0);
  }
}
/* stylelint-disable block-no-empty -- 子要素スタイルは後で実装 */
.c-kaorium {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  margin-top: 80px;
  margin-bottom: -96px;
  padding: 40px 0 138px;
  background: linear-gradient(to bottom, rgb(250 230 207 / 60%), rgb(199 255 225 / 60%), rgb(216 234 237 / 60%));
}

@media print, screen and (width >=768px) {
  .c-kaorium {
    margin-bottom: -110px;
    padding: 100px 0 210px;
  }
}

.c-kaorium__container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.c-kaorium__inner {
  padding: 0 20px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__inner {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
}

.c-kaorium__title {
  display: grid;
  margin: -100px auto 0;
  font-family: var(--font-oswald);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.04em;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__title {
    margin: -175px auto 0;
  }
}

.c-kaorium__title-line1 {
  font-size: 23px;
  font-weight: 400;
}

@media print, screen and (width >=768px) {
  .c-kaorium__title-line1 {
    font-size: 26px;
  }
}

.c-kaorium__title-line2 {
  font-size: 34px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-kaorium__title-line2 {
    font-size: 46px;
  }
}

.c-kaorium__header {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 32px;
  gap: 48px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__header {
    grid-template-columns: 538px 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 80px;
  }
}

.c-kaorium__header-movie {
  overflow: hidden;
  border-radius: 17px;
  aspect-ratio: 16/9;
}

@media print, screen and (width <=767px) {
  .c-kaorium__header-movie {
    max-width: 390px;
    margin: 0 auto;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium__header-movie {
    width: 550px;
  }
}

.c-kaorium__header-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-kaorium__header-content h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__header-content h3 {
    font-size: 26px;
  }
}

.c-kaorium__header-content p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__header-content p {
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.8;
  }
}

.c-kaorium__howto {
  margin-top: 40px;
  border-bottom: 1px solid var(--color-00-black);
  padding-bottom: 40px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__howto {
    margin-top: 80px;
  }
}

.c-kaorium__howto-title {
  display: flex;
  font-family: var(--font-oswald);
  line-height: 1;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.c-kaorium__howto-title::before, .c-kaorium__howto-title::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  border-top: 1px solid var(--color-00-black);
  flex: 1 1 auto;
}

.c-kaorium__howto-title span {
  font-size: 23px;
  letter-spacing: 0.1em;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media print, screen and (width >=768px) {
  .c-kaorium__howto-title span {
    font-size: 32px;
  }
}

@media print, screen and (width <=767px) {
  .c-kaorium__howto-list {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 40px -20px 0;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium__howto-list {
    margin-top: 40px;
  }
}

.c-kaorium__howto-list ul {
  display: grid;
  gap: 40px;
}

@media print, screen and (width <=767px) {
  .c-kaorium__howto-list ul {
    padding-left: calc((100vw - 240px) / 2);
    grid-template-columns: repeat(5, auto);
  }

  .c-kaorium__howto-list ul::after {
    display: block;
    width: calc((100vw - 240px) / 2 - 40px);
    content: "";
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium__howto-list ul {
    gap: 70px 40px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-kaorium__howto-list li {
  width: 240px;
}

.c-kaorium__howto-image {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-kaorium__howto-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.c-kaorium__place {
  margin-top: 60px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place {
    margin-top: 80px;
  }
}

.c-kaorium__place-title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place-title {
    font-size: 26px;
  }
}

.c-kaorium__place-list {
  margin-top: 20px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place-list {
    margin-top: 20px;
  }
}

.c-kaorium__place-list li {
  display: flex;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.2;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place-list li {
    margin-top: 10px;
    font-size: 18px;
    justify-content: center;
    text-align: center;
  }
}

.c-kaorium__place-list li span:nth-child(1) {
  flex: 0 0 auto;
}

.c-kaorium__place-list li span:nth-child(2) {
  flex: 1 1 auto;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place-list li span:nth-child(2) {
    flex: 0 0 auto;
  }
}

.c-kaorium__place-notice {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-kaorium__place-notice {
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
  }
}

.c-kaorium__place-notice li {
  margin-top: 4px;
}

@media print, screen and (width <=767px) {
  .c-kaorium__place-notice li {
    display: flex;
  }
}

.c-kaorium__place-notice li:nth-child(1) {
  margin-top: 0;
}

.c-kaorium__place-notice li span:nth-child(1) {
  flex: 0 0 auto;
}

.c-kaorium__place-notice li span:nth-child(2) {
  flex: 1 1 auto;
}

.c-kaorium__report {
  position: relative;
  margin: 80px 20px 0;
  padding: 0 20px 30px;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-00-black);
  border-radius: 20px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report {
    width: 690px;
    margin: 100px auto 0;
    padding: 0 40px 60px;
  }
}

.c-kaorium__report-title {
  position: relative;
  width: fit-content;
  height: 2px;
  margin: 0 auto 40px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-title {
    margin: 0 auto 60px;
  }
}

.c-kaorium__report-title span {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-title span {
    font-size: 26px;
  }
}

.c-kaorium__report-title span::before {
  position: absolute;
  bottom: calc(0.5em - 2px);
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-00-white);
  content: "";
}

.c-kaorium__report-text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-text {
    margin-top: 40px;
    font-size: 18px;
  }
}

.c-kaorium__report-button {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-button {
    margin-top: 40px;
  }
}

.c-kaorium__report-button a,
.c-kaorium__report-button > div,
.c-kaorium__report-button > span
{
  display: flex;
  width: 280px;
  padding: 20px 24px;
  background-color: var(--color-00-black);
  border-radius: 100px;
  color: var(--color-00-white);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-button a,
  .c-kaorium__report-button > div, 
  {
    width: 500px;
    padding: 32px 40px;
    font-size: 19px;
    letter-spacing: 0.1em;
  }
}

@media (hover: hover) {
  .c-kaorium__report-button a {
    transition: opacity 300ms;
  }

  .c-kaorium__report-button a:hover {
    opacity: 0.7;
  }
}




.c-kaorium__report-button .kaikin {
  padding: 20px 24px;
  background-color: #d2dee0;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-button div {
    padding: 20px 40px;
  }
}

.c-kaorium__report-button.-campaign {
  margin-top: 15px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-button.-campaign {
    margin-top: 40px;
  }
}

.c-kaorium__report-button.-campaign a {
  background-color: #fdc29f;
  color: var(--color-00-black);
}

.c-kaorium__report-coming-soon-text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-coming-soon-text {
    margin-top: 20px;
    font-size: 18px;
  }
}

.c-kaorium__report-outline {
  height: 180px;
  margin: 20px auto 0;
  padding: 20px 4px;
  background-color: #edf1f5;
  border: 1px solid #707070;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-outline {
    width: 490px;
    height: 250px;
    margin-top: 40px;
    padding: 20px 4px;
    border-radius: 27px;
  }
}

.c-kaorium__report-outline-inner {
  overflow-y: auto;
  height: 100%;
  padding: 10px 16px;
  background-color: #edf1f5;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-outline-inner {
    padding: 20px 16px;
  }
}

.c-kaorium__report-outline h4 {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-outline h4 {
    font-size: 18px;
  }
}

.c-kaorium__report-outline p {
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-outline p {
    font-size: 14px;
  }
}

.c-kaorium__report-outline a {
  display: inline-block;
  margin-top: 1em;
  text-decoration: underline;
}

.c-kaorium__report-outline ul {
  margin-top: 10px;
}

.c-kaorium__report-outline ul li {
  display: flex;
  margin-top: 5px;
  font-size: 12px;
}

@media print, screen and (width >=768px) {
  .c-kaorium__report-outline ul li {
    font-size: 14px;
  }
}

.c-kaorium__report-outline ul li span:nth-child(1) {
  flex: 0 0 auto;
}

.c-kaorium__report-outline ul li span:nth-child(2) {
  flex: 1 1 auto;
}

.c-kaorium__popup {
  margin-top: 60px;
}

.c-kaorium__popup-title {
  margin: 0 -10px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-kaorium__popup-title {
    margin-top: 120px;
    font-size: 26px;
  }
}

.c-kaorium__other {
  margin-top: 60px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-kaorium__other {
    margin-top: 120px;
    font-size: 29px;
  }
}

.c-kaorium__other > span {
  display: inline-block;
}

.c-kaorium .-circle1 {
  opacity: 0.4;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle1 {
    top: 600px;
    left: -140px;
    width: 400px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle1 {
    top: 450px;
    left: calc(50% - 950px);
    width: 500px;
  }
}

.c-kaorium .-circle2 {
  opacity: 0.4;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle2 {
    top: 900px;
    left: 50px;
    width: 220px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle2 {
    top: 780px;
    left: calc(50% - 750px);
    width: 280px;
    opacity: 0.3;
  }
}

.c-kaorium .-circle3 {
  opacity: 0.5;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle3 {
    top: 1200px;
    right: -220px;
    width: 400px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle3 {
    top: 1150px;
    right: calc(50% - 900px);
    width: 460px;
    opacity: 0.6;
  }
}

.c-kaorium .-circle4 {
  opacity: 0.5;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle4 {
    top: 1550px;
    right: -70px;
    width: 280px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle4 {
    top: 1400px;
    right: calc(50% - 650px);
    width: 260px;
  }
}

.c-kaorium .-circle5 {
  background-color: #fae0f8;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle5 {
    top: 2000px;
    left: -180px;
    width: 320px;
    opacity: 0.6;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle5 {
    top: 150px;
    right: calc(50% - 800px);
    width: 300px;
    opacity: 0.5;
  }
}

.c-kaorium .-circle6 {
  opacity: 0.6;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle6 {
    top: 2220px;
    left: 10px;
    width: 260px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle6 {
    top: 350px;
    right: calc(50% - 650px);
    width: 260px;
    opacity: 0.4;
    mix-blend-mode: multiply;
  }
}

.c-kaorium .-circle7 {
  background-color: #ffcb90;
  opacity: 0.4;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle7 {
    right: -200px;
    bottom: 250px;
    width: 400px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle7 {
    right: calc(50% - 900px);
    bottom: 300px;
    width: 460px;
  }
}

.c-kaorium .-circle8 {
  background-color: #c0ffb1;
  opacity: 0.3;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle8 {
    right: -50px;
    bottom: 50px;
    width: 280px;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle8 {
    right: calc(50% - 650px);
    bottom: 150px;
    width: 260px;
  }
}

.c-kaorium .-circle9 {
  background-color: #fae0f8;
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle9 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle9 {
    bottom: 700px;
    left: calc(50% - 900px);
    width: 320px;
    opacity: 0.5;
  }
}

@media print, screen and (width <=767px) {
  .c-kaorium .-circle10 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-kaorium .-circle10 {
    bottom: 550px;
    left: calc(50% - 800px);
    width: 260px;
    opacity: 0.3;
  }
}



