#_ #header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 20px;
  width: 100%;
  padding-inline: 20px;
}
@media screen and (max-width: 919px) {
  #_ #header {
    top: 15px;
  }
}
#_ #header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  background-color: var(--color-white);
  box-shadow: 3px 2px 8px rgba(63, 63, 63, 0.1);
  border-radius: calc(infinity * 1px);
  margin-inline: auto;
  border: 1px solid var(--color-black);
  padding: 10px 10px 10px 30px;
}
@media screen and (max-width: 919px) {
  #_ #header .header-inner {
    padding: 10px 10px 10px 15px;
  }
}
#_ #header .header-logo {
  flex-shrink: 0;
  max-width: 70px;
}
@media screen and (max-width: 919px) {
  #_ #header .header-logo {
    max-width: 50px;
  }
}
#_ #header .header-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 919px) {
  #_ #header .header-wrap {
    column-gap: 10px;
  }
}
#_ #header .header-nav {
  margin-right: 25px;
}
@media screen and (max-width: 919px) {
  #_ #header .header-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
    margin-right: 0;
    overscroll-behavior-y: none;
    overflow-y: auto;
  }
}
@media screen and (max-width: 919px) {
  #_ #header .header-nav::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    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: 919px) {
  #_ #header .header-nav-inner {
    min-height: calc(100% + 1px);
    width: 100%;
    padding: 84px 20px 50px;
  }
}
#_ #header .header-nav-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media screen and (max-width: 919px) {
  #_ #header .header-nav-list {
    display: block;
    background-color: var(--color-white);
    border-radius: 20px;
    border: 1px solid var(--color-black);
    padding: 15px 25px;
  }
}
@media screen and (max-width: 919px) {
  #_ #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.3rem;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.5;
}
@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: 2rem;
    padding-block: 10px;
  }
}
#_ #header .header-button {
  color: var(--color-white);
  background-color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-primary);
  padding: 4px 14px;
  transition-property: color, background-color;
  transition-duration: 0.3s;
}
@media screen and (max-width: 919px) {
  #_ #header .header-button {
    font-size: 1rem;
  }
}
#_ #header .header-button:hover {
  color: var(--color-primary);
  background-color: transparent;
}
#_ #header .header-ham {
  display: none;
}
@media screen and (max-width: 919px) {
  #_ #header .header-ham {
    position: relative;
    display: block;
    width: 34px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    border-radius: 50%;
  }
}
#_ #header .header-ham-line {
  position: absolute;
  left: 50%;
  display: block;
  width: 47.0588235294%;
  height: 1px;
  border-radius: 2px;
  background-color: var(--color-white);
  transition-property: top, bottom, transform;
  transition-duration: 0.3s;
}
#_ #header .header-ham-line:first-of-type {
  top: calc(50% - 5px);
  transform: translate(-50%, -50%);
}
#_ #header .header-ham-line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
#_ #header .header-ham-line:last-of-type {
  bottom: calc(50% - 5px);
  transform: translate(-50%, 50%);
}
#_ #header.is-menu-open .header-ham-line:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 0;
}
#_ #header.is-menu-open .header-ham-line:nth-of-type(2) {
  transform: translate(-50%, -50%) scaleX(0);
}
#_ #header.is-menu-open .header-ham-line:last-of-type {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

#_ #fv {
  position: relative;
  z-index: 1;
  height: 95svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 800px;
  padding: 50px 20px;
  overflow: hidden;
}
#_ #fv::before {
  display: none;
}
#_ #fv .fv-back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomLoop 10s ease-in-out infinite;
}
#_ #fv .fv-label {
  position: relative;
  z-index: 1;
}
#_ #fv .fv-label::before, #_ #fv .fv-label::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
}
#_ #fv .fv-label::before {
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--color-white);
}
#_ #fv .fv-label::after {
  top: 5px;
  left: 5px;
  z-index: -2;
  background-image: var(--color-grad);
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-label::after {
    top: 3px;
    left: 3px;
  }
}
#_ #fv .fv-label span {
  display: block;
  color: transparent;
  background-image: var(--color-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-inline: 10px;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-label span {
    font-size: 2.4rem;
    padding-inline: 5px;
  }
}
#_ #fv .fv-name {
  max-width: 875px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-name {
    margin-top: 30px;
  }
}
#_ #fv .fv-text {
  position: relative;
  z-index: 1;
  max-width: 834px;
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-text {
    margin-top: 30px;
  }
}

