@charset "UTF-8";
/*------------------------------------------------------------------------
  global
------------------------------------------------------------------------*/
/*----------------------------------------
	variable
----------------------------------------*/
:root {
  --guide-container: 1360px;
  --guide-inner: 1200px;
  --gutter-pc: 40px;
  --gutter-sp: 20px;
  --color-main: #007EE3;
  --color-gradation: linear-gradient(to right, #2F9FF9 0%, #B19FF0 100%);
  --color-red: #F2405D;
  --color-gray: #F0F0F0;
  --color-text: #03070D;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Syne", sans-serif;
}

/*------------------------------------------------------------------------
  global
------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
foundation
├ base
└ form
------------------------------------------------------------------------*/
/*----------------------------------------
	base
----------------------------------------*/
html {
  overscroll-behavior: none;
}

body {
  font-family: var(--font-ja);
  font-weight: normal;
  color: var(--color-text);
}

* {
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: medium;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.self-size {
  width: auto;
  max-width: 100%;
}

small {
  font-size: inherit;
}

/*----------------------------------------
	Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 12px 1em;
  background: #fff;
  border: 1px solid #B3C3CE;
  border-radius: 5px;
  font-family: inherit;
  line-height: 1.5;
  color: inherit;
}

input[type=number],
input[type=password] {
  width: 100%;
  padding: 12px 1em;
  background: #fff;
  border: 1px solid #B3C3CE;
  border-radius: 5px;
  font-family: inherit;
  line-height: 1.5;
  color: inherit;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus,
input[type=number],
input[type=password] {
  outline-color: var(--color-main);
}

textarea {
  resize: vertical;
  min-height: -moz-max-content;
  min-height: max-content;
}

/*select
--------------------------*/
.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -75%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}

/*radio, checkbox
------------------------------------*/
input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

/*クリック範囲*/
input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.5em 0.5em 0.5em 2.75em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.5;
}

/*フォーカス時*/
input[type=radio]:focus + span::before,
input[type=checkbox]:focus + span::before {
  outline: 2px solid var(--color-main);
  outline-offset: -1px;
}

/*ラジオボタンスタイル*/
input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.625em;
  height: 1.625em;
  border: 1px solid #B3C3CE;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}

/*ラジオボタン（未選択）*/
input[type=radio] + span:after {
  content: "";
  display: none;
}

/*ラジオボタン（選択）*/
input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.25em;
  width: 1.125em;
  height: 1.125em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--color-main);
  line-height: 1;
}

/*チェックボックススタイル*/
input[type=checkbox] + span:before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  content: "";
  width: 1.625em;
  height: 1.625em;
  border: 1px solid #B3C3CE;
  border-radius: 5px;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}

/*チェックボックス（未選択）*/
input[type=checkbox] + span:after {
  content: "";
  display: none;
}

/*チェックボックス（選択）*/
input[type=checkbox]:checked + span:before {
  background: var(--color-main);
}

input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -60%;
  left: 0.55em;
  width: 0.55em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/*------------------------------------------------------------------------
  layout
------------------------------------------------------------------------*/
/* body直下のページ全体を囲む要素
------------------------------------------------------ */
.l-wrapper {
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.l-wrapper__bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: url(../images/bg_gradation.jpg) center/cover;
}
.l-wrapper__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-gray) 1px, transparent 1px);
  background-position: 1.5px 1.5px;
  background-size: 5px 5px;
  opacity: 0.5;
}
.l-wrapper__bg #gradient-canvas {
  width: 100%;
  height: 100%;
  --gradient-color-1: #34a3fe;
  --gradient-color-2: #80d0ff;
  --gradient-color-3: #b8f3ff;
  --gradient-color-4: #c8cbfe;
}
.l-wrapper__overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(26, 48, 74, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}
.l-wrapper:has(.l-menu[aria-hidden=false]) .l-wrapper__overlay {
  opacity: 1;
  visibility: visible;
}

/* ページ全体のコンテンツ幅
------------------------------------------------------ */
.l-container {
  position: relative;
  z-index: 0;
  max-width: var(--guide-container);
  margin-inline: auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc);
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .l-container {
    max-width: 550px;
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp);
  }
}

.l-container-inner {
  max-width: var(--guide-inner);
  margin-inline: auto;
}

.l-container-full {
  margin-inline: calc(50% - 50vw);
  padding-left: calc(50vw - 50%) !important;
  padding-right: calc(50vw - 50%) !important;
}

