@charset "UTF-8";
/* ============================================================
   Minimal Reset
   ＊本LPのスタイルはこのリセットを前提に組まれているため、
     テンプレート標準の destyle.css から差し替えている
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd,
ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

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

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

/* width/height 属性は CSS の height プレゼンテーションヒントにもなり、
   そのままだと aspect-ratio が無効化されるため auto に戻す */
img {
  height: auto;
}

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
  font-weight: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  /* color */
  --c-black: #000;
  --c-white: #fff;
  --c-text: #1a1a1a;
  --c-gray-bg: #f2f2f2;
  --c-gray-bg2: #e8e8e8;
  --c-footer: #636363;
  /* カンプ実測 rgb(99,99,99) */
  --c-rule: rgba(0, 0, 0, .12);
  /* フッターの罫線。下地99・線177 から不透明度を逆算して 0.50 */
  --c-rule-light: rgba(255, 255, 255, .5);
  /* sec07 Color 見出し下の区切り線 */
  --c-rule-mid: #808080;
  /* font */
  /* 見出しはElms Sans（https://fonts.google.com/specimen/Elms+Sans）。
     カンプPNGはフォント置換された書き出しのためHelvetica風に見えるが、Elms Sansが正 */
  --f-head: "Elms Sans", "Noto Sans JP", sans-serif;
  --f-body: "Inter", "Noto Sans JP", sans-serif;
  --f-jp: "Noto Sans JP", sans-serif;
  /* layout */
  --container: 1200px;
  --gutter: 20px;
  --header-h: 56px;
  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media print, screen and (min-width: 768px) {
  :root {
    --gutter: 48px;
    --header-h: 80px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: clamp(0.875rem, 0.94vw, 1.125rem);
  }
}

:lang(ja) .skip-link,
:lang(ja) .footer__copy,
:lang(ja) .hamburger__text {
  font-family: var(--f-jp);
  font-style: normal;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--c-black);
  color: var(--c-white);
  font-style: normal;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus-visible {
  transform: translateY(0);
}

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-fade.is-visible {
  opacity: 1;
  transform: none;
}

