#_ #header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 20px;
  width: 100%;
  padding-inline: 20px;
  filter: drop-shadow(4px 4px 10px rgba(9, 11, 14, 0.1));
}
@media screen and (max-width: 767px) {
  #_ #header {
    display: block;
    top: 10px;
    filter: none;
  }
}
#_ #header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  background-color: var(--color-white);
  filter: drop-shadow(4px 4px 10px rgba(9, 11, 14, 0.1));
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  margin-inline: auto;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  #_ #header .header-inner {
    filter: none;
    background-color: transparent;
    clip-path: none;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    filter: drop-shadow(4px 4px 10px rgba(9, 11, 14, 0.1));
    padding: 12px 15px;
  }
}
#_ #header .header-wrap::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
}
#_ #header .header-logo {
  flex-shrink: 0;
  max-width: 130px;
}
@media screen and (max-width: 767px) {
  #_ #header .header-logo {
    max-width: 100px;
  }
}
#_ #header .header-ham {
  display: none;
}
@media screen and (max-width: 767px) {
  #_ #header .header-ham {
    position: relative;
    display: block;
    width: 35px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  }
}
#_ #header .header-ham-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: var(--color-white);
  transition: transform 0.3s 0.3s, border-radius 0.3s 0.3s, height 0.3s 0s, top 0.3s 0.3s, bottom 0.3s 0.3s;
}
#_ #header .header-ham-dot:first-of-type {
  top: 9px;
}
#_ #header .header-ham-dot:nth-of-type(2) {
  top: 16px;
}
#_ #header .header-ham-dot:last-of-type {
  bottom: 9px;
}
#_ #header.is-menu-open .header-ham-dot {
  transition: transform 0.3s 0s, border-radius 0.3s 0.3s, height 0.3s 0.3s, top 0.3s 0s, bottom 0.3s 0s;
}
#_ #header.is-menu-open .header-ham-dot:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 0;
  height: 20px;
}
#_ #header.is-menu-open .header-ham-dot:last-of-type {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
  border-radius: 0;
  height: 20px;
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 79px 20px 50px;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: var(--color-grad);
    opacity: 0.8;
  }
}
#_ #header.is-menu-open .header-nav {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-inner {
    width: 100%;
    background-color: var(--color-white);
    clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
    padding: 5px 20px;
  }
}
#_ #header .header-nav-list {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item:not(:last-of-type) a {
    border-bottom: 1px solid var(--color-primary);
  }
}
#_ #header .header-nav-list-item a {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) and (hover: hover) {
  #_ #header .header-nav-list-item a {
    position: relative;
    transition: color 0.3s;
  }
  #_ #header .header-nav-list-item a:hover {
    color: var(--color-primary);
  }
  #_ #header .header-nav-list-item a:hover::after {
    transform: scaleX(1);
  }
  #_ #header .header-nav-list-item a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item a {
    color: var(--color-primary);
    font-size: 2.4rem;
    padding-block: 15px 16px;
  }
}

#_ #fv {
  position: relative;
  z-index: 1;
  height: 95svh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  max-height: 800px;
  padding: 50px 20px;
}
#_ #fv::before {
  display: none;
}
#_ #fv .fv-accent {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 31.25%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-accent {
    width: 26.6666666667%;
  }
}
#_ #fv .fv-accent.-second {
  left: auto;
  right: 0;
  transform: scale(-1, -1);
}
#_ #fv .fv-name {
  max-width: 675px;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-name {
    max-width: 300px;
  }
}
#_ #fv .fv-slide {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#_ #fv .fv-slide * {
  height: 100%;
}
#_ #fv .fv-slide .splide__slide:first-of-type img {
  object-position: 11%;
}
#_ #fv .fv-slide .splide__slide:nth-of-type(3) img {
  object-position: 20%;
}
#_ #fv .fv-slide img {
  object-fit: cover;
}

@media screen and (min-width: 1024px) {
  #_ #news .news-slide .news-list {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  #_ #news .news-list-item {
    width: calc((100% - 60px) / 4);
  }
}
@media (hover: hover) {
  #_ #news .news-list-link .news-list-thumb {
    overflow: hidden;
  }
  #_ #news .news-list-link .news-list-thumb img {
    transition: transform 0.3s;
  }
  #_ #news .news-list-link:hover .news-list-thumb img {
    transform: scale(1.08);
  }
}
#_ #news .news-list-thumb img {
  aspect-ratio: 250/131;
  object-fit: cover;
}
#_ #news .news-list-time {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
#_ #news .news-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #_ #news .news-list-title {
    font-size: 1.4rem;
  }
}
#_ #news .news-list-more {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: 8px;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 5px;
  margin-top: 15px;
}
#_ #news .news-list-more::after {
  display: block;
  content: "";
  width: 6px;
  aspect-ratio: 6/9;
  background-image: url("../img/arrow-more.svg");
}
#_ #news .news-control {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  #_ #news .news-control {
    display: none;
  }
}
#_ #news .news-control .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  line-height: 1;
}
#_ #news .news-control .splide__arrow--prev {
  transform: rotate(180deg);
}
#_ #news .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
#_ #news .news-pagination * {
  line-height: 0 !important;
}
#_ #news .news-pagination .splide__pagination__page {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0.2;
  transition-property: background-color, opacity;
  transition-duration: 0.3s;
}
#_ #news .news-pagination .splide__pagination__page.is-active {
  opacity: 1;
  background-color: var(--color-primary);
}

