@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  color: inherit;
  font: inherit;
  vertical-align: top;
}

span {
  font-weight: inherit;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  background: #111;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 2.2vw, 1.8rem);
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #072699;
  outline-offset: 3px;
}

.l-sectionInner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-sectionInner {
    max-width: 1280px;
    padding-inline: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .l-sectionInner {
    padding-inline: 90px;
  }
}

.l-sectionInner--narrow {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-sectionInner--narrow {
    max-width: 1080px;
    padding-inline: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .l-sectionInner--narrow {
    padding-inline: 90px;
  }
}

.c-button {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: clamp(15px, 2.5vw, 20px) clamp(30px, 5vw, 40px);
  border: 1px solid transparent;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-family: "Orbitron", sans-serif;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.4s;
}
@media (any-hover: hover) {
  .c-button:hover {
    border-color: #fff;
    background: #222;
    color: #fff;
  }
  .c-button:hover::before {
    border-color: #fff;
  }
}
.c-button::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  height: 90%;
  transform: translate(-50%, -50%);
  border: 2px solid #222;
  content: "";
  pointer-events: none;
  transition: all 0.4s;
}
.c-button i {
  padding-left: 10px;
}
.c-button--bgNone {
  border: 1px solid #fff;
  background: none;
  color: #fff;
}
.c-button--bgNone::before {
  display: none;
}
@media (any-hover: hover) {
  .c-button--bgNone:hover {
    background: #fff;
    color: #222;
  }
}

.p-cta {
  padding: clamp(30px, 6vw, 60px) 30px;
  background: linear-gradient(60deg, #072699, #072699, #072699, #072699, #0C62EF, #072699, #072699, #0C62EF, #072699, #072699, #072699, #072699);
  background-size: 400% 100%;
  animation: gradient-move 20s linear infinite;
}
.p-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 3.8vw, 30px);
}
.p-cta__text {
  color: #fff;
}
.p-cta__button:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

.errorPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}
.errorPage__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.errorPage__title {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .errorPage__title {
    font-size: 32px;
  }
}
.errorPage__message {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .errorPage__message {
    font-size: 18px;
  }
}
.errorPage__link {
  color: blue;
  font-size: 16px;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .errorPage__link:hover {
    opacity: 0.7;
  }
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: clamp(20px, 3.8vw, 30px);
}

.c-formItem {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(8px, 1.6vw, 13px);
}

.c-formItem__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-formItem__Label {
  font-weight: 700;
}

.c-formItem__LabelRequired {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 1px;
  background: #072699;
  color: #FFF;
  font-size: 1.2rem;
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: clamp(7px, 1.2vw, 10px) clamp(10px, 2.2vw, 18px);
  border: none;
  border: 1px solid #999;
  border-radius: 3px;
  background: #fff;
}
.wpcf7-text:hover, .wpcf7-text:focus,
.wpcf7-textarea:hover,
.wpcf7-textarea:focus {
  border-color: #072699;
  outline: none;
}
.wpcf7-text.is-error,
.wpcf7-textarea.is-error {
  border-color: red;
  background-color: pink;
}

.wpcf7-textarea {
  height: clamp(200px, 30vw, 240px);
}

.c-formButton {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-formButton {
    margin-top: 10px;
  }
}

.wpcf7-submit {
  display: block;
  margin-inline: auto;
  padding: 25px 50px;
  border: 2px solid #222;
  background-color: #fff;
  font-weight: 600;
  cursor: pointer;
  opacity: 1;
  transition: all 0.4s ease;
}
@media (any-hover: hover) {
  .wpcf7-submit:hover {
    background-color: #222;
    color: #fff;
  }
}
.wpcf7-submit:focus-visible {
  outline: 3px solid #072699;
  outline-offset: 3px;
}

