@charset "UTF-8";
/* リキッドレイアウト対応 */
/* 使い方
・本体
.c-button {
  @include hover-scale(); // 初期値
  @include hover-scale(1.2); // 拡大率を上げる
  }

・子要素のimg
.p-card {
  @include hover-scale-img();
}
*/
html {
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1432px) {
  html {
    font-size: 1.1173184358vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

:root {
  --base-font-family: "Noto Sans JP", serif;
  --jost-font-family: "Jost", sans-serif;
  --oswald-font-family: "Oswald", sans-serif;
  --font-weight-regular: 400;
  --color-black: #232323;
  --color-black2: #000000;
  --color-white: #fff;
  --color-red: #db1527;
  --color-green: #89ff14;
  --color-yellow: #deff52;
  --color-border: #cacaca;
  --color-bg-gray: #f4f4f4;
  --color-gradation: 17 17 17;
  --border-line:
    linear-gradient(to right,
      rgb(var(--color-gradation) / 1) 0,
      rgb(var(--color-gradation) / 1) 20%,
      rgb(var(--color-gradation) / 0.2) 20%,
      rgb(var(--color-gradation) / 0.2) 100%) bottom / 100% 2px no-repeat;
  --header-height: 9.6875rem;
  --header-height-scrolled: 5rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 3.75rem;
    --header-height-scrolled: 3.75rem;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-scrolled);
}

body {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  background-color: var(--color-bg-gray);
  font-size: max(0.875rem, 10px);
  font-family: var(--base-font-family);
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: max(0.75rem, 10px);
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

main {
  flex: 1;
}

body:has([data-color=black]) {
  background-color: var(--color-black);
  color: var(--color-white);
}

body:has([data-color=black2]) {
  background-color: var(--color-black2);
  color: var(--color-white);
}

body:has([data-color=white]) {
  background-color: var(--color-white);
  color: var(--color-black);
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

img {
  overflow-clip-margin: unset;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-inner-wide {
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.5625rem;
  max-width: 111.25rem;
}
@media screen and (max-width: 1440px) {
  .l-inner-wide {
    max-width: 78.125rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner-wide {
    max-width: 40rem;
    padding-inline: 1.25rem;
    width: 100%;
  }
}

.l-inner {
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.5625rem;
  max-width: 89.5rem;
}
@media screen and (max-width: 1440px) {
  .l-inner {
    max-width: 78.125rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
    width: 100%;
  }
}

.l-sub-content {
  margin-block: 5.625rem 11.875rem;
}
@media screen and (max-width: 767px) {
  .l-sub-content {
    margin-block: 3.125rem;
  }
}

.l-sub-content + .l-sub-content {
  margin-top: 3.125rem;
}

.l-top-about {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-top-about {
    margin-top: 1.3125rem;
  }
}

.l-top-products {
  margin-top: 12.375rem;
}
@media screen and (max-width: 767px) {
  .l-top-products {
    margin-top: 2.5rem;
  }
}

.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    transition: grid-template-rows 0.3s ease-in-out;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

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

.c-accordion__summary {
  list-style: none;
  position: relative;
  cursor: pointer;
}

.c-accordion__summary::before,
.c-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-black);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before,
  .c-accordion__summary::after {
    right: 0.625rem;
    width: 0.9375rem;
  }
}

.c-accordion__summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.c-accordion[open] .c-accordion__summary::before {
  transform: translateY(-50%) rotate(0deg);
}

.c-accordion__body {
  overflow: hidden;
}

.c-accordion__wrap {
  padding: 0.625rem;
}

.c-button {
  width: 100%;
  max-width: 26.25rem;
  padding-block: 0.75rem;
  padding-inline: 0.9375rem 1.25rem;
  display: inline-block;
  font-size: max(0.9375rem, 10px);
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-black);
  background-color: var(--color-green);
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-button {
    max-width: 20.625rem;
    font-size: max(0.875rem, 10px);
    padding: 1.375rem;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    background-color: var(--color-yellow);
  }
}
.c-no-post {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-no-post {
    font-size: max(1.125rem, 10px);
  }
}

.c-pagenavi {
  margin-top: 3.125rem;
  text-align: center;
}

.c-pagenavi .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .nav-links {
    gap: 0.3125rem;
  }
}

.c-pagenavi a.page-numbers,
.c-pagenavi .page-numbers.current {
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pagenavi a.page-numbers,
  .c-pagenavi .page-numbers.current {
    width: 1.875rem;
    font-size: max(0.875rem, 10px);
  }
}

.c-pagenavi .page-numbers.current {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
}

.c-pagenavi .page-numbers.next,
.c-pagenavi .page-numbers.prev {
  position: absolute;
  top: 0;
}

.c-pagenavi .page-numbers.next {
  right: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers.next {
    right: -2.1875rem;
  }
}

.c-pagenavi .page-numbers.prev {
  left: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers.prev {
    left: -2.1875rem;
  }
}

.c-pagenavi a {
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .c-pagenavi a:hover {
    color: var(--color-red);
    opacity: 1;
  }
}
.c-rhombus-button {
  width: 100%;
  max-width: 20.9375rem;
  padding: 1.1875rem 2.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-black);
  background-color: var(--color-green);
  position: relative;
  white-space: nowrap;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-rhombus-button {
    max-width: 21.875rem;
    font-size: max(0.875rem, 10px);
    padding: 1.0625rem 2.1875rem;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }
}

.c-rhombus-button::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(45deg);
}

@media (any-hover: hover) {
  .c-rhombus-button:hover {
    background-color: var(--color-yellow);
    opacity: 1;
  }
}
.c-section-title {
  font-size: max(0.9375rem, 10px);
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: max(0.875rem, 10px);
  }
}

.c-section-title__en {
  display: inline-block;
  margin-right: 0.9375rem;
  font-size: max(5.625rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: max(2.5rem, 10px);
    letter-spacing: 0.05em;
    margin-right: 0;
  }
}

.c-section-title[data-type=break] .c-section-title__en {
  display: inline;
}
@media screen and (max-width: 767px) {
  .c-section-title[data-type=break] .c-section-title__en {
    display: inline-block;
  }
}

.c-section-title__label {
  display: block;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.3125rem 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1.25rem;
  margin-bottom: 0.625rem;
}

.c-section-sub-title-en {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  flex-shrink: 0;
  width: 100%;
  font-size: max(3.125rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-section-sub-title-en {
    font-size: max(1.875rem, 10px);
    gap: 0.9375rem;
  }
}

.c-section-sub-title-en::before,
.c-section-sub-title-en::after {
  flex-grow: 1;
  content: "";
  display: inline-block;
  height: 1px;
  background-color: currentColor;
}

.c-section-sub-title-span {
  margin-top: 0.625rem;
  font-size: max(0.875rem, 10px);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

.c-section-title:has(.c-section-title__img) {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-section-title:has(.c-section-title__img) {
    gap: 0.3125rem;
    font-size: max(1rem, 10px);
  }
}

.c-section-title__img {
  display: block;
  width: 25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-section-title__img {
    width: 12.5rem;
  }
}

.c-section-title__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.p-lineup#infinito .c-section-title__img {
  width: 12.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lineup#infinito .c-section-title__img {
    width: 6.25rem;
  }
}

.c-section-sub-title-ja {
  font-size: max(1.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.625rem 1.875rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .c-section-sub-title-ja {
    font-size: max(1.25rem, 10px);
    padding: 0.625rem 1.25rem;
  }
}

/* スプライド矢印 */
.splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.splide__arrow {
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--color-gray);
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.splide__arrow.splide__arrow--prev {
  left: -0.625rem;
}

.splide__arrow.splide__arrow--next {
  right: -0.625rem;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow--next::after,
.splide__arrow--prev::after {
  z-index: 10;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

.splide__arrow--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

@media (any-hover: hover) {
  .splide__arrow:hover {
    opacity: 0.7;
  }
}
/* ページネーションのスタイル */
.splide__pagination {
  justify-content: flex-start;
  bottom: 6.0625rem;
  position: relative;
  gap: 0.9375rem;
  max-width: 110.5rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .splide__pagination {
    width: 95%;
  }
}

.splide__pagination__page {
  background-color: var(--color-white);
  border-radius: 0;
  transition: background-color 0.3s ease-in-out;
  width: 4.375rem;
  height: 0.1875rem;
  display: block;
  padding: 0;
}

.splide__pagination__page.is-active {
  transform: scale(1);
  background-color: var(--color-red);
}

.c-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.c-table tr > * {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-table tr > * {
    padding: 0.625rem 0.625rem;
  }
}

.c-title {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: max(1rem, 10px);
  }
}

.p-404 {
  margin-block: 9.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    margin-block: 5rem 3.125rem;
  }
}

.p-404__content {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__content {
    min-height: 18.75rem;
    text-align: left;
    gap: 1.875rem;
  }
}

.p-404__title {
  font-size: max(1.875rem, 10px);
}

.p-404__text {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: max(1rem, 10px);
  }
}

.p-404__button .c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}

.p-breadcrumb {
  padding-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding-top: 0.75rem;
  }
}

.p-breadcrumb span {
  padding-inline: 0.125rem;
  font-size: max(0.75rem, 10px);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

body:has([data-color=black]) .p-breadcrumb {
  background-color: var(--color-black);
  color: var(--color-white);
}

body:has([data-color=black2]) .p-breadcrumb {
  background-color: var(--color-black2);
}

body:has([data-color=white]) .p-breadcrumb {
  background-color: var(--color-white);
}

.p-company-access {
  padding-bottom: 5rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-company-access {
    padding-bottom: 2.5rem;
  }
}

.p-company-access::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 5/2;
  background-color: rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-company-access::before {
    aspect-ratio: 3/5;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
  }
}

.p-company-access__content {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-access__content {
    margin-top: 1.25rem;
  }
}