.no-js .js-fade {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: var(--c-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding-inline: var(--gutter);
}

.header__logo {
  position: relative;
  z-index: 45;
}
.header__logo img {
  width: clamp(120px, 11vw, 160px);
  height: auto;
}

.header .header__contact {
  display: none;
}

.header__nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(44px, 12.9vw, 99px);
  padding: calc(var(--header-h) + clamp(24px, 8.9vw, 122px)) var(--gutter) 0;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.nav-open .header__nav {
  visibility: visible;
  opacity: 1;
}

.nav__list {
  display: grid;
  justify-content: center;
  gap: clamp(18px, 5.3vw, 40px);
}

.nav__item a {
  display: grid;
  grid-template-columns: 2.8em auto;
  font-family: var(--f-head);
  font-size: clamp(1rem, 3.6vw, 1.75rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity 0.25s var(--ease);
}
.nav__item a:hover {
  opacity: .55;
}

.header__nav .nav__contact {
  width: 59.5vw;
  min-height: clamp(44px, 8.2vw, 63px);
  font-size: clamp(0.9375rem, 3.4vw, 1.625rem);
}

.hamburger {
  position: relative;
  z-index: 45;
  width: 34px;
  height: 34px;
  flex: none;
}

.hamburger__text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hamburger__box,
.hamburger__box::before,
.hamburger__box::after {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2px;
  background: var(--c-black);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}

.hamburger__box {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger__box::before,
.hamburger__box::after {
  content: "";
  left: 0;
}

.hamburger__box::before {
  top: -9px;
}

.hamburger__box::after {
  top: 9px;
}

.nav-open .hamburger__box {
  background: transparent;
}
.nav-open .hamburger__box::before {
  top: 0;
  transform: rotate(25deg);
}
.nav-open .hamburger__box::after {
  top: 0;
  transform: rotate(-25deg);
}

@media print, screen and (min-width: 1280px) {
  .hamburger {
    display: none;
  }

  .header__nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: none;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 40px);
  }

  .nav__item a {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    font-size: clamp(0.625rem, 0.68vw, 0.8125rem);
    font-weight: 600;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .header__nav .nav__contact {
    display: none;
  }

  .header .header__contact {
    display: inline-flex;
    min-width: clamp(150px, 11vw, 210px);
    flex: none;
  }
}
@media print, screen and (min-width: 1280px) and (max-width: 1439px) {
  .header__inner {
    gap: 16px;
    padding-inline: 32px;
  }
}
.nav-open {
  overflow: hidden;
}

@media print, screen and (min-width: 1280px) {
  .nav-open {
    overflow: visible;
  }
}
.intro__inner,
.sec01__inner,
.sec02__inner,
.sec03__inner,
.sec04__inner,
.sec05__inner,
.sec06__head,
.sec07__inner,
.footer__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer {
  background: var(--c-footer);
  color: var(--c-white);
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3.2vw, 26px);
  padding-block: clamp(36px, 2.4vw, 46px) clamp(36px, 2.74vw, 53px);
  text-align: center;
}

.footer__lead {
  font-family: var(--f-body);
  font-style: normal;
  font-size: clamp(0.7rem, 1.3vw, 1.5625rem);
  line-height: 1.6;
}

.footer__address {
  font-family: var(--f-body);
  font-style: normal;
  font-size: clamp(0.7125rem, 0.91vw, 1.09375rem);
  line-height: 1.715;
}
.footer__address a {
  transition: opacity 0.25s var(--ease);
}
.footer__address a:hover {
  opacity: .7;
}

.footer__sns a {
  display: block;
  transition: opacity 0.25s var(--ease);
}
.footer__sns a:hover {
  opacity: .7;
}
.footer__sns img {
  width: 25px;
  height: 25px;
}

.footer__dealer {
  font-family: var(--f-head);
  font-style: normal;
  margin-top: clamp(8px, 2.9vw, 56px);
}

.footer__dealer-title {
  font-size: clamp(1.125rem, 1.67vw, 2rem);
  font-weight: 600;
  letter-spacing: .08em;
}

.footer__dealer-link {
  display: inline-block;
  font-size: clamp(0.875rem, 1.25vw, 1.5rem);
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity 0.25s var(--ease);
}
.footer__dealer-link:hover {
  opacity: .7;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(14px, 1.25vw, 24px);
  padding-block: clamp(16px, 1.1vw, 21px);
  padding-inline: var(--gutter);
  border-top: 1px solid var(--c-rule-light);
  font-family: var(--f-jp);
  font-style: normal;
  font-size: clamp(0.6875rem, 0.57vw, 0.8125rem);
}

.footer__copy small {
  font-size: inherit;
}

@media print, screen and (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 11.71% 47.02% minmax(0, 1fr);
    gap: clamp(18px, 1.35vw, 26px) 0;
    justify-items: start;
    align-items: start;
    text-align: left;
  }

  .footer__lead {
    grid-column: 2;
    font-style: italic;
  }

  .footer__address {
    grid-column: 3;
  }

  .footer__address {
    grid-row: 1 / 3;
    font-style: italic;
  }

  .footer__dealer {
    grid-column: 2;
  }

  .footer__sns {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: end;
  }
}
.sec-label {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 var(--gutter) 14px;
  border-bottom: 1px solid var(--c-rule);
  line-height: 1.55;
  font-family: var(--f-head);
  font-size: clamp(0.625rem, 0.68vw, 0.8125rem);
  font-style: normal;
  font-weight: 600;
}
.sec-label--onblack {
  position: relative;
  z-index: 1;
  border-bottom-color: transparent;
  color: var(--c-white);
  margin-top: calc(-1.55em - 15px);
}
@media print, screen and (min-width: 768px) {
  .sec-label--onblack {
    margin-top: calc(-1.55em - 12px);
  }
}
.sec-label--onfooter {
  padding-top: 32px;
  border-bottom-color: var(--c-rule-light);
  color: var(--c-white);
}

.sec-label#sec02 {
  border-bottom-color: transparent;
  background: var(--c-gray-bg);
  margin-top: 0;
}

.sec-label#sec07 {
  padding-top: clamp(48px, 4.4vw, 84px);
  scroll-margin-top: calc(-1 * clamp(48px, 4.4vw, 84px));
}

.sec-label#sec02,
.sec-label#sec03 {
  scroll-margin-top: 5px;
}