.c-pageTop {
  display: block;
  display: flex;
  z-index: 999;
  position: fixed;
  right: 25px;
  bottom: 25px;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-pageTop.is-show {
  opacity: 0.6;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .c-pageTop.is-show:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-pageTop {
    right: 40px;
    bottom: 60px;
  }
}

.c-postCard__list {
  display: flex;
  flex-direction: column;
}

.c-postCard a {
  display: block;
  padding: clamp(20px, 3.8vw, 30px);
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-postCard a:hover {
    background-color: #ccc;
    color: #333;
  }
}

.c-postCard__data {
  padding: clamp(5px, 1vw, 8px) clamp(10px, 2vw, 15px);
  border: 1px solid #222;
  background-color: #fff;
  color: #333;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  letter-spacing: 0.07em;
}

.c-postCard__text {
  margin-top: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.c-sectionTitle {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-sectionTitle::before {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 30%;
  height: 2px;
  transform: translateX(-50%);
  background: #fff;
  content: "";
}
@media screen and (min-width: 768px) {
  .c-sectionTitle::before {
    bottom: 0;
    height: 4px;
  }
}
.c-sectionTitle--underLineLong {
  background: linear-gradient(90deg, #000, #000, #072699, #0C62EF, #000, #000, #072699, #0C62EF, #000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
  animation: gradient-move 8s linear infinite;
}
.c-sectionTitle--underLineLong::before {
  width: 100%;
  background: #072699;
}
.c-sectionTitle.p-explore__title {
  background: linear-gradient(90deg, #000, #000, #072699, #072699, #000, #000, #072699, #072699, #000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
  animation: gradient-move 8s linear infinite;
}
.c-sectionTitle.p-explore__title::before {
  width: 100%;
  background: #072699;
}
.c-sectionTitle.p-topNews__title {
  margin-inline: auto;
}
.c-sectionTitle.p-company__title {
  margin-inline: auto;
  color: #ccc;
  text-align: center;
}

.c-sectionTitle__jp {
  font-weight: 700;
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.2em;
}
.c-sectionTitle__jp span {
  padding-right: 10px;
  font-size: 80%;
}

.c-sectionTitle__en {
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 10rem);
  font-family: "Orbitron", sans-serif;
  text-transform: capitalize;
}
.c-sectionTitle__en span {
  text-transform: uppercase;
}
.c-sectionTitle__en--explore {
  font-size: clamp(2.4rem, 9vw, 5rem);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.c-slider {
  overflow: hidden;
}
.c-slider__wrap {
  display: flex;
  animation: marquee 6s linear infinite;
}
@media screen and (min-width: 768px) {
  .c-slider__wrap {
    animation: marquee 10s linear infinite;
  }
}
@media screen and (min-width: 1024px) {
  .c-slider__wrap {
    animation: marquee 13s linear infinite;
  }
}
@media screen and (min-width: 1300px) {
  .c-slider__wrap {
    animation: marquee 16s linear infinite;
  }
}
.c-slider__item {
  flex: 0 0 auto;
  aspect-ratio: 16/9;
  width: 180px;
  height: auto;
  margin-right: 24px;
  border: 3px solid #fff;
}
@media screen and (min-width: 768px) {
  .c-slider__item {
    width: 250px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .c-slider__item {
    width: 330px;
    margin-right: 45px;
  }
}
.c-slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-drawerButton {
  position: relative;
  width: 45px;
  height: 45px;
}
@media screen and (min-width: 768px) {
  .c-drawerButton {
    display: none;
  }
}
.c-drawerButton.is-checked .c-drawerButton__bar:nth-of-type(1) {
  top: 7px;
  left: calc(50% - 20px);
  transform: rotate(25deg);
}
.c-drawerButton.is-checked .c-drawerButton__bar:nth-of-type(2) {
  top: 7px;
  left: calc(50% - 20px);
  transform: rotate(-25deg);
}
.c-drawerButton.is-checked .c-drawerButton__text::before {
  content: "CLOSE";
}
.c-drawerButton__bar {
  position: absolute;
  left: 50%;
  width: 45px;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s;
}
.c-drawerButton__bar:nth-of-type(1) {
  top: 5px;
}
.c-drawerButton__bar:nth-of-type(2) {
  top: 15px;
}
.c-drawerButton__text {
  position: relative;
}
.c-drawerButton__text::before {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  content: "MENU";
  color: #fff;
  font-size: 1.2rem;
}

.c-drawerNav {
  display: none;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.c-drawerNav__list {
  z-index: 1000;
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: calc(100% - 85px);
  padding: 0px 15px;
  background: #000;
}
.c-drawerNav__item {
  display: block;
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.c-drawerNav__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-block: 25px;
  font-size: 2.4rem;
}
.c-drawerNav__item span {
  padding-left: 20px;
  color: #aaa;
  font-family: "Orbitron", sans-serif;
}

.c-globalNav {
  display: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-globalNav {
    display: block;
  }
}
.c-globalNav::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 5px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #072699 1%, #0C62EF 99%);
  content: "";
}
.c-globalNav__logo {
  display: block;
  width: clamp(120px, 17.2vw, 240px);
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-globalNav__logo:hover {
    opacity: 0.7;
  }
}
.c-globalNav__list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}
.c-globalNav__item {
  display: block;
  flex-shrink: 0;
  background-image: linear-gradient(90deg, #072699 1%, #0C62EF 99%);
  background-position: 0 100%;
  background-size: 0% 3px;
  background-repeat: no-repeat;
  text-align: center;
  transition: background-size 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .c-globalNav__item:hover {
    background-size: 100% 2px;
    color: #aaa;
  }
}
.c-globalNav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}
.c-globalNav__itemJp {
  color: #aaa;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}
.c-globalNav__itemEn {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-family: "Orbitron", sans-serif;
}

.p-about {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 25vw, 250px);
  color: #fff;
}
.p-about::before {
  z-index: -2;
  position: absolute;
  top: 30px;
  left: 0;
  width: 80%;
  height: 100%;
  background: transparent;
  background-color: #191919;
  content: "";
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.p-about::after {
  z-index: -2;
  position: absolute;
  top: 30px;
  left: 0;
  width: 30%;
  height: 100%;
  background: transparent;
  background-color: #151515;
  content: "";
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.p-about__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 20px;
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__contents {
    margin-top: -70px;
  }
}

.p-about__text {
  max-width: 100%;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 400px) {
  .p-about__text {
    word-break: keep-all;
  }
}
@media screen and (min-width: 768px) {
  .p-about__text {
    flex: 1.5;
    margin-right: -60px;
  }
}

.p-about__img {
  z-index: -1;
  aspect-ratio: 1.5/1;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    flex: 1;
    aspect-ratio: 1/1;
  }
}

.p-message {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 20vw, 200px);
  background-color: #fff;
}
.p-message::before {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 110%;
  height: 95%;
  background: transparent;
  background: url(../images/f-office.webp) no-repeat center center/cover;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  filter: blur(2px);
  -webkit-mask: linear-gradient(160deg, transparent 35%, black);
  z-index: 0;
          mask: linear-gradient(160deg, transparent 35%, black);
  pointer-events: none;
}
.p-message::after {
  position: absolute;
  top: -31px;
  right: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(50%) rotate(180deg);
  background: url(../images/logo-lightning.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-message::after {
    top: -52px;
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width: 768px) {
  .p-message__inner {
    max-width: 800px;
  }
}
@media screen and (min-width: 1024px) {
  .p-message__inner {
    padding: 0;
  }
}

.p-message__contents {
  z-index: 5;
  position: relative;
  margin-top: clamp(50px, 8vw, 80px);
}

.p-message__text {
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
  gap: 15px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  mix-blend-mode: difference;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    padding-inline: 40px;
    gap: 30px;
  }
}
.p-message__textName {
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: right;
}
.p-message__textName span {
  margin-left: 10px;
  font-size: 120%;
}

.p-about__slider {
  padding-block: 60px 10px;
  padding-block: clamp(60px, 15vw, 120px) clamp(10px, 2.5vw, 20px);
}

.p-company {
  padding-block: clamp(80px, 12vw, 120px);
}

.p-company__table {
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
}

.p-company__row {
  display: flex;
  border-bottom: 2px solid #fff;
}
.p-company__row:last-child {
  border-bottom: none;
}

.p-company__label {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 140px;
  padding: 18px 20px;
  background: #aaa;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-company__label {
    min-width: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .p-company__label {
    min-width: 200px;
  }
}

.p-company__text {
  flex: 2;
  padding: 18px 20px;
  background: #efefef;
  line-height: 1.8;
  word-break: break-word;
}
.p-company__text span {
  display: inline-block;
  width: 50px;
  margin-right: 5px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-company__text span {
    width: 70px;
    margin-right: 10px;
  }
}

.p-access {
  padding-block: 60px 80px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-block: 120px 150px;
  }
}

.p-access__contents {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: clamp(30px, 5vw, 50px);
  margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-access__contents {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-access__map {
    flex: 1.5;
  }
}
.p-access__map iframe {
  aspect-ratio: 1.5/1;
  width: 100%;
  height: 100%;
  border: none;
}

.p-access__img {
  margin-top: -7px;
}
@media screen and (min-width: 768px) {
  .p-access__img {
    flex: 1;
    margin-top: 0;
  }
}
.p-access__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access__text {
  margin-top: clamp(30px, 5vw, 50px);
  word-break: keep-all;
}

.p-contact {
  padding-block: clamp(60px, 12vw, 120px);
  background-color: #eee;
}

.p-contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 6vw, 50px);
}

.p-contact__text {
  max-width: 450px;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    max-width: 600px;
  }
}

.p-contact__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: clamp(7px, 1.2vw, 10px);
  background-color: #222;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-contact__button {
    pointer-events: none;
  }
}
.p-contact__buttonNumber {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: 0.1em;
}
.p-contact__buttonNumber i {
  padding-right: 10px;
  font-size: 60%;
}
.p-contact__buttonDate {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.p-cotact__form {
  max-width: 600px;
  margin-top: clamp(50px, 9vw, 75px);
  margin-inline: auto;
}

.p-contact__policy {
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
}
.p-contact__policy a {
  color: #0000ff;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-underline-offset: auto;
}

.p-contact__thanks {
  padding-block: clamp(60px, 12vw, 120px);
  background-color: #eee;
}
.p-contact__thanksInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.p-contact__thanks h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}
.p-contact__thanksText {
  padding-bottom: 30px;
  padding-bottom: clamp(30px, 6vw, 50px);
}