/* ヘッダー
------------------------------------------------------ */
.l-header {
  position: fixed;
  z-index: 999;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  width: calc(100% - var(--gutter-pc) * 2);
  background: #fff;
  border-radius: 100vmax;
  padding: 16px 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}
.l-header[data-top-anima] {
  transform: translateY(calc(-100% - 20px));
  transition: transform 0.6s;
}
.l-header[data-top-anima=true] {
  transition-delay: 0.9s;
  transform: translateY(0);
}
@media (max-width: 1023px) {
  .l-header {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .l-header {
    width: calc(100% - var(--gutter-sp) * 2);
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.l-header__logo {
  flex-shrink: 0;
  width: 240px;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .l-header__logo {
    width: 180px;
    margin-left: 0;
  }
}

/* ヘッダーナビ */
.l-header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-header-nav__link {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.l-header-nav__link:hover {
  opacity: 1;
  color: var(--color-main);
}

.l-header__button {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 100vmax;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: var(--color-main);
}
.l-header__button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--color-gradation);
  opacity: 0;
  transition: opacity 0.3s;
}
.l-header__button:hover::before {
  opacity: 1;
}

/* 下層ページタイトル
------------------------------------------------------ */
.l-page-header {
  padding: 170px 0 70px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.l-page-header__title {
  overflow: hidden;
  font-family: var(--font-en);
  font-size: clamp(80px, min(6.9444444444vw, 100px), 100px);
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-main);
}
@media (max-width: 767px) {
  .l-page-header__title {
    font-size: 65px;
  }
}
.l-page-header__text {
  line-height: 2.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .l-page-header__text {
    font-size: 0.875em;
  }
}

/* スマホ用メニュー
------------------------------------------------------ */
.l-menu-button {
  display: none;
}
@media (max-width: 1023px) {
  .l-menu-button {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
  }
  .l-menu-button::before, .l-menu-button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-text);
    transition: top 0.3s 0.15s, rotate 0.3s;
  }
  .l-menu-button::before {
    top: calc(50% - 4px);
  }
  .l-menu-button::after {
    top: calc(50% + 4px);
  }
  .l-menu-button[aria-expanded=true]::before, .l-menu-button[aria-expanded=true]::after {
    top: 50%;
    transition: top 0.3s, rotate 0.3s 0.15s;
  }
  .l-menu-button[aria-expanded=true]::before {
    rotate: -30deg;
  }
  .l-menu-button[aria-expanded=true]::after {
    rotate: 30deg;
  }
}

/* メニュー本体 */
.l-menu {
  display: none;
}
@media (max-width: 1023px) {
  .l-menu {
    display: block;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    background: #fff;
    visibility: hidden;
    height: 0;
    transition: visibility 0.6s, height 0.6s;
  }
  .l-menu[aria-hidden=false] {
    visibility: visible;
  }
  .l-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 70px 24px 40px;
  }
  .l-menu__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: -11px 0;
  }
  .l-menu__link {
    display: block;
    padding: 11px 30px;
    font-family: var(--font-en);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    color: var(--color-main);
  }
  .l-menu__button {
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: inline-block;
    min-width: 220px;
    padding: 11px 30px;
    border-radius: 100vmax;
    font-family: var(--font-en);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: var(--color-main);
  }
  .l-menu__button::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: var(--color-gradation);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .l-menu__button:hover::before {
    opacity: 1;
  }
}

/* メインコンテンツ
------------------------------------------------------ */
.l-main {
  flex-grow: 1;
  padding: 0 0 120px;
  background: linear-gradient(transparent, white 485px, #fff);
}
.l-main--top {
  background: none;
  padding: 0;
}

/* フッター
------------------------------------------------------ */
.l-footer {
  padding: 80px 0 24px;
  color: #fff;
  background: #1A304A;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 40px 20px 0;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 767px) {
  .l-footer__inner {
    gap: 30px;
  }
}
.l-footer__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1023px) {
  .l-footer__body {
    flex-direction: column;
  }
}
.l-footer__logo {
  flex-shrink: 0;
  width: 400px;
}
@media (max-width: 1023px) {
  .l-footer__logo {
    width: 330px;
  }
}
@media (max-width: 767px) {
  .l-footer__logo {
    width: 260px;
  }
}
.l-footer__button {
  display: inline-block;
  min-width: 160px;
  padding: 6px 30px;
  border-radius: 100vmax;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s;
}
@media (max-width: 767px) {
  .l-footer__button {
    min-width: auto;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    border: none;
  }
}
.l-footer__button:hover {
  opacity: 1;
  border-color: #fff;
}
.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 19px 0 20px;
}
.l-footer__copyright {
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .l-footer__copyright {
    text-align: left;
  }
}

