@charset "UTF-8";
/*---------------------------------------------
function
---------------------------------------------*/
/*JP*/
/*EN*/
/*CN*/
/*---------------------------------------------
mixin
---------------------------------------------*/
/*レスポンシブ-----------------------------------------------------*/
/* フォントサイズ変数 --------------------------------------------- */
/* 基本フォントサイズ設定 mixin（必ず先頭で定義） */
/* レスポンシブ対応 mixin ----------------------------------------- */
/* フォントサイズ mixin ---------------------------------------------- */
/*装飾関連-----------------------------------------------------*/
/*見出し関連-----------------------------------------------------*/
/*余白関連-----------------------------------------------------*/
/*採用事例用-----------------------------------------------------*/
/*幅調整用-----------------------------------------------------*/
:root {
  --vw: 1vw;
}

:root {
  color-scheme: light;
  --leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
  --leading-trim: calc((1cap - 1lh) / 2);
  font-family: "Roboto", sans-serif;
}

:lang(ja) {
  font-family: "Noto Sans JP", sans-serif;
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where(html) {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

:where(body) {
  min-block-size: 100%;
  min-block-size: 100dvb;
  width: calc(100vw - (100vw - 100%));
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  :where(body) {
    font-size: 1.4rem;
  }
}
:where(body) {
  -webkit-font-feature-settings: "palt", "pnum", "kern";
          font-feature-settings: "palt", "pnum", "kern";
  -webkit-font-variant-ligatures: no-common-ligatures;
          font-variant-ligatures: no-common-ligatures;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-variant-numeric: proportional-nums;
  color: #333;
  background-color: #fff;
  overflow-x: clip;
  position: relative;
}
:where(body).active {
  overflow: hidden;
}

:where(h1, h2, h3, h4, h5, h6, div, p, th, td, li, dt, dd, a, span, input, select) {
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
  margin: 0;
  text-underline-offset: 0.4rem;
}

:where(article, aside, footer, header, div, dt, figcaption, form, hgroup, html, nav, section, main, img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
  background-color: inherit;
  border: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(a, a > span, a:hover, a:active, a:visited, a:focus-visible) {
  color: #333;
  text-decoration: none;
  overflow-wrap: anywhere;
}

:where(:focus-visible) {
  outline-color: #000;
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-box-shadow: 0 0 0 5px #ffffff;
          box-shadow: 0 0 0 5px #ffffff;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(ul, ol) {
  list-style-type: "";
}

:where(address) {
  font-style: normal;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-backface-visibility: hidden;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
  -o-object-fit: cover;
     object-fit: cover;
}

:where(p img, li img) {
  display: inline-block;
  vertical-align: baseline;
}

:where(form) {
  width: 100%;
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

:where(fieldset) {
  border: none;
  margin: 0;
  padding: 0;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  border: none;
  background-color: inherit;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  :where(input, button, textarea, select) {
    font-size: 1.4rem;
  }
}
:where(input, button, textarea, select)::-webkit-input-placeholder {
  color: #828282;
  opacity: 0.5;
}
:where(input, button, textarea, select)::-moz-placeholder {
  color: #828282;
  opacity: 0.5;
}
:where(input, button, textarea, select):-ms-input-placeholder {
  color: #828282;
  opacity: 0.5;
}
:where(input, button, textarea, select)::-ms-input-placeholder {
  color: #828282;
  opacity: 0.5;
}
:where(input, button, textarea, select)::placeholder {
  color: #828282;
  opacity: 0.5;
}
:where(input, button, textarea, select):disabled {
  background-color: #b4b4b4;
}

:where(input, textarea, select) {
  color: #333;
}

:where(input)::-webkit-inner-spin-button {
  cursor: pointer;
}
:where(input)[type=date]::-webkit-calendar-picker-indicator, :where(input)[type=datetime-local]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

:where(select) {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(body) ::-webkit-scrollbar {
  width: 8px;
  scrollbar-width: thin;
}
@media (max-width: 480px) {
  :where(body) ::-webkit-scrollbar {
    width: 6px;
  }
}
:where(body) ::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-margin-before: 2px;
          margin-block-start: 2px;
  -webkit-margin-after: 2px;
          margin-block-end: 2px;
}
:where(body) ::-webkit-scrollbar-thumb {
  background-color: #909090;
  border-radius: 10000px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  background-clip: padding-box;
}
@-moz-document url-prefix() {
  :where(body) {
    scrollbar-color: #909090 #fff;
    scrollbar-width: thin;
  }
}

:where(dialog) {
  margin: auto;
  background-color: #fff;
  border: none;
  width: auto;
  max-inline-size: 1040px;
  max-block-size: calc(100% - 80px);
  max-block-size: calc(100dvb - 80px);
  inline-size: calc(100% - 40px);
}
@media (max-width: 480px) {
  :where(dialog) {
    max-block-size: calc(100% - 80px);
    max-block-size: calc(100dvb - 80px);
  }
}
:where(dialog):not([open]) {
  min-block-size: 0;
  min-inline-size: 0;
}
:where(dialog)::-webkit-backdrop {
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
:where(dialog)::-ms-backdrop {
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
:where(dialog)::backdrop {
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

:where(details) {
  display: block;
}

:where(summary) {
  position: relative;
  display: block;
  list-style-type: "";
  cursor: pointer;
}

:where(sup) {
  font-size: 1.1rem;
}

:where(sup:lang(en)) {
  vertical-align: top;
  position: relative;
  top: -0.2em;
  font-family: "Noto Sans JP", sans-serif;
}

:where(figcaption) {
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  :where(figcaption) {
    font-size: 1.2rem;
  }
}
:where(figcaption) {
  margin-top: 8px;
}

.clearfix {
  display: block;
  *zoom: 1;
}
.clearfix::before {
  content: "";
  display: block;
  clear: both;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

:root {
  --containerWidthLg: 1200px;
  --containerWidth: 1000px;
}

/*--------------------------------------------------
ＢＬＯＣＫ
--------------------------------------------------*/
:where(.main a:not(.btn--primary)) {
  color: #627a86;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
:where(.main a:not(.btn--primary))[href*="http:"]:not([class*=card], [class*=btn], [href*=ulprospector]), :where(.main a:not(.btn--primary))[href*="https:"]:not([class*=card], [class*=btn], [href*=ulprospector]), :where(.main a:not(.btn--primary))[target=_blank]:not([href*=".pdf"]):not([class*=card], [class*=btn], [href*=ulprospector]) {
  position: relative;
}
:where(.main a:not(.btn--primary))[href*="http:"]:not([class*=card], [class*=btn], [href*=ulprospector])::after, :where(.main a:not(.btn--primary))[href*="https:"]:not([class*=card], [class*=btn], [href*=ulprospector])::after, :where(.main a:not(.btn--primary))[target=_blank]:not([href*=".pdf"]):not([class*=card], [class*=btn], [href*=ulprospector])::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(./../images/common/icon-external-black.svg) no-repeat center;
  -webkit-filter: invert(48%) sepia(22%) saturate(520%) hue-rotate(162deg) brightness(78%) contrast(85%);
          filter: invert(48%) sepia(22%) saturate(520%) hue-rotate(162deg) brightness(78%) contrast(85%);
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.5em;
}
:where(.main a:not(.btn--primary))[href$=".xls"], :where(.main a:not(.btn--primary))[href$=".xlsx"] {
  background: url(./../images/common/icon_xlsx.svg) no-repeat right center;
  background-size: 1.8rem;
  padding: 0 2rem 0 0;
}
:where(.main a:not(.btn--primary))[href*=".pdf"] {
  background: url(./../images/common/icon_pdf_nomo.svg) no-repeat left center;
  background-size: 1.8rem;
  padding: 0 0 0 2rem;
}
:where(.main a:not(.btn--primary))[href$=".doc"] {
  background: url(./../images/common/icon_word.svg) no-repeat right -10px center;
  background-size: 1.8rem;
}
:where(.main a:not(.btn--primary)).googleMap {
  background: url(./../images/common/icon_googlemap.svg) no-repeat right center;
  background-size: 1.8rem;
  padding: 0 0 0 2rem;
}
:where(.main a:not(.btn--primary)).map {
  background: url(./../images/common/icon_map.svg) no-repeat right center;
  background-size: 1.8rem;
  padding: 0 2rem 0 0;
}

:where(.main + *) {
  margin-top: 120px;
}
@media (max-width: 768px) {
  :where(.main + *) {
    margin-top: 100px;
  }
}
@media (max-width: 480px) {
  :where(.main + *) {
    margin-top: 15vw;
  }
}

:where(.main > *:not(:first-child)) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  :where(.main > *:not(:first-child)) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  :where(.main > *:not(:first-child)) {
    margin-top: 2vw;
  }
}

:where(.page-main + *, .page-history + *, .page-info + *) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  :where(.page-main + *, .page-history + *, .page-info + *) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  :where(.page-main + *, .page-history + *, .page-info + *) {
    margin-top: 10vw;
  }
}

:where(.page-main > *:not(:first-child), .page-history > *:not(:first-child), .page-info > *:not(:first-child)) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  :where(.page-main > *:not(:first-child), .page-history > *:not(:first-child), .page-info > *:not(:first-child)) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  :where(.page-main > *:not(:first-child), .page-history > *:not(:first-child), .page-info > *:not(:first-child)) {
    margin-top: 2vw;
  }
}

:where(.section > *:not(:first-child)) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  :where(.section > *:not(:first-child)) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  :where(.section > *:not(:first-child)) {
    margin-top: 2vw;
  }
}

:where(.section:not(:first-child), .info-section:not(:first-child)) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  :where(.section:not(:first-child), .info-section:not(:first-child)) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  :where(.section:not(:first-child), .info-section:not(:first-child)) {
    margin-top: 10vw;
  }
}

.page-main {
  letter-spacing: 0.1rem;
}
.page-main h2:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-main h2:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-main h2:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-main h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-main h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-main h2:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-main h2:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-main h2:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-main h2:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-main h2:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-main h2:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-main h2:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-main h2:not(.title) + *:not(.resources),
.page-main h2:not(.title) + h3:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-main h2:not(.title) + *:not(.resources),
  .page-main h2:not(.title) + h3:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-main h2:not(.title) + *:not(.resources),
  .page-main h2:not(.title) + h3:not(.title) {
    margin-top: 4vw;
  }
}
.page-main h2:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-main h2:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-main h2:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-main h2:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-main h2:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-main h2:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-main h3:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-main h3:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-main h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-main h3:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-main h3:not(.title, .year) {
  color: #009fa8;
}
.page-main h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-main h3:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-main h3:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-main h3:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-main h3:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-main h3:not(.title, .year) + *:not(.resources),
.page-main h3:not(.title, .year) + h4:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-main h3:not(.title, .year) + *:not(.resources),
  .page-main h3:not(.title, .year) + h4:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-main h3:not(.title, .year) + *:not(.resources),
  .page-main h3:not(.title, .year) + h4:not(.title) {
    margin-top: 3vw;
  }
}
.page-main h3:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-main h3:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-main h3:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-main h4:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-main h4:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-main h4:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-main h4:not(.title, .year) {
  color: #009fa8;
}
.page-main h4:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-main h4:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-main h4:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-main h4:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-main h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-main h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-main h5:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-main h5:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-main h5:not(.title) {
    font-size: 1.4rem;
  }
}
.page-main h5:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-main h5:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-main h5:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-main h5:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-main h5:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-main h5:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-main p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-main p {
    font-size: 1.4rem;
  }
}
.page-main .article-header {
  max-width: var(--containerWidthLg);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .page-main .article-header {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page-main .article-header {
    margin-top: 12.5vw;
  }
}
@media (max-width: 768px) {
  .page-main .article-header {
    width: 100%;
    padding: 0;
  }
}
.page-main .article-header h1 {
  text-align: center;
}
.page-main .article-header .logo {
  display: block;
  width: auto;
  height: 40px;
  padding: 0 !important;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .page-main .article-header .logo {
    height: 32px;
  }
}
.page-main .article-header .logo[src*="logo_lemalloy.svg"] {
  aspect-ratio: 222/32;
  height: 26px;
}
@media (max-width: 480px) {
  .page-main .article-header .logo[src*="logo_lemalloy.svg"] {
    height: 18px;
  }
}
.page-main .article-header .logo[src*="logo_lemalloy.svg"] + .name {
  margin-top: 8px;
}
.page-main .article-header .logo[src*="logo_iupital.svg"] {
  aspect-ratio: 300/87;
}
.page-main .article-header .logo[src*="logo_reny.svg"] {
  aspect-ratio: 300/111;
}
.page-main .article-header .logo[src*="logo_iupiace.svg"] {
  aspect-ratio: 300/83;
}
.page-main .article-header .text {
  color: #627a86;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .page-main .article-header .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-main .article-header .text {
    font-size: 1.6rem;
  }
}
.page-main .article-header .text span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #627a86;
}
@media (max-width: 768px) {
  .page-main .article-header .text span {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
.page-main .article-header .text {
  font-weight: 700;
}
.page-main .article-header + .grid-anchor--product {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-main .article-header + .grid-anchor--product {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-main .article-header + .grid-anchor--product {
    margin-top: 8vw;
  }
}
.page-main .article-header + .grid-anchor--product + * {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-main .article-header + .grid-anchor--product + * {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-main .article-header + .grid-anchor--product + * {
    margin-top: 6vw;
  }
}
.page-main .article-header h1.title-tech {
  font-size: 3rem;
  line-height: 4.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: bold;
}
.page-main .article-header h1.title-tech .text {
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.page-main .article-header .categories {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .page-main .article-header .categories {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .page-main .article-header .categories {
    gap: 3vw 2vw;
  }
}
@media (max-width: 480px) {
  .page-main .article-header .categories {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-main .article-header .categories .category {
  padding: 0 24px;
}
.page-main .article-header .name {
  display: block;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-main .article-header .name {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-main .article-header .name {
    font-size: 2.2rem;
  }
}
.page-main .article-header .name {
  font-weight: 700;
}
.page-main .date:first-child {
  text-align: right;
  display: block;
}
.page-main .date:first-child + section:not(:first-child),
.page-main .date:first-child + h2:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-main .date:first-child + section:not(:first-child),
  .page-main .date:first-child + h2:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-main .date:first-child + section:not(:first-child),
  .page-main .date:first-child + h2:not(.title) {
    margin-top: 0vw;
  }
}
.page-main {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-main {
    padding: 0 20px;
  }
}
.page-main {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-main {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-main {
    margin-top: 5vw;
  }
}

.page-info {
  letter-spacing: 0.1rem;
}
.page-info h1:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-info h1:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-info h1:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-info h1:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-info h1:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-info h1:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-info h1:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-info h1:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-info h1:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-info h1:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-info h1:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-info h1:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-info h1:not(.title) + *:not(.resources),
.page-info h1:not(.title) + h2:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-info h1:not(.title) + *:not(.resources),
  .page-info h1:not(.title) + h2:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-info h1:not(.title) + *:not(.resources),
  .page-info h1:not(.title) + h2:not(.title) {
    margin-top: 4vw;
  }
}
.page-info h1:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-info h1:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-info h1:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-info h1:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-info h1:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-info h1:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-info h2:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-info h2:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-info h2:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-info h2:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-info h2:not(.title, .year) {
  color: #009fa8;
}
.page-info h2:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-info h2:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-info h2:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-info h2:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-info h2:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-info h2:not(.title, .year) + *:not(.resources),
.page-info h2:not(.title, .year) + h3:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-info h2:not(.title, .year) + *:not(.resources),
  .page-info h2:not(.title, .year) + h3:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-info h2:not(.title, .year) + *:not(.resources),
  .page-info h2:not(.title, .year) + h3:not(.title) {
    margin-top: 3vw;
  }
}
.page-info h2:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-info h2:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-info h2:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-info h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-info h3:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-info h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-info h3:not(.title, .year) {
  color: #009fa8;
}
.page-info h3:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-info h3:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-info h3:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-info h3:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-info h3:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-info h3:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-info h4:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-info h4:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-info h4:not(.title) {
    font-size: 1.4rem;
  }
}
.page-info h4:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-info h4:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-info h4:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-info h4:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-info h4:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-info h4:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-info p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-info p {
    font-size: 1.4rem;
  }
}
.page-info .info-header .date {
  text-align: right;
  display: block;
}
.page-info .info-header .date + h1:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-info .info-header .date + h1:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-info .info-header .date + h1:not(.title) {
    margin-top: 0vw;
  }
}
.page-info .info-header + *:not(.resources),
.page-info .info-header + h3:not(.title) {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-info .info-header + *:not(.resources),
  .page-info .info-header + h3:not(.title) {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-info .info-header + *:not(.resources),
  .page-info .info-header + h3:not(.title) {
    margin-top: 6vw;
  }
}
.page-info .info-header + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-info .info-header + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-info .info-header + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-info .info-header + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-info .info-header + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-info .info-header + .resources {
    margin-top: 10vw;
  }
}
.page-info {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-info {
    padding: 0 20px;
  }
}
.page-info {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-info {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-info {
    margin-top: 5vw;
  }
}

.page-top {
  letter-spacing: 0.1rem;
}
.page-top h2:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-top h2:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-top h2:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-top h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-top h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-top h2:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-top h2:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-top h2:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top h2:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top h2:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top h2:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-top h2:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-top h2:not(.title) + *:not(.resources),
.page-top h2:not(.title) + h3:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-top h2:not(.title) + *:not(.resources),
  .page-top h2:not(.title) + h3:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-top h2:not(.title) + *:not(.resources),
  .page-top h2:not(.title) + h3:not(.title) {
    margin-top: 4vw;
  }
}
.page-top h2:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-top h2:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-top h2:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-top h2:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top h2:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top h2:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-top h3:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-top h3:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-top h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-top h3:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-top h3:not(.title, .year) {
  color: #009fa8;
}
.page-top h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top h3:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-top h3:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-top h3:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-top h3:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-top h3:not(.title, .year) + *:not(.resources),
.page-top h3:not(.title, .year) + h4:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-top h3:not(.title, .year) + *:not(.resources),
  .page-top h3:not(.title, .year) + h4:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-top h3:not(.title, .year) + *:not(.resources),
  .page-top h3:not(.title, .year) + h4:not(.title) {
    margin-top: 3vw;
  }
}
.page-top h3:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top h3:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top h3:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-top h4:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top h4:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-top h4:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-top h4:not(.title, .year) {
  color: #009fa8;
}
.page-top h4:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-top h4:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-top h4:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-top h4:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-top h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-top h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-top h5:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top h5:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-top h5:not(.title) {
    font-size: 1.4rem;
  }
}
.page-top h5:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-top h5:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-top h5:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-top h5:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-top h5:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-top h5:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-top p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-top p {
    font-size: 1.4rem;
  }
}
.page-top .article-header {
  max-width: var(--containerWidthLg);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .page-top .article-header {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page-top .article-header {
    margin-top: 12.5vw;
  }
}
@media (max-width: 768px) {
  .page-top .article-header {
    width: 100%;
    padding: 0;
  }
}
.page-top .article-header h1 {
  text-align: center;
}
.page-top .article-header .logo {
  display: block;
  width: auto;
  height: 40px;
  padding: 0 !important;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .page-top .article-header .logo {
    height: 32px;
  }
}
.page-top .article-header .logo[src*="logo_lemalloy.svg"] {
  aspect-ratio: 222/32;
  height: 26px;
}
@media (max-width: 480px) {
  .page-top .article-header .logo[src*="logo_lemalloy.svg"] {
    height: 18px;
  }
}
.page-top .article-header .logo[src*="logo_lemalloy.svg"] + .name {
  margin-top: 8px;
}
.page-top .article-header .logo[src*="logo_iupital.svg"] {
  aspect-ratio: 300/87;
}
.page-top .article-header .logo[src*="logo_reny.svg"] {
  aspect-ratio: 300/111;
}
.page-top .article-header .logo[src*="logo_iupiace.svg"] {
  aspect-ratio: 300/83;
}
.page-top .article-header .text {
  color: #627a86;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .page-top .article-header .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-top .article-header .text {
    font-size: 1.6rem;
  }
}
.page-top .article-header .text span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #627a86;
}
@media (max-width: 768px) {
  .page-top .article-header .text span {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
.page-top .article-header .text {
  font-weight: 700;
}
.page-top .article-header + .grid-anchor--product {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-top .article-header + .grid-anchor--product {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-top .article-header + .grid-anchor--product {
    margin-top: 8vw;
  }
}
.page-top .article-header + .grid-anchor--product + * {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-top .article-header + .grid-anchor--product + * {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-top .article-header + .grid-anchor--product + * {
    margin-top: 6vw;
  }
}
.page-top .article-header h1.title-tech {
  font-size: 3rem;
  line-height: 4.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: bold;
}
.page-top .article-header h1.title-tech .text {
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.page-top .article-header .categories {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .page-top .article-header .categories {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .page-top .article-header .categories {
    gap: 3vw 2vw;
  }
}
@media (max-width: 480px) {
  .page-top .article-header .categories {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-top .article-header .categories .category {
  padding: 0 24px;
}
.page-top .article-header .name {
  display: block;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-top .article-header .name {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-top .article-header .name {
    font-size: 2.2rem;
  }
}
.page-top .article-header .name {
  font-weight: 700;
}
.page-top .date:first-child {
  text-align: right;
  display: block;
}
.page-top .date:first-child + section:not(:first-child),
.page-top .date:first-child + h2:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-top .date:first-child + section:not(:first-child),
  .page-top .date:first-child + h2:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-top .date:first-child + section:not(:first-child),
  .page-top .date:first-child + h2:not(.title) {
    margin-top: 0vw;
  }
}
.page-top {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top {
    margin-top: 10vw;
  }
}
.page-top {
  max-width: var(--containerWidthLg);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-top {
    padding: 0 20px;
  }
}
.page-top + .related {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top + .related {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top + .related {
    margin-top: 10vw;
  }
}
.page-top + .related {
  border-top: 1px solid #bfbfbf;
}
.page-top + .related > .inner {
  letter-spacing: 0.1rem;
}
.page-top + .related > .inner h2:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-top + .related > .inner h2:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-top + .related > .inner h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-top + .related > .inner h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h2:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-top + .related > .inner h2:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top + .related > .inner h2:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h2:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-top + .related > .inner h2:not(.title) + *:not(.resources),
.page-top + .related > .inner h2:not(.title) + h3:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) + *:not(.resources),
  .page-top + .related > .inner h2:not(.title) + h3:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h2:not(.title) + *:not(.resources),
  .page-top + .related > .inner h2:not(.title) + h3:not(.title) {
    margin-top: 4vw;
  }
}
.page-top + .related > .inner h2:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h2:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-top + .related > .inner h2:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h2:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h2:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-top + .related > .inner h3:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h3:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-top + .related > .inner h3:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-top + .related > .inner h3:not(.title, .year) {
  color: #009fa8;
}
.page-top + .related > .inner h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top + .related > .inner h3:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h3:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h3:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-top + .related > .inner h3:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-top + .related > .inner h3:not(.title, .year) + *:not(.resources),
.page-top + .related > .inner h3:not(.title, .year) + h4:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h3:not(.title, .year) + *:not(.resources),
  .page-top + .related > .inner h3:not(.title, .year) + h4:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h3:not(.title, .year) + *:not(.resources),
  .page-top + .related > .inner h3:not(.title, .year) + h4:not(.title) {
    margin-top: 3vw;
  }
}
.page-top + .related > .inner h3:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h3:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h3:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-top + .related > .inner h4:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top + .related > .inner h4:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-top + .related > .inner h4:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-top + .related > .inner h4:not(.title, .year) {
  color: #009fa8;
}
.page-top + .related > .inner h4:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h4:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h4:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-top + .related > .inner h4:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-top + .related > .inner h5:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-top + .related > .inner h5:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-top + .related > .inner h5:not(.title) {
    font-size: 1.4rem;
  }
}
.page-top + .related > .inner h5:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h5:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h5:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-top + .related > .inner h5:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner h5:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner h5:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-top + .related > .inner p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-top + .related > .inner p {
    font-size: 1.4rem;
  }
}
.page-top + .related > .inner .article-header {
  max-width: var(--containerWidthLg);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header {
    margin-top: 12.5vw;
  }
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header {
    width: 100%;
    padding: 0;
  }
}
.page-top + .related > .inner .article-header h1 {
  text-align: center;
}
.page-top + .related > .inner .article-header .logo {
  display: block;
  width: auto;
  height: 40px;
  padding: 0 !important;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .logo {
    height: 32px;
  }
}
.page-top + .related > .inner .article-header .logo[src*="logo_lemalloy.svg"] {
  aspect-ratio: 222/32;
  height: 26px;
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .logo[src*="logo_lemalloy.svg"] {
    height: 18px;
  }
}
.page-top + .related > .inner .article-header .logo[src*="logo_lemalloy.svg"] + .name {
  margin-top: 8px;
}
.page-top + .related > .inner .article-header .logo[src*="logo_iupital.svg"] {
  aspect-ratio: 300/87;
}
.page-top + .related > .inner .article-header .logo[src*="logo_reny.svg"] {
  aspect-ratio: 300/111;
}
.page-top + .related > .inner .article-header .logo[src*="logo_iupiace.svg"] {
  aspect-ratio: 300/83;
}
.page-top + .related > .inner .article-header .text {
  color: #627a86;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .text {
    font-size: 1.6rem;
  }
}
.page-top + .related > .inner .article-header .text span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #627a86;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header .text span {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
.page-top + .related > .inner .article-header .text {
  font-weight: 700;
}
.page-top + .related > .inner .article-header + .grid-anchor--product {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header + .grid-anchor--product {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header + .grid-anchor--product {
    margin-top: 8vw;
  }
}
.page-top + .related > .inner .article-header + .grid-anchor--product + * {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header + .grid-anchor--product + * {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header + .grid-anchor--product + * {
    margin-top: 6vw;
  }
}
.page-top + .related > .inner .article-header h1.title-tech {
  font-size: 3rem;
  line-height: 4.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: bold;
}
.page-top + .related > .inner .article-header h1.title-tech .text {
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.page-top + .related > .inner .article-header .categories {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header .categories {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .categories {
    gap: 3vw 2vw;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .categories {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-top + .related > .inner .article-header .categories .category {
  padding: 0 24px;
}
.page-top + .related > .inner .article-header .name {
  display: block;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .article-header .name {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .article-header .name {
    font-size: 2.2rem;
  }
}
.page-top + .related > .inner .article-header .name {
  font-weight: 700;
}
.page-top + .related > .inner .date:first-child {
  text-align: right;
  display: block;
}
.page-top + .related > .inner .date:first-child + section:not(:first-child),
.page-top + .related > .inner .date:first-child + h2:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .date:first-child + section:not(:first-child),
  .page-top + .related > .inner .date:first-child + h2:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .date:first-child + section:not(:first-child),
  .page-top + .related > .inner .date:first-child + h2:not(.title) {
    margin-top: 0vw;
  }
}
.page-top + .related > .inner {
  max-width: var(--containerWidthLg);
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner {
    margin-top: 5vw;
  }
}
.page-top + .related > .inner {
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-top + .related > .inner {
    padding: 0 20px;
  }
}
.page-top + .related > .inner .title {
  text-align: center;
  font-size: 2rem;
}
.page-top + .related > .inner .title + .card-list {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-top + .related > .inner .title + .card-list {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-top + .related > .inner .title + .card-list {
    margin-top: 5vw;
  }
}

.page-history {
  letter-spacing: 0.1rem;
}
.page-history h2:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-history h2:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-history h2:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-history h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-history h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-history h2:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-history h2:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-history h2:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-history h2:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-history h2:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-history h2:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-history h2:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-history h2:not(.title) + *:not(.resources),
.page-history h2:not(.title) + h3:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-history h2:not(.title) + *:not(.resources),
  .page-history h2:not(.title) + h3:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-history h2:not(.title) + *:not(.resources),
  .page-history h2:not(.title) + h3:not(.title) {
    margin-top: 4vw;
  }
}
.page-history h2:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-history h2:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-history h2:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-history h2:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-history h2:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-history h2:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-history h3:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-history h3:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-history h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-history h3:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-history h3:not(.title, .year) {
  color: #009fa8;
}
.page-history h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-history h3:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-history h3:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-history h3:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-history h3:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-history h3:not(.title, .year) + *:not(.resources),
.page-history h3:not(.title, .year) + h4:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-history h3:not(.title, .year) + *:not(.resources),
  .page-history h3:not(.title, .year) + h4:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-history h3:not(.title, .year) + *:not(.resources),
  .page-history h3:not(.title, .year) + h4:not(.title) {
    margin-top: 3vw;
  }
}
.page-history h3:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-history h3:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-history h3:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-history h4:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-history h4:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-history h4:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-history h4:not(.title, .year) {
  color: #009fa8;
}
.page-history h4:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-history h4:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-history h4:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-history h4:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-history h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-history h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-history h5:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-history h5:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-history h5:not(.title) {
    font-size: 1.4rem;
  }
}
.page-history h5:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-history h5:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-history h5:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-history h5:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-history h5:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-history h5:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-history p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-history p {
    font-size: 1.4rem;
  }
}
.page-history .article-header {
  max-width: var(--containerWidthLg);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .page-history .article-header {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page-history .article-header {
    margin-top: 12.5vw;
  }
}
@media (max-width: 768px) {
  .page-history .article-header {
    width: 100%;
    padding: 0;
  }
}
.page-history .article-header h1 {
  text-align: center;
}
.page-history .article-header .logo {
  display: block;
  width: auto;
  height: 40px;
  padding: 0 !important;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .page-history .article-header .logo {
    height: 32px;
  }
}
.page-history .article-header .logo[src*="logo_lemalloy.svg"] {
  aspect-ratio: 222/32;
  height: 26px;
}
@media (max-width: 480px) {
  .page-history .article-header .logo[src*="logo_lemalloy.svg"] {
    height: 18px;
  }
}
.page-history .article-header .logo[src*="logo_lemalloy.svg"] + .name {
  margin-top: 8px;
}
.page-history .article-header .logo[src*="logo_iupital.svg"] {
  aspect-ratio: 300/87;
}
.page-history .article-header .logo[src*="logo_reny.svg"] {
  aspect-ratio: 300/111;
}
.page-history .article-header .logo[src*="logo_iupiace.svg"] {
  aspect-ratio: 300/83;
}
.page-history .article-header .text {
  color: #627a86;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .page-history .article-header .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-history .article-header .text {
    font-size: 1.6rem;
  }
}
.page-history .article-header .text span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #627a86;
}
@media (max-width: 768px) {
  .page-history .article-header .text span {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
.page-history .article-header .text {
  font-weight: 700;
}
.page-history .article-header + .grid-anchor--product {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-history .article-header + .grid-anchor--product {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-history .article-header + .grid-anchor--product {
    margin-top: 8vw;
  }
}
.page-history .article-header + .grid-anchor--product + * {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-history .article-header + .grid-anchor--product + * {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-history .article-header + .grid-anchor--product + * {
    margin-top: 6vw;
  }
}
.page-history .article-header h1.title-tech {
  font-size: 3rem;
  line-height: 4.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: bold;
}
.page-history .article-header h1.title-tech .text {
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.page-history .article-header .categories {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .page-history .article-header .categories {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .page-history .article-header .categories {
    gap: 3vw 2vw;
  }
}
@media (max-width: 480px) {
  .page-history .article-header .categories {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-history .article-header .categories .category {
  padding: 0 24px;
}
.page-history .article-header .name {
  display: block;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-history .article-header .name {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-history .article-header .name {
    font-size: 2.2rem;
  }
}
.page-history .article-header .name {
  font-weight: 700;
}
.page-history .date:first-child {
  text-align: right;
  display: block;
}
.page-history .date:first-child + section:not(:first-child),
.page-history .date:first-child + h2:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-history .date:first-child + section:not(:first-child),
  .page-history .date:first-child + h2:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-history .date:first-child + section:not(:first-child),
  .page-history .date:first-child + h2:not(.title) {
    margin-top: 0vw;
  }
}
.page-history {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-history {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-history {
    margin-top: 5vw;
  }
}
.page-history {
  max-width: var(--containerWidthLg);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-history {
    padding: 0 20px;
  }
}
.page-history > .aside,
.page-history > .btn-list--center {
  max-width: var(--containerWidth);
  margin-left: auto;
  margin-right: auto;
}

.page-location {
  letter-spacing: 0.1rem;
}
.page-location h2:not(.title) {
  color: #009fa8;
  border-left: 1px solid #009fa8;
  padding: 2rem 0 2rem 24px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-location h2:not(.title) {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
.page-location h2:not(.title) + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .page-location h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .page-location h2:not(.title) + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .page-location h2:not(.title) + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .page-location h2:not(.title) + * {
    margin-top: 4vh;
  }
}
.page-location h2:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-location h2:not(.title):not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-location h2:not(.title):not(:first-child) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-location h2:not(.title):not(:first-child) {
    margin-top: 10vw;
  }
}
@media (max-width: 768px) {
  .page-location h2:not(.title) {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: normal;
  }
}
.page-location h2:not(.title) + *:not(.resources),
.page-location h2:not(.title) + h3:not(.title) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-location h2:not(.title) + *:not(.resources),
  .page-location h2:not(.title) + h3:not(.title) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-location h2:not(.title) + *:not(.resources),
  .page-location h2:not(.title) + h3:not(.title) {
    margin-top: 4vw;
  }
}
.page-location h2:not(.title) + .btn-list--left {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-location h2:not(.title) + .btn-list--left {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-location h2:not(.title) + .btn-list--left {
    margin-top: 2vw;
  }
}
.page-location h2:not(.title) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-location h2:not(.title) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-location h2:not(.title) + .resources {
    margin-top: 10vw;
  }
}
.page-location h3:not(.title, .year) {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-location h3:not(.title, .year) {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-location h3:not(.title, .year) {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-location h3:not(.title, .year) {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.page-location h3:not(.title, .year) {
  color: #009fa8;
}
.page-location h3:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-location h3:not(.title, .year):not(:first-child) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-location h3:not(.title, .year):not(:first-child) {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .page-location h3:not(.title, .year):not(:first-child) {
    margin-top: 7vw;
  }
}
.page-location h3:not(.title, .year)::after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 1rem 0 0 0;
  background-color: #009fa8;
}
.page-location h3:not(.title, .year) + *:not(.resources),
.page-location h3:not(.title, .year) + h4:not(.title) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-location h3:not(.title, .year) + *:not(.resources),
  .page-location h3:not(.title, .year) + h4:not(.title) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-location h3:not(.title, .year) + *:not(.resources),
  .page-location h3:not(.title, .year) + h4:not(.title) {
    margin-top: 3vw;
  }
}
.page-location h3:not(.title, .year) + .resources {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-location h3:not(.title, .year) + .resources {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .page-location h3:not(.title, .year) + .resources {
    margin-top: 10vw;
  }
}
.page-location h4:not(.title, .year) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-location h4:not(.title, .year) {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .page-location h4:not(.title, .year) {
    font-size: 1.6rem;
  }
}
.page-location h4:not(.title, .year) {
  color: #009fa8;
}
.page-location h4:not(.title, .year):not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-location h4:not(.title, .year):not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-location h4:not(.title, .year):not(:first-child) {
    margin-top: 5vw;
  }
}
.page-location h4:not(.title, .year) + *:not(.location-block) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-location h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-location h4:not(.title, .year) + *:not(.location-block) {
    margin-top: 1.25vw;
  }
}
.page-location h5:not(.title) .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.page-location h5:not(.title) {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-location h5:not(.title) {
    font-size: 1.4rem;
  }
}
.page-location h5:not(.title):not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-location h5:not(.title):not(:first-child) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .page-location h5:not(.title):not(:first-child) {
    margin-top: 4vw;
  }
}
.page-location h5:not(.title) + * {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .page-location h5:not(.title) + * {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .page-location h5:not(.title) + * {
    margin-top: 1.25vw;
  }
}
.page-location p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .page-location p {
    font-size: 1.4rem;
  }
}
.page-location .article-header {
  max-width: var(--containerWidthLg);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .page-location .article-header {
    margin-top: 84px;
  }
}
@media (max-width: 480px) {
  .page-location .article-header {
    margin-top: 12.5vw;
  }
}
@media (max-width: 768px) {
  .page-location .article-header {
    width: 100%;
    padding: 0;
  }
}
.page-location .article-header h1 {
  text-align: center;
}
.page-location .article-header .logo {
  display: block;
  width: auto;
  height: 40px;
  padding: 0 !important;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .page-location .article-header .logo {
    height: 32px;
  }
}
.page-location .article-header .logo[src*="logo_lemalloy.svg"] {
  aspect-ratio: 222/32;
  height: 26px;
}
@media (max-width: 480px) {
  .page-location .article-header .logo[src*="logo_lemalloy.svg"] {
    height: 18px;
  }
}
.page-location .article-header .logo[src*="logo_lemalloy.svg"] + .name {
  margin-top: 8px;
}
.page-location .article-header .logo[src*="logo_iupital.svg"] {
  aspect-ratio: 300/87;
}
.page-location .article-header .logo[src*="logo_reny.svg"] {
  aspect-ratio: 300/111;
}
.page-location .article-header .logo[src*="logo_iupiace.svg"] {
  aspect-ratio: 300/83;
}
.page-location .article-header .text {
  color: #627a86;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .page-location .article-header .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-location .article-header .text {
    font-size: 1.6rem;
  }
}
.page-location .article-header .text span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #627a86;
}
@media (max-width: 768px) {
  .page-location .article-header .text span {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
.page-location .article-header .text {
  font-weight: 700;
}
.page-location .article-header + .grid-anchor--product {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-location .article-header + .grid-anchor--product {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-location .article-header + .grid-anchor--product {
    margin-top: 8vw;
  }
}
.page-location .article-header + .grid-anchor--product + * {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-location .article-header + .grid-anchor--product + * {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-location .article-header + .grid-anchor--product + * {
    margin-top: 6vw;
  }
}
.page-location .article-header h1.title-tech {
  font-size: 3rem;
  line-height: 4.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: bold;
}
.page-location .article-header h1.title-tech .text {
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.page-location .article-header .categories {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .page-location .article-header .categories {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .page-location .article-header .categories {
    gap: 3vw 2vw;
  }
}
@media (max-width: 480px) {
  .page-location .article-header .categories {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-location .article-header .categories .category {
  padding: 0 24px;
}
.page-location .article-header .name {
  display: block;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-location .article-header .name {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-location .article-header .name {
    font-size: 2.2rem;
  }
}
.page-location .article-header .name {
  font-weight: 700;
}
.page-location .date:first-child {
  text-align: right;
  display: block;
}
.page-location .date:first-child + section:not(:first-child),
.page-location .date:first-child + h2:not(.title) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .page-location .date:first-child + section:not(:first-child),
  .page-location .date:first-child + h2:not(.title) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .page-location .date:first-child + section:not(:first-child),
  .page-location .date:first-child + h2:not(.title) {
    margin-top: 0vw;
  }
}
.page-location {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-location {
    padding: 0 20px;
  }
}
.page-location {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-location {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-location {
    margin-top: 5vw;
  }
}
.page-location h3:not(:first-child) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-location h3:not(:first-child) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-location h3:not(:first-child) {
    margin-top: 8vw;
  }
}
.page-location h3 + h4.title:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-location h3 + h4.title:not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .page-location h3 + h4.title:not(:first-child) {
    margin-top: 5vw;
  }
}
.page-location h4.title {
  font-weight: normal;
  color: #009fa8;
  font-size: 2rem;
}
.page-location h4.title span {
  color: #009fa8;
}
@media (max-width: 768px) {
  .page-location h4.title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .page-location h4.title {
    font-size: 1.6rem;
  }
}
.page-location h4.title:not(:first-child) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .page-location h4.title:not(:first-child) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .page-location h4.title:not(:first-child) {
    margin-top: 8vw;
  }
}
.page-location h4.title + .location-block:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-location h4.title + .location-block:not(:first-child) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .page-location h4.title + .location-block:not(:first-child) {
    margin-top: 3vw;
  }
}
.page-location h4.title:has(.icon--category) span {
  display: inline;
  margin-right: 16px;
}

.block--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.block--full > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .block--full > * {
    padding: 0 20px;
  }
}
.block--full:has(.location-block) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .block--full:has(.location-block) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .block--full:has(.location-block) {
    margin-top: 8vw;
  }
}
.block--full:has(.location-block) {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .block--full:has(.location-block) {
    padding-top: 47px;
    padding-bottom: 47px;
  }
}
@media (max-width: 480px) {
  .block--full:has(.location-block) {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }
}

.block--full-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.block--full-bg > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .block--full-bg > * {
    padding: 0 20px;
  }
}
.block--full-bg:has(.location-block) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .block--full-bg:has(.location-block) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .block--full-bg:has(.location-block) {
    margin-top: 8vw;
  }
}
.block--full-bg:has(.location-block) {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .block--full-bg:has(.location-block) {
    padding-top: 47px;
    padding-bottom: 47px;
  }
}
@media (max-width: 480px) {
  .block--full-bg:has(.location-block) {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }
}
.block--full-bg {
  background-color: rgb(249.1, 249.1, 249.1);
}

.block--thumnail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 480px) {
  .block--thumnail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.block--thumnail img {
  width: 220px;
  height: 160px;
  border: 1px solid #d2d2d2;
}
@media (max-width: 480px) {
  .block--thumnail img {
    width: 100%;
    height: auto;
  }
}
.block--thumnail + .btn-list--center {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .block--thumnail + .btn-list--center {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .block--thumnail + .btn-list--center {
    margin-top: 5vw;
  }
}

.block--media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .block--media {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .block--media {
    margin-top: 6vw;
  }
}
@media (max-width: 480px) {
  .block--media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.block--media:has(.media--right, .media--left) {
  display: block;
}
@media (max-width: 768px) {
  .block--media:has(.media--right, .media--left) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.block--media:has(.media--right, .media--left) .text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.block--media:has(.media--right, .media--left) .media--right {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .block--media:has(.media--right, .media--left) .media--right {
    max-width: 480px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .block--media:has(.media--right, .media--left) figcaption {
    text-align: center;
  }
}
.block--media:has(.media--right, .media--left)::after {
  content: "";
  display: block;
  clear: both;
}
.block--media > img,
.block--media > figure {
  max-width: 320px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .block--media > img,
  .block--media > figure {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .block--media > img,
  .block--media > figure {
    margin-top: 0vw;
  }
}
@media (max-width: 480px) {
  .block--media > img,
  .block--media > figure {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.block--media > img .img,
.block--media > img img,
.block--media > figure .img,
.block--media > figure img {
  width: auto;
  height: auto;
}
@media (max-width: 480px) {
  .block--media > img .img,
  .block--media > img img,
  .block--media > figure .img,
  .block--media > figure img {
    width: 100%;
  }
}
.block--media > img figcaption,
.block--media > figure figcaption {
  text-align: right;
}
@media (max-width: 480px) {
  .block--media > img figcaption,
  .block--media > figure figcaption {
    text-align: center;
  }
}
.block--media > .text > *:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .block--media > .text > *:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .block--media > .text > *:not(:first-child) {
    margin-top: 2vw;
  }
}
.block--media > .table--lined {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .block--media > .table--lined {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .block--media > .table--lined {
    margin-top: 0vw;
  }
}

.img-polyacetal {
  width: auto;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .img-polyacetal {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .img-polyacetal {
    width: 80%;
    height: auto;
  }
}

.img-reny {
  width: auto;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .img-reny {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .img-reny {
    width: 80%;
    height: auto;
  }
}

.img-iupiace {
  width: auto;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .img-iupiace {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .img-iupiace {
    width: 80%;
    height: auto;
  }
}

/*--------------------------------------------------
info-section(2カラムレイアウト)
--------------------------------------------------*/
.info-section {
  max-width: var(--containerWidthLg);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 768px) {
  .info-section {
    position: static;
  }
}
@media (max-width: 480px) {
  .info-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.info-section > .btn-list--center {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .info-section > .btn-list--center {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .info-section > .btn-list--center {
    margin-top: 5vw;
  }
}

.info-block {
  overflow: hidden;
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media (max-width: 768px) {
  .info-block {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 480px) {
  .info-block {
    display: block;
  }
}
.info-block .title {
  color: #333;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  font-weight: normal;
  border-right: 1px solid #d2d2d2;
}
@media (max-width: 480px) {
  .info-block .title {
    border-right: none;
    font-weight: bold;
  }
}
.info-block .title:after {
  content: "";
  display: block;
  border-right: 1px solid #009fa8;
  height: 22px;
  margin: -22px -1px 0 0;
}
@media (max-width: 480px) {
  .info-block .title:after {
    content: none;
  }
}
.info-block .text {
  line-height: 2.6rem;
}
.info-block .content {
  line-height: 2.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 50px 86px;
}
@media (max-width: 480px) {
  .info-block .content {
    padding: 0 0 20px 0;
    margin-top: 2vw;
  }
}
.info-block .content > *:not(:first-child, .btn-list--center) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .info-block .content > *:not(:first-child, .btn-list--center) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .info-block .content > *:not(:first-child, .btn-list--center) {
    margin-top: 2vw;
  }
}
.info-block .content > .media--center {
  margin-top: 0;
  width: 40%;
}
@media (max-width: 768px) {
  .info-block .content > .media--center {
    width: 60%;
  }
}
.info-block .content > .media--center + *:not(:first-child) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .info-block .content > .media--center + *:not(:first-child) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .info-block .content > .media--center + *:not(:first-child) {
    margin-top: 8vw;
  }
}
.info-block .content-icon {
  line-height: 2.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 0 72px;
}
@media (max-width: 480px) {
  .info-block .content-icon {
    padding: 0 0 20px 0;
  }
}
.info-block.icon-title {
  margin-top: 120px !important;
  grid-template-columns: 200px 1fr;
}
.info-block + .info-block {
  margin-top: 0;
}

.info-block-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-block-header .title span {
  font-size: 4.2rem;
  line-height: 4.2rem;
  color: #627a86;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media (max-width: 768px) {
  .info-block-header .title span {
    font-size: 3.4rem;
  }
}
@media (max-width: 480px) {
  .info-block-header .title span {
    font-size: 2.4rem;
    line-height: 3.8rem;
    letter-spacing: 0.2rem;
  }
}
.info-block-header .title::before {
  content: attr(data-text);
  color: #009fa8;
  font-family: "Roboto", sans-serif;
  display: block;
  font-size: 1.6rem;
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 0 0 11px 0;
}
@media (max-width: 768px) {
  .info-block-header .title::before {
    font-size: 1.4rem;
    padding: 0 0 0.2rem 0;
  }
}
@media (max-width: 480px) {
  .info-block-header .title::before {
    letter-spacing: 0;
  }
}
.info-block-header + .info-block,
.info-block-header + .pdf + .info-block {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .info-block-header + .info-block,
  .info-block-header + .pdf + .info-block {
    margin-top: 40px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .info-block-header + .info-block,
  .info-block-header + .pdf + .info-block {
    margin-top: 34px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .info-block-header + .info-block,
  .info-block-header + .pdf + .info-block {
    margin-top: 5vw;
  }
}
.info-block-header + .card-list,
.info-block-header + .text {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .info-block-header + .card-list,
  .info-block-header + .text {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .info-block-header + .card-list,
  .info-block-header + .text {
    margin-top: 4vw;
  }
}
.info-block-header + .pdf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 36px;
  right: 0;
}
@media (max-width: 768px) {
  .info-block-header + .pdf {
    position: static;
    margin-top: 32px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .info-block-header + .pdf {
    margin-top: 27px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .info-block-header + .pdf {
    margin-top: 4vw;
  }
}
@media (max-width: 480px) {
  .info-block-header + .pdf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.info-block-header + .pdf .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.info-block-header + .pdf .item:after {
  display: block;
  content: "/";
  height: 16px;
  width: 16px;
  font-weight: bold;
  padding: 0 0 0 10px;
}
@media (max-width: 480px) {
  .info-block-header + .pdf .item:after {
    display: none;
  }
}
.info-block-header + .pdf .item:last-child:after {
  display: none;
}
.info-block-header + .pdf .item a {
  color: #000;
  display: block;
  position: relative;
  letter-spacing: 0.1rem;
  font-weight: bold;
  background: url(../images/common/icon_pdf.svg) no-repeat left center;
  background-size: 16px;
  padding: 0 0 0 20px;
  margin-left: 8px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .info-block-header + .pdf .item a {
    border: 1px solid #009fa8;
    width: 100%;
    padding: 10px 10px 10px 32px;
    background-position: 10px center;
    background-color: rgba(0, 159, 168, 0.08);
    text-decoration: none;
    margin-left: 0;
  }
}
.info-block-header + .pdf .item a:after {
  content: " ";
  display: block;
  height: 1px;
  width: calc(100% - 20px);
  background: #000;
  position: absolute;
  bottom: -2px;
  right: 0;
}
@media (max-width: 480px) {
  .info-block-header + .pdf .item a:after {
    display: none;
  }
}
.info-block-header + .pdf .item a:focus-visible {
  color: rgb(0, 91.425, 96.6);
  text-decoration: none;
}
@media (max-width: 480px) {
  .info-block-header + .pdf .item a:focus-visible {
    background-color: rgba(0, 159, 168, 0.3);
  }
}
.info-block-header + .pdf .item a:focus-visible:after {
  background: rgb(0, 91.425, 96.6);
  -webkit-animation: pdf-hover 0.3s;
          animation: pdf-hover 0.3s;
}
@media (any-hover: hover) {
  .info-block-header + .pdf .item a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 480px) {
  .info-block-header + .pdf .item a:hover {
    background-color: rgba(0, 159, 168, 0.3);
  }
}
@media (any-hover: hover) {
  .info-block-header + .pdf .item a:hover:after {
    background: rgb(0, 91.425, 96.6);
    -webkit-animation: pdf-hover 0.3s;
            animation: pdf-hover 0.3s;
  }
}

@-webkit-keyframes pdf-hover {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes pdf-hover {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
html[lang=en] .info-block-header .title span {
  letter-spacing: 0;
}

/*--------------------------------------------------
location(拠点一覧)
--------------------------------------------------*/
.location-block {
  gap: 24px 24px;
}
@media (max-width: 768px) {
  .location-block {
    gap: 20px 20px;
  }
}
@media (max-width: 480px) {
  .location-block {
    gap: 3vw 3vw;
  }
}
.location-block {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .location-block {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .location-block {
    margin-top: 3vw;
  }
}
.location-block:not(:first-child) {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .location-block:not(:first-child) {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .location-block:not(:first-child) {
    margin-top: 8vw;
  }
}
.location-block:has(.map) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
}
@media (max-width: 768px) {
  .location-block:has(.map) {
    grid-template-columns: minmax(0, 1fr);
  }
}
.location-block .info .title {
  font-size: 2rem;
  font-weight: bold;
  color: #627a86;
}
@media (max-width: 768px) {
  .location-block .info .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .location-block .info .title {
    font-size: 1.6rem;
  }
}
.location-block .info .title + *:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .location-block .info .title + *:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .location-block .info .title + *:not(:first-child) {
    margin-top: 2vw;
  }
}
.location-block .info > *:not(:first-child) {
  margin-top: 8px;
}
.location-block .info > *:not(:first-child).tel + .fax {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .location-block .info > *:not(:first-child).tel + .fax {
    margin-top: 0;
  }
}
.location-block .info .link {
  display: inline-block;
  background-size: 1.6rem;
  padding: 0 2.5rem 0 0;
}
@media (max-width: 480px) {
  .location-block .info .link {
    background-size: 1.4rem;
    padding: 0 2rem 0 0;
  }
}
.location-block .media--map {
  aspect-ratio: 3/2;
  max-width: 400px;
}
@media (max-width: 768px) {
  .location-block .media--map {
    aspect-ratio: auto;
    width: 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------
アンカーリンク
--------------------------------------------------*/
.grid-anchor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 768px) {
  .grid-anchor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-anchor:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .grid-anchor:not(:first-child) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .grid-anchor:not(:first-child) {
    margin-top: 3vw;
  }
}
.grid-anchor .btn--anchor img {
  width: 120px;
  height: auto;
}
.grid-anchor .btn--anchor:nth-child(2) img {
  width: 96px;
}
.grid-anchor .btn--anchor:nth-child(4) img {
  padding-top: 10px;
}
@media (max-width: 480px) {
  .grid-anchor .btn--anchor {
    padding: 12px;
    background: #fff url(./../images/common/icon_arrow_bottom.svg) no-repeat right 6px center;
    background-size: 16px;
  }
  .grid-anchor .btn--anchor img {
    width: 72px;
  }
  .grid-anchor .btn--anchor:nth-child(2) img {
    width: 56px;
  }
  .grid-anchor .btn--anchor:nth-child(4) img {
    padding-top: 6px;
  }
}
.grid-anchor + .spec-block,
.grid-anchor + .spec-block:has(.icon-list) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .grid-anchor + .spec-block,
  .grid-anchor + .spec-block:has(.icon-list) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .grid-anchor + .spec-block,
  .grid-anchor + .spec-block:has(.icon-list) {
    margin-top: 10vw;
  }
}

.grid-anchor--three {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 768px) {
  .grid-anchor--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-anchor--three:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .grid-anchor--three:not(:first-child) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .grid-anchor--three:not(:first-child) {
    margin-top: 3vw;
  }
}
.grid-anchor--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .grid-anchor--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-anchor--three {
    grid-template-areas: "one two" "three three";
  }
}
.grid-anchor--three > .btn--anchor {
  border: 1px solid #009fa8;
  background-color: #009fa8;
  color: #fff;
}
.grid-anchor--three > .btn--anchor:focus-visible {
  background-color: rgba(0, 159, 168, 0.05);
  border: 1px solid #009fa8;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #009fa8;
}
@media (any-hover: hover) {
  .grid-anchor--three > .btn--anchor:hover {
    background-color: rgba(0, 159, 168, 0.05);
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #009fa8;
  }
}
@media (hover: none) {
  .grid-anchor--three > .btn--anchor:active {
    background-color: rgba(0, 159, 168, 0.05);
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #009fa8;
  }
}
@media (max-width: 480px) {
  .grid-anchor--three > .btn--anchor:first-child {
    grid-area: one;
  }
}
@media (max-width: 480px) {
  .grid-anchor--three > .btn--anchor:nth-child(2) {
    grid-area: two;
  }
}
@media (max-width: 480px) {
  .grid-anchor--three > .btn--anchor:nth-child(3) {
    grid-area: three;
  }
}

.grid-anchor--product {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 768px) {
  .grid-anchor--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-anchor--product {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-anchor--product > .btn--anchor {
  padding-right: 56px;
  padding-left: 32px;
}

/*--------------------------------------------------

--------------------------------------------------*/
.spec-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 120px;
}
.spec-block:has(.icon-list) {
  padding: 32px 32px 16px;
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  margin-top: 32px;
  position: relative;
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) {
    padding: 32px 16px 16px;
  }
}
.spec-block:has(.icon-list) > .spec-block-header {
  position: static;
}
.spec-block:has(.icon-list) > .spec-block-header .title {
  position: absolute;
  top: -20px;
  left: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #fff;
  padding: 0 8px;
}
.spec-block:has(.icon-list) > .spec-block-header .title:has([src*="logo_reny.svg"]) {
  top: -18px;
}
.spec-block:has(.icon-list) > .spec-block-header .title:has([src*="logo_lemalloy.svg"]) {
  top: -12px;
}
.spec-block:has(.icon-list) > .spec-block-header .title img {
  width: auto;
  height: 40px;
}
.spec-block:has(.icon-list) > .spec-block-header .title img[src*="logo_reny.svg"] {
  height: 36px;
}
.spec-block:has(.icon-list) > .spec-block-header .title img[src*="logo_lemalloy.svg"] {
  height: 24px;
}
.spec-block:has(.icon-list) > .spec-block-header .title .name {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .spec-block:has(.icon-list) > .spec-block-header .title .name {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) > .spec-block-header .title .name {
    font-size: 1.6rem;
  }
}
.spec-block:has(.icon-list) > .spec-block-header .description {
  color: #627a86;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .spec-block:has(.icon-list) > .spec-block-header .description {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) > .spec-block-header .description {
    font-size: 1.6rem;
  }
}
.spec-block:has(.icon-list) > .spec-block-header .description {
  font-weight: 700;
}
@media (max-width: 768px) {
  .spec-block:has(.icon-list) > .spec-block-header .description {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.spec-block:has(.icon-list) .logo-box {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-rows: auto auto;
  gap: 0;
  grid-template-areas: "a b" "c c";
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) .logo-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "a" "c" "b";
    padding-bottom: 0;
  }
}
.spec-block:has(.icon-list) .logo-box .spec-desc {
  margin-top: 0;
  grid-area: a;
}
.spec-block:has(.icon-list) .logo-box .btn--primary--small {
  grid-area: b;
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) .logo-box .btn--primary--small {
    margin-top: 32px;
  }
}
.spec-block:has(.icon-list) .logo-box .intro-text {
  font-size: 1.8rem;
  margin-top: 24px;
  grid-area: c;
}
.spec-block:has(.icon-list) .logo-box span {
  color: #009fa8;
  font-weight: 900;
}
.spec-block:has(.icon-list) .icon-list {
  margin-top: 40px;
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) .icon-list {
    margin-top: 16px;
    gap: 16px 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .spec-block:has(.icon-list) .icon-list .spec-icon {
    width: auto;
  }
}
@media (max-width: 480px) {
  .spec-block {
    padding: 24px;
    gap: 24px;
  }
}
.spec-block:has(.kpac-icon) {
  margin-top: 56px;
  padding: 32px 0;
}
@media (max-width: 480px) {
  .spec-block:has(.kpac-icon) {
    padding: 0;
    margin-top: 40px;
  }
}
.spec-block:has(.kpac-icon) .logo-box {
  gap: 56px;
}
@media (max-width: 480px) {
  .spec-block:has(.kpac-icon) .logo-box {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.spec-block:has(.kpac-icon) .logo-box p {
  font-weight: 700;
}
.spec-block:has(.kpac-icon) .logo-box img {
  width: 25%;
}
@media (max-width: 480px) {
  .spec-block:has(.kpac-icon) .logo-box img {
    width: 50%;
  }
}
.spec-block:has(.kpac-icon) .btn-list--right {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .spec-block:has(.kpac-icon) .btn-list--right .btn--external--small {
    width: auto;
  }
}
.spec-block .logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .spec-block .logo-box {
    gap: 24px;
    padding-bottom: 24px;
  }
}
.spec-block .logo-box h3:hover {
  opacity: 0.5;
}
.spec-block .logo-box h3 img {
  width: 200px;
}
@media (max-width: 480px) {
  .spec-block .logo-box h3 img {
    width: 60%;
  }
}
.spec-block .logo-box .adjust-width {
  width: 140px;
}
@media (max-width: 480px) {
  .spec-block .logo-box .adjust-width {
    width: 45%;
  }
}
.spec-block .logo-box .btn--primary--small {
  width: 180px;
  height: 32px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  text-align: center;
  font-size: 1.6rem;
  padding: 2px 20px 4px 16px;
}
@media (max-width: 480px) {
  .spec-block .logo-box .btn--primary--small {
    margin: 0 0 0 auto;
  }
}
.spec-block .spec-desc {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-size: 1.6rem;
  width: 100%;
  margin-top: 40px;
}
.spec-block .spec-desc span {
  color: #009fa8;
  font-weight: 700;
  padding: 0 8px;
}
@media (max-width: 480px) {
  .spec-block .spec-desc {
    margin-top: 0;
  }
}
.spec-block .content-icon {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .spec-block .content-icon {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .spec-block .content-icon {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .spec-block .content-icon {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 0;
  }
}
.spec-block .content-icon .spec-icon {
  width: 100%;
  text-align: center;
  padding: 24px 8px 12px;
  border: 1px solid #009fa8;
  border-radius: 12px;
}
.spec-block .content-icon .spec-icon img {
  width: 88px;
  display: inline-block;
}
.spec-block .content-icon .spec-icon h4 {
  margin-top: 36px;
  color: #009fa8;
}
.spec-block .content-icon .spec-icon p {
  color: #627a86;
  font-size: 1.4rem;
  margin-top: 12px;
}
.spec-block .btn-list--right {
  margin-top: 32px;
}
.spec-block .icon-list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .spec-block .icon-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.spec-block .icon-list .spec-icon {
  text-align: center;
}
.spec-block .icon-list .spec-icon img {
  width: 64px;
  margin: 0 auto;
}
.spec-block .icon-list .spec-icon p {
  font-size: 1.4rem;
  margin-top: 12px;
  border-top: 1px solid #d2d2d2;
  padding-top: 8px;
}
.spec-block .spec-accordion {
  margin-top: 12px;
  text-align: right;
  /* 初期は非表示 */
}
.spec-block .spec-accordion[hidden] {
  display: none;
}
.spec-block .spec-accordion {
  /* ボタンは基本スタイルだけ */
}
.spec-block .spec-accordion button {
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  color: #009fa8;
  text-align: right;
  padding-right: 20px;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
}
.spec-block .spec-accordion button:hover {
  opacity: 0.5;
}
.spec-block .spec-accordion button:after {
  position: absolute;
  content: "";
  width: 13px;
  height: 2px;
  right: 0;
  background-color: #009fa8;
  top: 48%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.spec-block .spec-accordion button:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 2px;
  right: 0;
  background-color: #009fa8;
  top: 48%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.spec-block .spec-accordion .spec-list .spec-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 16px 0;
  border-bottom: 1px solid #d2d2d2;
}
.spec-block .spec-accordion .spec-list .spec-card:last-child {
  border-bottom: none;
}
.spec-block .spec-accordion .spec-list .spec-card img {
  width: 120px;
  padding: 16px;
}
.spec-block .spec-accordion .spec-list .spec-card .spec-list-desc .title {
  color: #009fa8;
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list .spec-card .spec-list-desc .title {
    font-size: 1.6rem;
  }
}
.spec-block .spec-accordion .spec-list .spec-card .spec-list-desc .spec-tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.spec-block .spec-accordion .spec-list .spec-card .spec-list-desc .spec-tag-list li {
  border: 1px solid #009fa8;
  border-radius: 100px;
  color: #009fa8;
  padding: 0px 16px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list .spec-card .spec-list-desc .spec-tag-list li {
    padding: 0 8px;
  }
}
.spec-block .spec-accordion .spec-list .spec-card .spec-list-desc p {
  margin-top: 16px;
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 64px 40px;
  padding: 40px 0;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list:has(.spec-card-col2) {
    gap: 40px;
  }
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 {
  width: calc((100% - 40px) / 2);
  border-bottom: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 {
    width: 100%;
    gap: 16px;
  }
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 img {
  width: 120px;
  height: 120px;
  padding: 16px;
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc {
  text-align: left;
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc .title {
  color: #009fa8;
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc .title {
    font-size: 1.6rem;
  }
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc .spec-tag-list {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc .spec-tag-list {
    margin-top: 8px;
  }
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc .spec-tag-list li {
  border: 1px solid #009fa8;
  border-radius: 100px;
  color: #009fa8;
  padding: 0px 16px;
  font-weight: 600;
}
.spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc p {
  margin-top: 16px;
}
@media (max-width: 480px) {
  .spec-block .spec-accordion .spec-list:has(.spec-card-col2) .spec-card-col2 .spec-list-desc p {
    margin-top: 16px;
  }
}
.spec-block .spec-accordion[hidden] {
  display: none;
}

.kpac-product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.kpac-product .list--square {
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*--------------------------------------------------
ＢＵＴＴＯＮ
--------------------------------------------------*/
.btn--primary {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--primary {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--primary:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--primary:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--primary:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--primary:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--primary:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--primary:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--primary--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--primary--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--primary--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--primary--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--primary--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--primary--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--primary--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--primary--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--primary--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 6px 36px 6px 24px;
}
.btn--return, .btn--return--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--return, .btn--return--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--return:focus-visible, .btn--return--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--return:hover, .btn--return--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--return:active, .btn--return--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--return:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--return--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--return:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--return--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--return:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--return--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--return, .btn--return--small {
  background-image: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  color: #627a86;
}
.btn--return:focus-visible, .btn--return--small:focus-visible {
  background-color: #627a86;
  border: 1px solid #627a86;
  color: #fff;
  border-radius: 30px;
}
@media (any-hover: hover) {
  .btn--return:hover, .btn--return--small:hover {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
@media (hover: none) {
  .btn--return:active, .btn--return--small:active {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
.btn--return--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 2px 30px;
}
.btn--inquiry, .btn--inquiry--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--inquiry, .btn--inquiry--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--inquiry:focus-visible, .btn--inquiry--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--inquiry:hover, .btn--inquiry--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--inquiry:active, .btn--inquiry--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--inquiry--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--inquiry--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--inquiry--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--inquiry, .btn--inquiry--small {
  padding-left: 64px;
}
.btn--inquiry::before, .btn--inquiry--small::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto auto auto 24px;
  background-image: url(./../images/common/icon-inquiry-white.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: left top 52%;
  width: 22px;
  height: 22px;
  display: block;
}
.btn--inquiry:focus-visible::before, .btn--inquiry--small:focus-visible::before {
  background-image: url(./../images/common/icon-inquiry.svg);
}
@media (any-hover: hover) {
  .btn--inquiry:hover::before, .btn--inquiry--small:hover::before {
    background-image: url(./../images/common/icon-inquiry.svg);
  }
}
@media (hover: none) {
  .btn--inquiry:active::before, .btn--inquiry--small:active::before {
    background-image: url(./../images/common/icon-inquiry.svg);
  }
}
.btn--inquiry--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 2px 30px 2px 40px;
}
.btn--inquiry--small::before {
  background-size: 16px 16px;
  margin: auto auto auto 16px;
}
.btn--external, .btn--external--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--external, .btn--external--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--external:focus-visible, .btn--external--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--external:hover, .btn--external--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--external:active, .btn--external--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--external:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--external--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--external:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--external--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--external:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--external--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--external, .btn--external--small {
  padding-left: 64px;
}
.btn--external::before, .btn--external--small::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto auto auto 24px;
  background-image: url(./../images/common/icon-external-white.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: left top 52%;
  width: 22px;
  height: 22px;
  display: block;
}
.btn--external:focus-visible::before, .btn--external--small:focus-visible::before {
  background-image: url(./../images/common/icon-external.svg);
}
@media (any-hover: hover) {
  .btn--external:hover::before, .btn--external--small:hover::before {
    background-image: url(./../images/common/icon-external.svg);
  }
}
@media (hover: none) {
  .btn--external:active::before, .btn--external--small:active::before {
    background-image: url(./../images/common/icon-external.svg);
  }
}
.btn--external--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 6px 30px 6px 40px;
}
.btn--external--small::before {
  background-size: 16px 16px;
  margin: auto auto auto 16px;
}
.btn--copy {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--copy {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--copy:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--copy:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--copy:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--copy:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--copy:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--copy:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--copy {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  background-image: none;
  padding: 0.4rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
}
@media (max-width: 768px) {
  .btn--copy {
    font-size: 1.4rem;
  }
}
.btn--copy.copied {
  background-color: #fff;
  color: #009fa8;
  padding: 0.4rem 2rem 0.4rem 3.6rem;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.btn--copy.copied::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto auto auto 16px;
  display: inline-block;
  width: 0.9em;
  height: 0.45em;
  border-left: 0.225em solid #009fa8;
  border-bottom: 0.225em solid #009fa8;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn--add, .btn--add--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--add, .btn--add--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--add:focus-visible, .btn--add--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--add:hover, .btn--add--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--add:active, .btn--add--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--add:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--add--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--add:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--add--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--add:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--add--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--add, .btn--add--small {
  background-image: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  color: #627a86;
}
.btn--add:focus-visible, .btn--add--small:focus-visible {
  background-color: #627a86;
  border: 1px solid #627a86;
  color: #fff;
  border-radius: 30px;
}
@media (any-hover: hover) {
  .btn--add:hover, .btn--add--small:hover {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
@media (hover: none) {
  .btn--add:active, .btn--add--small:active {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
.btn--add--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 2px 30px;
}
.btn--delete, .btn--delete--small {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--delete, .btn--delete--small {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--delete:focus-visible, .btn--delete--small:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--delete:hover, .btn--delete--small:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--delete:active, .btn--delete--small:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--delete:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--delete--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--delete:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--delete--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--delete:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort), .btn--delete--small:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--delete, .btn--delete--small {
  background-image: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  color: #627a86;
}
.btn--delete:focus-visible, .btn--delete--small:focus-visible {
  background-color: #627a86;
  border: 1px solid #627a86;
  color: #fff;
  border-radius: 30px;
}
@media (any-hover: hover) {
  .btn--delete:hover, .btn--delete--small:hover {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
@media (hover: none) {
  .btn--delete:active, .btn--delete--small:active {
    background-color: #627a86;
    border: 1px solid #627a86;
    color: #fff;
    border-radius: 30px;
  }
}
.btn--delete--small {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 2px 30px;
}
.btn--tab {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--tab {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--tab:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--tab:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--tab:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--tab:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--tab:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--tab:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--tab {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 4px 20px 4px 24px;
  min-width: 160px;
  width: 100%;
  border-radius: 4px;
  color: #009fa8;
  background: #fff;
}
@media (max-width: 768px) {
  .btn--tab {
    padding: 4px;
  }
}
@media (max-width: 480px) {
  .btn--tab {
    padding: 4px 0;
    min-width: 100%;
  }
}
.btn--tab span {
  color: #009fa8;
}
.btn--tab:focus-visible {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.btn--tab:focus-visible span {
  color: #fff;
}
@media (any-hover: hover) {
  .btn--tab:hover {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .btn--tab:hover span {
    color: #fff;
  }
}
@media (hover: none) {
  .btn--tab:active {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .btn--tab:active span {
    color: #fff;
  }
}
.btn--tab.active, .btn--tab[aria-selected=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.btn--tab.active span, .btn--tab[aria-selected=true] span {
  color: #fff;
}
.btn --tab[aria-selected=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.btn--anchor {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .btn--anchor {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.btn--anchor:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .btn--anchor:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .btn--anchor:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.btn--anchor:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .btn--anchor:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .btn--anchor:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.btn--anchor {
  padding: 10px 32px;
  min-width: 100%;
  background: #009fa8 url(./../images/common/icon_arrow_bottom.svg) no-repeat right 12px center;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  background-color: #fff;
  background-size: 24px;
  color: #009fa8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  line-height: 1;
}
.btn--anchor:has(.description) {
  gap: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 36px 10px 16px;
}
.btn--anchor .name {
  color: #009fa8;
  font-weight: 700;
}
.btn--anchor .description {
  color: #627a86;
  font-size: 1.2rem;
}
.btn--anchor:focus-visible {
  background-color: rgba(0, 159, 168, 0.05);
  border: 1px solid #009fa8;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (any-hover: hover) {
  .btn--anchor:hover {
    background-color: rgba(0, 159, 168, 0.05);
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (hover: none) {
  .btn--anchor:active {
    background-color: rgba(0, 159, 168, 0.05);
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.btn-list--center {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .btn-list--center {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--center {
    margin-top: 3vw;
  }
}
.btn-list--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 24px;
}
@media (max-width: 768px) {
  .btn-list--center {
    gap: 10px 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--center {
    gap: 1.5vw 3vw;
  }
}
.btn-list--center > *:not(:first-child, .modal, .modal--small) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .btn-list--center > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .btn-list--center > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0vw;
  }
}
.btn-list--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-list--center:has(> .btn--return, > .btn--return--small) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .btn-list--center:has(> .btn--return, > .btn--return--small) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  .btn-list--center:has(> .btn--return, > .btn--return--small) {
    margin-top: 10vw;
  }
}
.btn-list--left {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .btn-list--left {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--left {
    margin-top: 3vw;
  }
}
.btn-list--left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 24px;
}
@media (max-width: 768px) {
  .btn-list--left {
    gap: 10px 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--left {
    gap: 1.5vw 3vw;
  }
}
.btn-list--left > *:not(:first-child, .modal, .modal--small) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .btn-list--left > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .btn-list--left > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0vw;
  }
}
.btn-list--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btn-list--right {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .btn-list--right {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--right {
    margin-top: 3vw;
  }
}
.btn-list--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 24px;
}
@media (max-width: 768px) {
  .btn-list--right {
    gap: 10px 20px;
  }
}
@media (max-width: 480px) {
  .btn-list--right {
    gap: 1.5vw 3vw;
  }
}
.btn-list--right > *:not(:first-child, .modal, .modal--small) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .btn-list--right > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .btn-list--right > *:not(:first-child, .modal, .modal--small) {
    margin-top: 0vw;
  }
}
.btn-list--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

:root {
  --headerHeightPC: 44px;
  --timelineItemHeight: 140px;
  --timelinePaddingInlinePC: 32px;
  --timelinePaddingInlineTab: 24px;
  --timelinePaddingInlineSP: 4vw;
  --timelineRailWidth: 16px;
  --timelineYearWidth: 132px;
  --timelineProductBgColor01: #ffffff;
  --timelineProductBgColor02: #f6fbfa;
  --timelineProductBgColor03: #ffffff;
  --timelineYearBgColor: #009fa8;
}

/*--------------------------------------------------
BG
--------------------------------------------------*/
:where(.bg--primary-light > *:not(:first-child)) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  :where(.bg--primary-light > *:not(:first-child)) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  :where(.bg--primary-light > *:not(:first-child)) {
    margin-top: 3vw;
  }
}

:where(.bg--primary-light:not(:first-child)) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  :where(.bg--primary-light:not(:first-child)) {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  :where(.bg--primary-light:not(:first-child)) {
    margin-top: 4vw;
  }
}

.bg--primary-light {
  padding: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .bg--primary-light {
    padding: 24px 16px;
  }
}
.bg--primary-light .title {
  color: #009fa8;
}
.bg--primary-light .title + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .bg--primary-light .title + * {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .bg--primary-light .title + * {
    margin-top: 2vw;
  }
}
.bg--primary-light {
  background-color: rgba(0, 159, 168, 0.05);
  border: 1px solid rgba(0, 159, 168, 0.2);
}
.bg--primary-light .title {
  color: #009fa8;
}
.bg--primary-light > .list--step {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .bg--primary-light > .list--step {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .bg--primary-light > .list--step {
    margin-top: 5vw;
  }
}
.bg--primary-light > .list--step + .list--square {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .bg--primary-light > .list--step + .list--square {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .bg--primary-light > .list--step + .list--square {
    margin-top: 5vw;
  }
}
.bg--message {
  padding: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .bg--message {
    padding: 24px 16px;
  }
}
.bg--message .title {
  color: #009fa8;
}
.bg--message .title + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .bg--message .title + * {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .bg--message .title + * {
    margin-top: 2vw;
  }
}
.bg--message {
  border: 2px solid #009fa8;
  background-color: #fff;
  color: #009fa8;
  padding: 80px 54px;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.bg--line {
  padding: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .bg--line {
    padding: 24px 16px;
  }
}
.bg--line .title {
  color: #009fa8;
}
.bg--line .title + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .bg--line .title + * {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .bg--line .title + * {
    margin-top: 2vw;
  }
}
.bg--line {
  border: 2px solid #009fa8;
  background-color: #fff;
  color: #009fa8;
  padding: 24px;
}
.bg--error {
  border: 1px solid #db0034;
  padding: 10px 10px 10px 36px;
  color: #db0034;
  text-indent: -0.5em;
}
.bg--error::before {
  content: "※";
  display: inline-block;
}
.bg--error + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .bg--error + * {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .bg--error + * {
    margin-top: 2vw;
  }
}

/*--------------------------------------------------
CARD
--------------------------------------------------*/
.card-list:has(.card--horizontal) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px 12px;
}
@media (max-width: 768px) {
  .card-list:has(.card--horizontal) {
    gap: 10px 10px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--horizontal) {
    gap: 1.5vw 1.5vw;
  }
}
.card-list:has(.card--horizontal) {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .card-list:has(.card--horizontal) {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--horizontal) {
    margin-top: 4.5vw;
  }
}

.card--horizontal {
  border: 1px solid #009fa8;
  color: #009fa8;
  border-radius: 6px;
  padding: 2rem;
  background-position: left 1.2rem top 2.4rem;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}
@media (max-width: 768px) {
  .card--horizontal {
    padding: 1.4rem 2rem;
  }
}
.card--horizontal > * {
  color: #009fa8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.card--horizontal > time {
  margin-right: 1em;
}
.card--horizontal > time::after {
  width: 1px;
  height: 75%;
  display: block;
  position: absolute;
  content: "";
  margin: auto 0 auto auto;
  inset: 0;
  right: -1em;
  background-color: #009fa8;
}
.card--horizontal > time + * {
  margin-right: 0;
}
.card--horizontal[href*=".pdf"] {
  padding: 2rem 2rem 2rem 4rem;
  background-position: left 1.2rem center;
}
.card--horizontal:focus-visible {
  color: #fff;
  border: 1px solid #009fa8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #009fa8;
}
.card--horizontal:focus-visible > * {
  color: #fff;
}
.card--horizontal:focus-visible[href*=".pdf"] {
  background: #009fa8 url(./../images/common/icon_pdf_white.svg) no-repeat left 1.2rem center;
  background-size: 1.8rem;
}
@media (any-hover: hover) {
  .card--horizontal:hover {
    color: #fff;
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #009fa8;
  }
  .card--horizontal:hover > * {
    color: #fff;
  }
  .card--horizontal:hover[href*=".pdf"] {
    background: #009fa8 url(./../images/common/icon_pdf_white.svg) no-repeat left 1.2rem center;
    background-size: 1.8rem;
  }
}
@media (hover: none) {
  .card--horizontal:active {
    color: #fff;
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #009fa8;
  }
  .card--horizontal:active > * {
    color: #fff;
  }
  .card--horizontal:active[href*=".pdf"] {
    background: #009fa8 url(./../images/common/icon_pdf_white.svg) no-repeat left 1.2rem center;
    background-size: 1.8rem;
  }
}
.card--horizontal:nth-child(even) {
  background-color: rgba(0, 159, 168, 0.1);
  background-size: 1.8rem;
  border: 1px solid #009fa8;
}
.card--horizontal:nth-child(even):focus-visible {
  color: #fff;
  border: 1px solid #009fa8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #009fa8;
}
@media (any-hover: hover) {
  .card--horizontal:nth-child(even):hover {
    color: #fff;
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #009fa8;
  }
}
@media (hover: none) {
  .card--horizontal:nth-child(even):active {
    color: #fff;
    border: 1px solid #009fa8;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #009fa8;
  }
}

.card-list:has(.card--media) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .card-list:has(.card--media) {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--media) {
    gap: 2vw 1.5vw;
  }
}
@media (max-width: 768px) {
  .card-list:has(.card--media) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card--media {
  display: block;
  position: relative;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-radius: 6px;
}
.card--media figure {
  border-radius: 6px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.card--media figure:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--media figure:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--media figure:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.card--media figure {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 4/3;
  width: 100%;
}
.card--media figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 6px;
}
.card--media figure .logo {
  display: block;
  width: 160px;
  height: 40px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.card--media figure .text {
  margin-top: 8px;
}
.card--media:focus-visible figure {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--media:hover figure {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--media:active figure {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}

.card-list:has(.card--vertical) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical) {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--vertical) {
    gap: 2vw 1.5vw;
  }
}
.card-list:has(.card--vertical) {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical) {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--vertical) {
    margin-top: 4.5vw;
  }
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card-list02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .card-list02 {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .card-list02 {
    gap: 2vw 1.5vw;
  }
}
.card-list02 {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .card-list02 {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .card-list02 {
    margin-top: 4.5vw;
  }
}
.card-list02 {
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 24px 48px;
  margin-top: 0;
}
.card-list03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .card-list03 {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .card-list03 {
    gap: 2vw 1.5vw;
  }
}
.card-list03 {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .card-list03 {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .card-list03 {
    margin-top: 4.5vw;
  }
}
.card-list03 {
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 32px;
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.card-list:has(.card--vertical--media) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical--media) {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--vertical--media) {
    gap: 2vw 1.5vw;
  }
}
.card-list:has(.card--vertical--media) {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical--media) {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--vertical--media) {
    margin-top: 4.5vw;
  }
}
.card-list:has(.card--vertical--media) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .card-list:has(.card--vertical--media) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card--vertical {
  border-radius: 6px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.card--vertical:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--vertical:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--vertical:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.card--vertical {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 108px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
.card--vertical figure {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 3/2;
}
.card--vertical figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--vertical figure + .title {
  border-top: 1px solid #f1f1f1;
}
.card--vertical .title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .card--vertical .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .card--vertical .title {
    font-size: 1.6rem;
  }
}
.card--vertical .title {
  text-align: center;
  color: #627a86;
  font-weight: 700;
  padding: 42px 0 28px;
  border-bottom: 1px solid #f1f1f1;
  display: grid;
  place-items: center;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  place-content: center;
}
.card--vertical .title span {
  color: #627a86;
  font-weight: 700;
}
.card--vertical .title img {
  width: 140px;
  height: 30px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.card--vertical p {
  padding: 16px 0 24px;
  font-size: 1.4rem;
  line-height: 1.45em;
  word-break: break-all;
  color: rgb(127.5, 127.5, 127.5);
}
@media (max-width: 768px) {
  .card--vertical {
    grid-template-rows: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .card--vertical figure {
    height: 120px;
    aspect-ratio: 5/4;
    border-radius: 6px 0 0 6px;
  }
}
@media (max-width: 480px) {
  .card--vertical figure {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .card--vertical figure img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .card--vertical figure + .title {
    border-left: 1px solid #f1f1f1;
  }
}
@media (max-width: 768px) {
  .card--vertical .title {
    border-top: none;
    border-bottom: none;
    font-weight: 500;
    padding: 0 16px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .card--vertical p {
    display: none;
  }
}
@media (max-width: 768px) {
  .card--vertical .title {
    min-height: 110px;
  }
}
.card--vertical02 {
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .card--vertical02 {
    grid-template-rows: minmax(0, 1fr);
  }
}
.card--vertical02 img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
  padding: 8px;
}
.card--vertical03 {
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .card--vertical03 {
    grid-template-rows: minmax(0, 1fr);
  }
}
.card--vertical03 img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
  padding: 4px;
}

.card--vertical--media {
  border-radius: 6px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.card--vertical--media:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--vertical--media:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--vertical--media:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.card--vertical--media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 108px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
.card--vertical--media figure {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 3/2;
}
.card--vertical--media figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--vertical--media figure + .title {
  border-top: 1px solid #f1f1f1;
}
.card--vertical--media .title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .card--vertical--media .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .card--vertical--media .title {
    font-size: 1.6rem;
  }
}
.card--vertical--media .title {
  text-align: center;
  color: #627a86;
  font-weight: 700;
  padding: 42px 0 28px;
  border-bottom: 1px solid #f1f1f1;
  display: grid;
  place-items: center;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  place-content: center;
}
.card--vertical--media .title span {
  color: #627a86;
  font-weight: 700;
}
.card--vertical--media .title img {
  width: 140px;
  height: 30px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.card--vertical--media p {
  padding: 16px 0 24px;
  font-size: 1.4rem;
  line-height: 1.45em;
  word-break: break-all;
  color: rgb(127.5, 127.5, 127.5);
}
@media (max-width: 768px) {
  .card--vertical--media {
    grid-template-rows: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .card--vertical--media figure {
    height: 120px;
    aspect-ratio: 5/4;
    border-radius: 6px 0 0 6px;
  }
}
@media (max-width: 480px) {
  .card--vertical--media figure {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .card--vertical--media figure img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .card--vertical--media figure + .title {
    border-left: 1px solid #f1f1f1;
  }
}
@media (max-width: 768px) {
  .card--vertical--media .title {
    border-top: none;
    border-bottom: none;
    font-weight: 500;
    padding: 0 16px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .card--vertical--media p {
    display: none;
  }
}
.card--vertical--media {
  padding: 0;
  grid-template-rows: auto minmax(64px, auto) 1fr;
}
@media (max-width: 768px) {
  .card--vertical--media {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
  }
}
.card--vertical--media .title {
  padding: 0;
}
.card--vertical--media p {
  padding: 16px;
}
@media (max-width: 768px) {
  .card--vertical--media p {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .card--vertical--media {
    text-align: center;
  }
}

.card--vertical--media02 {
  border-radius: 6px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.card--vertical--media02:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--vertical--media02:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--vertical--media02:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.card--vertical--media02 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 108px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
.card--vertical--media02 figure {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 3/2;
}
.card--vertical--media02 figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--vertical--media02 figure + .title {
  border-top: 1px solid #f1f1f1;
}
.card--vertical--media02 .title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .card--vertical--media02 .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .card--vertical--media02 .title {
    font-size: 1.6rem;
  }
}
.card--vertical--media02 .title {
  text-align: center;
  color: #627a86;
  font-weight: 700;
  padding: 42px 0 28px;
  border-bottom: 1px solid #f1f1f1;
  display: grid;
  place-items: center;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  place-content: center;
}
.card--vertical--media02 .title span {
  color: #627a86;
  font-weight: 700;
}
.card--vertical--media02 .title img {
  width: 140px;
  height: 30px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.card--vertical--media02 p {
  padding: 16px 0 24px;
  font-size: 1.4rem;
  line-height: 1.45em;
  word-break: break-all;
  color: rgb(127.5, 127.5, 127.5);
}
.card--vertical--media02 {
  padding: 0;
  grid-template-rows: auto minmax(64px, auto) 1fr;
}
.card--vertical--media02 .title {
  padding: 0;
  font-size: 1.6rem;
}
.card--vertical--media02 p {
  padding: 16px;
}

.card-list:has(.card--plain) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 12px;
}
@media (max-width: 768px) {
  .card-list:has(.card--plain) {
    gap: 10px 10px;
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--plain) {
    gap: 1.5vw 1.5vw;
  }
}
@media (max-width: 768px) {
  .card-list:has(.card--plain) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .card-list:has(.card--plain) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.card--plain {
  border-radius: 6px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.card--plain:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .card--plain:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .card--plain:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.card--plain {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 8px;
  width: 100%;
  height: 80px;
  color: #627a86;
  letter-spacing: 0;
  text-align: center;
}
.card--plain .name {
  font-size: 2rem;
  font-weight: 700;
}
.card--plain img {
  max-width: 200px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
}
.card--plain img[src*="logo_reny.svg"] {
  height: 28px;
}
.card--plain img[src*="logo_iupital.svg"], .card--plain img[src*="logo_iupiace.svg"] {
  height: 32px;
}
.card--plain img[src*="logo_lemalloy.svg"] {
  height: 28px;
}
.card--plain:has(.name) {
  height: auto;
  padding: 16px 0;
}
.card--plain:has(.name) span:not(.name) {
  font-size: 1.4rem;
  line-height: 1.45em;
  word-break: break-all;
  color: rgb(127.5, 127.5, 127.5);
}

/*--------------------------------------------------
IMG
--------------------------------------------------*/
iframe,
video,
.img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

.img {
  height: auto;
}

@media (max-width: 768px) {
  iframe {
    max-height: 50vh;
  }
}

.media--left {
  float: left;
  margin-right: 16px;
  margin-bottom: 16px;
}

.media--right {
  float: right;
  margin-left: 16px;
  margin-bottom: 16px;
}

.media--center {
  margin-right: auto;
  margin-left: auto;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .media--center {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .media--center {
    margin-top: 7vw;
  }
}
.media--center {
  text-align: center;
}
.media--center iframe,
.media--center video,
.media--center img {
  margin: 0 auto;
}

.media--full {
  width: 100%;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .media--full {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .media--full {
    margin-top: 7vw;
  }
}
.media--full iframe,
.media--full video,
.media--full img {
  width: 100%;
}

/*-----------------------------------------------------
Modal
------------------------------------------------------*/
.modal {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
}

.modal-content {
  position: relative;
  z-index: 1;
  max-height: 80vh;
  width: 100%;
  background-color: rgba(0, 159, 168, 0.5);
  padding: 24px 32px 16px;
  border-radius: 6px;
}
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 20px 16px;
  }
}
.modal-content .inner {
  max-height: calc(80vh - 108px);
  overflow-y: auto;
  background-color: #fff;
  padding: 40px;
}
@media (max-width: 480px) {
  .modal-content .inner {
    padding: 20px;
  }
}
.modal-content .inner > *:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .modal-content .inner > *:not(:first-child) {
    margin-top: 17px;
  }
}
@media (max-width: 480px) {
  .modal-content .inner > *:not(:first-child) {
    margin-top: 2.5vw;
  }
}
.modal-content > *:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .modal-content > *:not(:first-child) {
    margin-top: 17px;
  }
}
@media (max-width: 480px) {
  .modal-content > *:not(:first-child) {
    margin-top: 2.5vw;
  }
}

.modal--small {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  max-inline-size: 800px;
  inline-size: calc(100% - 36px);
}
.modal--small .modal-content .inner > * {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------
ICON
--------------------------------------------------*/
.icon--required {
  border-radius: 4px;
  font-size: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  font-weight: normal;
  letter-spacing: 0.2rem;
  color: #db0034;
  padding: 2px 6px;
  border: 1px solid #db0034;
}
.icon--new {
  border-radius: 4px;
  font-size: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  display: inline-block;
  background-color: #db0034;
  color: #fff;
  border-radius: 2px;
  font-weight: bold;
  font-family: "Barlow", sans-serif;
  padding: 0.2rem 0.4rem 0;
}
.icon--category {
  border-radius: 4px;
  font-size: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #009fa8;
  padding: 2px 6px;
  border: 1px solid #009fa8;
  background-color: #fff;
}

/*--------------------------------------------------
TAB
--------------------------------------------------*/
.tabs .tablist {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .tabs .tablist {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .tabs .tablist {
    margin-top: 3vw;
  }
}
.tabs .tablist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.tabs .tablist:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .tabs .tablist:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .tabs .tablist:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 1000px) {
  .tabs .tablist {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .tabs .tablist {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.tabs .panel {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .tabs .panel {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .tabs .panel {
    margin-top: 6vw;
  }
}
.tabs .tabpanel {
  display: none;
  margin-top: 20px;
}
.tabs .tabpanel.active {
  display: block;
}

/*--------------------------------------------------
Iframe
--------------------------------------------------*/
.technical-data-seat {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .technical-data-seat {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .technical-data-seat {
    margin-top: 4vw;
  }
}

#Tab0SrchPane,
#PBContent {
  width: 100%;
}

.yellow-card-search {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  margin: auto;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .yellow-card-search {
    margin-top: 27px;
  }
}
@media (max-width: 480px) {
  .yellow-card-search {
    margin-top: 4vw;
  }
}
.yellow-card-search {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .yellow-card-search {
    height: 576px;
  }
}

/*--------------------------------------------------
Timeline(製品沿革)
--------------------------------------------------*/
.timeline {
  position: relative;
  padding-top: calc(var(--globalHeaderHeight) + 20px);
}
.timeline .header {
  position: absolute;
  top: 0;
  -webkit-transform: none;
          transform: none;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  z-index: 2;
}
.timeline .header.fixed {
  position: fixed;
  top: calc(var(--globalHeaderHeight) + 20px);
  z-index: 10;
  width: calc(100% - 80px);
  max-width: calc(var(--containerWidthLg) - 80px);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(transparent), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor03)), to(var(--timelineProductBgColor03)));
  background: -webkit-linear-gradient(left, transparent 0, transparent calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
  background: linear-gradient(to right, transparent 0, transparent calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
}
.timeline .header.fixed::before {
  position: fixed;
  content: "";
  width: 100%;
  height: calc(var(--globalHeaderHeight) + 20px);
  z-index: 0;
  background-color: #fff;
  top: 0;
  left: 0;
}
.timeline .header.end {
  position: absolute;
  top: var(--timelineHeaderEndTop);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(transparent), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor03)), to(var(--timelineProductBgColor03)));
  background: -webkit-linear-gradient(left, transparent 0, transparent calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
  background: linear-gradient(to right, transparent 0, transparent calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth) + var(--timelineRailWidth) * 1.75 / 2), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
}

.timeline {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .timeline {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .timeline {
    margin-top: 5vw;
  }
}
.timeline {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, var(--timelineYearBgColor)), color-stop(var(--timelineYearBgColor)), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor01)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor02)), color-stop(var(--timelineProductBgColor03)), to(var(--timelineProductBgColor03)));
  background: -webkit-linear-gradient(left, var(--timelineYearBgColor) 0, var(--timelineYearBgColor) calc(var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
  background: linear-gradient(to right, var(--timelineYearBgColor) 0, var(--timelineYearBgColor) calc(var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor01) calc(var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor01) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) calc((100% - (var(--timelineYearWidth) + var(--timelineRailWidth))) / 3 * 2 + var(--timelineYearWidth) + var(--timelineRailWidth)), var(--timelineProductBgColor03) 100%);
}
@media (max-width: 768px) {
  .timeline {
    background: -webkit-linear-gradient(left, var(--timelineYearBgColor) 0, var(--timelineYearBgColor) calc(80px + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc(80px + var(--timelineRailWidth)), var(--timelineProductBgColor02) 100%);
    background: linear-gradient(to right, var(--timelineYearBgColor) 0, var(--timelineYearBgColor) calc(80px + var(--timelineRailWidth)), var(--timelineProductBgColor02) calc(80px + var(--timelineRailWidth)), var(--timelineProductBgColor02) 100%);
  }
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--timelineYearWidth) + var(--timelineRailWidth));
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#00575c), color-stop(50%, #009fa8), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #00575c, #009fa8 50%, rgba(255, 255, 255, 0));
  background: linear-gradient(180deg, #00575c, #009fa8 50%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .timeline::before {
    width: calc(80px + var(--timelineRailWidth));
  }
}
.timeline .header {
  display: grid;
  grid-template-columns: calc(var(--timelineYearWidth) + var(--timelineRailWidth)) 1fr;
}
@media (max-width: 768px) {
  .timeline .header {
    grid-template-columns: calc(80px + var(--timelineRailWidth)) 1fr;
  }
}
.timeline .header {
  background-color: transparent;
  z-index: 3;
  position: relative;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
@media (max-width: 768px) {
  .timeline .header {
    display: none;
  }
}
.timeline .header-year {
  padding: 16px 44px;
}
@media (max-width: 768px) {
  .timeline .header-year {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 37px;
    padding-right: 37px;
  }
}
@media (max-width: 480px) {
  .timeline .header-year {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}
.timeline .header-product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.timeline .header-product .name {
  width: auto;
  text-align: center;
  padding: 16px 44px;
}
@media (max-width: 768px) {
  .timeline .header-product .name {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 37px;
    padding-right: 37px;
  }
}
@media (max-width: 480px) {
  .timeline .header-product .name {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}
.timeline .header-product .name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .timeline .header-product .name {
    font-size: 1.6rem;
  }
}
.timeline .header-product .name {
  color: #009fa8;
  font-weight: 700;
  display: grid;
  place-content: center;
}
.timeline .header-product .name:nth-child(even) {
  background-color: var(--timelineProductBgColor);
}
.timeline .item {
  position: relative;
  display: grid;
  grid-template-columns: calc(var(--timelineYearWidth) + var(--timelineRailWidth)) 1fr;
}
@media (max-width: 768px) {
  .timeline .item {
    grid-template-columns: calc(80px + var(--timelineRailWidth)) 1fr;
  }
}
.timeline .item {
  min-height: 118px;
}
.timeline .item.highlight .year::after {
  width: calc(var(--timelineRailWidth) * 1.75);
  background-image: -webkit-radial-gradient(circle, #8fc31f 0%, #8fc31f 50%, rgb(136, 155.5, 215) 52%, #fff 54%, #fff 100%);
  background-image: radial-gradient(circle, #8fc31f 0%, #8fc31f 50%, rgb(136, 155.5, 215) 52%, #fff 54%, #fff 100%);
  border: 2px solid #8fc31f;
  top: calc(28px - var(--timelineRailWidth) / 2 * 1.75);
  right: calc(var(--timelineRailWidth) * 1.75 / 2 * -1);
}
@media (max-width: 480px) {
  .timeline .item.highlight .year::after {
    top: calc(10px + 3vw - var(--timelineRailWidth) / 2 * 1.75);
  }
}
.timeline .item.highlight .year img {
  height: 24px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .timeline .item.highlight .year img {
    margin-top: 2px;
  }
}
.timeline .item.highlight .text--bold {
  color: rgb(65.6853448276, 81.7715517241, 89.8146551724);
  font-size: 2rem;
}
@media (max-width: 768px) {
  .timeline .item.highlight .text--bold {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .timeline .item.highlight .text--bold {
    font-size: 1.6rem;
  }
}
.timeline .item p {
  color: #627a86;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .timeline .item p {
    text-align: left;
  }
}
.timeline .item p + p {
  margin-top: 8px;
}
.timeline .year {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: calc(var(--timelineRailWidth) * 1.75 / 2);
}
@media (max-width: 768px) {
  .timeline .year {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: calc(var(--timelineRailWidth) * 1.75 / 2);
  }
}
@media (max-width: 480px) {
  .timeline .year {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-right: calc(var(--timelineRailWidth) * 1.75 / 2);
  }
}
.timeline .year {
  color: #009fa8;
  position: relative;
}
.timeline .year::after {
  content: "";
  width: var(--timelineRailWidth);
  aspect-ratio: 1;
  background-image: -webkit-radial-gradient(circle, #627a86 0%, #627a86 50%, rgb(136, 155.5, 215) 52%, #fff 54%, #fff 100%);
  background-image: radial-gradient(circle, #627a86 0%, #627a86 50%, rgb(136, 155.5, 215) 52%, #fff 54%, #fff 100%);
  border: 1px solid #627a86;
  outline: 2px solid #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  inset: 0;
  top: calc(28px - var(--timelineRailWidth) / 2);
  right: calc(var(--timelineRailWidth) / 2 * -1);
  margin: 0 0 auto auto;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
@media (max-width: 480px) {
  .timeline .year::after {
    top: calc(10px + 3vw - var(--timelineRailWidth) / 2);
  }
}
.timeline .year img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
  -webkit-filter: drop-shadow(0 1px 1px rgba(51, 51, 51, 0.2)) drop-shadow(0 0 1px rgba(98, 122, 134, 0.1));
          filter: drop-shadow(0 1px 1px rgba(51, 51, 51, 0.2)) drop-shadow(0 0 1px rgba(98, 122, 134, 0.1));
}
@media (max-width: 768px) {
  .timeline .year img {
    margin-top: 6px;
  }
}
.timeline .events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .timeline .events {
    display: block;
  }
}
.timeline .events .timeline-product {
  padding: 16px 44px;
}
@media (max-width: 768px) {
  .timeline .events .timeline-product {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 37px;
    padding-right: 37px;
  }
}
@media (max-width: 480px) {
  .timeline .events .timeline-product {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}
.timeline .events .timeline-product:nth-child(even) {
  background-color: var(--timelineProductBgColor);
}
@media (max-width: 768px) {
  .timeline .events .timeline-product:nth-child(even) {
    background-color: transparent;
  }
}
@media (max-width: 768px) {
  .timeline .events .timeline-product:empty {
    display: none;
  }
}
.timeline .title {
  display: none;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .timeline .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .timeline .title {
    font-size: 1.6rem;
  }
}
.timeline .title {
  color: #009fa8;
  font-weight: 700;
}
@media (max-width: 768px) {
  .timeline .title {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
  }
}
.timeline .title img {
  display: block;
  height: 28px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline .title img[src*="logo_reny.svg"] {
  height: 24px;
}
.timeline + * {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .timeline + * {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .timeline + * {
    margin-top: 5vw;
  }
}

/*--------------------------------------------------
History(会社沿革)
--------------------------------------------------*/
.section:has(.history) {
  container-type: inline-size;
}

.history {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .history {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .history {
    margin-top: 5vw;
  }
}
.history {
  background-image: url("/assets/images/company/bg_history.svg?v=20260401-1400");
  aspect-ratio: 1120/503;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history {
    aspect-ratio: initial;
    background: none;
  }
}
@media (max-width: 768px) {
  .history::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url("/assets/images/company/bg_sp_history.webp?v=20260401-1400");
    background-size: 100% auto;
    background-position-y: top;
    background-position-x: left;
  }
}
.history-heading {
  text-align: center;
  margin-bottom: 60px;
}
.history .list {
  position: absolute;
  z-index: 2;
  padding: 0;
  width: 988px;
  aspect-ratio: 988/402;
  inset: 0;
  margin-top: auto;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: 0;
  display: grid;
  grid-template-columns: 14% 14% 13% 13% 27% 19%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas: "two two three four six seven" "one one one one five five";
}
@media (max-width: 1200px) {
  .history .list {
    width: 88.0357142857%;
    margin-bottom: 1.9642857143%;
  }
}
@media (max-width: 768px) {
  .history .list {
    position: relative;
    width: 100%;
    margin-left: 0;
    padding-top: calc(0.144 * (100vw - 40px));
    padding-bottom: calc(0.1386666667 * (100vw - 40px));
    padding-left: 40.2985074627%;
    aspect-ratio: initial;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-template-areas: "one" "two" "three" "four" "five" "six" "seven";
    gap: calc(0.064 * (100vw - 40px));
  }
}
@media (max-width: 768px) {
  .history .list::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00575c), color-stop(50%, #009fa8), to(#ffffff));
    background-image: -webkit-linear-gradient(top, #00575c, #009fa8 50%, #ffffff);
    background-image: linear-gradient(180deg, #00575c, #009fa8 50%, #ffffff);
    background-size: 7.9104477612% 100%;
    background-position-y: calc(0.24 * (100vw - 40px));
    background-position-x: 25.0746268657%;
  }
}
@media (max-width: 768px) {
  .history .list::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url("/assets/images/company/bg_sp_history_bottom.svg?v=20260401-1400");
    background-size: 7.9104477612% auto;
    background-position-y: bottom;
    background-position-x: 25.0746268657%;
  }
}
.history .item.one {
  grid-area: one;
}
.history .item.one::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.one::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.one {
  padding-left: 52px;
}
@media (max-width: 1200px) {
  .history .item.one {
    padding-left: calc(0.0464285714 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one {
    padding-left: 0;
  }
}
.history .item.one::after {
  width: 52px;
  aspect-ratio: 52/344;
  margin-left: 0;
  margin-top: auto;
  background-image: url("/assets/images/company/arrow_history_xlg.svg?v=20260401-1400");
  background-position-y: top;
}
@media (max-width: 1200px) {
  .history .item.one::after {
    width: calc(0.0464285714 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one::after {
    margin-top: 0;
    margin-left: calc(-0.24 * (100vw - 40px));
    width: calc(0.1493333333 * (100vw - 40px));
    aspect-ratio: 74/26;
    background-image: url("/assets/images/company/arrow_sp_history_xlg.svg?v=20260401-1400");
  }
}
.history .item.one {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.one {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.one > * {
  position: relative;
}
.history .item.one .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.one .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.one .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.one .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title img {
    height: 4vw;
  }
}
.history .item.one .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.one .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.one .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.one .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.one .text {
    font-size: 1.4rem;
  }
}
.history .item.one .title {
  justify-items: start;
  gap: 8px;
}
@media (max-width: 1200px) {
  .history .item.one .title {
    gap: calc(0.0071428571 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title {
    gap: 4px;
  }
}
.history .item.one .title img {
  height: 18px;
}
@media (max-width: 1200px) {
  .history .item.one .title img {
    height: calc(0.0160714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title img {
    height: 4.2vw;
  }
}
.history .item.one .title span {
  font-size: 2.4rem;
}
@media (max-width: 1200px) {
  .history .item.one .title span {
    font-size: calc(0.0214285714 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.one .title span {
    font-size: 4.8vw;
  }
}
.history .item.one {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.history .item.two {
  grid-area: two;
}
.history .item.two::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.two::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.two::after {
  width: 34px;
  aspect-ratio: 34/142;
  margin-top: auto;
  margin-bottom: -17px;
  background-image: url("/assets/images/company/arrow_history_s.svg?v=20260401-1400");
  background-position-y: bottom;
}
@media (max-width: 1200px) {
  .history .item.two::after {
    width: calc(0.0303571429 * (100vw - 80px));
    margin-bottom: calc(-0.0138392857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.two::after {
    margin-top: 0;
    margin-left: calc(-0.1653333333 * (100vw - 40px));
    width: calc(0.1146666667 * (100vw - 40px));
    aspect-ratio: 64/35;
    background-image: url("/assets/images/company/arrow_sp_history_s.svg?v=20260401-1400");
  }
}
.history .item.two {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.two {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.two > * {
  position: relative;
}
.history .item.two .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.two .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.two .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.two .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.two .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.two .title img {
    height: 4vw;
  }
}
.history .item.two .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.two .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.two .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.two .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.two .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.two .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.two .text {
    font-size: 1.4rem;
  }
}
.history .item.two {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media (max-width: 768px) {
  .history .item.two {
    margin-left: 0;
  }
}
.history .item.three {
  grid-area: three;
}
.history .item.three::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.three::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.three::after {
  width: 34px;
  aspect-ratio: 34/142;
  margin-top: auto;
  margin-bottom: -17px;
  background-image: url("/assets/images/company/arrow_history_s.svg?v=20260401-1400");
  background-position-y: bottom;
}
@media (max-width: 1200px) {
  .history .item.three::after {
    width: calc(0.0303571429 * (100vw - 80px));
    margin-bottom: calc(-0.0138392857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three::after {
    margin-top: 0;
    margin-left: calc(-0.1653333333 * (100vw - 40px));
    width: calc(0.1146666667 * (100vw - 40px));
    aspect-ratio: 64/35;
    background-image: url("/assets/images/company/arrow_sp_history_s.svg?v=20260401-1400");
  }
}
.history .item.three {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.three {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.three > * {
  position: relative;
}
.history .item.three .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.three .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.three .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.three .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three .title img {
    height: 4vw;
  }
}
.history .item.three .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.three .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.three .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.three .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.three .text {
    font-size: 1.4rem;
  }
}
.history .item.three {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 12px;
}
@media (max-width: 1200px) {
  .history .item.three {
    margin-left: calc(0.0107142857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.three {
    margin-left: 0;
  }
}
.history .item.four {
  grid-area: four;
}
.history .item.four::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.four::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.four::after {
  width: 34px;
  aspect-ratio: 34/142;
  margin-top: auto;
  margin-bottom: -17px;
  background-image: url("/assets/images/company/arrow_history_s.svg?v=20260401-1400");
  background-position-y: bottom;
}
@media (max-width: 1200px) {
  .history .item.four::after {
    width: calc(0.0303571429 * (100vw - 80px));
    margin-bottom: calc(-0.0138392857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.four::after {
    margin-top: 0;
    margin-left: calc(-0.1653333333 * (100vw - 40px));
    width: calc(0.1146666667 * (100vw - 40px));
    aspect-ratio: 64/35;
    background-image: url("/assets/images/company/arrow_sp_history_s.svg?v=20260401-1400");
  }
}
.history .item.four {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.four {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.four > * {
  position: relative;
}
.history .item.four .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.four .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.four .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.four .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.four .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.four .title img {
    height: 4vw;
  }
}
.history .item.four .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.four .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.four .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.four .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.four .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.four .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.four .text {
    font-size: 1.4rem;
  }
}
.history .item.four {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.history .item.five {
  grid-area: five;
}
.history .item.five::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.five::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.five {
  padding-left: 56px;
}
@media (max-width: 1200px) {
  .history .item.five {
    padding-left: calc(0.05 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five {
    padding-left: 0;
  }
}
.history .item.five::after {
  width: 56px;
  aspect-ratio: 56/292;
  margin-left: 0;
  margin-top: auto;
  background-image: url("/assets/images/company/arrow_history_lg.svg?v=20260401-1400");
  background-position-y: top;
}
@media (max-width: 1200px) {
  .history .item.five::after {
    width: calc(0.05 * (100vw - 80px));
    aspect-ratio: 56/288;
  }
}
@media (max-width: 768px) {
  .history .item.five::after {
    margin-right: 100%;
    margin-top: 0;
    margin-left: calc(-0.192 * (100vw - 40px));
    width: calc(0.1546666667 * (100vw - 40px));
    aspect-ratio: 74/58;
    background-image: url("/assets/images/company/arrow_sp_history_lg.svg?v=20260401-1400");
  }
}
.history .item.five {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.five {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.five > * {
  position: relative;
}
.history .item.five .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.five .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.five .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.five .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title img {
    height: 4vw;
  }
}
.history .item.five .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.five .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.five .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.five .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.five .text {
    font-size: 1.4rem;
  }
}
.history .item.five .title {
  justify-items: start;
  gap: 8px;
}
@media (max-width: 1200px) {
  .history .item.five .title {
    gap: calc(0.0071428571 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title {
    gap: 4px;
  }
}
.history .item.five .title img {
  height: 18px;
}
@media (max-width: 1200px) {
  .history .item.five .title img {
    height: calc(0.0160714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title img {
    height: 4.2vw;
  }
}
.history .item.five .title span {
  font-size: 2.4rem;
}
@media (max-width: 1200px) {
  .history .item.five .title span {
    font-size: calc(0.0214285714 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five .title span {
    font-size: 4.8vw;
  }
}
.history .item.five {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 8px;
}
@media (max-width: 1200px) {
  .history .item.five {
    margin-right: calc(0.0071428571 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.five {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .history .item.five::before {
    content: "";
    position: absolute;
    display: block;
    top: calc(-0.032 * (100vw - 40px));
    right: 0;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    width: calc(0.6933333333 * (100vw - 40px));
    height: 100vh;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(26%, #e7ffcf), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #e7ffcf 26%, rgba(255, 255, 255, 0));
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #e7ffcf 26%, rgba(255, 255, 255, 0));
    z-index: 0;
  }
}
.history .item.six {
  grid-area: six;
}
.history .item.six::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.six::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.six {
  height: calc(100% - 46px);
}
@media (max-width: 1200px) {
  .history .item.six {
    height: calc(100% - 0.0419642857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six {
    height: auto;
    margin-right: 100%;
  }
}
.history .item.six::after {
  width: 34px;
  aspect-ratio: 34/78;
  margin-top: auto;
  background-image: url("/assets/images/company/arrow_history_xs.svg?v=20260401-1400");
  background-position-y: bottom;
}
@media (max-width: 1200px) {
  .history .item.six::after {
    width: calc(0.0303571429 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six::after {
    margin-top: 0;
    margin-left: calc(-0.1653333333 * (100vw - 40px));
    width: calc(0.1146666667 * (100vw - 40px));
    aspect-ratio: 64/35;
    background-image: url("/assets/images/company/arrow_sp_history_s.svg?v=20260401-1400");
  }
}
.history .item.six {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.six {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.six > * {
  position: relative;
}
.history .item.six .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.six .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.six .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.six .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six .title img {
    height: 4vw;
  }
}
.history .item.six .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.six .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.six .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.six .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.six .text {
    font-size: 1.4rem;
  }
}
.history .item.six {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 12px;
}
@media (max-width: 1200px) {
  .history .item.six {
    margin-left: calc(0.0107142857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.six {
    margin-left: 0;
  }
}
.history .item.six::after {
  aspect-ratio: 34/62;
}
@media (max-width: 768px) {
  .history .item.six::after {
    aspect-ratio: 64/35;
  }
}
.history .item.seven {
  grid-area: seven;
}
.history .item.seven::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .item.seven::after {
    margin-right: 100%;
    background-position-x: left;
  }
}
.history .item.seven {
  height: calc(100% - 46px);
}
@media (max-width: 1200px) {
  .history .item.seven {
    height: calc(100% - 0.0419642857 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven {
    height: auto;
    margin-right: 100%;
  }
}
.history .item.seven::after {
  width: 34px;
  aspect-ratio: 34/78;
  margin-top: auto;
  background-image: url("/assets/images/company/arrow_history_xs.svg?v=20260401-1400");
  background-position-y: bottom;
}
@media (max-width: 1200px) {
  .history .item.seven::after {
    width: calc(0.0303571429 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven::after {
    margin-top: 0;
    margin-left: calc(-0.1653333333 * (100vw - 40px));
    width: calc(0.1146666667 * (100vw - 40px));
    aspect-ratio: 64/35;
    background-image: url("/assets/images/company/arrow_sp_history_s.svg?v=20260401-1400");
  }
}
.history .item.seven {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .history .item.seven {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: block;
  }
}
.history .item.seven > * {
  position: relative;
}
.history .item.seven .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .history .item.seven .title {
    gap: calc(0.0035714286 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven .title {
    justify-items: start;
    gap: 4px;
  }
}
.history .item.seven .title img {
  display: block;
  height: 16px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .history .item.seven .title img {
    height: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven .title img {
    height: 4vw;
  }
}
.history .item.seven .title span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .history .item.seven .title span {
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven .title span {
    font-size: 4vw;
    text-align: left;
  }
}
.history .item.seven .text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #627a86;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .history .item.seven .text {
    margin-top: calc(0.0107142857 * (100vw - 80px));
    font-size: calc(0.0142857143 * (100vw - 80px));
  }
}
@media (max-width: 768px) {
  .history .item.seven .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .history .item.seven .text {
    font-size: 1.4rem;
  }
}
.history .item.seven {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
@media (max-width: 768px) {
  .history .item.seven {
    margin-right: 0;
  }
}
.history .item .visible-pc {
  display: block;
}
@media (max-width: 768px) {
  .history .item .visible-pc {
    display: none;
  }
}
.history + * {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .history + * {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .history + * {
    margin-top: 5vw;
  }
}
@media screen and (min-width: 1441px) {
  .history .visible-pc {
    display: block;
  }
}
.history.scroll-up {
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (min-width: 769px) {
  :lang(en) .history .list {
    aspect-ratio: 988/422;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.one,
  :lang(en) .history .item.five {
    bottom: -1.9642857143vw;
  }
}
@media (min-width: 1201px) {
  :lang(en) .history .item.one,
  :lang(en) .history .item.five {
    bottom: -20px;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item .text,
  :lang(en) .history .item.one .text,
  :lang(en) .history .item.five .text {
    line-height: 1.1;
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item span,
  :lang(en) .history .item.one span,
  :lang(en) .history .item.five span {
    text-align: left;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item .title,
  :lang(en) .history .item.one .title,
  :lang(en) .history .item.five .title {
    gap: 4px;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item .title span,
  :lang(en) .history .item.one .title span,
  :lang(en) .history .item.five .title span {
    line-height: 1.2;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.two::after {
    aspect-ratio: 34/152;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.three::after {
    aspect-ratio: 34/122;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.four::after {
    aspect-ratio: 34/137;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.seven::after {
    aspect-ratio: 34/82;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.two::after,
  :lang(en) .history .item.three::after,
  :lang(en) .history .item.four::after,
  :lang(en) .history .item.six::after,
  :lang(en) .history .item.seven::after {
    bottom: -8px;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.one::after {
    aspect-ratio: 52/368;
  }
}
@media (min-width: 1201px) {
  :lang(en) .history .item.one::after {
    aspect-ratio: 52/364;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.five .title span {
    text-align: left;
  }
}
@media (min-width: 769px) {
  :lang(en) .history .item.five::after {
    aspect-ratio: 56/324;
  }
}
@media (min-width: 1201px) {
  :lang(en) .history .item.five::after {
    aspect-ratio: 56/316;
  }
}

/* -----------------------------
   SORT（高機能グレード＆ソリューション提案）
----------------------------- */
.secondary-sort[hidden] {
  display: none;
}

.sort {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .sort {
    padding-top: 34px;
  }
}
@media (max-width: 480px) {
  .sort {
    padding-top: 5vw;
  }
}
.sort .primary-sort {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .sort .primary-sort {
    gap: 4px;
  }
}
.sort .primary-sort .btn--primary-sort {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .sort .primary-sort .btn--primary-sort {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.sort .primary-sort .btn--primary-sort:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .sort .primary-sort .btn--primary-sort:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .sort .primary-sort .btn--primary-sort:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.sort .primary-sort .btn--primary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .sort .primary-sort .btn--primary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .sort .primary-sort .btn--primary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.sort .primary-sort .btn--primary-sort {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 4px 20px 4px 24px;
  min-width: 160px;
  width: 100%;
  border-radius: 4px;
  color: #009fa8;
  background: #fff;
}
@media (max-width: 768px) {
  .sort .primary-sort .btn--primary-sort {
    padding: 4px;
  }
}
@media (max-width: 480px) {
  .sort .primary-sort .btn--primary-sort {
    padding: 4px 0;
    min-width: 100%;
  }
}
.sort .primary-sort .btn--primary-sort span {
  color: #009fa8;
}
.sort .primary-sort .btn--primary-sort:focus-visible {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .primary-sort .btn--primary-sort:focus-visible span {
  color: #fff;
}
@media (any-hover: hover) {
  .sort .primary-sort .btn--primary-sort:hover {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .sort .primary-sort .btn--primary-sort:hover span {
    color: #fff;
  }
}
@media (hover: none) {
  .sort .primary-sort .btn--primary-sort:active {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .sort .primary-sort .btn--primary-sort:active span {
    color: #fff;
  }
}
.sort .primary-sort .btn--primary-sort.active, .sort .primary-sort .btn--primary-sort[aria-selected=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .primary-sort .btn--primary-sort.active span, .sort .primary-sort .btn--primary-sort[aria-selected=true] span {
  color: #fff;
}
.sort .primary-sort .btn--primary-sort {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 52px;
}
@media (max-width: 768px) {
  .sort .primary-sort .btn--primary-sort {
    height: 44px;
  }
}
.sort .primary-sort .btn--primary-sort[aria-pressed=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .primary-sort .btn--primary-sort[aria-pressed=true] span {
  color: #fff;
}
.sort .primary-sort .btn--primary-sort {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .sort .primary-sort .btn--primary-sort {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .sort .primary-sort .btn--primary-sort {
    margin-top: 7vw;
  }
}
.sort .secondary-sort {
  padding: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .sort .secondary-sort {
    padding: 24px 16px;
  }
}
.sort .secondary-sort .title {
  color: #009fa8;
}
.sort .secondary-sort .title + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .sort .secondary-sort .title + * {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .sort .secondary-sort .title + * {
    margin-top: 2vw;
  }
}
.sort .secondary-sort {
  background-color: rgba(0, 159, 168, 0.05);
  border: 1px solid rgba(0, 159, 168, 0.2);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .sort .secondary-sort {
    margin-top: 17px;
  }
}
@media (max-width: 480px) {
  .sort .secondary-sort {
    margin-top: 2.5vw;
  }
}
.sort .secondary-sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 480px) {
  .sort .secondary-sort {
    gap: 4px;
  }
}
.sort .secondary-sort .btn--secondary-sort {
  position: relative;
  border: 1px solid #009fa8;
  color: #fff;
  padding: 10px 48px 10px;
  margin: 0;
  min-width: 260px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #009fa8 url(./../images/common/icon_arrow.svg) no-repeat right 8px center;
  background-size: 3rem 3rem;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .sort .secondary-sort .btn--secondary-sort {
    font-size: 1.6rem;
    width: 100%;
    max-width: 100%;
  }
}
.sort .secondary-sort .btn--secondary-sort:focus-visible {
  background-color: #fff;
  color: #009fa8;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
@media (any-hover: hover) {
  .sort .secondary-sort .btn--secondary-sort:hover {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
@media (hover: none) {
  .sort .secondary-sort .btn--secondary-sort:active {
    background-color: #fff;
    color: #009fa8;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
}
.sort .secondary-sort .btn--secondary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .sort .secondary-sort .btn--secondary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .sort .secondary-sort .btn--secondary-sort:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 1.5vw;
  }
}
.sort .secondary-sort .btn--secondary-sort {
  font-size: 1.4rem;
  font-weight: normal;
  background-size: 2.2rem 2.2rem;
  display: inline-block;
  min-width: 180px;
  padding: 4px 20px 4px 24px;
  min-width: 160px;
  width: 100%;
  border-radius: 4px;
  color: #009fa8;
  background: #fff;
}
@media (max-width: 768px) {
  .sort .secondary-sort .btn--secondary-sort {
    padding: 4px;
  }
}
@media (max-width: 480px) {
  .sort .secondary-sort .btn--secondary-sort {
    padding: 4px 0;
    min-width: 100%;
  }
}
.sort .secondary-sort .btn--secondary-sort span {
  color: #009fa8;
}
.sort .secondary-sort .btn--secondary-sort:focus-visible {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .secondary-sort .btn--secondary-sort:focus-visible span {
  color: #fff;
}
@media (any-hover: hover) {
  .sort .secondary-sort .btn--secondary-sort:hover {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .sort .secondary-sort .btn--secondary-sort:hover span {
    color: #fff;
  }
}
@media (hover: none) {
  .sort .secondary-sort .btn--secondary-sort:active {
    background-color: #009fa8;
    color: #fff;
    -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
  }
  .sort .secondary-sort .btn--secondary-sort:active span {
    color: #fff;
  }
}
.sort .secondary-sort .btn--secondary-sort.active, .sort .secondary-sort .btn--secondary-sort[aria-selected=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .secondary-sort .btn--secondary-sort.active span, .sort .secondary-sort .btn--secondary-sort[aria-selected=true] span {
  color: #fff;
}
.sort .secondary-sort .btn--secondary-sort {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  padding: 4px 8px;
  -webkit-box-shadow: 2px 3px 4px 0px rgba(98, 122, 134, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(98, 122, 134, 0.1);
}
@media (max-width: 768px) {
  .sort .secondary-sort .btn--secondary-sort {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 8px;
  }
}
@media (max-width: 480px) {
  .sort .secondary-sort .btn--secondary-sort {
    padding: 4px 8px;
    min-width: auto;
  }
}
.sort .secondary-sort .btn--secondary-sort .inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 24px;
}
.sort .secondary-sort .btn--secondary-sort .inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  aspect-ratio: 1;
  border: 1px solid #009fa8;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sort .secondary-sort .btn--secondary-sort .inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #009fa8;
  border-bottom: 2px solid #009fa8;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sort .secondary-sort .btn--secondary-sort[aria-pressed=true] {
  background-color: #009fa8;
  color: #fff;
  -webkit-box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, 0.6);
}
.sort .secondary-sort .btn--secondary-sort[aria-pressed=true] span {
  color: #fff;
}
.sort .secondary-sort .btn--secondary-sort[aria-pressed=true] .inner::after {
  opacity: 1;
}
.sort-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 12px;
}
@media (max-width: 768px) {
  .sort-list {
    gap: 14px 10px;
  }
}
@media (max-width: 480px) {
  .sort-list {
    gap: 2vw 1.5vw;
  }
}
.sort-list {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .sort-list {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .sort-list {
    margin-top: 4.5vw;
  }
}
.sort-list {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .sort-list {
    margin-top: 54px;
  }
}
@media (max-width: 480px) {
  .sort-list {
    margin-top: 8vw;
  }
}
.sort-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .sort-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .sort-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.sort-list:has(.no-result:not([hidden])) {
  display: block;
}
.sort-list .no-result * {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .sort-list .no-result * {
    font-size: 1.4rem;
  }
}
.sort-list .no-result * {
  color: #627a86;
}
.sort-list .no-result .text {
  font-weight: 700;
}
.sort-list .no-result > *:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .sort-list .no-result > *:not(:first-child) {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .sort-list .no-result > *:not(:first-child) {
    margin-top: 3vw;
  }
}

/*--------------------------------------------------
service(技術サービス)
--------------------------------------------------*/
.technical-service {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 8px;
}
@media (max-width: 768px) {
  .technical-service {
    gap: 14px 7px;
  }
}
@media (max-width: 480px) {
  .technical-service {
    gap: 2vw 1vw;
  }
}
@media (max-width: 768px) {
  .technical-service {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .technical-service {
    grid-template-columns: minmax(0, 1fr);
  }
}
.technical-service > *:not(:first-child) {
  margin-top: 0 !important;
}
.technical-service .item {
  border-radius: 6px;
  padding: 10px;
  background-color: rgba(0, 159, 168, 0.05);
  border: 1px solid rgba(0, 159, 168, 0.2);
  color: #009fa8;
  display: grid;
  place-content: center;
  place-items: center;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .technical-service .item {
    min-height: 60px;
  }
}
.technical-service .item span {
  color: rgb(132.6, 132.6, 132.6);
  font-size: 1.2rem;
  text-align: center;
  margin-top: 8px;
}
.technical-service + .grid-column--three {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .technical-service + .grid-column--three {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .technical-service + .grid-column--three {
    margin-top: 7vw;
  }
}

/*--------------------------------------------------
service(技術サービス)
--------------------------------------------------*/
.application-module .image-buttons {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .application-module .image-buttons {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .application-module .image-buttons {
    margin-top: 3vw;
  }
}
@media (max-width: 1000px) {
  .application-module .image-buttons {
    margin-top: 0;
  }
}
.application-module .list--button {
  padding: 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .application-module .list--button {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .application-module .list--button {
    margin-top: 5vw;
  }
}
.application-module .list--button {
  height: 64px;
}
@media (max-width: 1000px) {
  .application-module .list--button {
    display: none;
  }
}
.application-module .list--button .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.application-module .list--button .btn .num-btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-radius: 9999px;
}
@media (max-width: 1000px) {
  .application-module .list--button .btn .num-btn {
    line-height: 1.3;
  }
}
.application-module .list--button .btn .num-btn {
  width: 2.38rem;
  height: 2.38rem;
  color: #009fa8;
  font-size: 1.4rem;
  background: #fff;
  border: 2px solid #009fa8;
  line-height: 0;
}
.application-module .list--button .btn:focus-visible .num-btn {
  color: #fff;
  background: #009fa8;
}
@media (any-hover: hover) {
  .application-module .list--button .btn:hover .num-btn {
    color: #fff;
    background: #009fa8;
  }
}
@media (hover: none) {
  .application-module .list--button .btn:active .num-btn {
    color: #fff;
    background: #009fa8;
  }
}
.application-module .list--button + * {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .application-module .list--button + * {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .application-module .list--button + * {
    margin-top: 5vw;
  }
}
@media (max-width: 1000px) {
  .application-module .list--button + * {
    margin-top: 0px;
  }
}
@media (max-width: 1000px) and (max-width: 768px) {
  .application-module .list--button + * {
    margin-top: 0px;
  }
}
@media (max-width: 1000px) and (max-width: 480px) {
  .application-module .list--button + * {
    margin-top: 0vw;
  }
}

/*--------------------------------------------------
ＨＥＡＤＥＲ
--------------------------------------------------*/
:root {
  --mega-tech-gapY: 4px;
  --mega-tech-titleHeight: 30px;
  --mega-tech-card-list-width: calc(var(--mega-tech-card-width) * 2 + 32px + 80px);
  --mega-tech-card-width: 240px;
  --mega-padding-inline: 24px;
  --mega-padding-block-top: 54px;
  --mega-padding-block-bottom: 32px;
  --header-logo-width: 264px;
  --header-logo-width-pc: 224px;
  --header-logo-width-tab: 198px;
  --header-logo-height: 46px;
  --header-logo-height-pc: 40px;
  --header-logo-height-tab: 35px;
  --header-padding-pc: calc(36px - var(--header-logo-height)/2);
  --header-padding-inline-tab: 10px;
  --header-padding-block-tab: 6px;
  --header-padding-block-top-tab: calc(31px - var(--header-logo-height-tab)/2);
}

.header {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  background-color: #009fa8;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9001;
}
.header .header-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: var(--header-padding-block-tab);
  padding-bottom: calc(var(--header-padding-block-tab) + 4px);
  padding-left: var(--header-padding-pc);
  padding-right: var(--header-padding-pc);
}
@media (max-width: 768px) {
  .header .header-inner {
    padding: var(--header-padding-block-tab) var(--header-padding-inline-tab) calc(var(--header-padding-inline-tab) + 4px);
    margin: 0 auto;
    background-color: rgba(0, 159, 168, 0);
  }
}
.header .header-inner > .logo {
  position: relative;
  z-index: 2;
  margin-right: auto;
  display: inline-block;
  border: 2px solid transparent;
  width: var(--header-logo-width);
  height: var(--header-logo-height);
}
@media (max-width: 1440px) {
  .header .header-inner > .logo {
    width: var(--header-logo-width-pc);
    height: var(--header-logo-height-pc);
  }
}
@media (max-width: 768px) {
  .header .header-inner > .logo {
    width: var(--header-logo-width-tab);
    height: var(--header-logo-height-tab);
  }
}
@media (max-width: 1000px) {
  .header .header-inner > .logo {
    z-index: 0;
  }
}
.header .header-inner > .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  block-size: 100%;
  -o-object-position: left top;
     object-position: left top;
  width: var(--header-logo-width);
  height: var(--header-logo-height);
}
@media (max-width: 1440px) {
  .header .header-inner > .logo img {
    width: var(--header-logo-width-pc);
    height: var(--header-logo-height-pc);
  }
}
@media (max-width: 768px) {
  .header .header-inner > .logo img {
    width: var(--header-logo-width-tab);
    height: var(--header-logo-height-tab);
  }
}
.header .header-inner > .logo a {
  display: inline-block;
}
.header .header-inner > .logo + div {
  position: static;
  z-index: 1;
}
.header .header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 36px;
}
@media (max-width: 1000px) {
  .header .header-nav {
    gap: 0;
  }
}
.header .header-nav > .sub-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.header .header-nav > .sub-list .item > a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  font-size: 1.4rem;
  padding: 0 16px;
  border-right: 1px solid #fff;
}
@media (max-width: 1440px) {
  .header .header-nav > .sub-list .item > a {
    padding: 0 8px;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .sub-list .item > a {
    padding: 16px 0 16px 24px;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
  }
}
.header .header-nav > .sub-list .item > a:focus-visible, .header .header-nav > .sub-list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header .header-nav > .sub-list .item > a:focus-visible, .header .header-nav > .sub-list .item > a.current {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header .header-nav > .sub-list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header .header-nav > .sub-list .item > a:hover {
    color: #fff;
  }
}
@media (hover: none) {
  .header .header-nav > .sub-list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header .header-nav > .sub-list .item > a:active {
    color: #fff;
  }
}
.header .header-nav > .sub-list .item > a:disabled {
  cursor: default;
  background-color: transparent;
}
.header .header-nav > .sub-list .item:first-child > a {
  border-left: 1px solid #fff;
}
.header .header-nav > .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 24px;
}
@media (max-width: 1440px) {
  .header .header-nav > .list {
    gap: 0 16px;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list {
    gap: 0;
  }
}
.header .header-nav > .list .item > .mega-toggle,
.header .header-nav > .list .item > a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
  cursor: pointer;
  padding: 0;
  line-height: var(--header-logo-height);
  z-index: 2;
}
.header .header-nav > .list .item > .mega-toggle span,
.header .header-nav > .list .item > a span {
  color: #fff;
}
@media (max-width: 1440px) {
  .header .header-nav > .list .item > .mega-toggle,
  .header .header-nav > .list .item > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item > .mega-toggle,
  .header .header-nav > .list .item > a {
    padding: 0 0 0 24px;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
  }
}
.header .header-nav > .list .item > .mega-toggle::after,
.header .header-nav > .list .item > a::after {
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
  background: rgb(0, 91.425, 96.6);
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item > .mega-toggle::after,
  .header .header-nav > .list .item > a::after {
    content: none;
    display: none;
  }
}
.header .header-nav > .list .item > .mega-toggle:focus-visible, .header .header-nav > .list .item > .mega-toggle.current,
.header .header-nav > .list .item > a:focus-visible,
.header .header-nav > .list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item > .mega-toggle:focus-visible, .header .header-nav > .list .item > .mega-toggle.current,
  .header .header-nav > .list .item > a:focus-visible,
  .header .header-nav > .list .item > a.current {
    color: #fff;
  }
}
.header .header-nav > .list .item > .mega-toggle:focus-visible::after, .header .header-nav > .list .item > .mega-toggle.current::after,
.header .header-nav > .list .item > a:focus-visible::after,
.header .header-nav > .list .item > a.current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (any-hover: hover) {
  .header .header-nav > .list .item > .mega-toggle:hover,
  .header .header-nav > .list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header .header-nav > .list .item > .mega-toggle:hover,
  .header .header-nav > .list .item > a:hover {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header .header-nav > .list .item > .mega-toggle:hover::after,
  .header .header-nav > .list .item > a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (hover: none) {
  .header .header-nav > .list .item > .mega-toggle:active,
  .header .header-nav > .list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header .header-nav > .list .item > .mega-toggle:active,
  .header .header-nav > .list .item > a:active {
    color: #fff;
  }
}
@media (hover: none) {
  .header .header-nav > .list .item > .mega-toggle:active::after,
  .header .header-nav > .list .item > a:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header .header-nav > .list .item > .mega-toggle:disabled,
.header .header-nav > .list .item > a:disabled {
  cursor: default;
  background-color: transparent;
}
.header .header-nav > .list .item.has-mega > .mega {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: var(--mega-padding-block-top) var(--mega-padding-inline) var(--mega-padding-block-bottom);
  margin: 42px 0 0 0;
}
@media (max-width: 1440px) {
  .header .header-nav > .list .item.has-mega > .mega {
    margin: 42px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega {
    margin: 0;
  }
}
.header .header-nav > .list .item.has-mega > .mega {
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1440px) {
  .header .header-nav > .list .item.has-mega > .mega {
    padding: var(--mega-padding-block-top) var(--mega-padding-inline) var(--mega-padding-block-bottom);
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner {
    padding: 0 20px;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner {
  max-width: 1400px;
  padding: 0;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
  grid-template-columns: repeat(auto-fit, var(--mega-tech-card-width));
  gap: 16px 30px;
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
    gap: 14px 25px;
  }
}
@media (max-width: 480px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
    gap: 2vw 3.75vw;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
  max-width: 1520px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 0;
}
@media (max-width: 1280px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "title title title" "physicality molding designing";
  gap: var(--mega-tech-gapY) 16px;
  border-right: 1px solid #d2d2d2;
}
@media (max-width: 1280px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "title title" "physicality molding" "designing designing";
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    border-right: none;
    display: block;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing {
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
    border-bottom: 1px dotted #009fa8;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality .list,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding .list,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing .list {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .list,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .list,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .list {
    max-height: 1000px;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .sub-title .icon::before,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .sub-title .icon::before,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .sub-title .icon::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .sub-title .icon::after,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .sub-title .icon::after,
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .sub-title .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title:disabled {
  cursor: default;
  background-color: transparent;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
  }
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    inset: 0;
    text-align: left;
  }
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
    position: relative;
    inset: 0;
  }
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title {
    padding: 16px 0 16px 24px;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
    font-size: 1.6rem;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  color: #009fa8;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 5vw;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  color: #009fa8;
  font-weight: 500;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 0vw;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
  display: none;
  position: absolute;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
    position: relative;
    display: block;
    cursor: pointer;
    right: 1px;
    top: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 3;
    padding: 16px 16px 16px calc(25px + 1em);
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::before, .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    left: 32px;
    background-color: #009fa8;
    display: block;
    border-right: 1px dotted #009fa8;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title + .list {
  margin-top: 8px;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title + .list {
    margin-top: 0;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
  color: #009fa8;
  grid-area: title;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    padding: 16px 0 16px 24px;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title + .item {
    border-top: 1px dotted #009fa8;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .physicality {
  grid-area: physicality;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .molding {
  grid-area: molding;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .designing {
  grid-area: designing;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .list + .list {
  margin-top: 12px;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .list + .list {
    margin-top: 0;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega {
  margin-top: 0;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item.open > .mega > .list {
    border-top: 1px dotted #009fa8;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item {
  border: 1px solid #009fa8;
  color: #009fa8;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  margin-top: 4px;
  padding: 12px 16px 10px;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item {
    margin-top: 0;
    border: none;
    border-radius: 0;
    padding: 16px 16px 14px;
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item img[src*="logo_lemalloy.svg"] {
  height: 14px;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item span {
  color: #627a86;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item span.name {
  font-size: 1.8rem;
  font-weight: 700;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:has(.product-logos) {
  padding: 12px 16px;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:has(.product-logos) {
    padding: 16px;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item .product-logos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    padding: 0;
  }
}
.header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
  max-width: var(--mega-tech-card-list-width);
  width: 100%;
  margin: calc(var(--mega-tech-titleHeight) + var(--mega-tech-gapY)) auto 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 1280px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
    width: calc(var(--mega-tech-card-width) + 80px);
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    margin-top: 0;
  }
}
.header .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon {
  bottom: inherit;
  top: 2px;
}
.header .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header .header-nav > .list .item.has-mega:focus-visible > .mega {
  visibility: visible;
  opacity: 1;
  margin: 62px 0 0 0;
}
@media (max-width: 1440px) {
  .header .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 62px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 0;
  }
}
@media (any-hover: hover) {
  .header .header-nav > .list .item.has-mega:hover .mega-toggle .icon {
    bottom: inherit;
    top: 2px;
  }
  .header .header-nav > .list .item.has-mega:hover .mega-toggle .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header .header-nav > .list .item.has-mega:hover > .mega {
    visibility: visible;
    opacity: 1;
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1440px) {
  .header .header-nav > .list .item.has-mega:hover > .mega {
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega:hover > .mega {
    margin: 0;
  }
}
@media (hover: none) {
  .header .header-nav > .list .item.has-mega:active .mega-toggle .icon {
    bottom: inherit;
    top: 2px;
  }
  .header .header-nav > .list .item.has-mega:active .mega-toggle .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header .header-nav > .list .item.has-mega:active > .mega {
    visibility: visible;
    opacity: 1;
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1440px) {
  .header .header-nav > .list .item.has-mega:active > .mega {
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header .header-nav > .list .item.has-mega:active > .mega {
    margin: 0;
  }
}
.header .header-nav > .list .item .mega-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.header .header-nav > .list .item .mega-toggle .icon {
  position: relative;
  bottom: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
.header .btn--inquiry {
  font-size: 1.4rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  color: #009fa8;
  background-image: none;
  padding: 8px 40px;
}
.header .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .header .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .header .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 0vw;
  }
}
.header .btn--inquiry::before {
  background-image: none;
}
.header .btn--inquiry:focus-visible {
  background-color: #009fa8;
  color: #fff;
  border-color: #fff;
}
@media (any-hover: hover) {
  .header .btn--inquiry:hover {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
@media (hover: none) {
  .header .btn--inquiry:active {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
.header.top {
  background: #fff;
  color: #333;
  padding: 0;
}
@media (max-width: 768px) {
  .header.top {
    background: #fff;
  }
}
.header.top .header-inner {
  padding-top: 24px;
  padding-bottom: 22px;
  color: #333;
}
@media (max-width: 1440px) {
  .header.top .header-inner {
    padding-top: 18px;
    padding-bottom: 16px;
    padding-left: var(--header-padding-inline-tab);
    padding-right: var(--header-padding-inline-tab);
  }
}
@media (max-width: 768px) {
  .header.top .header-inner {
    background-color: rgba(0, 159, 168, 0);
    padding-top: var(--header-padding-block-tab);
    padding-bottom: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
.header.top .header-nav > .sub-list .item > a {
  color: #627a86;
  border-color: #627a86;
}
@media (max-width: 1000px) {
  .header.top .header-nav > .sub-list .item > a {
    color: #fff;
  }
}
.header.top .header-nav > .sub-list .item > a:focus-visible, .header.top .header-nav > .sub-list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header.top .header-nav > .sub-list .item > a:focus-visible, .header.top .header-nav > .sub-list .item > a.current {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header.top .header-nav > .sub-list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header.top .header-nav > .sub-list .item > a:hover {
    color: #fff;
  }
}
@media (hover: none) {
  .header.top .header-nav > .sub-list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header.top .header-nav > .sub-list .item > a:active {
    color: #fff;
  }
}
.header.top .header-nav > .list .item > a,
.header.top .header-nav > .list .item.has-mega .mega-toggle {
  color: #333;
}
.header.top .header-nav > .list .item > a span,
.header.top .header-nav > .list .item.has-mega .mega-toggle span {
  color: #333;
}
@media (max-width: 1000px) {
  .header.top .header-nav > .list .item > a,
  .header.top .header-nav > .list .item.has-mega .mega-toggle {
    color: #fff;
  }
  .header.top .header-nav > .list .item > a span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle span {
    color: #fff;
  }
}
.header.top .header-nav > .list .item > a .icon::after,
.header.top .header-nav > .list .item.has-mega .mega-toggle .icon::after {
  border-color: #333;
}
.header.top .header-nav > .list .item > a:focus-visible, .header.top .header-nav > .list .item > a.current,
.header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible,
.header.top .header-nav > .list .item.has-mega .mega-toggle.current {
  color: rgb(0, 91.425, 96.6);
}
.header.top .header-nav > .list .item > a:focus-visible span, .header.top .header-nav > .list .item > a.current span,
.header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible span,
.header.top .header-nav > .list .item.has-mega .mega-toggle.current span {
  color: rgb(0, 91.425, 96.6);
}
.header.top .header-nav > .list .item > a:focus-visible .icon::after, .header.top .header-nav > .list .item > a.current .icon::after,
.header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible .icon::after,
.header.top .header-nav > .list .item.has-mega .mega-toggle.current .icon::after {
  border-color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header.top .header-nav > .list .item > a:focus-visible, .header.top .header-nav > .list .item > a.current,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible,
  .header.top .header-nav > .list .item.has-mega .mega-toggle.current {
    color: #fff;
  }
  .header.top .header-nav > .list .item > a:focus-visible span, .header.top .header-nav > .list .item > a.current span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle.current span {
    color: #fff;
  }
}
.header.top .header-nav > .list .item > a:focus-visible::after, .header.top .header-nav > .list .item > a.current::after,
.header.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible::after,
.header.top .header-nav > .list .item.has-mega .mega-toggle.current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (any-hover: hover) {
  .header.top .header-nav > .list .item > a:hover,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover {
    color: rgb(0, 91.425, 96.6);
  }
  .header.top .header-nav > .list .item > a:hover span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover span {
    color: rgb(0, 91.425, 96.6);
  }
  .header.top .header-nav > .list .item > a:hover .icon::after,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover .icon::after {
    border-color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header.top .header-nav > .list .item > a:hover,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover {
    color: #fff;
  }
  .header.top .header-nav > .list .item > a:hover span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover span {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header.top .header-nav > .list .item > a:hover::after,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (hover: none) {
  .header.top .header-nav > .list .item > a:active,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active {
    color: rgb(0, 91.425, 96.6);
  }
  .header.top .header-nav > .list .item > a:active span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active span {
    color: rgb(0, 91.425, 96.6);
  }
  .header.top .header-nav > .list .item > a:active .icon::after,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active .icon::after {
    border-color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header.top .header-nav > .list .item > a:active,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active {
    color: #fff;
  }
  .header.top .header-nav > .list .item > a:active span,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active span {
    color: #fff;
  }
}
@media (hover: none) {
  .header.top .header-nav > .list .item > a:active::after,
  .header.top .header-nav > .list .item.has-mega .mega-toggle:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header.top .header-nav > .list .item.has-mega > .mega {
  margin: 48px 0 0 0;
}
@media (max-width: 1440px) {
  .header.top .header-nav > .list .item.has-mega > .mega {
    margin: 42px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header.top .header-nav > .list .item.has-mega > .mega {
    margin: 0;
  }
}
.header.top .header-nav > .list .item.has-mega:focus-visible > .mega {
  margin: 68px 0 0 0;
}
@media (max-width: 1440px) {
  .header.top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 62px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header.top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 0;
  }
}
@media (any-hover: hover) {
  .header.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 68px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1440px) {
  .header.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 0;
  }
}
@media (hover: none) {
  .header.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 68px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1440px) {
  .header.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 0;
  }
}
.header.top .btn--inquiry {
  background-color: #009fa8;
  color: #fff;
  z-index: 3;
}
.header.top .btn--inquiry:focus-visible {
  background-color: #fff;
  color: #009fa8;
  border-color: #009fa8;
}
@media (any-hover: hover) {
  .header.top .btn--inquiry:hover {
    background-color: #fff;
    color: #009fa8;
    border-color: #009fa8;
  }
}
@media (hover: none) {
  .header.top .btn--inquiry:active {
    background-color: #fff;
    color: #009fa8;
    border-color: #009fa8;
  }
}

.header--top {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  background-color: #009fa8;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9001;
}
.header--top .header-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: var(--header-padding-block-tab);
  padding-bottom: calc(var(--header-padding-block-tab) + 4px);
  padding-left: var(--header-padding-pc);
  padding-right: var(--header-padding-pc);
}
@media (max-width: 768px) {
  .header--top .header-inner {
    padding: var(--header-padding-block-tab) var(--header-padding-inline-tab) calc(var(--header-padding-inline-tab) + 4px);
    margin: 0 auto;
    background-color: rgba(0, 159, 168, 0);
  }
}
.header--top .header-inner > .logo {
  position: relative;
  z-index: 2;
  margin-right: auto;
  display: inline-block;
  border: 2px solid transparent;
  width: var(--header-logo-width);
  height: var(--header-logo-height);
}
@media (max-width: 1440px) {
  .header--top .header-inner > .logo {
    width: var(--header-logo-width-pc);
    height: var(--header-logo-height-pc);
  }
}
@media (max-width: 768px) {
  .header--top .header-inner > .logo {
    width: var(--header-logo-width-tab);
    height: var(--header-logo-height-tab);
  }
}
@media (max-width: 1000px) {
  .header--top .header-inner > .logo {
    z-index: 0;
  }
}
.header--top .header-inner > .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  block-size: 100%;
  -o-object-position: left top;
     object-position: left top;
  width: var(--header-logo-width);
  height: var(--header-logo-height);
}
@media (max-width: 1440px) {
  .header--top .header-inner > .logo img {
    width: var(--header-logo-width-pc);
    height: var(--header-logo-height-pc);
  }
}
@media (max-width: 768px) {
  .header--top .header-inner > .logo img {
    width: var(--header-logo-width-tab);
    height: var(--header-logo-height-tab);
  }
}
.header--top .header-inner > .logo a {
  display: inline-block;
}
.header--top .header-inner > .logo + div {
  position: static;
  z-index: 1;
}
.header--top .header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 36px;
}
@media (max-width: 1000px) {
  .header--top .header-nav {
    gap: 0;
  }
}
.header--top .header-nav > .sub-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.header--top .header-nav > .sub-list .item > a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  font-size: 1.4rem;
  padding: 0 16px;
  border-right: 1px solid #fff;
}
@media (max-width: 1440px) {
  .header--top .header-nav > .sub-list .item > a {
    padding: 0 8px;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .sub-list .item > a {
    padding: 16px 0 16px 24px;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
  }
}
.header--top .header-nav > .sub-list .item > a:focus-visible, .header--top .header-nav > .sub-list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header--top .header-nav > .sub-list .item > a:focus-visible, .header--top .header-nav > .sub-list .item > a.current {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header--top .header-nav > .sub-list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top .header-nav > .sub-list .item > a:hover {
    color: #fff;
  }
}
@media (hover: none) {
  .header--top .header-nav > .sub-list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top .header-nav > .sub-list .item > a:active {
    color: #fff;
  }
}
.header--top .header-nav > .sub-list .item > a:disabled {
  cursor: default;
  background-color: transparent;
}
.header--top .header-nav > .sub-list .item:first-child > a {
  border-left: 1px solid #fff;
}
.header--top .header-nav > .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 24px;
}
@media (max-width: 1440px) {
  .header--top .header-nav > .list {
    gap: 0 16px;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list {
    gap: 0;
  }
}
.header--top .header-nav > .list .item > .mega-toggle,
.header--top .header-nav > .list .item > a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
  cursor: pointer;
  padding: 0;
  line-height: var(--header-logo-height);
  z-index: 2;
}
.header--top .header-nav > .list .item > .mega-toggle span,
.header--top .header-nav > .list .item > a span {
  color: #fff;
}
@media (max-width: 1440px) {
  .header--top .header-nav > .list .item > .mega-toggle,
  .header--top .header-nav > .list .item > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item > .mega-toggle,
  .header--top .header-nav > .list .item > a {
    padding: 0 0 0 24px;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
  }
}
.header--top .header-nav > .list .item > .mega-toggle::after,
.header--top .header-nav > .list .item > a::after {
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
  background: rgb(0, 91.425, 96.6);
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item > .mega-toggle::after,
  .header--top .header-nav > .list .item > a::after {
    content: none;
    display: none;
  }
}
.header--top .header-nav > .list .item > .mega-toggle:focus-visible, .header--top .header-nav > .list .item > .mega-toggle.current,
.header--top .header-nav > .list .item > a:focus-visible,
.header--top .header-nav > .list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item > .mega-toggle:focus-visible, .header--top .header-nav > .list .item > .mega-toggle.current,
  .header--top .header-nav > .list .item > a:focus-visible,
  .header--top .header-nav > .list .item > a.current {
    color: #fff;
  }
}
.header--top .header-nav > .list .item > .mega-toggle:focus-visible::after, .header--top .header-nav > .list .item > .mega-toggle.current::after,
.header--top .header-nav > .list .item > a:focus-visible::after,
.header--top .header-nav > .list .item > a.current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (any-hover: hover) {
  .header--top .header-nav > .list .item > .mega-toggle:hover,
  .header--top .header-nav > .list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top .header-nav > .list .item > .mega-toggle:hover,
  .header--top .header-nav > .list .item > a:hover {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header--top .header-nav > .list .item > .mega-toggle:hover::after,
  .header--top .header-nav > .list .item > a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (hover: none) {
  .header--top .header-nav > .list .item > .mega-toggle:active,
  .header--top .header-nav > .list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top .header-nav > .list .item > .mega-toggle:active,
  .header--top .header-nav > .list .item > a:active {
    color: #fff;
  }
}
@media (hover: none) {
  .header--top .header-nav > .list .item > .mega-toggle:active::after,
  .header--top .header-nav > .list .item > a:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header--top .header-nav > .list .item > .mega-toggle:disabled,
.header--top .header-nav > .list .item > a:disabled {
  cursor: default;
  background-color: transparent;
}
.header--top .header-nav > .list .item.has-mega > .mega {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: var(--mega-padding-block-top) var(--mega-padding-inline) var(--mega-padding-block-bottom);
  margin: 42px 0 0 0;
}
@media (max-width: 1440px) {
  .header--top .header-nav > .list .item.has-mega > .mega {
    margin: 42px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega {
    margin: 0;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega {
  -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1440px) {
  .header--top .header-nav > .list .item.has-mega > .mega {
    padding: var(--mega-padding-block-top) var(--mega-padding-inline) var(--mega-padding-block-bottom);
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner {
    padding: 0 20px;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner {
  max-width: 1400px;
  padding: 0;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
  grid-template-columns: repeat(auto-fit, var(--mega-tech-card-width));
  gap: 16px 30px;
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
    gap: 14px 25px;
  }
}
@media (max-width: 480px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
    gap: 2vw 3.75vw;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
  max-width: 1520px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 0;
}
@media (max-width: 1280px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) {
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "title title title" "physicality molding designing";
  gap: var(--mega-tech-gapY) 16px;
  border-right: 1px solid #d2d2d2;
}
@media (max-width: 1280px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "title title" "physicality molding" "designing designing";
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    border-right: none;
    display: block;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing {
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
    border-bottom: 1px dotted #009fa8;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality .list,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding .list,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing .list {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .list,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .list,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .list {
    max-height: 1000px;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .sub-title .icon::before,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .sub-title .icon::before,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .sub-title .icon::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.physicality.open .sub-title .icon::after,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.molding.open .sub-title .icon::after,
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .item.designing.open .sub-title .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title:disabled {
  cursor: default;
  background-color: transparent;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
  }
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    inset: 0;
    text-align: left;
  }
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
    position: relative;
    inset: 0;
  }
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title {
    padding: 16px 0 16px 24px;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
    font-size: 1.6rem;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  color: #009fa8;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 5vw;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span {
  color: #009fa8;
  font-weight: 500;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title span:not(:first-child) {
    margin-top: 0vw;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
  display: none;
  position: absolute;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon {
    position: relative;
    display: block;
    cursor: pointer;
    right: 1px;
    top: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 3;
    padding: 16px 16px 16px calc(25px + 1em);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::before, .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    left: 32px;
    background-color: #009fa8;
    display: block;
    border-right: 1px dotted #009fa8;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title .icon::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title + .list {
  margin-top: 8px;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .sub-title + .list {
    margin-top: 0;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
  color: #009fa8;
  grid-area: title;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title {
    padding: 16px 0 16px 24px;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .title + .item {
    border-top: 1px dotted #009fa8;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .physicality {
  grid-area: physicality;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .molding {
  grid-area: molding;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech .designing {
  grid-area: designing;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .list + .list {
  margin-top: 12px;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .list + .list {
    margin-top: 0;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega {
  margin-top: 0;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item.open > .mega > .list {
    border-top: 1px dotted #009fa8;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item {
  border: 1px solid #009fa8;
  color: #009fa8;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  margin-top: 4px;
  padding: 12px 16px 10px;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item {
    margin-top: 0;
    border: none;
    border-radius: 0;
    padding: 16px 16px 14px;
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #009fa8;
  background-color: rgba(0, 159, 168, 0.05);
}
@media (any-hover: hover) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
@media (hover: none) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #009fa8;
    background-color: rgba(0, 159, 168, 0.05);
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item img[src*="logo_lemalloy.svg"] {
  height: 14px;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item span {
  color: #627a86;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item span.name {
  font-size: 1.8rem;
  font-weight: 700;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:has(.product-logos) {
  padding: 12px 16px;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item:has(.product-logos) {
    padding: 16px;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech > .item > .mega > .list > .item .product-logos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .mega-tech {
    padding: 0;
  }
}
.header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
  max-width: var(--mega-tech-card-list-width);
  width: 100%;
  margin: calc(var(--mega-tech-titleHeight) + var(--mega-tech-gapY)) auto 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 1280px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
    width: calc(var(--mega-tech-card-width) + 80px);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega > .mega .mega-inner:has(.mega-tech) .card-list {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    margin-top: 0;
  }
}
.header--top .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon {
  bottom: inherit;
  top: 2px;
}
.header--top .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega:focus-visible .mega-toggle .icon::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header--top .header-nav > .list .item.has-mega:focus-visible > .mega {
  visibility: visible;
  opacity: 1;
  margin: 62px 0 0 0;
}
@media (max-width: 1440px) {
  .header--top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 62px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 0;
  }
}
@media (any-hover: hover) {
  .header--top .header-nav > .list .item.has-mega:hover .mega-toggle .icon {
    bottom: inherit;
    top: 2px;
  }
  .header--top .header-nav > .list .item.has-mega:hover .mega-toggle .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header--top .header-nav > .list .item.has-mega:hover > .mega {
    visibility: visible;
    opacity: 1;
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1440px) {
  .header--top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 0;
  }
}
@media (hover: none) {
  .header--top .header-nav > .list .item.has-mega:active .mega-toggle .icon {
    bottom: inherit;
    top: 2px;
  }
  .header--top .header-nav > .list .item.has-mega:active .mega-toggle .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header--top .header-nav > .list .item.has-mega:active > .mega {
    visibility: visible;
    opacity: 1;
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1440px) {
  .header--top .header-nav > .list .item.has-mega:active > .mega {
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top .header-nav > .list .item.has-mega:active > .mega {
    margin: 0;
  }
}
.header--top .header-nav > .list .item .mega-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.header--top .header-nav > .list .item .mega-toggle .icon {
  position: relative;
  bottom: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
.header--top .btn--inquiry {
  font-size: 1.4rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  color: #009fa8;
  background-image: none;
  padding: 8px 40px;
}
.header--top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .header--top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .header--top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 0vw;
  }
}
.header--top .btn--inquiry::before {
  background-image: none;
}
.header--top .btn--inquiry:focus-visible {
  background-color: #009fa8;
  color: #fff;
  border-color: #fff;
}
@media (any-hover: hover) {
  .header--top .btn--inquiry:hover {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
@media (hover: none) {
  .header--top .btn--inquiry:active {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
.header--top.top {
  background: #fff;
  color: #333;
  padding: 0;
}
@media (max-width: 768px) {
  .header--top.top {
    background: #fff;
  }
}
.header--top.top .header-inner {
  padding-top: 24px;
  padding-bottom: 22px;
  color: #333;
}
@media (max-width: 1440px) {
  .header--top.top .header-inner {
    padding-top: 18px;
    padding-bottom: 16px;
    padding-left: var(--header-padding-inline-tab);
    padding-right: var(--header-padding-inline-tab);
  }
}
@media (max-width: 768px) {
  .header--top.top .header-inner {
    background-color: rgba(0, 159, 168, 0);
    padding-top: var(--header-padding-block-tab);
    padding-bottom: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
.header--top.top .header-nav > .sub-list .item > a {
  color: #627a86;
  border-color: #627a86;
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .sub-list .item > a {
    color: #fff;
  }
}
.header--top.top .header-nav > .sub-list .item > a:focus-visible, .header--top.top .header-nav > .sub-list .item > a.current {
  color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .sub-list .item > a:focus-visible, .header--top.top .header-nav > .sub-list .item > a.current {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header--top.top .header-nav > .sub-list .item > a:hover {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top.top .header-nav > .sub-list .item > a:hover {
    color: #fff;
  }
}
@media (hover: none) {
  .header--top.top .header-nav > .sub-list .item > a:active {
    color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top.top .header-nav > .sub-list .item > a:active {
    color: #fff;
  }
}
.header--top.top .header-nav > .list .item > a,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle {
  color: #333;
}
.header--top.top .header-nav > .list .item > a span,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle span {
  color: #333;
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .list .item > a,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle {
    color: #fff;
  }
  .header--top.top .header-nav > .list .item > a span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle span {
    color: #fff;
  }
}
.header--top.top .header-nav > .list .item > a .icon::after,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle .icon::after {
  border-color: #333;
}
.header--top.top .header-nav > .list .item > a:focus-visible, .header--top.top .header-nav > .list .item > a.current,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle.current {
  color: rgb(0, 91.425, 96.6);
}
.header--top.top .header-nav > .list .item > a:focus-visible span, .header--top.top .header-nav > .list .item > a.current span,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible span,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle.current span {
  color: rgb(0, 91.425, 96.6);
}
.header--top.top .header-nav > .list .item > a:focus-visible .icon::after, .header--top.top .header-nav > .list .item > a.current .icon::after,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible .icon::after,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle.current .icon::after {
  border-color: rgb(0, 91.425, 96.6);
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .list .item > a:focus-visible, .header--top.top .header-nav > .list .item > a.current,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle.current {
    color: #fff;
  }
  .header--top.top .header-nav > .list .item > a:focus-visible span, .header--top.top .header-nav > .list .item > a.current span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle.current span {
    color: #fff;
  }
}
.header--top.top .header-nav > .list .item > a:focus-visible::after, .header--top.top .header-nav > .list .item > a.current::after,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle:focus-visible::after,
.header--top.top .header-nav > .list .item.has-mega .mega-toggle.current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (any-hover: hover) {
  .header--top.top .header-nav > .list .item > a:hover,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover {
    color: rgb(0, 91.425, 96.6);
  }
  .header--top.top .header-nav > .list .item > a:hover span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover span {
    color: rgb(0, 91.425, 96.6);
  }
  .header--top.top .header-nav > .list .item > a:hover .icon::after,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover .icon::after {
    border-color: rgb(0, 91.425, 96.6);
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top.top .header-nav > .list .item > a:hover,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover {
    color: #fff;
  }
  .header--top.top .header-nav > .list .item > a:hover span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover span {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header--top.top .header-nav > .list .item > a:hover::after,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (hover: none) {
  .header--top.top .header-nav > .list .item > a:active,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active {
    color: rgb(0, 91.425, 96.6);
  }
  .header--top.top .header-nav > .list .item > a:active span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active span {
    color: rgb(0, 91.425, 96.6);
  }
  .header--top.top .header-nav > .list .item > a:active .icon::after,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active .icon::after {
    border-color: rgb(0, 91.425, 96.6);
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top.top .header-nav > .list .item > a:active,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active {
    color: #fff;
  }
  .header--top.top .header-nav > .list .item > a:active span,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active span {
    color: #fff;
  }
}
@media (hover: none) {
  .header--top.top .header-nav > .list .item > a:active::after,
  .header--top.top .header-nav > .list .item.has-mega .mega-toggle:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header--top.top .header-nav > .list .item.has-mega > .mega {
  margin: 48px 0 0 0;
}
@media (max-width: 1440px) {
  .header--top.top .header-nav > .list .item.has-mega > .mega {
    margin: 42px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .list .item.has-mega > .mega {
    margin: 0;
  }
}
.header--top.top .header-nav > .list .item.has-mega:focus-visible > .mega {
  margin: 68px 0 0 0;
}
@media (max-width: 1440px) {
  .header--top.top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 62px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .header--top.top .header-nav > .list .item.has-mega:focus-visible > .mega {
    margin: 0;
  }
}
@media (any-hover: hover) {
  .header--top.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 68px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1440px) {
  .header--top.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 62px 0 0 0;
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .header--top.top .header-nav > .list .item.has-mega:hover > .mega {
    margin: 0;
  }
}
@media (hover: none) {
  .header--top.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 68px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1440px) {
  .header--top.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 62px 0 0 0;
  }
}
@media (hover: none) and (max-width: 1000px) {
  .header--top.top .header-nav > .list .item.has-mega:active > .mega {
    margin: 0;
  }
}
.header--top.top .btn--inquiry {
  background-color: #009fa8;
  color: #fff;
  z-index: 3;
}
.header--top.top .btn--inquiry:focus-visible {
  background-color: #fff;
  color: #009fa8;
  border-color: #009fa8;
}
@media (any-hover: hover) {
  .header--top.top .btn--inquiry:hover {
    background-color: #fff;
    color: #009fa8;
    border-color: #009fa8;
  }
}
@media (hover: none) {
  .header--top.top .btn--inquiry:active {
    background-color: #fff;
    color: #009fa8;
    border-color: #009fa8;
  }
}

.nav-toggle-button {
  display: none;
}
@media (max-width: 1000px) {
  .nav-toggle-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 30px;
    width: 34px;
    background-color: #009fa8;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.75);
    z-index: 98;
    border-radius: 4px;
    cursor: pointer;
  }
}
.nav-toggle-button .text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  opacity: 0;
}
.nav-toggle-button .bar,
.nav-toggle-button .bar::before,
.nav-toggle-button .bar::after {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  border-radius: 3px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}
.nav-toggle-button .bar:before {
  bottom: 7px;
}
.nav-toggle-button .bar:after {
  top: 7px;
}

.nav-toggle-button.open .bar {
  background: rgba(255, 255, 255, 0);
}

.nav-toggle-button.open .bar::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-toggle-button.open .bar::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-toggle-overlay {
  display: none;
}
@media (max-width: 1000px) {
  .nav-toggle-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 99;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: block;
    cursor: pointer;
  }
}

.nav-toggle-button.open + .nav-toggle-overlay {
  left: 0;
}

@media (max-width: 1000px) {
  .header--top .header-nav,
  .header--top.top .header-nav,
  .header .header-nav,
  .header.top .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(0, 159, 168, 0.9);
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    z-index: 100;
    visibility: hidden;
    overflow-y: auto;
  }
}
.header--top .header-nav .item > a .icon,
.header--top.top .header-nav .item > a .icon,
.header .header-nav .item > a .icon,
.header.top .header-nav .item > a .icon {
  display: none;
}
@media (max-width: 1000px) {
  .header--top .header-nav .item > a .icon,
  .header--top.top .header-nav .item > a .icon,
  .header .header-nav .item > a .icon,
  .header.top .header-nav .item > a .icon {
    display: block;
    cursor: pointer;
    inset: 0;
    right: 32px;
    position: absolute;
    width: 10px;
    height: 10px;
    margin: auto 0 auto auto;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .item > a .icon::after,
  .header--top.top .header-nav .item > a .icon::after,
  .header .header-nav .item > a .icon::after,
  .header.top .header-nav .item > a .icon::after {
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .sub-list,
  .header--top.top .header-nav .sub-list,
  .header .header-nav .sub-list,
  .header.top .header-nav .sub-list {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .sub-list .item,
  .header--top.top .header-nav .sub-list .item,
  .header .header-nav .sub-list .item,
  .header.top .header-nav .sub-list .item {
    width: 100%;
    border-bottom: 1px dotted #fff;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .sub-list .item > a,
  .header--top.top .header-nav .sub-list .item > a,
  .header .header-nav .sub-list .item > a,
  .header.top .header-nav .sub-list .item > a {
    padding: 16px 24px;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list,
  .header--top.top .header-nav .list,
  .header .header-nav .list,
  .header.top .header-nav .list {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item,
  .header--top.top .header-nav .list .item,
  .header .header-nav .list .item,
  .header.top .header-nav .list .item {
    margin: 0;
    padding: 0;
    border-bottom: 1px dotted #fff;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle .icon,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle .icon,
  .header .header-nav .list .item.has-mega .mega-toggle .icon,
  .header.top .header-nav .list .item.has-mega .mega-toggle .icon {
    position: absolute;
    display: block;
    cursor: pointer;
    right: 1px;
    padding: 30px;
    top: 9px;
    z-index: 3;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle .icon::before,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle .icon::before,
  .header .header-nav .list .item.has-mega .mega-toggle .icon::before,
  .header.top .header-nav .list .item.has-mega .mega-toggle .icon::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    left: 32px;
    background-color: #fff;
    top: 48%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle .icon::after,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle .icon::after,
  .header .header-nav .list .item.has-mega .mega-toggle .icon::after,
  .header.top .header-nav .list .item.has-mega .mega-toggle .icon::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    left: 32px;
    background-color: #fff;
    border-color: #fff;
    top: 48%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.open .mega-toggle .icon::before,
  .header--top.top .header-nav .list .item.open .mega-toggle .icon::before,
  .header .header-nav .list .item.open .mega-toggle .icon::before,
  .header.top .header-nav .list .item.open .mega-toggle .icon::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.open .mega-toggle .icon::after,
  .header--top.top .header-nav .list .item.open .mega-toggle .icon::after,
  .header .header-nav .list .item.open .mega-toggle .icon::after,
  .header.top .header-nav .list .item.open .mega-toggle .icon::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.header--top .header-nav .list .item.has-mega > .mega,
.header--top.top .header-nav .list .item.has-mega > .mega,
.header .header-nav .list .item.has-mega > .mega,
.header.top .header-nav .list .item.has-mega > .mega {
  z-index: 1;
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega > .mega,
  .header--top.top .header-nav .list .item.has-mega > .mega,
  .header .header-nav .list .item.has-mega > .mega,
  .header.top .header-nav .list .item.has-mega > .mega {
    opacity: 0;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    visibility: hidden;
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media),
  .header--top.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media),
  .header .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media),
  .header.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) {
    display: block;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media,
  .header--top.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media,
  .header .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media,
  .header.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media {
    padding: 16px 0 16px 24px;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.8rem;
    display: block;
    visibility: hidden;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media figure,
  .header--top.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media figure,
  .header .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media figure,
  .header.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media figure {
    display: none;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media .text,
  .header--top.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media .text,
  .header .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media .text,
  .header.top .header-nav .list .item.has-mega > .mega .mega-inner .card-list:has(.card--media) .card--media .text {
    color: #009fa8 !important;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega.open .mega-toggle + .mega,
  .header--top.top .header-nav .list .item.has-mega.open .mega-toggle + .mega,
  .header .header-nav .list .item.has-mega.open .mega-toggle + .mega,
  .header.top .header-nav .list .item.has-mega.open .mega-toggle + .mega {
    max-height: 1000px;
    opacity: 0.9;
    visibility: visible;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner .card--media,
  .header--top.top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner .card--media,
  .header .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner .card--media,
  .header.top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner .card--media {
    visibility: visible;
  }
}
.header--top .header-nav .list .item.has-mega .mega-toggle,
.header--top.top .header-nav .list .item.has-mega .mega-toggle,
.header .header-nav .list .item.has-mega .mega-toggle,
.header.top .header-nav .list .item.has-mega .mega-toggle {
  position: relative;
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle,
  .header .header-nav .list .item.has-mega .mega-toggle,
  .header.top .header-nav .list .item.has-mega .mega-toggle {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
  }
  .header--top .header-nav .list .item.has-mega .mega-toggle span,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle span,
  .header .header-nav .list .item.has-mega .mega-toggle span,
  .header.top .header-nav .list .item.has-mega .mega-toggle span {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    inset: 0;
    text-align: left;
  }
  .header--top .header-nav .list .item.has-mega .mega-toggle .icon,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle .icon,
  .header .header-nav .list .item.has-mega .mega-toggle .icon,
  .header.top .header-nav .list .item.has-mega .mega-toggle .icon {
    position: relative;
    inset: 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle a,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle a,
  .header .header-nav .list .item.has-mega .mega-toggle a,
  .header.top .header-nav .list .item.has-mega .mega-toggle a {
    position: relative;
  }
  .header--top .header-nav .list .item.has-mega .mega-toggle a::after,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle a::after,
  .header .header-nav .list .item.has-mega .mega-toggle a::after,
  .header.top .header-nav .list .item.has-mega .mega-toggle a::after {
    content: "";
    width: 1px;
    height: 75%;
    display: block;
    position: absolute;
    margin: auto 0 auto auto;
    border-right: 1px dotted #fff;
    background-color: transparent;
    -webkit-transform: none;
            transform: none;
    inset: 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega .mega-toggle + .mega .mega-inner,
  .header--top.top .header-nav .list .item.has-mega .mega-toggle + .mega .mega-inner,
  .header .header-nav .list .item.has-mega .mega-toggle + .mega .mega-inner,
  .header.top .header-nav .list .item.has-mega .mega-toggle + .mega .mega-inner {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .header--top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner,
  .header--top.top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner,
  .header .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner,
  .header.top .header-nav .list .item.has-mega.open .mega-toggle + .mega .mega-inner {
    max-height: 1000px; /* 展開 */
  }
}
@media (max-width: 1000px) {
  .header--top .btn--inquiry,
  .header--top.top .btn--inquiry,
  .header .btn--inquiry,
  .header.top .btn--inquiry {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
    background-color: #fff;
    color: #009fa8;
    padding: 10px 40px;
    font-size: 1.6rem;
  }
  .header--top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort),
  .header--top.top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort),
  .header .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort),
  .header.top .btn--inquiry:not(:first-child, .btn--anchor, .btn--tab, .btn--primary-sort, .btn--secondary-sort) {
    margin-top: 24px;
  }
  .header--top .btn--inquiry:focus-visible,
  .header--top.top .btn--inquiry:focus-visible,
  .header .btn--inquiry:focus-visible,
  .header.top .btn--inquiry:focus-visible {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
@media (max-width: 1000px) and (any-hover: hover) {
  .header--top .btn--inquiry:hover,
  .header--top.top .btn--inquiry:hover,
  .header .btn--inquiry:hover,
  .header.top .btn--inquiry:hover {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}
@media (max-width: 1000px) and (hover: none) {
  .header--top .btn--inquiry:active,
  .header--top.top .btn--inquiry:active,
  .header .btn--inquiry:active,
  .header.top .btn--inquiry:active {
    background-color: #009fa8;
    color: #fff;
    border-color: #fff;
  }
}

@media (max-width: 1000px) {
  .nav-toggle-button.open ~ .header-nav {
    left: 0; /* 横スライド表示 */
    visibility: visible;
  }
}

@media (max-width: 1000px) {
  .nav-toggle-button.open ~ .header-nav .item {
    margin-left: 0;
  }
}

body.is-menu-open .header--top,
body.is-menu-open .header {
  position: fixed;
}

/*--------------------------------------------------
ＶＩＳＵＡＬ
--------------------------------------------------*/
.page-hero {
  height: 360px;
  margin: 0 auto 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  background-position: center center;
  background-repeat: none;
  background-color: #909090;
}
@media (max-width: 1440px) {
  .page-hero {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 200px;
    margin: 0 auto 16px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    height: 160px;
    padding: 0 0 0 0;
    margin: 0 auto 8px;
  }
}
.page-hero .title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  text-align: center;
}
.page-hero .title span {
  font-size: 5rem;
  line-height: 5.6rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: #fff;
}
.page-hero .title span + p {
  color: #fff;
  font-size: 2.2rem;
  line-height: 5rem;
  margin: 0 0 40px 0;
}
@media (max-width: 1440px) {
  .page-hero .title span {
    font-size: 3.2rem;
    line-height: 3.4rem;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 768px) {
  .page-hero .title span {
    font-size: 3rem;
    line-height: 3.4rem;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 480px) {
  .page-hero .title span {
    font-size: 1.8rem;
    line-height: 2.6rem;
    text-align: center;
    margin: 0 auto;
  }
}
.page-hero .title span {
  font-size: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 5.6rem;
}
@media (max-width: 480px) {
  .page-hero .title span {
    font-size: 2.2rem;
    letter-spacing: normal;
  }
}
.page-hero .title span {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.page-hero .title::before {
  content: attr(data-text);
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
  line-height: 2rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .page-hero .title::before {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
.page-hero.service {
  background-image: url(./../images/service/bg_service.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.service {
    background-image: url(./../images/service/bg_sp_service.webp?v=20260401-1400);
  }
}
.page-hero.environment {
  background-image: url(./../images/environment/key_environment.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.environment {
    background-image: url(./../images/environment/key_sp_environment.webp?v=20260401-1400);
  }
}
.page-hero.recruit {
  background-image: url(./../images/recruit/key_recruit.webp?v=20260401-1400);
  background-size: cover;
}
.page-hero.answer {
  background-image: url(./../images/environment/key_answer.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.answer {
    background-image: url(./../images/environment/key_sp_answer.webp?v=20260401-1400);
  }
}
.page-hero.iscc_plus {
  background-image: url(./../images/environment/key_iscc_plus.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.iscc_plus {
    background-image: url(./../images/environment/key_sp_iscc_plus.webp?v=20260401-1400);
  }
}
.page-hero.iso {
  background-image: url(./../images/environment/key_iso.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.iso {
    background-image: url(./../images/environment/key_sp_iso.webp?v=20260401-1400);
  }
}
.page-hero.compliance {
  background-image: url(./../images/compliance/key_compliance.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.compliance {
    background-image: url(./../images/compliance/key_sp_compliance.webp?v=20260401-1400);
  }
}
.page-hero.inquiry {
  background-image: url(./../images/inquiry/bg_inquiry.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.inquiry {
    background-image: url(./../images/inquiry/bg_sp_inquiry.webp?v=20260401-1400);
  }
}
.page-hero.company {
  background-image: url(./../images/company/bg_company.webp?v=20260401-1400);
  background-size: cover;
}
.page-hero.message {
  background-image: url(./../images/company/bg_message.webp?v=20260401-1400);
  background-position: right center;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.message {
    background-image: url(./../images/company/bg_sp_message.webp?v=20260401-1400);
  }
}
.page-hero.philosophy {
  background-image: url(./../images/company/bg_philosophy.webp?v=20260401-1400);
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.philosophy {
    background-image: url(./../images/company/bg_sp_philosophy.webp?v=20260401-1400);
  }
}
.page-hero.info {
  background-image: url(./../images/info/bg_info.webp?v=20260401-1400);
  background-size: cover;
}
.page-hero.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.6))), url(./../images/inquiry/bg_inquiry.webp?v=20260401-1400) no-repeat bottom 50% right;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)), url(./../images/inquiry/bg_inquiry.webp?v=20260401-1400) no-repeat bottom 50% right;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)), url(./../images/inquiry/bg_inquiry.webp?v=20260401-1400) no-repeat bottom 50% right;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.contact {
    background-position: center center;
    background-size: cover;
  }
}
.page-hero.product {
  background: url(./../images/product/bg_product.webp?v=20260401-1400) no-repeat bottom right;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.product {
    background-image: url(./../images/product/bg_sp_product.webp?v=20260401-1400);
  }
}
.page-hero.product .title {
  -webkit-filter: drop-shadow(0 1px 1px rgba(51, 51, 51, 0.2)) drop-shadow(0 0 1px rgba(98, 122, 134, 0.1));
          filter: drop-shadow(0 1px 1px rgba(51, 51, 51, 0.2)) drop-shadow(0 0 1px rgba(98, 122, 134, 0.1));
}
.page-hero.application {
  background: url(./../images/product/bg_application.webp?v=20260401-1400) no-repeat bottom right;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.application {
    background-image: url(./../images/product/bg_sp_application.webp?v=20260401-1400);
  }
}
.page-hero.solution {
  background: url(./../images/product/bg_solution.webp?v=20260401-1400) no-repeat bottom right;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.solution {
    background-image: url(./../images/product/bg_sp_solution.webp?v=20260401-1400);
  }
}
.page-hero.not-found {
  background: url(./../images/common/bg_404_not_found.webp?v=20260401-1400) no-repeat bottom right;
  background-size: cover;
}
@media (max-width: 768px) {
  .page-hero.not-found {
    background-image: url(./../images/common/bg_sp_404_not_found.webp?v=20260401-1400);
  }
}
.page-hero.not-found .title::before {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .page-hero.not-found .title::before {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .page-hero.not-found .title::before {
    font-size: 2.2rem;
  }
}
.page-hero.not-found .title span {
  line-height: 1.5;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-hero.not-found .title span {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .page-hero.not-found .title span {
    margin-top: 2vw;
  }
}
@media (max-width: 480px) {
  .page-hero.not-found .title span {
    line-height: 1.5;
  }
}

/*--------------------------------------------------
ＢＲＥＡＤ ＣＲＵＭＢ
--------------------------------------------------*/
.breadcrumb {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0 20px;
  }
}
.breadcrumb {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .breadcrumb {
    margin-top: 2vw;
  }
}
.breadcrumb ol {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #999;
  gap: 4px 0;
}
@media (max-width: 768px) {
  .breadcrumb ol {
    overflow: scroll;
    width: 100%;
    word-break: keep-all;
    white-space: nowrap;
    margin: 0 auto 32px;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.breadcrumb ol li {
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .breadcrumb ol li {
    font-size: 1.2rem;
  }
}
.breadcrumb ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #777;
}
.breadcrumb ol li a {
  color: #999999;
  text-decoration: underline;
}
.breadcrumb ol li::after {
  display: block;
  margin: 0 1rem;
  content: ">";
}
.breadcrumb ol li:last-child::after {
  display: none;
}

.main:has(.page-history) .breadcrumb {
  max-width: var(--containerWidthLg);
}

/*--------------------------------------------------
ＬＩＳＴ
--------------------------------------------------*/
.list--square {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 24px;
}
@media (max-width: 768px) {
  .list--square {
    gap: 9px 20px;
  }
}
@media (max-width: 480px) {
  .list--square {
    gap: 1.25vw 3vw;
  }
}
.list--square li {
  display: inline-block;
  padding-left: 2rem;
  text-indent: -2rem;
}
@media (max-width: 768px) {
  .list--square li {
    line-height: 2rem;
  }
}
.list--square li::before {
  display: inline-block;
  content: "";
  position: relative;
}
.list--square li {
  width: 100%;
}
.list--square li::before {
  width: 1.2rem;
  aspect-ratio: 1;
  border-radius: 2px;
  margin: 0 1rem 0.1em 0;
  background-color: #009fa8;
}
.list--dot {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 24px;
}
@media (max-width: 768px) {
  .list--dot {
    gap: 9px 20px;
  }
}
@media (max-width: 480px) {
  .list--dot {
    gap: 1.25vw 3vw;
  }
}
.list--dot li {
  display: inline-block;
  padding-left: 2rem;
  text-indent: -2rem;
}
@media (max-width: 768px) {
  .list--dot li {
    line-height: 2rem;
  }
}
.list--dot li::before {
  display: inline-block;
  content: "";
  position: relative;
}
.list--dot li::before {
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 9999px;
  margin: 0 1.35rem 0.1em 0.35rem;
  background-color: #009fa8;
}
.list--decimal, .list--decimal--black {
  width: 100%;
  display: block;
}
.list--decimal li, .list--decimal--black li {
  display: block;
  padding-left: 2rem;
  text-indent: -2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .list--decimal li, .list--decimal--black li {
    line-height: 2rem;
  }
}
.list--decimal li .number, .list--decimal--black li .number {
  color: #009fa8;
  width: 2rem;
  text-indent: 0;
  font-weight: bold;
  display: inline-block;
}
.list--decimal li .number--large, .list--decimal--black li .number--large {
  width: 4rem;
}
.list--decimal li:not(:first-child), .list--decimal--black li:not(:first-child) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .list--decimal li:not(:first-child), .list--decimal--black li:not(:first-child) {
    margin-top: 9px;
  }
}
@media (max-width: 480px) {
  .list--decimal li:not(:first-child), .list--decimal--black li:not(:first-child) {
    margin-top: 1.25vw;
  }
}
.list--decimal li:has(> .number--large), .list--decimal--black li:has(> .number--large) {
  padding-left: 6rem;
  text-indent: -6rem;
}
.list--decimal--black li .number {
  color: #009fa8;
  width: 2rem;
  text-indent: 0;
  font-weight: bold;
  display: inline-block;
  color: #333;
  font-weight: normal;
}
.list--decimal--black li .number--large {
  color: #009fa8;
  width: 2rem;
  text-indent: 0;
  font-weight: bold;
  display: inline-block;
  color: #333;
  font-weight: normal;
  width: 4rem;
}
.list--step {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 24px;
}
@media (max-width: 768px) {
  .list--step {
    gap: 9px 20px;
  }
}
@media (max-width: 480px) {
  .list--step {
    gap: 1.25vw 3vw;
  }
}
.list--step {
  counter-reset: num;
  border-left: 1px solid #d2d2d2;
  margin-left: 20px;
  position: relative;
  color: #627a86;
  gap: 54px;
}
@media (max-width: 768px) {
  .list--step {
    gap: 26px;
  }
}
.list--step > li {
  display: inline-block;
  padding-left: 4rem;
  text-indent: -4rem;
  counter-increment: num;
  display: block;
  position: relative;
  left: -13px;
}
@media (max-width: 768px) {
  .list--step > li {
    line-height: 2rem;
  }
}
.list--step > li > .number {
  display: inline-block;
  position: relative;
  background-color: #009fa8;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  width: 2.6rem;
  aspect-ratio: 1;
  line-height: 2.6rem;
  text-indent: 0;
  content: counter(num);
  font-weight: bold;
  top: -2px;
  margin: 0 2rem 0 0;
  vertical-align: middle;
}
.list--step > li .list--decimal--black {
  margin-top: 16px;
  margin-left: 8px;
}
.list--step > li .list--decimal--black li .number,
.list--step > li .list--decimal--black li .number--large {
  color: #627a86;
  font-weight: normal;
  width: 4rem;
  font-weight: bold;
  text-indent: 0;
}
.list--step > li .list--decimal--black li .number--large {
  width: 6rem;
}
.list--step > li .list--decimal--black li:has(> .number) {
  padding-left: 4rem;
  text-indent: -4rem;
}
.list--step > li .list--decimal--black li:has(> .number--large) {
  padding-left: 6rem;
  text-indent: -6rem;
}
.list--step > li .list--decimal--black li > .list--decimal--black {
  padding-left: 0;
  text-indent: 0;
}
.list--note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 24px;
}
@media (max-width: 768px) {
  .list--note {
    gap: 9px 20px;
  }
}
@media (max-width: 480px) {
  .list--note {
    gap: 1.25vw 3vw;
  }
}
.list--note li {
  display: inline-block;
  padding-left: 2rem;
  text-indent: -2rem;
}
@media (max-width: 768px) {
  .list--note li {
    line-height: 2rem;
  }
}
.list--note li::before {
  display: inline-block;
  content: "";
  position: relative;
}
.list--note li {
  font-size: 1.2rem;
  width: 100%;
  padding-left: 0;
  text-indent: 0;
}
.list--note li p {
  font-size: 1.2rem;
}
.list--note li::before {
  content: none;
}

.dlist--plain dt {
  color: #009fa8;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .dlist--plain dt {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .dlist--plain dt {
    font-size: 1.6rem;
  }
}
.dlist--plain dt {
  display: inline-block;
  padding-left: 2.4rem;
  text-indent: -2.4rem;
}
@media (max-width: 768px) {
  .dlist--plain dt {
    font-size: 1.6rem;
    padding-left: 1.6rem;
    text-indent: -1.6rem;
  }
}
.dlist--plain dt::before {
  display: inline-block;
  content: "";
  position: relative;
}
.dlist--plain dt:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .dlist--plain dt:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .dlist--plain dt:not(:first-child) {
    margin-top: 2vw;
  }
}
.dlist--plain dd {
  margin-top: 4px;
  padding-left: 2.4rem;
}
@media (max-width: 768px) {
  .dlist--plain dd {
    padding-left: 1.6rem;
  }
}
.dlist--plain dt {
  padding-left: 0;
  text-indent: 0;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .dlist--plain dt {
    font-size: 1.4rem;
  }
}
.dlist--plain dt {
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .dlist--plain dt {
    padding-left: 0;
    text-indent: 0;
  }
}
.dlist--plain dd {
  padding-left: 0;
}
@media (max-width: 768px) {
  .dlist--plain dd {
    padding-left: 0;
  }
}
.dlist--decimal dt, .dlist--decimal--black dt {
  color: #009fa8;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .dlist--decimal dt, .dlist--decimal--black dt {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .dlist--decimal dt, .dlist--decimal--black dt {
    font-size: 1.6rem;
  }
}
.dlist--decimal dt, .dlist--decimal--black dt {
  display: inline-block;
  padding-left: 2.4rem;
  text-indent: -2.4rem;
}
@media (max-width: 768px) {
  .dlist--decimal dt, .dlist--decimal--black dt {
    font-size: 1.6rem;
    padding-left: 1.6rem;
    text-indent: -1.6rem;
  }
}
.dlist--decimal dt::before, .dlist--decimal--black dt::before {
  display: inline-block;
  content: "";
  position: relative;
}
.dlist--decimal dt:not(:first-child), .dlist--decimal--black dt:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .dlist--decimal dt:not(:first-child), .dlist--decimal--black dt:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .dlist--decimal dt:not(:first-child), .dlist--decimal--black dt:not(:first-child) {
    margin-top: 2vw;
  }
}
.dlist--decimal dd, .dlist--decimal--black dd {
  margin-top: 4px;
  padding-left: 2.4rem;
}
@media (max-width: 768px) {
  .dlist--decimal dd, .dlist--decimal--black dd {
    padding-left: 1.6rem;
  }
}
.dlist--decimal, .dlist--decimal--black {
  position: relative;
}
.dlist--decimal dt .number, .dlist--decimal--black dt .number {
  color: #009fa8;
  display: inline-block;
  width: 2.4rem;
  text-align: center;
  text-indent: 0;
}
.dlist--decimal dt::before, .dlist--decimal--black dt::before {
  content: none;
}
.dlist--decimal--black dt,
.dlist--decimal--black dt .number {
  color: #333;
}
.dlist--square dt {
  color: #009fa8;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .dlist--square dt {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .dlist--square dt {
    font-size: 1.6rem;
  }
}
.dlist--square dt {
  display: inline-block;
  padding-left: 2.4rem;
  text-indent: -2.4rem;
}
@media (max-width: 768px) {
  .dlist--square dt {
    font-size: 1.6rem;
    padding-left: 1.6rem;
    text-indent: -1.6rem;
  }
}
.dlist--square dt::before {
  display: inline-block;
  content: "";
  position: relative;
}
.dlist--square dt:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .dlist--square dt:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .dlist--square dt:not(:first-child) {
    margin-top: 2vw;
  }
}
.dlist--square dd {
  margin-top: 4px;
  padding-left: 2.4rem;
}
@media (max-width: 768px) {
  .dlist--square dd {
    padding-left: 1.6rem;
  }
}
.dlist--square dt {
  font-size: 1.6rem;
  color: #333;
}
.dlist--square dt::before {
  width: 1.2rem;
  aspect-ratio: 1;
  border-radius: 2px;
  margin: 0 1rem 0.1em 0;
  background-color: #009fa8;
}

/*--------------------------------------------------
TABLE
--------------------------------------------------*/
.table--fluid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table--fluid th,
.table--fluid td {
  padding: 10px 18px;
}
.table--fluid {
  border: 1px solid #009fa8;
}
.table--fluid th,
.table--fluid td {
  border: 1px solid rgb(153, 216.6, 220.2);
}
.table--fluid th {
  background-color: rgb(229.5, 245.4, 246.3);
  color: #009fa8;
}
.table--fluid.color--text {
  border: 1px solid #333;
}
.table--fluid.color--text th,
.table--fluid.color--text td {
  border: 1px solid #333;
}
.table--fluid.color--text th {
  background-color: var(--timelineProductBgColor);
  color: #333;
}
.table--fluid th,
.table--fluid td {
  white-space: nowrap;
}
.table--lined {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table--lined th,
.table--lined td {
  padding: 10px 18px;
}
.table--lined {
  border-top: 1px solid #d2d2d2;
}
@media (max-width: 768px) {
  .table--lined thead {
    display: none;
  }
}
.table--lined tr {
  border-bottom: 1px solid #d2d2d2;
}
.table--lined tr th {
  padding: 30px 0;
  font-weight: normal;
  text-align: left;
}
@media (max-width: 768px) {
  .table--lined tr th {
    background-color: rgba(0, 159, 168, 0.3);
  }
}
.table--lined tr th,
.table--lined tr td {
  padding: 30px 0;
}
@media (max-width: 768px) {
  .table--lined tr th,
  .table--lined tr td {
    display: block;
    padding: 1rem;
  }
}
.table--lined .width--8 {
  width: 8px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--8 {
    width: 100% !important;
  }
}
.table--lined .width--16 {
  width: 16px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--16 {
    width: 100% !important;
  }
}
.table--lined .width--24 {
  width: 24px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--24 {
    width: 100% !important;
  }
}
.table--lined .width--32 {
  width: 32px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--32 {
    width: 100% !important;
  }
}
.table--lined .width--40 {
  width: 40px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--40 {
    width: 100% !important;
  }
}
.table--lined .width--48 {
  width: 48px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--48 {
    width: 100% !important;
  }
}
.table--lined .width--56 {
  width: 56px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--56 {
    width: 100% !important;
  }
}
.table--lined .width--64 {
  width: 64px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--64 {
    width: 100% !important;
  }
}
.table--lined .width--72 {
  width: 72px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--72 {
    width: 100% !important;
  }
}
.table--lined .width--80 {
  width: 80px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--80 {
    width: 100% !important;
  }
}
.table--lined .width--88 {
  width: 88px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--88 {
    width: 100% !important;
  }
}
.table--lined .width--96 {
  width: 96px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--96 {
    width: 100% !important;
  }
}
.table--lined .width--104 {
  width: 104px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--104 {
    width: 100% !important;
  }
}
.table--lined .width--112 {
  width: 112px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--112 {
    width: 100% !important;
  }
}
.table--lined .width--120 {
  width: 120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--120 {
    width: 100% !important;
  }
}
.table--lined .width--128 {
  width: 128px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--128 {
    width: 100% !important;
  }
}
.table--lined .width--136 {
  width: 136px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--136 {
    width: 100% !important;
  }
}
.table--lined .width--144 {
  width: 144px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--144 {
    width: 100% !important;
  }
}
.table--lined .width--152 {
  width: 152px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--152 {
    width: 100% !important;
  }
}
.table--lined .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--160 {
    width: 100% !important;
  }
}
.table--lined .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--160 {
    width: 100% !important;
  }
}
.table--lined .width--240 {
  width: 240px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--240 {
    width: 100% !important;
  }
}
.table--lined .width--320 {
  width: 320px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--320 {
    width: 100% !important;
  }
}
.table--lined .width--400 {
  width: 400px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--400 {
    width: 100% !important;
  }
}
.table--lined .width--480 {
  width: 480px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--480 {
    width: 100% !important;
  }
}
.table--lined .width--560 {
  width: 560px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--560 {
    width: 100% !important;
  }
}
.table--lined .width--640 {
  width: 640px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--640 {
    width: 100% !important;
  }
}
.table--lined .width--720 {
  width: 720px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--720 {
    width: 100% !important;
  }
}
.table--lined .width--800 {
  width: 800px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--800 {
    width: 100% !important;
  }
}
.table--lined .width--880 {
  width: 880px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--880 {
    width: 100% !important;
  }
}
.table--lined .width--960 {
  width: 960px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--960 {
    width: 100% !important;
  }
}
.table--lined .width--1040 {
  width: 1040px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--1040 {
    width: 100% !important;
  }
}
.table--lined .width--1120 {
  width: 1120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--1120 {
    width: 100% !important;
  }
}
.table--lined .width--1200 {
  width: 1200px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--1200 {
    width: 100% !important;
  }
}
.table--lined .width--1280 {
  width: 1280px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--1280 {
    width: 100% !important;
  }
}
.table--lined .width--5per {
  width: 5% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--5per {
    width: 100% !important;
  }
}
.table--lined .width--10per {
  width: 10% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--10per {
    width: 100% !important;
  }
}
.table--lined .width--15per {
  width: 15% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--15per {
    width: 100% !important;
  }
}
.table--lined .width--20per {
  width: 20% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--20per {
    width: 100% !important;
  }
}
.table--lined .width--25per {
  width: 25% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--25per {
    width: 100% !important;
  }
}
.table--lined .width--30per {
  width: 30% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--30per {
    width: 100% !important;
  }
}
.table--lined .width--35per {
  width: 35% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--35per {
    width: 100% !important;
  }
}
.table--lined .width--40per {
  width: 40% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--40per {
    width: 100% !important;
  }
}
.table--lined .width--45per {
  width: 45% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--45per {
    width: 100% !important;
  }
}
.table--lined .width--50per {
  width: 50% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--50per {
    width: 100% !important;
  }
}
.table--lined .width--55per {
  width: 55% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--55per {
    width: 100% !important;
  }
}
.table--lined .width--60per {
  width: 60% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--60per {
    width: 100% !important;
  }
}
.table--lined .width--65per {
  width: 65% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--65per {
    width: 100% !important;
  }
}
.table--lined .width--70per {
  width: 70% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--70per {
    width: 100% !important;
  }
}
.table--lined .width--75per {
  width: 75% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--75per {
    width: 100% !important;
  }
}
.table--lined .width--80per {
  width: 80% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--80per {
    width: 100% !important;
  }
}
.table--lined .width--85per {
  width: 85% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--85per {
    width: 100% !important;
  }
}
.table--lined .width--90per {
  width: 90% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--90per {
    width: 100% !important;
  }
}
.table--lined .width--95per {
  width: 95% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--95per {
    width: 100% !important;
  }
}
.table--lined .width--100per {
  width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--100per {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--560 {
    width: 560px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--640 {
    width: 640px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--720 {
    width: 720px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--800 {
    width: 800px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--lined .width-tab--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--lined .width-sp--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.table--lined .width--fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined .width--fit {
    width: 100% !important;
  }
}
.table--lined.width--8 {
  width: 8px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--8 {
    width: 100% !important;
  }
}
.table--lined.width--16 {
  width: 16px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--16 {
    width: 100% !important;
  }
}
.table--lined.width--24 {
  width: 24px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--24 {
    width: 100% !important;
  }
}
.table--lined.width--32 {
  width: 32px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--32 {
    width: 100% !important;
  }
}
.table--lined.width--40 {
  width: 40px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--40 {
    width: 100% !important;
  }
}
.table--lined.width--48 {
  width: 48px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--48 {
    width: 100% !important;
  }
}
.table--lined.width--56 {
  width: 56px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--56 {
    width: 100% !important;
  }
}
.table--lined.width--64 {
  width: 64px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--64 {
    width: 100% !important;
  }
}
.table--lined.width--72 {
  width: 72px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--72 {
    width: 100% !important;
  }
}
.table--lined.width--80 {
  width: 80px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--80 {
    width: 100% !important;
  }
}
.table--lined.width--88 {
  width: 88px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--88 {
    width: 100% !important;
  }
}
.table--lined.width--96 {
  width: 96px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--96 {
    width: 100% !important;
  }
}
.table--lined.width--104 {
  width: 104px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--104 {
    width: 100% !important;
  }
}
.table--lined.width--112 {
  width: 112px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--112 {
    width: 100% !important;
  }
}
.table--lined.width--120 {
  width: 120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--120 {
    width: 100% !important;
  }
}
.table--lined.width--128 {
  width: 128px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--128 {
    width: 100% !important;
  }
}
.table--lined.width--136 {
  width: 136px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--136 {
    width: 100% !important;
  }
}
.table--lined.width--144 {
  width: 144px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--144 {
    width: 100% !important;
  }
}
.table--lined.width--152 {
  width: 152px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--152 {
    width: 100% !important;
  }
}
.table--lined.width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--160 {
    width: 100% !important;
  }
}
.table--lined.width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--160 {
    width: 100% !important;
  }
}
.table--lined.width--240 {
  width: 240px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--240 {
    width: 100% !important;
  }
}
.table--lined.width--320 {
  width: 320px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--320 {
    width: 100% !important;
  }
}
.table--lined.width--400 {
  width: 400px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--400 {
    width: 100% !important;
  }
}
.table--lined.width--480 {
  width: 480px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--480 {
    width: 100% !important;
  }
}
.table--lined.width--560 {
  width: 560px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--560 {
    width: 100% !important;
  }
}
.table--lined.width--640 {
  width: 640px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--640 {
    width: 100% !important;
  }
}
.table--lined.width--720 {
  width: 720px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--720 {
    width: 100% !important;
  }
}
.table--lined.width--800 {
  width: 800px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--800 {
    width: 100% !important;
  }
}
.table--lined.width--880 {
  width: 880px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--880 {
    width: 100% !important;
  }
}
.table--lined.width--960 {
  width: 960px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--960 {
    width: 100% !important;
  }
}
.table--lined.width--1040 {
  width: 1040px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--1040 {
    width: 100% !important;
  }
}
.table--lined.width--1120 {
  width: 1120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--1120 {
    width: 100% !important;
  }
}
.table--lined.width--1200 {
  width: 1200px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--1200 {
    width: 100% !important;
  }
}
.table--lined.width--1280 {
  width: 1280px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--1280 {
    width: 100% !important;
  }
}
.table--lined.width--5per {
  width: 5% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--5per {
    width: 100% !important;
  }
}
.table--lined.width--10per {
  width: 10% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--10per {
    width: 100% !important;
  }
}
.table--lined.width--15per {
  width: 15% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--15per {
    width: 100% !important;
  }
}
.table--lined.width--20per {
  width: 20% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--20per {
    width: 100% !important;
  }
}
.table--lined.width--25per {
  width: 25% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--25per {
    width: 100% !important;
  }
}
.table--lined.width--30per {
  width: 30% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--30per {
    width: 100% !important;
  }
}
.table--lined.width--35per {
  width: 35% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--35per {
    width: 100% !important;
  }
}
.table--lined.width--40per {
  width: 40% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--40per {
    width: 100% !important;
  }
}
.table--lined.width--45per {
  width: 45% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--45per {
    width: 100% !important;
  }
}
.table--lined.width--50per {
  width: 50% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--50per {
    width: 100% !important;
  }
}
.table--lined.width--55per {
  width: 55% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--55per {
    width: 100% !important;
  }
}
.table--lined.width--60per {
  width: 60% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--60per {
    width: 100% !important;
  }
}
.table--lined.width--65per {
  width: 65% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--65per {
    width: 100% !important;
  }
}
.table--lined.width--70per {
  width: 70% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--70per {
    width: 100% !important;
  }
}
.table--lined.width--75per {
  width: 75% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--75per {
    width: 100% !important;
  }
}
.table--lined.width--80per {
  width: 80% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--80per {
    width: 100% !important;
  }
}
.table--lined.width--85per {
  width: 85% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--85per {
    width: 100% !important;
  }
}
.table--lined.width--90per {
  width: 90% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--90per {
    width: 100% !important;
  }
}
.table--lined.width--95per {
  width: 95% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--95per {
    width: 100% !important;
  }
}
.table--lined.width--100per {
  width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--100per {
    width: 100% !important;
  }
}
.table--lined.width--fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--lined.width--fit {
    width: 100% !important;
  }
}
.table--responsive {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table--responsive th,
.table--responsive td {
  padding: 10px 18px;
}
.table--responsive {
  border: 1px solid #009fa8;
}
.table--responsive th,
.table--responsive td {
  border: 1px solid rgb(153, 216.6, 220.2);
}
.table--responsive th {
  background-color: rgb(229.5, 245.4, 246.3);
  color: #009fa8;
}
.table--responsive.color--text {
  border: 1px solid #333;
}
.table--responsive.color--text th,
.table--responsive.color--text td {
  border: 1px solid #333;
}
.table--responsive.color--text th {
  background-color: var(--timelineProductBgColor);
  color: #333;
}
.table--responsive th,
.table--responsive td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .table--responsive th,
  .table--responsive td {
    display: block;
    border: none;
  }
}
.table--responsive th {
  text-align: left;
  width: 30%;
}
@media (max-width: 768px) {
  .table--responsive th {
    width: 100%;
  }
}
.table--responsive th {
  position: relative;
}
.table--responsive th > * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.table--responsive th .text {
  color: #009fa8;
  font-weight: 700;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .table--responsive th .text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .table--responsive th .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.table--responsive td > p {
  font-size: 1.2rem !important;
}
@media (max-width: 768px) {
  .table--responsive td + td:not(:first-child) {
    padding-top: 0;
  }
}
.table--responsive .width--8 {
  width: 8px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--8 {
    width: 100% !important;
  }
}
.table--responsive .width--16 {
  width: 16px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--16 {
    width: 100% !important;
  }
}
.table--responsive .width--24 {
  width: 24px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--24 {
    width: 100% !important;
  }
}
.table--responsive .width--32 {
  width: 32px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--32 {
    width: 100% !important;
  }
}
.table--responsive .width--40 {
  width: 40px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--40 {
    width: 100% !important;
  }
}
.table--responsive .width--48 {
  width: 48px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--48 {
    width: 100% !important;
  }
}
.table--responsive .width--56 {
  width: 56px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--56 {
    width: 100% !important;
  }
}
.table--responsive .width--64 {
  width: 64px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--64 {
    width: 100% !important;
  }
}
.table--responsive .width--72 {
  width: 72px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--72 {
    width: 100% !important;
  }
}
.table--responsive .width--80 {
  width: 80px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--80 {
    width: 100% !important;
  }
}
.table--responsive .width--88 {
  width: 88px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--88 {
    width: 100% !important;
  }
}
.table--responsive .width--96 {
  width: 96px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--96 {
    width: 100% !important;
  }
}
.table--responsive .width--104 {
  width: 104px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--104 {
    width: 100% !important;
  }
}
.table--responsive .width--112 {
  width: 112px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--112 {
    width: 100% !important;
  }
}
.table--responsive .width--120 {
  width: 120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--120 {
    width: 100% !important;
  }
}
.table--responsive .width--128 {
  width: 128px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--128 {
    width: 100% !important;
  }
}
.table--responsive .width--136 {
  width: 136px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--136 {
    width: 100% !important;
  }
}
.table--responsive .width--144 {
  width: 144px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--144 {
    width: 100% !important;
  }
}
.table--responsive .width--152 {
  width: 152px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--152 {
    width: 100% !important;
  }
}
.table--responsive .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--160 {
    width: 100% !important;
  }
}
.table--responsive .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--160 {
    width: 100% !important;
  }
}
.table--responsive .width--240 {
  width: 240px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--240 {
    width: 100% !important;
  }
}
.table--responsive .width--320 {
  width: 320px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--320 {
    width: 100% !important;
  }
}
.table--responsive .width--400 {
  width: 400px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--400 {
    width: 100% !important;
  }
}
.table--responsive .width--480 {
  width: 480px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--480 {
    width: 100% !important;
  }
}
.table--responsive .width--560 {
  width: 560px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--560 {
    width: 100% !important;
  }
}
.table--responsive .width--640 {
  width: 640px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--640 {
    width: 100% !important;
  }
}
.table--responsive .width--720 {
  width: 720px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--720 {
    width: 100% !important;
  }
}
.table--responsive .width--800 {
  width: 800px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--800 {
    width: 100% !important;
  }
}
.table--responsive .width--880 {
  width: 880px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--880 {
    width: 100% !important;
  }
}
.table--responsive .width--960 {
  width: 960px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--960 {
    width: 100% !important;
  }
}
.table--responsive .width--1040 {
  width: 1040px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--1040 {
    width: 100% !important;
  }
}
.table--responsive .width--1120 {
  width: 1120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--1120 {
    width: 100% !important;
  }
}
.table--responsive .width--1200 {
  width: 1200px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--1200 {
    width: 100% !important;
  }
}
.table--responsive .width--1280 {
  width: 1280px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--1280 {
    width: 100% !important;
  }
}
.table--responsive .width--5per {
  width: 5% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--5per {
    width: 100% !important;
  }
}
.table--responsive .width--10per {
  width: 10% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--10per {
    width: 100% !important;
  }
}
.table--responsive .width--15per {
  width: 15% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--15per {
    width: 100% !important;
  }
}
.table--responsive .width--20per {
  width: 20% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--20per {
    width: 100% !important;
  }
}
.table--responsive .width--25per {
  width: 25% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--25per {
    width: 100% !important;
  }
}
.table--responsive .width--30per {
  width: 30% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--30per {
    width: 100% !important;
  }
}
.table--responsive .width--35per {
  width: 35% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--35per {
    width: 100% !important;
  }
}
.table--responsive .width--40per {
  width: 40% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--40per {
    width: 100% !important;
  }
}
.table--responsive .width--45per {
  width: 45% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--45per {
    width: 100% !important;
  }
}
.table--responsive .width--50per {
  width: 50% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--50per {
    width: 100% !important;
  }
}
.table--responsive .width--55per {
  width: 55% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--55per {
    width: 100% !important;
  }
}
.table--responsive .width--60per {
  width: 60% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--60per {
    width: 100% !important;
  }
}
.table--responsive .width--65per {
  width: 65% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--65per {
    width: 100% !important;
  }
}
.table--responsive .width--70per {
  width: 70% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--70per {
    width: 100% !important;
  }
}
.table--responsive .width--75per {
  width: 75% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--75per {
    width: 100% !important;
  }
}
.table--responsive .width--80per {
  width: 80% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--80per {
    width: 100% !important;
  }
}
.table--responsive .width--85per {
  width: 85% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--85per {
    width: 100% !important;
  }
}
.table--responsive .width--90per {
  width: 90% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--90per {
    width: 100% !important;
  }
}
.table--responsive .width--95per {
  width: 95% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--95per {
    width: 100% !important;
  }
}
.table--responsive .width--100per {
  width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--100per {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--560 {
    width: 560px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--640 {
    width: 640px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--720 {
    width: 720px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--800 {
    width: 800px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--responsive .width-tab--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--responsive .width-sp--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.table--responsive .width--fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--responsive .width--fit {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .table--responsive thead {
    display: none;
  }
}

:where(.table--fluid, .table--lined, .table--responsive) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  :where(.table--fluid, .table--lined, .table--responsive) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  :where(.table--fluid, .table--lined, .table--responsive) {
    margin-top: 5vw;
  }
}

:where(.table--fluid + *:not(:first-child), .table--lined + *:not(:first-child), .table--responsive + *:not(:first-child)) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  :where(.table--fluid + *:not(:first-child), .table--lined + *:not(:first-child), .table--responsive + *:not(:first-child)) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  :where(.table--fluid + *:not(:first-child), .table--lined + *:not(:first-child), .table--responsive + *:not(:first-child)) {
    margin-top: 5vw;
  }
}

/*--------------------------------------------------
ＴＥＸＴ
--------------------------------------------------*/
.text-color--accent {
  color: #db0034;
}
.text-color--main {
  color: #009fa8;
}
.text-color--sub {
  color: #627a86;
}
.text-color--globe {
  color: #8fc31f;
}
.text-color--leaf {
  color: #009fa8;
}
.text-color--deliverable {
  color: #627a86;
}
.text-color--error {
  color: #db0034;
}
.text-color--font {
  color: #333;
}

.text--error {
  color: #db0034;
  text-indent: -1em;
  margin-left: 1em;
}
.text--error::before {
  content: "※";
  display: inline-block;
  margin-left: 0.5em;
  text-indent: -0.5em;
}

.text-note {
  text-indent: -1em;
  margin-left: 1em;
}
.text-note::before {
  content: "※";
  display: inline-block;
  margin-left: 0.5em;
  text-indent: -0.5em;
}

:lang(en) .text-note::before {
  content: "*";
  display: inline-block;
}

.underLine {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #8fc31f));
  background: -webkit-linear-gradient(transparent 70%, #8fc31f 30%);
  background: linear-gradient(transparent 70%, #8fc31f 30%);
  display: inline-block;
}

.text--left {
  text-align: left !important;
}
.text--center {
  text-align: center !important;
}
.text--right {
  text-align: right !important;
}

.text--bold {
  font-weight: 700 !important;
}
.text--normal {
  font-weight: 400 !important;
}
.text--light {
  font-weight: 300 !important;
}

.text-size--lg {
  font-size: 1.8rem !important;
}
@media (max-width: 480px) {
  .text-size--lg {
    font-size: 1.6rem !important;
  }
}
.text-size--md {
  font-size: 1.6rem !important;
}
@media (max-width: 480px) {
  .text-size--md {
    font-size: 1.4rem !important;
  }
}
.text-size--sm {
  font-size: 1.4rem !important;
}
@media (max-width: 480px) {
  .text-size--sm {
    font-size: 1.2rem !important;
  }
}
.text-size--xs {
  font-size: 1.2rem !important;
}
.text-size--xxs {
  font-size: 1rem !important;
}

.text--italic {
  font-style: italic;
}

.text--en {
  font-family: "Roboto", sans-serif;
}

.text--cn {
  font-family: "Noto Sans SC", sans-serif;
}

/*--------------------------------------------------
ASIDE
--------------------------------------------------*/
.aside {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .aside {
    margin-top: 100px;
  }
}
@media (max-width: 480px) {
  .aside {
    margin-top: 15vw;
  }
}
.aside > .title {
  border: 1px solid #d2d2d2;
  border-bottom: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 0 4rem 0;
}
.aside > .title + * {
  margin-top: 48px;
}
@media (max-width: 1440px) {
  .aside > .title + * {
    margin-top: 48px;
  }
}
@media (max-width: 1000px) {
  .aside > .title + * {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .aside > .title + * {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .aside > .title + * {
    margin-top: 4vh;
  }
}
@media (max-width: 768px) {
  .aside > .title {
    padding: 0 0 2rem 0;
  }
}
.aside > .title > span {
  background-color: #fff;
  padding: 0 20px;
  position: absolute;
  top: -1.6rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .aside > .title > span {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .aside > .title > span {
    font-size: 1.6rem;
  }
}
.aside > .title > span {
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  .aside > .title > span {
    font-size: 1.8rem;
  }
}

.resources {
  border-top: 1px solid #009fa8;
  margin-top: 200px;
}
@media (max-width: 768px) {
  .resources {
    margin-top: 167px;
  }
}
@media (max-width: 480px) {
  .resources {
    margin-top: 25vw;
  }
}
.resources > .title {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
}
@media (max-width: 768px) {
  .resources > .title {
    gap: 9px 9px;
  }
}
@media (max-width: 480px) {
  .resources > .title {
    gap: 1.25vw 1.25vw;
  }
}
.resources > .title {
  text-align: center;
}
.resources > .title span {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  color: #009fa8;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .resources > .title span {
    font-size: 1.6rem;
  }
}
.resources > .title span {
  letter-spacing: 0.2rem;
}
.resources > .title::before {
  background: #009fa8 url(./../images/common/icon_document.svg) no-repeat center center;
  background-size: 4rem;
  display: block;
  content: "";
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  top: -4rem;
  margin: 0 auto auto;
}
@media (max-width: 768px) {
  .resources > .title::before {
    width: 6.4rem;
    background-size: 3.2rem;
    top: -3.2rem;
  }
}
.resources > .title::after {
  content: attr(data-text);
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  font: "Roboto", sans-serif;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .resources > .title::after {
    font-size: 1.4rem;
  }
}
.resources > .title::after {
  color: #fff;
  background-color: #bfbfbf;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.5em;
}
.resources > .title > span {
  margin-top: 6rem;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  .resources > .title > span {
    margin-top: 5.6rem;
    font-size: 2rem;
  }
}
.resources > .title:has([data-text]) + * {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .resources > .title:has([data-text]) + * {
    margin-top: 47px;
  }
}
@media (max-width: 480px) {
  .resources > .title:has([data-text]) + * {
    margin-top: 7vw;
  }
}
.resources > .title + * {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .resources > .title + * {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .resources > .title + * {
    margin-top: 4.5vw;
  }
}
.resources:first-child {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .resources:first-child {
    margin-top: 117px;
  }
}
@media (max-width: 480px) {
  .resources:first-child {
    margin-top: 17.5vw;
  }
}
.resources + .btn-list--center {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .resources + .btn-list--center {
    margin-top: 117px;
  }
}
@media (max-width: 480px) {
  .resources + .btn-list--center {
    margin-top: 17.5vw;
  }
}

/*--------------------------------------------------
form
--------------------------------------------------*/
.input-text {
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .input-text {
    padding: 4px 10px;
    height: 36px;
  }
}
.input-text + p {
  font-size: 1.2rem !important;
}
.input-text--small {
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .input-text--small {
    padding: 4px 10px;
    height: 36px;
  }
}
.input-text--small + p {
  font-size: 1.2rem !important;
}
.input-text--small {
  width: 20%;
}
@media (max-width: 768px) {
  .input-text--small {
    width: 40%;
    padding: 4px 10px;
  }
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select select {
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .select select {
    padding: 4px 10px;
    height: 36px;
  }
}
.select select + p {
  font-size: 1.2rem !important;
}
.select select {
  position: relative;
  padding: 2px 10px;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
}

.radio {
  position: relative;
  display: inline-block;
}
.radio:not(:last-child) {
  margin-right: 10px;
}
.radio input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.radio input:focus-visible {
  outline: none;
}
.radio .text {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  cursor: pointer;
}
.radio input:focus-visible + .text::before {
  outline-color: #000;
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-box-shadow: 0 0 0 5px #ffffff;
          box-shadow: 0 0 0 5px #ffffff;
}
.radio input:checked + .text::after {
  opacity: 1;
}
.radio .text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  aspect-ratio: 1;
  border: 1px solid #009fa8;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.radio .text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10px;
  height: 10px;
  background-color: #009fa8;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.checkbox {
  position: relative;
  display: inline-block;
}
.checkbox:not(:last-child) {
  margin-right: 10px;
}
.checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.checkbox input:focus-visible {
  outline: none;
}
.checkbox .text {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  cursor: pointer;
}
.checkbox input:focus-visible + .text::before {
  outline-color: #000;
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-box-shadow: 0 0 0 5px #ffffff;
          box-shadow: 0 0 0 5px #ffffff;
}
.checkbox input:checked + .text::after {
  opacity: 1;
}
.checkbox .text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  aspect-ratio: 1;
  border: 1px solid #009fa8;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox .text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #009fa8;
  border-bottom: 2px solid #009fa8;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.textarea {
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .textarea {
    padding: 4px 10px;
    height: 36px;
  }
}
.textarea + p {
  font-size: 1.2rem !important;
}
.textarea {
  height: calc(6em + 24px);
}

.zip-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

:where(.input-list > *:not(:first-child)) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  :where(.input-list > *:not(:first-child)) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  :where(.input-list > *:not(:first-child)) {
    margin-top: 2vw;
  }
}

.input-list > label + *:not(:first-child) {
  margin-top: 8px;
}
.input-list label .icon--new {
  display: inline-block;
  margin-left: 1em;
  margin-right: 1em;
  vertical-align: middle;
}
.input-list label {
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .input-list label {
    font-size: 1.6rem;
  }
}
.input-list label {
  color: #009fa8;
}
.input-list label:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .input-list label:not(:first-child) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  .input-list label:not(:first-child) {
    margin-top: 5vw;
  }
}
.input-list label {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .input-list label {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .input-list label {
    margin-top: 2vw;
  }
}
.input-list label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #333;
}

:where(.caution-section) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  :where(.caution-section) {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  :where(.caution-section) {
    margin-top: 10vw;
  }
}
:where(.caution-section) + .btn-list--center {
  margin-top: 80px;
}
@media (max-width: 768px) {
  :where(.caution-section) + .btn-list--center {
    margin-top: 67px;
  }
}
@media (max-width: 480px) {
  :where(.caution-section) + .btn-list--center {
    margin-top: 10vw;
  }
}
:where(.caution-section) p.lead {
  padding: 0 16px;
}

:where(.caution-section > *:not(:first-child)) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  :where(.caution-section > *:not(:first-child)) {
    margin-top: 34px;
  }
}
@media (max-width: 480px) {
  :where(.caution-section > *:not(:first-child)) {
    margin-top: 5vw;
  }
}

.caution {
  height: 200px;
  padding: 20px 20px 64px;
  border: 2px solid #d0d0d0;
  overflow-y: auto;
}
.caution .notes > *:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .caution .notes > *:not(:first-child) {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .caution .notes > *:not(:first-child) {
    margin-top: 2vw;
  }
}

.caution-agree {
  position: relative;
  display: inline-block;
}
.caution-agree:not(:last-child) {
  margin-right: 10px;
}
.caution-agree input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.caution-agree input:focus-visible {
  outline: none;
}
.caution-agree .text {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  cursor: pointer;
}
.caution-agree input:focus-visible + .text::before {
  outline-color: #000;
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-box-shadow: 0 0 0 5px #ffffff;
          box-shadow: 0 0 0 5px #ffffff;
}
.caution-agree input:checked + .text::after {
  opacity: 1;
}
.caution-agree {
  display: grid;
  place-items: center;
  width: 100%;
  height: 80px;
  background-color: rgb(0, 183.1339285714, 193.5);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, color 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}
@media (max-width: 768px) {
  .caution-agree {
    height: 64px;
  }
}
.caution-agree input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.caution-agree input:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.caution-agree input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.caution-agree input:checked::after::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #009fa8;
  border-bottom: 2px solid #009fa8;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.caution-agree input + .text::after {
  background-color: #d2d2d2;
}
.caution-agree .text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  aspect-ratio: 1;
  border: 1px solid #009fa8;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.caution-agree .text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #009fa8;
  border-bottom: 2px solid #009fa8;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.caution-agree .text {
  color: #fff;
}
.caution-agree input:checked + .text::after {
  background-color: #fff;
}
.caution-agree:focus-visible {
  background-color: #009fa8;
}
@media (any-hover: hover) {
  .caution-agree:hover {
    background-color: #009fa8;
  }
}
@media (hover: none) {
  .caution-agree:active {
    background-color: #009fa8;
  }
}
.caution-agree:has(input:checked) {
  background-color: #009fa8;
}
.caution-agree:has(input:disabled) {
  cursor: not-allowed;
  background-color: #627a86;
}

/*--------------------------------------------------
progressbar
--------------------------------------------------*/
:root {
  --progressbar-icon: 8rem;
}

.progressbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 8rem auto 54px;
  padding: 0;
}
.progressbar::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: 0 auto auto;
  width: calc(100% - var(--progressbar-icon));
  height: 1px;
  border-top: 1px dotted #909090;
}
@media (max-width: 768px) {
  .progressbar::before {
    border-top: 1px solid #909090;
  }
}
.progressbar li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -4rem;
  letter-spacing: 0.5rem;
  color: #828282;
}
.progressbar li .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #fff;
}
.progressbar li .icon::before {
  content: "";
  width: var(--progressbar-icon);
  height: var(--progressbar-icon);
  border-radius: 50%;
  margin-bottom: 2px;
  background-size: 2.2rem 2.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #d2d2d2;
  border: 2rem solid #fff;
}
.progressbar li .icon.active {
  color: #009fa8;
}
.progressbar li .icon.active::before {
  background-color: #009fa8;
}
.progressbar li .icon.done {
  color: #bfbfbf;
}
.progressbar li .icon.done::before {
  background-color: #909090;
}
.progressbar li[data-step=input] .icon::before {
  background-image: url(./../images/common/icon_pen.svg);
}
.progressbar li[data-step=input] .icon .done::before {
  background-image: url(./../images/common/icon_pen_darkgray.svg);
}
.progressbar li[data-step=input] .icon .active::before {
  background-image: url(./../images/common/icon_pen.svg);
}
.progressbar li[data-step=confirm] .icon::before {
  background-image: url(./../images/common/icon_eye.svg);
}
.progressbar li[data-step=confirm] .icon .done::before {
  background-image: url(./../images/common/icon_eye_darkgray.svg);
}
.progressbar li[data-step=confirm] .icon .active::before {
  background-image: url(./../images/common/icon_eye.svg);
}
.progressbar li[data-step=complete] .icon::before {
  background-image: url(./../images/common/icon_check.svg);
}
.progressbar li[data-step=complete] .icon .active::before {
  background-image: url(./../images/common/icon_check.svg);
}

/*--------------------------------------------------
table
--------------------------------------------------*/
:where(.table--form:not(:first-child)) {
  margin-top: 54px;
}
@media (max-width: 768px) {
  :where(.table--form:not(:first-child)) {
    margin-top: 45px;
  }
}
@media (max-width: 480px) {
  :where(.table--form:not(:first-child)) {
    margin-top: 6.75vw;
  }
}

.table--form {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table--form th,
.table--form td {
  padding: 10px 18px;
}
.table--form {
  border: 1px solid #009fa8;
}
.table--form th,
.table--form td {
  border: 1px solid rgb(153, 216.6, 220.2);
}
.table--form th {
  background-color: rgb(229.5, 245.4, 246.3);
  color: #009fa8;
}
.table--form.color--text {
  border: 1px solid #333;
}
.table--form.color--text th,
.table--form.color--text td {
  border: 1px solid #333;
}
.table--form.color--text th {
  background-color: var(--timelineProductBgColor);
  color: #333;
}
.table--form th,
.table--form td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .table--form th,
  .table--form td {
    display: block;
    border: none;
  }
}
.table--form th {
  text-align: left;
  width: 30%;
}
@media (max-width: 768px) {
  .table--form th {
    width: 100%;
  }
}
.table--form th {
  position: relative;
}
.table--form th > * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.table--form th .text {
  color: #009fa8;
  font-weight: 700;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .table--form th .text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .table--form th .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.table--form td > p {
  font-size: 1.2rem !important;
}
@media (max-width: 768px) {
  .table--form td + td:not(:first-child) {
    padding-top: 0;
  }
}
.table--form .width--8 {
  width: 8px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--8 {
    width: 100% !important;
  }
}
.table--form .width--16 {
  width: 16px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--16 {
    width: 100% !important;
  }
}
.table--form .width--24 {
  width: 24px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--24 {
    width: 100% !important;
  }
}
.table--form .width--32 {
  width: 32px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--32 {
    width: 100% !important;
  }
}
.table--form .width--40 {
  width: 40px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--40 {
    width: 100% !important;
  }
}
.table--form .width--48 {
  width: 48px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--48 {
    width: 100% !important;
  }
}
.table--form .width--56 {
  width: 56px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--56 {
    width: 100% !important;
  }
}
.table--form .width--64 {
  width: 64px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--64 {
    width: 100% !important;
  }
}
.table--form .width--72 {
  width: 72px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--72 {
    width: 100% !important;
  }
}
.table--form .width--80 {
  width: 80px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--80 {
    width: 100% !important;
  }
}
.table--form .width--88 {
  width: 88px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--88 {
    width: 100% !important;
  }
}
.table--form .width--96 {
  width: 96px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--96 {
    width: 100% !important;
  }
}
.table--form .width--104 {
  width: 104px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--104 {
    width: 100% !important;
  }
}
.table--form .width--112 {
  width: 112px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--112 {
    width: 100% !important;
  }
}
.table--form .width--120 {
  width: 120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--120 {
    width: 100% !important;
  }
}
.table--form .width--128 {
  width: 128px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--128 {
    width: 100% !important;
  }
}
.table--form .width--136 {
  width: 136px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--136 {
    width: 100% !important;
  }
}
.table--form .width--144 {
  width: 144px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--144 {
    width: 100% !important;
  }
}
.table--form .width--152 {
  width: 152px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--152 {
    width: 100% !important;
  }
}
.table--form .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--160 {
    width: 100% !important;
  }
}
.table--form .width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--160 {
    width: 100% !important;
  }
}
.table--form .width--240 {
  width: 240px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--240 {
    width: 100% !important;
  }
}
.table--form .width--320 {
  width: 320px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--320 {
    width: 100% !important;
  }
}
.table--form .width--400 {
  width: 400px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--400 {
    width: 100% !important;
  }
}
.table--form .width--480 {
  width: 480px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--480 {
    width: 100% !important;
  }
}
.table--form .width--560 {
  width: 560px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--560 {
    width: 100% !important;
  }
}
.table--form .width--640 {
  width: 640px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--640 {
    width: 100% !important;
  }
}
.table--form .width--720 {
  width: 720px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--720 {
    width: 100% !important;
  }
}
.table--form .width--800 {
  width: 800px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--800 {
    width: 100% !important;
  }
}
.table--form .width--880 {
  width: 880px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--880 {
    width: 100% !important;
  }
}
.table--form .width--960 {
  width: 960px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--960 {
    width: 100% !important;
  }
}
.table--form .width--1040 {
  width: 1040px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--1040 {
    width: 100% !important;
  }
}
.table--form .width--1120 {
  width: 1120px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--1120 {
    width: 100% !important;
  }
}
.table--form .width--1200 {
  width: 1200px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--1200 {
    width: 100% !important;
  }
}
.table--form .width--1280 {
  width: 1280px !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--1280 {
    width: 100% !important;
  }
}
.table--form .width--5per {
  width: 5% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--5per {
    width: 100% !important;
  }
}
.table--form .width--10per {
  width: 10% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--10per {
    width: 100% !important;
  }
}
.table--form .width--15per {
  width: 15% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--15per {
    width: 100% !important;
  }
}
.table--form .width--20per {
  width: 20% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--20per {
    width: 100% !important;
  }
}
.table--form .width--25per {
  width: 25% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--25per {
    width: 100% !important;
  }
}
.table--form .width--30per {
  width: 30% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--30per {
    width: 100% !important;
  }
}
.table--form .width--35per {
  width: 35% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--35per {
    width: 100% !important;
  }
}
.table--form .width--40per {
  width: 40% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--40per {
    width: 100% !important;
  }
}
.table--form .width--45per {
  width: 45% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--45per {
    width: 100% !important;
  }
}
.table--form .width--50per {
  width: 50% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--50per {
    width: 100% !important;
  }
}
.table--form .width--55per {
  width: 55% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--55per {
    width: 100% !important;
  }
}
.table--form .width--60per {
  width: 60% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--60per {
    width: 100% !important;
  }
}
.table--form .width--65per {
  width: 65% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--65per {
    width: 100% !important;
  }
}
.table--form .width--70per {
  width: 70% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--70per {
    width: 100% !important;
  }
}
.table--form .width--75per {
  width: 75% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--75per {
    width: 100% !important;
  }
}
.table--form .width--80per {
  width: 80% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--80per {
    width: 100% !important;
  }
}
.table--form .width--85per {
  width: 85% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--85per {
    width: 100% !important;
  }
}
.table--form .width--90per {
  width: 90% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--90per {
    width: 100% !important;
  }
}
.table--form .width--95per {
  width: 95% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--95per {
    width: 100% !important;
  }
}
.table--form .width--100per {
  width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--100per {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--560 {
    width: 560px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--640 {
    width: 640px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--720 {
    width: 720px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--800 {
    width: 800px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .table--form .width-tab--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .table--form .width-sp--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.table--form .width--fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .table--form .width--fit {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .table--form thead {
    display: none;
  }
}
.table--form th,
.table--form td {
  padding: 18px 16px;
}
@media (max-width: 768px) {
  .table--form th,
  .table--form td {
    padding: 8px 16px;
  }
}
.table--form .input-text,
.table--form .select,
.table--form .textarea,
.table--form .zip-list {
  max-width: 600px;
}
@media (max-width: 1000px) {
  .table--form .input-text,
  .table--form .select,
  .table--form .textarea,
  .table--form .zip-list {
    max-width: calc(70vw - 112px);
  }
}
@media (max-width: 768px) {
  .table--form .input-text,
  .table--form .select,
  .table--form .textarea,
  .table--form .zip-list {
    max-width: 100%;
  }
}
.table--form .label,
.table--form label {
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px 16px;
}
@media (max-width: 768px) {
  .table--form .label,
  .table--form label {
    gap: 7px 14px;
  }
}
@media (max-width: 480px) {
  .table--form .label,
  .table--form label {
    gap: 1vw 2vw;
  }
}
.table--form .label,
.table--form label {
  width: 100%;
}

:root {
  --back-to-top-width: 40px;
  --fix-btn-bottom: 20px;
  --fix-btn-right: 20px;
  --fix-btn-bottom-sp: 1rem;
  --fix-btn-bottom-top: 18px;
  --fix-btn-right-sp: 6px;
}

/*--------------------------------------------------
ＦＯＯＴＥＲ
--------------------------------------------------*/
.footer {
  background-color: #009fa8;
}
.footer .copyright {
  background-color: #fff;
  padding: 30px 20px;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
  color: #009fa8;
}
@media (max-width: 480px) {
  .footer .copyright {
    padding: 2rem 1rem 7rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: normal;
  }
}
.footer-top {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px 2vw;
  }
}
.footer-top .company-name {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-top .company-name {
    border-bottom: 1px solid #fff;
    padding: 0 0 2rem 0;
    text-align: center;
  }
}
.footer-top .footer-links {
  border-left: 1px solid #ebf8f8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer-top .footer-links {
    margin: 1.6rem 0 0 0;
    border: none;
    font-size: 1.2rem;
  }
}
.footer-top .footer-links li {
  border-right: 1px solid #ebf8f8;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .footer-top .footer-links li {
    width: 100%;
    border: none;
  }
}
@media (max-width: 768px) {
  .footer-top .footer-links li:first-child {
    border-right: 1px solid #fff;
  }
}
.footer-top .footer-links li a {
  color: #fff;
}
@media (max-width: 768px) {
  .footer-top .footer-links li a {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

/* 言語ボタン --------------------------------*/
.language {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9000;
  margin: 0 calc(var(--back-to-top-width) + var(--fix-btn-right) + 8px) var(--fix-btn-bottom) 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}
.language-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.language-list li {
  position: relative;
  opacity: 0.8;
}
.language-list li:first-child a {
  border-radius: 4px 0 0 4px;
}
.language-list li:last-child a {
  border-radius: 0 4px 4px 0;
}
.language-list li:has(a:focus-visible) {
  z-index: 2;
}
.language-list a {
  padding: 1rem;
  display: block;
  background-color: #f1f1f1;
  color: #333;
  border: 1px solid #f1f1f1;
  font-size: 1.3rem;
}
.language-list a:focus-visible {
  background-color: #fff;
  color: #009fa8;
}
@media (any-hover: hover) {
  .language-list a:hover {
    background-color: #fff;
    color: #009fa8;
  }
}
@media (hover: none) {
  .language-list a:active {
    background-color: #fff;
    color: #009fa8;
  }
}
.language-list .active a {
  background-color: #009fa8;
  color: #fff;
  border-color: #009fa8;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 480px) {
  .language {
    margin: 0 calc(var(--back-to-top-width) + var(--fix-btn-right-sp) + 4px) var(--fix-btn-bottom-sp) 0;
  }
}

/* TOPに戻るボタン --------------------------------*/
.btn--back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9000;
  margin: 0 var(--fix-btn-right) var(--fix-btn-bottom) 0;
  width: var(--back-to-top-width);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background-color: rgba(0, 159, 168, 0.1);
  background-color: rgb(229.5, 245.4, 246.3);
  border: 1px solid rgba(0, 159, 168, 0.8);
  border-radius: 4px;
  -webkit-transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, -webkit-box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, box-shadow 0.6s;
  transition: background-color 0.6s, border 0.6s, color 0.6s, margin 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}
@media (max-width: 480px) {
  .btn--back-to-top {
    margin: 0 var(--fix-btn-right-sp) var(--fix-btn-bottom-sp) 0;
  }
}
.btn--back-to-top::before {
  content: "";
  position: relative;
  display: block;
  top: 2px;
  width: 10px;
  aspect-ratio: 1;
  border-top: 2px solid #009fa8;
  border-right: 2px solid #009fa8;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn--back-to-top:focus-visible {
  background-color: #009fa8;
}
.btn--back-to-top:focus-visible::before {
  border-color: #fff;
}
@media (any-hover: hover) {
  .btn--back-to-top:hover {
    background-color: #009fa8;
  }
  .btn--back-to-top:hover::before {
    border-color: #fff;
  }
}
@media (hover: none) {
  .btn--back-to-top:active {
    background-color: #009fa8;
  }
  .btn--back-to-top:active::before {
    border-color: #fff;
  }
}

@media (max-width: 480px) {
  body:has(.header--top.top) .language,
  body:has(.header--top.top) .btn--back-to-top {
    margin-bottom: var(--fix-btn-bottom-top);
  }
}

.margin-top--00 {
  margin-top: 0 !important;
}
.margin-top--04 {
  margin-top: 4px !important;
}
.margin-top--08 {
  margin-top: 8px !important;
}
.margin-top--10 {
  margin-top: 10px !important;
}
.margin-top--16 {
  margin-top: 16px !important;
}
@media (max-width: 768px) {
  .margin-top--16 {
    margin-top: 14px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--16 {
    margin-top: 2vw !important;
  }
}
.margin-top--24 {
  margin-top: 24px !important;
}
@media (max-width: 768px) {
  .margin-top--24 {
    margin-top: 20px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--24 {
    margin-top: 3vw !important;
  }
}
.margin-top--32 {
  margin-top: 32px !important;
}
@media (max-width: 768px) {
  .margin-top--32 {
    margin-top: 27px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--32 {
    margin-top: 4vw !important;
  }
}
.margin-top--40 {
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .margin-top--40 {
    margin-top: 34px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--40 {
    margin-top: 5vw !important;
  }
}
.margin-top--48 {
  margin-top: 48px !important;
}
@media (max-width: 768px) {
  .margin-top--48 {
    margin-top: 40px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--48 {
    margin-top: 6vw !important;
  }
}
.margin-top--56 {
  margin-top: 56px !important;
}
@media (max-width: 768px) {
  .margin-top--56 {
    margin-top: 47px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--56 {
    margin-top: 7vw !important;
  }
}
.margin-top--64 {
  margin-top: 64px !important;
}
@media (max-width: 768px) {
  .margin-top--64 {
    margin-top: 54px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--64 {
    margin-top: 8vw !important;
  }
}
.margin-top--72 {
  margin-top: 72px !important;
}
@media (max-width: 768px) {
  .margin-top--72 {
    margin-top: 60px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--72 {
    margin-top: 9vw !important;
  }
}
.margin-top--80 {
  margin-top: 80px !important;
}
@media (max-width: 768px) {
  .margin-top--80 {
    margin-top: 67px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--80 {
    margin-top: 10vw !important;
  }
}
.margin-top--88 {
  margin-top: 88px !important;
}
@media (max-width: 768px) {
  .margin-top--88 {
    margin-top: 74px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--88 {
    margin-top: 11vw !important;
  }
}
.margin-top--96 {
  margin-top: 96px !important;
}
@media (max-width: 768px) {
  .margin-top--96 {
    margin-top: 80px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--96 {
    margin-top: 12vw !important;
  }
}
.margin-top--104 {
  margin-top: 104px !important;
}
@media (max-width: 768px) {
  .margin-top--104 {
    margin-top: 87px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--104 {
    margin-top: 13vw !important;
  }
}
.margin-top--112 {
  margin-top: 112px !important;
}
@media (max-width: 768px) {
  .margin-top--112 {
    margin-top: 94px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--112 {
    margin-top: 14vw !important;
  }
}
.margin-top--120 {
  margin-top: 120px !important;
}
@media (max-width: 768px) {
  .margin-top--120 {
    margin-top: 100px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--120 {
    margin-top: 15vw !important;
  }
}
.margin-top--128 {
  margin-top: 128px !important;
}
@media (max-width: 768px) {
  .margin-top--128 {
    margin-top: 107px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--128 {
    margin-top: 16vw !important;
  }
}
.margin-top--136 {
  margin-top: 136px !important;
}
@media (max-width: 768px) {
  .margin-top--136 {
    margin-top: 114px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--136 {
    margin-top: 17vw !important;
  }
}
.margin-top--144 {
  margin-top: 144px !important;
}
@media (max-width: 768px) {
  .margin-top--144 {
    margin-top: 120px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--144 {
    margin-top: 18vw !important;
  }
}
.margin-top--152 {
  margin-top: 152px !important;
}
@media (max-width: 768px) {
  .margin-top--152 {
    margin-top: 127px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--152 {
    margin-top: 19vw !important;
  }
}
.margin-top--160 {
  margin-top: 160px !important;
}
@media (max-width: 768px) {
  .margin-top--160 {
    margin-top: 134px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--160 {
    margin-top: 20vw !important;
  }
}
.margin-top--168 {
  margin-top: 168px !important;
}
@media (max-width: 768px) {
  .margin-top--168 {
    margin-top: 140px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--168 {
    margin-top: 21vw !important;
  }
}
.margin-top--176 {
  margin-top: 176px !important;
}
@media (max-width: 768px) {
  .margin-top--176 {
    margin-top: 147px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--176 {
    margin-top: 22vw !important;
  }
}
.margin-top--184 {
  margin-top: 184px !important;
}
@media (max-width: 768px) {
  .margin-top--184 {
    margin-top: 154px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--184 {
    margin-top: 23vw !important;
  }
}
.margin-top--192 {
  margin-top: 192px !important;
}
@media (max-width: 768px) {
  .margin-top--192 {
    margin-top: 160px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--192 {
    margin-top: 24vw !important;
  }
}
.margin-top--200 {
  margin-top: 200px !important;
}
@media (max-width: 768px) {
  .margin-top--200 {
    margin-top: 167px !important;
  }
}
@media (max-width: 480px) {
  .margin-top--200 {
    margin-top: 25vw !important;
  }
}
.margin-right--00 {
  margin-right: 0 !important;
}
.margin-right--04 {
  margin-right: 4px !important;
}
.margin-right--08 {
  margin-right: 8px !important;
}
.margin-right--10 {
  margin-right: 10px !important;
}
.margin-right--12 {
  margin-right: 12px !important;
}
@media (max-width: 768px) {
  .margin-right--12 {
    margin-right: 10px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--12 {
    margin-right: 1.5vw !important;
  }
}
.margin-right--16 {
  margin-right: 16px !important;
}
@media (max-width: 768px) {
  .margin-right--16 {
    margin-right: 14px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--16 {
    margin-right: 2vw !important;
  }
}
.margin-right--24 {
  margin-right: 24px !important;
}
@media (max-width: 768px) {
  .margin-right--24 {
    margin-right: 20px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--24 {
    margin-right: 3vw !important;
  }
}
.margin-right--32 {
  margin-right: 32px !important;
}
@media (max-width: 768px) {
  .margin-right--32 {
    margin-right: 27px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--32 {
    margin-right: 4vw !important;
  }
}
.margin-right--40 {
  margin-right: 40px !important;
}
@media (max-width: 768px) {
  .margin-right--40 {
    margin-right: 34px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--40 {
    margin-right: 5vw !important;
  }
}
.margin-right--48 {
  margin-right: 48px !important;
}
@media (max-width: 768px) {
  .margin-right--48 {
    margin-right: 40px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--48 {
    margin-right: 6vw !important;
  }
}
.margin-right--56 {
  margin-right: 56px !important;
}
@media (max-width: 768px) {
  .margin-right--56 {
    margin-right: 47px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--56 {
    margin-right: 7vw !important;
  }
}
.margin-right--64 {
  margin-right: 64px !important;
}
@media (max-width: 768px) {
  .margin-right--64 {
    margin-right: 54px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--64 {
    margin-right: 8vw !important;
  }
}
.margin-right--72 {
  margin-right: 72px !important;
}
@media (max-width: 768px) {
  .margin-right--72 {
    margin-right: 60px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--72 {
    margin-right: 9vw !important;
  }
}
.margin-right--80 {
  margin-right: 80px !important;
}
@media (max-width: 768px) {
  .margin-right--80 {
    margin-right: 67px !important;
  }
}
@media (max-width: 480px) {
  .margin-right--80 {
    margin-right: 10vw !important;
  }
}

.paddingX--00 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.paddingX--04 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.paddingX--08 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.paddingX--10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.paddingX--12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
@media (max-width: 768px) {
  .paddingX--12 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--12 {
    padding-left: 1.5vw !important;
    padding-right: 1.5vw !important;
  }
}
.paddingX--16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
@media (max-width: 768px) {
  .paddingX--16 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--16 {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
  }
}
.paddingX--24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media (max-width: 768px) {
  .paddingX--24 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--24 {
    padding-left: 3vw !important;
    padding-right: 3vw !important;
  }
}
.paddingX--32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
@media (max-width: 768px) {
  .paddingX--32 {
    padding-left: 27px !important;
    padding-right: 27px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--32 {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
}
.paddingX--40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 768px) {
  .paddingX--40 {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--40 {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
}
.paddingX--48 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}
@media (max-width: 768px) {
  .paddingX--48 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--48 {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }
}
.paddingX--56 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
@media (max-width: 768px) {
  .paddingX--56 {
    padding-left: 47px !important;
    padding-right: 47px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--56 {
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }
}
.paddingX--64 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}
@media (max-width: 768px) {
  .paddingX--64 {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--64 {
    padding-left: 8vw !important;
    padding-right: 8vw !important;
  }
}
.paddingX--72 {
  padding-left: 72px !important;
  padding-right: 72px !important;
}
@media (max-width: 768px) {
  .paddingX--72 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--72 {
    padding-left: 9vw !important;
    padding-right: 9vw !important;
  }
}
.paddingX--80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
@media (max-width: 768px) {
  .paddingX--80 {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}
@media (max-width: 480px) {
  .paddingX--80 {
    padding-left: 10vw !important;
    padding-right: 10vw !important;
  }
}
.paddingY--00 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.paddingY--04 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.paddingY--08 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.paddingY--10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.paddingY--16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
@media (max-width: 768px) {
  .paddingY--16 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--16 {
    padding-top: 2vw !important;
    padding-bottom: 2vw !important;
  }
}
.paddingY--24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
@media (max-width: 768px) {
  .paddingY--24 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--24 {
    padding-top: 3vw !important;
    padding-bottom: 3vw !important;
  }
}
.paddingY--32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
@media (max-width: 768px) {
  .paddingY--32 {
    padding-top: 27px !important;
    padding-bottom: 27px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--32 {
    padding-top: 4vw !important;
    padding-bottom: 4vw !important;
  }
}
.paddingY--40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
@media (max-width: 768px) {
  .paddingY--40 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--40 {
    padding-top: 5vw !important;
    padding-bottom: 5vw !important;
  }
}
.paddingY--48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
@media (max-width: 768px) {
  .paddingY--48 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--48 {
    padding-top: 6vw !important;
    padding-bottom: 6vw !important;
  }
}
.paddingY--56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
@media (max-width: 768px) {
  .paddingY--56 {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--56 {
    padding-top: 7vw !important;
    padding-bottom: 7vw !important;
  }
}
.paddingY--64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
@media (max-width: 768px) {
  .paddingY--64 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--64 {
    padding-top: 8vw !important;
    padding-bottom: 8vw !important;
  }
}
.paddingY--72 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
@media (max-width: 768px) {
  .paddingY--72 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--72 {
    padding-top: 9vw !important;
    padding-bottom: 9vw !important;
  }
}
.paddingY--80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
@media (max-width: 768px) {
  .paddingY--80 {
    padding-top: 67px !important;
    padding-bottom: 67px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--80 {
    padding-top: 10vw !important;
    padding-bottom: 10vw !important;
  }
}
.paddingY--88 {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}
@media (max-width: 768px) {
  .paddingY--88 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--88 {
    padding-top: 11vw !important;
    padding-bottom: 11vw !important;
  }
}
.paddingY--96 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}
@media (max-width: 768px) {
  .paddingY--96 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--96 {
    padding-top: 12vw !important;
    padding-bottom: 12vw !important;
  }
}
.paddingY--104 {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}
@media (max-width: 768px) {
  .paddingY--104 {
    padding-top: 87px !important;
    padding-bottom: 87px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--104 {
    padding-top: 13vw !important;
    padding-bottom: 13vw !important;
  }
}
.paddingY--112 {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}
@media (max-width: 768px) {
  .paddingY--112 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--112 {
    padding-top: 14vw !important;
    padding-bottom: 14vw !important;
  }
}
.paddingY--120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
@media (max-width: 768px) {
  .paddingY--120 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--120 {
    padding-top: 15vw !important;
    padding-bottom: 15vw !important;
  }
}
.paddingY--128 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}
@media (max-width: 768px) {
  .paddingY--128 {
    padding-top: 107px !important;
    padding-bottom: 107px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--128 {
    padding-top: 16vw !important;
    padding-bottom: 16vw !important;
  }
}
.paddingY--136 {
  padding-top: 136px !important;
  padding-bottom: 136px !important;
}
@media (max-width: 768px) {
  .paddingY--136 {
    padding-top: 114px !important;
    padding-bottom: 114px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--136 {
    padding-top: 17vw !important;
    padding-bottom: 17vw !important;
  }
}
.paddingY--144 {
  padding-top: 144px !important;
  padding-bottom: 144px !important;
}
@media (max-width: 768px) {
  .paddingY--144 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--144 {
    padding-top: 18vw !important;
    padding-bottom: 18vw !important;
  }
}
.paddingY--152 {
  padding-top: 152px !important;
  padding-bottom: 152px !important;
}
@media (max-width: 768px) {
  .paddingY--152 {
    padding-top: 127px !important;
    padding-bottom: 127px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--152 {
    padding-top: 19vw !important;
    padding-bottom: 19vw !important;
  }
}
.paddingY--160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}
@media (max-width: 768px) {
  .paddingY--160 {
    padding-top: 134px !important;
    padding-bottom: 134px !important;
  }
}
@media (max-width: 480px) {
  .paddingY--160 {
    padding-top: 20vw !important;
    padding-bottom: 20vw !important;
  }
}

.width--8 {
  width: 8px !important;
  min-width: 0 !important;
}
.width--16 {
  width: 16px !important;
  min-width: 0 !important;
}
.width--24 {
  width: 24px !important;
  min-width: 0 !important;
}
.width--32 {
  width: 32px !important;
  min-width: 0 !important;
}
.width--40 {
  width: 40px !important;
  min-width: 0 !important;
}
.width--48 {
  width: 48px !important;
  min-width: 0 !important;
}
.width--56 {
  width: 56px !important;
  min-width: 0 !important;
}
.width--64 {
  width: 64px !important;
  min-width: 0 !important;
}
.width--72 {
  width: 72px !important;
  min-width: 0 !important;
}
.width--80 {
  width: 80px !important;
  min-width: 0 !important;
}
.width--88 {
  width: 88px !important;
  min-width: 0 !important;
}
.width--96 {
  width: 96px !important;
  min-width: 0 !important;
}
.width--104 {
  width: 104px !important;
  min-width: 0 !important;
}
.width--112 {
  width: 112px !important;
  min-width: 0 !important;
}
.width--120 {
  width: 120px !important;
  min-width: 0 !important;
}
.width--128 {
  width: 128px !important;
  min-width: 0 !important;
}
.width--136 {
  width: 136px !important;
  min-width: 0 !important;
}
.width--144 {
  width: 144px !important;
  min-width: 0 !important;
}
.width--152 {
  width: 152px !important;
  min-width: 0 !important;
}
.width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
.width--160 {
  width: 160px !important;
  min-width: 0 !important;
}
.width--240 {
  width: 240px !important;
  min-width: 0 !important;
}
.width--320 {
  width: 320px !important;
  min-width: 0 !important;
}
.width--400 {
  width: 400px !important;
  min-width: 0 !important;
}
.width--480 {
  width: 480px !important;
  min-width: 0 !important;
}
.width--560 {
  width: 560px !important;
  min-width: 0 !important;
}
.width--640 {
  width: 640px !important;
  min-width: 0 !important;
}
.width--720 {
  width: 720px !important;
  min-width: 0 !important;
}
.width--800 {
  width: 800px !important;
  min-width: 0 !important;
}
.width--880 {
  width: 880px !important;
  min-width: 0 !important;
}
.width--960 {
  width: 960px !important;
  min-width: 0 !important;
}
.width--1040 {
  width: 1040px !important;
  min-width: 0 !important;
}
.width--1120 {
  width: 1120px !important;
  min-width: 0 !important;
}
.width--1200 {
  width: 1200px !important;
  min-width: 0 !important;
}
.width--1280 {
  width: 1280px !important;
  min-width: 0 !important;
}
.width--5per {
  width: 5% !important;
  min-width: 0 !important;
}
.width--10per {
  width: 10% !important;
  min-width: 0 !important;
}
.width--15per {
  width: 15% !important;
  min-width: 0 !important;
}
.width--20per {
  width: 20% !important;
  min-width: 0 !important;
}
.width--25per {
  width: 25% !important;
  min-width: 0 !important;
}
.width--30per {
  width: 30% !important;
  min-width: 0 !important;
}
.width--35per {
  width: 35% !important;
  min-width: 0 !important;
}
.width--40per {
  width: 40% !important;
  min-width: 0 !important;
}
.width--45per {
  width: 45% !important;
  min-width: 0 !important;
}
.width--50per {
  width: 50% !important;
  min-width: 0 !important;
}
.width--55per {
  width: 55% !important;
  min-width: 0 !important;
}
.width--60per {
  width: 60% !important;
  min-width: 0 !important;
}
.width--65per {
  width: 65% !important;
  min-width: 0 !important;
}
.width--70per {
  width: 70% !important;
  min-width: 0 !important;
}
.width--75per {
  width: 75% !important;
  min-width: 0 !important;
}
.width--80per {
  width: 80% !important;
  min-width: 0 !important;
}
.width--85per {
  width: 85% !important;
  min-width: 0 !important;
}
.width--90per {
  width: 90% !important;
  min-width: 0 !important;
}
.width--95per {
  width: 95% !important;
  min-width: 0 !important;
}
.width--100per {
  width: 100% !important;
  min-width: 0 !important;
}
.width--fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .width-tab--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--560 {
    width: 560px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--640 {
    width: 640px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--720 {
    width: 720px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--800 {
    width: 800px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .width-tab--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--8 {
    width: 8px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--16 {
    width: 16px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--24 {
    width: 24px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--32 {
    width: 32px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--40 {
    width: 40px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--48 {
    width: 48px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--56 {
    width: 56px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--64 {
    width: 64px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--72 {
    width: 72px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--80 {
    width: 80px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--88 {
    width: 88px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--96 {
    width: 96px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--104 {
    width: 104px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--112 {
    width: 112px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--120 {
    width: 120px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--128 {
    width: 128px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--136 {
    width: 136px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--144 {
    width: 144px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--152 {
    width: 152px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--160 {
    width: 160px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--240 {
    width: 240px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--320 {
    width: 320px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--400 {
    width: 400px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--480 {
    width: 480px !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--5per {
    width: 5% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--10per {
    width: 10% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--15per {
    width: 15% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--20per {
    width: 20% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--25per {
    width: 25% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--30per {
    width: 30% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--35per {
    width: 35% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--40per {
    width: 40% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--45per {
    width: 45% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--50per {
    width: 50% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--55per {
    width: 55% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--60per {
    width: 60% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--65per {
    width: 65% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--70per {
    width: 70% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--75per {
    width: 75% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--80per {
    width: 80% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--85per {
    width: 85% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--90per {
    width: 90% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--95per {
    width: 95% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .width-sp--100per {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/*----------------------------------------------------
grid
------------------------------------------------------*/
.grid-base {
  display: grid;
}
.grid-base > * {
  margin-top: 0 !important;
}
.grid-column--one {
  display: grid;
}
.grid-column--one > * {
  margin-top: 0 !important;
}
.grid-column--one {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px 16px;
}
@media (max-width: 768px) {
  .grid-column--one {
    gap: 14px 14px;
  }
}
@media (max-width: 480px) {
  .grid-column--one {
    gap: 2vw 2vw;
  }
}
.grid-column--two {
  display: grid;
}
.grid-column--two > * {
  margin-top: 0 !important;
}
.grid-column--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 480px) {
  .grid-column--two {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-column--three {
  display: grid;
}
.grid-column--three > * {
  margin-top: 0 !important;
}
.grid-column--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 480px) {
  .grid-column--three {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-column--four {
  display: grid;
}
.grid-column--four > * {
  margin-top: 0 !important;
}
.grid-column--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 480px) {
  .grid-column--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-column--five {
  display: grid;
}
.grid-column--five > * {
  margin-top: 0 !important;
}
.grid-column--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 16px;
}
@media (max-width: 768px) {
  .grid-column--five {
    gap: 20px 14px;
  }
}
@media (max-width: 480px) {
  .grid-column--five {
    gap: 3vw 2vw;
  }
}
@media (max-width: 768px) {
  .grid-column--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-column--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-column--six {
  display: grid;
}
.grid-column--six > * {
  margin-top: 0 !important;
}
.grid-column--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 16px;
}
@media (max-width: 768px) {
  .grid-column--six {
    gap: 14px 14px;
  }
}
@media (max-width: 480px) {
  .grid-column--six {
    gap: 2vw 2vw;
  }
}
@media (max-width: 768px) {
  .grid-column--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .grid-column--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*----------------------------------------------------
flex
------------------------------------------------------*/
.flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex > * {
  margin-block: 0 !important;
}
.flex-base {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-base > * {
  margin-block: 0 !important;
}

.justify--start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.justify--end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.justify--end-safe {
  -webkit-box-pack: safe flex-end;
  -webkit-justify-content: safe flex-end;
      -ms-flex-pack: safe flex-end;
          justify-content: safe flex-end;
}
.justify--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify--center-safe {
  -webkit-box-pack: safe center;
  -webkit-justify-content: safe center;
      -ms-flex-pack: safe center;
          justify-content: safe center;
}
.justify--between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.justify--around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.justify--evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.justify--stretch {
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.justify--baseline {
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}
.justify--normal {
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}

/*----------------------------------------------------
Gap
------------------------------------------------------*/
.gapX--00 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}
.gapX--04 {
  -webkit-column-gap: 4px !important;
     -moz-column-gap: 4px !important;
          column-gap: 4px !important;
}
.gapX--08 {
  -webkit-column-gap: 8px !important;
     -moz-column-gap: 8px !important;
          column-gap: 8px !important;
}
.gapX--10 {
  -webkit-column-gap: 10px !important;
     -moz-column-gap: 10px !important;
          column-gap: 10px !important;
}
.gapX--16 {
  -webkit-column-gap: 16px !important;
     -moz-column-gap: 16px !important;
          column-gap: 16px !important;
}
@media (max-width: 768px) {
  .gapX--16 {
    -webkit-column-gap: 14px !important;
       -moz-column-gap: 14px !important;
            column-gap: 14px !important;
  }
}
@media (max-width: 480px) {
  .gapX--16 {
    -webkit-column-gap: 2vw !important;
       -moz-column-gap: 2vw !important;
            column-gap: 2vw !important;
  }
}
.gapX--24 {
  -webkit-column-gap: 24px !important;
     -moz-column-gap: 24px !important;
          column-gap: 24px !important;
}
@media (max-width: 768px) {
  .gapX--24 {
    -webkit-column-gap: 20px !important;
       -moz-column-gap: 20px !important;
            column-gap: 20px !important;
  }
}
@media (max-width: 480px) {
  .gapX--24 {
    -webkit-column-gap: 3vw !important;
       -moz-column-gap: 3vw !important;
            column-gap: 3vw !important;
  }
}
.gapX--32 {
  -webkit-column-gap: 32px !important;
     -moz-column-gap: 32px !important;
          column-gap: 32px !important;
}
@media (max-width: 768px) {
  .gapX--32 {
    -webkit-column-gap: 27px !important;
       -moz-column-gap: 27px !important;
            column-gap: 27px !important;
  }
}
@media (max-width: 480px) {
  .gapX--32 {
    -webkit-column-gap: 4vw !important;
       -moz-column-gap: 4vw !important;
            column-gap: 4vw !important;
  }
}
.gapX--40 {
  -webkit-column-gap: 40px !important;
     -moz-column-gap: 40px !important;
          column-gap: 40px !important;
}
@media (max-width: 768px) {
  .gapX--40 {
    -webkit-column-gap: 34px !important;
       -moz-column-gap: 34px !important;
            column-gap: 34px !important;
  }
}
@media (max-width: 480px) {
  .gapX--40 {
    -webkit-column-gap: 5vw !important;
       -moz-column-gap: 5vw !important;
            column-gap: 5vw !important;
  }
}
.gapX--48 {
  -webkit-column-gap: 48px !important;
     -moz-column-gap: 48px !important;
          column-gap: 48px !important;
}
@media (max-width: 768px) {
  .gapX--48 {
    -webkit-column-gap: 40px !important;
       -moz-column-gap: 40px !important;
            column-gap: 40px !important;
  }
}
@media (max-width: 480px) {
  .gapX--48 {
    -webkit-column-gap: 6vw !important;
       -moz-column-gap: 6vw !important;
            column-gap: 6vw !important;
  }
}
.gapX--56 {
  -webkit-column-gap: 56px !important;
     -moz-column-gap: 56px !important;
          column-gap: 56px !important;
}
@media (max-width: 768px) {
  .gapX--56 {
    -webkit-column-gap: 47px !important;
       -moz-column-gap: 47px !important;
            column-gap: 47px !important;
  }
}
@media (max-width: 480px) {
  .gapX--56 {
    -webkit-column-gap: 7vw !important;
       -moz-column-gap: 7vw !important;
            column-gap: 7vw !important;
  }
}
.gapX--64 {
  -webkit-column-gap: 64px !important;
     -moz-column-gap: 64px !important;
          column-gap: 64px !important;
}
@media (max-width: 768px) {
  .gapX--64 {
    -webkit-column-gap: 54px !important;
       -moz-column-gap: 54px !important;
            column-gap: 54px !important;
  }
}
@media (max-width: 480px) {
  .gapX--64 {
    -webkit-column-gap: 8vw !important;
       -moz-column-gap: 8vw !important;
            column-gap: 8vw !important;
  }
}
.gapX--72 {
  -webkit-column-gap: 72px !important;
     -moz-column-gap: 72px !important;
          column-gap: 72px !important;
}
@media (max-width: 768px) {
  .gapX--72 {
    -webkit-column-gap: 60px !important;
       -moz-column-gap: 60px !important;
            column-gap: 60px !important;
  }
}
@media (max-width: 480px) {
  .gapX--72 {
    -webkit-column-gap: 9vw !important;
       -moz-column-gap: 9vw !important;
            column-gap: 9vw !important;
  }
}
.gapX--80 {
  -webkit-column-gap: 80px !important;
     -moz-column-gap: 80px !important;
          column-gap: 80px !important;
}
@media (max-width: 768px) {
  .gapX--80 {
    -webkit-column-gap: 67px !important;
       -moz-column-gap: 67px !important;
            column-gap: 67px !important;
  }
}
@media (max-width: 480px) {
  .gapX--80 {
    -webkit-column-gap: 10vw !important;
       -moz-column-gap: 10vw !important;
            column-gap: 10vw !important;
  }
}
.gapY--00 {
  row-gap: 0 !important;
}
.gapY--04 {
  row-gap: 4px !important;
}
.gapY--08 {
  row-gap: 8px !important;
}
.gapY--10 {
  row-gap: 10px !important;
}
.gapY--16 {
  row-gap: 16px !important;
}
@media (max-width: 768px) {
  .gapY--16 {
    row-gap: 14px !important;
  }
}
@media (max-width: 480px) {
  .gapY--16 {
    row-gap: 2vw !important;
  }
}
.gapY--24 {
  row-gap: 24px !important;
}
@media (max-width: 768px) {
  .gapY--24 {
    row-gap: 20px !important;
  }
}
@media (max-width: 480px) {
  .gapY--24 {
    row-gap: 3vw !important;
  }
}
.gapY--32 {
  row-gap: 32px !important;
}
@media (max-width: 768px) {
  .gapY--32 {
    row-gap: 27px !important;
  }
}
@media (max-width: 480px) {
  .gapY--32 {
    row-gap: 4vw !important;
  }
}
.gapY--40 {
  row-gap: 40px !important;
}
@media (max-width: 768px) {
  .gapY--40 {
    row-gap: 34px !important;
  }
}
@media (max-width: 480px) {
  .gapY--40 {
    row-gap: 5vw !important;
  }
}
.gapY--48 {
  row-gap: 48px !important;
}
@media (max-width: 768px) {
  .gapY--48 {
    row-gap: 40px !important;
  }
}
@media (max-width: 480px) {
  .gapY--48 {
    row-gap: 6vw !important;
  }
}
.gapY--56 {
  row-gap: 56px !important;
}
@media (max-width: 768px) {
  .gapY--56 {
    row-gap: 47px !important;
  }
}
@media (max-width: 480px) {
  .gapY--56 {
    row-gap: 7vw !important;
  }
}
.gapY--64 {
  row-gap: 64px !important;
}
@media (max-width: 768px) {
  .gapY--64 {
    row-gap: 54px !important;
  }
}
@media (max-width: 480px) {
  .gapY--64 {
    row-gap: 8vw !important;
  }
}
.gapY--72 {
  row-gap: 72px !important;
}
@media (max-width: 768px) {
  .gapY--72 {
    row-gap: 60px !important;
  }
}
@media (max-width: 480px) {
  .gapY--72 {
    row-gap: 9vw !important;
  }
}
.gapY--80 {
  row-gap: 80px !important;
}
@media (max-width: 768px) {
  .gapY--80 {
    row-gap: 67px !important;
  }
}
@media (max-width: 480px) {
  .gapY--80 {
    row-gap: 10vw !important;
  }
}

/*----------------------------------------------------
Gap
------------------------------------------------------*/
.visible-pc,
.visible-tab,
.visible-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .visible-tab {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .visible-sp {
    display: block;
  }
}
/**
 * Swiper 11.2.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 3, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper.slider {
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: calc(100vh - 92px);
  max-height: 900px;
}
@media (max-width: 1440px) {
  .swiper.slider {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 768px) {
  .swiper.slider {
    height: calc(100vh - 50px);
  }
}

.top-hero .item {
  position: relative;
  height: calc(100vh - 92px);
  max-height: 900px;
}
@media (max-width: 1440px) {
  .top-hero .item {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 768px) {
  .top-hero .item {
    height: calc(100vh - 50px);
  }
}
.top-hero .item::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  margin: auto;
  background: center/cover no-repeat;
}
.top-hero .item.company::before {
  background-image: url(../images/top/mainvisual_company.webp?v=20260401-1400);
}
@media (max-width: 768px) {
  .top-hero .item.company::before {
    background-image: url(../images/top/mainvisual_company_sp.webp?v=20260401-1400);
  }
}
.top-hero .item.product::before {
  background-image: url(../images/top/mainvisual_product.webp?v=20260401-1400);
}
@media (max-width: 768px) {
  .top-hero .item.product::before {
    background-image: url(../images/top/mainvisual_product_sp.webp?v=20260401-1400);
  }
}
.top-hero .item.environment::before {
  background-image: url(../images/top/mainvisual_environment.webp?v=20260401-1400);
}
@media (max-width: 768px) {
  .top-hero .item.environment::before {
    background-image: url(../images/top/mainvisual_environment_sp.webp?v=20260401-1400);
  }
}
.top-hero .item.locations::before {
  background-image: url(../images/top/mainvisual_locations.webp?v=20260401-1400);
}
@media (max-width: 768px) {
  .top-hero .item.locations::before {
    background-image: url(../images/top/mainvisual_locations_sp.webp?v=20260401-1400);
  }
}
.top-hero .item .inner {
  padding: calc(var(--header-logo-height) + var(--header-padding-pc) * 2) calc(var(--header-logo-height) + var(--header-padding-pc) * 2) calc(var(--header-logo-height) + var(--header-padding-pc) * 2 * 1.5);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  justify-items: start;
  -webkit-align-content: end;
      -ms-flex-line-pack: end;
          align-content: end;
  gap: 0.8333333333vw;
}
@media (max-width: 1440px) {
  .top-hero .item .inner {
    gap: 1.1111111111vw;
    padding-left: calc(var(--header-padding-pc) * 2);
    padding-right: calc(var(--header-padding-pc) * 2);
  }
}
.top-hero .item .title {
  width: auto;
  height: 2.5vw;
}
@media (max-width: 1440px) {
  .top-hero .item .title {
    height: 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title {
    height: 5.2083333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title {
    height: 8vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title:has(img[src*="location_title.svg"]) {
    height: 13.0208333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title:has(img[src*="location_title.svg"]) {
    height: 20vw;
  }
}
.top-hero .item .title:has(img[src*="company_title_en.svg"]), .top-hero .item .title:has(img[src*="product_title_en.svg"]), .top-hero .item .title:has(img[src*="location_title_en.svg"]), .top-hero .item .title:has(img[src*="environment_title_en.svg"]) {
  height: 1.875vw;
}
@media (max-width: 1440px) {
  .top-hero .item .title:has(img[src*="company_title_en.svg"]), .top-hero .item .title:has(img[src*="product_title_en.svg"]), .top-hero .item .title:has(img[src*="location_title_en.svg"]), .top-hero .item .title:has(img[src*="environment_title_en.svg"]) {
    height: 2.0833333333vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title:has(img[src*="company_title_en.svg"]), .top-hero .item .title:has(img[src*="product_title_en.svg"]), .top-hero .item .title:has(img[src*="location_title_en.svg"]), .top-hero .item .title:has(img[src*="environment_title_en.svg"]) {
    height: 15.625vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title:has(img[src*="company_title_en.svg"]), .top-hero .item .title:has(img[src*="product_title_en.svg"]), .top-hero .item .title:has(img[src*="location_title_en.svg"]), .top-hero .item .title:has(img[src*="environment_title_en.svg"]) {
    height: 21.3333333333vw;
  }
}
.top-hero .item .title img {
  width: auto;
  height: 2.5vw;
  -webkit-filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1440px) {
  .top-hero .item .title img {
    height: 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title img {
    height: 5.2083333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title img {
    height: 8vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title img[src*="location_title.svg"] {
    height: 13.0208333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title img[src*="location_title.svg"] {
    height: 20vw;
  }
}
.top-hero .item .title img[src*="company_title_en.svg"], .top-hero .item .title img[src*="product_title_en.svg"], .top-hero .item .title img[src*="location_title_en.svg"], .top-hero .item .title img[src*="environment_title_en.svg"] {
  height: 1.875vw;
}
@media (max-width: 1440px) {
  .top-hero .item .title img[src*="company_title_en.svg"], .top-hero .item .title img[src*="product_title_en.svg"], .top-hero .item .title img[src*="location_title_en.svg"], .top-hero .item .title img[src*="environment_title_en.svg"] {
    height: 2.0833333333vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .title img[src*="company_title_en.svg"], .top-hero .item .title img[src*="product_title_en.svg"], .top-hero .item .title img[src*="location_title_en.svg"], .top-hero .item .title img[src*="environment_title_en.svg"] {
    height: 15.625vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .title img[src*="company_title_en.svg"], .top-hero .item .title img[src*="product_title_en.svg"], .top-hero .item .title img[src*="location_title_en.svg"], .top-hero .item .title img[src*="environment_title_en.svg"] {
    height: 21.3333333333vw;
  }
}
.top-hero .item .sub-title {
  width: auto;
  height: 1.25vw;
}
@media (max-width: 1440px) {
  .top-hero .item .sub-title {
    height: 1.6666666667vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .sub-title {
    height: 6.7708333333vw;
    margin-top: 2.0833333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .sub-title {
    height: 8.8vw;
    margin-top: 3.7333333333vw;
  }
}
.top-hero .item .sub-title:has(img[src*="company_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="product_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="location_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="environment_subtitle_en.svg"]) {
  height: 1.25vw;
}
@media (max-width: 1440px) {
  .top-hero .item .sub-title:has(img[src*="company_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="product_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="location_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="environment_subtitle_en.svg"]) {
    height: 1.3888888889vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .sub-title:has(img[src*="company_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="product_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="location_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="environment_subtitle_en.svg"]) {
    height: 3.125vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .sub-title:has(img[src*="company_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="product_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="location_subtitle_en.svg"]), .top-hero .item .sub-title:has(img[src*="environment_subtitle_en.svg"]) {
    height: 4.2666666667vw;
  }
}
.top-hero .item .sub-title img {
  width: auto;
  height: 1.25vw;
  -webkit-filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1440px) {
  .top-hero .item .sub-title img {
    height: 1.6666666667vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .sub-title img {
    height: 6.7708333333vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .sub-title img {
    height: 8.8vw;
  }
}
.top-hero .item .sub-title img[src*="company_subtitle_en.svg"], .top-hero .item .sub-title img[src*="product_subtitle_en.svg"], .top-hero .item .sub-title img[src*="location_subtitle_en.svg"], .top-hero .item .sub-title img[src*="environment_subtitle_en.svg"] {
  height: 1.25vw;
}
@media (max-width: 1440px) {
  .top-hero .item .sub-title img[src*="company_subtitle_en.svg"], .top-hero .item .sub-title img[src*="product_subtitle_en.svg"], .top-hero .item .sub-title img[src*="location_subtitle_en.svg"], .top-hero .item .sub-title img[src*="environment_subtitle_en.svg"] {
    height: 1.3888888889vw;
  }
}
@media (max-width: 768px) {
  .top-hero .item .sub-title img[src*="company_subtitle_en.svg"], .top-hero .item .sub-title img[src*="product_subtitle_en.svg"], .top-hero .item .sub-title img[src*="location_subtitle_en.svg"], .top-hero .item .sub-title img[src*="environment_subtitle_en.svg"] {
    height: 3.125vw;
  }
}
@media (max-width: 480px) {
  .top-hero .item .sub-title img[src*="company_subtitle_en.svg"], .top-hero .item .sub-title img[src*="product_subtitle_en.svg"], .top-hero .item .sub-title img[src*="location_subtitle_en.svg"], .top-hero .item .sub-title img[src*="environment_subtitle_en.svg"] {
    height: 4.2666666667vw;
  }
}
.top-hero .item .title--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.swiper-slide .item::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 20s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 20s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 20s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 20s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 20s cubic-bezier(0.2, 1, 0.2, 1);
}
.swiper-slide .item .title,
.swiper-slide .item .sub-title {
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-filter: blur(12px);
          filter: blur(12px);
}
.swiper-slide.swiper-slide-active .item::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.swiper-slide.swiper-slide-active .item .title,
.swiper-slide.swiper-slide-active .item .sub-title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease, -webkit-filter 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease, -webkit-filter 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease, -webkit-transform 0.8s ease, -webkit-filter 0.8s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.swiper-slide.swiper-slide-prev .item::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.swiper-slide.swiper-slide-prev .item .title,
.swiper-slide.swiper-slide-prev .item .sub-title {
  opacity: 0;
}

/* ページネーション全体 */
.pagination {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 8px 16px;
}
@media (max-width: 768px) {
  .pagination {
    gap: 7px 14px;
  }
}
@media (max-width: 480px) {
  .pagination {
    gap: 1vw 2vw;
  }
}
.pagination {
  z-index: 10;
  color: #fff;
}
@media (max-width: 1440px) {
  .pagination {
    left: clamp(4.8rem, -1.2rem + 5vw, 8.4rem);
  }
}
@media (max-width: 1000px) {
  .pagination {
    bottom: var(--paginationBottomSp);
  }
}
@media (max-width: 480px) {
  .pagination {
    left: 3.75vw;
  }
}

/* ナビボタン */
.buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: absolute;
  z-index: 2;
  top: calc(100% - var(--header-logo-height) - var(--header-padding-pc) * 2 + 16px);
  left: calc(var(--header-logo-height) + var(--header-padding-pc) * 2);
}
@media (max-width: 1440px) {
  .buttons {
    left: calc(var(--header-padding-pc) * 2);
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  aspect-ratio: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 3.6rem;
  height: auto;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  display: grid;
  place-content: center;
  margin-top: inherit;
  inset: 0;
}
@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: #fff;
    border-color: #009fa8;
  }
  .swiper-button-prev:hover::after,
  .swiper-button-next:hover::after {
    color: #009fa8;
  }
}
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  background-color: #009fa8;
  border-color: #009fa8;
}
.swiper-button-prev:focus-visible::after,
.swiper-button-next:focus-visible::after {
  color: #fff;
}

.swiper-button-prev::after {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}
@media (any-hover: hover) {
  .swiper-button-prev::after:hover {
    color: #009fa8;
  }
}
.swiper-button-prev::after:focus-visible {
  color: #009fa8;
}

.swiper-button-next::after {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}
@media (any-hover: hover) {
  .swiper-button-next::after:hover {
    color: #009fa8;
  }
}
.swiper-button-next::after:focus-visible {
  color: #009fa8;
}

/* 再生/一時停止ボタン */
.toggle {
  position: relative;
  aspect-ratio: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 3.6rem;
  height: auto;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  display: grid;
  place-content: center;
  margin-top: inherit;
  inset: 0;
}
@media (any-hover: hover) {
  .toggle:hover {
    background-color: #fff;
    border-color: #009fa8;
  }
  .toggle:hover::after {
    color: #009fa8;
  }
}
.toggle:focus-visible {
  background-color: #009fa8;
  border-color: #009fa8;
}
.toggle:focus-visible::after {
  color: #fff;
}
@media (any-hover: hover) {
  .toggle:hover::after {
    border-right: 8px solid #009fa8;
  }
  .toggle:hover.active::after {
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, #009fa8), color-stop(40%, transparent), color-stop(60%, transparent), color-stop(60%, #009fa8));
    background: -webkit-linear-gradient(left, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
    background: linear-gradient(to right, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
  }
}
.toggle:focus-visible::after {
  border-right: 8px solid #009fa8;
}
.toggle:focus-visible.active::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #fff), color-stop(40%, transparent), color-stop(60%, transparent), color-stop(60%, #fff));
  background: -webkit-linear-gradient(left, #fff 40%, transparent 40%, transparent 60%, #fff 60%);
  background: linear-gradient(to right, #fff 40%, transparent 40%, transparent 60%, #fff 60%);
}

/* Playボタンの三角形 */
.toggle::after {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}
@media (any-hover: hover) {
  .toggle::after:hover {
    color: #009fa8;
  }
}
.toggle::after:focus-visible {
  color: #009fa8;
}
.toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #fff;
}

/* Pauseボタンの二本線 */
.toggle.active::after {
  width: 8px;
  height: 12px;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #fff), color-stop(40%, transparent), color-stop(60%, transparent), color-stop(60%, #fff));
  background: -webkit-linear-gradient(left, #fff 40%, transparent 40%, transparent 60%, #fff 60%);
  background: linear-gradient(to right, #fff 40%, transparent 40%, transparent 60%, #fff 60%);
  border: none;
}
@media (any-hover: hover) {
  .toggle.active::after:hover {
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, #009fa8), color-stop(40%, transparent), color-stop(60%, transparent), color-stop(60%, #009fa8));
    background: -webkit-linear-gradient(left, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
    background: linear-gradient(to right, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
  }
}
.toggle.active::after:focus-visible {
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #009fa8), color-stop(40%, transparent), color-stop(60%, transparent), color-stop(60%, #009fa8));
  background: -webkit-linear-gradient(left, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
  background: linear-gradient(to right, #009fa8 40%, transparent 40%, transparent 60%, #009fa8 60%);
}

/* progressbar */
.swiper-progressbar {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #fff;
  bottom: 4px;
  z-index: 1;
}

.swiper-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background-color: #009fa8;
}

/* アコーディオン (スマホ用) */
body.modal-open {
  overflow: hidden;
}

.accordion-container {
  border-top: 1px solid #ccc;
  display: none;
}
@media (max-width: 1000px) {
  .accordion-container {
    display: block;
  }
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

@media (max-width: 1000px) {
  .accordion-header {
    width: 100%;
    text-align: left;
    color: #009fa8;
    padding: 24px 0 24px 16px;
    font-size: 2rem;
    border: none;
    background: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .accordion-header:focus-visible {
    outline: 2px solid #000;
  }
}

.accordion-header[aria-expanded=true] {
  font-weight: bold;
  background-color: #009fa8;
}
@media (max-width: 1000px) {
  .accordion-header[aria-expanded=true]::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #fff;
  }
  .accordion-header[aria-expanded=true]::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background-color: #fff;
  }
}
.accordion-header[aria-expanded=true] .sp-only {
  color: #fff;
}
@media (max-width: 1000px) {
  .accordion-header[aria-expanded=true] .num-btn {
    border: 1px solid #fff;
    color: #fff;
  }
}

.image-buttons {
  position: relative;
}
.image-buttons > :nth-child(2) {
  margin-top: 48px;
}
.image-buttons button {
  position: relative;
  border-radius: 100px;
  background: #fff;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border: 2px solid #009fa8;
}
@media (max-width: 1000px) {
  .image-buttons button {
    border-radius: 0;
    border: none;
  }
}
.image-buttons button:focus-visible {
  background-color: #009fa8;
}
.image-buttons button:focus-visible span.num-btn {
  color: #fff;
}
@media (max-width: 1000px) {
  .image-buttons button:focus-visible span.num-btn {
    border: 1px solid #fff;
  }
}
.image-buttons button:focus-visible .sp-only {
  color: #fff;
}
.image-buttons button:focus-visible::before, .image-buttons button:focus-visible::after {
  background-color: #fff;
}
@media (any-hover: hover) {
  .image-buttons button:hover {
    background-color: #009fa8;
  }
  .image-buttons button:hover span.num-btn {
    color: #fff;
  }
}
@media (any-hover: hover) and (max-width: 1000px) {
  .image-buttons button:hover span.num-btn {
    border: 1px solid #fff;
  }
}
@media (any-hover: hover) {
  .image-buttons button:hover .sp-only {
    color: #fff;
  }
  .image-buttons button:hover::before, .image-buttons button:hover::after {
    background-color: #fff;
  }
}
@media (hover: none) {
  .image-buttons button:active {
    background-color: #009fa8;
  }
  .image-buttons button:active span.num-btn {
    color: #fff;
  }
}
@media (hover: none) and (max-width: 1000px) {
  .image-buttons button:active span.num-btn {
    border: 1px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons button:active .sp-only {
    color: #fff;
  }
  .image-buttons button:active::before, .image-buttons button:active::after {
    background-color: #fff;
  }
}
@media (max-width: 1000px) {
  .image-buttons button::before, .image-buttons button::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    right: 24px;
    background-color: #009fa8;
  }
  .image-buttons button::before {
    top: 48%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .image-buttons button::after {
    top: 48%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.image-buttons button span.num-btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-radius: 9999px;
}
@media (max-width: 1000px) {
  .image-buttons button span.num-btn {
    line-height: 1.3;
  }
}
.image-buttons button span.num-btn {
  width: 32px;
  font-size: 1.8rem;
  color: #009fa8;
}
@media (max-width: 1000px) {
  .image-buttons button span.num-btn {
    border: 1px solid #009fa8;
    width: 24px;
    font-size: 1.6rem;
  }
}
.image-buttons button span.sp-only {
  display: none;
}
@media (max-width: 1000px) {
  .image-buttons button span.sp-only {
    display: inline;
    color: #009fa8;
    font-weight: bold;
    font-size: 2rem;
    padding-left: 8px;
  }
}
.image-buttons button.hover, .image-buttons button:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline-offset: 2px;
  z-index: 999;
}
@media (any-hover: hover) {
  .image-buttons button:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline-offset: 2px;
    z-index: 999;
  }
}
@media (hover: none) {
  .image-buttons button:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline-offset: 2px;
    z-index: 999;
  }
}
.image-buttons img {
  width: 100%;
  height: auto;
  display: block;
}
.image-buttons .image-btn {
  display: inline;
}
@media (max-width: 1000px) {
  .image-buttons .image-btn {
    display: block;
    border-top: 1px solid #009fa8;
  }
}
.image-buttons .image-btn dialog:has(.three-col-images) {
  width: 1000px;
  background: #fff;
  border-radius: 6px;
}
.image-buttons .image-btn dialog {
  border: none;
  max-height: 90vh;
  /* 初期状態では非表示とする。open属性が付与されたら表示 */
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
}
.image-buttons .image-btn dialog .btn-list--right {
  margin-top: 0;
  padding-right: 8px;
  padding-top: 8px;
}
.image-buttons .image-btn dialog .modal-title-home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.image-buttons .image-btn dialog .modal-title-home h3 {
  border-left: 0;
  color: #fff;
  background-color: #009fa8;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 40px;
  line-height: 2;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  border-radius: 8px;
  height: 48px;
}
.image-buttons .image-btn dialog .modal-title-home h3::after {
  display: none;
}
.image-buttons .image-btn dialog .modal-title-home span {
  width: 32px;
  height: 32px;
  color: #009fa8;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  line-height: 0;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
.image-buttons .image-btn dialog .image-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 8px;
  gap: 8px;
}
.image-buttons .image-btn dialog .image-block .card-ui {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
}
.image-buttons .image-btn dialog .image-block .card-ui img {
  height: 100%;
  width: auto;
  /* モーダル内の画像の高さを抑え、説明や閉じるボタンが常に表示されるようにする */
  max-height: 40vh;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc {
  background-color: #333;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc span.list-num {
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100px;
  background: #009fa8;
  border: 1px solid #009fa8;
  cursor: pointer;
  line-height: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc span.list-num {
    display: none;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h3::after {
  display: none;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h3,
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h4,
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h5,
.image-buttons .image-btn dialog .image-block .card-ui .product-desc p {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h3:has(span),
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h4:has(span),
.image-buttons .image-btn dialog .image-block .card-ui .product-desc h5:has(span),
.image-buttons .image-btn dialog .image-block .card-ui .product-desc p:has(span) {
  font-size: 2.4rem;
  font-weight: bold;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-title {
  margin-top: 12px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-title {
    margin-top: 8px;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-title:after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 6px 0 0 0;
  background-color: #fff;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-name {
    font-size: 1.6rem;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li {
    width: calc(50% - 8px);
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a {
  padding: 6px 16px 6px 10px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-color: #333;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #627a86;
  border-right: 2px solid #627a86;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a.adjust-text-width {
  min-width: 120px;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li span {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li span {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc ul li span {
  background-color: #333;
  color: #fff;
  border-color: #fff;
  cursor: default;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .definition-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .definition-list dt {
  padding: 0 8px;
  background-color: #009fa8;
  color: #fff;
  border-radius: 2px;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .definition-list dd {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .grade-link {
  gap: 12px;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .product-example {
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block .card-ui .product-desc .product-example ~ .grade-link {
  margin-top: 6px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui {
  width: calc((100% - 8px) / 2);
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui img {
  height: 200px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .modal-title {
  font-size: 2rem;
  font-weight: bold;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc {
  background-color: #333;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc span.list-num {
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100px;
  background: #009fa8;
  border: 1px solid #009fa8;
  cursor: pointer;
  line-height: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc span.list-num {
    display: none;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h3::after {
  display: none;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h3,
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h4,
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h5,
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc p {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h3:has(span),
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h4:has(span),
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc h5:has(span),
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc p:has(span) {
  font-size: 2.4rem;
  font-weight: bold;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-title {
  margin-top: 12px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-title {
    margin-top: 8px;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-title:after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 6px 0 0 0;
  background-color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-name {
    font-size: 1.6rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li {
    width: calc(50% - 8px);
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a {
  padding: 6px 16px 6px 10px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-color: #333;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #627a86;
  border-right: 2px solid #627a86;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a.adjust-text-width {
  min-width: 120px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li span {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li span {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc ul li span {
  background-color: #333;
  color: #fff;
  border-color: #fff;
  cursor: default;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .definition-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .definition-list dt {
  padding: 0 8px;
  background-color: #009fa8;
  color: #fff;
  border-radius: 2px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .definition-list dd {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .grade-link {
  gap: 12px;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .product-example {
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col2 .card-ui .product-desc .product-example ~ .grade-link {
  margin-top: 6px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui {
  width: calc((100% - 16px) / 3);
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui img {
  height: 200px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .modal-title {
  font-size: 2rem;
  font-weight: bold;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc {
  background-color: #333;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc span.list-num {
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100px;
  background: #009fa8;
  border: 1px solid #009fa8;
  cursor: pointer;
  line-height: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc span.list-num {
    display: none;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h3::after {
  display: none;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h3,
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h4,
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h5,
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc p {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h3:has(span),
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h4:has(span),
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc h5:has(span),
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc p:has(span) {
  font-size: 2.4rem;
  font-weight: bold;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-title {
  margin-top: 12px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-title {
    margin-top: 8px;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-title:after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 6px 0 0 0;
  background-color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-name {
    font-size: 1.6rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li {
    width: calc(50% - 8px);
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a {
  padding: 6px 16px 6px 10px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-color: #333;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #627a86;
  border-right: 2px solid #627a86;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a.adjust-text-width {
  min-width: 120px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li span {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li span {
    font-size: 1.4rem;
  }
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc ul li span {
  background-color: #333;
  color: #fff;
  border-color: #fff;
  cursor: default;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .definition-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .definition-list dt {
  padding: 0 8px;
  background-color: #009fa8;
  color: #fff;
  border-radius: 2px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .definition-list dd {
  color: #fff;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .grade-link {
  gap: 12px;
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .product-example {
  margin-top: 8px;
}
.image-buttons .image-btn dialog .image-block.modal-col3 .card-ui .product-desc .product-example ~ .grade-link {
  margin-top: 6px;
}
.image-buttons .image-btn.switch-pos {
  position: absolute;
}
@media (max-width: 1000px) {
  .image-buttons .image-btn.switch-pos {
    position: static;
  }
}
.image-buttons .image-btn.ex-pos1 {
  top: 290px;
  left: 500px;
  margin-top: 0;
}
.image-buttons .image-btn.ex-pos2 {
  top: 320px;
  left: 580px;
}
.image-buttons .image-btn.ex-pos3 {
  top: 340px;
  left: 620px;
}
.image-buttons .image-btn.ex-pos4 {
  top: 340px;
  left: 460px;
}
.image-buttons .image-btn.ex-pos5 {
  top: 440px;
  left: 280px;
}
.image-buttons .image-btn.ex-pos6 {
  top: 340px;
  left: 270px;
}
.image-buttons .image-btn.ex-pos7 {
  top: 270px;
  left: 270px;
}
.image-buttons .image-btn.ex-pos8 {
  top: 200px;
  left: 560px;
}
.image-buttons .image-btn.ex-pos9 {
  top: 400px;
  left: 100px;
}
.image-buttons .image-btn.in-pos1 {
  top: 0;
  left: 500px;
}
.image-buttons .image-btn.in-pos2 {
  top: 255px;
  left: 645px;
}
.image-buttons .image-btn.in-pos3 {
  top: 450px;
  left: 830px;
}
.image-buttons .image-btn.in-pos4 {
  top: 320px;
  left: 820px;
}
.image-buttons .image-btn.in-pos5 {
  top: 270px;
  left: 400px;
}
.image-buttons .image-btn.in-pos6 {
  top: 400px;
  left: 690px;
}
.image-buttons .image-btn.in-pos7 {
  top: 400px;
  left: 515px;
}
.image-buttons .image-btn.in-pos8 {
  top: 500px;
  left: 570px;
}
.image-buttons .image-btn.in-pos9 {
  top: 370px;
  left: 860px;
}
.image-buttons .image-btn.drv-pos1 {
  top: 340px;
  left: 300px;
}
.image-buttons .image-btn.drv-pos2 {
  top: 220px;
  left: 680px;
}
.image-buttons .image-btn.drv-pos3 {
  top: 360px;
  left: 700px;
}
.image-buttons .image-btn.drv-pos4 {
  top: 330px;
  left: 580px;
}
.image-buttons .image-btn.drv-pos5 {
  top: 290px;
  left: 840px;
}
.image-buttons .image-btn.drv-pos6 {
  top: 220px;
  left: 800px;
}
.image-buttons .image-btn.drv-pos7 {
  top: 260px;
  left: 370px;
}
.image-buttons .image-btn.sus-pos1 {
  top: 400px;
  left: 260px;
}
.image-buttons .image-btn.sus-pos2 {
  top: 410px;
  left: 170px;
}
.image-buttons .image-btn.sus-pos3 {
  top: 590px;
  left: 390px;
}
.image-buttons .image-btn.home-pos1 {
  top: 90px;
  left: 220px;
}
.image-buttons .image-btn.home-pos2 {
  top: 220px;
  left: 220px;
}
.image-buttons .image-btn.home-pos3 {
  top: 430px;
  left: 220px;
}
.image-buttons .image-btn.home-pos4 {
  top: 330px;
  left: 410px;
}
.image-buttons .image-btn.home-pos5 {
  top: 430px;
  left: 410px;
}
.image-buttons .image-btn.home-pos6 {
  top: 330px;
  left: 620px;
}
.image-buttons .image-btn.home-pos7 {
  top: 430px;
  left: 620px;
}
.image-buttons .image-btn.home-pos8 {
  top: 580px;
  left: 620px;
}
@media (max-width: 1000px) {
  .image-buttons:last-child {
    border-bottom: 1px solid #009fa8;
  }
}
.image-buttons dialog[open] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: none;
}
.image-buttons dialog::-webkit-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.image-buttons dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.image-buttons dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.image-buttons .close-modal {
  font-size: 1.8rem;
  font-weight: normal;
  display: inline-block;
  color: #ffffff;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  text-align: end;
  background: none;
  line-height: 1;
  position: relative;
  padding-right: 24px;
}
.image-buttons .close-modal:focus-visible {
  outline: 2px solid #000;
  background-color: transparent;
}
.image-buttons .close-modal:after {
  content: "×";
  position: absolute;
  right: 0;
  font-size: 2rem;
  background-color: transparent !important;
}
.image-buttons .close-modal.hover, .image-buttons .close-modal:focus-visible {
  background-color: transparent;
  opacity: 0.5;
}
.image-buttons .close-modal.hover:after, .image-buttons .close-modal:focus-visible:after {
  background: none;
}
@media (any-hover: hover) {
  .image-buttons .close-modal:hover {
    background-color: transparent;
    opacity: 0.5;
  }
  .image-buttons .close-modal:hover:after {
    background: none;
  }
}
@media (hover: none) {
  .image-buttons .close-modal:active {
    background-color: transparent;
    opacity: 0.5;
  }
  .image-buttons .close-modal:active:after {
    background: none;
  }
}

.accordion-content .image-block {
  border-radius: 8px;
  padding: 12px 0;
}
.accordion-content .image-block .card-ui {
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .accordion-content .image-block .card-ui {
    border: 1px solid #d2d2d2;
  }
}
.accordion-content .image-block .card-ui img {
  width: auto;
  /* モーダル内の画像の高さを抑え、説明や閉じるボタンが常に表示されるようにする */
  max-height: 40vh;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.accordion-content .image-block .card-ui .product-desc {
  background-color: #333;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.accordion-content .image-block .card-ui .product-desc span.list-num {
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100px;
  background: #009fa8;
  border: 1px solid #009fa8;
  cursor: pointer;
  line-height: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .accordion-content .image-block .card-ui .product-desc span.list-num {
    display: none;
  }
}
.accordion-content .image-block .card-ui .product-desc h3::after {
  display: none;
}
.accordion-content .image-block .card-ui .product-desc h3,
.accordion-content .image-block .card-ui .product-desc h4,
.accordion-content .image-block .card-ui .product-desc h5,
.accordion-content .image-block .card-ui .product-desc p {
  color: #fff;
}
.accordion-content .image-block .card-ui .product-desc h3:has(span),
.accordion-content .image-block .card-ui .product-desc h4:has(span),
.accordion-content .image-block .card-ui .product-desc h5:has(span),
.accordion-content .image-block .card-ui .product-desc p:has(span) {
  font-size: 2.4rem;
  font-weight: bold;
}
.accordion-content .image-block .card-ui .product-desc .grade-title {
  margin-top: 12px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .accordion-content .image-block .card-ui .product-desc .grade-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .accordion-content .image-block .card-ui .product-desc .grade-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .accordion-content .image-block .card-ui .product-desc .grade-title {
    margin-top: 8px;
  }
}
.accordion-content .image-block .card-ui .product-desc .grade-title:after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 6px 0 0 0;
  background-color: #fff;
}
.accordion-content .image-block .card-ui .product-desc .grade-name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block .card-ui .product-desc .grade-name {
    font-size: 1.6rem;
  }
}
.accordion-content .image-block .card-ui .product-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .accordion-content .image-block .card-ui .product-desc ul li {
    width: calc(50% - 8px);
  }
}
.accordion-content .image-block .card-ui .product-desc ul li a {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block .card-ui .product-desc ul li a {
    font-size: 1.4rem;
  }
}
.accordion-content .image-block .card-ui .product-desc ul li a {
  padding: 6px 16px 6px 10px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-color: #333;
}
.accordion-content .image-block .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #627a86;
  border-right: 2px solid #627a86;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.accordion-content .image-block .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.accordion-content .image-block .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .accordion-content .image-block .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .accordion-content .image-block .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.accordion-content .image-block .card-ui .product-desc ul li a.adjust-text-width {
  min-width: 120px;
}
.accordion-content .image-block .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.accordion-content .image-block .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.accordion-content .image-block .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .accordion-content .image-block .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .accordion-content .image-block .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.accordion-content .image-block .card-ui .product-desc ul li span {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block .card-ui .product-desc ul li span {
    font-size: 1.4rem;
  }
}
.accordion-content .image-block .card-ui .product-desc ul li span {
  background-color: #333;
  color: #fff;
  border-color: #fff;
  cursor: default;
}
.accordion-content .image-block .card-ui .product-desc .definition-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.accordion-content .image-block .card-ui .product-desc .definition-list dt {
  padding: 0 8px;
  background-color: #009fa8;
  color: #fff;
  border-radius: 2px;
}
.accordion-content .image-block .card-ui .product-desc .definition-list dd {
  color: #fff;
}
.accordion-content .image-block .card-ui .product-desc .grade-link {
  gap: 12px;
  margin-top: 8px;
}
.accordion-content .image-block .card-ui .product-desc .product-example {
  margin-top: 8px;
}
.accordion-content .image-block .card-ui .product-desc .product-example ~ .grade-link {
  margin-top: 6px;
}
.accordion-content .image-block.modal-col3 .switch-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
.accordion-content .image-block.modal-col3 .card-ui {
  width: calc((100% - 16px) / 3);
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .accordion-content .image-block.modal-col3 .card-ui {
    width: 100%;
    margin-top: 16px;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .modal-title {
  font-size: 2rem;
  font-weight: bold;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc {
  background-color: #333;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc span.list-num {
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100px;
  background: #009fa8;
  border: 1px solid #009fa8;
  cursor: pointer;
  line-height: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 1000px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc span.list-num {
    display: none;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc h3::after {
  display: none;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc h3,
.accordion-content .image-block.modal-col3 .card-ui .product-desc h4,
.accordion-content .image-block.modal-col3 .card-ui .product-desc h5,
.accordion-content .image-block.modal-col3 .card-ui .product-desc p {
  color: #fff;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc h3:has(span),
.accordion-content .image-block.modal-col3 .card-ui .product-desc h4:has(span),
.accordion-content .image-block.modal-col3 .card-ui .product-desc h5:has(span),
.accordion-content .image-block.modal-col3 .card-ui .product-desc p:has(span) {
  font-size: 2.4rem;
  font-weight: bold;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-title {
  margin-top: 12px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-title {
    margin-top: 8px;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-title:after {
  width: 30px;
  height: 2px;
  display: block;
  border-radius: 10px;
  content: "";
  margin: 6px 0 0 0;
  background-color: #fff;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-name {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-name {
    font-size: 1.6rem;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li {
    width: calc(50% - 8px);
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a {
    font-size: 1.4rem;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a {
  padding: 6px 16px 6px 10px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
  border-color: #333;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #627a86;
  border-right: 2px solid #627a86;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a.adjust-text-width {
  min-width: 120px;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  width: 6px;
  height: 6px;
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible {
  background-color: #627a86;
  color: #fff;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:focus-visible::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (any-hover: hover) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:hover {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media (hover: none) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:active {
    background-color: #627a86;
    color: #fff;
  }
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li a:active::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li span {
  display: grid;
  place-items: center;
  place-content: center;
  min-width: 140px;
  height: 28px;
  padding: 6px 14px;
  background-color: #fff;
  color: #627a86;
  border: 1px solid;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .accordion-content .image-block.modal-col3 .card-ui .product-desc ul li span {
    font-size: 1.4rem;
  }
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc ul li span {
  background-color: #333;
  color: #fff;
  border-color: #fff;
  cursor: default;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .definition-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .definition-list dt {
  padding: 0 8px;
  background-color: #009fa8;
  color: #fff;
  border-radius: 2px;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .definition-list dd {
  color: #fff;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .grade-link {
  gap: 12px;
  margin-top: 8px;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .product-example {
  margin-top: 8px;
}
.accordion-content .image-block.modal-col3 .card-ui .product-desc .product-example ~ .grade-link {
  margin-top: 6px;
}

.accordion-content.open {
  display: block;
}

.accordion-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}/*# sourceMappingURL=main.css.map */