@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%;
  }
}

: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-01-blue: #0660a5;
  --color-02-red: #e53b3d;
  --color-03-yellow: #fbc70d;
  --color-04-orange: #ea9419;
  --color-05-grey: #b5b5b6;
  --color-06-green: #146658;
  --color-07-black: #000;
  --color-08-beige: #fcf6ec;
  --color-09-white: #fff;
  --color-10-gray: #242a2f;
  --font-family-main: 'YakuHanJP', 'Zen Kaku Gothic Antique', sans-serif;
  --font-family-en: 'brandon-grotesque', sans-serif;
  --content-width-base: 1000px;
  --content-width-slim: 900px;
  --content-width-wide: 1440px;
  --line-height-s: 1.2;
  --line-height-m: 1.5;
  --line-height-l: 1.7;
  --line-height-xl: 1.9;
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-behavior: auto;
}

html:has(dialog:not(.c-calendar-filter__dialog)[open]) {
  overflow: hidden;
}

body {
  margin: 0;
  background-color: var(--color-08-beige);
  color: var(--color-07-black);
  font-family: var(--font-family-main);
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  line-height: var(--line-height-l);
}

@media print, screen and (width >=768px) {
  body {
    font-size: calc(30 / 1440 * 100vw);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--color-00-black);
  outline-offset: 4px;
  border-radius: 4px;
}

input,
select,
textarea,
legend,
label,
form,
button {
  display: block;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  appearance: none;
}

button:focus-visible {
  outline: 2px solid var(--color-00-black);
  outline-offset: 4px;
  border-radius: 4px;
}

::placeholder {
  color: var(--color-00-gray);
}

