@charset "UTF-8";
#wave-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* レイヤー共通設定 */
.layer-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.layer {
  position: absolute;
  bottom: -50px;
  left: 0;
  height: calc(100% + 50px);
  width: auto;
  white-space: nowrap;
  will-change: transform;
}

.layer img {
  height: 100%;
  width: auto;
  max-width: none;
  display: inline-block;
  vertical-align: bottom;
}

/* 登場演出用のスタイル */
.entry-hide {
  opacity: 0;
  transform: translate(-150px, 150px);
  /* 左下にパースをつけて配置 */
  transition: transform 2.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 2s ease-out;
}

.entry-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Z-indexの設定 */
#bace-layer {
  z-index: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  object-fit: cover;
}

#layer-04-wrapper {
  z-index: 2;
}

#layer-03-wrapper {
  z-index: 3;
}

#layer-02-wrapper {
  z-index: 4;
}

#layer-01-wrapper {
  z-index: 5;
}

#wave-05-wrapper {
  z-index: 5;
}

/* 波05は01と同じ高さか背景寄り */
#layer-00-wrapper {
  z-index: 6;
}

#surfer-wrapper {
  z-index: 10;
}

/* 特殊要素（サーファー・wave05）の個別設定 */
#surfer-layer {
  position: absolute;
  bottom: calc(15% + 30px);
  left: 50%;
  --offset: 0px;
  width: 200px;
  height: auto;
  animation: drift-float 6s ease-in-out infinite;
}
@media (min-width: 769px) {
  #surfer-layer {
    bottom: calc(30% + 30px);
  }
}

#wave-05-layer {
  position: absolute;
  bottom: -100px;
  left: 50%;
  --offset: -110px;
  width: auto;
  max-width: none;
  height: 55%;
  aspect-ratio: 2972/1304;
  animation: drift-float 6s ease-in-out infinite;
}

@keyframes drift-float {
  0%, 100% {
    transform: translate(calc(-50% + var(--offset) - 50px), 0px) rotate(-3deg);
  }
  50% {
    transform: translate(calc(-50% + var(--offset) + 50px), -50px) rotate(3deg);
  }
}
/* 終了時の静止画用オーバーレイ */
#final-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #f0e6d2;
  display: none;
}
@media (min-width: 769px) {
  #final-overlay {
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
  }
}