@keyframes zoomLoop {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.floatmenu {
  position: fixed;
  z-index: 10;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--color-white);
  padding-inline: 10px;
  border: 1px solid var(--color-black);
  border-right: none;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .floatmenu {
    top: auto;
    bottom: 10px;
    right: 50%;
    display: flex;
    transform: translate(50%, 0);
    border-radius: calc(infinity * 1px);
    padding: 7px 1px;
  }
}

@media screen and (max-width: 767px) {
  .floatmenu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 16px;
  }
}
.floatmenu-item:not(:last-of-type) {
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .floatmenu-item:not(:last-of-type) {
    border-bottom: none;
    border-right: 1px solid var(--color-primary);
  }
}

.floatmenu-link {
  display: block;
  padding-block: 10px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .floatmenu-link {
    display: grid;
    justify-items: center;
    align-items: center;
    width: 56px;
    padding: 0;
  }
}
.floatmenu-link:hover {
  opacity: 0.7;
}
.floatmenu-link img {
  display: block;
  width: auto;
  height: 30px;
  margin-inline: auto;
}
.floatmenu-link span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .floatmenu-link span {
    font-size: 1rem;
    font-weight: 700;
  }
}

#_ #news-event {
  position: relative;
  padding-bottom: 0;
}
#_ #news-event .heading span {
  font-family: var(--font-jp);
}
#_ #news-event .news-icon {
  position: absolute;
  z-index: -1;
  top: 106px;
  right: calc(50% + 410px);
  width: 140px;
}
@media screen and (max-width: 1023px) {
  #_ #news-event .news-icon {
    top: 20px;
    right: calc(50% + 200px);
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  #_ #news-event .news-icon {
    top: 3px;
    right: calc(50% + 110px);
    width: 60px;
  }
}
#_ #news-event .news-accent,
#_ #news-event .news-accent2 {
  position: absolute;
  z-index: -2;
}
#_ #news-event .news-accent {
  width: 433px;
  top: 6px;
  right: calc(50% + 290px);
}
@media screen and (max-width: 767px) {
  #_ #news-event .news-accent {
    top: 90px;
    right: auto;
    left: -12px;
    width: 130px;
  }
}
#_ #news-event .news-accent2 {
  width: 280px;
  bottom: -18px;
  left: calc(50% + 320px);
}
@media screen and (max-width: 767px) {
  #_ #news-event .news-accent2 {
    bottom: 50px;
    width: 127px;
    left: auto;
    right: -20px;
  }
}

#_ #report {
  position: relative;
}
#_ #report .report-icon {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: calc(50% + 340px);
  width: 120px;
}
@media screen and (max-width: 1023px) {
  #_ #report .report-icon {
    left: calc(50% + 250px);
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  #_ #report .report-icon {
    top: 20px;
    left: calc(50% + 105px);
    width: 60px;
  }
}

