@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1244px) {
  html {
    font-size: 1.2861736334vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1244px;
  padding-right: 3.75rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn a {
    font-size: 15px;
    padding: 8px 4px 8px 12px;
    gap: 16px;
  }
}

.c-btn__link {
  background: #000000;
  border-radius: 4px;
  color: #f8f8f8;
  font-size: 16px;
  padding: 8px 8px 8px 15px;
  gap: 33px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-btn__link:hover {
  opacity: 1;
}

.c-btn.--yellow .c-btn__link {
  background: #ffcd2a;
  color: #222222;
}

.c-btn.--white .c-btn__link {
  background: #f8f8f8;
  color: #000000;
}

.c-btn__text-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.c-btn__text {
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  position: relative;
}

.c-btn__arrow-wrap {
  border-radius: 4px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  aspect-ratio: 1/1;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.c-btn__arrow-wrap img {
  width: 20px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-btn__arrow-wrap {
    width: 36px;
  }
  .c-btn__arrow-wrap img {
    width: 14px;
    height: 12px;
  }
}

.c-btn.--white .c-btn__arrow-wrap {
  background: #b1b1b1;
}

.c-btn__arrow {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn__text.--top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-btn__link:hover .c-btn__text.--top {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-btn__text.--bottom {
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-btn__link:hover .c-btn__text.--bottom {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-btn__arrow.--top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-btn__link:hover .c-btn__arrow.--top {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.c-btn__arrow.--bottom {
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  top: 0;
}

.c-btn__link:hover .c-btn__arrow.--bottom {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.c-top-secttlen {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-top-secttlen {
    font-size: 16px;
  }
}

.c-top-secttlenja {
  font-size: 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-top-secttlenja {
    font-size: 28px;
  }
}

.c-top-secttlenja span {
  background: #000000;
  color: #f8f8f8;
  display: inline-block;
  padding: 0 7px;
  line-height: 1.3;
}

.c-top-secttlenja .--gray {
  background: #b1b1b1;
  color: #000;
}

.c-top-secttlenja .--white {
  background: #F8F8F8;
  color: #000;
}

.p-footer {
  background: #000;
  color: #f8f8f8;
  padding-top: 100px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 70px;
  }
}

.p-footer__secttlenen {
  text-align: center;
}

.p-footer__text {
  text-align: center;
  font-size: 29px;
  margin-top: 25px;
  line-height: 1.2413793103;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 22px;
    margin-top: 19px;
    letter-spacing: -0.04em;
  }
}

.p-footer-contact {
  margin-top: 48px;
  border-top: 4px solid #f8f8f8;
  border-bottom: 4px solid #f8f8f8;
  padding-top: 37px;
  padding-bottom: 46px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer-contact {
    margin-top: 40px;
    padding-top: 39px;
    padding-bottom: 25px;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__btn a {
    min-width: 290px;
    font-size: 20px;
  }
}

.p-footer-contact__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 31px;
  font-size: 18px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.p-footer-contact__mail a {
  display: inline-block;
  font-size: 20px;
}
.p-footer-contact__mail small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__mail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-top: 12px;
  }
  .p-footer-contact__mail a {
    line-height: 1.5;
  }
}

.p-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.1875rem;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer-menu {
    display: block;
    margin-top: 28px;
  }
}

.p-footer-menu__logo {
  width: 139px;
}

.p-footer-menu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem 2.5rem;
  font-size: 15px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-footer-menu__main {
    gap: 12px 30px;
  }
}

.p-footer-address {
  margin-top: 50px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-footer-address {
    margin-top: 40px;
  }
}

.p-footer-copyright {
  margin-top: 53px;
  font-weight: 500;
}
.p-footer-copyright small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-footer-copyright {
    text-align: center;
    margin-top: 12px;
  }
}

.p-header {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .p-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-header__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1144px;
  padding-right: 3.75rem;
  padding-left: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}

.p-header__logo {
  width: 154px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .p-header__logo {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 106px;
  }
}

.p-header__menu {
  padding: 32px 0;
  min-height: 100px;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    min-height: 64px;
  }
}

@media screen and (max-width: 1000px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1050px) {
  .p-header__nav ul {
    gap: 1.875rem;
  }
}

.p-header__nav ul li a {
  font-size: 15px;
  display: inline-block;
}

.p-header__contactBtn {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .p-header__contactBtn {
    display: none;
  }
}

.p-header__contactBtn a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 0 0 0 8px;
}
@media screen and (max-width: 1050px) {
  .p-header__contactBtn a {
    padding: 12px 14px;
  }
}

/* ハンバーガーボタンの見た目 */
.p-hamburger {
  position: absolute;
  top: 27px;
  right: 28px;
  width: 27px;
  height: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}
@media screen and (min-width: 1001px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger span {
  display: block;
  width:100%;
  height: 1px;
  background-color: #000;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* 開いたとき（×アイコン） */
.p-hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(20deg);
          transform: translateY(4px) rotate(20deg);
  background-color: #fff;
}

.p-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.p-hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-4px) rotate(-20deg);
          transform: translateY(-4px) rotate(-20deg);
  background-color: #fff;
}