.p-contact__thanksText {
  text-align: center;
}
.p-contact__thanksText p {
  display: block;
}
.p-contact__thanksText p:nth-child(3) {
  margin-top: 30px;
}

.p-explore {
  padding-block: clamp(60px, 12vw, 120px) clamp(120px, 18vw, 180px);
}

.p-explore__titleWrap {
  position: relative;
  padding: clamp(20px, 4vw, 30px) clamp(40px, 8vw, 60px) clamp(20px, 4vw, 30px) 0px;
}
.p-explore__titleWrap::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100vw;
  height: 100%;
  transform: translateY(-50%);
  background-color: #fff;
  content: "";
}

.p-explore__title {
  background: #333;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
}
@media screen and (min-width: 768px) {
  .p-explore__title .c-sectionTitle__en {
    font-size: 7rem;
    font-size: clamp(7rem, 7.5vw, 10rem);
  }
}

.p-explore__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "services" "about" "recruit";
  margin-top: 150px;
  gap: 140px;
}
@media screen and (min-width: 768px) {
  .p-explore__list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "services about" "recruit recruit";
    margin-top: 200px;
    gap: clamp(140px, 15vw, 150px) clamp(60px, 8vw, 80px);
  }
}

.p-explore__item {
  position: relative;
  width: 100%;
  color: #fff;
}
.p-explore__item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
}
.p-explore__item:nth-child(1) {
  grid-area: services;
  background: url(../images/o-stock.webp) no-repeat center center/cover;
}
.p-explore__item:nth-child(2) {
  grid-area: about;
  background: url(../images/o-office1.webp) no-repeat center center/cover;
}
.p-explore__item:nth-child(3) {
  grid-area: recruit;
  background: url(../images/o-desk.webp) no-repeat bottom center/cover;
}
@media screen and (min-width: 768px) {
  .p-explore__item:nth-child(3) .p-explore__link {
    flex-direction: row;
  }
}

