@charset "UTF-8";
/* root */
:root {
  --color-main: #111;
  --color-white: #fff;
  --color-sub: #EAF4FB;
  --color-sub2: #1F3A5F;
  --color-sub3: #F7F8FA;
  --color-title: #666;
  --color-accent: #3A8DDE;
  --color-logo: #4C7EA8;
  --color-logo2: #6B7280;
  --color-border: #eee;
  --color-label: #888;
  --color-required: #e60023;
  --color-black: #333;
  --font-logo: "Roboto", sans-serif;
  --line-l: 180%;
  --line-m: 160%;
  --line-m2: 170%;
  --line-s: 130%;
  --ls-short: 0.03em;
  --ls-normal: 0.05em;
  --ls-middle: 0.08em;
}

/* ブレイクポイント設定 */
/* フォントサイズ */
/* スタイル調整 */
/* 擬似要素の共通基盤 */
/* transition */
/* 基盤 */
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  height: 100%;
  color: var(--color-main);
  background-color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

a {
  display: block;
  color: var(--color-main);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

span {
  display: block;
}

body, a, span {
  position: relative;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

/* レイアウト */
.l-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-block: 15rem;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-block: 10rem;
    min-height: auto;
  }
}

.l-page-wrapper {
  max-width: 86rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 132rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 2rem;
  }
}

.l-page-inner {
  position: relative;
  max-width: 127rem;
  border-bottom: 1px solid var(--color-border);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-page-inner {
    padding-inline: 2rem;
  }
}

.l-works-inner {
  max-width: 101rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}

/* コンポーネント */
.c-bg-white {
  background-color: var(--color-white);
}

.c-bg-sub {
  background-color: var(--color-sub);
}

.c-bg-sub2 {
  background-color: var(--color-sub2);
}

.c-bg-sub3 {
  background-color: var(--color-sub3);
}

.c-white {
  color: var(--color-white);
}

.c-blue-btn {
  border-radius: 4rem;
  overflow: hidden;
}
.c-blue-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.c-blue-btn a::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
}
.c-blue-btn a {
  background: var(--color-accent);
  color: var(--color-white);
}
.c-blue-btn a::before {
  background: var(--color-white);
}

.c-black-btn {
  border-radius: 4rem;
  overflow: hidden;
}
.c-black-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.c-black-btn a::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
}
.c-black-btn a {
  background: var(--color-black);
  color: var(--color-white);
}
.c-black-btn a::before {
  background: var(--color-white);
}

.c-section__heading {
  font-size: 6.5rem;
  line-height: 110%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-section__heading {
    font-size: 4rem;
  }
}

.c-section__title {
  color: var(--color-title);
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

.c-lead-sentence {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 2.5rem;
  line-height: var(--line-l);
  letter-spacing: var(--ls-middle);
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .c-lead-sentence {
    font-size: 1.7rem;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.c-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.c-card__item {
  position: relative;
  height: 100%;
  background: var(--color-white);
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.05);
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .c-card__item {
    width: 100%;
    padding: 3rem;
  }
}

.c-card__number {
  display: block;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-card__number {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: var(--ls-normal);
    margin-bottom: 1.5rem;
  }
}

.c-card__item-title {
  font-size: 2.5rem;
  line-height: var(--line-s);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-card__item-title {
    font-size: 1.7rem;
    word-break: keep-all;
    margin-bottom: 1rem;
  }
}

.c-card__item-text {
  font-size: 1.7rem;
  line-height: var(--line-l);
}
@media screen and (max-width: 767px) {
  .c-card__item-text {
    font-size: 1.5rem;
    line-height: 170%;
  }
}

.c-works-item {
  position: relative;
  width: 100%;
  transition: 0.3s;
}
.c-works-item:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
}
.c-works-item:hover .c-works-item__img::after {
  opacity: 1;
}
.c-works-item:hover .c-works-item__img img {
  transform: scale(1.05);
}
.c-works-item:hover .c-works-item__overlay {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.c-works-item__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-works-item__img {
    border-radius: 0.8rem;
  }
}
.c-works-item__img::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s;
}
.c-works-item__img img {
  transition: 0.3s;
}

.c-works-item__overlay {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: var(--ls-middle);
  opacity: 0;
  transition: 0.5s;
}

.c-tag-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-logo);
}
@media screen and (max-width: 767px) {
  .c-tag-list {
    gap: 0.6rem;
  }
}

.c-tag-item {
  color: var(--color-accent);
  border: solid 1px var(--color-accent);
  border-radius: 0.5rem;
}

.border {
  border-right: solid 1px var(--color-white);
}

.mt-adjust {
  margin-top: 3rem;
}

.mb-adjust {
  margin-bottom: 1.2rem;
}

.pr-adjust {
  padding-right: 2rem;
}

.pr-adjust2 {
  padding-right: 2.5rem;
}

.z-adjust {
  z-index: 1001;
}

.hover-shine a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -104%;
  width: 50%;
  height: 108%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) skewX(-20deg);
}
.hover-shine a:hover::before {
  left: 102%;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, left 0.6s ease;
}

.hover-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.hover-arrow .c-link-arrow {
  display: inline-block;
  transition: 0.3s;
}
.hover-arrow:hover .c-link-arrow {
  transform: translateX(0.6rem);
}

.hover-left a::before {
  transform: translateX(-100%);
  transition: 0.3s;
}
.hover-left:hover a::before {
  transform: translateX(0);
}

.js-header.is-hidden {
  transform: translateY(-100%);
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.2s;
}

.js-fadeUp01 {
  opacity: 0;
  margin-top: 2rem;
}/*# sourceMappingURL=common.css.map */