@charset "UTF-8"; /**/
@keyframes scroll {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(7px);
  }
}

.main-img {
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100%;
}

.main-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  mask-image: linear-gradient(to top, rgb(255 255 255 / 1%), rgb(255 255 255 / 1%));
  -webkit-mask-image: linear-gradient(to top, rgb(255 255 255) 0%, rgb(255 255 255 / 1%) 30%);
}

.main-img .text_box {
  position: absolute;
  top: 33%;
  left: 6%;
  color: #fff;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
  position: relative;
}

.main-img .text_box h2 {
  font-size: var(--f-xxxxl);
  font-weight: var(--w-eb);
  font-style: italic;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 30%, #f2ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  filter: drop-shadow(0 0px 1px rgb(0 0 0 / 10%));
  letter-spacing: -0.01em;
  font-family: var(--f-en);
}

.main-img .text_box h3 {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  margin-left: 0.5rem;
  filter: drop-shadow(0 0px 1px rgb(0 0 0 / 10%));
}

.scrolldown {
  position: absolute;
  z-index: 2;
  bottom: 0.6vw;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  right: 2.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.scrolldown a b {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}

.scrolldown a b::-moz-selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.scrolldown a b::selection {
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.scrolldown a {
  text-decoration: none;
  display: flex;
  z-index: 1;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.scrolldown a:hover {
  opacity: 1;
}

.scrolldown a i {
  height: 5em;
  width: 1px;
  background-color: rgb(255 255 255 / 30%);
  position: relative;
  overflow: hidden;
}

.scrolldown a i:before {
  content: none;
}

.scrolldown a i::after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  -webkit-animation: anim-scroll 1.5s ease-in-out 0s infinite;
  animation: anim-scroll 1.5s ease-in-out 0s infinite;
}

.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient(0deg, rgb(173 225 255 / 0%) 20%, rgb(173 225 255 / 40%) 100%);
  z-index: -1;
}

.section-about .loopslide {
  display: flex;
  white-space: nowrap;
  width: auto;
  animation: loopSlide 90s linear infinite;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.section-about .loopslide li {
  position: relative;
  flex: 0 0 auto;
  transition: opacity 1s ease-out;
  height: 70vh;
  aspect-ratio: 1.5 / 3;
  flex-shrink: 0;
}

.section-about .loopslide li figure {
  box-shadow: 0 30px 60px rgb(76 120 186 / 30%);
}

.section-about .loopslide li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--m-xxs);
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-210vw);
  }
}

.section-about .column {
  margin-bottom: var(--m-l);
}

.section-about .column .button {
  margin: 3rem auto 0;
  align-self: flex-end;
}

.section-service {
  padding-top: var(--m-xxl);
  padding-bottom: var(--m-xxl);
  background: var(--c-bg);
}

.section-service .u-inner {
  display: flex;
  flex-wrap: wrap;
}

.section-service .button {
  flex-basis: 100%;
}

.section-service .column {
  width: 100%;
}

.section-service .nav-container {
  position: relative;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5em;
  margin: 5rem calc(var(--m-fix) + 1em) 0;
  background: #000;
}

.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s var(--transition);
  /* z-index: 1; */
  vertical-align: top;
  filter: brightness(0.7);
}

.service-name {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 7em;
  font-weight: bold;
  z-index: 3;
  color: #fff;
  pointer-events: none;
}

.menu-items {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 2;
  transition: opacity 0.3s ease;
  counter-reset: count 0;
}

.menu-item {
  flex-basis: calc(100vw / 3);
  cursor: pointer;
  position: relative;
  padding-top: 44%;
  min-height: 350px;
  transition: flex-basis 0.2s var(--transition);
  z-index: 0;
}

.menu-item.on {
  flex-basis: 60%;
}

.menu-item a:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  mask-image: linear-gradient(to top, rgb(255 255 255 / 1%), rgb(255 255 255 / 1%));
  -webkit-mask-image: linear-gradient(to top, rgb(255 255 255) 20%, rgb(255 255 255 / 1%) 40%);
}

.menu-item:not(:first-child)::after {
  content: "";
  background: rgb(255 255 255 / 30%);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.menu-item p {
  margin-top: 10px;
  font-size: 14px;
  position: relative;
  z-index: 4;
  line-height: 1.5;
}

.section-service .list li a {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  flex-direction: column;
  padding: 2vmax;
  color: #fff;
  justify-content: flex-end;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}

.section-service .list li a:hover {
  opacity: 1;
}

.section-service ul.list li a h3::before {
  content: "0" counter(count);
  counter-increment: count 1;
  font-size: var(--f-xxl);
  font-style: italic;
  font-family: var(--f-en);
  position: relative;
  left: -5px;
  letter-spacing: -0.05em;
  color: var(--c-sub);
  line-height: 1;
  z-index: 1;
  margin-bottom: 1rem;
  font-weight: var(--w-m);
  display: block;
  opacity: 0.7;
}

.section-service ul.list li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  filter: brightness(0.6);
}

.section-service .list li:nth-child(1) a::after {
  background-image: url(/img/service-menu_01.webp);
}

.section-service ul.list li:nth-child(2) a::after {
  background-image: url(/img/service-menu_02.webp);
}

.section-service ul.list li:nth-child(3) a::after {
  background-image: url(/img/service-menu_03.webp);
}

.section-service ul.list li.menu-item.on a::after, .section-service ul.list li.menu-item.off a::after {
  opacity: 0;
}

.section-service ul.list li.menu-item.off .text_box {
  opacity: 0.3;
}

.section-service ul.list li .text_box {
  position: relative;
  z-index: 3;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.section-service ul.list li h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-service ul.list li h3 b {
  font-size: var(--f-m);
  min-height: 2.4em;
  display: inline-block;
  line-height: 1.2;
}

.section-service ul.list li h3 em {
  font-size: 0.7em;
  opacity: 0.7;
  font-family: var(--f-en);
}

@media screen and (max-width: 1024px) {
  .gBody {
  }
}

@media screen and (max-width: 767px) {
  .section-service .nav-container {
    width: 100%;
    margin-left: initial;
  }

  .menu-items {
    flex-direction: column;
  }

  .menu-item:not(:first-child)::after {
    width: 100%;
    height: 1px;
    position: absolute;
  }

  .menu-item:last-child {
    border: none;
  }

  .menu-item img {
    transition: opacity 0.3s ease;
  }

  .menu-item p {
    margin-top: 10px;
    font-size: 14px;
    position: relative;
    z-index: 4;
    line-height: 1.5;
  }

  .service .list li a {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    flex-direction: column;
    padding: 2vmax;
    color: #fff;
    justify-content: flex-end;
  }
}

@media print {
  .main_img.sticky .slide {
    position: relative!important;
    right: 0px;
  }

  .main_img {
    height: 80vh;
  }

  section.message.sticky.end > figure {
    position: absolute;
    top: initial;
  }

  .message figure {
    max-height: 100%;
  }

  .contents .message {
    padding-top: initial;
  }
}