#_ #how-to-use {
  position: relative;
  z-index: 1;
}
#_ #how-to-use .how-to-use-back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#_ #how-to-use .how-to-use-back::before, #_ #how-to-use .how-to-use-back::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #d1eefb;
}
#_ #how-to-use .how-to-use-back::before {
  background-color: #d1eefb;
  mask-image: url("../img/how-to-use-mask-top.png"), url("../img/how-to-use-mask-bottom.png");
  -webkit-mask-image: url("../img/how-to-use-mask-top.png"), url("../img/how-to-use-mask-bottom.png");
  -webkit-mask-size: 100% 80px;
          mask-size: 100% 80px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top, bottom;
          mask-position: top, bottom;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-back::before {
    mask-image: url("../img/how-to-use-mask-top-sp.png"), url("../img/how-to-use-mask-bottom-sp.png");
    -webkit-mask-image: url("../img/how-to-use-mask-top-sp.png"), url("../img/how-to-use-mask-bottom-sp.png");
    -webkit-mask-size: 100% 30px;
            mask-size: 100% 30px;
    -webkit-mask-position: top left, bottom left;
            mask-position: top left, bottom left;
  }
}
#_ #how-to-use .how-to-use-back::after {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 100%;
  background-color: #d1eefb;
  height: calc(100% - 159px);
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-back::after {
    height: calc(100% - 59px);
  }
}
#_ #how-to-use .how-to-use-wrap-inner {
  background-color: var(--color-white);
  border-radius: 50px;
  max-width: 986px;
  width: 100%;
  padding: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-wrap-inner {
    border-radius: 20px;
    padding: 40px 15px;
  }
}
#_ #how-to-use .how-to-use-accent,
#_ #how-to-use .how-to-use-accent2,
#_ #how-to-use .how-to-use-accent3,
#_ #how-to-use .how-to-use-accent4 {
  position: absolute;
  z-index: -1;
}
#_ #how-to-use .how-to-use-accent {
  top: -60px;
  right: calc(50% + 320px);
  width: 300px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-accent {
    top: -30px;
    right: calc(50% + 78px);
    width: 140px;
  }
}
#_ #how-to-use .how-to-use-accent2 {
  top: 285px;
  left: calc(50% + 456px);
  width: 354px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-accent2 {
    top: 50px;
    left: calc(50% + 86px);
    width: 140px;
  }
}
#_ #how-to-use .how-to-use-accent3 {
  bottom: 490px;
  right: calc(50% + 390px);
  width: 289px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-accent3 {
    bottom: 45px;
    right: calc(50% + 100px);
    width: 134px;
  }
}
#_ #how-to-use .how-to-use-accent4 {
  bottom: 20px;
  left: calc(50% + 405px);
  width: 300px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-accent4 {
    bottom: -30px;
    left: calc(50% + 77px);
    width: 140px;
  }
}
#_ #how-to-use .how-to-use-intro {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-intro {
    font-size: 1.5rem;
  }
}
#_ #how-to-use .how-to-use-intro span {
  display: inline-block;
}
#_ #how-to-use .how-to-use-text-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 60px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-text-wrap {
    margin-top: 30px;
    margin-inline: -5px;
  }
}
#_ #how-to-use .how-to-use-text-left {
  display: grid;
  justify-items: flex-start;
  row-gap: 10px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-text-left {
    justify-items: center;
  }
}
#_ #how-to-use .how-to-use-text-left span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px 10px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-text-left span {
    font-size: 1.5rem;
    padding-inline: 5px;
  }
}
#_ #how-to-use .how-to-use-text-left span::before, #_ #how-to-use .how-to-use-text-left span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
}
#_ #how-to-use .how-to-use-text-left span::before {
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--color-white);
}
#_ #how-to-use .how-to-use-text-left span::after {
  z-index: -2;
  top: 5px;
  left: 5px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-text-left span::after {
    top: 3px;
    left: 3px;
  }
}
#_ #how-to-use .how-to-use-text-right {
  width: fit-content;
  font-weight: 500;
}
#_ #how-to-use .how-to-use-slide-wrap {
  display: grid;
  grid-template-columns: 65.3579676674% 1fr;
  column-gap: 30px;
  align-items: flex-start;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-slide-wrap {
    grid-template-columns: 1fr;
    row-gap: 5px;
    margin-top: 30px;
  }
}
#_ #how-to-use .how-to-use-slide {
  width: 100%;
}
#_ #how-to-use .how-to-use-slide .splide__track {
  border: 1px solid var(--color-black);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-slide .splide__track {
    border-radius: 3px;
  }
}
#_ #how-to-use .how-to-use-arrows {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-arrows {
    width: calc(100% + 30px);
  }
}
#_ #how-to-use .how-to-use-arrows .splide__arrow {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-arrows .splide__arrow {
    width: 30px;
    border-color: var(--color-primary);
  }
}
#_ #how-to-use .how-to-use-arrows .splide__arrow::after {
  display: block;
  content: "";
  width: 8px;
  aspect-ratio: 6/9;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-arrows .splide__arrow::after {
    width: 6px;
  }
}
#_ #how-to-use .how-to-use-arrows .splide__arrow--prev::after {
  transform: scale(-1, 1);
}
#_ #how-to-use .how-to-use-thumbs .splide__list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-thumbs .splide__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}
#_ #how-to-use .how-to-use-thumbs .splide__slide {
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid var(--color-black);
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-thumbs .splide__slide {
    border-radius: 3px;
  }
}
#_ #how-to-use .how-to-use-thumbs .splide__slide.is-active {
  opacity: 1;
}
#_ #how-to-use .how-to-use-data {
  display: grid;
  row-gap: 10px;
  border: 1px solid var(--color-black);
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-data {
    border-radius: 3px;
    padding: 15px;
    margin-top: 20px;
  }
}
#_ #how-to-use .how-to-use-data-wrap {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-data-wrap {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
}
#_ #how-to-use .how-to-use-data-wrap:not(:last-of-type) {
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 10px;
}
#_ #how-to-use .how-to-use-route {
  width: 100%;
  max-width: 700px;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-route {
    margin-top: 50px;
  }
}
#_ #how-to-use .how-to-use-route-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-route-heading {
    column-gap: 10px;
    font-size: 1.6rem;
  }
}
#_ #how-to-use .how-to-use-route-heading::before, #_ #how-to-use .how-to-use-route-heading::after {
  flex-shrink: 0;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-route-heading::before, #_ #how-to-use .how-to-use-route-heading::after {
    width: 20px;
  }
}
#_ #how-to-use .how-to-use-route-img-wrap {
  border: 1px solid var(--color-black);
  border-radius: 5px;
  padding: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #how-to-use .how-to-use-route-img-wrap {
    border-radius: 3px;
    padding: 13px;
    margin-top: 20px;
  }
}
#_ #how-to-use .how-to-use-route-img-wrap a {
  display: block;
  transition: opacity 0.3s;
}
#_ #how-to-use .how-to-use-route-img-wrap a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  #_ #startups .button {
    width: fit-content;
    padding-block: 10px;
  }
}
#_ #startups .button br {
  display: none;
}
@media screen and (max-width: 767px) {
  #_ #startups .button br {
    display: block;
  }
}
#_ #startups .startups-intro {
  text-align: center;
  line-height: 1.75;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-intro {
    font-size: 1.4rem;
  }
}
#_ #startups .startups-intro span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-intro br.-pc {
    display: none;
  }
}
#_ #startups .startups-slide {
  padding-inline: 25px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide {
    padding-inline: 0;
    margin-inline: -20px;
    margin-top: 30px;
  }
}
#_ #startups .startups-slide .splide__track {
  max-width: 930px;
  width: 100%;
  padding-bottom: 5px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide .splide__track {
    padding-bottom: 3px;
  }
}
#_ #startups .startups-slide .splide__slide {
  display: flex;
  flex-direction: column;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide .splide__slide {
    padding-right: 3px;
  }
}
#_ #startups .startups-slide-item {
  flex-grow: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-item {
    padding: 15px;
  }
}
#_ #startups .startups-slide-item::before, #_ #startups .startups-slide-item::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 5px;
}
#_ #startups .startups-slide-item::before {
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-white);
}
#_ #startups .startups-slide-item::after {
  z-index: -2;
  top: 5px;
  left: 5px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-item::after {
    top: 3px;
    left: 3px;
  }
}
#_ #startups .startups-slide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
}
#_ #startups .startups-slide-logoWrap {
  display: grid;
  row-gap: 10px;
}
#_ #startups .startups-slide-logo.-l img {
  max-height: 80px;
}
#_ #startups .startups-slide-logo img {
  max-width: 200px;
  width: 100%;
  max-height: 40px;
  object-fit: contain;
  object-position: left;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-logo img {
    max-width: 150px;
    max-height: 30px;
  }
}
#_ #startups .startups-slide-name {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-name {
    font-size: 1.4rem;
  }
}
#_ #startups .startups-slide-desc {
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-desc {
    max-width: 80px;
  }
}
#_ #startups .startups-slide-desc img {
  border-radius: 5px;
}
#_ #startups .startups-slide-desc figcaption {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-inline: -5px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-desc figcaption {
    font-size: 1rem;
  }
}
#_ #startups .startups-slide-body {
  border-left: 3px solid var(--color-primary);
  padding-left: 13px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-body {
    margin-top: 24px;
  }
}
#_ #startups .startups-slide-body dt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-body dt {
    font-size: 1.4rem;
  }
}
#_ #startups .startups-slide-body dd {
  margin-top: 5px;
}
#_ #startups .startups-slide-control {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-control {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
    width: fit-content;
    padding-inline: 50px;
    margin: 37px auto 0;
  }
}
#_ #startups .startups-slide-arrows {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1060px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-arrows {
    top: 50%;
  }
}
#_ #startups .startups-slide-arrows .splide__arrow {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-arrows .splide__arrow {
    flex-shrink: 0;
    width: 30px;
    border-color: var(--color-primary);
  }
}
#_ #startups .startups-slide-arrows .splide__arrow::after {
  display: block;
  content: "";
  width: 11px;
  aspect-ratio: 6/9;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #_ #startups .startups-slide-arrows .splide__arrow::after {
    width: 6px;
  }
}
#_ #startups .startups-slide-arrows .splide__arrow--prev::after {
  transform: scale(-1, 1);
}
#_ #startups .startups-slide-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
#_ #startups .startups-slide-pagination * {
  line-height: 0 !important;
}
#_ #startups .startups-slide-pagination .splide__pagination__page {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.2;
  transition-property: background-color, opacity;
  transition-duration: 0.3s;
}
#_ #startups .startups-slide-pagination .splide__pagination__page.is-active {
  opacity: 1;
  background-color: var(--color-primary);
}
#_ #startups .startups-slide-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  column-gap: 0.2em;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: var(--color-primary);
  padding-inline: 10px;
  margin: 10px auto 0;
}