/* メニューの初期状態：非表示 */
.p-hamburger-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .95);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1000;
}

/* メニュー表示時 */
.p-hamburger-nav.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.p-hamburger-nav__nav ul li {
  padding: 10px 0;
}

.p-hamburger-nav__contactBtn a {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 1.2em;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.p-topAbout {
  padding-top: 48px;
  padding-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    padding-top: 36px;
    padding-bottom: 80px;
  }
}

.p-topAbout__contents {
  padding-right: 2.1875rem;
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__contents {
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: 41px;
  }
}

.p-topAbout .p-topAbout__secttlenen,
.p-topAbout__contents {
  padding-left: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout .p-topAbout__secttlenen,
  .p-topAbout__contents {
    padding-left: 0;
  }
}

.p-topAbout__body {
  padding-top: 17px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__body {
    padding-top: 8px;
  }
}

.p-topAbout__secttlenja .--01 strong {
  margin-left: -1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__secttlenja .--01 strong {
    margin-left: -16px;
  }
}

.p-topAbout__secttlenja .--02 {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__secttlenja .--02 {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-topAbout__secttlenja .--first {
    padding-right: 0;
  }
  .p-topAbout__secttlenja .--second {
    padding-left: 0;
  }
}
.p-topAbout__text {
  margin-top: 29px;
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__text {
    margin-top: 22px;
    line-height: 1.75;
    font-size: 16px;
  }
}

.p-topAbout__btn {
  margin-top: 41px;
}

@media screen and (max-width: 767px) {
  .p-topAbout__img {
    max-width: 261px;
    margin-inline: auto;
  }
}

.p-topCaseStudy {
  padding-top: 147px;
  background: #000;
  color: #f8f8f8;
  padding-bottom: 0.5px;
  position: relative;
  overflow: hidden;
}
.p-topCaseStudy::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy {
    padding-top: 114px;
  }
}

.p-topCaseStudy__contents01 {
  display: grid;
  grid-template-columns: 23.125rem 1fr;
  gap: 6.8125rem;
  padding-bottom: 99px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__contents01 {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.p-topCaseStudy__secttlenja {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__secttlenja {
    margin-top: 7px;
  }
}

.p-topCaseStudy__list li {
  padding: 38px 0 32px;
  position: relative;
}
.p-topCaseStudy__list li::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  border-top: 2px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, #f8f8f8 0px, #f8f8f8 10px, transparent 10px, transparent 20px);
     border-image: repeating-linear-gradient(to right, #f8f8f8 0px, #f8f8f8 10px, transparent 10px, transparent 20px);
  border-image-slice: 1;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li {
    padding: 28px 0 28px;
  }
  .p-topCaseStudy__list li::before {
    width: 100%;
  }
}

.p-topCaseStudy__list li:first-child {
  padding-top: 8px;
}

@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li + li::before {
    width: 100%;
  }
}

.p-topCaseStudy__list li .ttls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .ttls {
    display: block;
  }
}