#_ #about .about-approach {
  max-width: 700px;
  background-color: var(--color-white);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  padding: 20px;
  margin: 40px auto 0;
}

.about-approach-heading {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
}
.about-approach-heading span {
  display: inline-block;
}

.about-approach-box-unit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .about-approach-box-unit {
    grid-template-columns: 1fr;
  }
}

.about-approach-box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-items: center;
  counter-increment: number;
  background-color: var(--color-primary);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  padding: 15px;
}
.about-approach-box::before {
  align-self: stretch;
  flex-shrink: 0;
  content: counter(number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  background-color: var(--color-white);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}
.about-approach-box p {
  color: var(--color-white);
  font-size: 1.4rem;
  text-align: left;
}

#_ #innovatin-hub {
  z-index: 1;
}
#_ #innovatin-hub .innovatin-hub_back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#_ #innovatin-hub .innovatin-hub_back::before, #_ #innovatin-hub .innovatin-hub_back::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 526px;
  background-image: url("../img/innovation_back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  mix-blend-mode: soft-light;
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .innovatin-hub_back::before, #_ #innovatin-hub .innovatin-hub_back::after {
    height: 400px;
  }
}
#_ #innovatin-hub .innovatin-hub_back::before {
  top: 0;
}
#_ #innovatin-hub .innovatin-hub_back::after {
  bottom: 0;
  transform: scale(1, -1);
}
#_ #innovatin-hub .button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .button {
    margin-top: 20px;
  }
}
#_ #innovatin-hub .innovatin-hub-card-unit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  #_ #innovatin-hub .innovatin-hub-card-unit {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .innovatin-hub-card-unit {
    grid-template-columns: 1fr;
  }
}
#_ #innovatin-hub .innovatin-hub-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .innovatin-hub-card {
    padding: 20px;
  }
}
#_ #innovatin-hub .innovatin-hub-card-img.-disable {
  position: relative;
}
#_ #innovatin-hub .innovatin-hub-card-img.-disable::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.4;
}
#_ #innovatin-hub .innovatin-hub-card-img.-disable::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  content: "COMING SOON...";
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .innovatin-hub-card-img.-disable::after {
    font-size: 2.4rem;
  }
}
#_ #innovatin-hub .innovatin-hub-card-img img {
  aspect-ratio: 430/266;
  object-fit: cover;
}
#_ #innovatin-hub .innovatin-hub-card-heading {
  flex-grow: 1;
  display: flex;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #_ #innovatin-hub .innovatin-hub-card-heading {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
#_ #innovatin-hub .innovatin-hub-card-access,
#_ #innovatin-hub .innovatin-hub-card-text {
  margin-top: 10px;
}

#_ #contact {
  position: relative;
  z-index: 1;
}
#_ #contact .contact-img-wrap {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 77.1929824561%;
}
@media screen and (max-width: 1023px) {
  #_ #contact .contact-img-wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-img-wrap {
    position: static;
    transform: none;
    width: 100%;
    margin-top: -30px;
  }
}
#_ #contact .contact-img {
  width: 98px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-img {
    width: 60px;
  }
}
#_ #contact .contact-content {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}
#_ #contact .contact-content-title {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-content-title {
    font-size: 1.8rem;
  }
}
#_ #contact .contact-content-mail {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-content-mail {
    font-size: 1.8rem;
  }
}
#_ #contact .contact-content-time {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-content-time {
    font-size: 1.4rem;
  }
}

#_ #footer {
  background-image: url("../img/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 20% center;
  padding-block: 180px 15px;
}
@media screen and (max-width: 767px) {
  #_ #footer {
    background-image: url("../img/footer_sp.jpg");
    background-position-x: 58.5%;
    padding-top: 100px;
  }
}
#_ #footer::after {
  content: none;
}
#_ #footer .footer-logo {
  display: block;
  max-width: 380px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-logo {
    max-width: 200px;
  }
}
#_ #footer .footer-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 130px;
  align-items: center;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-logo-wrap {
    margin-top: 60px;
  }
}
#_ #footer .footer-logo-wrap img:first-of-type {
  max-width: 211px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-logo-wrap img:first-of-type {
    max-width: 151px;
  }
}
#_ #footer .footer-logo-wrap img:last-of-type {
  max-width: 259px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-logo-wrap img:last-of-type {
    max-width: 173px;
  }
}
#_ #footer .footer-copy {
  display: block;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-copy {
    font-size: 1.2rem;
    margin-top: 60px;
  }
}