/* 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;
  }
}

.js-inview {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.15, 0.61, 0.51, 0.99), transform 0.8s cubic-bezier(0.15, 0.61, 0.51, 0.99);
  transform: translateY(50px);
}

.js-inview.-showed {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-mask {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.15, 0.61, 0.51, 0.99);
}

.js-inview-mask.-showed {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.js-inview-zoom {
  overflow: hidden;
}

.js-inview-zoom > * {
  opacity: 0;
  transform: scale(1.2);
}

.js-inview-zoom.-showed > * {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.15, 0.61, 0.51, 0.99), transform 2.4s cubic-bezier(0.15, 0.61, 0.51, 0.99);
  transform: scale(1);
}

/* ==========================================================================
Components
========================================================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: calc(26 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-header {
    height: calc(65 / 1440 * 100vw);
  }
}

.c-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(32 / 375 * 100vw) calc(16 / 375 * 100vw) 0 calc(28 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-header__body {
    padding: calc(42 / 1440 * 100vw) calc(56 / 1440 * 100vw) 0 calc(41 / 1440 * 100vw);
  }
}

.c-header__logo {
  width: calc(90 / 375 * 100vw);
  height: calc(26 / 375 * 100vw);
  padding-top: calc(2 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-header__logo {
    width: calc(224 / 1440 * 100vw);
    height: calc(65 / 1440 * 100vw);
    padding-top: 0;
  }
}

.c-header__navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: auto;
  gap: calc(4 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-header__navigation-list {
    margin-top: calc(0 / 1440 * 100vw);
    gap: calc(9 / 1440 * 100vw);
  }
}

.c-header__navigation-item {
  font-size: calc(8 / 375 * 100vw);
  font-weight: 650;
}

@media print, screen and (width >=768px) {
  .c-header__navigation-item {
    border-radius: calc(5 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-header__navigation-link {
  display: block;
  padding: calc(6 / 375 * 100vw);
  background-color: var(--color-09-white);
  border: 1px solid var(--color-07-black);
  border-radius: calc(2 / 375 * 100vw);
  transition: background-color 200ms ease, color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-header__navigation-link {
    padding: calc(7 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}

@media (hover: hover) {
  .c-header__navigation-link:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
  }
}

.c-header__navigation-link.-online-store {
  background-color: var(--color-02-red);
  border-color: var(--color-07-black);
  color: var(--color-09-white);
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: var(--color-07-black);
  transition: background-color 200ms ease, color 200ms ease, -webkit-text-stroke-width 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-header__navigation-link.-online-store {
    -webkit-text-stroke-width: 0.5px;
  }
}

@media (hover: hover) {
  .c-header__navigation-link.-online-store:hover {
    background-color: var(--color-07-black);
    color: var(--color-02-red);
    -webkit-text-stroke-width: 0;
  }
}

.c-header__icon-image1 {
  position: absolute;
  top: -130%;
  right: 4%;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-image: url("/assets/images/top/header_icon1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-header__icon-image1 {
    top: calc(-94 / 1440 * 100vw);
    right: calc(66 / 1440 * 100vw);
    z-index: -1;
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-footer {
  padding: calc(86 / 375 * 100vw) calc(22 / 375 * 100vw) calc(32 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-footer {
    padding: calc(102 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(75 / 1440 * 100vw);
  }
}

.c-footer__title {
  display: none;
}

@media print, screen and (width >=768px) {
  .c-footer__title {
    display: block;
    font-size: calc(24 / 1440 * 100vw);
  }
}

.c-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(31 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-footer__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(60 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}

.c-footer__list-item {
  border: 1px solid var(--color-07-black);
}

.c-footer__list-link {
  display: flex;
  height: 100%;
  padding: calc(20 / 375 * 100vw) calc(25 / 375 * 100vw) calc(30 / 375 * 100vw);
  background-color: var(--color-08-beige);
  transition: background-color 200ms ease, color 200ms ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(28 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-footer__list-link {
    flex-direction: row;
    gap: calc(30 / 1440 * 100vw);
    padding: calc(24 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  }
}

@media (hover: hover) {
  .c-footer__list-link:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
  }
}

.c-footer__list-image {
  display: block;
  width: calc(180 / 375 * 100vw);
  margin: 0 auto;
  flex-shrink: 0;
}

@media print, screen and (width >=768px) {
  .c-footer__list-image {
    width: calc(180 / 1440 * 100vw);
  }
}

.c-footer__list-content {
  height: 100%;
}

.c-footer__list-title {
  margin-top: calc(10 / 375 * 100vw);
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-footer__list-title {
    margin-top: calc(10 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
  }
}

.c-footer__list-description {
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-footer__list-description {
    margin-top: calc(20 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}

.c-footer__icon-list {
  display: grid;
  overflow: visible;
  width: 100%;
  grid-auto-rows: calc(26 / 375 * 100vw);
  grid-template-columns: repeat(auto-fill, calc(53 / 375 * 100vw));
  gap: calc(16 / 375 * 100vw);
  justify-content: start;
  margin-top: calc(94 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-footer__icon-list {
    grid-auto-rows: calc(47 / 1440 * 100vw);
    margin-top: calc(115 / 1440 * 100vw);
    grid-template-columns: repeat(auto-fill, calc(96 / 1440 * 100vw));
    gap: calc(28 / 1440 * 100vw);
  }
}

.c-footer__icon-list-item {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 200%;
  transform: translateY(-50%);
  align-items: flex-end;
}

.c-footer__icon-list-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.c-footer__bottom {
  margin-top: calc(42 / 375 * 100vw);
  font-size: calc(33 / 375 * 100vw);
  line-height: 1;
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(45 / 1440 * 100vw);
    font-size: calc(55 / 1440 * 100vw);
  }
}

.c-footer__go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(6 / 375 * 100vw);
  margin: 0 auto;
  transition: color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-footer__go-top {
    order: 2;
    margin: 0;
  }
}

@media (hover: hover) {
  .c-footer__go-top:hover {
    color: var(--color-03-yellow);
  }

  .c-footer__go-top:hover .c-footer__go-top-triangle {
    background-color: var(--color-03-yellow);
  }
}

.c-footer__go-top-triangle {
  position: relative;
  display: inline-block;
  width: calc(28 / 375 * 100vw);
  height: calc(22.8 / 375 * 100vw);
  background: #000;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  transition: background-color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-footer__go-top-triangle {
    width: calc(45 / 1440 * 100vw);
    height: calc(38 / 1440 * 100vw);
  }
}

.c-footer__go-top-triangle::before {
  position: absolute;
  bottom: calc(1 / 375 * 100vw);
  left: 50%;
  display: block;
  width: calc(24.4 / 375 * 100vw);
  height: calc(19.9 / 375 * 100vw);
  background: var(--color-08-beige);
  content: "";
  transform: translateX(-50%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

@media print, screen and (width >=768px) {
  .c-footer__go-top-triangle::before {
    bottom: calc(1 / 1440 * 100vw);
    width: calc(41.4 / 1440 * 100vw);
    height: calc(35 / 1440 * 100vw);
  }
}

@media print, screen and (width >=768px) {
  .c-footer__copyright {
    order: 1;
  }
}

.c-top-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-01-blue);
  aspect-ratio: 375/450;
}

@media print, screen and (width >=768px) {
  .c-top-hero {
    aspect-ratio: 1440/900;
  }
}

.c-top-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.c-top-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-top-hero__title {
  position: absolute;
  top: calc(262 / 375 * 100vw);
  left: calc(30 / 375 * 100vw);
  z-index: 1;
  display: grid;
  color: var(--color-09-white);
  font-weight: 500;
  grid-template-columns: 1fr;
  gap: calc(5 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-hero__title {
    top: calc(287 / 1440 * 100vw);
    left: calc(40 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
}

.c-top-hero__title-line {
  width: fit-content;
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  color: var(--color-01-blue);
  font-size: calc(36 / 375 * 100vw);
  line-height: 1;
}

@media print, screen and (width >=768px) {
  .c-top-hero__title-line {
    font-size: calc(90 / 1440 * 100vw);
  }
}

.c-top-hero__icon-image1, .c-top-hero__icon-image2, .c-top-hero__icon-image3, .c-top-hero__icon-image4 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-hero__icon-image1, .c-top-hero__icon-image2, .c-top-hero__icon-image3, .c-top-hero__icon-image4 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-hero__icon-image1 {
  background-image: url("/assets/images/top/top_hero_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-hero__icon-image1 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-top-hero__icon-image1 {
    top: 21%;
    left: 1%;
  }
}

.c-top-hero__icon-image2 {
  background-image: url("/assets/images/top/top_hero_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-hero__icon-image2 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-top-hero__icon-image2 {
    top: 45%;
    left: 32%;
  }
}

.c-top-hero__icon-image3 {
  background-image: url("/assets/images/top/top_hero_icon3.webp");
}

@media print, screen and (width <=767px) {
  .c-top-hero__icon-image3 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-top-hero__icon-image3 {
    top: 87%;
    left: 69%;
  }
}

.c-top-hero__icon-image4 {
  background-image: url("/assets/images/top/top_hero_icon4.webp");
}

@media print, screen and (width <=767px) {
  .c-top-hero__icon-image4 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-top-hero__icon-image4 {
    top: 88%;
    left: 84%;
  }
}

.c-mesure-hero {
  position: relative;
  aspect-ratio: 375/300;
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  .c-mesure-hero {
    aspect-ratio: 1440/521;
  }
}

.c-mesure-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.c-mesure-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mesure-hero__title {
  position: absolute;
  top: calc(86 / 375 * 100vw);
  left: calc(23 / 375 * 100vw);
  z-index: 1;
  display: grid;
  font-weight: 500;
  grid-template-columns: 1fr;
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__title {
    top: calc(186 / 1440 * 100vw);
    left: calc(104 / 1440 * 100vw);
  }
}

.c-mesure-hero__title-line {
  width: fit-content;
  padding: calc(12 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  line-height: 1;
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__title-line {
    padding: calc(12 / 1440 * 100vw);
  }
}

.c-mesure-hero__title-line:nth-of-type(1) {
  font-size: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__title-line:nth-of-type(1) {
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-mesure-hero__title-line:nth-of-type(2) {
  margin-top: calc(-1 / 375 * 100vw);
  font-size: calc(50 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__title-line:nth-of-type(2) {
    margin-top: calc(-1 / 1440 * 100vw);
    font-size: calc(120 / 1440 * 100vw);
  }
}

.c-mesure-hero__title-line:nth-of-type(3) {
  margin-top: calc(-1 / 375 * 100vw);
  font-size: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__title-line:nth-of-type(3) {
    margin-top: calc(-1 / 1440 * 100vw);
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-mesure-hero__icon-image1, .c-mesure-hero__icon-image2, .c-mesure-hero__icon-image3, .c-mesure-hero__icon-image4, .c-mesure-hero__icon-image5, .c-mesure-hero__icon-image6 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image1, .c-mesure-hero__icon-image2, .c-mesure-hero__icon-image3, .c-mesure-hero__icon-image4, .c-mesure-hero__icon-image5, .c-mesure-hero__icon-image6 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-mesure-hero__icon-image1 {
  background-image: url("/assets/images/mesure/mesure_hero_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image1 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image1 {
    top: 12%;
    left: 3%;
  }
}

.c-mesure-hero__icon-image2 {
  background-image: url("/assets/images/mesure/mesure_hero_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image2 {
    top: 6.5%;
    left: 3%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image2 {
    top: 6%;
    left: 20%;
  }
}

.c-mesure-hero__icon-image3 {
  background-image: url("/assets/images/mesure/mesure_hero_icon3.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image3 {
    top: -10.5%;
    left: 85%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image3 {
    top: -9%;
    left: 55.5%;
  }
}

.c-mesure-hero__icon-image4 {
  background-image: url("/assets/images/mesure/mesure_hero_icon4.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image4 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image4 {
    top: 30%;
    left: 67%;
  }
}

.c-mesure-hero__icon-image5 {
  background-image: url("/assets/images/mesure/mesure_hero_icon4.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image5 {
    top: 82.5%;
    left: 48%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image5 {
    top: 79.5%;
    left: 38.5%;
  }
}

.c-mesure-hero__icon-image6 {
  background-image: url("/assets/images/mesure/mesure_hero_icon5.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-hero__icon-image6 {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-hero__icon-image6 {
    top: 71%;
    left: 67%;
    z-index: -1;
  }
}

.c-mesure-concept {
  position: relative;
  overflow: hidden;
  background-color: var(--color-03-yellow);
}

.c-mesure-concept__inner {
  padding: calc(49 / 375 * 100vw) calc(22 / 375 * 100vw) calc(56 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__inner {
    padding: calc(129 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(101 / 1440 * 100vw);
  }
}

.c-mesure-concept__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__list {
    gap: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-concept__item {
  padding: calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
  border: 1px solid var(--color-07-black);
}

.c-mesure-concept__item:nth-of-type(1) {
  background-color: var(--color-02-red);
}

.c-mesure-concept__item:nth-of-type(2) {
  background-color: var(--color-01-blue);
}

.c-mesure-concept__sub {
  width: fit-content;
  padding: 0 calc(4 / 375 * 100vw);
  background-color: var(--color-07-black);
  color: var(--color-08-beige);
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__sub {
    margin-left: auto;
    font-size: calc(22 / 1440 * 100vw);
  }
}

.c-mesure-concept__title {
  display: flex;
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(30 / 375 * 100vw);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__title {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    font-size: calc(56 / 1440 * 100vw);
  }
}

.c-mesure-concept__title-box {
  display: inline-block;
  padding: calc(10 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__title-box {
    padding: calc(10 / 1440 * 100vw);
  }
}

.c-mesure-concept__title-box.-line2 {
  align-self: flex-end;
  margin-top: -1px;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__title-box.-line2 {
    align-self: center;
    margin-top: 0;
  }
}

.c-mesure-concept__title-box.-line3 {
  margin-top: -1px;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__title-box.-line3 {
    margin-top: 0;
  }
}

.c-mesure-concept__title-group {
  display: contents;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__title-group {
    display: flex;
    margin-top: -1px;
    margin-left: calc(164 / 1440 * 100vw);
    background: var(--color-08-beige);
    border: 1px solid var(--color-07-black);
    align-items: center;
  }

  .c-mesure-concept__title-group .c-mesure-concept__title-box {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
    border: none;
  }

  .c-mesure-concept__title-group .c-mesure-concept__title-box.-line2 {
    padding-left: calc(20 / 1440 * 100vw);
  }

  .c-mesure-concept__title-group .c-mesure-concept__title-box.-line3 {
    padding-right: calc(20 / 1440 * 100vw);
  }
}

.c-mesure-concept__description {
  position: relative;
  z-index: 2;
  margin-top: calc(20 / 375 * 100vw);
  padding: calc(10 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  font-size: calc(18 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__description {
    margin-top: calc(40 / 1440 * 100vw);
    padding: calc(10 / 1440 * 100vw) calc(38 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-concept__icon-image1, .c-mesure-concept__icon-image2, .c-mesure-concept__icon-image3, .c-mesure-concept__icon-image4 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__icon-image1, .c-mesure-concept__icon-image2, .c-mesure-concept__icon-image3, .c-mesure-concept__icon-image4 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-mesure-concept__icon-image1 {
  background-image: url("/assets/images/mesure/mesure_concept_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-concept__icon-image1 {
    top: 0.5%;
    left: 13%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__icon-image1 {
    top: 8.4%;
    left: 21%;
  }
}

.c-mesure-concept__icon-image2 {
  background-image: url("/assets/images/mesure/mesure_concept_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-concept__icon-image2 {
    top: 16.6%;
    left: 61%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__icon-image2 {
    top: 17.7%;
    left: 76%;
    z-index: 3;
  }
}

.c-mesure-concept__icon-image3 {
  background-image: url("/assets/images/mesure/mesure_concept_icon3.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-concept__icon-image3 {
    top: 61.3%;
    left: 75%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__icon-image3 {
    top: 63.2%;
    left: 57%;
  }
}

.c-mesure-concept__icon-image4 {
  background-image: url("/assets/images/mesure/mesure_concept_icon4.webp");
}

@media print, screen and (width <=767px) {
  .c-mesure-concept__icon-image4 {
    top: 69.4%;
    left: 61%;
  }
}

@media print, screen and (width >=768px) {
  .c-mesure-concept__icon-image4 {
    top: 71%;
    left: 13%;
  }
}

.c-mesure-basics__inner {
  padding: calc(50 / 375 * 100vw) calc(22 / 375 * 100vw) calc(53 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__inner {
    padding: calc(183 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(121 / 1440 * 100vw);
  }
}

.c-mesure-basics__sub {
  width: fit-content;
  padding: 0 calc(4 / 375 * 100vw);
  background-color: var(--color-07-black);
  color: var(--color-08-beige);
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__sub {
    padding: 0 calc(4 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}

.c-mesure-basics__title {
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(30 / 375 * 100vw);
  line-height: 1.4;
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__title {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-basics__description {
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(18 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__description {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-basics__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20 / 375 * 100vw);
  margin-top: calc(50 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__list {
    gap: calc(30 / 1440 * 100vw);
    margin-top: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-basics__item {
  display: grid;
  grid-template-areas: "number image" "title title" "description description";
  grid-template-columns: auto 1fr;
  border: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item {
    grid-template-areas: "number title image" "number description description";
  }
}

.c-mesure-basics__item:nth-of-type(1) .c-mesure-basics__item-number {
  background-image: url("/assets/images/icon/icon_1_sp.svg");
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item:nth-of-type(1) .c-mesure-basics__item-number {
    background-image: url("/assets/images/icon/icon_1.svg");
  }
}

.c-mesure-basics__item:nth-of-type(2) .c-mesure-basics__item-number {
  background-image: url("/assets/images/icon/icon_2_sp.svg");
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item:nth-of-type(2) .c-mesure-basics__item-number {
    background-image: url("/assets/images/icon/icon_2.svg");
  }
}

.c-mesure-basics__item:nth-of-type(3) .c-mesure-basics__item-number {
  background-image: url("/assets/images/icon/icon_3_sp.svg");
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item:nth-of-type(3) .c-mesure-basics__item-number {
    background-image: url("/assets/images/icon/icon_3.svg");
  }
}

.c-mesure-basics__item-number {
  width: calc(130 / 375 * 100vw);
  height: calc(180 / 375 * 100vw);
  grid-area: number;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-right: 1px solid var(--color-07-black);
  border-bottom: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item-number {
    width: calc(330 / 1440 * 100vw);
    height: auto;
    border-bottom: none;
  }
}

.c-mesure-basics__item-title {
  grid-area: title;
  border-bottom: 1px solid var(--color-07-black);
  padding: calc(22 / 375 * 100vw) calc(25 / 375 * 100vw);
  font-size: calc(24 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item-title {
    padding: calc(60 / 1440 * 100vw) calc(60 / 1440 * 100vw) calc(44 / 1440 * 100vw);
    font-size: calc(40 / 1440 * 100vw);
    border-right: 1px solid var(--color-07-black);
  }
}

.c-mesure-basics__item-description {
  grid-area: description;
  padding: calc(22 / 375 * 100vw) calc(25 / 375 * 100vw);
  font-size: calc(20 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item-description {
    padding: calc(62 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-mesure-basics__item-image {
  grid-area: image;
  padding: calc(34 / 375 * 100vw) calc(33 / 375 * 100vw);
  border-bottom: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-basics__item-image {
    width: calc(264 / 1440 * 100vw);
    padding: calc(41 / 1440 * 100vw) calc(42 / 1440 * 100vw);
  }
}

.c-mesure-basics__item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--color-07-black);
  aspect-ratio: 180/150;
}

.c-mesure-howto {
  background-color: var(--color-07-black);
}

.c-mesure-howto__inner {
  padding: calc(50 / 375 * 100vw) calc(22 / 375 * 100vw) calc(31 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__inner {
    padding: calc(133 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(127 / 1440 * 100vw);
  }
}

.c-mesure-howto__sub {
  width: fit-content;
  padding: 0 calc(4 / 375 * 100vw);
  background-color: var(--color-08-beige);
  color: var(--color-07-black);
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__sub {
    padding: 0 calc(4 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}

.c-mesure-howto__title {
  margin-top: calc(20 / 375 * 100vw);
  color: var(--color-08-beige);
  font-size: calc(30 / 375 * 100vw);
  line-height: 1.4;
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__title {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-howto__description {
  margin-top: calc(20 / 375 * 100vw);
  color: var(--color-08-beige);
  font-size: calc(18 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__description {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-howto__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(10 / 375 * 100vw);
  margin-top: calc(50 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__list {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(50 / 1440 * 100vw);
    margin-top: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-howto__item {
  position: relative;
  padding: calc(30 / 375 * 100vw) calc(25 / 375 * 100vw) calc(35 / 375 * 100vw);
  background-color: var(--color-08-beige);
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__item {
    padding: calc(40 / 1440 * 100vw);
  }
}

.c-mesure-howto__item.-true::before, .c-mesure-howto__item.-false::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(80 / 375 * 100vw);
  height: calc(80 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__item.-true::before, .c-mesure-howto__item.-false::before {
    width: calc(100 / 1440 * 100vw);
    height: calc(100 / 1440 * 100vw);
  }
}

.c-mesure-howto__item.-true::before {
  background-image: url("/assets/images/icon/icon_true.svg");
}

.c-mesure-howto__item.-false::before {
  background-image: url("/assets/images/icon/icon_false.svg");
}

.c-mesure-howto__item-image {
  aspect-ratio: 280/180;
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__item-image {
    aspect-ratio: 300/200;
  }
}

.c-mesure-howto__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mesure-howto__item-description {
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-howto__item-description {
    margin-top: calc(20 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}

.c-mesure-spec {
  background-color: var(--color-06-green);
}

.c-mesure-spec__inner {
  padding: calc(53 / 375 * 100vw) calc(22 / 375 * 100vw) calc(56 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__inner {
    padding: calc(183 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(121 / 1440 * 100vw);
  }
}

.c-mesure-spec__sub {
  width: fit-content;
  padding: 0 calc(4 / 375 * 100vw);
  background-color: var(--color-08-beige);
  color: var(--color-06-green);
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__sub {
    padding: 0 calc(4 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}

.c-mesure-spec__title {
  margin-top: calc(20 / 375 * 100vw);
  color: var(--color-08-beige);
  font-size: calc(30 / 375 * 100vw);
  line-height: 1.4;
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__title {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-spec__list {
  margin-top: calc(50 / 375 * 100vw);
  padding-bottom: calc(20 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  border-top: none;
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__list {
    margin-top: calc(60 / 1440 * 100vw);
    margin-bottom: calc(80 / 1440 * 100vw);
    padding-bottom: 0;
  }
}

.c-mesure-spec__list::before {
  display: block;
  width: 100%;
  height: calc(12 / 375 * 100vw);
  background-image: url("/assets/images/icon/mesure_spec_horizontal_sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__list::before {
    height: calc(24 / 1440 * 100vw);
    margin-bottom: calc(60 / 1440 * 100vw);
    background-image: url("/assets/images/icon/mesure_spec_horizontal.svg");
  }
}

.c-mesure-spec__item {
  margin: 0 calc(25 / 375 * 100vw);
  padding: calc(20 / 375 * 100vw) 0;
  border-bottom: 1px solid var(--color-07-black);
  font-size: calc(24 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__item {
    display: flex;
    margin: 0 calc(70 / 1440 * 100vw);
    padding: calc(30 / 1440 * 100vw) 0;
    font-size: calc(38 / 1440 * 100vw);
  }
}

.c-mesure-spec__item:last-child {
  border-bottom: none;
}

.c-mesure-spec__item-title {
  word-break: break-all;
  overflow-wrap: break-word;
  display: flex;
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__item-title {
    width: calc(300 / 1440 * 100vw);
  }
}

.c-mesure-spec__item-description {
  word-break: break-all;
  overflow-wrap: break-word;
  margin-top: calc(10 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__item-description {
    width: calc(800 / 1440 * 100vw);
    margin-top: 0;
  }
}

.c-mesure-spec__item-description .-hizumi {
  display: flex;
  flex-direction: column;
}

@media print, screen and (width >=768px) {
  .c-mesure-spec__item-description .-hizumi {
    flex-direction: row;
    gap: 1em;
  }
}

.c-mesure-spec__item-description .-hizumi::before {
  content: "ひずみ";
}

.c-mesure-sns {
  overflow: hidden;
  background-color: var(--color-02-red);
  color: var(--color-08-beige);
}

.c-mesure-sns__inner {
  padding: calc(50 / 375 * 100vw) calc(22 / 375 * 100vw) calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__inner {
    padding: calc(133 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(0 / 1440 * 100vw);
  }
}

.c-mesure-sns__title {
  font-size: calc(30 / 375 * 100vw);
  letter-spacing: -0.05em;
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__title {
    font-size: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-sns__hash {
  display: flex;
  margin-top: calc(30 / 375 * 100vw);
  flex-direction: column;
  gap: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__hash {
    margin-top: calc(40 / 1440 * 100vw);
    gap: calc(30 / 1440 * 100vw);
    flex-direction: row;
  }
}

.c-mesure-sns__hash-title {
  width: fit-content;
  padding: calc(10 / 375 * 100vw);
  background-color: var(--color-08-beige);
  color: var(--color-07-black);
  font-size: calc(20 / 375 * 100vw);
  line-height: 1.2;
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__hash-title {
    padding: calc(10 / 1440 * 100vw);
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-mesure-sns__hash-description {
  font-size: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__hash-description {
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-mesure-sns__description {
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(18 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__description {
    margin-top: calc(40 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-sns__sliders {
  display: flex;
  flex-direction: column;
  gap: calc(30 / 375 * 100vw);
  margin-top: calc(50 / 375 * 100vw);
  padding-bottom: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__sliders {
    gap: calc(30 / 1440 * 100vw);
    margin-top: calc(56 / 1440 * 100vw);
    padding-bottom: 0;
  }
}

.c-mesure-sns .js-sns-slider {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.c-mesure-sns__list {
  display: flex;
  white-space: nowrap;
  flex-direction: row;
  align-items: center;
  will-change: transform;
}

.c-mesure-sns__item {
  padding: calc(15 / 375 * 100vw);
  border: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__item {
    padding: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-sns__item:nth-of-type(4n + 1) {
  background-color: var(--color-06-green);
}

.c-mesure-sns__item:nth-of-type(4n + 2) {
  background-color: var(--color-01-blue);
}

.c-mesure-sns__item:nth-of-type(4n + 3) {
  background-color: var(--color-07-black);
}

.c-mesure-sns__item:nth-of-type(4n + 4) {
  background-color: var(--color-03-yellow);
}

.c-mesure-sns__item.-reverse:nth-of-type(4n + 1) {
  background-color: var(--color-06-green);
}

.c-mesure-sns__item.-reverse:nth-of-type(4n + 2) {
  background-color: var(--color-07-black);
}

.c-mesure-sns__item.-reverse:nth-of-type(4n + 3) {
  background-color: var(--color-03-yellow);
}

.c-mesure-sns__item.-reverse:nth-of-type(4n + 4) {
  background-color: var(--color-01-blue);
}

.c-mesure-sns__item-image {
  width: calc(150 / 375 * 100vw);
  aspect-ratio: 300/230;
  border: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-sns__item-image {
    width: calc(300 / 1440 * 100vw);
  }
}

.c-mesure-sns__item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-mesure-faq {
  background-color: var(--color-02-red);
}

.c-mesure-faq__inner {
  padding: calc(100 / 375 * 100vw) calc(22 / 375 * 100vw) calc(64 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__inner {
    padding: calc(200 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(204 / 1440 * 100vw);
  }
}

.c-mesure-faq__title {
  color: var(--color-08-beige);
  font-size: calc(30 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__title {
    font-size: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-faq__list {
  display: flex;
  margin-top: calc(30 / 375 * 100vw);
  flex-direction: column;
  gap: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__list {
    margin-top: calc(60 / 1440 * 100vw);
    gap: calc(30 / 1440 * 100vw);
  }
}

.c-mesure-faq__question {
  display: flex;
}

.c-mesure-faq__question-image {
  width: calc(61 / 375 * 100vw);
  height: fit-content;
  background-color: var(--color-08-beige);
  flex-shrink: 0;
  border-top: 1px solid var(--color-07-black);
  border-left: 1px solid var(--color-07-black);
  border-bottom: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__question-image {
    width: calc(265 / 1440 * 100vw);
    height: auto;
    border-bottom: none;
  }
}

.c-mesure-faq__question-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-mesure-faq__question-text {
  display: flex;
  width: 100%;
  padding: calc(25 / 375 * 100vw);
  background-color: var(--color-08-beige);
  font-size: calc(24 / 375 * 100vw);
  border-top: 1px solid var(--color-07-black);
  border-right: 1px solid var(--color-07-black);
  border-left: 1px solid var(--color-07-black);
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__question-text {
    padding: calc(60 / 1440 * 100vw);
    font-size: calc(40 / 1440 * 100vw);
  }
}

.c-mesure-faq__answer {
  display: flex;
}

.c-mesure-faq__answer-image {
  width: calc(61 / 375 * 100vw);
  height: fit-content;
  background-color: var(--color-08-beige);
  flex-shrink: 0;
  border-top: 1px solid var(--color-07-black);
  border-left: 1px solid var(--color-07-black);
  border-bottom: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__answer-image {
    width: calc(265 / 1440 * 100vw);
    height: auto;
    margin-bottom: none;
  }
}

.c-mesure-faq__answer-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-mesure-faq__answer-text {
  display: flex;
  width: 100%;
  padding: calc(25 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  font-size: calc(16 / 375 * 100vw);
  align-items: center;
}

@media print, screen and (width >=768px) {
  .c-mesure-faq__answer-text {
    padding: 0 calc(60 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-mesure-float-button {
  position: fixed;
  right: calc(26 / 375 * 100vw);
  bottom: calc(26 / 375 * 100vw);
  z-index: 1000;
}

@media print, screen and (width >=768px) {
  .c-mesure-float-button {
    right: calc(26 / 1440 * 100vw);
    bottom: calc(60 / 1440 * 100vw);
  }
}

.c-mesure-float-button__inner {
  position: relative;
}

.c-mesure-float-button__inner::before {
  position: absolute;
  top: calc(5 / 375 * 100vw);
  left: calc(5 / 375 * 100vw);
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-07-black);
  content: "";
}

@media print, screen and (width >=768px) {
  .c-mesure-float-button__inner::before {
    top: calc(10 / 1440 * 100vw);
    left: calc(10 / 1440 * 100vw);
  }
}

.c-mesure-float-button__button {
  position: relative;
  z-index: 1;
  display: flex;
  padding: calc(10 / 375 * 100vw);
  background-color: var(--color-03-yellow);
  border: 1px solid var(--color-07-black);
  border-radius: calc(3 / 375 * 100vw);
  color: var(--color-07-black);
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-float-button__button {
    padding: calc(30 / 1440 * 100vw) calc(45 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(30 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
}

@media (hover: hover) {
  .c-mesure-float-button__button:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
    transform: translate(calc(5 / 375 * 100vw), calc(5 / 375 * 100vw));
  }
}

@media print and (hover: hover), screen and (hover: hover) and (width >=768px) {
  .c-mesure-float-button__button:hover {
    transform: translate(calc(10 / 1440 * 100vw), calc(10 / 1440 * 100vw));
  }
}

.c-mesure-float-button__button:active {
  opacity: 0.9;
}

.c-mesure-float-button__button-image {
  width: calc(66 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-mesure-float-button__button-image {
    width: calc(139 / 1440 * 100vw);
  }
}

.c-mesure-float-button__button-text {
  font-size: calc(16 / 375 * 100vw);
  font-weight: bold;
}

@media print, screen and (width >=768px) {
  .c-mesure-float-button__button-text {
    margin-bottom: calc(8 / 1440 * 100vw);
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-top-navigation {
  overflow: hidden;
  padding: calc(73 / 375 * 100vw) calc(23 / 375 * 100vw);
  background-color: var(--color-03-yellow);
}

@media print, screen and (width >=768px) {
  .c-top-navigation {
    padding: calc(71 / 1440 * 100vw) calc(110 / 1440 * 100vw) calc(126 / 1440 * 100vw);
  }
}

.c-top-navigation__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 450;
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-navigation__title {
    font-size: calc(24 / 1440 * 100vw);
  }
}

.c-top-navigation__list {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: calc(10 / 375 * 100vw);
  margin-top: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__list {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: calc(25 / 1440 * 100vw);
  }
}

.c-top-navigation__item {
  border: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item:nth-child(1) {
    border-right: none;
  }
}

.c-top-navigation__item-coming-soon {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: var(--color-08-beige);
  color: var(--color-07-black);
  font-size: calc(30 / 375 * 100vw);
  font-weight: 450;
  text-align: center;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-coming-soon {
    font-size: calc(40 / 1440 * 100vw);
  }
}

.c-top-navigation__item-link {
  position: relative;
  display: flex;
  padding: calc(25 / 375 * 100vw);
  gap: calc(15 / 375 * 100vw);
  align-items: center;
  background-color: var(--color-08-beige);
  transition: background-color 200ms ease, color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-link {
    padding: calc(36 / 1440 * 100vw);
    gap: calc(48 / 1440 * 100vw);
  }
}

@media (hover: hover) {
  .c-top-navigation__item-link:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
  }

  .c-top-navigation__item-link:hover .c-top-navigation__item-image {
    background-color: var(--color-10-gray);
  }
}

.c-top-navigation__item-image {
  width: calc(70 / 375 * 100vw);
  background-color: var(--color-07-black);
  transition: background-color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-image {
    width: calc(170 / 1440 * 100vw);
  }
}

.c-top-navigation__item-text {
  font-size: calc(16 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-text {
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-top-navigation__item-name {
  font-size: calc(30 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-name {
    font-size: calc(40 / 1440 * 100vw);
  }
}

.c-top-navigation__item-arrow {
  position: absolute;
  right: calc(10 / 375 * 100vw);
  bottom: 0;
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-arrow {
    right: calc(20 / 1440 * 100vw);
  }
}

.c-top-navigation__item-arrow span {
  position: relative;
  display: inline-block;
  width: calc(17 / 375 * 100vw);
  height: calc(14 / 375 * 100vw);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-arrow span {
    width: calc(23 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}

.c-top-navigation__item-arrow span::before {
  position: absolute;
  top: 1px;
  left: 50%;
  display: block;
  width: calc(13.5 / 375 * 100vw);
  height: calc(11.1 / 375 * 100vw);
  background: var(--color-03-yellow);
  content: "";
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

@media print, screen and (width >=768px) {
  .c-top-navigation__item-arrow span::before {
    width: calc(19.6 / 1440 * 100vw);
    height: calc(17 / 1440 * 100vw);
  }
}

.c-top-about {
  position: relative;
  overflow: hidden;
  padding: calc(40 / 375 * 100vw) 0 calc(80 / 375 * 100vw);
  background-color: var(--color-02-red);
}

@media print, screen and (width >=768px) {
  .c-top-about {
    padding: calc(80 / 1440 * 100vw) 0 calc(160 / 1440 * 100vw);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.c-top-about__title {
  display: inline-block;
  margin-top: calc(20 / 375 * 100vw);
  margin-left: calc(31 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-about__title {
    margin-top: 0;
    margin-left: calc(111 / 1440 * 100vw);
  }
}

.c-top-about__title span {
  display: block;
  padding: calc(4 / 375 * 100vw);
  background-color: var(--color-07-black);
  color: var(--color-02-red);
  font-size: calc(18 / 375 * 100vw);
  font-weight: 450;
  line-height: 1;
}

@media print, screen and (width >=768px) {
  .c-top-about__title span {
    padding: calc(4 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__title span:nth-child(1) {
    transform: translateX(-8%) rotate(-8.644deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__title span:nth-child(1) {
    transform: translateX(0%) translateY(67%) rotate(-8.6deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__title span:nth-child(2) {
    transform: translateX(15%) translateY(39%) rotate(0.576deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__title span:nth-child(2) {
    transform: translateX(62%) translateY(55%) rotate(3.59deg);
  }
}

.c-top-about__number {
  display: inline-block;
  margin-left: calc(31 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-about__number {
    margin-left: 0;
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__number span:nth-child(1) {
    transform: translateX(-34%) translateY(-42%) rotate(5.912deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__number span:nth-child(1) {
    transform: translateX(-190%) translateY(160%) rotate(-8.644deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__number span:nth-child(2) {
    transform: translateX(200%) translateY(-74%) rotate(17.941deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__number span:nth-child(2) {
    transform: translateX(-280%) translateY(84%) rotate(3.385deg);
  }
}

.c-top-about__number span {
  display: block;
  width: fit-content;
  padding: calc(2 / 375 * 100vw);
  background-color: var(--color-07-black);
  color: var(--color-02-red);
  font-size: calc(18 / 375 * 100vw);
  font-weight: 450;
  line-height: 1;
}

@media print, screen and (width >=768px) {
  .c-top-about__number span {
    padding: calc(2 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
  }
}

.c-top-about__text {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(5 / 375 * 100vw);
  margin-top: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-about__text {
    gap: calc(10 / 1440 * 100vw);
    margin-top: calc(40 / 1440 * 100vw);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text:nth-of-type(1) {
    margin-top: calc(55 / 375 * 100vw);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text:nth-of-type(1) {
    margin-top: calc(110 / 1440 * 100vw);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text:nth-of-type(2) {
    margin-top: 0;
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text:nth-of-type(3) {
    margin-top: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text:nth-of-type(3) {
    margin-top: calc(40 / 1440 * 100vw);
  }
}

.c-top-about__text-line {
  z-index: 10;
  width: fit-content;
  margin: 0 auto;
  padding: calc(4 / 375 * 100vw) calc(6 / 375 * 100vw) calc(6 / 375 * 100vw);
  background-color: var(--color-08-beige);
  border: 1px solid var(--color-07-black);
  color: var(--color-02-red);
  font-size: calc(18 / 375 * 100vw);
  line-height: 1;
  -webkit-text-stroke-width: 0.015em;
  -webkit-text-stroke-color: var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw) calc(14 / 1440 * 100vw);
    font-size: calc(45 / 1440 * 100vw);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line1 {
    transform: translateX(-4%) rotate(1.111deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line1 {
    transform: translateX(-44%) rotate(1.1deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line2 {
    transform: translateY(-2%) translateX(10%) rotate(-2.573deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line2 {
    transform: translateX(14%) translateY(-1%) rotate(-2.57deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line3 {
    transform: translateX(35%) translateY(-5%) rotate(0.266deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line3 {
    transform: translateX(-5%) translateY(24%) rotate(0.27deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line4 {
    transform: translateX(-35%) translateY(-18%) rotate(0.266deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line4 {
    transform: translateY(31%) rotate(-0.35deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line5 {
    transform: translateX(15%) translateY(-32%) rotate(-1.961deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line5 {
    transform: translateX(-25%) translateY(29%) rotate(0.914deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line6 {
    transform: translateX(-1%) translateY(-46%) rotate(-0.351deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line6 {
    transform: translateX(-1%) translateY(16%) rotate(-1.03deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line7 {
    transform: translateX(-3%) translateY(-60%) rotate(0.914deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line7 {
    transform: translateX(1%) translateY(15%) rotate(0.914deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line8 {
    transform: translateX(-4%) translateY(-74%) rotate(-1.03deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line8 {
    transform: translateX(0) translateY(6%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line9 {
    transform: translateX(-3%) translateY(-5%) rotate(0.914deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line9 {
    transform: translateX(-7%) translateY(7%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line10 {
    transform: translateX(-3%) translateY(-32%) rotate(0.914deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line10 {
    transform: translateX(18%) translateY(6%) rotate(1.935deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line11 {
    transform: translateX(0%) translateY(-46%) rotate(0.914deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line11 {
    transform: translateX(-30%) translateY(-37%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line12 {
    transform: translateX(1%) translateY(-60%) rotate(0.914deg);
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__text-line.-line12 {
    transform: translateX(0%) translateY(-22%) rotate(1.704deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line13 {
    transform: translateX(-5%) translateY(-74%) rotate(0.914deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line14 {
    transform: translateX(2%) translateY(-88%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line15 {
    transform: translateX(0%) translateY(-102%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line16 {
    transform: translateX(-1%) translateY(-116%) rotate(1.935deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line17 {
    transform: translateX(0%) translateY(-130%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line18 {
    transform: translateX(0%) translateY(0%) rotate(-0.23deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line19 {
    transform: translateX(2%) translateY(-12%) rotate(1.935deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line20 {
    transform: translateX(0%) translateY(-26%) rotate(1.704deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line21 {
    transform: translateX(0%) translateY(-40%) rotate(0.898deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line22 {
    transform: translateX(1%) translateY(-54%) rotate(0.898deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line23 {
    transform: translateX(-1%) translateY(-68%) rotate(1.935deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line24 {
    transform: translateX(1%) translateY(-82%) rotate(0.898deg);
  }
}

@media print, screen and (width <=767px) {
  .c-top-about__text-line.-line25 {
    transform: translateX(1%) translateY(-96%) rotate(0.898deg);
  }
}

.c-top-about__icon-image1, .c-top-about__icon-image2, .c-top-about__icon-image3 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-about__icon-image1, .c-top-about__icon-image2, .c-top-about__icon-image3 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-about__icon-image1 {
  z-index: 20;
  background-image: url("/assets/images/top/top_about_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-about__icon-image1 {
    top: 12.5%;
    left: 74%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__icon-image1 {
    top: 14.5%;
    left: 57%;
  }
}

.c-top-about__icon-image2 {
  z-index: 0;
  background-image: url("/assets/images/top/top_about_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-about__icon-image2 {
    top: 55%;
    left: 75%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__icon-image2 {
    top: 42%;
    left: 70%;
  }
}

.c-top-about__icon-image3 {
  z-index: 20;
  background-image: url("/assets/images/top/top_about_icon3.webp");
}

@media print, screen and (width <=767px) {
  .c-top-about__icon-image3 {
    top: 63.5%;
    left: 20%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-about__icon-image3 {
    top: 69.3%;
    left: 13%;
  }
}

.c-section-header {
  display: grid;
  grid-template-areas: "number" "title" "ruler";
}

@media print, screen and (width >=768px) {
  .c-section-header {
    grid-template-areas: "title number" "ruler ruler";
  }
}

.c-section-header__title {
  grid-area: title;
  margin-top: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-section-header__title {
    display: flex;
    margin-top: 0;
    font-size: calc(22 / 1440 * 100vw);
    align-items: center;
    gap: calc(100 / 1440 * 100vw);
  }
}

.c-section-header__title span {
  display: block;
}

@media print, screen and (width >=768px) {
  .c-section-header__title span {
    display: inline-block;
  }
}

.c-section-header__number {
  grid-area: number;
  display: flex;
  justify-content: space-between;
}

@media print, screen and (width >=768px) {
  .c-section-header__number {
    font-size: calc(24 / 1440 * 100vw);
    justify-content: flex-end;
    gap: 96px;
  }
}

.c-section-header__ruler {
  grid-area: ruler;
  width: 100%;
  height: calc(7.2 / 375 * 100vw);
  margin-top: calc(15 / 375 * 100vw);
  background-image: repeating-linear-gradient(90deg, var(--color-07-black) 0, var(--color-07-black) 1px, transparent 1px, transparent 5px);
}

@media print, screen and (width >=768px) {
  .c-section-header__ruler {
    height: calc(7.2 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}

.c-section-header.-white .c-section-header__title {
  color: var(--color-09-white);
}

.c-section-header.-white .c-section-header__number {
  color: var(--color-09-white);
}

.c-section-header.-white .c-section-header__ruler {
  background-image: repeating-linear-gradient(90deg, var(--color-09-white) 0, var(--color-09-white) 1px, transparent 1px, transparent 5px);
}

.c-section-cta {
  position: relative;
}

.c-section-cta::before {
  position: absolute;
  top: calc(10 / 375 * 100vw);
  left: calc(10 / 375 * 100vw);
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-07-black);
  content: "";
}

@media print, screen and (width >=768px) {
  .c-section-cta::before {
    top: calc(20 / 1440 * 100vw);
    left: calc(20 / 1440 * 100vw);
  }
}

.c-section-cta__link {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 32px;
  padding: calc(31 / 375 * 100vw) calc(25 / 375 * 100vw);
  background-color: var(--color-03-yellow);
  border: 1px solid var(--color-07-black);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  gap: calc(30 / 375 * 100vw);
  flex-direction: column;
  align-items: flex-start;
}

@media print, screen and (width >=768px) {
  .c-section-cta__link {
    padding: calc(55 / 1440 * 100vw) calc(55 / 1440 * 100vw) calc(55 / 1440 * 100vw) calc(86 / 1440 * 100vw);
    gap: calc(70 / 1440 * 100vw);
    flex-direction: row;
    align-items: center;
  }
}

@media (hover: hover) {
  .c-section-cta__link:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
    transform: translate(calc(10 / 375 * 100vw), calc(10 / 375 * 100vw));
  }
}

@media print and (hover: hover), screen and (hover: hover) and (width >=768px) {
  .c-section-cta__link:hover {
    transform: translate(calc(20 / 1440 * 100vw), calc(20 / 1440 * 100vw));
  }
}

@media (hover: hover) {
  .c-section-cta__link:hover .c-section-cta__button {
    background-color: var(--color-03-yellow);
    color: var(--color-07-black);
  }

  .c-section-cta__link:hover .c-section-cta__button::after {
    background-color: var(--color-07-black);
  }
}

@media print, screen and (width >=768px) {
  .c-section-cta__image {
    flex-shrink: 0;
    width: calc(660 / 1440 * 100vw);
  }
}

.c-section-cta__content {
  width: 100%;
}

.c-section-cta__description {
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.6;
}

@media print, screen and (width >=768px) {
  .c-section-cta__description {
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-section-cta__title {
  margin-top: calc(10 / 375 * 100vw);
  font-size: calc(28 / 375 * 100vw);
  line-height: 1.2;
}

@media print, screen and (width >=768px) {
  .c-section-cta__title {
    margin-top: calc(10 / 1440 * 100vw);
    font-size: calc(50 / 1440 * 100vw);
  }
}

.c-section-cta__button {
  display: flex;
  width: 100%;
  margin-top: calc(20 / 375 * 100vw);
  padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw);
  background-color: var(--color-07-black);
  color: var(--color-03-yellow);
  font-size: calc(20 / 375 * 100vw);
  line-height: 1.2;
  align-items: center;
  justify-content: space-between;
  transition: background-color 200ms ease, color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-section-cta__button {
    margin-top: calc(10 / 1440 * 100vw);
    padding: calc(10 / 1440 * 100vw) calc(18 / 1440 * 100vw);
    font-size: calc(28 / 1440 * 100vw);
  }
}

.c-section-cta__button::after {
  display: block;
  width: calc(16 / 375 * 100vw);
  height: calc(16 / 375 * 100vw);
  background-color: var(--color-03-yellow);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  content: "";
  transition: background-color 200ms ease;
}

@media print, screen and (width >=768px) {
  .c-section-cta__button::after {
    width: calc(23 / 1440 * 100vw);
    height: calc(23 / 1440 * 100vw);
  }
}

.c-top-introduction {
  position: relative;
  overflow: hidden;
}

.c-top-introduction__inner {
  padding: calc(66 / 375 * 100vw) calc(22 / 375 * 100vw) calc(93 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-introduction__inner {
    padding: calc(119 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(149 / 1440 * 100vw);
  }
}

.c-top-introduction__catch {
  display: flex;
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(30 / 375 * 100vw);
  flex-direction: column;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-top-introduction__catch {
    display: block;
    margin-top: calc(72 / 1440 * 100vw);
    border: 1px solid;
    font-size: calc(56 / 1440 * 100vw);
    text-align: center;
  }
}

.c-top-introduction__catch-text {
  width: fit-content;
  padding: 0 calc(18 / 375 * 100vw);
  border: 1px solid;
}

@media print, screen and (width >=768px) {
  .c-top-introduction__catch-text {
    padding: 0;
    border: none;
  }
}

.c-top-introduction__catch-text:nth-child(2) {
  border-top: none;
}

.c-top-introduction__catch-text:nth-child(3) {
  border-top: none;
}

.c-top-introduction__description {
  margin-top: calc(30 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-introduction__description {
    margin-top: calc(86 / 1440 * 100vw);
  }
}

.c-top-introduction__image {
  width: 100%;
  height: calc(197.62 / 375 * 100vw);
  background-image: url("/assets/images/top/top_introduction_image_sp.webp");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
  animation: introduction-loop-sp 30s linear infinite;
}

@media print, screen and (width >=768px) {
  .c-top-introduction__image {
    height: calc(395.25 / 1440 * 100vw);
    background-image: url("/assets/images/top/top_introduction_image_pc.webp");
    animation-name: introduction-loop-pc;
  }
}

@keyframes introduction-loop-sp {
  from {
    background-position: 0 0;
  }

  to {
    background-position: calc(-1444.5 / 375 * 100vw) 0;
  }
}

@keyframes introduction-loop-pc {
  from {
    background-position: 0 0;
  }

  to {
    background-position: calc(-2889 / 1440 * 100vw) 0;
  }
}

.c-top-target {
  position: relative;
  overflow: hidden;
  background-color: var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-target {
    margin-top: calc(-1 / 1440 * 100vw);
  }
}

.c-top-target__inner {
  overflow: hidden;
  padding: calc(62 / 375 * 100vw) calc(22 / 375 * 100vw) calc(80 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-target__inner {
    padding: calc(250 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(139 / 1440 * 100vw);
  }
}

.c-top-target__description {
  margin-top: calc(30 / 375 * 100vw);
  color: var(--color-09-white);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-target__description {
    margin-top: calc(30 / 1440 * 100vw);
  }
}

.c-top-target__list {
  width: 100vw;
  margin-top: calc(50 / 375 * 100vw);
  margin-left: 50%;
  transform: translateX(-50%);
}

@media print, screen and (width >=768px) {
  .c-top-target__list {
    display: flex;
    margin-top: calc(68 / 1440 * 100vw);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.c-top-target__item {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

@media print, screen and (width >=768px) {
  .c-top-target__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-top-target__item-inner {
    position: relative;
    display: flex;
    flex-direction: column;
  }
}

.c-top-target__item:nth-child(1) {
  height: calc(420 / 375 * 100vw);
  padding: calc(40 / 375 * 100vw) calc(60 / 375 * 100vw);
  background-image: url("/assets/images/top/top_target_figure1.webp");
}

@media print, screen and (width >=768px) {
  .c-top-target__item:nth-child(1) {
    width: calc(602 / 1440 * 100vw);
    height: calc(602 / 1440 * 100vw);
    padding: 0;
  }

  .c-top-target__item:nth-child(1) .c-top-target__item-inner {
    width: calc(340 / 1440 * 100vw);
  }

  .c-top-target__item:nth-child(1)::before {
    position: absolute;
    top: 50%;
    left: calc(-602 / 1440 * 100vw);
    width: calc(602 / 1440 * 100vw);
    height: calc(602 / 1440 * 100vw);
    background-image: url("/assets/images/top/top_target_figure5.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
    transform: translateY(-50%);
  }
}

.c-top-target__item:nth-child(1) .c-top-target__item-number {
  color: var(--color-02-red);
}

.c-top-target__item:nth-child(2) {
  height: calc(506.54 / 375 * 100vw);
  padding: calc(73 / 375 * 100vw) calc(68 / 375 * 100vw);
  background-image: url("/assets/images/top/top_target_figure2.webp");
}

@media print, screen and (width >=768px) {
  .c-top-target__item:nth-child(2) {
    width: calc(700.46 / 1440 * 100vw);
    height: calc(700.46 / 1440 * 100vw);
    padding: 0;
  }

  .c-top-target__item:nth-child(2) .c-top-target__item-inner {
    width: calc(280 / 1440 * 100vw);
  }

  .c-top-target__item:nth-child(2)::after {
    position: absolute;
    top: 50%;
    right: calc(-602 / 1440 * 100vw);
    width: calc(602 / 1440 * 100vw);
    height: calc(602 / 1440 * 100vw);
    background-image: url("/assets/images/top/top_target_figure1.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
    transform: translateY(-50%);
  }

  .c-top-target__item:nth-child(2) .c-top-target__item-number {
    order: 1;
  }

  .c-top-target__item:nth-child(2) .c-top-target__item-image {
    order: 3;
  }

  .c-top-target__item:nth-child(2) .c-top-target__item-title {
    order: 2;
  }

  .c-top-target__item:nth-child(2) .c-top-target__item-description {
    order: 4;
  }
}

.c-top-target__item:nth-child(2) .c-top-target__item-number {
  color: var(--color-06-green);
}

.c-top-target__item:nth-child(3) {
  height: calc(375 / 375 * 100vw);
  padding: calc(50 / 375 * 100vw) calc(66 / 375 * 100vw);
  background-image: url("/assets/images/top/top_target_figure3.webp");
}

@media print, screen and (width >=768px) {
  .c-top-target__item:nth-child(3) {
    width: calc(560 / 1440 * 100vw);
    height: calc(560 / 1440 * 100vw);
    margin-top: calc(-50 / 1440 * 100vw);
    margin-left: calc(-40 / 1440 * 100vw);
    padding: 0;
  }

  .c-top-target__item:nth-child(3) .c-top-target__item-inner {
    width: calc(340 / 1440 * 100vw);
  }

  .c-top-target__item:nth-child(3)::before {
    position: absolute;
    top: 50%;
    left: calc(-700.46 / 1440 * 100vw);
    width: calc(700.46 / 1440 * 100vw);
    height: calc(700.46 / 1440 * 100vw);
    background-image: url("/assets/images/top/top_target_figure2.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
    transform: translateY(-50%);
  }
}

.c-top-target__item:nth-child(3) .c-top-target__item-number {
  color: var(--color-01-blue);
}

.c-top-target__item:nth-child(4) {
  height: calc(400 / 375 * 100vw);
  padding: calc(62 / 375 * 100vw) calc(66 / 375 * 100vw);
  background-image: url("/assets/images/top/top_target_figure4_sp.webp");
}

@media print, screen and (width >=768px) {
  .c-top-target__item:nth-child(4) {
    width: calc(662 / 1440 * 100vw);
    height: calc(488 / 1440 * 100vw);
    margin-top: calc(-22 / 1440 * 100vw);
    padding: 0;
    background-image: url("/assets/images/top/top_target_figure4_pc.webp");
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-inner {
    display: grid;
    width: calc(470 / 1440 * 100vw);
    padding: 0;
    grid-template-areas: "image number" "image title" "image description";
    gap: 0 calc(55 / 1440 * 100vw);
    align-items: center;
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-number {
    grid-area: number;
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-image {
    grid-area: image;
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-title {
    grid-area: title;
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-description {
    grid-area: description;
  }

  .c-top-target__item:nth-child(4)::after {
    position: absolute;
    top: 50%;
    right: calc(-700.46 / 1440 * 100vw);
    width: calc(700.46 / 1440 * 100vw);
    height: calc(700.46 / 1440 * 100vw);
    background-image: url("/assets/images/top/top_target_figure2.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
    transform: translateY(-50%);
  }
}

.c-top-target__item:nth-child(4) .c-top-target__item-number {
  color: var(--color-03-yellow);
}

.c-top-target__item-number {
  width: fit-content;
  margin: 0 auto;
  padding: 0 calc(5 / 375 * 100vw);
  background-color: var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-target__item-number {
    padding: 0 calc(10 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}

.c-top-target__item-image {
  overflow: hidden;
  width: calc(90 / 375 * 100vw);
  margin: calc(10 / 375 * 100vw) auto 0;
  clip-path: circle(50% at 50% 50%);
  aspect-ratio: 1/1;
}

@media print, screen and (width >=768px) {
  .c-top-target__item-image {
    width: calc(180 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}

.c-top-target__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-top-target__item-title {
  margin-top: calc(10 / 375 * 100vw);
  font-size: calc(20 / 375 * 100vw);
  line-height: var(--line-height-s);
  text-align: center;
}

@media print, screen and (width >=768px) {
  .c-top-target__item-title {
    margin-top: calc(10 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
  }

  .c-top-target__item:nth-child(4) .c-top-target__item-title {
    margin-inline: -2em;
  }
}

.c-top-target__item-description {
  margin-top: calc(10 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  line-height: 1.6;
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-target__item-description {
    margin-top: calc(10 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}

.c-top-target__icon-image1, .c-top-target__icon-image2, .c-top-target__icon-image3, .c-top-target__icon-image4 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-target__icon-image1, .c-top-target__icon-image2, .c-top-target__icon-image3, .c-top-target__icon-image4 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-target__icon-image1 {
  background-image: url("/assets/images/top/top_target_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-target__icon-image1 {
    top: 21.4%;
    left: 10%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-target__icon-image1 {
    top: 30%;
    left: 9%;
  }
}

.c-top-target__icon-image2 {
  background-image: url("/assets/images/top/top_target_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-target__icon-image2 {
    top: 60.5%;
    left: 62%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-target__icon-image2 {
    top: 61.1%;
    left: 77%;
  }
}

.c-top-products {
  position: relative;
  overflow: hidden;
  padding: calc(55 / 375 * 100vw) calc(22 / 375 * 100vw) calc(56 / 375 * 100vw);
  background-color: var(--color-03-yellow);
}

@media print, screen and (width >=768px) {
  .c-top-products {
    padding: calc(156 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(175 / 1440 * 100vw);
  }
}

.c-top-products__description {
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(18 / 375 * 100vw);
  line-height: -0.04em;
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-products__description {
    margin-top: calc(58 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}

.c-top-products__list {
  display: grid;
  margin-top: calc(50 / 375 * 100vw);
  grid-template-columns: 1fr;
  gap: calc(30 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-products__list {
    margin-top: calc(115 / 1440 * 100vw);
    gap: calc(64 / 1440 * 100vw);
  }
}

.c-top-products__item {
  position: relative;
  background-color: var(--color-09-white);
}

.c-top-products__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(10 / 375 * 100vw);
  background-image: url("/assets/images/icon/top_products_horizontal_sp.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}

@media print, screen and (width >=768px) {
  .c-top-products__item::before {
    width: calc(10 / 1440 * 100vw);
    height: 100%;
    background-image: url("/assets/images/icon/top_products_vertical.svg");
  }
}

.c-top-products__item-link {
  display: block;
  padding: calc(50 / 375 * 100vw) calc(35 / 375 * 100vw) calc(47 / 375 * 100vw);
  background-color: var(--color-09-white);
}

@media print, screen and (width >=768px) {
  .c-top-products__item-link {
    display: flex;
    width: 100%;
    padding: calc(88 / 1440 * 100vw) calc(59 / 1440 * 100vw) calc(92 / 1440 * 100vw) calc(55 / 1440 * 100vw);
    flex-direction: row;
    gap: calc(65 / 1440 * 100vw);
  }
}

@media (hover: hover) {
  .c-top-products__item-link {
    transition: background-color 200ms ease, color 200ms ease;
  }

  .c-top-products__item-link:hover {
    background-color: var(--color-07-black);
    color: var(--color-03-yellow);
  }
}

.c-top-products__item-coming-soon {
  padding: calc(50 / 375 * 100vw) calc(35 / 375 * 100vw) calc(47 / 375 * 100vw);
  color: var(--color-07-black);
  font-size: calc(20 / 375 * 100vw);
  font-weight: 450;
  text-align: center;
  letter-spacing: 0;
  flex: 0 0 auto;
  place-self: center center;
}

@media print, screen and (width >=768px) {
  .c-top-products__item-coming-soon {
    margin: 0 auto;
    padding: calc(88 / 1440 * 100vw) calc(59 / 1440 * 100vw) calc(92 / 1440 * 100vw) calc(55 / 1440 * 100vw);
    font-size: calc(60 / 1440 * 100vw);
  }
}

@media print, screen and (width >=768px) {
  .c-top-products__item-image {
    flex-shrink: 0;
    width: calc(520 / 1440 * 100vw);
  }
}

.c-top-products__item-content {
  position: relative;
}

@media print, screen and (width >=768px) {
  .c-top-products__item-content::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(10 / 1440 * 100vw);
    background-image: url("/assets/images/icon/top_products_horizontal.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
  }
}

.c-top-products__item-number {
  display: flex;
  justify-content: space-between;
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  letter-spacing: 0;
}

@media print, screen and (width >=768px) {
  .c-top-products__item-number {
    margin-top: calc(10 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}

.c-top-products__item-title {
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(16 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-products__item-title {
    margin-top: calc(65 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-top-products__item-name {
  margin-top: calc(5 / 375 * 100vw);
  font-size: calc(30 / 375 * 100vw);
  letter-spacing: 0.03em;
}

@media print, screen and (width >=768px) {
  .c-top-products__item-name {
    margin-top: calc(15 / 1440 * 100vw);
    font-size: calc(40 / 1440 * 100vw);
  }
}

.c-top-products__item-description {
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  line-height: -0.04em;
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-products__item-description {
    margin-top: calc(65 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}

.c-top-products__icon-image1, .c-top-products__icon-image2 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-products__icon-image1, .c-top-products__icon-image2 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-products__icon-image1 {
  background-image: url("/assets/images/top/top_products_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-products__icon-image1 {
    top: 19.9%;
    left: 60%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-products__icon-image1 {
    top: 22%;
    left: 71%;
  }
}

.c-top-products__icon-image2 {
  background-image: url("/assets/images/top/top_products_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-products__icon-image2 {
    top: 20%;
    left: 77%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-products__icon-image2 {
    top: 22.4%;
    left: 82%;
  }
}

.c-top-members {
  position: relative;
  overflow: hidden;
  padding: calc(55 / 375 * 100vw) calc(22 / 375 * 100vw) calc(56 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members {
    padding: calc(192 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(102 / 1440 * 100vw);
  }
}

.c-top-members__list {
  display: grid;
  margin-top: calc(30 / 375 * 100vw);
  border: 1px solid var(--color-07-black);
  grid-template-columns: 1fr;
  gap: 0;
}

@media print, screen and (width >=768px) {
  .c-top-members__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: calc(75 / 1440 * 100vw);
    border-top: none;
    border-bottom: none;
  }
}

.c-top-members__item {
  padding: calc(35 / 375 * 100vw) calc(35 / 375 * 100vw) calc(40 / 375 * 100vw);
  border-bottom: 1px solid var(--color-07-black);
}

@media print, screen and (width >=768px) {
  .c-top-members__item {
    position: relative;
    display: flex;
    padding: calc(89 / 1440 * 100vw) 0 calc(82 / 1440 * 100vw);
    align-items: center;
    justify-content: center;
  }
}

.c-top-members__item-inner {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members__item-inner {
    gap: calc(35 / 1440 * 100vw);
    flex-direction: row;
  }
}

@media print, screen and (width >=768px) {
  .c-top-members__item:nth-child(even) {
    border-left: 1px solid var(--color-07-black);
  }
}

@media print, screen and (width >=768px) {
  .c-top-members__item:nth-child(1), .c-top-members__item:nth-child(2) {
    border-bottom: none;
  }

  .c-top-members__item:nth-child(1)::before, .c-top-members__item:nth-child(1)::after, .c-top-members__item:nth-child(2)::before, .c-top-members__item:nth-child(2)::after {
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: var(--color-07-black);
    content: "";
    transform: translateX(-50%);
  }

  .c-top-members__item:nth-child(1)::before, .c-top-members__item:nth-child(2)::before {
    top: 0;
  }

  .c-top-members__item:nth-child(1)::after, .c-top-members__item:nth-child(2)::after {
    bottom: 0;
  }
}

@media print, screen and (width >=768px) {
  .c-top-members__item:nth-child(3), .c-top-members__item:nth-child(4) {
    border-bottom: none;
  }

  .c-top-members__item:nth-child(3)::after, .c-top-members__item:nth-child(4)::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: var(--color-07-black);
    content: "";
    transform: translateX(-50%);
  }
}

.c-top-members__item:last-child {
  border-bottom: none;
}

.c-top-members__item-image {
  overflow: hidden;
  width: calc(220 / 375 * 100vw);
  margin: 0 auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

@media print, screen and (width >=768px) {
  .c-top-members__item-image {
    width: calc(220 / 1440 * 100vw);
    margin: auto;
  }
}

.c-top-members__item-image.-circle {
  clip-path: circle(50% at 50% 50%);
}

.c-top-members__item-image.-square {
  clip-path: inset(0);
  width: calc(210 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members__item-image.-square {
    width: calc(210 / 1440 * 100vw);
  }
}

.c-top-members__item-image.-diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: calc(230 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members__item-image.-diamond {
    width: calc(230 / 1440 * 100vw);
  }
}

.c-top-members__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print, screen and (width >=768px) {
  .c-top-members__item-content {
    width: calc(220 / 1440 * 100vw);
  }
}

.c-top-members__item-name {
  font-size: calc(18 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members__item-name {
    font-size: calc(22 / 1440 * 100vw);
  }
}

.c-top-members__item-en {
  margin-top: calc(5 / 375 * 100vw);
  font-size: calc(16 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-members__item-en {
    margin-top: calc(9 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-top-members__item-description {
  margin-top: calc(20 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  text-align: justify;
}

@media print, screen and (width >=768px) {
  .c-top-members__item-description {
    margin-top: calc(36 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}

.c-top-members__icon-image1, .c-top-members__icon-image2 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-members__icon-image1, .c-top-members__icon-image2 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-members__icon-image1 {
  background-image: url("/assets/images/top/top_members_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-members__icon-image1 {
    top: 29.1%;
    left: 82%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-members__icon-image1 {
    top: 50%;
    left: 86.4%;
  }
}

.c-top-members__icon-image2 {
  background-image: url("/assets/images/top/top_members_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-members__icon-image2 {
    top: 73%;
    left: -4%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-members__icon-image2 {
    top: 82.8%;
    left: 2%;
  }
}

.c-top-company {
  position: relative;
  overflow: hidden;
  padding: calc(87 / 375 * 100vw) calc(22 / 375 * 100vw) calc(90 / 375 * 100vw);
  background-color: var(--color-01-blue);
  color: var(--color-09-white);
}

@media print, screen and (width >=768px) {
  .c-top-company {
    padding: calc(156 / 1440 * 100vw) calc(100 / 1440 * 100vw) calc(133 / 1440 * 100vw);
  }
}

.c-top-company .js-company-slider {
  width: 100vw;
  margin-top: calc(50 / 375 * 100vw);
  margin-left: 50%;
  transform: translateX(-50%);
}

@media print, screen and (width >=768px) {
  .c-top-company .js-company-slider {
    margin-top: calc(56 / 1440 * 100vw);
  }
}

.c-top-company__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.c-top-company__item {
  flex-shrink: 0;
  filter: drop-shadow(1px 0 0 var(--color-07-black)) drop-shadow(-1px 0 0 var(--color-07-black)) drop-shadow(0 1px 0 var(--color-07-black)) drop-shadow(0 -1px 0 var(--color-07-black));
}

.c-top-company__item.-circle {
  width: calc(200 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-company__item.-circle {
    width: calc(398 / 1440 * 100vw);
  }
}

.c-top-company__item.-circle img {
  width: 100%;
  height: auto;
  clip-path: circle(50% at 50% 50%);
}

.c-top-company__item.-diamond {
  width: calc(233 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-company__item.-diamond {
    width: calc(467 / 1440 * 100vw);
  }
}

.c-top-company__item.-diamond img {
  width: 100%;
  height: auto;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.c-top-company__item.-square {
  width: calc(185 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-company__item.-square {
    width: calc(370 / 1440 * 100vw);
  }
}

.c-top-company__item.-square img {
  width: 100%;
  height: auto;
  clip-path: inset(0);
}

.c-top-company__item.-arched {
  width: calc(218 / 375 * 100vw);
}

@media print, screen and (width >=768px) {
  .c-top-company__item.-arched {
    width: calc(405 / 1440 * 100vw);
  }
}

.c-top-company__item.-arched img {
  width: 100%;
  height: auto;
  clip-path: inset(10% 0% round 50% 0% 0% 50%);
}

.c-top-company__catch {
  display: flex;
  margin-top: calc(50 / 375 * 100vw);
  font-size: calc(28 / 375 * 100vw);
  flex-direction: column;
  gap: 0;
  letter-spacing: -0.03em;
}

@media print, screen and (width >=768px) {
  .c-top-company__catch {
    display: block;
    margin-top: calc(76 / 1440 * 100vw);
    border: 1px solid;
    font-size: calc(70 / 1440 * 100vw);
    text-align: center;
    letter-spacing: 0;
  }
}

.c-top-company__catch-text {
  width: fit-content;
  padding: 0 calc(18 / 375 * 100vw);
  border: 1px solid;
}

@media print, screen and (width >=768px) {
  .c-top-company__catch-text {
    padding: 0;
    border: none;
  }
}

.c-top-company__description {
  margin-top: calc(30 / 375 * 100vw);
  font-size: calc(16 / 375 * 100vw);
  text-align: justify;
  letter-spacing: -0.02em;
}

@media print, screen and (width >=768px) {
  .c-top-company__description {
    margin-top: calc(50 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}

.c-top-company__icon-image1, .c-top-company__icon-image2 {
  position: absolute;
  z-index: 1;
  width: calc(75 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media print, screen and (width >=768px) {
  .c-top-company__icon-image1, .c-top-company__icon-image2 {
    width: calc(150 / 1440 * 100vw);
    height: calc(150 / 1440 * 100vw);
  }
}

.c-top-company__icon-image1 {
  background-image: url("/assets/images/top/top_company_icon1.webp");
}

@media print, screen and (width <=767px) {
  .c-top-company__icon-image1 {
    top: 32%;
    left: 2%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-company__icon-image1 {
    top: 49%;
    left: 5%;
  }
}

.c-top-company__icon-image2 {
  background-image: url("/assets/images/top/top_company_icon2.webp");
}

@media print, screen and (width <=767px) {
  .c-top-company__icon-image2 {
    top: 35.5%;
    left: 75%;
  }
}

@media print, screen and (width >=768px) {
  .c-top-company__icon-image2 {
    top: 49.5%;
    left: 83%;
  }
}

@keyframes company-loop-sp {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1592 / 375 * 100vw));
  }
}