.p-explore__link {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px 20px;
  padding: clamp(40px, 7.5vw, 60px) clamp(20px, 3.5vw, 30px) clamp(20px, 3.5vw, 30px);
  gap: clamp(20px, 3.5vw, 30px);
}

.p-explore__tile {
  display: flex;
  z-index: 1;
  position: absolute;
  top: -65px;
  left: 50%;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.p-explore__tileEn {
  font-weight: 700;
  font-size: 4rem;
  font-size: clamp(4rem, 7.5vw, 6rem);
  font-family: "Orbitron", sans-serif;
  text-transform: capitalize;
}

.p-explore__tileJp {
  margin-top: -15px;
  letter-spacing: 0.1em;
}

.p-explore__text {
  z-index: 1;
  letter-spacing: 0.07em;
}

.p-explore__button {
  z-index: 1;
  flex-shrink: 0;
}

.p-footer__inner {
  margin-top: clamp(50px, 12vw, 100px);
}

.p-footer__contentsWrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: clamp(10px, 3.5vw, 30px);
  color: #fff;
}

.p-footer__logo {
  width: 100%;
  max-width: 100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 150px;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__company {
  font-weight: 700;
}

.p-footer__info {
  margin-top: clamp(20px, 3.5vw, 30px);
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 400px) {
  .p-footer__info {
    letter-spacing: 0.07em;
  }
}
.p-footer__info p {
  font-style: normal;
}

.p-footer__copyright {
  position: relative;
  padding-block: 20px 15px;
  padding-block: clamp(20px, 3.5vw, 30px) clamp(15px, 2.5vw, 20px);
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}
.p-footer__copyright span {
  text-transform: uppercase;
}
.p-footer__copyright::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 10px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #072699 1%, #0C62EF 99%);
  content: "";
}

.shutter {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  animation: shutterOpen 1.4s ease forwards;
}