@media print, screen and (min-width: 768px) {
  .sec-label {
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 11px;
    padding-left: max(var(--gutter), calc(50vw - var(--container) / 2));
    padding-right: var(--gutter);
  }
}
.sec-title {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 5.2vw, 2.875rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.sec-title--light {
  color: var(--c-white);
}
.sec-title--sm {
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
}

@media print, screen and (min-width: 768px) {
  .sec-title {
    font-size: clamp(1.75rem, 2.4vw, 2.875rem);
    text-align: left;
  }
}
.sec-lead {
  line-height: 1.7222222222;
}
.sec-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 28px;
  border-radius: 999px;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-head);
  font-size: clamp(0.6875rem, 0.63vw, 0.75rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .06em;
  transition: opacity 0.25s var(--ease);
}
.btn-contact:hover {
  opacity: .72;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px) clamp(16px, 2vw, 20px);
}

.card {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
  align-content: start;
}

.card__fig img {
  width: 100%;
  aspect-ratio: 40 / 41;
  object-fit: cover;
  background: var(--c-white);
}

.card__text {
  line-height: 1.75;
}

@media print, screen and (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card__text {
    max-width: 360px;
  }
}
.hero {
  position: relative;
  margin-top: var(--header-h);
  padding-inline: clamp(14px, 1.5vw, 28px);
}

.hero__media {
  overflow: hidden;
  border-radius: clamp(8px, 1vw, 16px);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--c-gray-bg);
}

.hero__title {
  position: absolute;
  inset-inline: clamp(28px, 8vw, 145px);
  bottom: 40%;
  display: flex;
  flex-direction: column;
  gap: .18em;
  color: var(--c-white);
  font-family: var(--f-head);
  font-size: clamp(1rem, 5.6vw, 3.625rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .04em;
  text-align: center;
  text-wrap: balance;
}

@media print, screen and (min-width: 768px) {
  .hero__media img {
    aspect-ratio: 2.24 / 1;
  }

  .hero__title {
    inset-inline: clamp(14px, 7.55vw, 145px) auto;
    bottom: 40.5%;
    text-align: left;
    font-size: clamp(1rem, 3.02vw, 3.625rem);
  }
}
.intro {
  padding-block: 0 clamp(53px, 8vw, 130px);
}

.intro__inner {
  display: grid;
  grid-template-columns: 140fr 185fr;
  align-items: start;
  column-gap: clamp(16px, 6.4vw, 25px);
  row-gap: 0;
}

.intro__lead {
  margin-top: clamp(20px, 6.7vw, 26px);
}

.intro__media {
  align-self: start;
  margin-top: -18.6%;
  position: relative;
}
.intro__media img {
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 768px) {
  .intro {
    padding-top: clamp(24px, 1.72vw, 33px);
    padding-bottom: clamp(60px, 6.5vw, 125px);
  }

  .intro__inner {
    max-width: none;
    grid-template-columns: min(23.4895833333vw, 451px) 1fr;
    align-items: start;
    gap: clamp(24px, 6.1vw, 118px);
    padding-left: max(var(--gutter), calc(50% - var(--container) / 2));
    padding-right: clamp(24px, 10.4vw, 200px);
  }

  .intro__lead {
    margin-top: 5.9%;
  }

  .intro__media {
    margin-top: max(-9.9479166667vw, -191px);
  }
}
.sec01 {
  padding-block: clamp(40px, 5vw, 76px) clamp(60px, 8vw, 130px);
  background: var(--c-gray-bg);
}

.sec01__head {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(32px, 4vw, 60px);
}

.sec01__fig img {
  width: 100%;
  object-fit: cover;
  background: var(--c-gray-bg2);
  border-radius: clamp(8px, 1vw, 8px);
}

.sec01__inner {
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  grid-template-columns: 1fr 1fr;
}

.sec01__fig--main img {
  aspect-ratio: 1 / 1;
}

.sec01__fig--small,
.sec01__fig--mid {
  grid-row: 3;
}

.sec01__fig--small {
  grid-column: 1;
}

.sec01__fig--mid {
  grid-column: 2;
}

.sec01__head,
.sec01__fig--main {
  grid-column: 1 / -1;
}

.sec01__fig--small img,
.sec01__fig--mid img {
  aspect-ratio: 1 / 1;
}

@media print, screen and (min-width: 768px) {
  .sec01 {
    position: relative;
    padding-bottom: clamp(32px, 8.5vw, 164px);
  }

  .sec01__inner {
    position: relative;
    display: block;
    max-width: none;
    padding-inline: 0;
    padding-bottom: 51.15%;
  }

  .sec01__fig,
  .sec01__head {
    position: absolute;
    margin: 0;
  }

  .sec01__head {
    top: calc(40px - clamp(40px, 5vw, 76px));
    left: max(var(--gutter), calc(50% - var(--container) / 2));
    width: min(544px, 32%);
  }

  .sec01__fig--main {
    left: 52.96%;
    width: 43.87%;
    top: -27.09%;
    z-index: 3;
  }

  .sec01__fig--main img {
    aspect-ratio: 1 / 1;
  }

  .sec01__fig--small {
    left: 13.02%;
    width: 14.5833333333%;
    top: 38.09%;
    z-index: 2;
  }

  .sec01__fig--small img {
    aspect-ratio: 1 / 1;
  }

  .sec01__fig--mid {
    left: 28.9%;
    width: 29.1666666667%;
    top: 45.97%;
    z-index: 1;
  }

  .sec01__fig--mid img {
    aspect-ratio: 1 / 1;
  }
}
.sec02 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-block: clamp(30px, 4vw, 56px) 0;
  background: var(--c-black);
  color: var(--c-white);
}

