
@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: #2f1514;
  --color-00-white: #fff;
  --color-background-01: #c0dfd7;
  --color-background-02: #2b0704;
  --color-background-03: #fef5d8;
  --color-background-04: #1f718d;
  --color-border-01: #815932;
  --color-button-01: #ec6785;
  --color-button-02: #8aa5af;
  --gradation-01: linear-gradient(90deg, #b9a59d 0%, #a28478 100%);
  --font-main: "Zen Old Mincho", serif;
  --font-gothic: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", sans-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;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background-01);
  color: var(--color-00-black);
  font-family: var(--font-main);
}

/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media print, screen and (width <=767px) {
  .-pc-only {
    display: none !important;
  }
}

@media print, screen and (width >=768px) {
  .-sp-only {
    display: none !important;
  }
}

@media print, screen and (width <=767px) {
  #tab {
    scroll-margin-top: 70px;
  }
}

/* ==========================================================================
Components
========================================================================== */
.c-hero {
  z-index: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
}

@media print, screen and (width >=768px) {
  .c-hero {
    width: 100%;
    margin: 0 auto;
  }
}

.c-hero__image img {
  width: 100%;
  height: auto;
}

.c-main {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  background-color: var(--color-background-02);
  color: var(--color-00-white);
}

@media print, screen and (width >=768px) {
  .c-main {
    padding: 150px 50px;
  }

  .c-main::after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, #140000, transparent);
    opacity: 0.7;
    content: "";
    pointer-events: none;
  }
}

.c-main__inner {
  position: relative;
  margin: 0 auto;
}