@keyframes shutterOpen {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
.p-fv {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100vh;
  margin-top: 60px;
  overflow: hidden;
  background-color: #000;
}

.p-fv__bg {
  z-index: 1;
  width: 100%;
  height: 70%;
  background: url(../images/fv_sp.webp) no-repeat center center/contain;
  animation: zoomIn 8s ease-out forwards;
}
@media screen and (min-width: 600px) {
  .p-fv__bg {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__bg {
    background: url(../images/fv_pc.webp) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1024px) {
  .p-fv__bg {
    max-width: 1200px;
    margin-top: 50px;
  }
}

.p-fv__message {
  display: flex;
  z-index: 2;
  position: absolute;
  top: 40px;
  left: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .p-fv__message {
    top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__message {
    padding-top: clamp(40px, 5vw, 60px);
  }
}
.p-fv__messageMain {
  transform: translateY(30px);
  font-weight: 600;
  font-size: 2.8rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1.3s;
  opacity: 0;
}
.p-fv__messageSub {
  margin-top: 1rem;
  transform: translateY(30px);
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1.8s;
  opacity: 0;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  @keyframes zoomIn {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.2);
    }
  }
}
.p-newsArchive {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px);
  color: #fff;
}
.p-newsArchive::before {
  z-index: -2;
  position: absolute;
  top: 30px;
  right: 0;
  width: 70%;
  height: 100%;
  background: transparent;
  background-color: #191919;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.p-newsArchive::after {
  z-index: -1;
  position: absolute;
  top: 30px;
  right: 0;
  width: 20%;
  height: 100%;
  background: transparent;
  background-color: #222;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.p-newsArchive__pagination {
  margin-top: clamp(40px, 6vw, 60px);
}
.p-newsArchive__pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 40px);
}
.p-newsArchive__pagination .page-numbers {
  padding: 10px 20px;
  border-radius: 6px;
  background: #f0f0f0;
  color: #333;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.p-newsArchive__pagination .page-numbers:hover {
  background: #0C62EF;
  color: #fff;
}
.p-newsArchive__pagination .page-numbers.current {
  background: #0C62EF;
  color: #fff;
}

.p-newsPost {
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 20vw, 200px);
  background-color: #eee;
}

.p-newsPost__date {
  padding: clamp(3px, 0.6vw, 5px) clamp(10px, 2vw, 15px);
  background-color: #072699;
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  letter-spacing: 0.07em;
}

.p-newsPost__title {
  margin-top: clamp(13px, 2.5vw, 20px);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: 0.07em;
}
.p-newsPost__title::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: clamp(20px, 3.8vw, 30px);
  background: linear-gradient(90deg, #072699 1%, #0C62EF 99%);
  content: "";
}

.p-newsPost__img {
  aspect-ratio: 16/9;
  width: 80%;
  max-width: 500px;
  height: auto;
  margin-top: clamp(20px, 3.8vw, 30px);
  margin-inline: auto;
}
.p-newsPost__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-newsPost__text {
  display: block;
  margin-top: clamp(40px, 7.5vw, 60px);
  line-height: 1.8;
  letter-spacing: 0.07em;
}

.p-newsPost__button {
  margin-top: clamp(60px, 11vw, 90px);
  margin-inline: auto;
  border: 2px solid #000;
}

.p-policy {
  padding-block: clamp(60px, 12vw, 120px) clamp(80px, 15vw, 150px);
  background-color: #eee;
}

.p-policy__contents {
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, 6vw, 60px);
  gap: clamp(40px, 7vw, 60px);
}

.p-policy__title {
  font-weight: 500;
  font-size: 120%;
  letter-spacing: 0.07em;
}

.p-policy__detail {
  margin-top: clamp(5px, 1vw, 8px);
  letter-spacing: 0.07em;
}

.p-recruit {
  padding-block: clamp(10px, 1.5vw, 15px) clamp(80px, 15vw, 150px);
  background-color: #eee;
}

