@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: auto;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  user-select: none !important;
}

@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 400;
  src: url(../../../assets/fonts/NotoSansJP-Regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 500;
  src: url(../../../assets/fonts/NotoSansJP-Medium.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 700;
  src: url(../../../assets/fonts/NotoSansJP-Bold.woff2) format("woff2");
}
.material-symbols-sharp {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}

html {
  font-size: 10px;
}

body,
html {
  height: 100%;
}

body {
  color: #4b6274;
  font-family: "Lexend", Noto Sans JP, sans-serif;
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}
body.--is-menu-open {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  min-height: 0vw; /* Safari clamp関数対策 */
  overflow-wrap: break-word;
  scroll-behavior: auto;
  word-wrap: break-word;
}
*::before, *::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

a {
  text-decoration: none;
}

.loader {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: width 0s 1.4s ease;
  width: 0;
  z-index: 999;
}
.loader .loader__icon {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 0.5s ease;
  z-index: 1;
}
.loader .loader__icon svg {
  transform-origin: 0 0;
}
.loader .loader__tile {
  background-color: #44b0b0;
  height: 20%;
  left: 0;
  position: absolute;
  transition: width 0.7s ease;
  width: 0;
}
.loader .loader__tile:nth-child(0) {
  top: calc(-1 * 20%);
  transition-delay: -0.2s;
}
.loader .loader__tile:nth-child(1) {
  top: calc(0 * 20%);
  transition-delay: 0s;
}
.loader .loader__tile:nth-child(2) {
  top: calc(1 * 20%);
  transition-delay: 0.2s;
}
.loader .loader__tile:nth-child(3) {
  top: calc(2 * 20%);
  transition-delay: 0.4s;
}
.loader .loader__tile:nth-child(4) {
  top: calc(3 * 20%);
  transition-delay: 0.6s;
}
.loader .loader__tile:nth-child(5) {
  top: calc(4 * 20%);
  transition-delay: 0.8s;
}
.loader--active {
  transition-delay: 0s;
  width: 100%;
}
.loader--active .loader__icon {
  opacity: 1;
  transition: opacity 0.5s 1.4s ease;
}
.loader--active .loader__tile {
  width: 100%;
}
.loader--active .loader__tile:nth-child(0) {
  transition-delay: -0.2s;
}
.loader--active .loader__tile:nth-child(1) {
  transition-delay: 0s;
}
.loader--active .loader__tile:nth-child(2) {
  transition-delay: 0.2s;
}
.loader--active .loader__tile:nth-child(3) {
  transition-delay: 0.4s;
}
.loader--active .loader__tile:nth-child(4) {
  transition-delay: 0.6s;
}
.loader--active .loader__tile:nth-child(5) {
  transition-delay: 0.8s;
}

.animate__delay-2s {
  animation-delay: 0.2s;
}

.animate__delay-4s {
  animation-delay: 0.4s;
}

.clip {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  transition: clip-path 0.4s ease-in-out;
}

.clipUp.fadeIn {
  animation-name: anime_bottom_to_top;
}

.clipDown.fadeIn {
  animation-name: anime_top_to_bottom;
}

.clipRight.fadeIn {
  animation-name: anime_left_to_right;
}

.clipLeft.fadeIn {
  animation-name: anime_right_to_left;
}

@keyframes anime_bottom_to_top {
  0% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes anime_top_to_bottom {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes anime_left_to_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes anime_right_to_left {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.banner__recruit {
  background-color: #fff;
  background-color: #44b0b0;
  bottom: 0;
  cursor: pointer;
  color: #fff;
  height: 50px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 999;
}
.banner__recruit:hover .banner__recruit--icon {
  transition: transform 0.6s;
  transform: rotateY(360deg);
}
@media (min-width: 768px) {
  .banner__recruit {
    height: 70px;
    width: 240px;
  }
}
.banner__recruit .banner__recruit--inner {
  align-items: center;
  display: flex;
  gap: 16px;
  height: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner__recruit .banner__recruit--inner {
    justify-content: flex-start;
    padding: 16px;
  }
}
.banner__recruit .banner__recruit--icon {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 100%;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}
@media (min-width: 768px) {
  .banner__recruit .banner__recruit--icon {
    height: 50px;
    width: 50px;
  }
}
.banner__recruit .banner__recruit--icon .material-symbols-sharp {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .banner__recruit .banner__recruit--icon .material-symbols-sharp {
    font-size: 4rem;
  }
}
.banner__recruit .banner__recruit--text-container {
  display: grid;
  gap: calc(8px / 2);
}
.banner__recruit .banner__recruit--text-container .banner__recruit--title {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.4rem;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .banner__recruit .banner__recruit--text-container .banner__recruit--title {
    font-size: 2.4rem;
  }
}
.banner__recruit .banner__recruit--text-container .banner__recruit--note {
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.4rem;
  line-height: 1;
}
.scroll__down {
  left: 50%;
  position: absolute;
  top: calc(100% - 60px);
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .scroll__down {
    display: flex;
  }
}
.scroll__down .scroll__down--text {
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 200;
  left: 50%;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  padding: 10px 10px 130px;
  text-transform: uppercase;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .scroll__down .scroll__down--text {
    padding: 10px 10px 130px;
  }
}
.scroll__down .scroll__down--text::after {
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  background: #fff;
  bottom: 0;
  content: "";
  height: 120px;
  left: calc(50% - 2px);
  position: absolute;
  transform: translateX(-50%);
  width: 1px;
}
@media (min-width: 992px) {
  .scroll__down .scroll__down--text::after {
    height: 120px;
  }
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.title__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.sub-page .title__section {
  color: #4b6274;
}
.title__section.--text-center {
  text-align: center;
}

.title__text {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: normal;
}
body.sub-page .title__text {
  color: #4b6274;
  text-transform: capitalize;
}
.title__text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .title__text br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .title__text {
    font-size: 9rem;
  }
}
@media screen and (min-width: 1200px) {
  .title__text {
    font-size: 12rem;
  }
}

.title__text--secondary {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .title__text--secondary {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .title__text--secondary {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .title__text--secondary {
    font-size: 2.4rem;
  }
}

.text__section {
  display: grid;
  gap: 16px;
  grid-template-rows: max-content 1fr;
}
.text__section.--sns {
  margin-top: auto;
}

.text__section--title {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .text__section--title {
    font-size: 1.6rem;
  }
}
body.sub-page .text__section--title {
  color: #83a2b2;
  font-size: 1.8rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  body.sub-page .text__section--title {
    font-size: 2.4rem;
  }
}
.text__section--title.--gap {
  letter-spacing: 1.2rem;
}

.text__section--text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  body.sub-page .text__section--text {
    font-size: 1.6rem;
  }
}
.text__section--text.--primary {
  font-weight: 800;
}
.swiper.marquee-swiper {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  padding: 64px 0;
  text-transform: capitalize;
}
.swiper.marquee-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}
.swiper.marquee-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  width: 12rem;
}

.link__primary {
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.link__primary:hover {
  color: #44b0b0;
}
.link__primary.--emphasis {
  font-weight: 800;
}

.products__link {
  position: relative;
}
.products__link::before {
  background-color: #4b6274;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform-origin: left;
  transition: transform 0.2s ease-out;
  width: 100%;
}
.products__link::after {
  background: linear-gradient(to left, #fff, #44b0b0);
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
  width: 100%;
}
.products__link:hover {
  color: #44b0b0;
}
.products__link:hover::after {
  transform: scaleX(1);
}
.products__link span {
  display: inline-flex;
}
.products__link span::after {
  align-items: center;
  background-image: url("../../../assets/images/icons/icon_window.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-flex;
  height: 18px;
  width: 18px;
}

/* 色をグレーから黒に変更 */
@keyframes colorAnime {
  from {
    background-color: #eee;
  }
  to {
    background-color: #000;
  }
}
.sub__container--marque {
  padding-bottom: 80px;
  position: relative;
}
.sub__title--block {
  left: 0;
  position: absolute;
  top: 0;
}

.text__autoscroll .text__loop__wrap {
  display: flex;
}
.text__autoscroll .text__loop__wrap .--loop-text {
  color: #edf1f7;
  flex: 0 0 auto;
  font-size: 20rem;
  font-weight: 100;
  height: max-content;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0 32px;
  white-space: nowrap;
}
.text__autoscroll .text__loop__wrap .--loop-text:first-child {
  -webkit-animation: 50s loop 0s linear infinite;
  animation: 50s loop 0s linear infinite;
}
.text__autoscroll .text__loop__wrap .--loop-text:last-child {
  -webkit-animation: 50s loop 0s linear infinite;
  animation: 50s loop 0s linear infinite;
}

@-webkit-keyframes loop {
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
@keyframes loop {
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
.btn {
  align-items: center;
  border: 0;
  border-radius: 32px;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 320px;
}
@media screen and (min-width: 992px) {
  .btn {
    margin: unset;
  }
}
.btn.--algin-right {
  margin-left: auto;
  margin-right: unset;
}
.btn.--more {
  border: 4px solid transparent;
  gap: 8px;
  line-height: normal;
  max-width: 32rem;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  transition: all 0.4s ease-in-out;
  width: unset;
}
.btn.--more svg {
  position: absolute;
  transition: all 0.4s ease-in-out;
  width: 24px;
  z-index: 9;
}
.btn.--more .icon__arrow.--right {
  right: 16px;
}
.btn.--more .icon__arrow.--left {
  left: -100px;
}
.btn.--more .circle {
  border-radius: 100%;
  height: 20px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  width: 20px;
}
.btn.--more .btn__label {
  position: relative;
  transform: translateX(-12px);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.btn.--more:hover {
  border-radius: 12px;
  box-shadow: 0 0 0 12px transparent;
}
.btn.--more:hover .icon__arrow.--right {
  right: -100px;
}
.btn.--more:hover .icon__arrow.--left {
  left: 16px;
}
.btn.--more:hover .btn__label {
  transform: translateX(12px);
}
.btn.--more:hover .circle {
  height: 220px;
  opacity: 1;
  width: 220px;
}
.btn.--more:hover:active {
  scale: 0.95;
}
.btn.--outline {
  box-shadow: 0 0 0 1px #fff;
}
.btn.--outline svg {
  fill: #fff;
}
.btn.--outline .circle {
  background-color: #fff;
}
.btn.--outline:hover {
  color: #44b0b0;
}
.btn.--outline:hover svg {
  fill: #44b0b0;
}
.btn.--outline:active {
  box-shadow: 0 0 0 2px #fff;
}
.btn.--solid {
  background-color: #44b0b0;
  box-shadow: 0 0 0 1px #44b0b0;
}
.btn.--solid svg {
  fill: #fff;
}
.btn.--solid .circle {
  background-color: #fff;
}
.btn.--solid:hover {
  background-color: #fff;
  color: #44b0b0;
}
.btn.--solid:hover svg {
  fill: #44b0b0;
}
.btn.--solid:active {
  box-shadow: 0 0 0 2px #44b0b0;
}

.marquee {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
  font-size: 3rem;
  mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  padding: 64px 0;
  text-transform: capitalize;
}

.marquee__list {
  animation: marquee 50s linear infinite;
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  gap: 80px;
}
.marquee__list .marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  width: 12rem;
  text-transform: capitalize;
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
.table {
  border-collapse: collapse;
  font-size: 1.4rem;
  width: 100%;
}
.table tbody tr:last-of-type th,
.table tbody tr:last-of-type td {
  border-bottom: 0;
}
.table th {
  color: #44b0b0;
  text-align: left;
  vertical-align: top;
}
.table th,
.table td {
  border-bottom: 5px solid #ccc;
  padding: 16px;
}

.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  top: 0;
  padding: 32px 24px 0;
  position: fixed;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.5, 0, 0.63, 1), transform 0.4s cubic-bezier(0.5, 0, 0.63, 1);
  width: 100%;
  will-change: transform;
  z-index: 200;
}
body.sub-page .header {
  background-color: #44b0b0;
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .header {
    padding: 32px 60px 0;
  }
  body.sub-page .header {
    padding: 32px 60px;
  }
}
.header.scrolled .logo_text {
  transform: translateX(-125%);
  transition-delay: 0.4s;
}

.logo_text {
  transition: 0.4s cubic-bezier(0.81, 0.05, 0.32, 0.94);
}

.header__logo {
  align-items: center;
  display: flex;
  width: 200px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 250px;
  }
}
.header__logo img {
  height: 40px;
}

.logo_mask {
  overflow: hidden;
}

.header__logo--img {
  width: 200px;
}
@media (min-width: 768px) {
  .header__logo--img {
    width: 250px;
  }
}

.nav {
  position: relative;
  z-index: 10;
}

.header__menu {
  color: #fff;
  display: none;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .header__menu {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1600px) {
  .header__menu {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .header__menu {
    display: flex;
  }
}
.header__menu li {
  padding: 0 16px;
}
.header__menu li.--item-recruit {
  background: #fff;
  border-radius: 16px;
  color: #000;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.header__menu li.--item-recruit:hover {
  background-color: #44b0b0;
  color: #fff;
}
body.sub-page .header__menu li.--item-recruit:hover {
  background-color: #ffa544;
}
.header__menu li.--item-recruit:has(.--active) {
  background-color: #44b0b0;
  color: #fff;
}
.header__menu li.--item-recruit:has(.--active) a {
  font-weight: 400;
}
.header__menu li.--item-recruit a::after {
  display: none;
}
.header__menu li a {
  font-weight: 500;
  position: relative;
  transition: letter-spacing 0.2s ease-in-out, opacity 0.2s;
  user-select: none;
}
.header__menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.2s ease-in-out;
}
.header__menu li a.--active {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.8rem;
  pointer-events: none;
}
.header__menu li a.--active::after {
  width: 10px;
}
.header__menu li a:hover::after {
  width: 10px;
}

.navbar__menu--button {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 15px;
  justify-content: space-between;
  position: relative;
  width: 87px;
  z-index: 1000;
}
@media screen and (min-width: 1200px) {
  .navbar__menu--button {
    display: none;
  }
}
.navbar__menu--button:hover .navbar__menu-bar {
  transform: translateX(0);
}
body.--is-menu-open .navbar__menu--button {
  animation: menuFadeout 1s cubic-bezier(0.625, 0.05, 0, 1) both;
  opacity: 0;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  translate: none;
  visibility: inherit;
}

.navbar__menu-bar {
  background-color: #fff;
  display: block;
  height: 2px;
  transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1), background-color 0.3s ease-out;
  width: 60px;
}
.navbar__menu-bar.--is-top {
  transform: translateX(-20%);
}
@media screen and (min-width: 768px) {
  .navbar__menu-bar.--is-top {
    transform: translateX(-15%);
  }
}
.navbar__menu-bar.--is-bottom {
  transform: translateX(20%);
}
@media screen and (min-width: 768px) {
  .navbar__menu-bar.--is-bottom {
    transform: translateX(15%);
  }
}

@keyframes menuFadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    rotate: none;
    scale: none;
    transform: scale(0.6, 1);
    translate: none;
    visibility: hidden;
  }
}
.menu {
  color: #fff;
  display: none;
  height: 100svh;
  inset: 0;
  position: fixed;
  pointer-events: none;
  width: 100%;
  z-index: 30;
}
.menu a {
  color: #4b6274;
}
body.--is-menu-open .menu {
  display: block;
}
body.--is-menu-close .menu {
  display: unset;
}
.menu .menu-close {
  border-radius: 50%;
  cursor: pointer;
  height: 60px;
  position: absolute;
  right: 36px;
  top: 18px;
  transition: all 0.3s ease-out;
  width: 60px;
}
.menu .menu-close:before, .menu .menu-close:after {
  background-color: #111822;
  content: "";
  height: 2px;
  left: 50%;
  top: 50%;
  transition: 0.3s ease-out;
  position: absolute;
  width: 80%;
}
.menu .menu-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu .menu-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu .menu-close:hover:before, .menu .menu-close:hover:after, .menu .menu-close:focus:before, .menu .menu-close:focus:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.menu .menu__navigation .header__menu {
  flex-direction: column;
}

.menu__wrapper {
  align-items: center;
  -webkit-backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
  display: grid;
  grid-template-rows: 1fr max-content;
  height: 100%;
  justify-items: center;
  opacity: 0;
  padding: 32px;
  pointer-events: all;
  position: relative;
  width: 100%;
  will-change: transform;
  z-index: 100;
}
body.--is-menu-open .menu__wrapper {
  animation: menuFadeout2 0.4s cubic-bezier(0.625, 0.05, 0, 1) both;
  display: grid;
  opacity: 1;
  pointer-events: auto;
}
body.--is-menu-close .menu__wrapper {
  animation: menuFadeout3 0.4s cubic-bezier(0.625, 0.05, 0, 1) both;
  translate: none;
  rotate: none;
  scale: none;
  transform: scale(0.9, 0.9);
  opacity: 0;
  visibility: hidden;
}
.menu__wrapper .menu__navigation {
  color: #fff;
  width: max-content;
}
.menu__wrapper .menu__list {
  display: grid;
  gap: 16px;
  font-size: 24px;
  justify-content: center;
}
.menu__wrapper .menu__list > li {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.2s linear;
}
.menu__wrapper .menu__list > li a {
  color: #4b6274;
}
body.--is-menu-open .menu__wrapper .menu__list > li {
  opacity: 1;
  transform: translateY(0px);
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(1) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.05s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(2) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(3) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.15s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(4) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(5) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.25s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(6) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(7) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.35s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(8) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
}
body.--is-menu-open .menu__wrapper .menu__list > li:nth-child(9) {
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.45s;
}

@keyframes menuFadeout2 {
  0% {
    translate: none;
    rotate: none;
    scale: none;
    transform: scale(0.9, 0.9);
    opacity: 0;
    visibility: visible;
  }
  100% {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes menuFadeout3 {
  0% {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: inherit;
  }
  100% {
    display: none;
    translate: none;
    rotate: none;
    scale: none;
    transform: scale(0.9, 0.9);
    opacity: 0;
    visibility: visible;
  }
}
.nav__menu--bottom {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 24px;
}
.nav__menu--bottom .nav__menu--bottom-list {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.nav__menu--bottom .navbar__menu--button-copy {
  font-weight: 100;
}

.footer {
  background-attachment: fixed;
  background-color: #44b0b0;
  background-image: url("../../assets/images/stone_logo-w.svg");
  background-position: right -50px bottom -80px;
  background-repeat: no-repeat;
  background-size: 90%;
  font-size: 1.6rem;
  padding: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer {
    background-size: 500px;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    background-size: 650px;
  }
}

@media screen and (min-width: 992px) {
  .footer__logo img {
    width: 350px;
  }
}

.footer__container {
  display: grid;
  gap: 32px;
  margin: auto;
  max-width: 100%;
  padding-bottom: 60px;
  padding-top: 100px;
  width: 1200px;
}

.footer__nav {
  padding-top: 100px;
}

.footer__nav--block {
  display: grid;
  flex: 1;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__nav--block {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer__nav--block {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    gap: 32px;
  }
}
.footer__nav-list .footer__nav--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__nav-list .footer__nav--item a.--nav-primary {
  align-items: center;
  display: flex;
  gap: 16px;
  line-height: 1;
}
.footer__nav-list .footer__nav--item a.--nav-primary:hover {
  color: rgb(44.9607329843, 58.7486910995, 69.5392670157);
}
.footer__nav-list .footer__nav--item a.--nav-primary:hover::after {
  transform: translateX(10px);
}
.footer__nav-list .footer__nav--item .--nav-primary {
  border-bottom: 1px solid #4b6274;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 8px;
}
.footer__nav-list .footer__nav--item .nav__nest-list {
  display: grid;
  gap: 8px;
}
.footer__nav-list .footer__nav--item .nav__nest-item {
  font-weight: 400;
}
.footer__nav-list .footer__nav--item .nav__nest-item a {
  align-items: center;
  display: flex;
  gap: 16px;
}
.footer__nav-list .footer__nav--item .nav__nest-item a.--jp {
  font-size: 1.5rem;
}
.footer__nav-list .footer__nav--item .nav__nest-item a::before {
  align-items: center;
  background-color: rgb(53.7868852459, 139.2131147541, 139.2131147541);
  content: "";
  display: flex;
  height: 0.2rem;
  width: 1rem;
}
.footer__nav-list .footer__nav--item .nav__nest-item a:hover::after {
  transform: translateX(10px);
}
.footer__nav-list .footer__nav--item .nav__nest-item a:hover span {
  background-position: left bottom;
  background-size: 100% 1px;
  font-weight: 800;
}
.footer__nav-list .footer__nav--item .nav__nest-item a span {
  background: linear-gradient(#4b6274, #4b6274) right bottom no-repeat;
  background-size: 0 1px;
  transition: all 0.3s cubic-bezier(0.5, 1, 0.8, 1);
}
.footer__nav-list .footer__nav--link {
  font-weight: 800;
}

.footer__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .footer__body {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 56px;
  }
}
.footer__body .footer__address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__body .footer__address .footer__address--primary {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__body .footer__address .footer__address--secondary {
  font-size: 1.4rem;
}

.footer__bottom--nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__bottom--nav {
    align-items: center;
    flex-direction: row;
    gap: 32px;
  }
}

.footer__bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    gap: 32px;
  }
}
.footer__bottom .sns__list {
  background-color: rgb(53.7868852459, 139.2131147541, 139.2131147541);
  border-radius: 32px;
  padding: 8px 16px;
  width: max-content;
}
@media (min-width: 768px) {
  .footer__bottom .footer__copyright {
    margin-left: auto;
  }
}

.slick__item {
  background-position: center top 0px;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 5.8rem - 110px);
}
.slick__item.--item-01 {
  background-image: url("../../../assets/images/slider/slider01.jpg");
}
.slick__item.--item-02 {
  background-image: url("../../../assets/images/slider/slider02.jpg");
}
.slick__item.--item-03 {
  background-image: url("../../../assets/images/slider/slider03.jpg");
}

.--header-content {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.section.--mv {
  background-color: #000;
  height: 100vh;
  min-height: 900px;
  position: fixed;
  width: 100%;
  z-index: 1;
}
.section.--mv::before {
  background: rgba(0, 0, 0, 0.8);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  width: 100%;
  z-index: 3;
}

.video__wrapper {
  height: 100vh;
  opacity: 0.8;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

video {
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  object-fit: cover;
  top: 50%;
  transform: translate(-50%, -50%);
}

.top__mv--text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 0.8;
  margin-bottom: 50px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .top__mv--text {
    margin-top: auto;
    width: 100%;
  }
}
.top__mv--text .top__mv--title {
  display: flex;
  flex-direction: column;
  font-size: 4.8rem;
  font-weight: 900;
  gap: 24px;
  line-height: 1;
}
.top__mv--text .top__mv--title .text__pr {
  font-size: 6rem;
  letter-spacing: -0.4rem;
  line-height: 1;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .top__mv--text .top__mv--title .text__pr {
    font-size: 6.8rem;
  }
}
@media (min-width: 992px) {
  .top__mv--text .top__mv--title .text__pr {
    font-size: 9.8rem;
  }
}
@media (min-width: 1200px) {
  .top__mv--text .top__mv--title .text__pr {
    font-size: 12.8rem;
  }
}
.top__mv--text .top__mv--title .text__se {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .top__mv--text .top__mv--title .text__se {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .top__mv--text .top__mv--title .text__se {
    font-size: 5.8rem;
  }
}
@media (min-width: 1200px) {
  .top__mv--text .top__mv--title .text__se {
    font-size: 11.8rem;
  }
}
.top__mv--text .top__mv--subtitle {
  font-size: 2.2rem;
  letter-spacing: 0.9rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .top__mv--text .top__mv--subtitle {
    font-size: 3rem;
    letter-spacing: 1.2rem;
  }
}

body .text__se {
  animation: mask-animation 1.5s linear forwards;
  -webkit-background-clip: text;
  background-clip: text;
  background-color: #44b0b0;
  background-image: linear-gradient(90deg, #44b0b0, #44b0b0 50%, #fff 50%, #fff);
  background-position: 100% 0;
  background-size: 200% 100%;
  color: transparent;
  transition: background-position 0.8s cubic-bezier(1, -0.01, 0.32, 0.94);
}
body:has(.--concept.fade-in) .text__se {
  background-position: 0 0;
}

@keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.section:has(.message__container) .section__image--block {
  background-color: #f2f2f2;
}
.section:has(.message__container) .section__image {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.container:has(.message__container) {
  gap: 40px;
}

.message__container {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  position: relative;
  gap: 32px;
}
.message__container:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .message__container {
    flex-direction: row-reverse;
  }
  .message__container.--coo {
    flex-direction: row;
  }
}
.message__container .---img-block {
  display: flex;
  flex: 1;
  justify-content: center;
}
.message__container .---img-block img {
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  max-width: 500px;
  width: 100%;
}
.message__container .--text-block {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  min-width: 60%;
}
.message__container .--text-block .--text-block-title {
  color: #83a2b2;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .message__container .--text-block .--text-block-title {
    font-size: 2.4rem;
  }
}
.message__container .--text-block .--message-text {
  display: grid;
  font-size: 1.6rem;
  gap: 24px;
  height: max-content;
}
.message__container .--text-block .--message-text .text__block {
  height: max-content;
}
.message__container .--text-block .--info-block {
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  gap: 8px;
  position: relative;
}
.message__container .--text-block .--info-block::after {
  bottom: -2rem;
  font-size: 20rem;
  line-height: 1;
  opacity: 0.05;
  position: absolute;
  right: 0;
}
.message__container .--text-block .--info-block.--ceo::after {
  content: "CEO";
}
.message__container .--text-block .--info-block.--coo::after {
  content: "COO";
}
.message__container .--text-block .--info-block .--info-sub {
  font-size: 1.2rem;
}
.message__container .--text-block .--info-block .--info-row {
  align-items: center;
  display: flex;
  gap: 16px;
}
.message__container .--text-block .--info-block .--info-row .--info-primary {
  letter-spacing: 0.2rem;
}
.message__container .--text-block .--info-block .--info-row .--info-secondary {
  font-size: 1.2rem;
  opacity: 0.6;
}

.main {
  overflow: hidden;
}
.main:has(.--concept.fade-in) .--mv::before {
  opacity: 1;
}
body.sub-page .main {
  padding-top: 72px;
}
@media (min-width: 768px) {
  body.sub-page .main {
    padding-top: 104px;
  }
}
@media (min-width: 992px) {
  body.sub-page .main {
    padding-top: 104px;
  }
}

.section__img {
  width: 100%;
}

.section {
  min-height: 500px;
  position: relative;
  z-index: 2;
}
body.sub-page .section {
  padding: 16px;
}
@media (min-width: 768px) {
  body.sub-page .section {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  body.sub-page .section {
    padding: 0;
  }
}
.section.--light {
  background-color: transparent;
  padding: 0 24px;
}
@media (min-width: 1200px) {
  .section.--light {
    padding: 0;
  }
}
.section.--message {
  background-color: #44b0b0;
}
.section.--contact {
  background-color: #5D737E;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .section.--contact {
    padding: 48px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .section.--contact {
    padding: 80px 0;
  }
}
.section.--sub-contact {
  background-color: rgba(68, 176, 176, 0.6);
  border-radius: 32px 32px 0 0;
  margin-top: 80px;
}
.section.--sub-contact .container {
  gap: 24px;
}
.section.--sub-contact .sub__container--header {
  border-bottom: 0;
  color: #fff;
  text-align: center;
}
.section.--sub-contact .sub__container--header .sub__container--title {
  opacity: 1;
}
.section.--sub-contact .sub__block--note {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section.--sub-contact .sub__block--note {
    font-size: 2.4rem;
  }
}
.section.--sub-contact .sub__btn--block {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}
.section.--sub-contact .sub__btn--block .btn {
  max-width: 350px;
  width: 100%;
}
.section.--sub-contact .sub__btn--block .sub__btn--block-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .section.--sub-contact .sub__btn--block .sub__btn--block-text {
    font-size: 1.8rem;
  }
}
.container {
  margin: auto;
  max-width: 100%;
  width: 1200px;
}
body.sub-page .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  body.sub-page .container {
    padding: 64px 24px;
  }
}

.section__container {
  z-index: 5;
}

.content__inner {
  padding: 32px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .content__inner {
    width: 80vw;
  }
}
@media screen and (min-width: 992px) {
  .content__inner {
    width: 66vw;
  }
}

.invisible {
  opacity: 0;
}

.content {
  display: grid;
  gap: 16px;
}

.item__title--block {
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .item__title--block {
    font-size: 3.4rem;
  }
}

.item__title--row {
  align-items: center;
  display: flex;
  font-weight: 900;
  line-height: 1;
}

.item__number {
  line-height: 1;
}

.sub__section {
  display: grid;
  gap: 16px;
  line-height: 2;
}
@media (min-width: 992px) {
  .sub__section {
    grid-template-columns: 250px 1fr;
    padding: 0;
  }
}
.sub__section .sub__section--header .sub__section--title {
  display: grid;
  gap: 8px;
}
.sub__section .sub__section--header .sub__section--title.--primary {
  font-size: 2.8rem;
  font-weight: 800;
}
.sub__section .sub__section--header .sub__section--title.--secondary {
  font-size: 1.6rem;
  opacity: 0.6;
}
.sub__section .sub__section--body {
  display: grid;
  gap: 32px;
}
.sub__section .sub__section--body .map {
  aspect-ratio: 16/9;
  width: 100%;
}
.sub__section .sub__section--body .sub__section--content {
  display: grid;
  font-size: 1.8rem;
  gap: 16px;
}
.sub__section .sub__section--body .sub__section--content .sub__section--content-header {
  font-weight: 800;
}
.sub__section .sub__section--body .sub__section--content .sub__section--content-body {
  display: grid;
  font-size: 1.4rem;
  gap: 16px;
}

.section__sub--image img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .section__sub--image img {
    max-width: 1200px;
    width: 1200px;
  }
}

.section__sub--header {
  align-items: center;
  background-color: #ccc;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  overflow: hidden;
  padding: 16px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .section__sub--header {
    padding: 32px;
  }
}
.section__sub--header.--service-block {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 32px 16px;
  place-content: center;
  place-items: center;
}
@media screen and (min-width: 992px) {
  .section__sub--header.--service-block {
    padding: 80px 16px;
  }
}
.section__sub--header.--service-block .section__sub--header-inner {
  justify-content: flex-start;
  padding: 0;
  width: 100%;
}
.section__sub--header.--service-block .section__sub--header-inner .section__sub--title {
  text-align: left;
}
.section__sub--header.--service-block .section__sub--header-inner .section__sub--title {
  padding-bottom: 16px;
}
.section__sub--header.--service-block .section__sub--image {
  aspect-ratio: 16/6;
  align-self: center;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}
.section__sub--header.--service-block .section__sub--image img {
  object-fit: cover;
  max-width: unset;
  width: inherit;
}
.section__sub--header::before {
  background: #7f9399;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  display: block;
  left: 0;
  height: 80%;
  position: absolute;
  top: 0;
  width: 35%;
  z-index: 1;
}
.section__sub--header .section__sub--header-inner {
  display: grid;
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  padding: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .section__sub--header .section__sub--header-inner {
    padding: 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .section__sub--header .section__sub--header-inner {
    padding: 40px 0;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .section__sub--header .section__sub--header-inner {
    padding: 80px 0 0;
  }
}
.section__sub--header .section__sub--title {
  display: grid;
  gap: 16px;
  text-align: center;
}
.section__sub--header .section__sub--title .section__title {
  line-height: 1;
}
.section__sub--header .section__sub--title .section__title.--primary {
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .section__sub--header .section__sub--title .section__title.--primary {
    font-size: 9rem;
  }
}
@media screen and (min-width: 1200px) {
  .section__sub--header .section__sub--title .section__title.--primary {
    font-size: 12rem;
  }
}
.section__sub--header .section__sub--title .section__title.--secondary {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .section__sub--header .section__sub--title .section__title.--secondary {
    font-size: 1.8rem;
    letter-spacing: 0.6rem;
  }
}
@media screen and (min-width: 992px) {
  .section__sub--header .section__sub--title .section__title.--secondary {
    font-size: 2.4rem;
    letter-spacing: 1rem;
  }
}
.section__sub--header .section__sub--title .section__title.--sub {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  gap: 8px;
}
.section__sub--header .section__sub--title .section__title.--sub::before {
  background-color: #44b0b0;
  content: "";
  height: 0.4rem;
  width: 2rem;
}
.section__sub--header .section__note--block {
  display: grid;
  gap: 8px;
}

.section__sub--container {
  background-color: #f0eee9;
  display: grid;
  grid-template-rows: 250px auto;
}
@media screen and (min-width: 768px) {
  .section__sub--container {
    grid-template-rows: 350px auto;
  }
}
@media screen and (min-width: 992px) {
  .section__sub--container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 350px auto;
  }
}

.sub__container--header {
  border-bottom: 1px solid #ccc;
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
}
.sub__container--header .sub__container--title {
  line-height: 1;
}
.sub__container--header .sub__container--title.--primary {
  font-size: 4.4rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .sub__container--header .sub__container--title.--primary {
    font-size: 12rem;
  }
}
.sub__container--header .sub__container--title.--secondary {
  font-size: 1.6rem;
  opacity: 0.6;
}
@media screen and (min-width: 992px) {
  .sub__container--header .sub__container--title.--secondary {
    font-size: 2.4rem;
  }
}
.sub__container--header .section__note--block {
  display: grid;
  gap: 16px;
}

.section__sub--note {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.section__sub--note:has(.--sns) {
  flex-direction: column;
  gap: 32px;
}

.section__sub--img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  flex: 1;
  justify-items: center;
}
.section__sub--img.--news-img {
  background-image: url("../../assets/images/news/top.jpg");
}
.section__sub--img.--about-img {
  background-image: url("../../assets/images/about/members.jpg");
}

.section__note.--primary {
  font-size: 1.6rem;
}
.section__note.--secondary {
  font-size: 1.4rem;
  opacity: 0.8;
}

.--top-content {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: flex-start;
  padding: 24px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .--top-content {
    padding: 32px;
  }
}

.--concept {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0;
  position: relative;
  transition: all 1s ease-out;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .--concept {
    margin-top: 0;
  }
}

.concept__wrapper {
  align-items: center;
  display: grid;
  gap: 7.2rem;
}

.concept__title {
  font-weight: 900;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .concept__title {
    font-size: 4.6rem;
    line-height: 1.4;
  }
}

.concept__text {
  display: grid;
  font-size: 1.4rem;
  font-weight: 400;
  gap: 32px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (min-width: 768px) {
  .concept__text {
    font-size: 2rem;
    line-height: 40px;
  }
}

.--message {
  color: #fff;
}
.--message .container {
  display: grid;
  gap: 16px;
  padding: 80px 32px;
}
@media screen and (min-width: 768px) {
  .--message .container {
    gap: 32px;
    padding: 80px 32px;
  }
}
@media screen and (min-width: 1200px) {
  .--message .container {
    gap: 32px;
    grid-template-rows: max-content 1fr max-content;
    padding: 80px 32px;
  }
}
.--message .container .title__section {
  grid-area: 1/1/2/2;
}
@media screen and (min-width: 992px) {
  .--message .container .title__section {
    grid-area: 1/1/2/7;
  }
}
.--message .container .btn__more {
  grid-area: 4/1/5/2;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .--message .container .btn__more {
    margin: unset;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .--message .container .btn__more {
    grid-area: 3/1/4/3;
    margin-left: unset;
    margin-top: auto;
  }
}
.--message .container .text__section {
  grid-area: 2/1/3/2;
}
@media screen and (min-width: 992px) {
  .--message .container .text__section {
    grid-area: 2/1/3/3;
  }
}

.gallery__section {
  grid-area: 3/1/4/2;
}
@media screen and (min-width: 992px) {
  .gallery__section {
    grid-area: 2/3/4/7;
    max-width: 500px;
  }
}
.gallery__section .gallery__list {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .gallery__section .gallery__list {
    align-items: flex-start;
    flex-direction: row;
    gap: 32px;
    height: 100%;
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .gallery__section .gallery__list {
    align-items: flex-start;
    flex-direction: row;
    gap: 32px;
    height: 100%;
  }
}
.gallery__section .gallery__list .gallery__item {
  display: grid;
  grid-template-rows: 1fr max-content;
  height: 100%;
  width: 100%;
}

.gallery__image {
  display: flex;
  width: 100%;
}
.gallery__image .gallery__image--img {
  aspect-ratio: 1/1.3;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gallery__image .gallery__image--img {
    aspect-ratio: 1/1.3;
  }
}
@media screen and (min-width: 992px) {
  .gallery__image .gallery__image--img {
    aspect-ratio: 1/1.22;
  }
}
.gallery__image .--item-01 {
  object-position: 10% 15%;
}
.gallery__image .--item-02 {
  object-position: 10% 25%;
}

.gallery__info {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .gallery__info {
    font-size: 2rem;
  }
}
.gallery__info .gallery__info--text.--sub {
  font-size: 1.2rem;
  opacity: 0.8;
}
.gallery__info .gallery__info--text.--primary {
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
}
@media screen and (min-width: 768px) {
  .gallery__info .gallery__info--text.--primary {
    font-size: 1.8rem;
  }
}

.--service {
  background-color: #ccc;
  min-height: max-content;
  overflow: hidden;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .--service {
    padding: 32px 0 32px 32px;
  }
}
@media screen and (min-width: 992px) {
  .--service {
    padding: 64px 0 64px 64px;
  }
}
@media screen and (min-width: 1200px) {
  .--service {
    padding: 12rem 0 12rem 12rem;
  }
}
.--service .section__wrapper {
  width: 100%;
}
.--service .slider__container {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 992px) {
  .--service .slider__container {
    grid-template-columns: 50rem 1fr;
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .--service .slider__container {
    grid-template-columns: 60rem 1fr;
  }
}
.--service .title__text {
  line-height: 1;
}
.--service .swiper {
  height: 100%;
  margin: 0;
  overflow: initial;
  width: 100%;
}
.--service .slider__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 80px 0 0;
}
@media screen and (min-width: 768px) {
  .--service .slider__header {
    padding: 64px 64px 64px 0;
  }
}
.--service .slider__content {
  flex: 1;
  overflow: hidden;
}
.--service .swiper-slide {
  background-color: #44b0b0;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  height: 650px;
  overflow: hidden;
  padding: 32px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .--service .swiper-slide {
    padding: 32px;
  }
}
.--service .swiper-slide .item__title--secondary {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .--service .swiper-slide .item__title--secondary {
    font-size: 1.6rem;
  }
}
.--service .swiper-slide:hover {
  color: #000;
}
.--service .swiper-slide:hover .item__title--block {
  margin-top: 250px;
}
.--service .swiper-slide:hover .item__img--block {
  height: 100%;
  left: 0;
  opacity: 0.3;
  transition: 0.2s all ease-in-out;
  position: absolute;
  top: 0;
}
.--service .item__img--block {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 235px;
  min-height: 235px;
  width: 100%;
}
.--service .item__img--block.--01 {
  background-image: url("../../assets/images/slider/service/01.jpg");
}
.--service .item__img--block.--02 {
  background-image: url("../../assets/images/slider/service/02.jpg");
}
.--service .item__img--block.--03 {
  background-image: url("../../assets/images/slider/service/03.jpg");
}
.--service .item__img--block.--04 {
  background-image: url("../../assets/images/slider/service/04.jpg");
}
.--service .item__img--block.--05 {
  background-image: url("../../assets/images/slider/service/05.jpg");
}
.--service .item__img--block img {
  width: 100%;
}
.--service .item__title--block {
  z-index: 1000;
}
.--service .item__text--block {
  display: flex;
  flex: 1;
  flex-direction: column;
  z-index: 1000;
}
.--service .item__text--block .btn {
  margin: auto auto 0 auto;
}
.--service .item__text--block .btn__more {
  margin: auto;
}
.--service .item__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .--service .item__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.service__container,
.products__container {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .service__container,
  .products__container {
    gap: 80px;
  }
}
.service__container .service__list,
.products__container .service__list {
  display: grid;
}
.service__container .service__list .service__item--note,
.products__container .service__list .service__item--note {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .service__container .service__list .service__item--note,
  .products__container .service__list .service__item--note {
    font-size: 1.6rem;
  }
}
.service__container .service__list.--service-list,
.products__container .service__list.--service-list {
  counter-reset: number 0;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list,
  .products__container .service__list.--service-list {
    gap: 112px;
  }
}
.service__container .service__list.--service-list .service__item,
.products__container .service__list.--service-list .service__item {
  display: grid;
  gap: 16px;
  grid-template-rows: max-content 1fr;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item,
  .products__container .service__list.--service-list .service__item {
    gap: 80px;
    grid-template-areas: "A B";
    grid-template-columns: 45% 1fr;
    grid-template-rows: 1fr;
    padding: 0 0 56px;
  }
  .service__container .service__list.--service-list .service__item:nth-child(odd),
  .products__container .service__list.--service-list .service__item:nth-child(odd) {
    grid-template-areas: "B A";
    grid-template-columns: 1fr 45%;
  }
}
.service__container .service__list.--service-list .service__item:not(:last-of-type)::after,
.products__container .service__list.--service-list .service__item:not(:last-of-type)::after {
  align-items: center;
  background-image: linear-gradient(to right, rgba(75, 98, 116, 0.1) 50%, transparent 50%);
  background-size: 20px 10px;
  background-repeat: repeat-x;
  background-position: left bottom;
  bottom: -32px;
  content: "";
  display: flex;
  height: 10px;
  position: absolute;
  width: 100%;
}
.service__container .service__list.--service-list .service__item .service__item--img,
.products__container .service__list.--service-list .service__item .service__item--img {
  overflow: hidden;
}
.service__container .service__list.--service-list .service__item .service__item--img:hover img,
.products__container .service__list.--service-list .service__item .service__item--img:hover img {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item .service__item--img,
  .products__container .service__list.--service-list .service__item .service__item--img {
    grid-area: A;
  }
}
.service__container .service__list.--service-list .service__item .service__item--img img,
.products__container .service__list.--service-list .service__item .service__item--img img {
  transition: 0.4s all ease-in-out;
  width: 100%;
}
.service__container .service__list.--service-list .service__item .service__item--details,
.products__container .service__list.--service-list .service__item .service__item--details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.service__container .service__list.--service-list .service__item .service__item--details::after,
.products__container .service__list.--service-list .service__item .service__item--details::after {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(200px, 40vw, 400px);
  font-weight: 600;
  display: block;
  right: 0;
  line-height: 0.7;
  opacity: 0.05;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item .service__item--details,
  .products__container .service__list.--service-list .service__item .service__item--details {
    grid-area: B;
  }
}
.service__container .service__list.--service-list .service__item .service__item--details .item__title,
.products__container .service__list.--service-list .service__item .service__item--details .item__title {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item .service__item--details .item__title,
  .products__container .service__list.--service-list .service__item .service__item--details .item__title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    gap: 16px;
  }
}
.service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--ja,
.products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--ja {
  color: #44b0b0;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--ja,
  .products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--ja {
    font-size: 2.6rem;
  }
}
.service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en,
.products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  font-weight: 200;
  gap: 8px;
  opacity: 0.6;
}
.service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en::before, .service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en::after,
.products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en::before,
.products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en::after {
  align-items: center;
  background-color: #4b6274;
  content: "";
  display: flex;
  height: 1px;
  width: 12px;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en,
  .products__container .service__list.--service-list .service__item .service__item--details .item__title .service__item--title.--en {
    font-size: 2rem;
  }
}
.service__container .service__list.--service-list .service__item .service__item--details .btn,
.products__container .service__list.--service-list .service__item .service__item--details .btn {
  margin-top: auto;
}
.service__container .service__list.--products-list,
.products__container .service__list.--products-list {
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--products-list,
  .products__container .service__list.--products-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .service__container .service__list.--products-list,
  .products__container .service__list.--products-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
.service__container .service__list.--products-list .service__item,
.products__container .service__list.--products-list .service__item {
  display: grid;
  gap: 16px;
  grid-template-rows: max-content 1fr;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--products-list .service__item,
  .products__container .service__list.--products-list .service__item {
    gap: 32px;
  }
}
.service__container .service__list.--products-list .service__item .service__item--details,
.products__container .service__list.--products-list .service__item .service__item--details {
  display: grid;
  gap: 16px;
  grid-template-rows: max-content 1fr max-content;
}
.service__container .service__list.--products-list .service__item .service__item--title,
.products__container .service__list.--products-list .service__item .service__item--title {
  min-height: 64px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service__container .service__list.--products-list .service__item .service__item--title,
  .products__container .service__list.--products-list .service__item .service__item--title {
    font-size: 2.8rem;
  }
}
.service__container .service__list.--products-list .service__item .service__item--link,
.products__container .service__list.--products-list .service__item .service__item--link {
  font-size: 1.4rem;
  margin-top: auto;
}

.--service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .--service-list {
    padding: 0 16px;
  }
}
.--service-list:has(.service__slider--list) {
  min-height: max-content;
}

@media screen and (min-width: 992px) {
  .service__slider--container {
    padding: 0 0 0 16px;
  }
}

.service__slider--list .swiper-slide {
  border: 1px solid #44b0b0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
}
.service__slider--list .swiper-slide .service__slider--item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow: hidden;
  padding: 12px;
  position: relative;
}
.service__slider--list .swiper-slide .service__slider--item:hover {
  color: #000;
}
.service__slider--list .swiper-slide .service__slider--item:hover::after {
  opacity: 0.6;
}
.service__slider--list .swiper-slide .service__slider--item::before {
  bottom: -20px;
  color: rgba(75, 98, 116, 0.2);
  content: attr(data-label);
  display: block;
  font-size: 13rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  right: -16px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .service__slider--list .swiper-slide .service__slider--item::before {
    bottom: -38px;
    font-size: 18rem;
  }
}
@media screen and (min-width: 992px) {
  .service__slider--list .swiper-slide .service__slider--item::before {
    bottom: -50px;
    font-size: 22rem;
  }
}
.service__slider--list .swiper-slide .service__slider--item::after {
  background-color: white;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.2s opacity ease-in-out;
  width: 100%;
}
.service__slider--list .swiper-slide .service__slider--item.--fintech {
  background-image: url(../../assets/images/slider/service/01.jpg);
}
.service__slider--list .swiper-slide .service__slider--item.--dx {
  background-image: url(../../assets/images/slider/service/02.jpg);
}
.service__slider--list .swiper-slide .service__slider--item.--bank {
  background-image: url(../../assets/images/slider/service/03.jpg);
}
.service__slider--list .swiper-slide .service__slider--item.--hasshadai {
  background-image: url(../../assets/images/slider/service/04.jpg);
}
.service__slider--list .swiper-slide .service__slider--item.--stone-music {
  background-image: url(../../assets/images/slider/service/05.jpg);
}
.service__slider--list .swiper-slide .service__slider--item.--active {
  color: #fff;
}
.service__slider--list .swiper-slide .service__slider--item.--active::after {
  background-color: #44b0b0;
  opacity: 1;
}
.service__slider--list .swiper-slide .item__title--block {
  gap: calc(8px / 2);
  z-index: 10;
}
.service__slider--list .swiper-slide .item__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .service__slider--list .swiper-slide .item__title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .service__slider--list .swiper-slide .item__title {
    font-size: 3.4rem;
  }
}
.service__slider--list .swiper-slide .item__title--secondary {
  font-size: 1.1rem;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .service__slider--list .swiper-slide .item__title--secondary {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .service__slider--list .swiper-slide .item__title--secondary {
    font-size: 1.8rem;
  }
}
.service__slider--list .swiper-slide .item__text--block {
  z-index: 10;
}
.service__slider--list .swiper-slide .item__text--block .item__text {
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .service__slider--list .swiper-slide .item__text--block .item__text {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .service__slider--list .swiper-slide .item__text--block .item__text {
    font-size: 1.4rem;
  }
}

.--products {
  background: url("../../assets/images/products/bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding-bottom: 80px;
  position: relative;
}
.--products .title__section {
  max-width: 1200px;
  padding: 80px 16px;
}
@media screen and (min-width: 768px) {
  .--products .title__section {
    margin: 0 auto;
    padding: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .--products .title__section {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1500px) {
  .--products .title__section {
    padding: 64px 0;
  }
}
.--products .slider__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.--products-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.--products-swiper .swiper-slide {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  width: 150px;
}
.--products-swiper .swiper-slide img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .--products-swiper .swiper-slide {
    width: 300px;
  }
}
@media screen and (min-width: 1500px) {
  .--products-swiper .swiper-slide {
    width: 400px;
  }
}

.--news {
  color: #fff;
  height: 100%;
  padding-bottom: 80px;
  width: 100vw;
}
.--news .title__section {
  max-width: 1200px;
  padding: 80px 16px;
}
@media screen and (min-width: 768px) {
  .--news .title__section {
    margin: 0 auto;
    padding: 64px 16px;
  }
}
@media screen and (min-width: 1200px) {
  .--news .title__section {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1500px) {
  .--news .title__section {
    padding: 64px 0;
  }
}
.--news.circle {
  align-items: center;
  display: flex;
  justify-content: center;
}
@keyframes showCircle {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(150%);
  }
}
.news__list {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
  body.sub-page .news__list {
    grid-template-columns: 1fr;
  }
}
body.sub-page .news__list {
  display: flex;
  flex-direction: column;
}
.news__list .news__item {
  display: grid;
  grid-template-columns: 25% 1fr;
  font-size: 1.6rem;
  gap: 16px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .news__list .news__item {
    grid-template-columns: 150px 1fr;
    padding: 16px;
  }
}
body.--light .news__list .news__item:not(:last-child) {
  border-bottom: 5px solid rgba(17, 24, 34, 0.2);
}
body.sub-page .news__list .news__item {
  display: flex;
  flex-direction: column;
  padding: 0 0 16px 0;
}
@media screen and (min-width: 768px) {
  body.sub-page .news__list .news__item {
    display: grid;
    grid-template-columns: 150px 1fr;
  }
}

.news__item--text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__item--title {
  align-items: center;
  display: flex;
  gap: 24px;
  line-height: 2.4rem;
}

.news__item--note {
  font-weight: 400;
  opacity: 0.6;
}

.badge {
  background-color: #44b0b0;
  color: #fff;
  line-height: 2.4rem;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .badge {
    font-size: 1.4rem;
  }
}

.news__item--img {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .news__item--img {
    aspect-ratio: 1/1;
    padding: 16px;
  }
}
.news__item--img img {
  height: 150px;
  object-fit: contain;
  width: 100%;
}
.news__item--date {
  align-items: center;
  display: flex;
  gap: 24px;
  opacity: 0.6;
}
.news__item--date::before {
  align-items: center;
  background-color: #fff;
  content: "";
  display: flex;
  height: 24px;
  width: 1px;
}
body.--light .news__item--date::before {
  background-color: #000e47;
}

.title__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.title__link {
  font-size: 1.8rem;
}

.sns__list {
  align-items: center;
  display: flex;
  gap: 24px;
}
.sns__list.--small .sns__list--item .icon__sns {
  height: 24px;
}
.sns__list.--small .sns__list--item .icon__sns.--x {
  height: 20px;
}
.sns__list .sns__list--item {
  transition: all 0.2s ease-in-out;
}
.sns__list .sns__list--item:hover {
  transform: scale(1.2);
}
.sns__list .sns__list--item .icon__sns {
  height: 40px;
}
.sns__list .sns__list--item .icon__sns.--x {
  height: 33px;
}

.--recruit {
  background-attachment: fixed;
  background-color: #000;
  background-position: right -200px top -50px;
  background-repeat: no-repeat;
  background-size: 60%;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .--recruit {
    padding: 0;
  }
}
.--recruit .container {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .--recruit .container {
    gap: 80px;
    padding: 64px 32px 0;
  }
}
@media screen and (min-width: 992px) {
  .--recruit .container {
    gap: 80px;
    padding: 64px 32px 0;
  }
}
@media screen and (min-width: 1200px) {
  .--recruit .container {
    padding: 12rem 40px 0;
  }
}
@media screen and (min-width: 1500px) {
  .--recruit .container {
    padding: 12rem 0 0;
  }
}
.--recruit .recruit__bg {
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.--recruit .recruit__bg .swiper-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.--recruit .recruit__bg .swiper-slide {
  height: auto !important;
}
@media screen and (max-width: 768px) {
  .--recruit .recruit__bg .swiper-slide.swiper-slide {
    animation-delay: unset;
    animation-name: unset;
  }
}
.--recruit .recruit__bg .swiper-slide.--01 {
  background-image: url("../../assets/images/slider/recruit/bg/01.jpg");
}
.--recruit .recruit__bg .swiper-slide.--02 {
  background-image: url("../../assets/images/slider/recruit/bg/02.jpg");
}
.--recruit .recruit__bg .swiper-slide.--03 {
  background-image: url("../../assets/images/slider/recruit/bg/03.jpg");
}
.--recruit .recruit__bg .swiper-slide.--04 {
  background-image: url("../../assets/images/slider/recruit/bg/04.jpg");
}
.--recruit .recruit__bg .swiper-slide.--05 {
  background-image: url("../../assets/images/slider/recruit/bg/05.jpg");
}
@media screen and (min-width: 768px) {
  .--recruit .recruit__content {
    animation-delay: unset;
    animation-name: unset;
  }
}
.--recruit .recruit__content--list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .--recruit .recruit__content--list {
    flex-direction: row;
  }
}
.--recruit .--list-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content 1fr max-content;
  gap: 16px;
  height: auto;
  padding: 16px;
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .--recruit .--list-item {
    padding-left: 16px;
  }
}
.--recruit .--list-item::before {
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  left: -16px;
  letter-spacing: 5px;
  position: absolute;
  top: -3%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .--recruit .--list-item::before {
    font-size: 1.8rem;
    left: -16px;
    top: -6.5%;
  }
}
@media screen and (min-width: 992px) {
  .--recruit .--list-item::before {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .--recruit .--list-item::before {
    font-size: 3rem;
    left: -32px;
  }
}
.--recruit .--list-item::after {
  background-color: #44b0b0;
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
  display: block;
  height: 100%;
  left: 24px;
  position: absolute;
  top: 0;
  width: calc(100% - 24px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .--recruit .--list-item::after {
    left: 0;
    width: 100%;
  }
}
.--recruit .--list-item.--01::before {
  content: "新卒採用";
}
.--recruit .--list-item.--02::before {
  content: "中途採用";
}
.--recruit .--list-item.--03::before {
  content: "女性エンジニア採用";
}
@media screen and (min-width: 768px) {
  .--recruit .--list-item {
    gap: 16px;
    padding: 16px;
  }
}
@media screen and (min-width: 992px) {
  .--recruit .--list-item {
    gap: 24px;
    padding: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .--recruit .--list-item {
    gap: 32px;
    padding: 24px;
  }
}
.--recruit .--list-item .item__text--block {
  grid-area: 1/1/2/2;
}
.--recruit .--list-item .item__img--block {
  grid-area: 2/1/3/2;
  margin-top: auto;
}
.--recruit .--list-item .item__img--block img {
  width: 100%;
}
.--recruit .--list-item .btn__more {
  grid-area: 3/1/4/2;
  width: 100%;
}
.--recruit .item__title--block {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .--recruit .item__title--block {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .--recruit .item__title--block {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .--recruit .item__title--block {
    font-size: 3rem;
  }
}
.--recruit .item__text--block {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .--recruit .item__text--block {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .--recruit .item__text--block {
    font-size: 1.4rem;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__input {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  color: #000e47;
  padding: 16px;
  width: 100%;
}
.form__input:focus {
  outline: none;
}

.--contact {
  background-color: #5D737E;
  color: #fff;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .--contact {
    padding: 48px 24px;
  }
}
@media screen and (min-width: 992px) {
  .--contact {
    padding: 80px 0;
  }
}
.--contact .container {
  display: grid;
  gap: 32px;
}
.--contact form {
  max-width: 90rem;
  width: 100%;
}

.contact__list {
  display: grid;
  font-size: 1.6rem;
  gap: 32px;
}
.contact__list .contact__item {
  display: grid;
  gap: 16px;
}
.contact__list .contact__item--label {
  color: #fff;
}
.--required span {
  align-items: center;
  display: flex;
  gap: 16px;
}
.--required span::after {
  align-items: center;
  background-color: #44b0b0;
  border-radius: 1.2rem;
  content: "必須";
  display: flex;
  line-height: 2.4rem;
  justify-content: center;
  padding: 0 16px;
}

.btn__check--list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn__check--list .btn__check--item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn__check--list .btn__check--item {
    width: max-content;
  }
}

.btn__check--label {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  padding: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn__check--label {
    width: max-content;
  }
}
.btn__check--label:hover {
  border-color: #44b0b0;
}
.btn__check--label:has(input:checked) {
  background-color: #44b0b0;
}
.btn__check--label input {
  display: none;
}
.btn__check--label input:checked + span {
  color: #fff;
  opacity: 1;
}
.btn__check--label input:checked + span:after {
  height: 8px;
  left: 4px;
  margin-top: -4px;
  width: 8px;
}
.btn__check--label input + span {
  color: #000e47;
  font-weight: 400;
  opacity: 0.4;
  padding-left: 24px;
  position: relative;
}
.btn__check--label input + span::before, .btn__check--label input + span::after {
  content: "";
  display: block;
  position: absolute;
}
.btn__check--label input + span:before {
  border: 1px solid #000e47;
  border-radius: 8px;
  height: 16px;
  left: 0;
  margin-top: -8px;
  top: 50%;
  width: 16px;
}
.btn__check--label input + span:after {
  background: #000e47;
  border-radius: 4px;
  height: 0;
  left: 8px;
  margin-top: 0;
  top: 50%;
  transition: 0.2s ease-in-out;
  width: 0;
}

.check__row {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  gap: 16px;
}

.checkbox {
  height: 24px;
  position: relative;
  width: 24px;
}
.checkbox input {
  display: none;
}
.checkbox:has(input:checked):after {
  transform: rotate(-45deg) scale(1, 1);
}
.checkbox::before, .checkbox::after {
  content: "";
  display: block;
  position: absolute;
}
.checkbox::before {
  background-color: #fff;
  border: 1px solid #000e47;
  height: 24px;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 24px;
}
.checkbox::after {
  border: 2px solid #000e47;
  border-right-style: none;
  border-top-style: none;
  content: "";
  height: 8px;
  left: 4.5px;
  transform: rotate(-45deg) scale(0, 0);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  top: 6px;
  width: 16px;
  z-index: 1;
}

.--policy .text__section .text__section--title {
  font-size: 1.8rem;
  letter-spacing: 1.6rem;
}

.explain__section {
  display: grid;
  gap: 24px;
}

.explain__list {
  display: grid;
  font-size: 1.4rem;
  gap: 40px;
}
.explain__list .explain__list--item {
  display: grid;
  gap: 8px;
}
.explain__list .explain__list--item .explain__text {
  font-weight: 300;
  line-height: 1.8;
}

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