.p-topCaseStudy__list li .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 12px;
}
.p-topCaseStudy__list li .ttl::after {
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 100px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .ttl::after {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li:not(:first-child) .ttl::after {
    content: none;
  }
}

.p-topCaseStudy__list li .kpi {
  font-size: 20px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.p-topCaseStudy__list li .result {
  display: grid;
  grid-template-columns: 211px 1fr;
  gap: 4.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .result {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-topCaseStudy__list li .num {
  font-size: 31px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .num {
    font-size: 23px;
  }
}

.p-topCaseStudy__list li .num .big {
  font-size: 4.625rem;
  color: #ffcd2a;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .num .big {
    font-size: 54px;
  }
}

.p-topCaseStudy__list li .comment {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__list li .comment {
    font-size: 18px;
  }
}

.p-topCaseStudy__contents02 {
  position: relative;
  padding-left: 5.625rem;
  padding-bottom: 91px;
}
.p-topCaseStudy__contents02::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__contents02 {
    padding-left: 0;
    padding-bottom: 54px;
  }
}

.p-topCaseStudy__decoText {
  position: absolute;
}
.p-topCaseStudy__decoText span {
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-topCaseStudy__decoText {
    left: -3rem;
  }
  .p-topCaseStudy__decoText span {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: pre;
    line-height: 1;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__decoText {
    top: -54px;
    left: 0;
  }
  .p-topCaseStudy__decoText span {
    font-size: 16px;
  }
}

.p-topCaseStudy__head02 {
  position: relative;
}

.p-topCaseStudy__head02 span {
  display: inline-block;
  background: #000000;
  padding: 2px 5px;
  font-size: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__head02 span {
    font-size: 18px;
  }
}

.p-topCaseStudy__head02 span.--02 {
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__head02 span.--02 {
    margin-top: 5px;
  }
}

.p-topCaseStudy__nayami {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4.8125rem 1.875rem;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__nayami {
    grid-template-columns: 1fr;
    padding: 0 0 0 23px;
    margin-top: 26px;
    gap: 15px;
  }
}

.p-topCaseStudy__nayami li .index {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #b1b1b1;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  color: #3b4043;
}

.p-topCaseStudy__nayami li .text01 {
  color: #3b4043;
  font-size: 20px;
  margin-top: 13px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__nayami li .text01 {
    font-size: 18px;
    margin-top: 8px;
  }
}

.p-topCaseStudy__nayami li .text02 {
  font-weight: 500;
  color: #000000;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-topCaseStudy__nayami li .text02 {
    margin-top: 5px;
  }
}

.p-topColumn {
  border-top: 4px solid #000;
  padding-top: 104px;
}
@media screen and (max-width: 767px) {
  .p-topColumn {
    padding-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-topColumn__secttlenen {
    text-align: center;
  }
}

.p-topColumn__secttlenja {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-topColumn__secttlenja {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-topColumn__secttlenja {
    margin-top: 9px;
  }
}

.p-topColumn__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-topColumn__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.p-topColumn__list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-topColumn__list {
    display: contents;
  }
}

.p-topColumn__list .p-topColumn__item + .p-topColumn__item {
  margin-top: 27px;
}
.p-topColumn__list .p-topColumn__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-topColumn__list .p-topColumn__item a {
    display: block;
  }
}

.p-topColumn__thumb {
  width: 100%;
  aspect-ratio: 554/307;
}
.p-topColumn__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topColumn__list .p-topColumn__thumb {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .p-topColumn__list .p-topColumn__thumb {
    width: 100%;
  }
}

.p-topColumn__list .p-topColumn__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-topColumn__ttl {
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-topColumn__ttl {
    margin-top: 11px;
  }
}

.p-topColumn__list .p-topColumn__ttl {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-topColumn__list .p-topColumn__ttl {
    margin-top: 5px;
  }
}

.p-topColumn__excerpt {
  font-weight: 500;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topColumn__excerpt {
    margin-top: 4px;
  }
}

.p-topFeature {
  padding-top: 129px;
  padding-bottom: 133px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topFeature {
    padding-top: 210px;
    padding-bottom: 81px;
  }
}

.p-topFeature__img {
  position: absolute;
  top: -4.0625rem;
  right: -9.5625rem;
  width: 40.75rem;
}
@media screen and (max-width: 767px) {
  .p-topFeature__img {
    top: -48px;
    right: -34px;
    width: 378px;
  }
}

@media screen and (min-width: 768px) {
  .p-topFeature__secttlenen {
    text-align: center;
  }
}

.p-topFeature__secttlenja {
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .p-topFeature__secttlenja {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-topFeature__secttlenja {
    margin-top: 8px;
  }
}

.p-topFeature__text {
  margin-top: 31px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-topFeature__text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-topFeature__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

.p-topFeature__contents {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__contents {
    background: rgba(177, 177, 177, .15);
    padding-top: 1px;
    margin-top: 38px;
  }
}

@media screen and (min-width: 768px) {
  .p-topFeature__box {
    background: rgba(177, 177, 177, .15);
    padding: 52px 74px 0;
    max-width: 934px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-topFeature__box {
    margin-top: 41px;
  }
}

.p-topFeature__list {
  position: relative;
}
.p-topFeature__list::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 30px;
  width: 3px;
  height: calc(100% - 30px);
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list::before {
    top: 25px;
    left: 25px;
    height: calc(100% - 25px);
  }
}

.p-topFeature__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li {
    grid-template-columns: 55px 1fr;
    gap: 27px;
  }
}

.p-topFeature__list li:last-child {
  padding-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li:last-child {
    padding-bottom: 74px;
  }
}

.p-topFeature__list li + li {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li + li {
    margin-top: 21px;
  }
}

.p-topFeature__list li .index {
  font-size: 22px;
  line-height: 1;
  border: 3px solid #000;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li .index {
    font-size: 20px;
  }
}

.p-topFeature__list li .body {
  padding-top: 13px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li .body {
    padding-top: 0;
  }
}

.p-topFeature__list li .ttl {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li .ttl {
    font-size: 18px;
    line-height: 1.5;
  }
}

.p-topFeature__list li .text {
  font-weight: 500;
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-topFeature__list li .text {
    margin-top: 12px;
  }
}

.p-topMv {
  padding-top: 2.3125rem;
  padding-bottom: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-topMv {
    padding-top: 24px;
    padding-bottom: 22px;
    overflow: hidden;
  }
}

.p-topMv__lead01 {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-topMv__lead01 {
    line-height: 1.6;
    font-size: 22px;
  }
}

.p-topMv__lead01 .deco {
  display: inline-block;
  border-radius: 4px;
  background: #000000;
  color: #f8f8f8;
  padding: 0px 4px;
  line-height: 1.4;
}

.p-topMv__lead02 {
  font-size: 3.5625rem;
  font-weight: 900;
  text-align: center;
  margin-top: 14px;
  line-height: 1.2456140351;
}
@media screen and (max-width: 767px) {
  .p-topMv__lead02 {
    margin-top: 3px;
    font-size: 2.25rem;
    line-height: 1.5;
  }
}

.p-topMv__btn {
  margin-top: 18px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topMv__btn {
    margin-top: 10px;
  }
}

.p-topMv__img {
  margin-top: -23px;
}
.p-topMv__img img {
  width: 49.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-topMv__img {
    position: relative;
    height: 320px;
    margin-top: 26px;
  }
  .p-topMv__img img {
    position: absolute;
    width: auto;
    height: 309px;
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-topNews {
  padding-top: 94px;
  padding-bottom: 129px;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    padding-top: 60px;
    padding-bottom: 71px;
  }
}

@media screen and (min-width: 768px) {
  .p-topNews__secttlenen {
    text-align: center;
  }
}

.p-topNews__secttlenja {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-topNews__secttlenja {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-topNews__secttlenja {
    margin-top: 8px;
  }
}

.p-topNews__list {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 45px;
}

.p-topNews__item {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  position: relative;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-topNews__item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    height: 1px;
    width: 37px;
    background: #3b4043;
  }
}

.p-topNews__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.p-topNews__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(175, 175, 175, .2);
}
@media screen and (max-width: 767px) {
  .p-topNews__link {
    display: block;
    padding-top: 17px;
    padding-bottom: 13px;
  }
}

.p-topNews__date {
  font-size: 14px;
}

.p-topNews__cat {
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  padding: 4px 11px;
  background: #eeeeee;
  border-radius: 14px;
}

.p-topNews__ttl {
  margin-left: 25px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-topNews__ttl {
    margin-left: 0;
    margin-right: 10px;
    margin-top: 3px;
  }
}

.p-topNews__arrow {
  display: inline-block;
  margin-left: auto;
  width: 8px;
}
.p-topNews__arrow img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-topNews__more {
  margin-top: 39px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-topNews__more {
    margin-top: 29px;
  }
}

.p-topNews__more a {
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
}
.p-topNews__more a img {
  width: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-topNews__more a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-topService {
  padding-top: 129px;
  padding-bottom: 132px;
  position: relative;
  border-top: 4px solid #000;
}
@media screen and (max-width: 767px) {
  .p-topService {
    padding-top: 78px;
    padding-bottom: 182px;
  }
}

.p-topService__intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5.3125rem;
  padding-left: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-topService__intro {
    grid-template-columns: 1fr;
    gap: 1.8125rem;
    padding-left: 0;
  }
}

.p-topService__secttlenen span {
  display: block;
  padding-bottom: 9px;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .p-topService__secttlenen span {
    display: inline-block;
    width: 156px;
    padding-bottom: 10px;
  }
}

.p-topService__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-topService__text {
    line-height: 1.75;
  }
}

.p-topService__contents {
  margin-top: 90px;
  padding-left: 5.9375rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .p-topService__contents {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 1.625rem;
    margin-top: 50px;
  }
}

.p-topService__item + .p-topService__item {
  padding-top: 104px;
}
@media screen and (max-width: 767px) {
  .p-topService__item + .p-topService__item {
    padding-top: 0;
  }
}

.p-topService__item .en {
  color: #d5d5d5;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-topService__item .en {
    font-size: 16px;
  }
}