#_ #contact {
  padding-inline: 20px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  #_ #contact {
    padding-inline: 0;
    padding-bottom: 70px;
  }
}
#_ #contact .contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
  background-image: var(--color-grad);
  max-width: 1280px;
  border-radius: 10px;
  padding: 100px 90px;
  margin-inline: auto;
}
@media screen and (max-width: 1161px) {
  #_ #contact .contact-inner {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner {
    border-radius: 0;
    padding: 70px 30px;
  }
}
#_ #contact .contact-inner .heading {
  width: fit-content;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner .heading {
    width: 100%;
  }
}
#_ #contact .contact-inner .heading::after {
  content: none;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner .heading::after {
    content: "";
  }
}
#_ #contact .contact-inner .button {
  margin-left: 0;
  margin-top: 30px;
}
@media screen and (max-width: 1161px) {
  #_ #contact .contact-inner .button {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner .button {
    padding-inline: 22px;
  }
}
#_ #contact .contact-content {
  max-width: 450px;
  margin-top: 0;
}
@media screen and (max-width: 1161px) {
  #_ #contact .contact-content {
    margin-top: 30px;
  }
}
#_ #contact .contact-content p {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 1161px) {
  #_ #contact .contact-content p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-content p {
    font-size: 1.6rem;
  }
}
#_ #contact .contact-content p br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-content p br.sp {
    display: block;
  }
}