.p-company-access__text {
  margin-top: 0.625rem;
}

.p-company-access__text em {
  font-style: normal;
  font-weight: 700;
  font-size: max(1rem, 10px);
}

.p-company-access__map {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company-access__map {
    margin-top: 1.25rem;
  }
}

.p-company-access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1200/600;
  border: none;
}

.p-company-access__access {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company-access__access {
    margin-top: 1.25rem;
  }
}

.p-company-access__access .p-company-access__subtitle {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-company-access__access .p-company-access__subtitle::before {
  content: "";
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/common/access-icon.svg);
          mask-image: url(../images/common/access-icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--color-white);
}

.p-company-access__item {
  margin-top: 0.625rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-company-access__item::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.625rem;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
}

.p-company-ceo__content {
  max-width: 75rem;
  margin-inline: auto;
}

.p-company-ceo__text-wrap {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-ceo__text-wrap {
    margin-top: 1.25rem;
    padding-inline: 0;
  }
}

.p-company-ceo__name {
  margin-top: 1.875rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.1428571429;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-company-ceo__name {
    font-size: max(0.75rem, 10px);
    line-height: 2;
  }
}

.p-company-ceo__img {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  max-width: 50rem;
  margin-inline: auto;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-company-ceo__img {
    margin-top: -3.125rem;
    max-width: 31.25rem;
  }
}

.p-company-ceo__img::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 95% 92% at 50% 50%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.35) 58%, rgba(0, 0, 0, 0.7) 76%, rgba(0, 0, 0, 0.97) 100%);
}