.p-topService__item .en .first {
  color: #000;
}

.p-topService__item .box {
  border-bottom-right-radius: 30px;
  padding-right: 1.875rem;
  padding-bottom: 12px;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-topService__item .box {
    margin-top: 2px;
    padding-right: 17px;
    padding-bottom: 7px;
  }
}

.p-topService__item .business {
  padding: 1px 3px;
  display: inline-block;
  font-size: 30px;
  background: #000;
  color: #f8f8f8;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topService__item .business {
    font-size: 20px;
  }
}

.p-topService__item .list li {
  padding: 27px 0;
}
@media screen and (max-width: 767px) {
  .p-topService__item .list li {
    padding: 18px 0;
  }
}

.p-topService__item .list li + li {
  border-top: 1px solid #000;
}

.p-topService__item .list li .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 22px;
}
.p-topService__item .list li .name img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-topService__item .list li .name img.--01 {
  width: 40px;
}
.p-topService__item .list li .name img.--02 {
  width: 32px;
}
.p-topService__item .list li .name img.--03 {
  width: 28px;
}
.p-topService__item .list li .name img.--04 {
  width: 41px;
}
.p-topService__item .list li .name img.--05 {
  width: 30px;
}
.p-topService__item .list li .name img.--06 {
  width: 39px;
}
@media screen and (max-width: 767px) {
  .p-topService__item .list li .name {
    font-size: 18px;
  }
}

.p-topService__item .list li .text {
  margin-top: 3px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topService__item .list li .text {
    margin-top: 11px;
  }
}

.p-topService__img {
  position: absolute;
  z-index: 1;
  width: 38.375rem;
  left: 2.875rem;
  bottom: -8.625rem;
}
@media screen and (max-width: 767px) {
  .p-topService__img {
    width: 18.75rem;
    left: -20px;
    bottom: -70px;
  }
}

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

.u-inter {
  font-family: "Inter", sans-serif;
}
.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */

/* 0627非表示処理 */
.p-header__nav,
.p-hamburger,
.p-topAbout__btn,
.p-topColumn,
.p-topNews,
.p-footer-menu__main{
  display:none;
}