/*  フッターナビ */
.l-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .l-footer-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .l-footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.l-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .l-footer-nav__list {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .l-footer-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.l-footer-nav__link {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.l-footer-nav__link:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .l-footer-nav__link {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------
// component
------------------------------------------------------------------------*/
/* ボタン
------------------------------------------------------ */
.c-button {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: inline-block;
  min-width: 210px;
  padding: 13px 24px;
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--color-main);
}
@media (max-width: 767px) {
  .c-button {
    padding: 10.5px 24px;
    font-size: 14px;
  }
}
.c-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--color-gradation);
  opacity: 0;
  transition: opacity 0.3s;
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/icon_arrow_circle_24.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .c-button::after {
    width: 20px;
  }
}
.c-button:hover::before {
  opacity: 1;
}

.c-button:has(input) {
  padding: 0;
}
.c-button:has(input) input {
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 24px;
  color: inherit;
  field-sizing: content;
}
@media (max-width: 767px) {
  .c-button:has(input) input {
    padding: 10.5px 24px;
  }
}

.c-button:has(:disabled) {
  background: rgba(26, 48, 74, 0.4);
  pointer-events: none;
}

/*------------------------------------------------------------------------
// project
------------------------------------------------------------------------*/
/* トップページ
------------------------------------------------------ */
/* トップページ共通 */
.p-top-heading__en {
  overflow: hidden;
  display: block;
  font-family: var(--font-en);
  font-size: clamp(64px, min(6.9444444444vw, 100px), 100px);
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-main);
}
@media (max-width: 767px) {
  .p-top-heading__en {
    font-size: 46px;
    line-height: 1;
  }
}
.p-top-heading__en span {
  display: block;
}
.p-top-heading__ja {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-heading__ja {
    margin-top: 5px;
    font-size: 15px;
  }
}

