/*
Theme Name: original Child
Version: 1.0
Template: original
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

.header__logo {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scale(2);
          transform: scale(2);
}
@media screen and (max-width: 550px) {
  .header__logo {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@media screen and (min-width: 550px) {
  .header__nav {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 1s;
    transition: -webkit-transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 1s;
    transition: transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 1s;
    transition: transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 1s, -webkit-transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 1s;
  }
}
.header.loaded .header__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#front .hero {
  position: relative;
  height: max(56.25vw, 700px);
}
@media screen and (max-width: 550px) {
  #front .hero {
    height: 100vh;
  }
}
#front .hero__bg {
  position: relative;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .hero__bg__mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  z-index: 10;
}
#front .hero__bg__mask img {
  height: 100%;
}
#front .hero__bg__left {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 550px) {
  #front .hero__bg__left img {
    -o-object-position: 30%;
       object-position: 30%;
  }
}
#front .hero__bg__right {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 550px) {
  #front .hero__bg__right {
    left: 0;
  }
}
#front .hero__bg__left, #front .hero__bg__right {
  height: 100%;
  overflow: hidden;
}
#front .hero__bg__left img, #front .hero__bg__right img {
  height: 100%;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: transform;
}
#front .hero__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: max(1.5rem, 15px);
  position: absolute;
  bottom: 20%;
  left: 6%;
  z-index: 10;
}
#front .hero__title span {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-block;
  padding: max(1rem, 10px) max(0.5rem, 5px);
  background: #fff;
  color: #02004E;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: max(3.8rem, 34px);
  font-weight: 600;
  z-index: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .hero__title span:nth-of-type(1) {
  -webkit-transform: translateY(-10%) scaleY(0);
          transform: translateY(-10%) scaleY(0);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#front .hero__title span:nth-of-type(1)::before {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
#front .hero__title span:nth-of-type(2) {
  -webkit-transform: translateY(-30%) scaleY(0);
          transform: translateY(-30%) scaleY(0);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
#front .hero__title span:nth-of-type(2)::before {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
#front .hero__title span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#02004E), to(#01C4DD));
  background: linear-gradient(to bottom, #02004E, #01C4DD);
  z-index: 10;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .hero__news {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  padding: max(2rem, 15px) 5%;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(2, 37, 129, 0.6)), to(rgba(1, 221, 204, 0.6)));
  background: linear-gradient(to right, rgba(2, 37, 129, 0.6) 50%, rgba(1, 221, 204, 0.6));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 10;
}
#front .hero__news__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  line-height: 1;
  padding-right: max(2.5rem, 20px);
  margin-right: max(2.5rem, 20px);
  border-right: 1px solid #fff;
}
#front .hero__news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  #front .hero__news__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#front .hero__news__meta time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
#front .hero__news__meta p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  line-height: 1.5;
  overflow: hidden;
}
#front .hero__news__meta p span {
  -webkit-animation: marquee 15s linear infinite;
          animation: marquee 15s linear infinite;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  #front .hero__news__meta p span {
    -webkit-animation: none;
            animation: none;
    padding-left: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
#front .hero.loaded .hero__bg {
  opacity: 1;
}
#front .hero.loaded .hero__bg__left img, #front .hero.loaded .hero__bg__right img {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
#front .hero.loaded .hero__title span:nth-of-type(1) {
  -webkit-transform: translateY(0) scaleY(1);
          transform: translateY(0) scaleY(1);
}
#front .hero.loaded .hero__title span:nth-of-type(2) {
  -webkit-transform: translateY(-20%) scaleY(1);
          transform: translateY(-20%) scaleY(1);
}
#front .hero.loaded .hero__title span::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
#front .news {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f8f8), to(#cee6ff));
  background: linear-gradient(to bottom, #f4f8f8, #cee6ff);
  overflow: hidden;
  z-index: 0;
}
#front .news__mask {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}
#front .news__mask > picture > img {
  width: 100%;
  height: 100%;
}
#front .news__mask__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#front .news__mask__shapes__triangle {
  position: absolute;
}
#front .news__mask__shapes__triangle.triangle1 {
  width: max(90rem, 800px);
  bottom: 0%;
  right: 0%;
  -webkit-transform: translate(25%, 0%) rotate(307deg) scaleY(-1);
          transform: translate(25%, 0%) rotate(307deg) scaleY(-1);
}
#front .news__mask__shapes__triangle.triangle2 {
  width: max(80rem, 500px);
  bottom: 0%;
  right: 0%;
  -webkit-transform: translate(40%, -100%) rotate(225deg);
          transform: translate(40%, -100%) rotate(225deg);
}
#front .news__mask__shapes__triangle.triangle3 {
  width: max(30rem, 300px);
  top: 0%;
  right: 0%;
  -webkit-transform: translateY(200%) rotate(113deg) scaleY(-1);
          transform: translateY(200%) rotate(113deg) scaleY(-1);
}
#front .news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(15rem, 30px);
  padding-top: max(17rem, 100px);
  padding-bottom: max(7rem, 50px);
}
@media screen and (max-width: 1300px) {
  #front .news__wrapper {
    gap: max(10rem, 35px) max(5rem, 30px);
  }
}
@media screen and (max-width: 1000px) {
  #front .news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#front .news__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#front .news__header__radio {
  display: grid;
  gap: max(2rem, 20px);
  margin-top: max(7rem, 50px);
}
@media screen and (max-width: 1000px) {
  #front .news__header__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 550px) {
  #front .news__header__radio {
    gap: 10px;
  }
}
#front .news__header__radio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
}
@media screen and (max-width: 550px) {
  #front .news__header__radio__item {
    gap: 5px;
  }
}
#front .news__header__radio__item input {
  position: relative;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
}
#front .news__header__radio__item input:checked::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #02004E;
}
#front .news__header__radio__item label {
  line-height: 1;
}
#front .news__header .btnBox {
  margin-top: max(10rem, 90px);
}
#front .news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#front .news__content__list {
  display: grid;
  gap: max(2rem, 20px);
}
@media screen and (max-width: 768px) {
  #front .news__content__list {
    row-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
#front .news__content__list__item .news__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 15px);
}
@media screen and (max-width: 768px) {
  #front .news__content__list__item .news__post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#front .news__content__list__item .news__post__thumb {
  width: max(25rem, 200px);
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 42px #f0f9ff;
          box-shadow: 0 0 42px #f0f9ff;
}
@media screen and (max-width: 768px) {
  #front .news__content__list__item .news__post__thumb {
    width: 100%;
  }
}
#front .news__content__list__item .news__post__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .news__content__list__item .news__post__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  #front .news__content__list__item .news__post__detail {
    width: 100%;
  }
}
#front .news__content__list__item .news__post__detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(1rem, 5px) max(2rem, 15px);
}
@media screen and (max-width: 768px) {
  #front .news__content__list__item .news__post__detail__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#front .news__content__list__item .news__post__detail__meta time {
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  color: rgba(2, 0, 78, 0.4);
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
#front .news__content__list__item .news__post__detail__meta__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(1rem, 10px);
}
@media screen and (max-width: 550px) {
  #front .news__content__list__item .news__post__detail__meta__cats {
    gap: 5px;
  }
}
#front .news__content__list__item .news__post__detail__meta__cats__item {
  padding: max(0.5rem, 5px) max(1rem, 10px);
  background: #02004E;
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  #front .news__content__list__item .news__post__detail__meta__cats__item {
    padding: 5px 7px;
    font-size: 10px;
  }
}
#front .news__content__list__item .news__post__detail__title {
  margin-top: max(1rem, 10px);
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#front .news__content__list__item .news__post__detail__arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: max(3.6rem, 30px);
  height: auto;
  aspect-ratio: 1/1;
  outline: max(0.1rem, 1px) solid #02004E;
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#02004E), to(#01C4DD));
  background: linear-gradient(to left, #02004E, #01C4DD);
  -webkit-transition: outline-color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: outline-color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #front .news__content__list__item .news__post__detail__arrow {
    display: none;
  }
}
#front .news__content__list__item .news__post__detail__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .news__content__list__item .news__post__detail__arrow img {
  position: relative;
  width: 40%;
  z-index: 2;
}
#front .news__content__list__item .news__post:hover .news__post__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#front .news__content__list__item .news__post:hover .news__post__detail__arrow {
  outline: max(0.1rem, 1px) solid transparent;
}
#front .news__content__list__item .news__post:hover .news__post__detail__arrow::before {
  opacity: 0;
}
#front .news__content__list__item .news__post:hover .news__post__detail__arrow img {
  -webkit-animation: moveRight 0.6s ease-out forwards;
          animation: moveRight 0.6s ease-out forwards;
}
#front .news__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(5rem, 30px);
}
#front .news__slider span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: max(17rem, 80px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  -webkit-animation: slide 50s linear infinite;
          animation: slide 50s linear infinite;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - max(5rem, 30px)));
            transform: translateX(calc(-100% - max(5rem, 30px)));
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - max(5rem, 30px)));
            transform: translateX(calc(-100% - max(5rem, 30px)));
  }
}
@media screen and (max-width: 1000px) {
  #front .news .btnBox.pc {
    display: none;
  }
}
#front .news .btnBox.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  #front .news .btnBox.sp {
    display: block;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) {
  #front .news .btnBox .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
#front .service {
  position: relative;
  background: #fff;
  height: max(100vh, 750px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
#front .service__wrapper {
  overflow: hidden;
}
#front .service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: max(10vh, 40px);
}
#front .service__content {
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
#front .service__content::-webkit-scrollbar {
  display: none;
}
#front .service__content__mouseBtn {
  position: absolute;
  display: grid;
  place-items: center;
  width: max(15rem, 150px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  pointer-events: none;
}
#front .service__content__mouseBtn__text {
  color: #fff;
}
#front .service__content__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow-x: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: max(6.5rem, 20px);
     -moz-column-gap: max(6.5rem, 20px);
          column-gap: max(6.5rem, 20px);
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  #front .service__content__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 550px) {
  #front .service__content__list {
    padding-left: 5%;
    padding-right: 5%;
  }
}
#front .service__content__list__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(49.5rem, 300px);
}
#front .service__content__list__item figure .imageBox {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 33/23;
  overflow: hidden;
  z-index: 0;
}
#front .service__content__list__item figure .imageBox__inner {
  position: relative;
  z-index: 10;
}
#front .service__content__list__item figure .imageBox__inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front .service__content__list__item figure .imageBox__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#front .service__content__list__item figure .imageBox__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #605dc9, #01c4dd);
  opacity: 1;
  mix-blend-mode: hue;
}
#front .service__content__list__item figure .imageBox__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front .service__content__list__item figure .titleBox {
  margin-top: max(2rem, 15px);
}
#front .service__content__list__item figure .titleBox h3 {
  position: relative;
  margin-bottom: max(1.5rem, 10px);
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front .service__content__list__item figure .titleBox h3::before {
  content: "";
  display: inline-block;
  width: auto;
  height: 0.9em;
  aspect-ratio: 1/1;
  background: linear-gradient(-45deg, #02004E, #01C4DD);
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: 0.5em;
}
#front .service__content__list__link {
  display: none;
}
@media screen and (max-width: 768px) {
  #front .service__content__list__link {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: center;
        align-self: center;
    width: max(26rem, 150px);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
  }
  #front .service__content__list__link__item {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  #front .service__content__list__link__item__text {
    color: #fff;
  }
}
#front .service__progress {
  position: relative;
  height: max(0.3rem, 3px);
  background: rgba(2, 0, 78, 0.05);
}
#front .service__progress.pc {
  width: max(48rem, 300px);
}
@media screen and (max-width: 768px) {
  #front .service__progress.pc {
    display: none;
  }
}
#front .service__progress.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #front .service__progress.sp {
    width: 80%;
    margin: 50px auto 0 auto;
    display: block;
  }
}
#front .service__progress__bar {
  position: absolute;
  inset: 0;
  background: #02004E;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 10;
}
#front .company {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#front .company__mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#c5ffff), to(#cfe1f3));
  background: linear-gradient(to bottom, #c5ffff, #cfe1f3);
  z-index: 0;
}
#front .company__mask > picture > img {
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
}
#front .company__mask__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: soft-light;
}
#front .company__mask__shapes__triangle {
  position: absolute;
}
#front .company__mask__shapes__triangle.triangle1 {
  width: max(90rem, 800px);
  bottom: 0%;
  left: 0%;
  -webkit-transform: translate(-35%, -150%) rotate(317deg) scaleY(-1);
          transform: translate(-35%, -150%) rotate(317deg) scaleY(-1);
}
#front .company__mask__shapes__triangle.triangle2 {
  width: max(67rem, 450px);
  top: 0%;
  left: 0%;
  -webkit-transform: translate(-20%, 99%) rotate(233deg) scaleY(1.3);
          transform: translate(-20%, 99%) rotate(233deg) scaleY(1.3);
}
#front .company__mask__shapes__triangle.triangle3 {
  width: max(30rem, 300px);
  bottom: 0%;
  left: 0%;
  -webkit-transform: translateX(0%) rotate(133deg) scaleY(-1);
          transform: translateX(0%) rotate(133deg) scaleY(-1);
}
#front .company__mask__shapes__triangle.triangle4 {
  width: max(30rem, 300px);
  bottom: 0%;
  right: 0%;
  -webkit-transform: translate(40%, -400%) rotate(307deg) scaleY(-0.9);
          transform: translate(40%, -400%) rotate(307deg) scaleY(-0.9);
}
#front .company__mask__shapes__triangle.triangle5 {
  width: max(45rem, 400px);
  top: 0%;
  right: 0%;
  -webkit-transform: rotate(244deg) translate(-155%, -59%) scaleY(-1);
          transform: rotate(244deg) translate(-155%, -59%) scaleY(-1);
}
#front .company__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: max(100vh, 500px);
  z-index: 0;
}
#front .company__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
  background: linear-gradient(to bottom, #fff, transparent);
  z-index: -1;
}
#front .company__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: max(2rem, 15px);
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  overflow: hidden;
  background: linear-gradient(135deg, #02004E, #01C4DD);
}
#front .company__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: soft-light;
}
#front .company__content {
  margin-top: 50px;
}
#front .company__content__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  font-size: max(6.2rem, 40px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  z-index: 10;
}
#front .company__content__title span {
  position: relative;
  display: inline-block;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 0;
}
#front .company__content__title span:nth-of-type(1) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
#front .company__content__title span:nth-of-type(1)::before {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#front .company__content__title span:nth-of-type(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#front .company__content__title span:nth-of-type(2)::before {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#front .company__content__title span:nth-of-type(3) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#front .company__content__title span:nth-of-type(3)::before {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#front .company__content__title span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#02004E), to(#01C4DD));
  background: linear-gradient(to right, #02004E, #01C4DD);
  z-index: 10;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .company__content__title.active span {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#front .company__content__title.active span::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
#front .company__content__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(10rem, 30px);
  padding: 0 10vw;
}
@media screen and (max-width: 1300px) {
  #front .company__content__detail {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 1000px) {
  #front .company__content__detail {
    gap: max(5vh, 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #front .company__content__detail {
    padding: 0;
  }
}
#front .company__content__detail .imageBox {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  #front .company__content__detail .imageBox {
    width: 100%;
  }
}
#front .company__content__detail .imageBox__inner {
  width: max(46rem, 300px);
  height: max(46rem, 300px);
  aspect-ratio: 1/1;
  border-radius: max(0.5rem, 5px);
}
@media screen and (max-width: 1000px) {
  #front .company__content__detail .imageBox__inner {
    width: 100%;
    height: min(40vh, 300px);
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 768px) {
  #front .company__content__detail .imageBox__inner {
    height: min(30vh, 300px);
    aspect-ratio: unset;
  }
}
#front .company__content__detail .imageBox__inner:first-of-type {
  position: relative;
  z-index: 10;
}
#front .company__content__detail .imageBox__inner:not(:first-of-type) {
  position: absolute;
}
#front .company__content__detail .imageBox__inner img {
  width: 100%;
  height: 100%;
}
#front .company__content__detail .textBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#front .company__content__detail .textBox .section-title {
  margin-bottom: max(4rem, 20px);
}
#front .company__content__detail .textBox > p {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 3.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  #front .company__content__detail .textBox > p {
    line-height: 2.5;
  }
}
#front .company__content__detail.active .imageBox__inner:first-of-type {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#front .company__content__detail.active .imageBox__inner:first-of-type::before, #front .company__content__detail.active .imageBox__inner:first-of-type::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
#front .company__content__detail.active .textBox {
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}