.sec02__bg {
  order: 2;
  margin-top: clamp(24px, 5vw, 40px);
}
.sec02__bg img {
  width: 100%;
  aspect-ratio: 768 / 545;
  object-fit: cover;
  object-position: 89% center;
  opacity: .85;
}

.sec02__inner {
  order: 1;
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}
.sec02__inner .sec-title {
  font-size: clamp(1.875rem, 2.92vw, 3.5rem);
  line-height: 1.15;
}

.sec02__logo img {
  width: clamp(110px, 8vw, 150px);
  height: auto;
  margin-inline: auto;
}

@media print, screen and (min-width: 768px) {
  .sec02 {
    display: block;
    padding-block: clamp(30px, 4vw, 56px) clamp(40px, 4.7vw, 90px);
    min-height: 31.25vw;
  }

  .sec02__bg {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 0;
    margin-top: 0;
  }
  .sec02__bg img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    opacity: 1;
  }

  .sec02__inner {
    position: relative;
    z-index: 1;
    justify-items: start;
  }

  .sec02__logo img {
    margin-inline: 0;
  }
}
.sec03 {
  padding-block: clamp(40px, 5vw, 76px) clamp(60px, 8vw, 120px);
  background: linear-gradient(180deg, var(--c-gray-bg) 0%, var(--c-white) 100%);
}

.sec03__inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.sec03__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(20px, 3vw, 48px);
}

.sec03__text {
  max-width: 27em;
}

.sec03__subtitle {
  margin-bottom: .6em;
  font-weight: 600;
  letter-spacing: .02em;
}

.sec03__fig img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
}

@media print, screen and (min-width: 768px) {
  .sec03 {
    padding-block: clamp(40px, 2.8vw, 52px) clamp(16px, 1.1vw, 20px);
  }

  .sec03__body {
    grid-template-columns: 27em 23.3333333333% 1fr;
    column-gap: 6.4166666667%;
    row-gap: 0;
  }

  .sec03__fig {
    grid-column: 2;
  }
}
.sec04,
.sec05 {
  padding-block: clamp(40px, 5vw, 76px) clamp(60px, 8vw, 120px);
  background: linear-gradient(180deg, var(--c-gray-bg) 0%, var(--c-white) 100%);
}

.sec04__inner,
.sec05__inner {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

@media print, screen and (min-width: 768px) {
  .sec04,
  .sec05 {
    padding-top: 40px;
  }

  .sec04__inner,
  .sec05__inner {
    gap: 20px;
  }

  .sec04 {
    padding-bottom: clamp(60px, 5.42vw, 104px);
  }

  .sec05 {
    padding-bottom: clamp(56px, 4.53vw, 87px);
  }
}
.sec06 {
  padding-top: clamp(40px, 5vw, 76px);
  padding-bottom: 0;
  background: var(--c-gray-bg);
}

.sec06__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.sec06__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--c-white);
}

.sec06__cell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--c-gray-bg2);
}