/*  メインビジュアル */
.p-top-mv {
  position: relative;
  height: 100svh;
}
.p-top-mv__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 112px 0 13.6268343816vh;
}
@media (max-width: 767px) {
  .p-top-mv__inner {
    padding: 100px 0 7.2249589491vh;
  }
}
.p-top-mv__content {
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (max-width: 767px) {
  .p-top-mv__content {
    width: -moz-fit-content;
    width: fit-content;
    gap: 14px;
  }
}
.p-top-mv__text {
  overflow: hidden;
  font-size: clamp(28px, min(2.5vw, 36px), 36px);
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0.05em;
  text-align: right;
}
.p-top-mv__textMask {
  overflow: hidden;
  display: inline-block;
}
.p-top-mv__text[data-top-anima=true] .u-animation-slideIn {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .p-top-mv__text[data-top-anima=true] .u-animation-slideIn {
    transform: translateX(0) translateY(0);
  }
}
@media (max-width: 767px) {
  .p-top-mv__text {
    margin: 0 14px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.352em;
    text-align: left;
    writing-mode: vertical-rl;
  }
  .p-top-mv__text .u-animation-slideIn {
    transform: translateX(100%) translateY(0);
  }
}
.p-top-mv__copy {
  margin-left: calc(var(--gutter-pc) * -1);
  font-family: var(--font-en);
  font-size: min(12.5vw, 180px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.p-top-mv__copyMask {
  overflow: hidden;
  display: inline-block;
}
.p-top-mv__copy[data-top-anima=true] .u-animation-slideIn {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .p-top-mv__copy {
    margin-inline: -8px;
    font-size: 65px;
    line-height: 1.2;
  }
}
.p-top-mv__scroll-down {
  position: absolute;
  right: 50px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 40px;
  transform: translateX(90px);
  transition: transform 0.6s;
}
.p-top-mv__scroll-down[data-top-anima=true] {
  transition-delay: 0.9s;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .p-top-mv__scroll-down {
    right: var(--gutter-sp);
    bottom: -20px;
    width: 26px;
  }
}
.p-top-mv__scroll-down span {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  writing-mode: vertical-lr;
  color: var(--color-main);
}
@media (max-width: 767px) {
  .p-top-mv__scroll-down span {
    font-size: 16px;
  }
}
.p-top-mv__scroll-down::after {
  display: block;
  content: "";
  width: 1px;
  height: 130px;
  background: var(--color-main);
  animation: scrollDown 2s infinite;
}
@media (max-width: 767px) {
  .p-top-mv__scroll-down::after {
    height: 85px;
  }
}
@keyframes scrollDown {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
}

/*  ビジョン */
.p-top-vision {
  padding: 175px 0 165px;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  transition: color 0.6s, background-color 0.6s;
}
@media (max-width: 767px) {
  .p-top-vision {
    padding: 80px 0 110px;
  }
}
.p-top-vision.is-light {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
}
.p-top-vision__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(100px, min(8.3333333333vw, 120px), 120px);
  width: 100%;
}
@media (max-width: 767px) {
  .p-top-vision__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
  }
}
.p-top-vision__title {
  position: relative;
  margin-top: 85px;
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .p-top-vision__title {
    margin-top: 0;
    padding-bottom: 24px;
  }
}
.p-top-vision__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 1px;
  width: calc(100% + 120px);
  background: var(--color-gradation);
}
.p-top-vision__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-top-vision__content {
    gap: 20px;
    margin-left: 50px;
  }
}
.p-top-vision__copy {
  font-size: clamp(24px, min(2.2222222222vw, 32px), 32px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-vision__copy {
    font-size: 20px;
  }
}
.p-top-vision__text {
  font-size: clamp(14px, min(1.25vw, 18px), 18px);
  font-weight: 500;
  line-height: 3.3;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-vision__text {
    font-size: 14px;
    line-height: 2.8;
  }
}

/*  ケーススタディー */
.p-top-case {
  padding: 155px 0 100px;
}
@media (max-width: 767px) {
  .p-top-case {
    padding: 80px 0 95px;
  }
}
@media (max-width: 767px) {
  .p-top-case__pin {
    display: contents;
  }
}
.p-top-case__title {
  position: sticky;
  top: 155px;
}
@media (max-width: 767px) {
  .p-top-case__title {
    position: static;
  }
}
.p-top-case__list {
  margin-top: 50px;
  margin-left: min(6.25vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-top-case__list {
    margin-left: 0;
  }
}
.p-top-case__msg {
  position: relative;
  margin-top: 100px;
  font-size: 22px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .p-top-case__msg {
    margin-top: 60px;
    font-size: 16px;
  }
}
.p-top-case__msg::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 400px;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .p-top-case__msg::after {
    bottom: -8px;
    width: 300px;
  }
}
.p-top-case__marquee {
  display: flex;
  white-space: nowrap;
  overflow: visible;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-top-case__marquee {
    margin-top: 12px;
  }
}
.p-top-case__marquee-text {
  display: flex;
  white-space: nowrap;
  overflow: visible;
  gap: 20px;
  animation: marquee 20s linear infinite both;
}
.p-top-case__marquee-text span {
  font-family: var(--font-en);
  font-size: 130px;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(to right, #81B4FF 0%, #37C3FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-top-case__marquee-text span {
    font-size: 80px;
  }
}
@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 20px);
  }
}

/* プロジェクト */
.p-top-project {
  position: sticky;
  top: 355px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 59fr 68fr;
  height: 470px;
  border-radius: 20px;
  transition: none;
}
@media (max-width: 767px) {
  .p-top-project {
    position: relative;
    overflow: visible;
    z-index: 0;
    top: initial;
    display: block;
    height: 490px;
    border-radius: 0;
    pointer-events: none;
  }
  .p-top-project * {
    pointer-events: all;
  }
}
.p-top-project__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: min(5.5555555556vw, 80px) min(4.8611111111vw, 70px) min(3.4722222222vw, 50px) min(5.5555555556vw, 80px);
  background: #fff;
}
@media (max-width: 767px) {
  .p-top-project__content {
    position: absolute;
    z-index: 1;
    bottom: 40px;
    margin-left: var(--gutter-sp);
    margin-right: calc(50% - 50vw);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 30px calc(50vw - 50%) 30px 30px;
  }
}
.p-top-project__title {
  position: relative;
  padding-left: 1.5294117647em;
  font-size: clamp(26px, min(2.3611111111vw, 34px), 34px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-top-project__title {
    padding-left: 32px;
    font-size: 22px;
  }
}
.p-top-project__title::before {
  position: absolute;
  top: min(0.625vw, 9px);
  left: 0;
  content: "";
  width: 1em;
  aspect-ratio: 32/36;
  background: var(--color-main);
  -webkit-mask: url(../images/icon_hash.svg) no-repeat center/contain;
          mask: url(../images/icon_hash.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .p-top-project__title::before {
    top: 5.5px;
  }
}
.p-top-project__text {
  flex-grow: 1;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-project__text {
    margin-top: -4px;
    font-size: 13px;
  }
}
.p-top-project__img {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top-project__img {
    position: absolute;
    inset: 0;
    margin-inline: calc(50% - 50vw);
  }
}
.p-top-project__img::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  transition: background-color 0.6s;
}
.p-top-project:hover .p-top-project__img::before {
  background: transparent;
}
.p-top-project__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.6s;
}
.p-top-project:hover .p-top-project__img img {
  scale: 1.05;
}
.p-top-project:hover .c-button::before {
  opacity: 1;
}