#_ #footer {
  position: relative;
  z-index: 1;
  padding-block: 140px 10px;
}
@media screen and (max-width: 767px) {
  #_ #footer {
    padding-block: 70px 80px;
  }
}
#_ #footer .footer-back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#_ #footer .footer-back::before, #_ #footer .footer-back::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: var(--color-grad);
}
#_ #footer .footer-back::before {
  mask-image: url("../img/footer-wave.png");
  -webkit-mask-image: url("../img/footer-wave.png");
  -webkit-mask-size: 1440px 133px;
          mask-size: 1440px 133px;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: top;
          mask-position: top;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-back::before {
    mask-image: url("../img/footer-wave-sp.png");
    -webkit-mask-image: url("../img/footer-wave-sp.png");
    -webkit-mask-size: 1440px 70px;
            mask-size: 1440px 70px;
    -webkit-mask-position: top left;
            mask-position: top left;
  }
}
#_ #footer .footer-back::after {
  clip-path: polygon(0 132px, 100% 132px, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-back::after {
    clip-path: polygon(0 69px, 100% 69px, 100% 100%, 0% 100%);
  }
}
#_ #footer .footer-item-unit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 998px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-item-unit {
    width: 71.6417910448%;
    gap: 30px;
    margin-inline: auto;
  }
}
#_ #footer .footer-item {
  flex-grow: 1;
}
#_ #footer .footer-item:first-of-type {
  width: 70.9418837675%;
}
#_ #footer .footer-item-title {
  display: block;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
#_ #footer .footer-item-content {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 30px;
  margin-top: 20px;
}
#_ #footer .footer-item-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-item-content ul {
    gap: 10px;
  }
}
#_ #footer .footer-item-content img {
  width: auto;
  height: 54px;
}
#_ #footer .footer-textlink {
  display: block;
  color: var(--color-white);
  width: fit-content;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 60px auto 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-textlink {
    font-size: 1.3rem;
    margin-top: 30px;
  }
}
#_ #footer .footer-textlink a {
  text-decoration: underline;
}
#_ #footer .footer-textlink a:hover {
  opacity: 0.7;
}
#_ #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: 100px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-copy {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}