@media print, screen and (width <=767px) {
  .c-main__inner {
    background-image: url("/shinqs/renaming-15th/assets/images/main_image.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }

  .c-main__inner::after {
    position: absolute;
    bottom: -80px;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #140000, transparent);
    content: "";
    pointer-events: none;
  }
}

@media print, screen and (width >=768px) {
  .c-main__inner {
    display: grid;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .c-main__inner::before {
    display: block;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-image: url("/shinqs/renaming-15th/assets/images/main_image.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    content: "";
  }
}

.c-main__content {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 86.6666666667vw 20px 0;
  font-size: 15px;
  grid-template-columns: 1fr;
  gap: 1.5em;
}

@media print, screen and (width >=768px) {
  .c-main__content {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    font-size: 17px;
  }
}

.c-main__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-main__text {
    font-size: 17px;
  }
}

.c-main__text:first-child {
  margin-bottom: 1.5em;
}

.c-news {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--color-background-01);
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-news {
    width: 100%;
  }
}

.c-news__confetti {
  position: absolute;
  top: -10px;
  z-index: 0;
  width: 222px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_confetti.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 924/1446;
}

@media print, screen and (width >=768px) {
  .c-news__confetti {
    top: 20px;
    width: 462px;
  }
}

.c-news__confetti.-left {
  left: calc(50% - 277px);
}

@media print, screen and (width >=768px) {
  .c-news__confetti.-left {
    left: calc(50% - 755px);
  }
}

.c-news__confetti.-right {
  right: calc(50% - 277px);
  transform: scaleX(-1);
}

@media print, screen and (width >=768px) {
  .c-news__confetti.-right {
    right: calc(50% - 755px);
  }
}

.c-news__inner {
  position: relative;
  z-index: 1;
  padding: 60px 20px 70px;
}

@media print, screen and (width >=768px) {
  .c-news__inner {
    margin: 0 auto;
    padding: 160px 50px 100px;
  }
}

.c-news__logo {
  width: 86px;
  margin: 0 auto;
}

@media print, screen and (width >=768px) {
  .c-news__logo {
    width: 115px;
  }
}

.c-news__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.c-news__title {
  margin: 24px -10px 0;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-news__title {
    margin-top: 24px;
    font-size: 48px;
  }
}

.c-news__title span {
  display: block;
}

.c-news__title span:last-child {
  font-size: 80%;
}

.c-news__lead {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
}

@media print, screen and (width >=768px) {
  .c-news__lead {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media print, screen and (width >=768px) {
  .c-news__lead br[class="sp"] {
    display: none;
  }
}

.c-news__part-list {
  display: grid;
  width: fit-content;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media print, screen and (width >=768px) {
  .c-news__part-list {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
}

.c-news__part-list__item {
  width: 335px;
  height: 43px;
}

@media print, screen and (width >=768px) {
  .c-news__part-list__item {
    width: 440px;
    height: 66px;
  }
}

.c-news__part-list__link, .c-news__part-list__label {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: var(--color-00-white);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-news__part-list__link, .c-news__part-list__label {
    font-size: 20px;
  }
}

.c-news__part-list__link {
  background-image: url("/shinqs/renaming-15th/assets/images/bg_button1.svg");
  text-decoration: none;
  transition: opacity 200ms;
}

@media (hover: hover) {
  .c-news__part-list__link:hover {
    opacity: 0.7;
  }

  .c-news__part-list__link:hover::after {
    transform: translateY(15%);
  }
}

.c-news__part-list__link::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  display: block;
  width: 17px;
  height: 11px;
  background-image: url("/shinqs/renaming-15th/assets/images/icon_button_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  transition: transform 150ms;
}

@media print, screen and (width >=768px) {
  .c-news__part-list__link::after {
    top: calc(50% - 4px);
    right: 18px;
    width: 18px;
    height: 12px;
  }
}

.c-news__part-list__label {
  background-image: url("/shinqs/renaming-15th/assets/images/bg_button2.svg");
  cursor: default;
  pointer-events: none;
}

.c-news-item {
  position: relative;
  width: 100%;
  margin: 60px auto 0;
  padding: 50px 20px;
  background-color: var(--color-background-03);
  border: 4px solid var(--color-border-01);
  border-radius: 28px;
  scroll-margin-top: 70px;
}

@media print, screen and (width >=768px) {
  .c-news-item {
    width: 100%;
    max-width: 1100px;
    margin-top: 100px;
    scroll-margin-top: 95px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.c-news-item::before, .c-news-item::after {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  pointer-events: none;
}

.c-news-item:nth-of-type(odd)::before {
  top: -25px;
  left: -94px;
  width: 165px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_red.webp");
  aspect-ratio: 890/1090;
}

@media print, screen and (width >=768px) {
  .c-news-item:nth-of-type(odd)::before {
    top: -42px;
    left: -134px;
    width: 445px;
  }
}

.c-news-item:nth-of-type(odd)::after {
  right: -110px;
  bottom: -15px;
  width: 162px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_blue.webp");
  aspect-ratio: 620/1070;
}

@media print, screen and (width >=768px) {
  .c-news-item:nth-of-type(odd)::after {
    right: -230px;
    bottom: -185px;
    width: 310px;
  }
}

.c-news-item:nth-of-type(even)::before {
  top: -25px;
  left: -64px;
  width: 165px;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_orange.webp");
  aspect-ratio: 760/920;
  transform: rotate(-15deg);
}

@media print, screen and (width >=768px) {
  .c-news-item:nth-of-type(even)::before {
    top: -45px;
    left: -94px;
    width: 390px;
    transform: none;
  }
}

.c-news-item:nth-of-type(even)::after {
  right: -140px;
  bottom: -80px;
  width: 190px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_purple.webp");
  aspect-ratio: 680/930;
}

@media print, screen and (width >=768px) {
  .c-news-item:nth-of-type(even)::after {
    right: -280px;
    bottom: -135px;
    width: 340px;
  }
}

.c-news-item:has(.c-news-item__coming-soon):nth-of-type(2)::after {
  content: none;
}

.c-news-item:has(.c-news-item__coming-soon):nth-of-type(3)::before {
  content: none;
}

.c-news-item:has(.c-news-item__coming-soon):nth-of-type(3)::after {
  right: -140px;
  bottom: -170px;
  width: 190px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_purple.webp");
  aspect-ratio: 680/930;
}

@media print, screen and (width >=768px) {
  .c-news-item:has(.c-news-item__coming-soon):nth-of-type(3)::after {
    right: -210px;
    bottom: -15px;
    width: 340px;
  }
}

.c-news-item:has(.c-news-item__coming-soon):nth-of-type(4)::after {
  content: none;
}

.c-news-item:has(.c-news-item__coming-soon):nth-of-type(4)::before {
  top: -25px;
  left: -94px;
  width: 165px;
  height: auto;
  background-image: url("/shinqs/renaming-15th/assets/images/news_ribbon_red.webp");
  aspect-ratio: 890/1090;
}

@media print, screen and (width >=768px) {
  .c-news-item:has(.c-news-item__coming-soon):nth-of-type(4)::before {
    top: -42px;
    left: -180px;
    width: 445px;
  }
}

.c-news-item + .c-news-item {
  margin-top: 100px;
}

@media print, screen and (width >=768px) {
  .c-news-item + .c-news-item {
    margin-top: 100px;
  }
}

.c-news-item__title {
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-news-item__title-sub {
  display: block;
  font-size: 25px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-news-item__title-sub {
    font-size: 30px;
  }
}

.c-news-item__title-main {
  display: block;
  margin-top: 8px;
  font-size: 25px;
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-news-item__title-main {
    margin-top: 4px;
    font-size: 30px;
  }
}

.c-news-item__date {
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-news-item__date {
    margin-top: 24px;
    font-size: 21px;
  }
}

.c-news-item__text {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-news-item__text {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }
}

@media print, screen and (width >=768px) {
  .c-news-item__text br[class="sp"] {
    display: none;
  }
}

.c-news-item__coming-soon {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
}

@media print, screen and (width >=768px) {
  .c-news-item__coming-soon {
    margin-top: 40px;
    font-size: 43px;
  }
}

.c-letter {
  position: relative;
  z-index: 1;
  padding: 0 20px 100px;
}

@media print, screen and (width >=768px) {
  .c-letter {
    padding: 0 50px 100px;
  }
}

.c-letter__inner {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-letter__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.c-letter__inner::before {
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-button-01);
  border-radius: 10px;
  content: "";
  filter: drop-shadow(4px 4px 8px rgb(0 0 0 / 30%));
}

@media print, screen and (width >=768px) {
  .c-letter__inner::before {
    top: 40px;
    right: -50px;
  }
}

.c-letter__icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 86px;
  height: 87px;
}

.c-letter__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.c-letter__main {
  position: relative;
  z-index: 1;
  padding: 40px 20px 20px;
  background-color: rgb(255 255 255 / 97%);
  border: 1px solid #707070;
  clip-path: polygon(0 0, calc(100% - 86px) 0, 100% calc(0% + 75px), 100% 100%, 0 100%);
}

@media print, screen and (width >=768px) {
  .c-letter__main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 64px;
    padding: 48px 40px;
  }
}

@media screen and (width >=768px) and (width <= 1024px) {
  .c-letter__main {
    gap: 32px;
    padding: 48px 32px;
  }
}

.c-letter__main-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 88px;
}

.c-letter__title {
  width: 214px;
}

@media print, screen and (width >=768px) {
  .c-letter__title {
    width: 100%;
    max-width: 214px;
    align-self: center;
  }
}

.c-letter__title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.c-letter__content {
  margin-top: 32px;
  padding: 1px 0;
  background-image: url("/shinqs/renaming-15th/assets/images/letter_line.png");
  background-repeat: repeat;
  background-position: left top;
  background-size: 6px 2.2em;
  line-height: 2.2em;
}

@media print, screen and (width >=768px) {
  .c-letter__content {
    min-width: 360px;
    margin-top: 0;
    background-image: url("/shinqs/renaming-15th/assets/images/letter_line_pc.png");
    background-size: 6px 2.4em;
    line-height: 2.4em;
  }
}

@media screen and (width >=768px) and (width <= 1024px) {
  .c-letter__content {
    min-width: 320px;
  }
}

.c-letter__text {
  font-size: 12px;
  line-height: inherit;
}

@media print, screen and (width >=768px) {
  .c-letter__text {
    font-size: 15px;
  }
}

@media screen and (width >=768px) and (width <= 1024px) {
  .c-letter__text {
    font-size: 13px;
  }
}

.c-letter__logo {
  width: 130px;
  margin: 32px 0 0 auto;
}

@media print, screen and (width >=768px) {
  .c-letter__logo {
    width: 100%;
    max-width: 130px;
    margin: 0;
    align-self: self-end;
  }
}

.c-letter__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.c-footer {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
  background-color: #f1eade;
  color: var(--color-00-black);
}

@media print, screen and (width >=768px) {
  .c-footer {
    padding: 20px 50px;
  }
}

@media print, screen and (width >=768px) {
  .c-footer__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.c-footer__copyright {
  margin: 0;
  font-family: var(--font-gothic);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media print, screen and (width >=768px) {
  .c-footer__copyright {
    font-size: 12px;
  }
}

.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-news-list {
  display: grid;
  width: fit-content;
  margin: 40px auto 0;
  grid-template-columns: 1fr;
  gap: 60px 0;
}

@media print, screen and (width >=768px) {
  .c-news-list {
    margin: 60px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 16px;
    padding: 0 40px;
  }
}

.c-news-list__item {
  display: grid;
  padding: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-news-list__item {
    position: relative;
    padding: 0;
  }
}

.c-news-list__content {
  margin: 0;
  align-items: start;
}

@media print, screen and (width >=768px) {
  .c-news-list__content {
    width: 100%;
    max-width: 274px;
    margin: 0 auto;
  }
}

.c-news-list__image {
  position: relative;
  margin: 0 -20px 40px;
}

@media print, screen and (width >=768px) {
  .c-news-list__image {
    margin: 0 -16px;
  }
}

.c-news-list__image img {
  display: block;
  margin: 0 auto;
  transform: scale(1.15);
  transform-origin: center top;
}

@media print, screen and (width >=768px) {
  .c-news-list__image img {
    transform: scale(1);
  }
}

.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__copy {
  margin-top: 15px;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  word-break: break-all;
  overflow-wrap: anywhere;
}

@media print, screen and (width >=768px) {
  .c-news-list__copy {
    font-size: 20px;
  }
}

.c-news-list__title {
  margin-top: 15px;
  font-family: var(--font-gothic);
  font-size: 18px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}

@media print, screen and (width >=768px) {
  .c-news-list__title {
    margin-top: 16px;
    font-size: 16px;
  }
}

.c-news-list__date {
  margin-top: 15px;
  font-family: var(--font-gothic);
  font-size: 12px;
  line-height: 1.5;
}

@media print, screen and (width >=768px) {
  .c-news-list__date {
    margin-top: 15px;
    font-size: 13px;
  }
}

.c-news-list__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

@media print, screen and (width >=768px) {
  .c-news-list__buttons {
    width: 100%;
    max-width: 274px;
    margin: 24px auto 0;
  }
}

.c-news-list__button1 a, .c-news-list__button2 a {
  display: flex;
  width: 100%;
  padding: 16px;
  background-color: var(--color-button-01);
  border-radius: 100px;
  color: var(--color-00-white);
  font-family: var(--font-gothic);
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms;
}

@media print, screen and (width >=768px) {
  .c-news-list__button1 a, .c-news-list__button2 a {
    font-size: 15px;
  }
}

@media (hover: hover) {
  .c-news-list__button1 a:hover, .c-news-list__button2 a:hover {
    opacity: 0.7;
  }
}



