@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
/*
  Settings
————————————————————————————————————————— */
/*
  Base
————————————————————————————————————————— */
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #251E1C;
  line-height: 1;
  letter-spacing: 0.04em;
}
body P {
  font-size: rem(16);
  line-height: 1.8;
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
}
.l-main:not(.top) {
  margin-top: 104px;
}
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper {
  max-width: 1190px;
  margin: 0 auto;
}
.l-section {
  padding: 80px 0;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
    layout(1199)
    =========================*/
  .l-wrapper {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  /* ======================
    layout(991)
    =========================*/
  .l-main:not(.top) {
    margin-top: 74px;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
    layout(768)
    =========================*/
  .l-section {
    padding: 60px 0;
  }
}
/* =================================
  Object
================================= */
/*
  component
————————————————————————————————————————— */
.c-mainvisual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-mainvisual:after {
  content: "";
  display: inline-block;
  background: #251E1C;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.67;
}
.c-mainvisual h1 {
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
.c-not404 .c-mainvisual {
  background: url(../img/not404/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.c-link {
  display: block;
  width: 320px;
  margin-inline: auto;
  padding: 18px 5%;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: #374B90;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease 0s;
  margin-top: 50px;
}
.c-link.white {
  background: #fff;
  color: #374B90;
  border: 1px solid #374B90;
}
.c-link.white::after {
  border-top: 3px solid #374B90;
  border-right: 3px solid #374B90;
}
.c-link.white:hover {
  background: #374B90;
  color: #fff;
  border: 1px solid #fff;
}
.c-link.white:hover::after {
  border-color: #fff;
}
.c-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  right: 6%;
}
.c-link:hover {
  background-color: #fff;
  color: #374B90;
  border-color: #374B90;
}
.c-link:hover::after {
  border-color: #374B90;
}
h1.c-title {
  text-align: center;
  color: #5E6169;
  font-size: 3rem;
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 0.04em;
}
h1.c-title:after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon.png) no-repeat;
  background-size: contain;
  width: 70px;
  aspect-ratio: 5.25;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h2.c-title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 40px;
}
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger {
  position: fixed;
  top: 13px;
  right: 5%;
  z-index: 50;
  width: 48px;
  height: 48px;
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-hamburger:hover, .c-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #374B90;
  -webkit-transition: inherit;
  transition: inherit;
  transition: 0.35s ease-in-out;
}
.c-hamburger__line:before, .c-hamburger__line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #374B90;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.c-hamburger__line:before {
  top: -10px;
}
.c-hamburger__line:after {
  top: 10px;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background-color: transparent;
  transform: translate(-50px, 0);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before, .c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  top: 0;
  background-color: #374B90;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: translate(50px, 0) rotate(315deg);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: translate(50px, 0) rotate(-315deg);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  component(991)
  ====================== */
  .c-mainvisual {
    height: 180px;
  }
  .c-mainvisual h1 {
    font-size: 1.875rem;
  }
  .c-link {
    width: 300px;
    padding: 15px 5%;
    font-size: 1rem;
    margin-top: 30px;
  }
  h1.c-title {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
  h1.c-title:after {
    width: 50px;
  }
  h2.c-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}
/*
  footer
————————————————————————————————————————— */
.cta {
  display: flex;
}
.cta .mail {
  width: 50%;
  background: #374B90;
  padding: 40px 5%;
}
.cta .mail .icon {
  text-align: center;
  margin-bottom: 10px;
}
.cta .mail .icon img {
  width: 60px;
  height: 80px;
  object-fit: contain;
}
.cta .mail h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.cta .mail .c-link {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
.cta .tel {
  width: 50%;
  background: #376968;
  padding: 40px 5%;
}
.cta .tel .icon {
  text-align: center;
  margin-bottom: 10px;
}
.cta .tel .icon img {
  width: 40px;
  height: 80px;
  object-fit: contain;
}
.cta .tel h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.cta .tel .c-link {
  font-weight: 700;
  font-size: 1.875rem;
  white-space: nowrap;
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 5%;
}
.cta .tel .c-link span {
  font-weight: 500;
  font-size: 0.75rem;
  display: block;
}
.cta .tel .c-link:after {
  display: none;
}
.p-footer {
  background: #251E1C;
  padding: 40px 0;
}
.p-footer .flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.p-footer .logo {
  width: 200px;
  margin-bottom: 30px;
}
.p-footer address {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
}
.p-footer .right {
  display: flex;
  flex-direction: column;
}
.p-footer .nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 20px;
}
.p-footer .nav ul:last-child {
  margin-bottom: 0;
}
.p-footer .nav ul li a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 10px;
  border-right: solid 2px #fff;
}
.p-footer .nav ul li:last-child a {
  border: none;
}
.p-footer small {
  display: block;
  margin-top: auto;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: right;
}
.pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  width: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  animation: fadeOut 0.4s forwards;
  transition: none;
}
.pageTop.is-show {
  animation: fadeIn 0.4s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    pointer-events: auto;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .cta {
    flex-wrap: wrap;
  }
  .cta .mail {
    width: 100%;
    padding: 30px 5%;
  }
  .cta .mail .icon img {
    width: 40px;
    height: 60px;
  }
  .cta .mail h2 {
    font-size: 1.25rem;
  }
  .cta .tel {
    width: 100%;
    padding: 30px 5%;
  }
  .cta .tel .icon img {
    width: 30px;
    height: 60px;
  }
  .cta .tel h2 {
    font-size: 1.25rem;
  }
  .p-footer {
    padding: 30px 0;
  }
  .p-footer .flex {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .p-footer .logo {
    width: 160px;
    margin-bottom: 20px;
    margin-inline: auto;
  }
  .p-footer address {
    text-align: center;
  }
  .p-footer .nav {
    margin-bottom: 40px;
  }
  .p-footer .nav ul {
    justify-content: center;
  }
  .p-footer small {
    text-align: center;
  }
  .pageTop {
    bottom: 10px;
    right: 10px;
    width: 40px;
  }
}
/*
  header
————————————————————————————————————————— */
.p-header {
  padding: 20px 5%;
  background: #fff;
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-header .p-header__logo {
  width: 200px;
  position: relative;
  z-index: 15;
}
.p-header .p-header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.p-header .p-header__item a {
  font-weight: 700;
  color: #5E6169;
  display: block;
}
.p-header .p-header__item.contact a {
  background: #374B90;
  border-radius: 100vmax;
  text-align: center;
  color: #fff;
  padding: 12px 40px;
  border: solid 1px #374B90;
  transition: all 0.3s ease 0s;
}
.p-header .p-header__item.contact a:hover {
  background: #fff;
  color: #374B90;
}
#p-globalMenuSp {
  width: 100%;
  height: 100vh;
  background: white;
  position: fixed;
  top: -120%;
  left: 0;
  z-index: -10;
  padding-top: 104px;
  padding-bottom: 40px;
  transition: all 0.4s;
  overflow: auto;
}
#p-globalMenuSp.is-active {
  top: 0;
  z-index: 8;
}
.p-globalMenuSp__list {
  width: 90%;
  margin-inline: auto;
  text-align: left;
  margin-bottom: 24px;
}
.p-globalMenuSp__item:last-child {
  margin-bottom: 0;
}
.p-globalMenuSp__item > a {
  font-weight: 500;
  font-size: 1rem;
  color: #251E1C;
  line-height: 1.6;
  padding: 16px 5%;
  display: block;
  border-bottom: solid 1px #E9E9E9;
  position: relative;
  transform: rotate(0.05deg);
}
.p-globalMenuSp__item a {
  font-weight: 500;
  font-size: 1rem;
  color: #251E1C;
  line-height: 1.6;
  padding: 16px 5%;
  display: block;
  border-bottom: solid 1px #E9E9E9;
  position: relative;
}
.p-globalMenuSp__item.contact {
  margin-top: 20px;
}
.p-globalMenuSp__item.contact a {
  background: #374B90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  color: #fff;
  border-radius: 100vmax;
}
.p-globalMenuSp__item.contact a img {
  width: 22px;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-header {
    padding: 15px 5%;
  }
  .p-header .p-header__logo {
    width: 140px;
    position: relative;
    z-index: 15;
  }
}
/*
top
————————————————————————————————————————— */
.p-top__mainvisual {
  position: relative;
}
.p-top__mainvisual .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100vh;
}
.p-top__mainvisual .hero {
  position: absolute;
  left: 5%;
  top: 45%;
  transform: translateY(-50%);
  z-index: 1;
}
.p-top__mainvisual .hero h1 {
  color: #fff;
  font-size: 3.75rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-top__mainvisual .hero h1 span {
  display: block;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.8;
  margin-top: 20px;
}
.p-top__mainvisual .news {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 6;
  display: flex;
}
.p-top__mainvisual .news .head {
  background: #374B90;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  height: 60px;
  font-size: 1.125rem;
  color: #fff;
  padding: 0 30px;
}
.p-top__mainvisual .news .body a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  background: #fff;
  border-radius: 0 10px 10px 0;
  padding: 0 60px 0 20px;
  position: relative;
}
.p-top__mainvisual .news .body a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 3px #374B90;
  border-right: solid 3px #374B90;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: rotate(45deg) translateY(-50%);
}
.p-top__mainvisual .news .body a .date {
  font-weight: 500;
  color: #374B90;
}
.p-top__mainvisual .news .body a .title {
  font-weight: 500;
  color: #5E6169;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.p-top__mainvisual .scroll-wrap {
  position: absolute;
  bottom: 60px;
  right: 20px;
  z-index: 6;
}
.p-top__mainvisual .scroll {
  position: relative;
}
.p-top__mainvisual .scroll-text {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  transform: rotate(-90deg);
}
.p-top__mainvisual .scroll-border {
  position: relative;
  top: 25px;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.p-top__mainvisual .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.p-top__about {
  padding-bottom: 0;
}
.p-top__about ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
.p-top__about ul li {
  background: #EFEFEF;
  border-radius: 15px;
  padding: 40px 25px;
}
.p-top__about ul .image {
  text-align: center;
  margin-bottom: 20px;
}
.p-top__about ul .image img {
  width: 240px;
  height: 140px;
  object-fit: contain;
}
.p-top__about ul h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.p-top__about .box {
  background: #374B90;
  padding: 60px 0;
  margin-top: 60px;
}
.p-top__about .box h2 {
  color: #fff;
}
.p-top__about .box p {
  color: #fff;
}
.p-top__service {
  background: #EFEFEF;
}
.p-top__service .box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
}
.p-top__service ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 40px 25px;
  margin-top: 30px;
}
.p-top__service ul .image {
  margin-bottom: 20px;
}
.p-top__service ul .image img {
  border-radius: 15px;
  border: solid 4px #fff;
}
.p-top__service ul h3 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-top__service-detail h2 {
  margin-bottom: 60px;
}
.p-top__service-detail .timeline {
  position: relative;
  padding-top: 60px;
  text-align: center;
}
.p-top__service-detail .timeline__phase {
  position: absolute;
  top: 0;
  font-size: 1rem;
  color: #251E1C;
  font-weight: 500;
  background: #EFEFEF;
  padding: 10px 20px;
  border-radius: 100vmax;
  z-index: 3;
  text-align: center;
}
.p-top__service-detail .timeline__phase--pm {
  left: calc((100% / 7) * 0.4);
  width: calc((100% / 7) * 3.2);
}
.p-top__service-detail .timeline__phase--actual {
  left: calc((100% / 7) * 4.4);
  width: calc((100% / 7) * 2.2);
}
.p-top__service-detail .timeline__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
.p-top__service-detail .timeline__steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: #5b4db1;
  z-index: 1;
}
.p-top__service-detail .step {
  position: relative;
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top__service-detail .step__circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #5b4db1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #5b4db1;
}
.p-top__service-detail .step.highlight .step__circle {
  outline: none;
}
.p-top__service-detail .step__text {
  margin-top: 16px;
  padding: 20px;
  border: 2px solid #5b4db1;
  border-radius: 10px;
  color: #374B90;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  min-height: 160px;
  text-align: left;
  white-space: nowrap;
}
.p-top__data {
  background: #EFEFEF;
}
.p-top__data ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
.p-top__data ul li {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
}
.p-top__data ul .image {
  margin-bottom: 20px;
  text-align: center;
}
.p-top__data ul .image img {
  width: 100%;
  max-width: 290px;
  height: 180px;
  object-fit: contain;
}
.p-top__data ul h3 {
  display: block;
  text-align: center;
  max-width: 220px;
  background: #374B90;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 10px;
  margin-bottom: 16px;
  margin-inline: auto;
  border-radius: 100vmax;
}
.p-top__dashboard ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
.p-top__dashboard ul li {
  background: #EFEFEF;
  border-radius: 15px;
  padding: 25px;
}
.p-top__dashboard ul .image {
  margin-bottom: 20px;
  text-align: center;
}
.p-top__dashboard ul .image img {
  width: 100%;
  max-width: 290px;
  height: 180px;
  object-fit: contain;
}
.p-top__dashboard ul h3 {
  display: block;
  text-align: center;
  max-width: 220px;
  background: #374B90;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 10px;
  margin-inline: auto;
  border-radius: 100vmax;
}
.p-top__reason {
  background: #EFEFEF;
}
.p-top__reason h2 {
  margin-bottom: 80px;
}
.p-top__reason ul {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.p-top__reason ul li {
  background: #fff;
  padding: 40px 25px 25px;
  border-radius: 15px;
}
.p-top__reason ul h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: 280px;
  background: #374B90;
  color: #fff;
  font-weight: 700;
  font-size: 1.875rem;
  padding: 10px;
  margin-top: -68px;
  margin-bottom: 20px;
  margin-inline: auto;
  border-radius: 100vmax;
}
.p-top__reason ul h3 span {
  display: block;
  width: 16px;
}
.p-top__reason ul h4 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #374B90;
  text-align: center;
  margin-bottom: 15px;
}
.p-top__works .linkList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 50px;
}
.p-top__works .linkList a {
  display: block;
  width: 100%;
  text-align: center;
  background: #EFEFEF;
  border-radius: 100vmax;
  font-size: 1rem;
  padding: 16px;
  color: #251E1C;
  transition: all 0.3s ease 0s;
}
.p-top__works .linkList a:hover {
  background: #374B90;
  color: #fff;
}
.p-top__works .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
.p-top__works .list li {
  border-radius: 15px;
  border: solid 4px #374B90;
  position: relative;
}
.p-top__works .list li img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.p-top__works .list li .cate {
  font-size: 1rem;
  font-weight: 500;
  width: 180px;
  background: #374B90;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 15px 0 15px 0;
  padding: 14px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.p-top__works .list li .text {
  display: flex;
  padding: 16px;
  gap: 16px;
  flex: 1;
}
.p-top__works .list li .date {
  font-weight: 500;
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  color: #374B90;
}
.p-top__works .list li .title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #251E1C;
}
.p-top__company {
  background: #EFEFEF;
}
.p-top__company table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1rem;
}
.p-top__company table th, .p-top__company table td {
  line-height: 1.6;
  padding: 16px 0;
}
.p-top__company table th {
  font-weight: 700;
  width: 10em;
  text-align: left;
}
.p-top__company table tr {
  border-bottom: 2px solid #FFFFFF;
}
.p-top__company table tr:last-child {
  border: none;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-top__mainvisual .hero h1 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.6;
  }
  .p-top__mainvisual .hero h1 span {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
  }
  .p-top__mainvisual .news .head {
    height: 50px;
    font-size: 0.75rem;
    padding: 0 14px;
  }
  .p-top__mainvisual .news .body a {
    gap: 14px;
    height: 50px;
    padding: 0 40px 0 14px;
  }
  .p-top__mainvisual .news .body a .date {
    font-size: 0.75rem;
  }
  .p-top__mainvisual .news .body a .title {
    font-size: 0.75rem;
    max-width: 100px;
  }
  .p-top__mainvisual .scroll-wrap {
    bottom: 36px;
    right: 5px;
  }
  .p-top__mainvisual .scroll-text {
    font-size: 0.75rem;
  }
  .p-top__mainvisual .scroll-border {
    position: relative;
    top: 25px;
    width: 100%;
    height: 100px;
    overflow: hidden;
  }
  .p-top__mainvisual .scroll-border::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 40px;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    animation: scrollbar 2s ease-in-out infinite;
    margin: auto;
  }
  @keyframes scrollbar {
    0% {
      height: 0;
      top: 0;
    }
    30% {
      height: 100%;
    }
    100% {
      top: 100%;
    }
  }
  .p-top__about ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__about .box {
    padding: 40px 0;
    margin-top: 40px;
  }
  .p-top__about .box h2 {
    line-height: 1.6;
  }
  .p-top__service .box {
    padding: 30px 25px;
  }
  .p-top__service ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 10px;
    margin-top: 20px;
  }
  .p-top__service ul .image {
    margin-bottom: 14px;
  }
  .p-top__service ul h3 {
    font-size: 1rem;
  }
  .p-top__service-detail h2 {
    margin-bottom: 30px;
  }
  .p-top__service-detail .timeline__scroll {
    overflow-x: scroll;
  }
  .p-top__service-detail .timeline {
    min-width: 600px;
    padding: 40px 10px 0;
  }
  .p-top__service-detail .timeline__steps {
    margin-top: 20px;
  }
  .p-top__service-detail .timeline__phase--pm {
    left: calc((100% / 7) * 0.3);
    width: calc((100% / 7) * 3.5);
  }
  .p-top__service-detail .timeline__phase--actual {
    left: calc((100% / 7) * 4.2);
    width: calc((100% / 7) * 2.5);
  }
  .p-top__data ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__dashboard ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__reason h2 {
    margin-bottom: 60px;
  }
  .p-top__reason ul {
    gap: 60px;
  }
  .p-top__reason ul h3 {
    max-width: 240px;
    font-size: 1.25rem;
  }
  .p-top__reason ul h3 span {
    width: 14px;
  }
  .p-top__works .linkList {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  .p-top__works .linkList a {
    font-size: 0.875rem;
  }
  .p-top__works .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__works .list li .text {
    flex-direction: column;
    gap: 10px;
  }
  .p-top__works .list li .date {
    font-size: 0.875rem;
    line-height: 1;
  }
  .p-top__company table th {
    width: 6em;
  }
}
/*
実績紹介
————————————————————————————————————————— */
.p-works .c-mainvisual {
  background: url(../img/works/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-works .category-filter__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.p-works .category-filter__list li a {
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #374B90;
  color: #374B90;
  border-radius: 100vmax;
  width: 180px;
  text-align: center;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.p-works .category-filter__list li a.active {
  background: #374B90;
  color: #fff;
}
.p-works .category-filter__list li a:hover {
  background: #455eb5;
  color: #fff;
}
.p-works .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px;
}
.p-works .list li {
  border-radius: 15px;
  border: solid 4px #374B90;
  position: relative;
}
.p-works .list li img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.p-works .list li .cate {
  font-size: 1rem;
  font-weight: 500;
  width: 180px;
  background: #374B90;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 15px 0 15px 0;
  padding: 14px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.p-works .list li .text {
  display: flex;
  padding: 16px;
  gap: 16px;
  flex: 1;
}
.p-works .list li .date {
  font-weight: 500;
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  color: #374B90;
}
.p-works .list li .title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #251E1C;
}
.p-works .pagenation ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.p-works .pagenation li {
  margin-right: 18px;
}
.p-works .pagenation li:last-child {
  margin: 0;
}
.p-works .pagenation li .current {
  border-bottom: 1px solid #251E1C;
}
.p-works .pagenation a, .p-works .pagenation span {
  font-weight: 700;
  font-size: 1.125rem;
  color: #251E1C;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-works .category-filter__list li a {
    font-size: 0.875rem;
    padding: 10px;
    width: 145px;
  }
  .p-works .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-works .list li .text {
    flex-direction: column;
    gap: 10px;
  }
  .p-works .list li .date {
    font-size: 0.875rem;
    line-height: 1;
  }
  .p-works .pagenation ul {
    margin-top: 40px;
  }
}
/*
  お知らせ
————————————————————————————————————————— */
.p-news .c-mainvisual {
  background: url(../img/news/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-news .list li {
  border-bottom: 1px solid #EFEFEF;
}
.p-news .list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.p-news .list a .cate {
  background: #374B90;
  border-radius: 100vmax;
  font-size: 0.875rem;
  color: #fff;
  padding: 10px 20px;
  white-space: nowrap;
}
.p-news .list a .date {
  font-weight: 500;
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  color: #374B90;
  white-space: nowrap;
}
.p-news .list a .title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #251E1C;
}
.p-news .pagenation ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.p-news .pagenation li {
  margin-right: 18px;
}
.p-news .pagenation li:last-child {
  margin: 0;
}
.p-news .pagenation li .current {
  border-bottom: 1px solid #251E1C;
}
.p-news .pagenation a, .p-news .pagenation span {
  font-weight: 700;
  font-size: 1.125rem;
  color: #251E1C;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-news .list a {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .p-news .list a .date {
    font-size: 0.875rem;
  }
  .p-news .list a .title {
    width: 100%;
  }
  .p-news .pagenation ul {
    margin-top: 40px;
  }
}
/*
お知らせ・実績紹介
————————————————————————————————————————— */
.p-single .c-mainvisual {
  background: url(../img/works/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-single .meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.p-single .meta .cate {
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background: #374B90;
  border-radius: 100vmax;
  width: 180px;
  text-align: center;
}
.p-single .title {
  font-weight: 700;
  font-size: 2.25rem;
}
.p-single .content {
  margin-top: 60px;
}
.p-single .content span[style], .p-single .content p[style], .p-single .content div[style] {
  all: revert;
}
.p-single .content span[style*="font-size"], .p-single .content p[style*="font-size"], .p-single .content div[style*="font-size"] {
  font-size: inherit !important;
}
.p-single .content h1, .p-single .content h2, .p-single .content h3, .p-single .content h4, .p-single .content h5, .p-single .content h6 {
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1em;
}
.p-single .content h1 {
  font-size: 1.875rem;
}
.p-single .content h2 {
  font-size: 1.25rem;
}
.p-single .content h3 {
  font-size: 1.125rem;
}
.p-single .content b, .p-single .content strong {
  font-weight: bold;
}
.p-single .content i, .p-single .content em {
  font-style: italic;
}
.p-single .content u {
  text-decoration: underline;
}
.p-single .content blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  color: #555;
}
.p-single .content span[style], .p-single .content div[style], .p-single .content p[style] {
  all: revert;
}
.p-single .content img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-single .content ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-single .content ol {
  list-style: decimal inside;
  margin-left: 1em;
  margin-bottom: 1em;
}
.p-single .content p {
  margin-bottom: 1em;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-single .meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .p-single .meta .cate {
    font-size: 0.875rem;
  }
  .p-single .title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-single .content {
    margin-top: 40px;
  }
  .p-single .content h1 {
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .p-single .content h2 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .p-single .content h3 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
/*
お問い合わせ
————————————————————————————————————————— */
.p-contact .c-mainvisual {
  background: url(../img/contact/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-contact .p-contact__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.p-contact .p-contact__table th {
  font-weight: 700;
  font-size: 1rem;
  color: #374B90;
  letter-spacing: 1.4px;
  width: 25%;
  padding: 0 0 40px;
  vertical-align: top;
}
.p-contact .p-contact__table th span {
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  background: #374B90;
  color: #fff;
  border-radius: 100vmax;
  padding: 2px 10px;
  margin-left: 6px;
}
.p-contact .p-contact__table th p.remark {
  font-size: 0.875rem;
  color: #666666;
}
.p-contact .p-contact__table td {
  font-size: 1rem;
  width: 75%;
  padding: 0 0 40px 47px;
  vertical-align: middle;
}
.p-contact .p-contact__table .form_style01 {
  font-size: 0.9375rem;
  width: 100%;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
}
.p-contact .p-contact__table .form_style02 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
  resize: none;
}
.p-contact .p-contact__table .form_style03 {
  font-size: 0.9375rem;
  width: 100%;
  height: 220px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #f1f1f1;
  resize: none;
}
.p-contact .p-contact__table .form_style04 {
  font-size: 0.9375rem;
  width: 140px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #EFEFEF;
  resize: none;
  text-align: center;
}
.p-contact .p-contact__table .wpcf7-list-item {
  display: block;
  margin: 0 0 0.75rem;
}
.p-contact input[type=submit] {
  border-radius: 80px;
  border: solid 1px #374B90;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
	project(991)
	=========================*/
  .p-contact .p-contact__table th {
    letter-spacing: 1px;
    width: 100%;
    padding: 0 0 10px;
    display: block;
  }
  .p-contact .p-contact__table td {
    width: 100%;
    padding: 0 0 20px;
    display: block;
  }
}
/*
  プライバシーポリシー
————————————————————————————————————————— */
.p-privacypolicy .c-mainvisual {
  background: url(../img/privacypolicy/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-privacypolicy .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-privacypolicy .box h2 {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-privacypolicy .box p {
  font-size: 1rem;
  line-height: 1.8;
}
.p-privacypolicy .box ul {
  margin-top: 10px;
  padding-left: 20px;
}
.p-privacypolicy .box ul li {
  position: relative;
  list-style-type: disc;
  font-size: 1rem;
  line-height: 1.8;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  .p-privacypolicy .content {
    gap: 30px;
  }
  .p-privacypolicy .box h2 {
    font-size: 1.25rem;
  }
}
/*
  utillity
————————————————————————————————————————— */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-sp-none992 {
  display: none;
}
.u-sp-none768 {
  display: none;
}
.u-sp-none576 {
  display: none;
}
.u-m-auto {
  margin: 0 auto;
}
.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.u-fade {
  opacity: 0;
  transition: all 1s ease;
}
.u-fade.is-active {
  opacity: 1;
  transform: none;
}
.u-fade-up {
  transform: translate(0, 50px);
}
.u-fade-lr {
  transform: translate(-100px, 0);
}
.u-fade-rl {
  transform: translate(100px, 0);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
    utility(992)
    =========================*/
  .u-sp-none992 {
    display: block;
  }
  .u-pc-none992 {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
    utility(768)
    =========================*/
  .u-sp-none768 {
    display: block;
  }
  .u-pc-none768 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
    utility(576)
    =========================*/
  .u-sp-none576 {
    display: block;
  }
  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
}