@media print, screen and (min-width: 768px) {
  .card-grid {
    column-gap: 3px;
  }

  .sec06 {
    margin-top: clamp(16px, 1.77vw, 34px);
    padding-top: clamp(32px, 2.1vw, 40px);
  }

  .sec06__head {
    margin-bottom: clamp(30px, 1.25vw, 24px);
  }

  .sec06__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sec06__cell img {
    aspect-ratio: 638 / 454;
  }
}
.sec07 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-block: clamp(40px, 5vw, 76px) clamp(50px, 6vw, 90px);
  background: linear-gradient(180deg, var(--c-gray-bg) 0%, var(--c-white) 100%);
}

.sec07__inner {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}
.sec07__inner--color {
  margin-top: clamp(50px, 7vw, 100px);
}

.sec07__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 36px);
}
@media print, screen and (min-width: 768px) {
  .sec07__head {
    justify-content: flex-start;
  }
}

.spec-badges {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 18px);
}
.spec-badges__en131 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(52px, 3.65vw, 70px);
  padding: 0 .55em;
  border: 2px solid currentColor;
  background: var(--c-white);
  font-family: var(--f-head);
  font-size: clamp(1.125rem, 1.56vw, 1.875rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
}
.spec-badges img {
  height: clamp(52px, 3.65vw, 70px);
  width: auto;
}

.size-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 4vw, 40px);
  justify-items: center;
}

.size {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(14px, 1.6vw, 22px);
}

.size__name {
  font-family: var(--f-head);
  font-size: clamp(0.9375rem, 1.1vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

.size__fig {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.size__fig img {
  width: 100%;
  height: auto;
}

.size {
  width: min(100%, 62%);
}

.spec {
  width: 100%;
  font-family: var(--f-head);
  font-size: clamp(0.6875rem, 0.78vw, 0.875rem);
  font-style: normal;
  font-weight: 600;
}
.spec__caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.spec th,
.spec td {
  padding: .7em .4em;
  border-bottom: 1px solid var(--c-rule);
}
.spec thead th {
  border-bottom-color: var(--c-rule);
  text-align: center;
  font-weight: 600;
}
.spec tbody th {
  width: 34%;
  font-weight: 600;
}
.spec tbody td {
  text-align: center;
  letter-spacing: .02em;
}

.sec07__inner--color .sec-title {
  position: relative;
  padding-bottom: clamp(34px, 3.4vw, 44px);
}
.sec07__inner--color .sec-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 1vw, 14px);
  width: 100vw;
  height: .5px;
  transform: translateX(-50%);
  background: var(--c-rule-mid);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
}

.color {
  position: relative;
}

.color__name {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: var(--f-head);
  font-size: clamp(0.75rem, 0.85vw, 0.8125rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

.color__img {
  margin-top: -32.6530612245%;
  width: 100%;
  aspect-ratio: 2334 / 3500;
  object-fit: contain;
}

@media print, screen and (min-width: 768px) {
  .sec07 {
    padding-block: clamp(32px, 1.88vw, 36px) clamp(40px, 2.81vw, 54px);
  }

  .sec07__inner {
    gap: clamp(44px, 2.97vw, 57px);
  }

  .size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
    justify-items: stretch;
  }

  .size {
    width: auto;
  }

  .size__fig img {
    width: min(100%, 300px);
  }

  .size--small .size__fig {
    position: relative;
  }
  .size--small .size__fig::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    width: 200vw;
    height: .5px;
    z-index: -1;
    background: #000;
  }

  .size--small .size__fig img {
    position: relative;
    top: 4px;
  }

  .size--medium .size__fig img {
    position: relative;
    top: 3px;
  }

  .sec07__inner--color {
    row-gap: 50px;
  }

  .sec07__inner--color .sec-title {
    padding-bottom: 10px;
  }
  .sec07__inner--color .sec-title::after {
    bottom: 0;
  }

  .color-grid {
    grid-template-columns: repeat(2, minmax(0, 220px));
    justify-content: center;
    max-width: none;
    column-gap: 7%;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1210px) {
  .color-grid {
    grid-template-columns: repeat(4, minmax(0, 220px));
  }
}
@media print, screen and (min-width: 768px) {
  .color__name {
    width: 74px;
    text-align: right;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.br-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .br-pc {
    display: inline;
  }
}

.br-sp {
  display: inline;
}
@media print, screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp_none {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .u-pc_none {
    display: none !important;
  }
}

.u-font-go {
  font-family: "Noto Sans JP", sans-serif;
}

/*# sourceMappingURL=style.css.map */