/*  会社情報 */
.p-top-company {
  padding: 120px 0;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .p-top-company {
    padding: 80px 0 110px;
  }
}
.p-top-company .p-top-heading {
  text-align: center;
}
.p-top-company .p-top-heading__en {
  color: inherit;
}
.p-top-company .p-top-heading__ja {
  margin-top: 10px;
}
.p-top-company__data {
  margin-top: 65px;
}
@media (max-width: 767px) {
  .p-top-company__data {
    margin-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
  }
}
.p-top-company__data-row {
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media (max-width: 767px) {
  .p-top-company__data-row {
    grid-template-columns: auto;
  }
}
.p-top-company__data dt, .p-top-company__data dd {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-company__data dt, .p-top-company__data dd {
    font-size: 14px;
  }
}
.p-top-company__data dt {
  font-weight: bold;
  padding: 40px 0 37px;
  border-bottom: 3px solid #fff;
}
@media (max-width: 767px) {
  .p-top-company__data dt {
    padding: 20px 0 8px;
    border-bottom: none;
    line-height: 1;
  }
}
.p-top-company__data dd {
  padding: 40px 0 38px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .p-top-company__data dd {
    padding: 8px 0 18px;
  }
}

/* CTA */
.p-top-cta {
  padding: 115px 0 150px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .p-top-cta {
    padding: 80px 0 110px;
  }
}
.p-top-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 836px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-cta__inner {
    gap: 50px;
  }
}

/* お問い合わせ */
.p-top-contact {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 60px;
  border-radius: 100vmax;
  color: #fff;
  background: var(--color-main);
}
@media (max-width: 1023px) {
  .p-top-contact {
    grid-template-columns: auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-top-contact {
    gap: 5px;
    border-radius: 20px;
    padding: 20px 20px 70px;
  }
}
.p-top-contact__title {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-top-contact__title {
    font-size: 40px;
  }
}
.p-top-contact__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.6;
}
@media (max-width: 767px) {
  .p-top-contact__text {
    font-size: 13px;
    line-height: 1.8;
  }
}
.p-top-contact::after {
  position: absolute;
  bottom: 50%;
  right: 40px;
  translate: 0 50%;
  content: "";
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/icon_arrow_circle_48.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .p-top-contact::after {
    bottom: 20px;
    right: 50%;
    translate: 50% 0;
    width: 30px;
  }
}
.p-top-contact::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--color-gradation);
  opacity: 0;
  transition: opacity 0.3s;
}
.p-top-contact:hover::before {
  opacity: 1;
}

/* お知らせ */
.p-top-news {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 55px;
}
@media (max-width: 767px) {
  .p-top-news {
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 var(--gutter-sp);
  }
}
@media (max-width: 767px) {
  .p-top-news .p-top-heading {
    text-align: center;
  }
}
.p-top-news .p-top-heading__en {
  font-size: 50px;
}
@media (max-width: 767px) {
  .p-top-news .p-top-heading__en {
    font-size: 40px;
  }
}
.p-top-news .p-top-heading__ja {
  font-size: 16px;
}
@media (max-width: 767px) {
  .p-top-news .p-top-heading__ja {
    font-size: 15px;
  }
}
.p-top-news__body {
  padding: 28px 0 28px 54px;
  border-left: 1px solid var(--color-main);
}
@media (max-width: 767px) {
  .p-top-news__body {
    padding: 19px 0 0;
    border-left: none;
    border-top: 1px solid var(--color-main);
  }
}
.p-top-news__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .p-top-news__list {
    gap: 20px;
  }
}
.p-top-news__item {
  display: grid;
  grid-template-columns: 6.75em 1fr;
}
@media (max-width: 767px) {
  .p-top-news__item {
    grid-template-columns: auto;
  }
}
.p-top-news__item time {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: var(--color-main);
}
.p-top-news__item p {
  font-size: 16px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .p-top-news__item p {
    line-height: 1.8;
  }
}

