@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --en: "Inter", sans-serif;
  --ff-alber: "Albert Sans", sans-serif;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #363b48;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main,
picture {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  width: 100vw;
  padding: 2.2rem 0;
  z-index: 100;
}
@media screen and (max-width: 450px) {
  .header {
    padding: 1rem 0;
  }
}
.header .inner {
  max-width: none;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
.header-logo {
  max-width: 92px;
}
@media screen and (max-width: 450px) {
  .header-logo {
    max-width: 70px;
  }
}
.header-right {
  max-width: 710px;
  width: 100%;
  padding: 14px 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease-in-out;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (min-width: 901px) {
  .header-right.change {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 900px) {
  .header-right {
    max-width: none;
    width: 220px;
    margin-right: 25px;
    padding: 0;
    background-color: transparent;
  }
}
@media screen and (max-width: 450px) {
  .header-right {
    width: 80px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 900px) {
  .sub-nav {
    display: none;
  }
}
.sub-nav__list {
  margin-left: 33px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}
.sub-nav__btn {
  max-width: 130px;
  width: 100%;
  text-align: center;
  line-height: 4rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  background: linear-gradient(270deg, rgb(71, 216, 255) 0%, rgb(0, 180, 230) 100%);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .sub-nav__btn {
    display: none;
  }
}

/* Hamburger menu */
.gnav {
  position: fixed;
  padding: 13vh 0;
  width: calc(100% - 40px);
  left: 50%;
  top: 50%;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.4s linear;
  pointer-events: none;
  background-color: white;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow-y: scroll;
  transform: translate(-50%, -50%) scale(1, 1);
  z-index: 101;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gnav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 834px) {
  .gnav {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 450px) {
  .gnav {
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
    padding: 4rem 0;
  }
}
.gnav-flex {
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s 0.7s linear;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
.gnav-flex:nth-of-type(1) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 1320px) {
  .gnav-flex:nth-of-type(1) {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.gnav-flex:nth-of-type(2) {
  margin-top: 15vh;
  padding-top: 3rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #eee;
}
@media screen and (max-width: 834px) {
  .gnav-flex:nth-of-type(2) {
    margin-top: 3rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .gnav-flex:nth-of-type(2) {
    padding-top: 2rem;
  }
}
.gnav-list {
  width: 710px;
  display: grid;
  grid-template-columns: 47% 53%;
  grid-template-rows: auto auto auto auto;
  grid-column-gap: 7.8%;
}
@media screen and (max-width: 1320px) {
  .gnav-list {
    grid-template-columns: 40% 52%;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .gnav-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gnav-item {
  padding-bottom: 8.5%;
}
@media screen and (max-width: 834px) {
  .gnav-item {
    padding-bottom: 3rem;
  }
}
.gnav-item:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}
.gnav-item:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}
.gnav-item:nth-of-type(3) {
  grid-column: 1;
  grid-row: 3;
}
.gnav-item:nth-of-type(4) {
  grid-column: 1;
  grid-row: 4;
}
.gnav-item:nth-of-type(5) {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 834px) {
  .gnav-item:nth-of-type(5) {
    grid-column: 1;
    grid-row: 5;
  }
}
.gnav-item:nth-of-type(6) {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 834px) {
  .gnav-item:nth-of-type(6) {
    grid-column: 1;
    grid-row: 6;
  }
}
.gnav-item:nth-of-type(7) {
  grid-column: 2;
  grid-row: 3;
}
@media screen and (max-width: 834px) {
  .gnav-item:nth-of-type(7) {
    grid-column: 1;
    grid-row: 7;
  }
}
.gnav-item:nth-of-type(8) {
  padding-bottom: 0;
  grid-column: 2;
  grid-row: 4;
}
@media screen and (max-width: 834px) {
  .gnav-item:nth-of-type(8) {
    grid-column: 1;
    grid-row: 8;
  }
}
.gnav-item span {
  display: block;
}
.gnav-item .f42 {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.gnav-item .f42::before {
  position: absolute;
  content: "";
  width: 0.59em;
  aspect-ratio: 25/8;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
}
.gnav-right {
  max-width: 390px;
  width: 38%;
}
@media screen and (max-width: 1320px) {
  .gnav-right {
    max-width: 464px;
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .gnav-right {
    width: 80%;
  }
}
.gnav-right__txt {
  width: fit-content;
  margin: 0 0 0 auto;
  line-height: 1.2;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 834px) {
  .gnav-right__txt.f21 {
    font-size: 2.4vw;
  }
}
.gnav-right__pic {
  margin-top: -3rem;
}
@media screen and (max-width: 834px) {
  .gnav-right__pic {
    margin-top: -4vw;
  }
}
.gnav-sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em 2.8em;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .gnav-sub__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.gnav-sub__item:not(:last-of-type) {
  position: relative;
}
.gnav-sub__item:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.1em;
  top: 1px;
  right: -1.4em;
  background-color: #ddd;
}
.gnav-logo {
  max-width: 246px;
}
.gnav.animating-in {
  transform: translate(-50%, -50%) scale(0, 0);
  opacity: 0;
  visibility: visible;
  pointer-events: auto;
}
.gnav.active {
  width: calc(100% - 40px);
  height: calc(100dvh - 40px);
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
  transform: translate(-50%, -50%) scale(1, 1);
}
@media screen and (max-width: 450px) {
  .gnav.active {
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
  }
}
.gnav.active .gnav-flex {
  opacity: 1;
  transform: translateY(0);
}
.gnav.animating-out {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}
.gnav.animating-out .gnav-flex {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 0s;
}

/* toggle button */
.toggle {
  position: relative;
  width: 80px;
  height: 40px;
  cursor: pointer;
  display: block;
  background: #fff;
  border: none;
  outline: none;
  text-align: center;
  z-index: 102;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s linear;
}
.toggle.active {
  background-color: #01184d;
}
.toggle.active .toggle__bar {
  background-color: #fff;
}
.toggle.active .toggle__bar:nth-child(1) {
  transform: scale(0);
}
.toggle.active .toggle__bar:nth-child(2) {
  -webkit-transform: translateY(4px) rotate(-30deg);
  transform: translateY(4px) rotate(-30deg);
}
.toggle.active .toggle__bar:nth-child(3) {
  -webkit-transform: translateY(-4px) rotate(30deg);
  transform: translateY(-4px) rotate(30deg);
}

.toggle__bar {
  position: absolute;
  top: 50%;
  left: calc(50% - 10px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.toggle__bar:nth-child(2) {
  top: calc(50% - 4px);
}
.toggle__bar:nth-child(3) {
  top: calc(50% + 4px);
}

/***************************

layout/_footer.scss

***************************/
.footer {
  margin-top: 18rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 834px) {
  .footer {
    margin-top: 10rem;
    padding-bottom: 4rem;
  }
}
.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
.footer-flex:nth-of-type(1) {
  margin-top: 7rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .footer-flex:nth-of-type(1) {
    margin-top: 3rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 450px) {
  .footer-flex:nth-of-type(1) {
    margin-top: 3rem;
  }
}
.footer-flex:nth-of-type(2) {
  margin-top: 10rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
@media screen and (max-width: 834px) {
  .footer-flex:nth-of-type(2) {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .footer-flex:nth-of-type(2) {
    margin-top: 4rem;
  }
}
.footer-box {
  max-width: 530px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .footer-box {
    width: 44%;
  }
}
@media screen and (max-width: 834px) {
  .footer-box {
    max-width: 464px;
    width: 80%;
    margin: 0 auto;
  }
}
.footer-box .gnav-right__pic {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 532px;
  width: 100%;
  aspect-ratio: 532/217;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
  background-size: 200% 100%;
  mask-image: url(../img/common/catch.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../img/common/catch.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (min-width: 1101px) {
  .footer-box .gnav-right__pic {
    margin-top: -4rem;
  }
}
@media screen and (max-width: 545px) {
  .footer-add {
    margin: 0 auto;
  }
  .footer-add.tar, .footer-add .tar {
    text-align: center;
  }
}
.footer-add .f15 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 545px) {
  .footer-left {
    width: 100%;
  }
}

.breadcrumbs {
  padding-bottom: 3rem;
  font-weight: 500;
  font-size: 1.3rem;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 450px) {
  .breadcrumbs {
    padding-bottom: 1.5rem;
  }
}
.breadcrumbs:has(a) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4em;
}
@media screen and (max-width: 450px) {
  .breadcrumbs:has(a) {
    gap: 3em;
  }
}
.breadcrumbs:has(a) .breadcrumbs-item:not(:first-of-type) {
  position: relative;
}
.breadcrumbs:has(a) .breadcrumbs-item:not(:first-of-type)::before {
  position: absolute;
  content: "chevron_right";
  font-family: "Material Symbols Outlined";
  left: -2.5em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .breadcrumbs:has(a) .breadcrumbs-item:not(:first-of-type)::before {
    left: -2em;
  }
}
.breadcrumbs:has(a) .breadcrumbs-item:nth-of-type(3) {
  width: calc(100% - 20rem);
}
@media screen and (max-width: 450px) {
  .breadcrumbs:has(a) .breadcrumbs-item:nth-of-type(3) {
    width: calc(100% - 17rem);
  }
}
.breadcrumbs a {
  color: #13a9d7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 545px) {
  .sitemap {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.sitemap-list {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  grid-column-gap: 12rem;
  grid-row-gap: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .sitemap-list {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .sitemap-list {
    grid-column-gap: 3rem;
  }
}
@media screen and (max-width: 545px) {
  .sitemap-list {
    grid-column-gap: 1.5rem;
  }
}
@media screen and (max-width: 370px) {
  .sitemap-list {
    font-size: 1.4rem;
  }
}
.sitemap-item:nth-of-type(1) {
  grid-column: span 1;
}
.sitemap-sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 545px) {
  .sitemap-sub__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sitemap-sub__list {
    max-width: 27rem;
    margin: 0 auto;
  }
}
.sitemap-sub__item:not(:last-of-type) {
  position: relative;
}
.sitemap-sub__item:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1em;
  right: -1rem;
  top: 0;
  background-color: #ccc;
}

.copy {
  margin-top: 3rem;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #d7d7d7;
}
@media screen and (max-width: 545px) {
  .copy {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .copy {
    margin-top: 2rem;
  }
}

.c-anime__grad.start .gnav-right__pic {
  animation: imgGradientFlow 2s ease-in-out forwards;
}

@keyframes imgGradientFlow {
  0% {
    background-position: 0 0;
  }
  30% {
    background-position: 100% 0;
  }
  60% {
    background-position: 0 0;
  }
  90% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  } /* 最後まで不透明のまま */
}
/***************************

object/object/project/_mv.scss

***************************/
.top-mv {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  z-index: 1;
}
.top-mv__video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  object-position: center center;
}
.top-mv__catch01 {
  position: absolute;
  z-index: 2;
  top: 25vh;
}
@media screen and (max-width: 834px) {
  .top-mv__catch01 {
    max-width: 720px;
    width: 90vw;
    top: 14vh;
  }
}
@media screen and (max-width: 800px) {
  .top-mv__catch01 {
    width: 86vw;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__catch01 {
    top: 20vh;
  }
}
.top-mv__catch01 .c-anime__up {
  display: block;
}
.top-mv__catch01 .c-anime__up:not(:first-of-type) {
  margin-left: 94px;
}
@media screen and (max-width: 834px) {
  .top-mv__catch01 .c-anime__up:not(:first-of-type) {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-mv__catch01 .c-anime__up:nth-of-type(1) {
    width: 30vw;
  }
}
.top-mv__catch01 .c-anime__up:nth-of-type(2) {
  margin-top: -18px;
}
@media screen and (max-width: 834px) {
  .top-mv__catch01 .c-anime__up:nth-of-type(2) {
    margin-top: -2.1vw;
    width: 80vw;
  }
}
.top-mv__catch01 .c-anime__up:nth-of-type(3) {
  margin-top: 4rem;
}
@media screen and (max-width: 834px) {
  .top-mv__catch01 .c-anime__up:nth-of-type(3) {
    margin-top: 2vw;
    width: 80vw;
  }
  .top-mv__catch01 .c-anime__up:nth-of-type(3) img {
    width: 70vw;
  }
}
.top-mv__catch02 {
  position: absolute;
  right: 10%;
  bottom: 10vh;
  color: #fff;
}
.top-mv__catch02 .f35 {
  position: relative;
  line-height: 1.14;
  right: -1em;
}
@media screen and (max-width: 834px) {
  .top-mv__catch02 .f35 {
    font-size: 4.2vw;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__catch02 .f35 {
    font-size: 6vw;
  }
}
.top-mv__catch02 .f15 {
  margin-top: 1rem;
}
@media screen and (max-width: 834px) {
  .top-mv__catch02 .f15 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__catch02 .f15 {
    font-size: 2.5vw;
  }
}
.top-mv__catch02 .c-anime__up:nth-of-type(1) span:nth-of-type(2) {
  transition-delay: 0.2s;
}
.top-mv__catch02 .c-anime__up:nth-of-type(2) span {
  transition-delay: 0.4s;
}

/***************************

object/object/project/_about.scss

***************************/
.top-about {
  padding: 28rem 0;
  background: linear-gradient(0deg, rgba(221, 221, 221, 0) 0%, rgb(221, 221, 221) 15%, rgb(228, 228, 228) 20%, rgb(255, 255, 255) 28%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 1100px) {
  .top-about {
    background: linear-gradient(0deg, rgba(221, 221, 221, 0) 0%, rgb(221, 221, 221) 10%, rgb(228, 228, 228) 15%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (max-width: 834px) {
  .top-about {
    padding: 10rem 0;
    background: linear-gradient(0deg, rgba(221, 221, 221, 0) 0%, rgb(221, 221, 221) 8%, rgb(228, 228, 228) 9%, rgb(255, 255, 255) 13%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (max-width: 450px) {
  .top-about .inner {
    padding-top: 12rem;
  }
}
.top-about__flex {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .top-about__flex {
    margin-top: 8rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 834px) {
  .top-about__flex {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .top-about__flex {
    margin-top: 4rem;
  }
}
.top-about__img {
  max-width: 60%;
  width: calc(100% - 590px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 5rem;
}
@media screen and (max-width: 1100px) {
  .top-about__img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-about__img {
    gap: 3rem;
  }
}
.top-about__img .c-anime__para-body:nth-of-type(1) {
  max-width: 640px;
  width: 100%;
  aspect-ratio: 640/600;
}
.top-about__img .c-anime__para-body:nth-of-type(2) {
  position: relative;
  bottom: -15rem;
  max-width: 220px;
  width: 100%;
  aspect-ratio: 220/284;
}
@media screen and (max-width: 834px) {
  .top-about__img .c-anime__para-body:nth-of-type(2) {
    bottom: -5rem;
  }
}
@media screen and (max-width: 1100px) {
  .top-about__cont {
    width: 100%;
  }
}
.top-about__cont .f50 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 450px) {
  .top-about__cont .f50 {
    margin-bottom: 2rem;
  }
  .top-about__cont .f50.tar {
    text-align: center;
  }
}
.top-about__cont .c-btn {
  margin: 5rem 0 0 auto;
}
@media screen and (max-width: 450px) {
  .top-about__cont .c-btn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .top-about__cont .f18.tar {
    text-align: left;
  }
  .top-about__cont .f18.tar br {
    display: none;
  }
}

.top-slide01 {
  margin-top: 30rem;
}
@media screen and (max-width: 834px) {
  .top-slide01 {
    margin-top: 10rem;
  }
}
.top-slide01 .c-slide__item {
  width: 100vw;
  padding-right: 5rem;
}
@media screen and (max-width: 834px) {
  .top-slide01 .c-slide__item {
    padding-right: 3rem;
  }
}

/***************************

object/object/project/_service.scss

***************************/
.top-service {
  z-index: 2 !important;
  margin-top: -29rem;
  height: 3090px;
  height: 3530px;
}
@media screen and (max-width: 1100px) {
  .top-service {
    margin-top: -26rem;
    height: 3400px;
  }
}
@media screen and (max-width: 834px) {
  .top-service {
    height: 3200px;
  }
}
@media screen and (max-width: 600px) {
  .top-service {
    height: 3800px;
  }
}
@media screen and (max-width: 450px) {
  .top-service {
    height: 3440px;
    height: 2770px;
  }
}
.top-service::before {
  position: sticky;
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: url(../img/top/service-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.top-service__cont {
  position: sticky;
  top: 0;
  width: fit-content;
  margin: -50vh auto;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 450px) {
  .top-service__cont {
    margin: -80vh auto;
  }
}
.top-service__cont .c-hg {
  margin-bottom: 5rem;
}
.top-service__cont .c-hg__en {
  line-height: 0.8;
}
.top-service__cont .c-hg__ja {
  width: fit-content;
  margin: 2.5rem 0 0 auto;
}
.top-service__list {
  position: relative;
  padding-bottom: 10rem;
  z-index: 3;
}
@media screen and (max-width: 1100px) {
  .top-service__list {
    margin-top: 50vh;
  }
}
.top-service__item {
  max-width: 400px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .top-service__item {
    max-width: 300px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__item {
    max-width: 250px;
  }
}
.top-service__item:nth-of-type(odd) {
  margin-right: 0;
  margin-left: auto;
}
.top-service__item:nth-of-type(even) {
  margin-top: -30rem;
}
@media screen and (max-width: 1100px) {
  .top-service__item:nth-of-type(even) {
    margin-top: -20rem;
  }
}
@media screen and (max-width: 600px) {
  .top-service__item:nth-of-type(even) {
    margin-top: 3rem;
  }
}
.top-service__item:nth-of-type(3) {
  margin-top: -20rem;
}
@media screen and (max-width: 1100px) {
  .top-service__item:nth-of-type(3) {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 600px) {
  .top-service__item:nth-of-type(3) {
    margin-top: 3rem;
  }
}
.top-service__item .f24 {
  margin: 3rem 0 2rem;
}
@media screen and (max-width: 450px) {
  .top-service__item .f24 {
    margin: 2rem 0 1rem;
  }
}
.top-service__item .f15 {
  max-width: 330px;
  width: 90%;
  margin: 0 auto;
}
.top-service__item .c-arw {
  margin: 3rem 4px 5px auto;
}
@media screen and (max-width: 450px) {
  .top-service__item .c-arw {
    margin-top: 1.5rem;
  }
}
.top-service__link:hover {
  opacity: 1;
}
.top-service__link:hover .material-symbols-outlined {
  transform: translateX(300%);
}
.top-service__link:hover .c-arw::before {
  transform: translateX(0);
}

/***************************

object/object/project/_vehicle.scss

***************************/
.top-vehicle {
  position: relative;
  padding: 10rem 0;
  background-color: #00b2e6;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .top-vehicle {
    padding: 5rem 0;
  }
}
.top-vehicle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/top/vehicle-bg.png) no-repeat center center/cover;
  z-index: 2;
  opacity: 0.2;
}
.top-vehicle__swiper {
  position: relative;
  margin-top: 5rem;
  width: 100vw;
  z-index: 3;
  transform: rotate(-15deg);
  overflow: visible;
}
.top-vehicle__swiper .swiper-slide-prev .f21,
.top-vehicle__swiper .swiper-slide-prev .f12,
.top-vehicle__swiper .swiper-slide-next .f21,
.top-vehicle__swiper .swiper-slide-next .f12 {
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.top-vehicle__swiper .swiper-slide {
  transition: transform 0.3s;
  transform-origin: center bottom;
  transform: rotate(15deg) !important;
  overflow: visible;
}
.top-vehicle__swiper .swiper-slide.swiper-slide-prev {
  transform: rotate(15deg) scale(0.8) !important;
}
.top-vehicle__swiper .swiper-slide.swiper-slide-next {
  transform: rotate(15deg) scale(0.8) !important;
}
.top-vehicle__slide .f21 {
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .top-vehicle__slide .f21 {
    font-size: 1.8rem;
  }
}
.top-vehicle__slide .f12 {
  margin-top: 1rem;
}
@media screen and (max-width: 450px) {
  .top-vehicle__slide .f12 {
    font-size: 1.2rem;
  }
}
.top-vehicle__slide picture {
  width: 90%;
  margin: -13rem 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .top-vehicle__slide picture {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 834px) {
  .top-vehicle__slide picture {
    margin-top: -6rem;
  }
}
@media screen and (max-width: 450px) {
  .top-vehicle__slide picture {
    width: 95%;
    margin-top: -3rem;
  }
}
.top-vehicle__cont {
  position: relative;
  max-width: 550px;
  margin: -13rem 0 0 auto;
  z-index: 5;
}
@media screen and (max-width: 1100px) {
  .top-vehicle__cont {
    margin-top: -10vw;
  }
}
@media screen and (max-width: 834px) {
  .top-vehicle__cont {
    margin-top: -6vw;
  }
}
.top-vehicle__cont .c-txt {
  margin-top: 2rem;
}
@media screen and (max-width: 630px) {
  .top-vehicle__cont .c-txt {
    margin-top: 1rem;
  }
  .top-vehicle__cont .c-txt br {
    display: none;
  }
}
.top-vehicle__cont .c-btn {
  margin: 3rem 0 0 auto;
}
@media screen and (max-width: 450px) {
  .top-vehicle__cont .c-btn {
    margin-top: 2rem;
  }
}

/***************************

object/object/project/_sus.scss

***************************/
.top-sus {
  padding: 12rem 0;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-sus {
    padding: 5rem 0;
  }
}
.top-sus__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
.top-sus__flex:nth-of-type(1) {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .top-sus__flex:nth-of-type(1) {
    gap: 2rem;
  }
}
.top-sus__flex:nth-of-type(2) {
  margin-top: 9rem;
}
@media screen and (max-width: 834px) {
  .top-sus__flex:nth-of-type(2) {
    margin-top: 5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 450px) {
  .top-sus__flex:nth-of-type(2) {
    margin-top: 3rem;
  }
}
.top-sus__cont {
  max-width: 520px;
  width: 34%;
}
@media screen and (max-width: 834px) {
  .top-sus__cont {
    max-width: none;
    width: 100%;
  }
}
.top-sus__cont .c-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 450px) {
  .top-sus__cont .c-btn {
    margin-top: 3rem;
  }
}
.top-sus__img {
  max-width: 930px;
  width: 62%;
  padding-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top-sus__img {
    max-width: none;
    width: 100%;
    gap: 2rem;
  }
}
.top-sus__img .c-anime__para-body:nth-of-type(1) {
  max-width: 240px;
  width: 100%;
  aspect-ratio: 240/160;
}
.top-sus__img .c-anime__para-body:nth-of-type(2) {
  max-width: 660px;
  width: 100%;
  aspect-ratio: 660/470;
}

.top-slide02 {
  margin-top: 13rem;
  padding: 15px 0 25px;
  color: #01184d;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 834px) {
  .top-slide02 {
    margin-top: 5rem;
  }
}
.top-slide02__item {
  width: fit-content;
  padding-right: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .top-slide02__item {
    padding-right: 3rem;
    gap: 2rem;
  }
}
.top-slide02__item img {
  max-width: 160px;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .top-slide02__item img {
    max-width: 140px;
  }
}
.top-slide02__item .f75 {
  margin-top: -15px;
  letter-spacing: -1px;
}
@media screen and (max-width: 834px) {
  .top-slide02__item .f75 {
    margin-top: -1rem;
  }
}
@media screen and (max-width: 450px) {
  .top-slide02__item .f75 {
    margin-top: -0.5rem;
  }
}

/***************************

object/object/project/_work.scss

***************************/
.top-work {
  background-color: #fff;
  overflow: hidden;
}
.top-work .inner {
  max-width: 1640px;
  width: 97%;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .top-work .inner {
    width: 100%;
  }
}
.top-work__flex {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding-left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top-work__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    padding-bottom: 12%;
    overflow: visible;
  }
}
.top-work__cont {
  max-width: 750px;
  width: 100%;
  padding: 12% 0 12% 4%;
  z-index: 4;
}
@media screen and (max-width: 1290px) {
  .top-work__cont {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .top-work__cont {
    max-width: none;
    padding-bottom: 0;
  }
}
.top-work__cont p, .top-work__cont a {
  margin-left: 10%;
}
@media screen and (max-width: 834px) {
  .top-work__cont p, .top-work__cont a {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .top-work__cont h2 {
    width: 80%;
  }
}
.top-work__cont .f24 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 450px) {
  .top-work__cont .f24 {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 590px) {
  .top-work__cont .f42 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 834px) {
  .top-work__cont .c-txt br {
    display: none;
  }
}
.top-work__cont .c-btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 450px) {
  .top-work__cont .c-btn {
    margin-top: 3rem;
  }
}
.top-work__box {
  position: relative;
  max-width: 720px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .top-work__box {
    width: 86%;
  }
}
@media screen and (max-width: 1200px) {
  .top-work__box {
    margin-top: 5rem;
    max-width: none;
    gap: 0;
    white-space: nowrap;
    width: 100vw;
  }
}
@media screen and (max-width: 834px) {
  .top-work__box {
    margin-top: 3rem;
  }
}
.top-work__slide {
  position: absolute;
  width: 48%;
  z-index: 3;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .top-work__slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    min-width: 200%;
  }
}
@media screen and (max-width: 450px) {
  .top-work__slide {
    min-width: 250%;
  }
}
.top-work__slide:nth-of-type(1) {
  left: 0;
}
@media screen and (max-width: 1200px) {
  .top-work__slide:nth-of-type(1) {
    left: auto;
    animation: slide01 80s -40s infinite linear;
  }
}
.top-work__slide:nth-of-type(2) {
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top-work__slide:nth-of-type(2) {
    right: auto;
    animation: slide02 80s infinite linear;
  }
}
.top-work__slide-item {
  padding: 1rem 0;
}
@media screen and (max-width: 1200px) {
  .top-work__slide-item {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 450px) {
  .top-work__slide-item {
    padding: 0 2.5px;
  }
}
.top-work__slide-item img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 450px) {
  .top-work__slide-item img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.top-news {
  padding: 15rem 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .top-news {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 450px) {
  .top-news .inner {
    position: relative;
    padding-bottom: 10rem;
  }
  .top-news .c-btn {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.top-news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
.top-news__list {
  max-width: 900px;
  margin: 10rem 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .top-news__list {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 450px) {
  .top-news__list {
    margin-top: 4rem;
  }
}

.news-list__item {
  border-top: 1px solid #eee;
}
.news-list__item:last-of-type {
  border-bottom: 1px solid #eee;
}

.news-link {
  position: relative;
  padding: 3rem 4.5rem 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 834px) {
  .news-link {
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .news-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    gap: 1rem;
  }
}
.news-link:hover {
  opacity: 1;
}
.news-link:hover .news-tumn img {
  transform: scale(1.1);
}
.news-link:hover .news-arw {
  right: 1.5rem;
}

.news-tumn {
  max-width: 200px;
  width: 100%;
  aspect-ratio: 200/150;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .news-tumn {
    max-width: 160px;
  }
}
.news-tumn img {
  width: 100%;
  aspect-ratio: 200/150;
  object-position: center center;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-txt {
  max-width: 500px;
  font-size: 1.6rem;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3.5em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}
@media screen and (max-width: 450px) {
  .news-txt {
    font-size: 1.5rem;
  }
}

.news-time {
  display: block;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}

.news-arw {
  position: absolute;
  display: block;
  right: 2rem;
  transition: all 0.3s ease-in-out;
}
.news-arw .material-symbols-outlined {
  font-size: 1.8rem;
}

/***************************

object/component/_heading.scss

***************************/
.c-hg__ja {
  position: relative;
  padding-left: 4rem;
  font-size: 1.5rem;
  color: #222;
}
@media screen and (max-width: 450px) {
  .c-hg__ja {
    font-size: 1.4rem;
  }
}
.c-hg__ja::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  aspect-ratio: 25/8;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
}
.c-hg__en {
  margin-top: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 13rem;
  color: #01184d;
}
@media screen and (max-width: 1100px) {
  .c-hg__en {
    font-size: 12rem;
  }
}
@media screen and (max-width: 834px) {
  .c-hg__en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 550px) {
  .c-hg__en {
    font-size: 14vw;
  }
}

/***************************

object/component/_box.scss

***************************/
.top {
  position: relative;
}
.top::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  background: url(../img/top/opening.webp) no-repeat center center/cover;
  z-index: 101;
  opacity: 0;
  animation: opening 3s linear;
  pointer-events: none;
}

@keyframes opening {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
.inner.-s {
  max-width: 1200px;
}
.inner.-m {
  max-width: 1380px;
}

.top-cmn__sec {
  position: relative;
  z-index: 3;
}

.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: inline-block;
  }
}

@media screen and (max-width: 450px) {
  .sp-no {
    display: none;
  }
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.c-anime__up {
  overflow: hidden;
}
.c-anime__up span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s linear;
}
.c-anime__up.fadeUp span {
  opacity: 1;
  transform: translateY(0);
}
.c-anime__up:nth-of-type(1) span {
  transition-delay: 0s;
}
.c-anime__up:nth-of-type(2) span {
  transition-delay: 0.2s;
}
.c-anime__up:nth-of-type(3) span {
  transition-delay: 0.4s;
}
.c-anime__up:nth-of-type(4) span {
  transition-delay: 0.6s;
}
.c-anime__up:nth-of-type(5) span {
  transition-delay: 0.8s;
}
.c-anime__up:nth-of-type(6) span {
  transition-delay: 1s;
}
.c-anime__up:nth-of-type(7) span {
  transition-delay: 1.2s;
}
.c-anime__up:nth-of-type(8) span {
  transition-delay: 1.4s;
}

.c-anime__grad {
  position: relative;
  padding-bottom: 0.1em;
  display: inline-block;
  background: linear-gradient(90deg, rgb(71, 216, 255) 0%, rgb(0, 23, 76) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text; /* Safari対応 */
  -webkit-text-fill-color: transparent; /* Safari対応 */
  transition: background-position 2s ease-in-out, opacity 0.3s;
}
.c-anime__grad.start {
  animation: textGradAnime 2s ease-in-out forwards;
}
.c-anime__grad.done {
  background: none;
  -webkit-text-fill-color: initial; /* Safariでテキストの色を元に戻す */
}

@keyframes textGradAnime {
  0% {
    background-position: 0 0;
    opacity: 1;
  }
  30% {
    background-position: 100% 0;
    opacity: 1;
  }
  60% {
    background-position: 0 0;
    opacity: 1;
  }
  90% {
    background-position: 100% 0;
    opacity: 1;
  }
  100% {
    background-position: 100% 0;
    opacity: 1;
  } /* 最後まで不透明のまま */
}
.c-slide {
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.c-slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-slide__list:first-child {
  animation: slide01 80s -40s infinite linear;
}
.c-slide__list:last-child {
  animation: slide02 80s infinite linear;
}

@keyframes slide01 {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes slide02 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}
.c-anime__para-body {
  position: relative;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}

.c-anime__para {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: auto;
  height: 110%;
  will-change: transform;
  transition: all 0.5s ease-in-out;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  display: block;
  max-width: 300px;
  width: 100%;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 450px) {
  .c-btn {
    font-size: 1.4rem;
  }
}
.c-btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #01184d;
}
.c-btn:hover .material-symbols-outlined {
  transform: translateX(300%);
}
.c-btn:hover .c-arw::before {
  transform: translateX(0);
}

.c-arw {
  position: relative;
  display: block;
  max-width: 65px;
  width: 100%;
  aspect-ratio: 65/30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(270deg, rgb(71, 216, 255) 0%, rgb(0, 180, 230) 100%);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  overflow: hidden;
}
.c-arw::before {
  position: absolute;
  content: "east";
  font-family: "Material Symbols Outlined";
  color: #fff;
  font-size: 1.8rem;
  transform: translateX(-300%);
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 450px) {
  .c-arw::before {
    font-size: 1.6rem;
  }
}
.c-arw .material-symbols-outlined {
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 450px) {
  .c-arw .material-symbols-outlined {
    font-size: 1.6rem;
  }
}

.fl-bnr {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  padding: 1rem 1rem 2rem 1rem;
  background: linear-gradient(90deg, rgb(0, 23, 76) 0%, rgb(71, 216, 255) 100%);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 834px) {
  .fl-bnr {
    padding-bottom: 1rem;
  }
  .fl-bnr a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
  }
}
.fl-bnr.is-show {
  opacity: 1;
  pointer-events: fill;
}
.fl-bnr:hover a {
  opacity: 1;
}
.fl-bnr:hover .c-btn02 .material-symbols-outlined {
  transform: translateX(300%);
}
.fl-bnr:hover .c-btn02 .c-arw::before {
  transform: translateX(0);
}
.fl-bnr__close {
  position: absolute;
  width: 3.5rem;
  aspect-ratio: 1/1;
  top: -1rem;
  left: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  z-index: 101;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .fl-bnr__close {
    left: auto;
    right: -1rem;
  }
}
@media screen and (max-width: 450px) {
  .fl-bnr__close {
    width: 2.5rem;
    top: -0.5rem;
    right: -0.5rem;
  }
}
.fl-bnr__close .material-symbols-outlined {
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 834px) {
  .fl-bnr__close .material-symbols-outlined {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 450px) {
  .fl-bnr__close .material-symbols-outlined {
    font-size: 1.2rem;
  }
}
.fl-bnr__img {
  max-width: 27rem;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .fl-bnr__img {
    max-width: 19rem;
    margin-right: 0;
    margin-left: 0;
    width: 36%;
  }
}
@media screen and (max-width: 450px) {
  .fl-bnr__img {
    width: 25%;
  }
}
.fl-bnr__img img {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
.fl-bnr__txt {
  position: absolute;
  max-width: 183px;
  width: 60%;
  top: 73px;
  left: 23px;
  z-index: 100;
}
@media screen and (max-width: 834px) {
  .fl-bnr__txt {
    position: relative;
    max-width: 20.5rem;
    width: 27.3%;
    top: 0;
    left: -3.3rem;
  }
}
@media screen and (max-width: 450px) {
  .fl-bnr__txt {
    width: 25%;
    left: -1rem;
  }
}
.fl-bnr .c-btn02 br {
  display: none;
}
@media screen and (max-width: 834px) {
  .fl-bnr .c-btn02 br {
    display: block;
  }
}
.fl-bnr .c-btn02 .c-arw::before {
  font-size: 1.4rem;
  color: #0a3366;
}

.c-btn02 {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-btn02 {
    margin-top: 0;
    font-size: clamp(1rem, 3vw, 2rem);
    line-height: 1.5;
    gap: 1rem;
  }
}
@media screen and (max-width: 450px) {
  .c-btn02 {
    font-size: 1rem;
    gap: 5px;
  }
}
.c-btn02 .c-arw {
  width: 4.5rem;
  aspect-ratio: 45/25;
  background: #fff;
}
@media screen and (max-width: 450px) {
  .c-btn02 .c-arw {
    width: 2rem;
  }
}
.c-btn02 .c-arw .material-symbols-outlined {
  color: #0a3366;
  font-size: 1.4rem;
}
@media screen and (max-width: 450px) {
  .c-btn02 .c-arw .material-symbols-outlined {
    font-size: 1rem;
  }
}

/***************************

object/utility/_background.scss

***************************/
.bg-white {
  background-color: #fff;
}

.bg-dark-pink {
  background-color: #f2e7e4;
}

/***************************

object/utility/_link.scss

***************************/
/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.5rem;
  }
}

.f18.lh-2:not(:first-of-type) {
  margin-top: 1em;
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.7vw;
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f35 {
  font-size: 3.5rem;
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 500px) {
  .f42 {
    font-size: 6.8vw;
  }
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}
@media screen and (max-width: 834px) {
  .f50 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .f50 {
    font-size: 8vw;
  }
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f75 {
  font-size: 7.5rem;
}
@media screen and (max-width: 834px) {
  .f75 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .f75 {
    font-size: 4rem;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-pink {
  color: #cd356f;
}

.fc-gray {
  color: #92959c;
}

.fc-wht {
  color: #fff;
}

.lh-1_2 {
  line-height: 1.2;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.bg-pink_txt {
  display: block;
  width: fit-content;
  padding: 1rem;
  color: #fff;
  background-color: #cd356f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: "Inter", sans-serif;
}