.p-company-ceo__img img {
  position: relative;
  z-index: 0;
  display: block;
  aspect-ratio: 1566/1024;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 0%, #000 28%, rgba(0, 0, 0, 0.95) 42%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 0%, #000 28%, rgba(0, 0, 0, 0.95) 42%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-company-history__content {
  margin-top: 3.125rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-company-history__content {
    margin-top: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-company-history__item {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  position: relative;
  padding-block: 1.25rem;
  padding-left: 3.125rem;
  border-left: 1px solid var(--color-white);
  font-size: max(1.25rem, 10px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-history__item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding-left: 1.875rem;
    font-size: max(1.125rem, 10px);
  }
}

.p-company-history__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.375rem;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1/1;
  outline: 0.1875rem solid rgba(255, 255, 255, 0.5);
  background-color: var(--color-white);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-company-history__item::before {
    top: 1.125rem;
  }
}

.p-company-history__item-title {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-company-history__item-value {
    font-size: max(0.875rem, 10px);
  }
}

.p-company-overview {
  background-color: var(--color-black);
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview {
    padding-block: 2.5rem;
  }
}

.p-company-overview__content {
  margin-top: 3.125rem;
  max-width: 62.5rem;
}

.p-company-overview__table .c-table th {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-company-overview__table .c-table th {
    width: 6.25rem;
  }
}

.p-concept-movie {
  margin-top: 3.125rem;
  background-color: var(--color-black2);
  background: linear-gradient(to bottom, var(--color-black) 0%, var(--color-black2) 50%);
  padding-block: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-movie {
    margin-top: 1.25rem;
    padding-block: 3.125rem;
  }
}

.p-concept-movie__title {
  font-size: max(1.875rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-concept-movie__title {
    font-size: max(1.25rem, 10px);
  }
}

.p-concept-movie__title span {
  display: block;
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-concept-movie__title span {
    font-size: max(1rem, 10px);
  }
}

.p-concept-movie__content {
  margin-top: 1.875rem;
  width: 100%;
  height: auto;
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-concept-movie__content iframe {
  border: 0;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-concept-movie__content:has(img) {
  max-width: 40rem;
}

.p-concept-movie__content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact-cta {
  background-image: url(../images/common/contact-cta-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  color: var(--color-white);
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-contact-cta {
    background-image: url(../images/common/contact-cta-bg_sp.webp);
  }
}

.p-contact-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(35, 35, 35, 0.8);
}

.p-contact-cta__content {
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.6fr;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__content {
    margin-inline: calc(50% - 50vw);
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-contact-cta__body {
  padding-block: 4.0625rem 4.375rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__body {
    grid-area: 1/1/2/3;
    padding-block: 2.1875rem 2.5rem;
    padding-right: 0;
    border-bottom: 1px solid var(--color-white);
  }
}

@media screen and (max-width: 767px) {
  .p-contact-cta__body-inner {
    margin-inline: auto;
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-contact-cta__subtitle {
  margin-top: 1rem;
  font-size: max(1.875rem, 10px);
  font-weight: var(--font-weight-regular);
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__subtitle {
    margin-top: 0.5625rem;
    font-size: max(1.125rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-contact-cta__text {
  margin-top: 0.8125rem;
  font-size: max(0.9375rem, 10px);
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__text {
    margin-top: 0.625rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-contact-cta__link-item {
  border-left: 1px solid var(--color-white);
}

@media screen and (max-width: 767px) {
  .p-contact-cta__link-item[data-type=product] {
    grid-area: 2/1/3/2;
    border-left: none;
    padding-block: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-cta__link-item[data-type=cooperation] {
    grid-area: 2/2/3/3;
  }
}

.p-contact-cta__link-item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: max(1.75rem, 10px);
  line-height: 1.4285714286;
  letter-spacing: 0.2em;
  color: var(--color-green);
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__link-item a {
    font-size: max(1.25rem, 10px);
    line-height: 2;
  }
}

.p-contact-cta__link-item a span {
  display: block;
  font-size: max(1rem, 10px);
  line-height: 2.5;
  letter-spacing: 0.2em;
  color: var(--color-white);
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__link-item a span {
    font-size: max(0.75rem, 10px);
    line-height: 1;
  }
}

.p-contact-cta__link-item a:after {
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  border-top: solid 1px var(--color-green);
  border-right: solid 1px var(--color-green);
  transform: rotate(45deg);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-cta__link-item a:after {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 2rem;
  }
}

@media (any-hover: hover) {
  .p-contact-cta__link-item a:hover {
    background-color: rgba(35, 35, 35, 0.95);
    opacity: 1;
  }
}
.p-contact__status-list {
  margin-top: 3.125rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  max-width: 25rem;
  width: 100%;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .p-contact__status-list {
    margin-top: 1.875rem;
    max-width: 18.75rem;
  }
}

.p-contact__status-item {
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-contact__status-item {
    width: 5rem;
    height: 5rem;
  }
}

.p-contact__status-item.p-contact__status-item--current {
  background-color: var(--color-black);
  color: var(--color-white);
}

.p-contact__attention {
  max-width: 62.5rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__attention {
    margin-top: 1.875rem;
  }
}

.p-contact__attention-heading {
  font-size: max(1.25rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__attention-heading {
    font-size: max(1.125rem, 10px);
  }
}

.p-contact__attention-item {
  padding-left: 1em;
  position: relative;
}

.p-contact__attention-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-contact__form {
  margin-top: 3.125rem;
}

.p-contact__form-message {
  text-align: center;
  margin-top: 3.125rem;
}

/* （the_content()で出力したものへのスタイル） */
/* 要素間の余白 */
.p-content h2 {
  margin-block: 5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-content h2 {
    margin-block: 3rem 1.25rem;
  }
}

.p-content h3 {
  margin-block: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content h3 {
    margin-block: 1.875rem 1.25rem;
  }
}

.p-content h4 {
  margin-block: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content h4 {
    margin-block: 1.25rem 0.625rem;
  }
}

.p-content h5 {
  margin-block: 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content h5 {
    margin-block: 0.9375rem 0.625rem;
  }
}

.p-content p {
  margin-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content p {
    margin-block: 0.625rem;
  }
}

.p-content figure,
.p-content > ul,
.p-content > ol,
.p-content .wp-block-table {
  margin-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-content figure,
  .p-content > ul,
  .p-content > ol,
  .p-content .wp-block-table {
    margin-block: 1.25rem;
  }
}

.p-content .wp-block-button {
  margin-block: 1.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-content .wp-block-button {
    margin-block: 1.25rem 2rem;
  }
}

/* font-size */
.p-content p,
.p-content li,
.p-content th,
.p-content td {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-content p,
  .p-content li,
  .p-content th,
  .p-content td {
    font-size: max(0.875rem, 10px);
  }
}

.p-content h2 {
  font-size: max(1.375rem, 10px);
  line-height: 2;
  font-weight: 700;
  background: var(--border-line);
}
@media screen and (max-width: 767px) {
  .p-content h2 {
    font-size: max(1.25rem, 10px);
  }
}

.p-content h3 {
  font-size: max(1.25rem, 10px);
  line-height: 2;
  font-weight: 700;
  position: relative;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content h3 {
    font-size: max(1.125rem, 10px);
  }
}

.p-content h3::before {
  content: "";
  width: 0.3125rem;
  height: 1lh;
  border-radius: 0.625rem;
  background-color: var(--color-black);
}

.p-content h4 {
  font-size: max(1.125rem, 10px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content h4 {
    font-size: max(1rem, 10px);
  }
}

.p-content h5 {
  font-size: max(1.0625rem, 10px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content h5 {
    font-size: max(1rem, 10px);
  }
}

.p-content a:not(.wp-block-button *) {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-content a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-content a[href^="tel:"] {
    text-decoration: underline;
  }
}

.p-content .wp-block-button__link {
  width: 100%;
  min-width: 12.5rem;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  display: inline-block;
  font-size: max(0.9375rem, 10px);
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-content .wp-block-button__link {
    max-width: 20.625rem;
    font-size: max(0.875rem, 10px);
    padding: 1.375rem;
  }
}

@media (any-hover: hover) {
  .p-content .wp-block-button__link:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-black);
  }
}
.p-content img {
  width: auto;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  margin-left: auto;
}

.p-content ol,
.p-content ul {
  list-style: revert;
  padding-left: 1.5em;
}

/* table */
.p-content .wp-block-table {
  border: none;
}

.p-content .wp-block-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}

.p-content .wp-block-table th,
.p-content .wp-block-table td {
  border: 1px solid var(--color-border);
}

.p-content .wp-block-table th:not(:last-child),
.p-content .wp-block-table td:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.p-content .wp-block-table th,
.p-content .wp-block-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-border);
}

.p-content .wp-block-table thead {
  border-bottom: 2px solid var(--color-border);
}

.p-content .wp-block-table tr > * {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content .wp-block-table tr > * {
    padding: 0.625rem 0.625rem;
  }
}

.p-content .wp-block-table tr:has(> th) {
  background-color: var(--color-gray);
}

.p-coolmax-head {
  background-color: var(--color-black);
  padding: 0;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head {
    padding-bottom: 1.875rem;
  }
}

.p-coolmax-head__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-coolmax-head .p-breadcrumb__inner.l-inner {
  padding: 0;
}

.p-coolmax-head__content {
  padding-left: 9.2485549133%;
  padding-right: 17.3410404624%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-coolmax-head__title-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__title-wrap {
    margin-top: 1.5rem;
  }
}

.p-coolmax-head__title {
  width: 84.8818897638%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__title {
    width: 100%;
    max-width: 25rem;
  }
}

.p-coolmax-head__title img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-coolmax-head__lead {
  margin-top: 4rem;
  font-size: max(1.875rem, 10px);
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__lead {
    margin-top: 1.25rem;
    font-size: max(1.125rem, 10px);
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
  }
}

.p-coolmax-head__text {
  margin-top: 1.875rem;
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__text {
    margin-top: 0.875rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
  }
}

.p-coolmax-head__image {
  margin-right: calc(50% - 50cqi);
  width: 50cqi;
  height: auto;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__image {
    margin-right: 0;
    width: 100%;
    max-width: 25rem;
  }
}

.p-coolmax-head__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-coolmax-head__image img {
    max-width: none;
  }
}

.p-feature__title {
  padding-left: 10.6936416185%;
}
@media screen and (max-width: 1440px) {
  .p-feature__title {
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    padding-left: 0;
  }
}

.p-feature__list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-feature__list-item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list-item {
    grid-template-rows: auto;
    grid-row: auto;
    gap: 1rem;
  }
}

.p-feature__list-img {
  width: 100%;
  height: auto;
}

.p-feature__list-img img {
  aspect-ratio: 414/280;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__list-img img {
    aspect-ratio: 335/200;
  }
}

.p-feature__list-label {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.3125rem 0.625rem;
  font-size: max(0.875rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-feature__list-label {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: max(0.75rem, 10px);
  }
}

.p-feature__list-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list-text {
    margin-top: 0.5rem;
  }
}

.p-footer {
  padding-top: 4.625rem;
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 1.6875rem;
  }
}

.p-footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    flex-direction: column;
    justify-content: center;
    gap: 1.875rem;
  }
}

.p-footer__logo {
  max-width: 10.0625rem;
  margin-inline: auto;
  width: 100%;
}

.p-footer__logo a {
  padding: 0.625rem 0;
  display: block;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__name {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__name {
    margin-top: max(0.625rem, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-footer__address {
  margin-top: 0.625rem;
  font-size: max(0.75rem, 10px);
  font-style: normal;
  letter-spacing: 0.1em;
}

.p-footer__instagram-wrap {
  margin-top: 2.1875rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram-wrap {
    margin-top: 1.3125rem;
    flex-direction: column;
    gap: 0.75rem;
  }
}

.p-footer__instagram a.c-button {
  width: 25.625rem;
  min-height: 6.25rem;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.25rem;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .p-footer__instagram a.c-button {
    max-width: 26.875rem;
    width: 26.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__instagram a.c-button {
    max-width: 21.875rem;
    min-height: 5rem;
    padding-inline: 0.625rem;
    font-size: max(1rem, 10px);
    gap: 1.0625rem;
  }
}

.p-footer__instagram a.c-button span.p-footer__instagram-text-label {
  display: block;
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.1em;
}

.p-footer__instagram a.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/common/Instagram-icon.svg);
          mask-image: url(../images/common/Instagram-icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-footer__instagram a.c-button::after {
    width: 0.9375rem;
    right: 1.5625rem;
  }
}

.p-footer__instagram[data-instagram=filmz] a.c-button .p-footer__instagram-icon img {
  width: 10.1875rem;
  height: 100%;
  aspect-ratio: 163/64;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram[data-instagram=filmz] a.c-button .p-footer__instagram-icon img {
    width: 8.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__instagram[data-instagram=mana] a.c-button {
    padding-inline: 2.375rem;
    gap: 3.125rem;
  }
}

.p-footer__instagram[data-instagram=mana] a.c-button .p-footer__instagram-icon img {
  width: 6.125rem;
  height: 100%;
  aspect-ratio: 98/81;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__instagram[data-instagram=mana] a.c-button .p-footer__instagram-icon img {
    width: 4.5rem;
  }
}

@media (any-hover: hover) {
  .p-footer__instagram a.c-button:hover {
    background-color: var(--color-green);
    opacity: 1;
    transform: scale(1.05);
  }
  .p-footer__nav-item a:hover {
    color: var(--color-green);
    opacity: 1;
  }
}
.p-footer__nav-items {
  margin-top: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    margin-top: 1.375rem;
    display: block;
    text-align: left;
    -moz-column-count: 2;
         column-count: 2;
    max-width: 48%;
  }
}

.p-footer__nav-item a {
  padding: 0.9375rem 0.75rem;
  display: block;
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.1em;
  line-height: 3.3333333333;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: max(0.75rem, 10px);
    line-height: 1;
    padding: 0.40625rem 0;
    text-wrap: nowrap;
  }
}

.p-footer__bottom {
  margin-top: 3.75rem;
  background-color: #000000;
  text-align: center;
  padding: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    margin-top: 1.5rem;
    text-align: left;
    max-width: 40rem;
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.p-footer__copyright {
  display: block;
  font-size: max(0.75rem, 10px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.p-footer__page-top {
  position: fixed;
  z-index: 100;
  bottom: 0.75rem;
  right: 1.25rem;
  width: 7.5rem;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-footer__page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__page-top {
    bottom: 0.8125rem;
    width: 5.375rem;
  }
}

.p-footer__page-top .p-footer__page-button {
  display: block;
  transition: transform 0.2s ease;
}

.p-footer__page-top .p-footer__page-button:hover {
  animation: p-footer__page-top-bounce 0.6s ease-in-out infinite;
  opacity: 1;
}

@keyframes p-footer__page-top-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}
.p-footer__page-button img {
  aspect-ratio: 120/218;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-form {
  background-color: var(--color-white);
  padding: 3.125rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 1.25rem;
  }
}

.p-form__wrap {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 15.625rem 1fr;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    grid-template-columns: 1fr;
  }
}

.p-form__wrap.p-form__wrap--textarea {
  align-items: flex-start;
}

.p-form__wrap.p-form__wrap--textarea .p-form__label {
  margin-top: 0.625rem;
}

.u-required {
  display: inline-block;
  color: #FF003D;
  margin-left: 0.625rem;
  padding: 0.3125rem;
  border: 1px solid #FF003D;
  font-size: max(0.75rem, 10px);
  line-height: 1;
}

.p-form__input,
.p-form__textarea {
  flex-grow: 1;
  width: 100%;
}

.p-form__input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-bg-gray);
}

.p-form__input input:focus {
  border: 1px solid var(--color-gray);
  box-shadow: none;
  outline: none;
}

.p-form__input:has(span.p-form__address-postcode-label) {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  max-width: 12.5rem;
}

.wpcf7-form-control-wrap[data-name=postal] {
  flex-grow: 1;
}

.p-form__address .p-form__input + .p-form__input {
  margin-top: 0.9375rem;
}

.p-form__textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  min-height: 9.375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-bg-gray);
  field-sizing: content;
}

.p-form__textarea textarea:focus {
  border: 1px solid var(--color-gray);
  box-shadow: none;
  outline: none;
}

.p-form__select {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__select {
    width: 100%;
  }
}

.p-form__select::after {
  content: "";
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.375rem solid var(--color-black);
  pointer-events: none;
}

.p-form__select select {
  width: 100%;
  padding: 0.5rem 0.9375rem;
  background-color: var(--color-bg-gray);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: var(--color-black);
}

.p-form__select select::-ms-expand {
  display: none;
}

.p-form__select select:focus {
  border: 1px solid var(--color-gray);
  box-shadow: none;
  outline: none;
}

.p-contact__form-privacy {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy {
    text-align: left;
  }
}

.p-contact__form-checkbox-text.c-text a {
  text-decoration: underline;
  text-decoration-color: var(--color-black);
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
}

.p-contact__form-checkbox-text .u-required {
  margin-inline: 0 0.625rem;
}

.p-contact__form-privacy label {
  margin-top: 1.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy label {
    margin-top: 0.625rem;
  }
}

.p-contact__form-privacy input + span {
  position: relative;
  padding-left: 1.875rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span {
    font-size: max(0.8125rem, 10px);
    padding-left: 1.5625rem;
    margin-left: 0.625rem;
  }
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span::before {
    top: 55%;
  }
}

.p-contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 60%;
  left: 0.25rem;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.8125rem;
  height: 0.4375rem;
  border-bottom: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition: 0.3s;
  opacity: 0;
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-form__submit-wrap {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__submit-wrap {
    margin-top: 1.875rem;
  }
}

.p-form__submit input {
  max-width: 25rem;
  padding: 1.5625rem 7.8125rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  line-height: 1;
  background-color: var(--color-green);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-form__submit input {
    max-width: 100%;
    padding: 1.25rem 5rem;
  }
}

@media (any-hover: hover) {
  .p-form__submit input:hover {
    background-color: var(--color-yellow);
    opacity: 1;
  }
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #FF003D;
  border-radius: 0.625rem;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1.875rem;
  text-align: center;
  font-size: max(0.875rem, 10px);
  color: #FF003D;
  line-height: 1;
  margin: 3.75rem 0 0;
}

.wpcf7-spinner {
  display: none;
}

.p-header {
  background-color: transparent;
  color: var(--color-white);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1001;
  width: 100%;
  height: var(--header-height);
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.p-header.is-scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(35, 35, 35, 0.9);
}

body.is-fixed .p-header {
  background-color: rgba(35, 35, 35, 0.9);
}

.p-header__inner {
  max-width: 111.125rem;
  margin-inline: auto;
  padding-inline: 1.25rem 1.875rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem 0;
  }
}

.p-header__logo {
  max-width: 10.0625rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 7.125rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    padding-top: 0.625rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item:not(.p-header__nav-item--contact) a {
  padding: 0 1.0625rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-header__nav-item:not(.p-header__nav-item--contact) a.is-current {
  color: var(--color-green);
}

.p-header__nav-item.p-header__nav-item--contact a.c-button {
  height: initial;
  width: 13rem;
  padding-inline: 0.9375rem 1.5625rem;
}

.p-header__nav-item.p-header__nav-item--contact a.c-button::after,
.p-header__drawer-item.p-header__drawer-item--contact a.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.9375rem;
  width: 1.375rem;
  height: auto;
  aspect-ratio: 22/18;
  background-image: url(../images/common/button-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: auto;
  height: inherit;
  aspect-ratio: 1/1;
  background-color: var(--color-green);
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.75rem;
  height: 1px;
  background-color: #000000;
  transition: background-color 0.3s ease-in-out;
}

.p-header__hamburger span::before,
.p-header__hamburger span::after {
  position: absolute;
  content: "";
  display: block;
  width: 1.75rem;
  height: 1px;
  background-color: #000000;
  transition: transform 0.3s ease-in-out;
}

.p-header__hamburger span::before {
  transform: translateY(-0.5rem);
}

.p-header__hamburger span::after {
  transform: translateY(0.5rem);
}

.p-header__hamburger.is-open span {
  background-color: transparent;
}

.p-header__hamburger.is-open span::before {
  transform: translateY(0) rotate(45deg);
}

.p-header__hamburger.is-open span::after {
  transform: translateY(0) rotate(-45deg);
}

.p-header__drawer {
  margin-top: var(--header-height);
  display: none;
  position: fixed;
  z-index: 900;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  max-width: 21.875rem;
  margin-inline: auto;
  padding-block: 2.1875rem 6.25rem;
}

.p-header__drawer-item a {
  padding-block: 1.6875rem;
  display: block;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item:first-child a {
  padding-top: 0;
}

.p-header__drawer-item:nth-last-child(-n+2) a {
  border-bottom: none;
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 0.875rem;
}

.p-header__drawer-item.p-header__drawer-item--contact a.c-button {
  max-width: 21.875rem;
  padding-block: 1rem;
}

.p-lineup__inner {
  max-width: 106.25rem;
  padding-inline: 10.4375rem;
}
@media screen and (max-width: 1440px) {
  .p-lineup__inner {
    max-width: 78.125rem;
    padding-inline: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-lineup__head[data-type=image] {
  background-color: var(--color-black2);
  margin-inline: calc(50% - 50cqi);
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lineup__head[data-type=image] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-lineup#diaplex .p-lineup__head[data-type=image] {
    background-image: url(../images/protective-wear/head-img01.webp);
  }
}

@media screen and (max-width: 767px) {
  .p-lineup#mz7000 .p-lineup__head[data-type=image] {
    background-image: url(../images/protective-wear/head-img02.webp);
  }
}

@media screen and (max-width: 767px) {
  .p-lineup#infinito .p-lineup__head[data-type=image] {
    background-image: url(../images/protective-wear/head-img03.webp);
  }
}

@media screen and (max-width: 767px) {
  .p-lineup__head[data-type=image]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
}

.p-lineup__head-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.5fr;
  gap: 1.875rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup__head-inner {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.p-lineup__head-content {
  min-width: 0;
  padding-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__head-content {
    padding-block: 1.25rem;
  }
}

.p-lineup__head-content .c-section-title:has(.c-section-title__img) {
  max-width: 100%;
}

.p-lineup__head-content .c-section-title__img {
  width: min(25rem, 100%);
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-lineup__head-content .c-section-title__img {
    width: 12.5rem;
  }
}

.p-lineup__head-image {
  width: 100%;
  min-width: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lineup__head-image {
    display: none;
  }
}

.p-lineup__head-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-lineup__head-lead {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__head-lead {
    margin-top: 1.25rem;
  }
}

.p-lineup__head-text {
  margin-top: 0.625rem;
}

.p-lineup-article {
  margin-top: 3.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lineup-article {
    margin-top: 1.875rem;
  }
}

.p-lineup-article + .p-lineup-article {
  margin-top: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-lineup-article + .p-lineup-article {
    margin-top: 4.5rem;
  }
}

.p-lineup--coming-soon .p-lineup__inner {
  position: relative;
}

.p-lineup--coming-soon .p-lineup__inner > * {
  filter: grayscale(1);
  opacity: 0.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-lineup--coming-soon .p-lineup__inner > .js-fadein,
.p-lineup--coming-soon .p-lineup__inner > .js-fadein.is-scrolled {
  filter: grayscale(1);
  opacity: 0.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-lineup--coming-soon .p-lineup__inner::after {
  content: "Coming Soon...";
  white-space: pre-line;
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  font-size: max(1.875rem, 10px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  pointer-events: auto;
  box-sizing: border-box;
}

.p-lineup__sub-title {
  position: absolute;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  top: 0;
  left: max(-8.3333333333vw, -10rem);
  writing-mode: vertical-lr;
  font-size: max(2.5rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .p-lineup__sub-title {
    left: max(-6.9444444444vw, -6.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__sub-title {
    position: static;
    height: auto;
    left: auto;
    writing-mode: horizontal-tb;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: max(0.875rem, 10px);
    gap: 0.75rem;
    white-space: normal;
    letter-spacing: 0.08em;
  }
}

.p-lineup__sub-title::after {
  content: "";
  flex-grow: 1;
  display: inline-block;
  width: 1px;
  height: auto;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-lineup__sub-title::after {
    display: none;
  }
}

.p-lineup__heading {
  background-color: var(--color-black2);
  padding: 0.625rem 1.25rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__heading {
    padding: 0.5rem 0.875rem;
    font-size: max(0.9375rem, 10px);
    line-height: 1.45;
  }
}

.p-lineup__article-catch {
  margin-bottom: 0.75rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
}

.p-lineup__slider {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr 18.0897250362%;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup__slider {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-lineup__slider-main {
  width: 100%;
  position: relative;
}

.p-lineup__slider-img {
  width: 100%;
  height: auto;
}

.p-lineup__slider-img img {
  aspect-ratio: 1024/624;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-lineup__slider-logo {
  position: absolute;
  top: 2.8125rem;
  left: 3.4375rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lineup__slider-logo {
    top: 0.875rem;
    left: 0.875rem;
  }
}

.p-lineup__slider-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.p-lineup__slider-logo[data-logo=coolmax] {
  width: 27.1748878924%;
}

.p-lineup__slider-logo[data-logo=naflame] {
  width: 30.7623318386%;
}

.p-lineup__slider-logo[data-logo=hyper-dimension-cutting] {
  width: 38.5650224215%;
  left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__slider-logo[data-logo=hyper-dimension-cutting] {
    left: 0.875rem;
  }
}

.p-lineup__slider-logo[data-logo=diaplex] {
  top: 1.25rem;
  left: 0.9375rem;
  width: 16.1434977578%;
}

.p-lineup__slider-logo[data-logo=mz7000] {
  top: 1.25rem;
  left: 1.25rem;
  width: 26.9058295964%;
}

.p-lineup__slider-logo[data-logo=infinito] {
  top: 1.25rem;
  left: 0.9375rem;
  width: 8.0717488789%;
}

.p-lineup__slider-thumb {
  height: auto;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-lineup__slider-thumb {
    align-self: start;
    width: 100%;
  }
}

.p-lineup__slider-thumb .splide__track {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-lineup__slider-thumb .splide__track {
    height: auto;
  }
}

.p-lineup__slider-thumb .splide__slide {
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}

.p-lineup__slider-thumb .splide__track--nav > .splide__list > .splide__slide {
  border: none;
}

.p-lineup__slider-thumb .splide__track--nav > .splide__list > .splide__slide.is-active {
  opacity: 1;
}

.p-lineup__slider-thumb-img {
  width: 100%;
  height: 100%;
}

.p-lineup__slider-thumb-img img {
  aspect-ratio: 239/147;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-lineup__contents {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 53.9073806078%;
  gap: 1.875rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup__contents {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
}

.p-lineup__content-title {
  font-size: max(3.125rem, 10px);
  font-family: "Jost", "Noto Sans JP", serif;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 1600px) {
  .p-lineup__content-title {
    font-size: max(3rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__content-title {
    font-size: max(1.75rem, 10px);
    line-height: 1.15;
  }
}

.p-lineup__content-title-en {
  font-size: max(1.25rem, 10px);
  vertical-align: super;
  line-height: 1;
}

.p-lineup__content-title-ja {
  font-size: max(1.25rem, 10px);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0.2em;
}

.p-lineup__content-title span[data-color=red] {
  color: var(--color-red);
}

.p-lineup__content-sub-title {
  margin-top: 0.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-lineup__content-sub-title {
    font-size: max(1rem, 10px);
    line-height: 1.55;
  }
}

.p-lineup__content-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__content-text {
    font-size: max(0.875rem, 10px);
    line-height: 1.7;
  }
}

.p-lineup__content-text span[data-text=emphasis] {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  text-decoration-thickness: 0.125rem;
  text-decoration-color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .p-lineup__content-text span[data-text=emphasis] {
    font-size: max(1rem, 10px);
  }
}

.p-lineup__color {
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-technology__material-accordion-color-wrap > .p-lineup__color {
    margin-top: 0;
  }
}

.p-lineup__color-title {
  font-size: max(0.875rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-lineup__color-list {
  margin-top: 0.625rem;
  display: flex;
  gap: 1.5625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-lineup__color-list {
    gap: 0.875rem;
  }
}

.p-lineup__color-list-item-item {
  width: 3.125rem;
  height: 3.125rem;
}

.p-lineup__color-list-item-color {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}

.p-lineup__color-list-item-color[data-color=navy] {
  background-color: #182070;
}

.p-lineup__color-list-item-color[data-color=dark-navy] {
  background-color: #0f1a38;
}

.p-lineup__color-list-item-color[data-color=black] {
  background-color: #00002c;
}

.p-lineup__color-list-item-color[data-color=orange] {
  background-color: #fe3f1a;
}

.p-lineup__color-list-item-name {
  margin-top: 0.3125rem;
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.p-lineup__logo-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-lineup__logo-list {
    gap: 0.75rem;
  }
}

.p-lineup__logo-list-item {
  width: 100%;
  height: auto;
}

.p-lineup__logo-list-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-lineup__logo-list + .p-lineup__feature-list {
  margin-top: 1.25rem;
}

.p-lineup__logo-list-item[data-logo=toray] {
  width: 11.1875rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__logo-list-item[data-logo=toray] {
    width: 5.625rem;
  }
}

.p-lineup__logo-list-item[data-logo=naflame] {
  width: 11.5625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__logo-list-item[data-logo=naflame] {
    width: 5.625rem;
  }
}

.p-lineup__logo-list-item[data-logo=cosmel] {
  width: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__logo-list-item[data-logo=cosmel] {
    width: 5.625rem;
  }
}

.p-lineup__feature-list + .p-lineup__content-sub-title {
  margin-top: 1.875rem;
}

.p-lineup__feature-list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .p-lineup__feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3125rem;
  }
}

.p-lineup__feature-list-item {
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: var(--color-black2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.6428571429;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-lineup__feature-list-item {
    max-width: 60px;
    font-size: max(0.75rem, 9px);
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__feature-list-item {
    font-size: max(0.75rem, 10px);
    line-height: 1.35;
    max-width: 5rem;
  }
}

.p-lineup__text-wrap__feature-content {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__text-wrap__feature-content {
    margin-top: 1.75rem;
  }
}

.p-lineup__text-wrap__feature-heading {
  margin-top: 1.875rem;
  margin-bottom: 1rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
}

.p-lineup__text-wrap__feature-content--wide-dt {
  margin-top: 1rem;
}

.p-lineup__text-wrap__feature-content--wide-dt .p-lineup__text-wrap__feature-content-title {
  width: auto;
  min-width: 7.5rem;
  max-width: 16.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup__text-wrap__feature-content--wide-dt .p-lineup__text-wrap__feature-content-title {
    max-width: none;
    width: 100%;
  }
}

.p-lineup__text-wrap__feature-content-item {
  display: flex;
  gap: 1.25rem;
  padding-block: 0.5625rem;
  padding-inline: 0.3125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .p-lineup__text-wrap__feature-content-item {
    flex-direction: column;
    gap: 0.5rem;
    padding-block: 0.75rem;
  }
}

.p-lineup__text-wrap__feature-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.p-lineup__text-wrap__feature-content-title {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 3.125rem;
  flex-shrink: 0;
}

.p-lineup__text-wrap__feature-content-text {
  letter-spacing: 0.18em;
}

.p-lineup__text-wrap__feature-content-text span {
  display: inline-block;
  font-weight: 700;
}

/* other-item */
.p-lineup-article-wrap {
  margin-top: 3.5625rem;
  display: grid;
  gap: 5rem 1.875rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-lineup-article-wrap {
    margin-top: 1.875rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.125rem;
  }
}

.p-lineup-article-wrap .p-lineup-article {
  margin-top: 0;
  min-width: 0;
}

.p-lineup-article-wrap .p-lineup__slider-img {
  max-width: 100%;
  min-width: 0;
}

.p-lineup-article-wrap .p-lineup__slider-img img {
  aspect-ratio: 525/381;
  max-width: 100%;
  height: auto;
}

.p-lineup-article-wrap .p-lineup__contents[data-type=column] {
  min-width: 0;
}

.p-lineup-article-wrap .p-lineup__text-wrap,
.p-lineup-article-wrap .p-lineup__text-wrap__feature-wrap {
  min-width: 0;
}

.p-lineup-article-wrap .p-lineup__feature-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .p-lineup-article-wrap .p-lineup__feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p-lineup__contents[data-type=column] {
  grid-template-columns: 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__contents[data-type=column] {
    gap: 1.25rem;
  }
}

.p-lineup__contents[data-type=column] .p-lineup__text-wrap__feature-content {
  margin-top: 1.25rem;
}

/* row */
.p-lineup-article[data-type=row] {
  margin-top: 3.75rem;
  max-width: 93.75rem;
  margin-inline: auto;
  background-color: var(--color-black2);
  padding-block: 3.125rem;
  padding-inline: 6.25rem 1.875rem;
  display: grid;
  align-items: center;
  gap: 1.875rem;
  grid-template-columns: 0.5fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-lineup-article[data-type=row] {
    margin-top: 2.5rem;
    padding-block: 2.5rem;
    padding-inline: 0.625rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-lineup-article[data-type=row]::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: calc(50% - 50vw);
    background-color: var(--color-black2);
  }
}

.p-lineup-article[data-type=row] .p-lineup__sub-title {
  top: 3.125rem;
  left: 1.25rem;
  display: block;
}

.p-lineup-article[data-type=row] .p-lineup__content-title {
  font-size: max(1.5rem, 10px);
}

@media screen and (max-width: 767px) {
  .p-lineup-article[data-type=row] .p-lineup__slider-img {
    width: 100%;
    max-width: 25rem;
  }
}

.p-lineup-article[data-type=row] .p-lineup__slider-img img {
  aspect-ratio: 4/6;
}
@media screen and (max-width: 767px) {
  .p-lineup-article[data-type=row] .p-lineup__slider-img img {
    aspect-ratio: 5/6;
    -o-object-position: top;
       object-position: top;
  }
}

.p-lineup-article[data-type=row] .p-lineup__contents {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.p-lineup-article[data-type=row] .p-lineup__text-wrap__feature-content {
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-lineup-article[data-type=row] .p-lineup__feature-list-item {
    max-width: 4.6875rem;
  }
}

.p-lineup__text-wrap__feature-content-note {
  margin-top: 0.625rem;
}

.p-lineup__contents[data-type=img] {
  grid-template-columns: 1fr 0.8fr;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__contents[data-type=img] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-lineup__contents[data-type=img] .p-lineup__text-wrap {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 767px) {
  .p-lineup__contents[data-type=img] .p-lineup__text-wrap {
    grid-area: auto;
  }
}

.p-lineup__contents[data-type=img] .p-lineup__text-wrap__feature-wrap {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 767px) {
  .p-lineup__contents[data-type=img] .p-lineup__text-wrap__feature-wrap {
    grid-area: auto;
  }
}

.p-lineup__material-img {
  grid-area: 1/2/3/3;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lineup__material-img {
    grid-area: auto;
  }
}

.p-lineup__material-img img {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-lineup__recommend-list {
  padding-inline: 3.125rem;
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 1440px) {
  .p-lineup__recommend-list {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-lineup__recommend-item {
  background-color: var(--color-black2);
  padding: 1.25rem;
  position: relative;
}

.p-lineup__recommend-item-logo {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-item-logo {
    position: static;
    align-items: flex-start;
  }
}

.p-lineup__recommend-item-logo img {
  width: auto;
  max-width: 100%;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-lineup__recommend-title {
  font-size: max(1.25rem, 10px);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-title {
    font-size: max(1rem, 10px);
  }
}

.p-lineup__recommend-title span {
  display: inline-block;
  font-size: max(0.875rem, 10px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-black);
  background-color: var(--color-white);
  padding: 0.3125rem 0.625rem;
  border-radius: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-title span {
    font-size: max(0.75rem, 10px);
  }
}

.p-lineup__recommend-content {
  margin-top: 1.875rem;
  display: grid;
  align-items: center;
  gap: 1.875rem;
  grid-template-columns: 10.75rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
  }
}

.p-lineup__recommend-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-lineup__recommend-image {
    max-width: 18.75rem;
  }
}

.p-lineup__recommend-image img {
  aspect-ratio: 155/210;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  transform: scale(1.02);
}

.p-lineup__recommend-material-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-lineup__recommend__content-text {
  margin-top: 0.9375rem;
}

.p-lineup__fabric-details-brand {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}

.p-lineup__fabric-details-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-wrap {
    margin-top: 1.875rem;
  }
}

.p-lineup__fabric-details-sub-title {
  font-size: max(1.25rem, 10px);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-sub-title {
    font-size: max(1.125rem, 10px);
  }
}

.p-lineup__fabric-details-sub-title::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
}

.p-lineup__fabric-details-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 0.625rem;
  }
}
@media screen and (max-width: 599px) {
  .p-lineup__fabric-details-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 0.625rem;
  }
}

.p-lineup__fabric-details-item {
  position: relative;
}

.p-lineup__fabric-details-image {
  width: 100%;
  height: auto;
}

.p-lineup__fabric-details-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-lineup__fabric-details-image-logo {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  width: 50%;
  height: auto;
  background-color: var(--color-black2);
  padding: 0.1875rem 0.3125rem;
}

.p-lineup__fabric-details-image-logo.p-lineup__fabric-details-image-logo-aramid {
  padding: 0;
  background-color: var(--color-white);
  width: 70%;
}

.p-lineup__fabric-details-wrap[data-wrap=non-flame] .p-lineup__fabric-details-item:nth-child(3) .p-lineup__fabric-details-image-logo {
  width: 70%;
}

.p-lineup__fabric-details-image-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-lineup__fabric-details-content {
  margin-top: 0.625rem;
}

.p-lineup__fabric-details-title {
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-title {
    font-size: max(0.875rem, 10px);
  }
}

.p-lineup__fabric-details-text {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-text {
    font-size: max(0.75rem, 10px);
  }
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  width: 100%;
  height: 100%;
}
.p-loading.is-skipped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}
.p-loading.is-skipped .p-loading__img {
  animation: none;
}
.p-loading.is-animating {
  animation: p-loading__fade-out 3s ease forwards;
}
.p-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-loading__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 1920/1080;
  -o-object-fit: covar;
     object-fit: covar;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  animation: p-loading__img-in 3s ease forwards;
}
@media screen and (max-width: 767px) {
  .p-loading__img {
    aspect-ratio: 780/1200;
  }
}

@keyframes p-loading__img-in {
  0%, 5% {
    opacity: 0;
  }
  66.66% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes p-loading__fade-out {
  0%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.p-media {
  position: relative;
  z-index: 1;
  padding-top: 10.125rem;
}
@media screen and (max-width: 767px) {
  .p-media {
    padding-top: 2.6875rem;
  }
}

.p-media[data-page=service] {
  padding-top: 0;
  padding-bottom: 6.25rem;
}

.p-media__list {
  margin-top: 1.875rem;
  padding-inline: 0.625rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-media__list {
    margin-top: 1.375rem;
    padding-inline: 0;
    gap: 1.0625rem;
    grid-template-columns: 1fr;
  }
}

.p-media__item {
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-media__item {
    text-align: left;
  }
}

.p-media__item a {
  display: block;
}

@media (any-hover: hover) {
  .p-media__link figure {
    overflow: hidden;
  }
  .p-media__link img {
    transition: scale 0.3s ease-in-out;
  }
  .p-media__link:hover {
    opacity: 1;
  }
  .p-media__link:hover img {
    scale: 1.05;
  }
}
.p-media__link:focus-visible {
  opacity: 1;
}
.p-media__link:focus-visible img {
  scale: 1.05;
}
@media (any-hover: hover) {
  .p-media__link .p-media__img {
    overflow: hidden;
  }
}

.p-media__card {
  padding: 2.5rem 1.6875rem 0;
  border: 0.1875rem solid var(--color-border);
  border-bottom: 1px solid;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-media__card {
    padding: 1.25rem 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 7.1875rem;
  }
}

.p-media__label {
  font-size: max(0.9375rem, 10px);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-media__label {
    font-size: max(0.875rem, 10px);
    letter-spacing: 0.1em;
  }
}

.p-media__name {
  font-size: max(1.75rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .p-media__name {
    font-size: max(1.25rem, 10px);
    letter-spacing: 0;
  }
}

.p-media__text {
  margin-top: 1.1875rem;
  font-size: max(0.875rem, 10px);
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-media__text {
    margin-top: 0.1875rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
    letter-spacing: 0;
  }
}

.p-media__img {
  margin-top: 1.375rem;
  width: 50%;
  margin-inline: auto;
  height: auto;
  overflow: visible !important;
}
@media screen and (max-width: 767px) {
  .p-media__img {
    width: 100%;
    margin-top: 0;
  }
}

.p-media__img img {
  aspect-ratio: 300/402;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-media__link-text {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: max(0.9375rem, 10px);
  letter-spacing: 0.2em;
  padding: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-media__link-text {
    margin-top: -0.625rem;
    font-size: max(0.75rem, 10px);
    padding-block: 0.5rem;
    padding-inline: 3.3125rem 1.25rem;
  }
}

.p-media__link-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/Instagram-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-media__link-text::after {
    right: initial;
    left: 1.5625rem;
    width: 0.9375rem;
  }
}

.p-mv {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 62.5rem;
  aspect-ratio: 1920/924;
  background-color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 37.5rem;
    max-height: 50rem;
    aspect-ratio: 390/600;
  }
}

.p-mv__slider,
.p-mv__slider-track,
.p-mv__slider-list,
.p-mv__slider-item,
.p-mv__slider-img {
  width: 100%;
  height: auto;
  max-height: inherit;
  min-height: inherit;
}

.p-mv__slider-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  max-height: inherit;
  min-height: inherit;
  aspect-ratio: 1920/924;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-item img {
    aspect-ratio: 390/600;
    -o-object-position: center;
       object-position: center;
  }
}

.p-mv__copy {
  position: absolute;
  inset: auto 0 18%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    width: 100%;
    top: 6.125rem;
    left: 0;
    right: auto;
    bottom: 2rem;
    transform: none;
  }
}

.p-mv__inner.l-inner {
  max-width: 111.125rem;
}
@media screen and (max-width: 1440px) {
  .p-mv__inner.l-inner {
    max-width: 87.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__inner.l-inner {
    max-width: 40rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.p-mv__main-copy {
  width: 24.0740740741%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__main-copy {
    width: 94.2857142857%;
  }
}

.p-mv__main-copy img {
  aspect-ratio: 76/75;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__main-copy img {
    aspect-ratio: 328/202;
  }
}

.p-mv__link {
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__link {
    margin-top: auto;
  }
}

.p-news-list {
  border-top: 1px solid #d3d3d3;
}

.p-news-list__item a {
  display: block;
  padding-block: 1.625rem;
  padding-inline: 0.625rem 4.375rem;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a {
    padding-block: 0.9375rem;
    padding-inline: 0;
  }
}

@media (hover: hover) {
  .p-news-list__item a:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.04);
  }
}
.p-news-list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.6875rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: solid 1px #232323;
  border-right: solid 1px #232323;
  opacity: 0.5;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-news-list__item a::after {
    content: none;
  }
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-news-list__date {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: max(0.75rem, 10px);
  }
}

.p-news-list__cat-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.p-news-list__cat {
  font-size: max(0.75rem, 10px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-black);
  padding-block: 0.375rem 0.4375rem;
  padding-inline: 0.8125rem;
}

.p-news-list__title {
  margin-top: 0.625rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    margin-top: 0.5rem;
    font-size: max(0.75rem, 10px);
    font-weight: var(--font-weight-regular);
    line-height: 1.6666666667;
    -webkit-line-clamp: 4;
  }
}

.p-news-list__pagenavi {
  margin-top: 3.125rem;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 1.375rem;
  }
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}
.p-pagenavi .previouspostslink {
  order: -1;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi .previouspostslink {
    margin-right: 0.75rem;
  }
}

.p-pagenavi .nextpostslink {
  margin-left: 0.625rem;
  order: 2;
}
@media screen and (max-width: 767px) {
  .p-pagenavi .nextpostslink {
    margin-left: 0.75rem;
  }
}

.p-pavinavi__prev,
.p-pavinavi__next {
  display: block;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-pavinavi__prev,
  .p-pavinavi__next {
    width: 1.5rem;
  }
}

.p-pavinavi__prev {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
  transform: scale(-1, 1);
}

.p-pavinavi__next {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
}

.p-pavinavi__prev.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  transform: scale(1, 1);
}

.p-pavinavi__next.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  transform: scale(-1, 1);
}

.p-privacy__list {
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-privacy__item + .p-privacy__item {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__item + .p-privacy__item {
    margin-top: 2.5625rem;
  }
}

.p-privacy__heading {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: max(1.125rem, 10px);
  }
}

.p-privacy__text {
  margin-top: 0.625rem;
}

.p-privacy__link {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy__link {
    margin-top: 3.125rem;
  }
}

.p-products {
  position: relative;
  z-index: 2;
}

.p-products-list {
  margin-top: 3.125rem;
  display: grid;
  gap: 2.5rem 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-products-list {
    margin-top: 1.375rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

@media (any-hover: hover) {
  .p-products-list__link figure {
    overflow: hidden;
  }
  .p-products-list__link img {
    transition: scale 0.3s ease-in-out;
  }
  .p-products-list__link:hover {
    opacity: 1;
  }
  .p-products-list__link:hover img {
    scale: 1.05;
  }
}
.p-products-list__link:focus-visible {
  opacity: 1;
}
.p-products-list__link:focus-visible img {
  scale: 1.05;
}
@media (any-hover: hover) {
  .p-products-list__link .p-products-list__name img {
    scale: 1;
  }
}
.p-products-list__link:focus-visible .p-products-list__name img {
  scale: 1;
}

.p-products-list__img {
  width: 100%;
  height: auto;
}

.p-products-list__img img {
  aspect-ratio: 556/370;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-products-list__img img {
    aspect-ratio: 350/130;
  }
}

.p-products-list__item:nth-child(5) .p-products-list__img img {
  -o-object-position: bottom;
     object-position: bottom;
}

.p-products-list__body {
  margin-top: 1.5rem;
  padding-inline: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-products-list__body {
    margin-top: 0.625rem;
    padding-inline: 0;
  }
}

.p-products-list__body::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  right: 0.9375rem;
  width: 2.25rem;
  height: 2.25rem;
  border-top: solid 0.5px #232323;
  border-right: solid 0.5px #232323;
  opacity: 0.5;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-products-list__body::after {
    top: 0.6875rem;
    right: 0.8125rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-products-list__name {
  width: 100%;
  height: auto;
}

.p-products-list__name img {
  width: auto;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-products-list__name img {
    height: 1.0625rem;
  }
}

.p-products-list__meta {
  margin-top: 0.5rem;
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-products-list__meta {
    margin-top: 0.3125rem;
  }
}

.p-project {
  padding-top: 5.5rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-project {
    padding-top: 1.75rem;
  }
}

.p-project::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1092;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% 44%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-project::before {
    width: 100%;
    height: 105%;
    aspect-ratio: initial;
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
  }
}

@media screen and (max-width: 767px) {
  .p-project__article {
    display: flex;
    flex-direction: column;
  }
}

.p-project__content-wrap {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 30.3183791606%;
}
@media screen and (max-width: 767px) {
  .p-project__content-wrap {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-project__title .c-section-title__en {
    margin-bottom: 0.9375rem;
  }
}

.p-project__logo {
  margin-top: 1.875rem;
  width: 19.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-project__logo {
    margin-top: 1.875rem;
    width: 57.1428571429%;
    max-width: 18.75rem;
  }
}

.p-project__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-project__body {
  margin-top: 1.25rem;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-project__body {
    margin-top: 0.4375rem;
  }
}

.p-project__lead {
  font-size: max(1.5rem, 10px);
  font-weight: 500;
  line-height: 2.0833333333;
  letter-spacing: 0.2em;
  color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .p-project__lead {
    font-size: max(1.125rem, 10px);
    line-height: 2.7777777778;
  }
}

.p-project__heading {
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-project__text {
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-project__text {
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-project__text-wrap {
  margin-top: 1.25rem;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  padding: 1.25rem;
}

.p-project__link-wrap {
  margin-top: 2.3125rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__link-wrap {
    order: 2;
    margin-top: 1rem;
    max-width: 21.875rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-project__link:not(:first-child) {
  margin-left: -1.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__link:not(:first-child) {
    margin-left: 0;
  }
}

.p-project__img {
  margin-top: 1.25rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-project__img {
    order: 3;
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.p-project__img img {
  aspect-ratio: 419/590;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-project__article[data-page=service] {
  margin-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__article[data-page=service] {
    margin-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.p-project__flow-list {
  margin-top: 1.875rem;
  padding-inline: 1.875rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: flow-step;
}
@media screen and (max-width: 767px) {
  .p-project__flow-list {
    padding-inline: 0.625rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-project__flow-item {
  counter-increment: flow-step;
}

.p-project__flow-item-arrow {
  background: linear-gradient(110deg, color-mix(in srgb, var(--color-black) 70%, transparent), var(--color-black));
  color: var(--color-white);
  padding-block: 0.625rem;
  padding-inline: 0.625rem 1.875rem;
  position: relative;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-arrow {
    padding: 0.3125rem;
    clip-path: none;
  }
}

.p-project__flow-item-content {
  padding-inline: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-content {
    padding-inline: 0.625rem;
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    align-items: center;
    gap: 0.625rem;
    max-width: 26.25rem;
    margin-inline: auto;
  }
}

.p-project__flow-item-title {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-title {
    font-size: max(1rem, 10px);
  }
}

.p-project__flow-item-number {
  flex-shrink: 0;
  display: inline-block;
  font-size: max(1.5625rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-number {
    font-size: max(1.25rem, 10px);
  }
}

.p-project__flow-item-number::before {
  content: counter(flow-step, decimal-leading-zero);
}

.p-project__flow-item-img {
  margin-top: 1.25rem;
  margin-inline: auto;
  width: 70%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-img {
    width: 100%;
  }
}

.p-project__flow-item-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 50%;
}

.p-project__flow-item-text {
  margin-top: 0.625rem;
  font-size: max(0.8125rem, 10px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-project__flow-item-text {
    margin-top: 0;
    text-align: left;
  }
}

.p-service__subtitle {
  margin-top: 2.5rem;
}

.p-service__body {
  margin-top: 1.875rem;
  padding-inline: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__body {
    padding-inline: 0.625rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-service__img {
  width: 100%;
  height: auto;
}

.p-service__img img {
  aspect-ratio: 784/588;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-service__img img {
    aspect-ratio: 300/180;
  }
}

.p-service__text--bold {
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-service__item {
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
  display: flex;
}

.p-service__item::before {
  content: "・";
  margin-right: 0.625rem;
}

.p-service__card-list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__card-list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.p-service__card-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.25rem;
}

.p-service__card-image {
  width: 100%;
  height: auto;
  position: relative;
}

.p-service__card-label {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.3125rem 0.625rem;
  font-size: max(0.875rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-service__card-image img {
  aspect-ratio: 410/280;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__card-image img {
    aspect-ratio: 300/150;
  }
}

.p-service__card-text {
  margin-top: 0.625rem;
}

.p-single__head {
  padding-bottom: 1.875rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-single__head {
    padding-inline: 0;
    padding-bottom: 1.25rem;
  }
}

.p-single__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-single__date {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: max(0.75rem, 10px);
  }
}

.p-single__cat-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.p-single__cat {
  font-size: max(0.75rem, 10px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-black);
  padding-block: 0.375rem 0.4375rem;
  padding-inline: 0.8125rem;
}

.p-single__title {
  margin-top: 1.375rem;
  font-size: max(1.375rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: max(1.25rem, 10px);
  }
}

.p-single__content {
  margin-top: 3.125rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-top: 1.875rem;
    padding-inline: 0;
  }
}

.p-single__nav {
  margin-top: 5rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    margin-top: 3.125rem;
  }
}

.p-single__nav-prev a,
.p-single__nav-next a,
.p-single__nav-center a {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.625rem;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-single__nav-prev a,
  .p-single__nav-next a,
  .p-single__nav-center a {
    font-size: max(0.875rem, 10px);
  }
}

.p-single__nav-prev {
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-single__nav-next {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (any-hover: hover) {
  .p-single__nav-prev a:hover,
  .p-single__nav-next a:hover,
  .p-single__nav-center a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
.p-sub-head {
  padding-top: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-sub-head {
    padding-top: 3.125rem;
    text-align: left;
  }
}

main:not([data-color=black]) .p-sub-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/500;
  background-color: var(--color-white);
  background: linear-gradient(to bottom, var(--color-bg-gray) 0%, var(--color-white) 50%);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 0% 100%);
}
@media screen and (max-width: 767px) {
  main:not([data-color=black]) .p-sub-head::before {
    aspect-ratio: 390/200;
  }
}

.p-sub-head__title {
  font-size: max(7.5rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-sub-head__title {
    font-size: max(3.75rem, 10px);
  }
}

.p-sub-head__title + .p-sub-head__lead {
  margin-top: 1.625rem;
}

.p-sub-head__lead {
  font-size: max(2.5rem, 10px);
  font-weight: var(--font-weight-regular);
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-sub-head__lead {
    font-size: max(1.25rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-sub-head__main-text {
  margin-top: 1.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-sub-head__main-text {
    margin-top: 0.875rem;
    font-size: max(1rem, 10px);
  }
}

.p-sub-head__text {
  margin-top: 1.625rem;
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-sub-head__text {
    margin-top: 0.875rem;
    line-height: 1.5;
  }
}

.p-sub-head__text span {
  font-weight: 500;
}

.p-sub-head__list {
  margin-top: 3.125rem;
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-sub-head__list {
    margin-top: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-sub-head__list-item-link a {
  display: block;
  width: 100%;
  padding: 1.25rem;
  background-color: var(--color-black2);
  text-align: center;
  font-size: max(0.875rem, 10px);
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-head__list-item-link a {
    padding: 0.625rem;
    font-size: max(0.75rem, 10px);
  }
}

.p-sub-head__list-item-link a::after {
  content: "";
  position: absolute;
  right: 0.625rem;
  top: 40%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: auto;
  aspect-ratio: 27/107;
  background-image: url(../images/common/arrow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease-in-out;
}

.p-sub-head__list-item-link img {
  width: auto;
  margin-inline: auto;
  height: 6.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-sub-head__list-item-link img {
    height: 4.375rem;
  }
}

.p-sub-head__list-item:nth-of-type(2) .p-sub-head__list-item-link a {
  padding-block: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-sub-head__list-item:nth-of-type(2) .p-sub-head__list-item-link a {
    padding-block: 1.25rem;
  }
}

.p-sub-head__list-item:nth-of-type(2) .p-sub-head__list-item-link img {
  height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-sub-head__list-item:nth-of-type(2) .p-sub-head__list-item-link img {
    height: 3.125rem;
  }
}

.p-sub-head__list-item-link span {
  display: block;
  margin-top: 0.9375rem;
}

.p-sub-head__list-item-content {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-inline: 0.9375rem;
}

.p-sub-head__list-img {
  width: 100%;
  height: auto;
}

.p-sub-head__list-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 340/230;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-sub-head__list-img img {
    aspect-ratio: 340/130;
  }
}

.p-sub-head__list-title {
  text-align: center;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.5;
}

.p-sub-head__list-text {
  text-align: left;
}

@media (any-hover: hover) {
  .p-sub-head__list-item-link a:hover {
    opacity: 1;
  }
  .p-sub-head__list-item-link a:hover::after {
    transform: translateY(-30%);
  }
}
.p-sub-mv {
  width: 100%;
  height: 25rem;
  background-image: url(../images/common/sub-mv-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    height: 15.625rem;
  }
}

.p-sub-mv__inner.l-inner {
  max-width: 101.25rem;
  height: inherit;
}
@media screen and (max-width: 1600px) {
  .p-sub-mv__inner.l-inner {
    max-width: 78.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__inner.l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-sub-mv__title-wrap {
  padding-top: calc(var(--header-height) - 0.625rem);
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-wrap {
    justify-content: center;
  }
}

.p-sub-mv__title-en {
  font-size: max(5.625rem, 10px);
  font-family: var(--jost-font-family);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-en {
    font-size: max(3.125rem, 10px);
  }
}

.p-sub-mv__title-ja {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-ja {
    font-size: max(1.125rem, 10px);
  }
}

.p-sub-mv__img {
  width: 100%;
  height: auto;
}

.p-sub-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sub-mv[data-page=coolmax] .p-sub-mv__img {
  width: 14.125rem;
}

.p-technology {
  background-color: var(--color-black2);
  padding-block: 8.4375rem 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-technology {
    padding-block: 3.125rem 3.125rem;
  }
}

.p-technology__title {
  padding-left: 10.6936416185%;
}
@media screen and (max-width: 1440px) {
  .p-technology__title {
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__title {
    padding-left: 0;
  }
}

.p-technology__list {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-technology__list {
    margin-top: 1.5rem;
  }
}

.p-technology__item {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: 1fr 50.8670520231%;
}
@media screen and (max-width: 767px) {
  .p-technology__item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-technology__content {
  margin-top: 2.5rem;
  padding-left: 21.9512195122%;
  max-width: 43.75rem;
}
@media screen and (max-width: 1440px) {
  .p-technology__content {
    padding-left: 0;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__content {
    margin-top: 1.5rem;
  }
}

.p-technology__num {
  display: block;
}

.p-technology__label {
  font-size: max(1.25rem, 10px);
  font-family: var(--jost-font-family);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--color-green);
  position: relative;
  padding-left: 1.4375rem;
}

.p-technology__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 110%;
  background-color: var(--color-green);
}

.p-technology__logo-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.p-technology__logo {
  margin-top: 3.3125rem;
  width: 14.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-technology__logo {
    margin-top: 1.75rem;
    width: min(14.5rem, 100%);
    max-width: 12.5rem;
  }
}

.p-technology__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-technology__lead {
  margin-top: 2rem;
  font-size: max(1.875rem, 10px);
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-technology__lead {
    margin-top: 1.6875rem;
    font-size: max(1.125rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-technology__text {
  margin-top: 1rem;
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
}
@media screen and (max-width: 767px) {
  .p-technology__text {
    margin-top: 0.875rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-technology__movie {
  width: 100%;
  height: auto;
}

.p-technology__movie iframe {
  border: 0;
  aspect-ratio: 880/496;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-technology__movie img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-technology__item[data-position=left] {
  margin-top: 5rem;
  grid-template-columns: 50.8670520231% 1fr;
}
@media screen and (max-width: 767px) {
  .p-technology__item[data-position=left] {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.p-technology__item[data-position=left] .p-technology__content {
  grid-area: 1/2/2/3;
  padding-left: 14.2682926829%;
}
@media screen and (max-width: 1440px) {
  .p-technology__item[data-position=left] .p-technology__content {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item[data-position=left] .p-technology__content {
    grid-area: auto;
    padding-left: 0;
  }
}

.p-technology__item[data-position=left] .p-technology__logo {
  margin-top: 4.25rem;
  width: 92.9475587703%;
}
@media screen and (max-width: 767px) {
  .p-technology__item[data-position=left] .p-technology__logo {
    margin-top: 1.75rem;
    width: 18.75rem;
    max-width: 18.75rem;
  }
}

.p-technology__item[data-position=left] .p-technology__lead {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-technology__item[data-position=left] .p-technology__lead {
    margin-top: 1.5rem;
  }
}

.p-technology__item[data-position=left] .p-technology__movie {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 767px) {
  .p-technology__item[data-position=left] .p-technology__movie {
    grid-area: auto;
  }
}

.p-technology__functional {
  margin-top: 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-technology__functional {
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-technology__functional-inner {
    padding: 0;
  }
}

.p-technology__functional-list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-technology__functional-list {
    margin-top: 1.875rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.9375rem;
  }
}

.p-technology__functional-item-image {
  width: 100%;
  height: auto;
}

.p-technology__functional-item-image img {
  aspect-ratio: 304/304;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-technology__functional-item-content {
  margin-top: 0.625rem;
}

.p-technology__functional-item-title {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-technology__functional-item-title {
    font-size: max(0.9375rem, 10px);
  }
}

.p-technology__functional-item-text {
  margin-top: 0.625rem;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
  .p-technology__functional-item-text {
    margin-top: 0.5rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-technology__material-list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-technology__material-list {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-technology__material-item {
  min-width: 0;
}

.p-technology__material-accordion.c-accordion {
  min-width: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.p-technology__material-title {
  font-size: max(1.25rem, 10px);
  padding: 0.625rem 1.25rem;
  min-height: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-technology__material-title {
    font-size: max(1rem, 10px);
    padding: 0.5rem 1rem;
    min-height: 0;
  }
}

.p-technology__material-title.c-accordion__summary::before,
.p-technology__material-title.c-accordion__summary::after {
  background-color: var(--color-white);
}

.p-technology__material-accordion .c-accordion__wrap {
  padding: 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion .c-accordion__wrap {
    padding: 1rem;
  }
}

.p-technology__material-accordion-body {
  min-width: 0;
}

.p-technology__material-accordion-title {
  font-size: max(1.125rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-title {
    font-size: max(1rem, 10px);
  }
}

.p-technology__material-accordion-metarial-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1.25rem 0.625rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-metarial-wrap {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-technology__material-accordion-metarial-title {
  margin-top: 0.625rem;
  font-size: max(1.125rem, 10px);
  grid-area: 1/1/2/3;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-metarial-title {
    font-size: max(1rem, 10px);
    grid-area: auto;
    margin-top: 0;
  }
}

.p-technology__material-accordion-img {
  grid-area: 2/1/3/2;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-img {
    max-width: 12.5rem;
    grid-area: auto;
  }
}

.p-technology__material-accordion-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-technology__material-accordion-text-wrap,
.p-technology__material-accordion-logo-img {
  grid-area: 2/2/3/3;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-text-wrap,
  .p-technology__material-accordion-logo-img {
    grid-area: auto;
  }
}

.p-technology__material-accordion-logo-img {
  width: 100%;
  height: 100%;
  max-width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-logo-img {
    max-width: 15.625rem;
  }
}

.p-technology__material-accordion-logo-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.p-technology__material-accordion-color-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
  margin-top: 1.25rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-color-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.875rem 1.5rem;
    margin-top: 1rem;
  }
}

.p-lineup__fabric-details {
  margin-top: 1.875rem;
}

article.p-lineup__fabric-details {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  article.p-lineup__fabric-details {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-lineup__fabric-details-inner {
    padding: 0;
  }
}

.p-lineup__fabric-details-logo {
  margin-top: 1.25rem;
  width: 9.6875rem;
  height: auto;
}

.p-lineup__fabric-details-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-technology__material-accordion-link-wrap {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technology__material-accordion-link-wrap {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-technology__material-accordion-link a.c-button {
  white-space: nowrap;
}

.p-top-about {
  color: var(--color-white);
  overflow: clip;
  position: relative;
  background-image: url(../images/top/about-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/900;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    aspect-ratio: initial;
    background-image: none;
    background-color: var(--color-black);
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__inner-bg {
    width: 100%;
    height: auto;
    background-image: url(../images/top/about-img_sp.webp);
    aspect-ratio: 780/532;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.p-top-about__inner {
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-top-about__content {
    padding-block: 2.125rem 3.125rem;
  }
}

.p-top-about__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    margin-top: 1.6875rem;
  }
}

.p-top-about__lead {
  font-size: max(1.875rem, 10px);
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-about__lead {
    font-size: max(1.125rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-top-about__text {
  margin-top: 1.625rem;
  font-size: max(0.875rem, 10px);
  line-height: 2.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    margin-top: 0.875rem;
    font-size: max(0.75rem, 10px);
    line-height: 1.6666666667;
  }
}

.p-top-about__link-wrap {
  margin-top: 5.3125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__link-wrap {
    margin-top: 1.6875rem;
    gap: 1rem;
  }
}

.p-top-about__link .c-rhombus-button {
  max-width: 22.5rem;
  padding: 1.5rem 2.4375rem;
  font-size: max(0.875rem, 10px);
}
@media screen and (max-width: 1440px) {
  .p-top-about__link .c-rhombus-button {
    max-width: 23.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__link .c-rhombus-button {
    max-width: 21.875rem;
    font-size: max(0.875rem, 10px);
    padding: 1.0625rem 2.1875rem;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }
}

.p-top-news {
  padding-block: 5rem 5.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 1.25rem 2.5rem;
  }
}

.p-top-news__inner {
  display: grid;
  gap: 3.125rem;
  grid-template-columns: 20% 1fr;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-news__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.p-top-news__title .c-section-title__en {
  margin-right: 0;
}

.p-top-news__link {
  margin-top: 3.75rem;
  padding-left: 0.625rem;
}

.p-top-news__link a {
  display: block;
  font-size: max(0.75rem, 10px);
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-top-news__link a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
.p-top-news__list {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 0;
  }
}

.p-top-products {
  position: relative;
  z-index: 1;
}

.p-top-products::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -7.5rem;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/635;
  background-color: var(--color-white);
  background: linear-gradient(to bottom, var(--color-bg-gray), var(--color-white));
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 767px) {
  .p-top-products::before {
    bottom: -3.125rem;
    aspect-ratio: 390/200;
  }
}

.p-top-products__inner.l-inner {
  max-width: 114.6875rem;
  padding-inline: 5.1875rem 1.5625rem;
}
@media screen and (max-width: 1600px) {
  .p-top-products__inner.l-inner {
    max-width: 78.125rem;
    padding-inline: 1.5625rem;
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-products__inner.l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
    width: 100%;
  }
}

.p-top-products__title {
  max-width: 90rem;
  margin-inline: auto;
}

.js-fadein {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 2s cubic-bezier(0.2, 0.6, 0.2, 1), transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.js-fadein.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}