.p-recruit__title {
  position: relative;
  width: 100vw;
  margin-inline: auto;
  padding-block: 20vh;
}
.p-recruit__title::before, .p-recruit__title::after {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(100%, -50%);
  content: "";
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
}
.p-recruit__title::after {
  background-image: url("../images/f-office.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.p-recruit__title::before {
  top: calc(50% + 15px);
  left: calc(50% - 10px);
  background-color: #072699;
  transition: transform 0.2s ease 0.35s;
}
@media screen and (min-width: 768px) {
  .p-recruit__title::before {
    left: calc(50% - 12px);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__title::before {
    left: calc(50% - 15px);
  }
}
.p-recruit__title.is-active::before, .p-recruit__title.is-active::after {
  transform: translate(-50%, -50%);
}

.p-recruit__en {
  background: linear-gradient(90deg, #072699, #072699, #0C62EF, #072699, #072699, #0C62EF, #072699);
  background-size: 200% 100%;
  color: #072699;
  -webkit-background-clip: text;
  z-index: 1;
  position: relative;
  position: relative;
  -webkit-text-fill-color: transparent;
          background-clip: text;
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 13rem);
  font-family: "Orbitron", sans-serif;
  animation: gradient-move 4s ease-in-out infinite;
}
.p-recruit__en span {
  text-transform: capitalize;
}
.p-recruit__en::before {
  z-index: -1;
  position: absolute;
  top: -130px;
  left: -150px;
  aspect-ratio: 1/1;
  width: clamp(280px, 30vw, 400px);
  height: auto;
  background: url("../images/logo-bg.webp") no-repeat center center/contain;
  content: "";
  opacity: 0.3;
}

.p-recruit__jp {
  z-index: 1;
  position: relative;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 2px #aaa;
}

.p-recruit__text {
  display: flex;
  flex-direction: column;
  margin-top: clamp(70px, 13vw, 110px);
  gap: clamp(10px, 1.8vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 600px) {
  .p-recruit__text {
    word-break: keep-all;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-recruit__contents {
  z-index: 0;
  position: relative;
  margin-top: clamp(100px, 15vw, 150px);
}
.p-recruit__contents::before {
  z-index: -1;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110vw;
  max-width: 1500px;
  height: 100%;
  background: transparent;
  background-color: #fff;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}
.p-recruit__contents::after {
  z-index: -1;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 70vw;
  max-width: 1000px;
  height: 100%;
  background: transparent;
  background-color: #eee;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}

.p-recruit__list {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14.5vw, 200px);
}

.p-recruit__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit__item:nth-child(2) .p-recruit__itemContents {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__item:nth-child(2) .p-recruit__itemTitle {
    right: 60px;
    left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__item:nth-child(2) .p-recruit__itemTitle {
    right: 0;
  }
}

.p-recruit__itemTitle {
  z-index: 1;
  position: absolute;
  top: -58px;
  left: 0;
  background: linear-gradient(to right, #072699 50%, #fff 50%) 100%;
  background-size: 200% 100%;
  color: #ccc;
  color: transparent;
  font-weight: 700;
  font-size: 6rem;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  transition: background-position 0.3s;
  -webkit-background-clip: text;
          background-clip: text;
}
@media screen and (min-width: 768px) {
  .p-recruit__itemTitle {
    top: -80px;
    left: 30px;
    font-size: clamp(6.6rem, 8vw, 11rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__itemTitle {
    top: -40px;
    left: 0;
  }
}
@media screen and (min-width: 1300px) {
  .p-recruit__itemTitle {
    top: -60px;
  }
}
.p-recruit__itemTitle.is-active {
  background-position: 0 100%;
}

.p-recruit__itemContents {
  display: flex;
  z-index: 1;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit__itemContents {
    flex-direction: row;
  }
}

.p-recruit__itemText {
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .p-recruit__itemText {
    flex: 1;
  }
}

.p-recruit__itemImg {
  position: relative;
  aspect-ratio: 438/292;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__itemImg {
    flex: 1;
    max-width: none;
  }
}
.p-recruit__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p-recruit__itemImg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, transparent);
  content: "";
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .p-recruit__itemImg::after {
    opacity: 0;
  }
}

.p-recruit__sectionPrallax {
  height: clamp(200px, 30vw, 300px);
  background-image: url("../images/f-bulb.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  filter: brightness(0.4);
}
@media screen and (min-width: 768px) {
  .p-recruit__sectionPrallax {
    background-attachment: fixed;
  }
}

.p-job {
  padding-block: clamp(80px, 15vw, 150px);
  background-color: #ccc;
}

.p-job__contents {
  margin-top: clamp(60px, 9vw, 90px);
}

.p-job__list {
  width: 100%;
  background: #fff;
}

.p-job__row {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.p-job__row:last-child {
  border-bottom: none;
}

.p-job__title {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: clamp(120px, 30vw, 260px);
  padding: clamp(20px, 3vw, 24px) clamp(16px, 2.5vw, 20px);
  background: #222;
  color: #fff;
  font-weight: 500;
  word-break: keep-all;
}

.p-job__text {
  flex: 1;
  padding: clamp(20px, 3vw, 24px) clamp(16px, 2.5vw, 20px);
  background: #fff;
  color: #222;
  line-height: 1.8;
}
.p-job__text i {
  margin: 0 8px;
  color: #888;
  font-size: 1.2rem;
  vertical-align: middle;
}

.p-job__lastMessage {
  margin-top: clamp(50px, 7vw, 70px);
  line-height: 1.8;
  letter-spacing: 0.07em;
  text-align: center;
}

.p-service {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 25vw, 250px);
  background-color: #fff;
}
.p-service::before {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 80%;
  background: transparent;
  background-color: #f3f3f3;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.p-service::after {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 80%;
  background: transparent;
  background-color: #eaeaea;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

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

.p-service__text {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, 20px);
  letter-spacing: 0.07em;
}

.p-service__listTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(50px, 8vw, 80px);
  margin-inline: auto;
  font-weight: 500;
  font-size: 120%;
}

.p-service__facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(60px, 9vw, 90px);
  gap: clamp(30px, 7vw, 70px);
}
@media screen and (min-width: 768px) {
  .p-service__facilities {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p-service__facility {
  position: relative;
  aspect-ratio: 30/25;
  width: 100%;
  height: 100%;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.3);
}
.p-service__facility span {
  z-index: 1;
  position: absolute;
  top: -10px;
  left: -7px;
  padding: 5px 15px;
  background-color: #222;
  color: #fff;
  font-size: 1.4rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.p-service__facility:nth-child(1) {
  background: url(../images/service-1.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(2) {
  background: url(../images/service-2.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(3) {
  background: url(../images/service-3.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(4) {
  background: url(../images/service-4.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(5) {
  background: url(../images/service-5.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(6) {
  background: url(../images/service-6.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(7) {
  background: url(../images/service-7.webp) no-repeat center center/cover;
}
.p-service__facility:nth-child(8) {
  background: url(../images/service-8.webp) no-repeat center center/cover;
}
.p-service__facility img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-service__facility::after {
  z-index: 0; /* 背景として背面に配置 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  content: "";
  opacity: 0.2;
}

.p-topAbout {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 25vw, 250px);
  background-color: #fff;
}
.p-topAbout::after {
  position: absolute;
  right: 50%;
  bottom: -31px;
  width: 60px;
  height: 60px;
  transform: translateX(50%);
  background: url(../images/logo-lightning.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-topAbout::after {
    bottom: -52px;
    width: 100px;
    height: 100px;
  }
}

.p-topAbout__message {
  margin-top: 30px;
  margin-top: clamp(30px, 5.5vw, 50px);
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 400px) {
  .p-topAbout__message {
    font-size: clamp(2.2rem, 3.3vw, 3rem);
  }
}
@media screen and (min-width: 768px) {
  .p-topAbout__message {
    z-index: 1;
    position: relative;
  }
}

.p-topAbout__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: clamp(30px, 6vw, 50px);
}
@media screen and (min-width: 768px) {
  .p-topAbout__contents {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .p-topAbout__contents {
    margin-top: -50px;
  }
}

.p-topAbout__text {
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .p-topAbout__text {
    flex: 1.5;
  }
}

.p-topAbout__img {
  z-index: 0;
  position: relative;
  aspect-ratio: 1.5/1;
  width: 100%;
  height: 100%;
  box-shadow: 4px 5px 3px #333;
}
@media screen and (min-width: 768px) {
  .p-topAbout__img {
    flex: 1;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1024px) {
  .p-topAbout__img {
    max-width: 350px;
  }
}
.p-topAbout__img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  opacity: 0.2;
}
.p-topAbout__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-topNews {
  position: relative;
  margin-block: clamp(80px, 15vw, 150px) clamp(120px, 25vw, 250px);
  color: #fff;
}
.p-topNews::before {
  z-index: -2;
  position: absolute;
  top: 30px;
  right: 0;
  width: 120vw;
  height: 230%;
  background: transparent;
  background-color: #191919;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}
.p-topNews::after {
  z-index: -2;
  position: absolute;
  top: 30px;
  right: 0;
  width: 50vw;
  height: 230%;
  background: transparent;
  background-color: #141414;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}

.p-topNews__list {
  max-width: 900px;
  margin-top: clamp(80px, 15vw, 120px);
  margin-inline: auto;
}

.p-topNews__button {
  margin-top: 50px;
  margin-top: clamp(50px, 10vw, 80px);
  margin-inline: auto;
}

.p-works {
  position: relative;
  padding-block: clamp(80px, 15vw, 150px) clamp(120px, 25vw, 250px);
}
.p-works::before {
  z-index: -2;
  position: absolute;
  top: 30px;
  right: 0;
  width: 120vw;
  height: 110%;
  background: transparent;
  background-color: #191919;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}
.p-works::after {
  z-index: -2;
  position: absolute;
  top: 30px;
  right: 0;
  width: 50vw;
  height: 110%;
  background: transparent;
  background-color: #141414;
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  pointer-events: none;
}

.p-works__inner {
  color: #fff;
}

.p-works__text {
  margin-top: clamp(50px, 7.5vw, 75px);
  letter-spacing: 0.07em;
}

.p-works__temporaryMessage {
  margin-top: clamp(75px, 10vw, 100px);
  font-size: 120%;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: underline;
}

.p-works__year {
  margin-top: clamp(60px, 9vw, 90px);
}
.p-works__year ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(15px, 3.8vw, 30px);
}

.p-works__yearItem {
  position: relative;
  padding: clamp(7px, 1.2vw, 10px) clamp(20px, 3.5vw, 30px);
  border: 1px solid #fff;
  background-color: #222;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-family: "Orbitron", sans-serif;
}
.p-works__yearItem::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  height: 90%;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  content: "";
  pointer-events: none;
}
.p-works__yearItem.is-active {
  background-color: #fff;
  color: #000;
}
.p-works__yearItem.is-active::after {
  border-color: #111;
}

.p-works__yearItem.is-active {
  pointer-events: none;
}

.p-works__gallery {
  margin-top: clamp(40px, 6vw, 60px);
}

.p-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3.5vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-works__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .p-works__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-works__item {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 20px;
  gap: 5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #222;
  font-weight: 500;
  font-size: 85%;
  letter-spacing: 0.07em;
}
.p-works__item::before {
  z-index: 0;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
  content: "";
}
.p-works__item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 97%;
  height: 97%;
  transform: translate(-50%, -50%);
  border: 1px solid #000;
  content: "";
  pointer-events: none;
}
.p-works__item time, .p-works__item address, .p-works__item span, .p-works__item p {
  z-index: 1;
  position: relative;
}
.p-works__item address {
  font-style: normal;
}
.p-works__item span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px clamp(15px, 2.5vw, 20px);
  background: #222;
  color: #fff;
}
.p-works__item p {
  z-index: 1;
  position: relative;
  margin-top: clamp(10px, 2vw, 15px);
  font-weight: 500;
}
.p-works__item--empty {
  color: #fff;
  font-size: 120%;
}

.p-works__loading {
  padding: 40px 0;
  color: #666;
  font-size: 16px;
  text-align: center;
}

.p-works__loading::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #333;
  border-radius: 50%;
  content: "";
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
}

.l-headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
  padding-block: 10px 5px;
}
@media screen and (min-width: 768px) {
  .l-headerInner {
    max-width: 1260px;
    padding-inline: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .l-headerInner {
    padding-inline: 80px;
  }
}

.c-headerView {
  position: relative;
  height: 250px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .c-headerView {
    height: 375px;
    margin-top: 75px;
  }
}
.c-headerView--service {
  background: url(../images/f-goods.webp) no-repeat center center/cover;
}
.c-headerView--about {
  background: url(../images/f-electrical-line_1.webp) no-repeat center center/cover;
}
.c-headerView--recruit {
  background: url(../images/f-team.webp) no-repeat center center/cover;
}
.c-headerView--news {
  background: url(../images/f-house.webp) no-repeat center center/cover;
}
.c-headerView--contact {
  background: url(../images/f-bulb.webp) no-repeat center center/cover;
}
.c-headerView::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  pointer-events: none;
}
.c-headerView__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.c-pageTitle {
  z-index: 1;
  color: #fff;
}
.c-pageTitle__jp {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-pageTitle__jp {
    font-size: 2.4rem;
  }
}
.c-pageTitle__jp--policy {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .c-pageTitle__jp--policy {
    font-size: 3.6rem;
  }
}
.c-pageTitle__en {
  font-weight: 700;
  font-size: 5rem;
  font-family: "Orbitron", sans-serif;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .c-pageTitle__en {
    font-size: 10rem;
  }
}
.c-pageTitle__en span {
  text-transform: uppercase;
}

@media screen and (min-width: 400px) {
  .u-hiddenXs {
    display: none;
  }
}

.u-hiddenSm {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hiddenSm {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .u-hiddenMd {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .u-hiddenLg {
    display: none;
  }
}

.u-hasDecoration {
  position: relative;
}