#final-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-120px);
    filter: blur(15px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slideInMobile {
  0% {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(10px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
.top-kv {
  position: relative;
  height: 520px;
  padding-bottom: 90px;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 769px) {
  .top-kv {
    padding-bottom: 266px;
    height: 835px;
  }
}
.top-kv__background {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0e6d2;
}
.top-kv__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 10px 0 20px;
  height: 100%;
}
@media (min-width: 769px) {
  .top-kv__contents {
    padding: 85px 20px 0;
    max-width: calc(var(--container-large, 1200px) + 40px);
    margin: 0 auto;
  }
}
.top-kv__slogan {
  padding: 2px 6px;
  font-size: 30px;
  font-size: clamp(24px, 8.8vw, 44px);
  line-height: 1.2;
  background-image: linear-gradient(90deg, #003163 0%, #2BBFFF 100%);
  color: #fff;
  animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
}
@media (min-width: 769px) {
  .top-kv__slogan {
    padding: 8px 20px;
    font-size: 70px;
    font-size: min(70px, 8.8vw);
  }
}
.top-kv__text {
  margin-top: 6px;
  margin-top: 0.4em;
  font-size: 15px;
  font-size: clamp(14px, 4.4vw, 22px);
  line-height: 2;
}
@media (min-width: 769px) {
  .top-kv__text {
    margin-top: 6px;
    font-size: 28px;
  }
}
.top-kv__text-bg {
  display: inline-block;
  padding: 1px 6px 0 8px;
  line-height: 1.6;
  background-color: #003163;
  color: #fff;
}
@media (min-width: 769px) {
  .top-kv__text-bg {
    padding: 1px 16px 0 20px;
  }
}
.top-kv__text-bg:nth-of-type(1) {
  animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.7s both;
}
.top-kv__text-bg:nth-of-type(2) {
  animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.9s both;
}
.top-kv__link-row {
  align-self: stretch;
  margin-top: auto;
  animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 2.1s both;
}

.top-kv-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 5px 5px 5px 20px;
  width: 188px;
  background-image: linear-gradient(90deg, #003163 0%, #2BBFFF 100%);
  color: #fff;
  border-radius: 48px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .top-kv-button {
    gap: 12px;
    padding: 8px 8px 8px 24px;
    width: 306px;
    border-radius: 40px;
  }
  .top-kv-button:hover {
    opacity: 0.85;
  }
}
.top-kv-button__label {
  flex: auto;
  display: flex;
  justify-content: center;
  font-size: 17px;
  line-height: 1.333;
  font-weight: 400;
}
@media (min-width: 769px) {
  .top-kv-button__label {
    font-size: 28px;
  }
}
.top-kv-button__arrow {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 40px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 769px) {
  .top-kv-button__arrow {
    width: 64px;
    padding: 8px;
  }
}
.top-kv-button__arrow img {
  width: 100%;
}
.top-kv-button__arrow svg {
  width: 100%;
  height: auto;
  stroke: #00293B;
}

.top-color-1 {
  position: relative;
  padding-bottom: 40px;
  background-color: #F0FF00;
  border-top: 1px solid #F0FF00;
  z-index: 1;
}
@media (min-width: 769px) {
  .top-color-1 {
    padding-bottom: 100px;
  }
}
.top-color-1__wave {
  position: absolute;
  top: 1px;
  transform: translateY(-100%);
  width: 100%;
  height: 70px;
  z-index: 0;
}
@media (min-width: 769px) {
  .top-color-1__wave {
    height: 246px;
  }
}
.top-color-1__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.top-color-1__wave-2 {
  position: absolute;
  bottom: 1px;
  transform: translateY(100%);
  width: 100%;
  height: 50px;
  z-index: 0;
}
@media (min-width: 769px) {
  .top-color-1__wave-2 {
    height: 158px;
  }
}
.top-color-1__wave-2 svg {
  display: block;
  width: 100%;
  height: 100%;
}

.top-color-2 {
  position: relative;
  padding-top: 70px;
  padding-bottom: 50px;
  background-color: #003163;
  border-top: 1px solid #003163;
  color: #fff;
  z-index: 0;
}
@media (min-width: 769px) {
  .top-color-2 {
    padding-top: 208px;
    padding-bottom: 250px;
  }
}

.top-color-3 {
  position: relative;
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #B8DDEE;
  border-top: 1px solid #B8DDEE;
  z-index: 1;
}
.top-color-3__wave {
  position: absolute;
  top: 1px;
  transform: translateY(-100%);
  width: 100%;
  height: 14px;
  z-index: -1;
}
@media (min-width: 769px) {
  .top-color-3__wave {
    height: 210px;
  }
}
.top-color-3__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.top-color-3__wave-2 {
  position: absolute;
  bottom: 1px;
  transform: translateY(100%);
  width: 100%;
  height: 104px;
  z-index: -1;
}
@media (min-width: 769px) {
  .top-color-3__wave-2 {
    height: 426px;
  }
}
.top-color-3__wave-2 svg {
  display: block;
  width: 100%;
  height: 100%;
}

.top-color-4 {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #F0FF00;
  border-top: 1px solid #F0FF00;
  z-index: unset;
}
@media (min-width: 769px) {
  .top-color-4 {
    padding-top: 0;
  }
}

.top-news {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid;
  z-index: 0;
}
@media (min-width: 769px) {
  .top-news {
    display: flex;
    margin-top: -130px;
    padding-bottom: 30px;
    min-height: 140px;
  }
}
.top-news__heading {
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .top-news__heading {
    flex: none;
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 100px;
    border-right: 1px solid #000;
    font-size: 26px;
  }
}
.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .top-news__list {
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 12px 12px 12px 32px;
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .top-news__item {
    display: flex;
    gap: 2px;
  }
}
.top-news__date {
  display: block;
}
@media (min-width: 769px) {
  .top-news__date {
    flex: none;
    width: 104px;
  }
}
.top-news__title {
  color: inherit;
  text-decoration: none;
  flex: auto;
}
.top-news__title:hover {
  text-decoration: underline;
}

.top-service {
  margin-top: 50px;
}
@media (min-width: 769px) {
  .top-service {
    margin-top: 60px;
  }
}
.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .top-service__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
.top-service__item--dummy {
  display: none;
}
@media (min-width: 769px) {
  .top-service__item--dummy {
    display: block;
  }
}
.top-service__name {
  margin-top: 30px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}
.top-service__description {
  margin-top: 12px;
}
@media (min-width: 769px) {
  .top-service__description {
    margin-top: 14px;
  }
}
.top-service__link-row {
  margin-top: 12px;
  margin-left: auto;
  width: 172px;
}
@media (min-width: 769px) {
  .top-service__link-row {
    margin-top: 32px;
    width: 210px;
  }
}
.top-service__sub-link-row {
  margin-top: 12px;
  margin-left: auto;
  width: 172px;
}
@media (min-width: 769px) {
  .top-service__sub-link-row {
    margin-top: 32px;
    width: 210px;
  }
}

.top-service-sub-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 20px;
  background-image: linear-gradient(90deg, #003163 0%, #2BBFFF 100%);
  color: #fff;
  border-radius: 48px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .top-service-sub-link {
    gap: 12px;
    padding: 5px 6px 5px 24px;
    border-radius: 40px;
  }
  .top-service-sub-link:hover {
    opacity: 0.85;
  }
}
.top-service-sub-link__label {
  flex: auto;
  display: flex;
  justify-content: center;
  line-height: 1.333;
  font-weight: 400;
}
@media (min-width: 769px) {
  .top-service-sub-link__label {
    font-size: 20px;
  }
}
.top-service-sub-link__arrow {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 34px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 769px) {
  .top-service-sub-link__arrow {
    padding: 8px;
  }
}
.top-service-sub-link__arrow img {
  width: 100%;
}
.top-service-sub-link__arrow svg {
  width: 100%;
  height: auto;
  stroke: #00293B;
}

.top-blog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .top-blog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
.top-blog__item {
  display: flex;
}
.top-blog__link {
  margin-top: 12px;
  margin-left: auto;
  width: 172px;
}
@media (min-width: 769px) {
  .top-blog__link {
    margin-top: 50px;
    width: 210px;
  }
}

.top-note {
  margin-top: 50px;
}
@media (min-width: 769px) {
  .top-note {
    margin: 100px auto 0;
    width: 900px;
    max-width: 100%;
  }
}

.top-youtube {
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 769px) {
  .top-youtube {
    margin: 60px auto 0;
    width: 900px;
    max-width: 100%;
  }
}
.top-youtube iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .top-about {
    position: relative;
    min-height: 620px;
    z-index: 0;
    overflow: clip visible;
  }
}
@media (min-width: 769px) {
  .top-about__body {
    max-width: calc(var(--container-large, 1200px) * 0.43);
  }
}
.top-about__image {
  margin: 20px auto 0;
  max-width: 600px;
}
@media (min-width: 769px) {
  .top-about__image {
    position: absolute;
    top: 25px;
    left: max(var(--container-large, 1200px) * 0.43 + 20px, 50% - 84px);
    margin: 0;
    width: 817px;
    max-width: none;
  }
}
.top-about__lead {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .top-about__lead {
    margin-top: 20px;
    font-size: 30px;
  }
}
.top-about__description {
  margin-top: 12px;
  font-size: 16px;
}
@media (min-width: 769px) {
  .top-about__description {
    margin-top: 36px;
    font-size: 18px;
  }
}
.top-about__link-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 769px) {
  .top-about__link-list {
    align-items: flex-start;
    margin-top: 50px;
    gap: 50px;
  }
}
.top-about__link-item {
  width: 172px;
}
@media (min-width: 769px) {
  .top-about__link-item {
    width: 210px;
  }
}

@media (min-width: 769px) {
  .top-recruit {
    position: relative;
    min-height: 800px;
    padding-top: 150px;
    z-index: 2;
    overflow: clip visible;
  }
}
@media (min-width: 769px) {
  .top-recruit__body {
    max-width: calc(var(--container-large, 1200px) * 0.43);
  }
}
.top-recruit__image {
  margin: 20px auto 0;
  width: 85.3731343284%;
  max-width: 510px;
}
@media (min-width: 769px) {
  .top-recruit__image {
    position: absolute;
    top: 100px;
    left: max(var(--container-large, 1200px) * 0.43 + 20px, 50% - 29px);
    margin: 0;
    width: 534px;
    max-width: none;
  }
}
.top-recruit__lead {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .top-recruit__lead {
    margin-top: 20px;
    font-size: 30px;
  }
}
.top-recruit__description {
  margin-top: 12px;
  font-size: 16px;
}
@media (min-width: 769px) {
  .top-recruit__description {
    margin-top: 36px;
    font-size: 18px;
  }
}
.top-recruit__link-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 769px) {
  .top-recruit__link-list {
    align-items: flex-start;
    margin-top: 50px;
    gap: 50px;
  }
}
.top-recruit__link-item {
  width: 172px;
}
@media (min-width: 769px) {
  .top-recruit__link-item {
    width: 210px;
  }
}

/*# sourceMappingURL=top.css.map */
