@charset "UTF-8";
/*
 * コンパイルは手動で行う。出力は assets/css/style.css のみ。
 * この scss フォルダ内に style.css を出さないこと（二重ファイルの原因になる）。
 * 誤例: scss 内で `sass style.scss` だけ実行
 * 正例（プロジェクトルート）:
 *   sass assets/css/scss/style.scss assets/css/style.css --source-map
 * ウォッチする場合は末尾に --watch を付ける。
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  padding: 0;
  margin: 0;
}

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

ul,
ol {
  list-style: none;
}

:root {
  --layout-max-width: 100%;
  --space-inline: 15px;
  --space-inline-fluid: 15px;
  --design-base-width: 375px;
}

@media (min-width: 768px) {
  :root {
    --space-inline: 24px;
    --space-inline-fluid: 24px;
  }
}
@media (min-width: 1280px) {
  :root {
    --space-inline: 40px;
    --space-inline-fluid: 40px;
    --layout-max-width: 1200px;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  background-color: #000000;
  touch-action: manipulation;
}

:where(a,
button,
input[type=button],
input[type=submit],
input[type=reset],
input[type=checkbox],
input[type=radio],
label[for],
select,
summary,
[role=button]) {
  touch-action: manipulation;
}

:where(a, button, [role=button], label[for], summary) {
  cursor: pointer;
}

:where(a, button, [role=button]) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  background-color: #000000;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.l-main {
  width: 100%;
  max-width: 2540px;
  container-type: inline-size;
  container-name: main;
}

.c-brand-name {
  letter-spacing: -0.1em;
}
.c-brand-name::after {
  content: "";
  display: inline-block;
  width: 0.14em;
  height: 0.14em;
  background-color: #ffffff;
  margin-left: -0.1em;
  margin-bottom: -0.01em;
}

.c-brand-name.--black::after {
  background-color: #000000;
}

.c-button {
  display: grid;
  align-items: center;
  justify-items: center;
  border-radius: 30px;
  border: 1px solid #000;
  background: #d9d9d9;
  color: #000;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  padding-left: 5px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.c-button svg circle,
.c-button svg path {
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.c-button svg circle {
  fill: #000;
}
.c-button svg path {
  stroke: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    background: #000;
    color: #fff;
  }
  .c-button:hover svg circle {
    fill: #fff;
  }
  .c-button:hover svg path {
    stroke: #000;
  }
}
@media (min-width: 768px) {
  .c-button {
    width: 200px;
    height: 43px;
    font-size: 14px;
    letter-spacing: -0.05em;
    grid-template-columns: 1fr 36px;
  }
}
@media (min-width: 1280px) {
  .c-button {
    width: 354px;
    height: 60px;
    font-size: 20px;
    letter-spacing: 0.05em;
    grid-template-columns: 1fr 40px;
  }
}
.c-button__icon {
  margin-right: 7px;
  width: 27px;
}
@media (min-width: 1280px) {
  .c-button__icon {
    margin-right: 16px;
    width: 40px;
  }
}

.p-fv {
  position: relative;
  display: grid;
  grid-template: "layer"/100%;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-fv {
    aspect-ratio: 1920/1045;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .p-fv {
    aspect-ratio: auto;
    min-height: 100svh;
    overflow: hidden;
  }
  .p-fv .p-fv__bg-img--fv {
    top: 0;
    height: 100%;
  }
  .p-fv .p-fv__inner--sp {
    display: none;
  }
  .p-fv .p-fv__sp-block {
    display: none;
  }
}
.p-fv__bg {
  grid-area: layer;
  filter: brightness(var(--fv-brightness, 0.55));
}
.p-fv__inner {
  grid-area: layer;
}
.p-fv__scroll-cue {
  --fv-scroll-line-height: clamp(40px, calc(96.5 / 1920 * 100vw), 96.5px);
  grid-area: layer;
  justify-self: end;
  align-self: end;
  display: grid;
  justify-items: center;
  row-gap: 6px;
  margin-right: clamp(16px, 15.625vw, 300px);
  z-index: 2;
  display: none;
}
@media (min-width: 1024px) {
  .p-fv__scroll-cue {
    display: grid;
  }
}
.p-fv__scroll-cue-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.625vw, 12px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.p-fv__scroll-cue-arrow {
  display: grid;
  justify-items: center;
  row-gap: 1px;
  -webkit-animation: fv-scroll-arrow 2.8s linear infinite;
  animation: fv-scroll-arrow 2.8s linear infinite;
}
.p-fv__scroll-cue-arrow-line {
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.p-fv__scroll-cue-arrow-line--1 {
  transform: rotate(45deg);
}
.p-fv__scroll-cue-arrow-line--2 {
  transform: rotate(45deg);
  margin-top: -3px;
}
.p-fv__scroll-cue-dot {
  width: clamp(12px, 1.0416666667vw, 10px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #bdbdbd;
  -webkit-animation: fv-scroll-dot 2.8s linear infinite;
  animation: fv-scroll-dot 2.8s linear infinite;
}
.p-fv__scroll-cue-line {
  display: block;
  width: 1px;
  height: var(--fv-scroll-line-height);
  background-color: #bdbdbd;
}
.p-fv__bg-img {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.p-fv__bg-img--fv {
  top: 0;
  height: 100%;
}
.p-fv__bg-img--message {
  top: 30.2%;
  height: 32.7%;
}
.p-fv__bg-img--reason {
  top: 60.2%;
  height: 39.8%;
}
@media (min-width: 768px) {
  .p-fv__bg-img--sp-only {
    display: none;
  }
}
.p-fv__inner {
  display: grid;
  align-content: start;
  padding-top: clamp(100px, 40cqw, 200px);
  padding-inline: var(--space-inline-fluid);
  z-index: 2;
}
.p-fv__inner--sp {
  padding-top: 0;
  padding-inline: 0;
  row-gap: 0;
}
.p-fv__sp-block {
  display: grid;
}
.p-fv__sp-block > * {
  grid-area: 1/1;
}
.p-fv__sp-block--message {
  min-height: 0;
  margin-top: -1px;
}
.p-fv__sp-block--reason {
  min-height: 0;
}
.p-fv__sp-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 375/204;
}
.p-fv__sp-bg--slogan {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/269;
}
.p-fv__sp-content {
  padding-inline: var(--space-inline-fluid);
  display: grid;
  align-content: start;
}
.p-fv__sp-content--fv {
  padding-top: clamp(135px, 36vw, 320px);
}
.p-fv__sp-content--message {
  padding-top: clamp(24px, 6.4vw, 24px);
  padding-bottom: clamp(30px, 8vw, 28px);
  background-image: url("../../images/message-bgi.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-fv__sp-content--reason {
  padding-top: clamp(102px, 27.2vw, 300px);
}
.p-fv__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 5.6cqw, 32px);
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
}
.p-fv__body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3.47cqw, 16px);
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
}
.p-fv__slogan {
  display: grid;
  align-content: start;
}
.p-fv__slogan-label {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4.27cqw, 20px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #e83820;
  margin-bottom: clamp(8px, 3.2cqw, 16px);
}
.p-fv__slogan-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 9.6cqw, 56px);
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: clamp(8px, 3.47cqw, 18px);
}
.p-fv__slogan-en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 3.2cqw, 16px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: clamp(24px, 10.6666666667vw, 40px);
}
.p-fv__slogan-sp {
  position: relative;
}
@media (min-width: 768px) {
  .p-fv__slogan-sp {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-fv__slogan-sp {
    display: none;
  }
}
.p-fv__slogan-sp__description {
  background: linear-gradient(180deg, #0f1111 0%, #020202 100%);
  padding-inline: var(--space-inline-fluid);
  padding-bottom: 1.5em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3.47cqw, 16px);
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

@-webkit-keyframes fv-scroll-arrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.65;
  }
}
@keyframes fv-scroll-arrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.65;
  }
}
@-webkit-keyframes fv-scroll-dot {
  0% {
    transform: translateY(10px);
  }
  70% {
    transform: translateY(calc(var(--fv-scroll-line-height) + 4.5px));
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fv-scroll-dot {
  0% {
    transform: translateY(10px);
  }
  70% {
    transform: translateY(calc(var(--fv-scroll-line-height) + 4.5px));
  }
  100% {
    transform: translateY(10px);
  }
}
html.js .p-fv__heading,
html.js .p-fv__body,
html.js .p-fv__slogan,
html.js .p-fv__slogan-sp__description {
  opacity: 0;
  transform: translateY(1rem);
}

.p-message {
  display: none;
  background-color: #00162a;
  grid-template: "layer"/100%;
  margin-top: -1px;
}
.p-message__bg {
  grid-area: layer;
  background-image: url("../../images/message-bgi.jpg");
  background-size: cover;
  background-position: center;
  aspect-ratio: 1920/1129;
}
.p-message__inner {
  grid-area: layer;
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
  padding-top: clamp(60px, 15.3cqw, 294px);
  margin-left: clamp(24px, 16.5cqw, 317px);
  padding-right: clamp(24px, 8.85cqw, 170px);
  z-index: 2;
  min-width: 593px;
}
@media (min-width: 768px) {
  .p-message__inner {
    padding-top: 0;
    margin-left: clamp(24px, 14.21875vw, 1500px);
    align-self: center;
    max-width: 914px;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .p-message__inner {
    padding-top: clamp(24px, 12.8645833333vw, 1500px);
    margin-left: clamp(24px, 23.6458333333vw, 1500px);
    align-self: start;
    max-width: 960px;
  }
}
.p-message__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5cqw, 96px);
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: clamp(16px, 2.1cqw, 40px);
  max-width: clamp(280px, 51.8cqw, 994px);
}
.p-message__body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4cqw, 16px);
  line-height: 1.714;
  color: #ffffff;
  max-width: clamp(280px, 51.8cqw, 994px);
}
@media (min-width: 768px) {
  .p-message {
    display: grid;
  }
  .p-message .p-message__deco {
    display: block;
  }
}

.p-slogan {
  display: none;
  position: relative;
  isolation: isolate;
  grid-template: "layer"/100%;
  container-type: inline-size;
  container-name: slogan;
  margin-top: -1px;
}
.p-slogan__bg {
  grid-area: layer;
  width: 100%;
  aspect-ratio: 1920/1376;
  background-image: url("../../images/reason-bgi.jpg");
  background-size: cover;
}
.p-slogan__inner {
  grid-area: layer;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding-inline: clamp(24px, 8.85cqw, 170px);
  gap: clamp(40px, 5.16cqw, 99px);
  z-index: 2;
}
@media (min-width: 768px) {
  .p-slogan__inner {
    margin-left: clamp(24px, 14.21875vw, 1500px);
    padding-top: clamp(24px, 23.59375vw, 1500px);
    padding-left: 0;
    padding-right: 0;
    row-gap: clamp(10px, 0.5208333333vw, 99px);
    max-width: 928px;
  }
}
@media (min-width: 1024px) {
  .p-slogan__inner {
    margin-left: clamp(24px, 23.6458333333vw, 1500px);
    padding-top: clamp(24px, 30.8854166667vw, 1500px);
  }
}
.p-slogan__label {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.67cqw, 100px);
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #e83820;
}
@media (min-width: 768px) {
  .p-slogan__label {
    margin-bottom: clamp(-10px, -0.5208333333vw, -20px);
  }
}
.p-slogan__heading {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5cqw, 96px);
  letter-spacing: 0.05em;
  color: #ffffff;
}
.p-slogan__heading-line {
  display: block;
}
@media (min-width: 768px) {
  .p-slogan__heading-line {
    font-size: clamp(28px, 5vw, 150px);
  }
}
.p-slogan__heading-line--1 {
  line-height: 1.3541666667;
}
.p-slogan__heading-line--2 {
  line-height: 1.25;
}
.p-slogan__en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.875cqw, 36px);
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0;
}
.p-slogan__body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4cqw, 16px);
  line-height: 1.714;
  color: #ffffff;
  margin: 0;
  max-width: clamp(280px, 51.8cqw, 994px);
}
@media (min-width: 768px) {
  .p-slogan__body {
    max-width: 560px;
    justify-self: center;
  }
}
@media (min-width: 1280px) {
  .p-slogan__body {
    max-width: clamp(280px, 51.8cqw, 994px);
  }
}
.p-slogan__quoted {
  display: inline-block;
  padding-left: 1em;
  margin-left: -1.5em;
}
@media (min-width: 768px) {
  .p-slogan {
    display: grid;
  }
}

.p-about__reason__inner {
  display: grid;
  container-type: inline-size;
  container-name: about-reason;
}
.p-about__reason__inner > * {
  grid-area: 1/1;
}
.p-about__bgi {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 2880/1608;
  object-fit: cover;
  object-position: right;
}
.p-about__reason-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  align-self: start;
  gap: clamp(24px, 10.6666666667vw, 40px);
  padding-inline: var(--space-inline-fluid);
  padding-top: clamp(20px, 8cqw, 48px);
  padding-bottom: clamp(32px, 10cqw, 64px);
  z-index: 2;
}
@media (min-width: 768px) {
  .p-about__reason-content {
    margin-left: clamp(24px, 14.21875vw, 1500px);
    padding-top: clamp(24px, 12.8645833333vw, 500px);
    padding-inline: 0;
    padding-right: 0;
    padding-bottom: clamp(40px, 6.25vw, 200px);
    max-width: 928px;
    gap: clamp(10px, 0.5208333333vw, 99px);
  }
}
@media (min-width: 1024px) {
  .p-about__reason-content {
    margin-left: clamp(24px, 23.6458333333vw, 1500px);
    padding-top: clamp(24px, 12.8645833333vw, 500px);
  }
}
.p-about__reason-text {
  width: 100%;
}
@media (min-width: 768px) {
  .p-about__reason-text {
    display: flex;
    flex-direction: column;
    row-gap: clamp(10px, 0.5208333333vw, 99px);
  }
}
.p-about__en-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4.27cqw, 20px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #e83820;
  margin-bottom: clamp(8px, 3.2cqw, 16px);
}
@media (min-width: 768px) {
  .p-about__en-label {
    font-size: clamp(14px, 1.6666666667vw, 32px);
    line-height: 2.5;
    margin-bottom: clamp(-10px, -0.5208333333vw, -20px);
  }
}
.p-about__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 9.6cqw, 56px);
  line-height: 1.1;
  color: #000000;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 768px) {
  .p-about__heading {
    font-size: clamp(28px, 5vw, 96px);
    line-height: 1.3541666667;
  }
}
.p-about__body {
  display: grid;
  gap: clamp(16px, 6.4vw, 24px);
  width: 100%;
}
.p-about__body p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3.47cqw, 16px);
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
@media (min-width: 768px) {
  .p-about__body p {
    font-size: clamp(14px, 1.4cqw, 16px);
    line-height: 1.714;
  }
}
@media (min-width: 768px) {
  .p-about__body {
    max-width: 560px;
  }
}
@media (min-width: 1280px) {
  .p-about__body {
    max-width: clamp(280px, 51.8cqw, 994px);
  }
}
.p-about__button__wrapper {
  display: none;
}
@media (min-width: 768px) {
  .p-about__button__wrapper {
    display: flex;
    justify-self: end;
    gap: 16px;
    padding-top: 36.6315789474cqw;
    margin-right: 80px;
    margin-top: 2.6041666667vw;
  }
}
@media (min-width: 1280px) {
  .p-about__button__wrapper {
    padding-top: 35.0526315789vw;
    padding-left: 0;
    justify-self: center;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .p-about__button__wrapper {
    justify-self: start;
    padding-left: 23.8947368421vw;
  }
}
.p-about__button__wrapper .p-about__button[data-fadeup].is-active:nth-child(1) {
  transition-delay: 0s;
}
.p-about__button__wrapper .p-about__button[data-fadeup].is-active:nth-child(2) {
  transition-delay: 0.12s;
}
.p-about__button__wrapper .p-about__button[data-fadeup].is-active:nth-child(3) {
  transition-delay: 0.24s;
}
.p-about__company {
  display: none;
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding-top: clamp(24px, 9.6cqw, 48px);
  padding-bottom: clamp(24px, 9.6cqw, 48px);
  padding-inline: var(--space-inline-fluid);
  background-image: url("../../images/behind-company-name.jpg");
  background-size: cover;
  background-position: center;
}
.p-about__company-en-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4.27cqw, 20px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #e83820;
  margin-bottom: clamp(16px, 6.4cqw, 32px);
}
.p-about__logo {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(12px, 4.8cqw, 24px);
}
.p-about__logo img {
  display: block;
  width: clamp(180px, 61.6cqw, 300px);
  max-width: 100%;
  height: auto;
}
.p-about__company-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4.27cqw, 20px);
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: clamp(12px, 4.27cqw, 20px);
}
.p-about__movie {
  display: grid;
  background-color: #000;
  justify-items: center;
  align-items: center;
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) {
  .p-about__movie {
    height: 64.2708333333vw;
  }
}
.p-about__movie-inner {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .p-about__movie-inner {
    padding: 0;
  }
}
.p-about__movie-mark {
  width: clamp(160px, 62.4cqw, 360px);
  height: auto;
  aspect-ratio: 234/188;
  object-fit: contain;
}
@media (min-width: 768px) {
  .p-about__movie-mark {
    width: clamp(200px, 41.6145833333vw, 1500px);
    align-items: start;
  }
}

html.js .p-about__reason-content > *,
html.js .p-about__company > * {
  opacity: 0;
  transform: translateY(2rem);
}

.p-company-name--page .p-company-name__grid-container {
  position: relative;
  display: grid;
  height: min(1072px, 100vh);
}
.p-company-name--page .p-company-name__grid-container > * {
  grid-area: 1/-1;
}
.p-company-name--page .p-company-name__inner-image {
  width: 100%;
}
.p-company-name--page .p-company-name__inner-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.p-company-name--page .p-company-name__inner-text {
  display: flex;
  flex-flow: column;
  container-type: inline-size;
  container-name: company-name;
  justify-self: center;
  width: 100%;
  padding-inline: var(--space-inline-fluid);
  margin-inline: auto;
  row-gap: clamp(40px, 5.15625vw, 99px);
  padding-top: clamp(24px, 10.2083333333vw, 196px);
}
@media (min-width: 768px) {
  .p-company-name--page .p-company-name__inner-text {
    width: min(1580px, 100% - 200px);
    padding-inline: 0;
  }
}
.p-company-name--page .p-company-name__logo-name, .p-company-name--page .p-company-name__logo {
  width: clamp(231px, 47.4479166667cqw, 1500px);
}
.p-company-name--page .p-company-name__hgroup {
  display: grid;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}
.p-company-name--page .p-company-name__en-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6666666667cqw, 64px);
  letter-spacing: 0.05em;
  color: #e83820;
}
.p-company-name--page .p-company-name__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 3.3333333333cqw, 200px);
  line-height: 1;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.p-company-name--page .p-company-name__desc-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 5.3333333333vw, 32px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0;
}
.p-company-name--page .p-company-name__desc-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 4.27cqw, 20px);
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: clamp(4px, 1.6cqw, 8px);
}
.p-company-name--page .p-company-name__desc-wrapper {
  display: grid;
  gap: 1.8em;
}
@media (min-width: 1280px) {
  .p-company-name--page .p-company-name__desc-wrapper {
    margin-bottom: 120px;
  }
}
.p-company-name--page .p-company-name__desc-group {
  display: grid;
  gap: clamp(14px, 1.5cqw, 20px);
}
.p-company-name--page .p-company-name__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3.7333333333vw, 15px);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-character;
  line-break: strict;
  word-break: normal;
}
@supports (word-break: auto-phrase) {
  .p-company-name--page .p-company-name__desc {
    word-break: auto-phrase;
  }
}
.p-company-name--page .p-company-name__desc {
  text-wrap: pretty;
  hanging-punctuation: allow-end;
  color: #ffffff;
}
@media (min-width: 1280px) {
  .p-company-name--page .p-company-name__desc {
    max-width: 96ch;
    font-size: 18px;
  }
}
.p-company-name--page .p-company-name__desc--right {
  text-align: right;
  text-justify: auto;
  margin-top: 1em;
}
.p-company-name--page .p-company-name__phrase {
  white-space: nowrap;
}
.p-company-name--page .p-company-name__sign-name {
  font-size: 1.5em;
}

@media (max-width: 767px) {
  .p-about__company .p-company-name__desc-heading {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 5.3333333333vw, 32px);
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-top: 1em;
    margin-bottom: 0;
  }
  .p-about__company .p-company-name__desc-wrapper {
    display: grid;
    gap: 1.8em;
    margin-bottom: 40px;
  }
  .p-about__company .p-company-name__desc-group {
    display: grid;
    gap: clamp(14px, 3.7333333333vw, 20px);
  }
  .p-about__company .p-company-name__desc {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 3.7333333333vw, 15px);
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-character;
    text-align-last: left;
    line-break: strict;
    word-break: normal;
  }
  @supports (word-break: auto-phrase) {
    .p-about__company .p-company-name__desc {
      word-break: auto-phrase;
    }
  }
  .p-about__company .p-company-name__desc {
    text-wrap: pretty;
    hanging-punctuation: allow-end;
    color: #ffffff;
  }
  .p-about__company .p-company-name__desc--right {
    text-align: right;
    text-justify: auto;
    text-align-last: right;
    margin-top: 1em;
  }
  .p-about__company .p-company-name__phrase {
    white-space: nowrap;
  }
  .p-about__company .p-company-name__sign-name {
    font-size: 1.5em;
  }
}
html.is-company-closing .p-company-name--page {
  opacity: 0;
}

.p-company-name--page .p-company-name__close {
  position: absolute;
  top: 47px;
  right: 68px;
  display: grid;
  place-items: center;
  width: clamp(40px, 5.2083333333vw, 60px);
  height: clamp(40px, 5.2083333333vw, 60px);
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
}

.p-company-name--page .p-company-name__close-line {
  grid-area: 1/1;
  width: clamp(56px, 7.2916666667vw, 84px);
  height: 2px;
  background: #ffffff;
}

.p-company-name--page .p-company-name__close-line--1 {
  transform: rotate(45deg);
}

.p-company-name--page .p-company-name__close-line--2 {
  transform: rotate(-45deg);
}

.no-js .p-opening {
  display: none;
}

.p-opening {
  position: fixed;
  inset: 0;
  z-index: 10000;
  min-height: 0;
  container-type: inline-size;
  container-name: opening;
}
.p-opening__fv {
  display: grid;
  place-items: center;
  height: 100%;
}
.p-opening__fv > * {
  grid-area: 1/1;
}
.p-opening__fv-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-opening__text {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-opening__text-copy {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 6cqw, 48px);
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  max-width: min(90%, 20em);
  opacity: 0;
}
.p-opening__text-copy .c-brand-name {
  letter-spacing: 0;
}

html.js.opening-skipped #js-opening {
  display: none !important;
}

html.js.opening-skipped .p-fv__bg {
  --fv-brightness: 1;
}

@media (max-width: 767px) {
  html.js.opening-skipped .p-fv__bg-img--fv {
    transform: scale(1.2);
    transform-origin: 50% 50%;
  }
  html.js.opening-skipped .p-fv__heading,
  html.js.opening-skipped .p-fv__body,
  html.js.opening-skipped .p-fv__slogan,
  html.js.opening-skipped .p-fv__slogan-sp__description {
    opacity: 1;
    transform: translateY(0);
  }
}
html.js [data-fadeup] {
  opacity: 0;
  transform: translateY(3rem);
  will-change: opacity, transform;
}

html.js [data-fadeup].is-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-fadeup],
  html.js [data-fadeup].is-active {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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