


@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: #d9b4ae;
  --color-background-02: #edd2cf;
  --color-background-03: #e6dddc;
  --color-button-01: #b79853;
  --color-button-02: #57300d;
  --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 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100lvh;
  background-color: #e6c8c2;
}

@media print, screen and (width >=768px) {
  .c-hero {
    min-width: 1200px;
    margin: 0 auto;
  }
}

.c-hero__video {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

@media print, screen and (width >=768px) {
  .c-hero__video {
    object-fit: cover;
  }
}

.c-main {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

@media print, screen and (width >=768px) {
  .c-main {
    padding: 70px 50px 170px;
  }
}

.c-main__spacer {
  width: 100%;
  height: calc(100lvh - 60px);
}

@media print, screen and (width >=768px) {
  .c-main__spacer {
    height: calc(100lvh - 70px);
  }
}

.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;
  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;
  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" "dress" "shinqs";
  }
}

@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: 30px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-image {
    width: 500px;
  }
}

.c-main__map-shop {
  position: relative;
  width: 335px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop {
    position: absolute;
    width: 280px;
  }
}

.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-top: 30px;
    margin-bottom: 0;
    grid-area: dress;
    grid-template-areas: "logo button" "name title";
    grid-template-columns: 1fr 196px;
    gap: 5px 0;
  }

  .c-main__map-shop.-dress-table::after {
    top: -250px;
    left: 42px;
    width: 16px;
    height: 243px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_dress_table_sp.svg");
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-logo {
    width: 83px;
    margin: 0 auto;
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-name {
    margin-top: -30px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-dress-table {
    top: 30px;
    left: 0;
    display: grid;
    gap: 10px 0;
    grid-template-areas: "name logo" "button button" "title title";
    grid-template-columns: 1fr 113px;
    align-items: end;
  }

  .c-main__map-shop.-dress-table::after {
    top: 30px;
    left: 286px;
    width: 115px;
    height: 110px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_dress_table_pc.svg");
  }

  .c-main__map-shop.-dress-table .c-main__map-shop-logo {
    width: 90px;
    margin: 0;
  }
}

@media print, screen and (width <=767px) {
  .c-main__map-shop.-plusq {
    grid-area: plusq;
    display: grid;
    grid-template-areas: "button name" "title logo";
    grid-template-columns: auto 1fr;
    justify-content: center;
    align-items: center;
    gap: 5px 10px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .c-main__map-shop.-plusq::after {
    top: 175px;
    left: 220px;
    width: 35px;
    height: 244px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_plusq_sp.svg");
  }

  .c-main__map-shop.-plusq .c-main__map-shop-logo {
    width: 108px;
    justify-self: center;
    margin-top: -10px;
  }

  .c-main__map-shop.-plusq .c-main__map-shop-image {
    margin-top: 10px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-plusq {
    top: -100px;
    right: 0;
    display: grid;
    gap: 10px;
    grid-template-areas: "logo name" "button button" "title title";
    grid-template-columns: auto 1fr;
    justify-content: center;
  }

  .c-main__map-shop.-plusq::after {
    top: 16px;
    left: -190px;
    width: 210px;
    height: 314px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_plusq_pc.svg");
  }

  .c-main__map-shop.-plusq .c-main__map-shop-logo {
    width: 140px;
    margin: auto 0 auto 20px;
    align-self: self-end;
  }
}

@media print, screen and (width <=767px) {
  .c-main__map-shop.-shinqs {
    grid-area: shinqs;
    display: grid;
    grid-template: "button logo" auto "title name" auto / 196px 1fr;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .c-main__map-shop.-shinqs::after {
    top: -396px;
    right: 33px;
    width: 16px;
    height: 406px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_shinqs_sp.svg");
  }

  .c-main__map-shop.-shinqs .c-main__map-shop-logo {
    width: 97px;
    margin-left: 10px;
  }

  .c-main__map-shop.-shinqs .c-main__map-shop-name {
    margin-top: -75px;
    margin-left: 8px;
  }
}

@media print, screen and (width >=768px) {
  .c-main__map-shop.-shinqs {
    right: 0;
    bottom: -90px;
    display: grid;
    gap: 10px;
    grid-template-areas: "logo name" "button button" "title title";
    grid-template-columns: auto 1fr;
    justify-content: center;
  }

  .c-main__map-shop.-shinqs::after {
    top: -68px;
    left: -90px;
    width: 140px;
    height: 118px;
    background-image: url("/shibuyabeautyjam/specialcontents/2025winter/images/map_line_shinqs_pc.svg");
  }

  .c-main__map-shop.-shinqs .c-main__map-shop-logo {
    width: 110px;
    margin: 0 0 0 20px;
  }
}

.c-main__map-shop-logo {
  grid-area: logo;
  margin: 0;
}

.c-main__map-shop-brand {
  margin: 0;
  font-family: var(--font-oswald);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  grid-area: brand;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-brand {
    margin-top: 5px;
    font-size: 15px;
  }
}

.c-main__map-shop-text {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  grid-area: text;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-text {
    margin-top: 5px;
    font-size: 17px;
  }
}

.c-main__map-shop-image {
  position: relative;
  overflow: hidden;
  width: 196px;
  margin: 0;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  grid-area: button;
  filter: drop-shadow(0 0 14px rgb(0 0 0 / 20%));
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-image {
    width: 280px;
  }
}

.c-main__map-shop-image img {
  display: block;
}

.c-main__map-shop-title {
  grid-area: title;
  display: block;
  font-family: var(--font-oswald);
  font-weight: 500;
  text-align: center;
}

.c-main__map-shop-title-text1 {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-title-text1 {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}

.c-main__map-shop-title-text2 {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-title-text2 {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}

.c-main__map-shop-title-sub {
  display: block;
  width: fit-content;
  margin: -4px auto 0;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-main__map-shop-title-sub {
    margin-top: -6px;
    font-size: 17px;
  }
}

.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-tab {
  display: grid;
  margin: 0 -15px;
  transform: skewX(15deg);
  grid-template-columns: 34% 32% 34%;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-tab {
    margin: 0 -45px;
    transform: skewX(45deg);
  }
}

.c-tab__button {
  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-tab__button:hover {
    opacity: 0.9;
  }
}

.c-tab__button span {
  filter: invert(0);
  transform: skewX(-15deg);
}

@media print, screen and (width >=768px) {
  .c-tab__button span {
    transform: skewX(-45deg);
  }
}

.c-tab__button span img {
  transform: translate3d(0, 0, 0);
}

.c-tab__button[data-index="1"] {
  background-color: var(--color-background-02);
}

.c-tab__button[data-index="1"].-active {
  background-color: var(--color-background-01);
}

.c-tab__button[data-index="1"].-active + .c-tab__button {
  background-color: var(--color-background-02);
}

.c-tab__button[data-index="1"] span {
  display: block;
  width: 93px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="1"] span {
    width: 153px;
  }
}

.c-tab__button[data-index="2"] {
  background-color: var(--color-background-03);
}

.c-tab__button[data-index="2"].-active {
  background-color: var(--color-background-01);
}

.c-tab__button[data-index="2"] span {
  display: block;
  width: 75px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="2"] span {
    width: 126px;
  }
}

.c-tab__button[data-index="3"] {
  background-color: var(--color-background-03);
}

.c-tab__button[data-index="3"].-active {
  background-color: var(--color-background-01);
}

.c-tab__button[data-index="3"] span {
  display: block;
  width: 53px;
}

@media print, screen and (width >=768px) {
  .c-tab__button[data-index="3"] span {
    width: 64px;
  }
}

.c-news {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--color-background-01);
}

@media print, screen and (width >=768px) {
  .c-news {
    min-width: 1200px;
  }
}

.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;
  padding: 70px 20px;
}

@media print, screen and (width >=768px) {
  .c-present {
    padding: 140px 50px;
  }
}

@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: 40px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.c-present__date {
  margin-top: 25px;
  font-size: 16px;
  text-align: right;
}

.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;
}
.c-news-main__topic-inner.sapporo {
	display: flex;
	flex-direction: column;
}
.c-news-main__topic-inner.sapporo .c-news-main__topic-content-title{
	text-align:center
}
.c-news-main__topic-inner.sapporo .c-news-main__topic-image {
	width: 70%;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.c-news-main__topic-title{
			line-height:1.5
	}
}
@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: 1fr;
  gap: 70px;
  margin: 40px auto 0;
}

@media print, screen and (width >=768px) {
  .c-news-list {
    width: 1100px;
    margin: 120px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
  }
}

.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 img {
  aspect-ratio: 353/326;
  object-fit: cover;
}

.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;
  text-align: right;
}

@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;
}

@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;
}

@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;
}

@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;
}

@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;
}