/* お問い合わせ
------------------------------------------------------ */
/* お問い合わせフォーム */
.p-contact-form__list {
  padding: 80px 60px;
  border-radius: 20px;
  background: #DDE8F0;
}
@media (max-width: 1023px) {
  .p-contact-form__list {
    padding: 50px 30px;
  }
}
.p-contact-form__item {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: start;
  gap: 24px;
}
@media (max-width: 1023px) {
  .p-contact-form__item {
    grid-template-columns: auto;
    align-items: stretch;
    gap: 10px;
  }
}
.p-contact-form__item:not(:first-child) {
  margin-top: 40px;
  border-top: 1px solid #C1D2E2;
  padding-top: 39px;
}
@media (max-width: 1023px) {
  .p-contact-form__item:not(:first-child) {
    margin-top: 20px;
    padding-top: 19px;
  }
}
.p-contact-form__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 13px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .p-contact-form__label {
    min-height: auto;
    padding: 0;
    font-size: 16px;
  }
}
.p-contact-form__required {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-red);
  border: 1px solid;
}
@media (max-width: 1023px) {
  .p-contact-form__required {
    font-size: 12px;
  }
}
.p-contact-form__postal {
  flex-shrink: 0;
  padding: 7px 19px;
  border-radius: 100vmax;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text);
  transition: color 0.3s, background-color 0.3s;
}
.p-contact-form__postal:hover {
  color: #fff;
  background: var(--color-text);
}
.p-contact-form__field:has(.p-contact-form__postal) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.p-contact-form__field:has(.p-contact-form__postal) input[type=text] {
  max-width: 256px;
}
.p-contact-form__agree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-top: 70px;
}
@media (max-width: 1023px) {
  .p-contact-form__agree {
    margin-top: 50px;
    font-size: 0.875em;
  }
}
.p-contact-form__agree input[type=checkbox] + span {
  margin-right: 0;
  font-weight: 600;
}
.p-contact-form__link a:link {
  text-decoration: underline;
}
.p-contact-form__link a:link:hover {
  text-decoration: none;
}
.p-contact-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* 記事投稿エリア
------------------------------------------------------ */
@media (max-width: 767px) {
  .p-post {
    font-size: 0.875em;
  }
}
.p-post > *:not(h2) {
  margin-top: 1em;
}
.p-post p {
  line-height: 1.8;
}
.p-post h2 {
  margin-top: 50px !important;
  font-size: 1.5em;
  font-weight: bold;
}
.p-post h2 + * {
  margin-top: 1.25em;
}
.p-post h3 {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.8;
}
.p-post h3 + * {
  margin-top: 0;
}
.p-post a {
  text-decoration: underline;
}
.p-post a:hover {
  text-decoration: none;
}
.p-post ul > li {
  position: relative;
  margin-top: 10px;
  padding-left: 1em;
  line-height: 1.3;
}
.p-post ul > li::before {
  position: absolute;
  left: calc(0.5em - 1.5px);
  top: 50%;
  translate: -50%;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.p-post ul + * {
  margin-top: 1em;
}
.p-post ol > li {
  margin-top: 10px;
  margin-left: 1em;
  line-height: 1.3;
  list-style-type: decimal;
}
.p-post ol + * {
  margin-top: 1em;
}

/*------------------------------------------------------------------------
// component
------------------------------------------------------------------------*/
/* スタイル調整用CSS
------------------------------------------------------ */
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 0px;
  height: 0px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.u-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .u-lg-none {
    display: none;
  }
}

.u-lg-block {
  display: none;
}
@media (max-width: 1023px) {
  .u-lg-block {
    display: block;
  }
}

@media (max-width: 767px) {
  .u-md-none {
    display: none;
  }
}

.u-md-block {
  display: none;
}
@media (max-width: 767px) {
  .u-md-block {
    display: block;
  }
}

@media (max-width: 639px) {
  .u-sm-none {
    display: none;
  }
}

.u-sm-block {
  display: none;
}
@media (max-width: 639px) {
  .u-sm-block {
    display: block;
  }
}

/* CSSアニメーション
------------------------------------------------------ */
.u-animation-slideIn {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s, transform 0.6s;
}
.u-animation-slideIn[data-scroll-anima=true] {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=common.css.map */