@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1080px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
  background-color: #FAFAFA;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

.swiper-button-next ::slotted(svg),
.swiper-button-next svg,
.swiper-button-prev ::slotted(svg),
.swiper-button-prev svg {
  display: none !important;
}

.swiper {
  overflow: visible;
}

.swiper-wrapper {
  height: auto;
}

/*****************************
* 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;
  line-height: 1.5;
  background: #FAFAFA;
}

/* 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-footer {
  background: #111;
  color: #fff;
  padding: 5rem 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.75rem 0 1.875rem;
  }
}
.l-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 0 20px;
  }
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.l-footer__logo-area {
  width: 10.8125rem;
}
.l-footer__nav-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.l-footer__nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-col {
    gap: 1.25rem;
  }
}
.l-footer__nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.l-footer__nav-title {
  font-size: 0.8125rem;
  font-weight: bold;
  margin: 0;
}
.l-footer__nav-title a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__nav-title a:hover {
  opacity: 0.7;
}
.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-left: 20px;
}
.l-footer__nav-list--main {
  gap: 1.25rem;
}
.l-footer__nav-list--main .l-footer__nav-title {
  font-size: 0.875rem;
}
.l-footer__nav-item {
  margin: 0;
}
.l-footer__nav-link {
  font-size: 0.75rem;
  color: #999;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-footer__nav-link:hover {
  color: #fff;
}
.l-footer__nav-col--links {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-col--links {
    margin-left: 0;
  }
}
.l-footer__nav-block--legal {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-block--legal {
    margin-top: 1.25rem;
  }
}
.l-footer__nav-block--legal .l-footer__nav-link {
  font-size: 0.6875rem;
  color: #666;
}
.l-footer__copy {
  text-align: left;
  font-size: 0.75rem;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 1.875rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    text-align: center;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header.is-white .l-header__link {
  color: #fff;
}
.l-header.is-white .l-header__link::after {
  border-color: #fff;
}
.l-header.is-white .l-header__hamburger span {
  background: #fff;
}
.l-header__inner {
  width: 90%;
  margin: 0 auto;
  padding: 0 1.25rem;
  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;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 20px;
  }
}
.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-header__container {
    gap: 0;
  }
}
.l-header__logo {
  font-weight: bold;
  font-size: 24px;
  color: #96C83C;
  text-decoration: none;
  width: 9.5625rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__item.has-sub:hover .l-header__sub {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__company {
  position: relative;
}
.l-header__link {
  text-decoration: none;
  color: #111111;
  font-weight: 300;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  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;
  gap: 0.5rem;
  padding: 1.875rem 0;
}
.has-sub .l-header__link::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -0.1875rem;
}
.l-header__sub {
  position: absolute;
  top: 100%;
  left: 5%;
  width: 90%;
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(17, 17, 17, .08);
          box-shadow: 0 4px 20px rgba(17, 17, 17, .08);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  z-index: 10;
  overflow: hidden;
}
.l-header__sub--company {
  width: 130px;
  padding: 1.875rem;
  left: -30px;
}
.l-header__sub--company .l-header__sub-inner {
  padding: 0;
}
.l-header__sub--company .l-header__sub-list {
  display: block;
  padding: 0;
}
.l-header__sub--company .l-header__sub-list li:not(:first-child) {
  margin-top: 1.25rem;
}
.l-header__sub--company .l-header__sub-list li a {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.l-header__sub--company .l-header__sub-list li a span {
  color: #ccc;
  font-size: 12px;
}
.l-header__sub--company .l-header__sub-list li a:hover {
  background: #EFEFF2;
  color: #232031;
}
.l-header__sub--service .l-header__sub-inner {
  width: 100%;
  max-width: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.l-header__sub-left {
  width: 320px;
  background: #fcfcfc;
  border-right: 1px solid #eee;
  padding: 20px 0;
}
.l-header__sub-cat-list {
  list-style: none;
}
.l-header__sub-cat-list li a {
  display: block;
  padding: 0.875rem 2.5rem;
  color: #232031;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.l-header__sub-cat-list li.is-active a {
  background: #EFEFF2;
  color: #232031;
  opacity: 1;
}
.l-header__sub-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  background: #fff;
}
.l-header__sub-content {
  display: none;
  padding: 20px 0;
}
.l-header__sub-content.is-active {
  display: block;
}
.l-header__sub-link-list {
  list-style: none;
}
.l-header__sub-link-list li {
  border-bottom: 1px solid #DEDCE8;
  max-width: 20rem;
  margin-left: 2.5rem;
}
.l-header__sub-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  padding: 14px 0;
  color: #74727D;
  font-weight: 500;
  font-size: 1rem;
}
.l-header__sub-link-list li a span {
  color: #232031;
  font-size: 14px;
}
.l-header__sub-link-list li a span:hover {
  color: #232031;
  text-decoration: underline;
  opacity: 1;
}
.l-header__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__btn-box {
    display: none;
  }
}
.l-header__hamburger {
  display: none;
  -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;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111111;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.l-header__drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .l-header__drawer.is-open {
    display: block;
  }
}
.l-header__drawer-inner {
  max-width: 500px;
  margin: 0 auto;
}
.l-header__drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__drawer-item {
  border-bottom: 1px solid #eee;
}
.l-header__drawer-item:first-child {
  border-top: 1px solid #eee;
}
.l-header__drawer-link {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  position: relative;
}
.l-header__drawer-link.js-drawer-accordion {
  cursor: pointer;
}
.l-header__drawer-link.js-drawer-accordion::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-header__drawer-link.js-drawer-accordion.is-active::after {
  -webkit-transform: translateY(-30%) rotate(-135deg);
          transform: translateY(-30%) rotate(-135deg);
}
.l-header__drawer-sub-list {
  display: none;
  list-style: none;
  padding: 0 0 20px 20px;
  margin: 0;
}
.l-header__drawer-sub-list li {
  margin-bottom: 15px;
}
.l-header__drawer-sub-list li:last-child {
  margin-bottom: 0;
}
.l-header__drawer-sub-list li a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}
.l-header__drawer-btn-box {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.l-header__drawer-btn-box .c-button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding-right: 3.75rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-service80-40 {
  padding: 5rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-service80-40 {
    padding: 5rem 0 2.5rem;
  }
}

.l-service80-100 {
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-service80-100 {
    padding: 5rem 0;
  }
}

.l-service100-40 {
  padding: 6.25rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-service100-40 {
    padding: 5rem 0 2.5rem;
  }
}

.l-service80 {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-service80 {
    padding: 5rem 0;
  }
}

.l-service40-80 {
  padding: 3.125rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-service40-80 {
    padding: 2.5rem 0 5rem;
  }
}

.l-service60 {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-service60 {
    padding: 3.75rem 0;
  }
}

.l-service80-0 {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-service80-0 {
    padding: 5rem 0 0;
  }
}

.c-button {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 3.125rem;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    padding: 0.9375rem 1.875rem;
    font-size: 0.9375rem;
  }
}
.c-button--primary {
  background: #96C83C;
  color: #fff;
}
.c-button--black {
  background: #111111;
  color: #fff;
  border: 0.0625rem solid #111111;
}
.c-button--black:hover {
  background: rgb(43, 43, 43);
}
.c-button--black2 {
  background: #111111;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}
.c-button--white {
  background: #fff;
  color: #111111;
  border: 0.0625rem solid #111111;
}
.c-button--white span {
  color: #111111;
}
.c-button--white:hover {
  background: #f8f8f8;
}
.c-button--outline {
  background: transparent;
  border: 0.125rem solid #96C83C;
  color: #96C83C;
}
.c-button--outline:hover {
  background: #96C83C;
  color: #fff;
}
.c-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button__icon--download {
  -webkit-mask-image: url("../images/common/icon-download.svg");
          mask-image: url("../images/common/icon-download.svg");
}
.c-button__icon--mail {
  -webkit-mask-image: url("../images/common/icon-mail.svg");
          mask-image: url("../images/common/icon-mail.svg");
}
.c-button__icon--arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid currentColor;
  border-right: 0.125rem solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: none;
  -webkit-mask-image: none;
          mask-image: none;
  display: inline-block;
  margin-left: 0.3125rem;
}

.c-case2__contents {
  padding-top: 3.75rem;
}
.c-case2__contents:first-child {
  padding-top: 0;
}

.c-case2__category {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}

.c-case2__items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-case2__items {
    grid-template-columns: auto !important;
  }
}

.c-case2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 0.3125rem;
  color: #111111;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9375rem 1.25rem;
  background: #F3F3F3;
}
@media screen and (max-width: 767px) {
  .c-case2__item {
    gap: 0.625rem;
  }
}

.c-case2__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.c-main-button a {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 3rem;
  background: #fff;
  color: #111111;
  font-weight: 700;
  border-radius: 6.25rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-main-button a {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    width: 100%;
  }
}
.c-main-button a:hover {
  background: #96C83C;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}
.c-main-button--black a {
  background: #111111;
  color: #fff;
}
.c-main-button--black a:hover {
  background: #96C83C;
}

.c-main-titles h2 {
  font-size: 4rem;
  font-weight: 300;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-main-titles h2 {
    font-size: 2.5rem;
  }
}
.c-main-titles p {
  font-size: 1rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  margin-top: 0.625rem;
}

.c-main-top-title {
  padding-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .c-main-top-title {
    padding-top: 7.5rem;
  }
}
.c-main-top-title__en {
  font-size: 4rem;
  font-weight: 300;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-main-top-title__en {
    font-size: 3rem;
  }
}
.c-main-top-title__jp {
  font-size: 1rem;
  font-weight: 300;
  color: #2D6578;
  display: block;
  line-height: 1.6;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-main-top-title__jp {
    font-size: 0.875rem;
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
}
.c-modal__container {
  position: relative;
  width: 90%;
  max-width: 60rem;
  max-height: 90vh;
  background: #fff;
  border-radius: 0.3125rem;
  padding: 6.25rem 3.75rem 5.125rem;
  overflow-y: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-modal__container {
    padding: 2.5rem 1.25rem;
  }
}
.c-modal__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #000;
}
.c-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.c-modal__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-modal__title {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
.c-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-modal__grid {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}
.c-modal__item {
  background: #1a1a1a;
  color: #fff;
  padding: 0.875rem 1.0625rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
.c-modal__item::before {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  background: radial-gradient(circle, #1a1a1a 30%, #fff 33%);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-modal2.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal2__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
}
.c-modal2__container {
  position: relative;
  width: 95%;
  max-width: 60rem;
  max-height: 90vh;
  background: #fff;
  border-radius: 0.3125rem;
  padding: 6.25rem 3.75rem 5rem 3.75rem;
  overflow-y: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-modal2__container {
    width: 90%;
    max-height: 85vh;
    padding: 3.75rem 1.25rem 2.5rem;
  }
}
.c-modal2__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.c-modal2__close::before, .c-modal2__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: #000;
}
.c-modal2__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal2__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-modal2__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.c-modal2__header {
  margin-bottom: 1.875rem;
}
.c-modal2__category {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .c-modal2__category {
    font-size: 1.25rem;
  }
}
.c-modal2__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .c-modal2__title {
    font-size: 1.375rem;
  }
}
.c-modal2__text {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .c-modal2__text {
    font-size: 0.875rem;
  }
}
.c-modal2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-modal2__grid {
    grid-template-columns: 1fr;
  }
}
.c-modal2__box {
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-modal2__box {
    padding: 1.25rem;
  }
}
.c-modal2__box-inner {
  background: #f5f5f5;
  padding: 1.25rem;
  border-radius: 0.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-modal2__box-inner {
    padding: 1.25rem;
  }
}
.c-modal2__box-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .c-modal2__box-title {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }
}
.c-modal2__list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}
.c-modal2__list-item {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding-left: 1.25rem;
  position: relative;
  margin-top: 0.3125rem;
}
.c-modal2__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-modal2__list-item {
    font-size: 0.875rem;
  }
}

.c-sec-title__en {
  font-size: 3rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-sec-title__en {
    font-size: 2.5rem;
  }
}
.c-sec-title__jp {
  font-size: 1rem;
  color: #2D6578;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-sec-title__jp {
    font-size: 1rem;
  }
}
.c-sec-title--white {
  color: #fff;
}
.c-sec-title--white .c-sec-title__jp {
  color: #96C83C;
}

.p-access__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  margin: 5rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-access__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    margin: 2.5rem 0;
  }
}
.p-access__map {
  width: 30rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: 100%;
  }
}
.p-access__map img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-access__address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-access__address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DFDFDF;
  padding: 1.875rem 0;
}
.p-access__address-item:first-child {
  padding: 1.25rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-access__address-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0;
    gap: 0.625rem;
  }
}
.p-access__address-item dt {
  font-weight: 700;
  width: 6.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-access__address-item dt {
    width: 100%;
  }
}
.p-access__address-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 4%;
}
.p-access__google-map {
  display: inline-block;
  margin-top: 0.625rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-access__google-map:hover {
  opacity: 0.7;
}
.p-access__tabs-wrapper {
  background-color: rgba(0, 0, 0, .03);
  padding: 4.3125rem 0;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-access__tabs-wrapper {
    padding: 1.875rem 0;
    margin-bottom: 2.5rem;
  }
}
.p-access__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-access__tabs {
    -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;
    gap: 1.25rem;
  }
}
.p-access__tab {
  background: none;
  border: none;
  border-bottom: 1px solid #BABABA;
  padding: 0 0 0.625rem 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-access__tab {
    font-weight: 500;
  }
}
.p-access__tab span {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.125rem;
  height: 1.125rem;
  border-radius: 1.25rem;
  background-color: #000;
  color: #fff;
  font-size: 0.625rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-access__tab.is-active span {
  background-color: #92D050;
}
.p-access__tab:hover {
  opacity: 0.7;
}
.p-access__content {
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.p-access__content.is-active {
  display: block;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-access__content-header {
  margin-bottom: 3.125rem;
}
.p-access__content-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-access__content-title {
    font-size: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}
.p-access__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-access__badges {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-access__badge {
  font-size: 0.75rem;
  background-color: #000;
  color: #fff;
  padding: 0.5625rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-access__badge {
    font-weight: 400;
  }
}
.p-access__content-desc {
  font-size: 1rem;
  line-height: 2;
}
.p-access__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__gallery {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.p-access__gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-access__gallery-img {
  margin-bottom: 1.25rem;
}
.p-access__gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-access__gallery-text {
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
}
.p-access__gallery-text .c-num {
  color: #92D050;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-access__gallery-text .c-num {
    font-weight: 400;
  }
}
.p-access__gallery-text .c-num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "DM Mono", monospace;
}

.p-ceo-message {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-message {
    padding-bottom: 5rem;
  }
}
.p-ceo-message__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-ceo-message__img {
  width: 25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__img {
    width: 100%;
  }
}
.p-ceo-message__img img {
  width: 100%;
  height: auto;
}
.p-ceo-message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-ceo-message__heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__heading {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
.p-ceo-message__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-ceo-message__text p + p {
  margin-top: 2em;
}
.p-ceo-message__signature {
  text-align: right;
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__signature {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}
.p-ceo-name {
  background-color: #111111;
  color: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-ceo-name {
    padding: 3.75rem 0;
  }
}
.p-ceo-name__top-flex {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__top-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-ceo-name__graphic {
  width: 27.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__graphic {
    width: 100%;
    max-width: 18.75rem;
    margin: 0 auto;
  }
}
.p-ceo-name__graphic img {
  width: 100%;
  height: auto;
}
.p-ceo-name__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-ceo-name__desc p + p {
  margin-top: 2em;
}
.p-ceo-name__details {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__details {
    margin-top: 1.875rem;
  }
}
.p-ceo-name__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    padding: 1.25rem 0;
  }
}
.p-ceo-name__detail-label {
  font-size: 1.25rem;
  font-weight: 300;
  width: 22.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__detail-label {
    width: 100%;
    font-weight: 400;
  }
}
.p-ceo-name__detail-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 2.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__detail-content {
    padding: 1.25rem 0;
  }
}
.p-ceo-name__detail-content-last {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.p-ceo-name__detail-heading {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__detail-heading {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    font-weight: 400;
  }
}
.p-ceo-name__detail-text {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-ceo-name__detail-text {
    font-size: 0.875rem;
  }
}
.p-ceo-logo {
  padding: 6.25rem 0 0;
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-ceo-logo {
    padding: 5rem 0;
  }
}
.p-ceo-logo__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-logo__flex {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
.p-ceo-logo__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-ceo-logo__img {
    width: 100%;
  }
}
.p-ceo-logo__img img {
  max-width: 100%;
  height: auto;
}
.p-ceo-logo__text {
  -webkit-box-flex: 1.1;
      -ms-flex: 1.1;
          flex: 1.1;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-ceo-logo__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-ceo-logo__text p + p {
  margin-top: 2em;
}

.p-company-info {
  padding-top: 3.125rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-info {
    padding: 5rem 0;
  }
}
.p-company-info__table {
  width: 100%;
  border-collapse: collapse;
  max-width: 960px;
  margin: 0 auto;
}
.p-company-info__row {
  border-bottom: 1px solid #DFDFDF;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-info__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0;
  }
}
.p-company-info__label {
  width: 14.375rem;
  padding: 1.875rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  line-height: 2;
  letter-spacing: 4%;
}
@media screen and (max-width: 767px) {
  .p-company-info__label {
    width: 100%;
    padding: 0 0 0.625rem;
  }
}
.p-company-info__data {
  font-size: 0.875rem;
  line-height: 2;
  padding: 1.875rem 0;
  letter-spacing: 4%;
}
@media screen and (max-width: 767px) {
  .p-company-info__data {
    padding: 0;
    font-size: 0.875rem;
  }
}
.p-company-info__data span {
  display: block;
}
.p-company-info__data span + span {
  margin-top: 0.625rem;
}
.p-company-branch {
  background-color: #111111;
  color: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-branch {
    padding: 3.75rem 0;
  }
}
.p-company-branch__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, .5);
}
@media screen and (max-width: 767px) {
  .p-company-branch__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
    padding: 2.5rem 0;
  }
}
.p-company-branch__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.p-company-branch__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-branch__item-title {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-company-branch__item-title {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
.p-company-branch__item-jp {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-company-branch__item-jp {
    font-size: 1rem;
  }
}
.p-company-branch__item-desc {
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-company-branch__item-desc {
    font-size: 0.875rem;
  }
}
.p-company-branch__item-address {
  font-size: 0.875rem;
  margin-top: 2.5rem;
  display: block;
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.p-company-branch__item-img {
  width: 23.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-company-branch__item-img {
    width: 100%;
  }
}
.p-company-branch__item-img img {
  width: 100%;
  height: auto;
}
.p-company-branch__office {
  margin-top: 3.75rem;
  padding-left: 22.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-branch__office {
    padding-left: 0;
  }
}
.p-company-licence {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-licence {
    padding: 5rem 0;
  }
}
.p-company-licence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-company-licence__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-company-licence__item-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-company-licence__item-name {
    font-size: 1.25rem;
  }
}
.p-company-licence__item-desc {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-company-licence__item-desc {
    font-size: 0.875rem;
  }
}
.p-company-history {
  padding: 5rem 0;
  background-color: #F3F3F3;
}
@media screen and (max-width: 767px) {
  .p-company-history {
    padding: 3.75rem 0;
  }
}
.p-company-history__list {
  margin: 1.875rem auto 0;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .p-company-history__list {
    padding: 0;
  }
}
.p-company-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-company-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
  }
}
.p-company-history__item-year {
  width: 13.75rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 2;
}
.p-company-history__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-company-history__item-content {
    font-size: 0.875rem;
  }
}
.p-company-customers {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-company-customers {
    padding: 5rem 0;
  }
}
.p-company-customers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-company-customers__grid {
    grid-template-columns: 1fr;
  }
}
.p-company-customers__item {
  background-color: #fff;
  padding: 1.6875rem 1.25rem;
  text-align: center;
  font-size: 1rem;
  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;
  min-height: 5rem;
  font-weight: 700;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-company-customers__item {
    min-height: 3.75rem;
    padding: 0.9375rem;
  }
}
.p-company-customers__note {
  margin-top: 3.75rem;
  font-size: 1rem;
  color: #727272;
  text-align: center;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-company-customers__note {
    font-weight: 400;
  }
}
.p-company-customers__note a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.p-company-customers__note a:hover {
  color: #96C83C;
  border-bottom-color: #96C83C;
}

.p-complete-page {
  padding: 17.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-complete-page {
    padding: 6.25rem 0 5rem;
  }
}
.p-complete-page__inner {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}
.p-complete-page__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 3.75rem;
  letter-spacing: 10%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-complete-page__title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.p-complete-page__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 10%;
  color: #111111;
  margin-top: 3.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-complete-page__text {
    font-size: 0.875rem;
    text-align: left;
    text-align: center;
  }
}

.p-form-page {
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .p-form-page {
    background: #ffffff;
  }
}
.p-form-page__inner {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .p-form-page__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
.p-form-page__content {
  width: 45%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 3.125rem 3.75rem 3.75rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-form-page__content {
    width: 100%;
    padding: 3.75rem 1.25rem;
  }
}
.p-form-page__logo {
  width: 13.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__logo {
    width: 7.5rem;
  }
}
.p-form-page__title-area {
  padding: 2.5rem 0 3.75rem;
  border-bottom: 1px solid #D9D9D9;
}
.p-form-page__title {
  font-size: 5.375rem;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.2;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-form-page__title {
    font-size: 3rem;
    font-weight: 400;
  }
}
.p-form-page__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__subtitle {
    font-size: 1rem;
  }
}
.p-form-page__desc {
  margin-top: 3.75rem;
}
.p-form-page__img {
  margin-top: 0.9375rem;
}
.p-form-page__desc-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 10%;
  margin-bottom: 2.8125rem;
}
.p-form-page__desc-text:last-child {
  margin-bottom: 0;
}
.p-form-page__desc-text a {
  text-decoration: underline;
}
.p-form-page__desc-text a:hover {
  color: #96C83C;
}
.p-form-page__copyright {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.625rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-form-page__copyright {
    display: none;
  }
}
.p-form-page__form-wrapper {
  width: 55%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #f0f0f0;
  padding: 10rem 3.75rem 8.75rem;
  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;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-wrapper {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}
.p-form-page__form-container {
  background-color: #ffffff;
  padding: 3.75rem;
  width: 100%;
  max-width: 36.25rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-container {
    padding: 2.5rem 1.25rem;
  }
}
.p-form-page__form-item {
  margin-bottom: 1.5625rem;
}
.p-form-page__form-item:last-child {
  margin-bottom: 0;
}
.p-form-page__form-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.6;
}
.p-form-page__form-label.is-required::after {
  content: "*";
  color: #e00;
  margin-left: 0.3125rem;
}
.p-form-page__form-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-input-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-form-page__form-input-group .p-form-page__form-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form-page__form-input, .p-form-page__form-select, .p-form-page__form-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  background-color: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-form-page__form-input:focus, .p-form-page__form-select:focus, .p-form-page__form-textarea:focus {
  border-color: #96C83C;
  outline: none;
}
.p-form-page__form-input::-webkit-input-placeholder, .p-form-page__form-select::-webkit-input-placeholder, .p-form-page__form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.p-form-page__form-input::-moz-placeholder, .p-form-page__form-select::-moz-placeholder, .p-form-page__form-textarea::-moz-placeholder {
  color: #ccc;
}
.p-form-page__form-input::-ms-input-placeholder, .p-form-page__form-select::-ms-input-placeholder, .p-form-page__form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.p-form-page__form-input::placeholder, .p-form-page__form-select::placeholder, .p-form-page__form-textarea::placeholder {
  color: #ccc;
}
.p-form-page__form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 0.9375rem center;
}
.p-form-page__form-textarea {
  height: 9.375rem;
  resize: vertical;
}
.p-form-page__form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.625rem;
}
.p-form-page__form-radio-group--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-form-page__form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.p-form-page__form-radio input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: #96C83C;
}
.p-form-page__form-error {
  margin-top: 0.3125rem;
}
.p-form-page__form-error em {
  display: none;
  color: #e00;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.6;
}
.p-form-page__form-error-top {
  margin-bottom: 1.25rem;
}
.p-form-page__form-error-top em {
  display: none;
  font-style: normal;
  color: #E60012;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 8%;
  margin-bottom: 1.25rem;
}
.p-form-page__form-privacy {
  margin-top: 3.75rem;
  text-align: center;
}
.p-form-page__form-privacy-text {
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 2;
  letter-spacing: 10%;
}
.p-form-page__form-privacy-text a {
  text-decoration: underline;
}
.p-form-page__form-agree-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-agree-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}
.p-form-page__form-agree-btn {
  cursor: pointer;
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-agree-btn {
    width: 100%;
  }
}
.p-form-page__form-agree-btn input[type=radio] {
  display: none;
}
.p-form-page__form-agree-btn input[type=radio]:checked + span {
  background-color: #111111;
  color: #fff;
  border-color: #111111;
}
.p-form-page__form-agree-btn span {
  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;
  background-color: #fff;
  color: #111111;
  border: 2px solid #111111;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 1.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.1em;
}
.p-form-page__form-submit {
  margin-top: 1.875rem;
  text-align: center;
}
.p-form-page__form-btn {
  width: 100%;
  background-color: #9BCA4D;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 10%;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form-page__form-btn {
    font-size: 1.125rem;
  }
}
.p-form-page__form-btn:hover {
  opacity: 0.8;
}
.p-form-page__form-note {
  margin-top: 1.5625rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 10%;
  color: #111111;
}
.p-form-page__form-note a {
  text-decoration: underline;
  color: #333;
}
.p-form-page__form-note a:hover {
  color: #96C83C;
}
.p-form-page__complete {
  text-align: center;
  padding: 6.25rem 0;
}
.p-form-page__complete-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.p-news {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 3.75rem;
  }
}
.p-news-list {
  margin-top: 5rem;
}
.p-news-list__item {
  border-bottom: 1px solid #DEDFE1;
  padding: 1.875rem 0;
}
.p-news-list__item:first-child {
  border-top: 1px solid #DEDFE1;
}
@media screen and (max-width: 767px) {
  .p-news-list__item {
    padding: 1.875rem 0;
  }
}
.p-news-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
}
.p-news-list__item-img {
  width: 14.375rem;
  height: 7.5rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-news-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-news-list__item-content {
  margin-top: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-news-list__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-info {
    gap: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}
.p-news-list__item-date {
  font-size: 0.875rem;
  color: #888;
  font-family: "DM Mono", monospace;
}
.p-news-list__item-cat {
  font-size: 0.75rem;
  padding: 0.125rem 0.9375rem;
  border: 1px solid #333;
  border-radius: 1.25rem;
  display: inline-block;
}
.p-news-list__item-title {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 4%;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-title {
    font-size: 1rem;
    font-weight: 400;
  }
}
.p-news-pagination {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-pagination {
    margin-top: 2.5rem;
  }
}
.p-news-pagination__link {
  width: 3.375rem;
  height: 3.375rem;
  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;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  list-style: 1;
}
@media screen and (max-width: 767px) {
  .p-news-pagination__link {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-news-pagination__link.is-active {
  background-color: #96C83C;
  border-color: #96C83C;
  color: #fff;
}
.p-news-pagination__link--prev, .p-news-pagination__link--next {
  width: auto;
  padding: 1.25rem 0.75rem;
}
.p-news-pagination__link:hover:not(.is-active) {
  background-color: #f7f7f7;
}
.p-news-detail {
  max-width: 49.375rem;
  margin: 12.25rem auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    margin: 6.25rem auto 0;
  }
}
.p-news-detail__header {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__header {
    margin-bottom: 1.875rem;
  }
}
.p-news-detail__date {
  font-size: 0.875rem;
  color: #888;
  font-family: "DM Mono", monospace;
  margin-bottom: 0.625rem;
  display: block;
}
.p-news-detail__title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__title {
    font-size: 1.5rem;
  }
}
.p-news-detail__cat {
  font-size: 0.75rem;
  padding: 0.125rem 0.9375rem;
  border: 1px solid #333;
  border-radius: 1.25rem;
  display: inline-block;
}
.p-news-detail__thumb {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__thumb {
    margin-bottom: 2.5rem;
  }
}
.p-news-detail__thumb img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.p-news-detail__content {
  max-width: 50rem;
}
.p-news-detail__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 5rem 0 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #DEDCE8;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content h2 {
    font-size: 1.375rem;
    margin: 3.75rem 0 1.25rem;
  }
}
.p-news-detail__content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 3.75rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content h3 {
    font-size: 1.125rem;
    margin: 2.5rem 0 0.9375rem;
  }
}
.p-news-detail__content p {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.p-news-detail__content p + p {
  margin-top: 2em;
}

.p-philosophy-top {
  padding: 5rem 0 6.25rem;
}
.p-philosophy-top__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 43.8125rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-top__lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-philosophy-top__flex {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-philosophy-top__flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-philosophy-top__text {
  max-width: 30rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-philosophy-top__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-philosophy-top__text p + p {
  margin-top: 2em;
}
.p-philosophy-stakeholder {
  background-color: #111111;
  color: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy-stakeholder {
    padding: 3.75rem 0;
  }
}
.p-philosophy-stakeholder__graphic {
  margin: 3.75rem auto 3.125rem;
  max-width: 34.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-philosophy-stakeholder__graphic {
    margin-bottom: 3.75rem;
  }
}
.p-philosophy-stakeholder__graphic img {
  width: 100%;
  height: auto;
}
.p-philosophy-stakeholder__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-stakeholder__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-philosophy-stakeholder__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-philosophy-stakeholder__item-title {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
.p-philosophy-stakeholder__item-text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-stakeholder__item-text {
    font-size: 0.875rem;
  }
}
.p-philosophy-banner {
  position: relative;
  height: 36.4375rem;
  color: #fff;
  text-align: center;
  padding: 11.375rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-banner {
    height: 25rem;
    padding: 5.625rem 0 3.125rem;
  }
}
.p-philosophy-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-philosophy-banner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-philosophy-banner__inner {
  z-index: 1;
}
.p-philosophy-banner__title {
  font-size: 3.375rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-philosophy-banner__title {
    font-size: 1.75rem;
    font-weight: 400;
  }
}
.p-philosophy-banner__subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-philosophy-banner__subtitle {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}
.p-philosophy-banner__text {
  font-size: 1rem;
  line-height: 2;
  max-width: 40.25rem;
  margin: 5rem auto 0;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-philosophy-banner__text {
    margin: 1.875rem auto 0;
    font-size: 0.875rem;
    line-height: 1.8;
    font-weight: 400;
  }
}
.p-philosophy-principles {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles {
    padding: 5rem 0;
  }
}
.p-philosophy-principles__title-area {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__title-area {
    margin-bottom: 1.875rem;
  }
}
.p-philosophy-principles__title {
  font-size: 3rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__title {
    font-size: 2rem;
    font-weight: 400;
  }
}
.p-philosophy-principles__subtitle {
  font-size: 0.875rem;
  color: #2F6992;
  display: block;
}
.p-philosophy-principles__grid {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__grid {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-philosophy-principles__item-num {
  font-size: 1rem;
  color: rgba(0, 0, 0, .5);
  font-family: "DM Mono", monospace;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__item-num {
    font-weight: 400;
  }
}
.p-philosophy-principles__item-title {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__item-title {
    font-size: 1.25rem;
  }
}
.p-philosophy-principles__item-text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__item-text {
    font-size: 0.875rem;
  }
}
.p-philosophy-principles__item:last-child {
  grid-column: 1/-1;
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-principles__item:last-child {
    max-width: 100%;
  }
}
.p-philosophy-policy {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy {
    padding: 5rem 0;
  }
}
.p-philosophy-policy--gray {
  background-color: #F3F3F3;
  padding: 3.75rem 0;
}
.p-philosophy-policy__flex {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.875rem;
    gap: 1.25rem;
  }
}
.p-philosophy-policy__main-text {
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__main-text {
    font-size: 1.5rem;
    white-space: normal;
  }
}
.p-philosophy-policy__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-philosophy-policy__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.75rem;
  padding: 3.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    padding: 1.875rem 0;
  }
}
.p-philosophy-policy__detail:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.p-philosophy-policy__detail-label {
  font-size: 1.25rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__detail-label {
    font-weight: 400;
  }
}
.p-philosophy-policy__detail-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-philosophy-policy__detail-text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__detail-text {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.p-philosophy-policy__simple-text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-philosophy-policy__simple-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-philosophy-policy__simple-text--dev {
  max-width: 37.5rem;
  margin-left: auto;
}

.p-policy-page__lead {
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 2.5rem;
  letter-spacing: 5%;
}
@media screen and (max-width: 767px) {
  .p-policy-page__lead {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-policy-page__section {
  margin-top: 5rem;
  line-height: 2;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .p-policy-page__section {
    margin-bottom: 2.5rem;
  }
}
.p-policy-page__sec-date-area {
  text-align: left;
  line-height: 2;
  letter-spacing: 10%;
  margin-top: 5rem;
  font-size: 0.875rem;
}
.p-policy-page__heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .p-policy-page__heading {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
}
.p-policy-page__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 10%;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-policy-page__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-policy-page__text p + p {
  margin-top: 2.5rem;
}
.p-policy-page__text ul, .p-policy-page__text ol {
  padding-left: 1.5em;
  margin-top: 2.5rem;
}
.p-policy-page__text ul li + li, .p-policy-page__text ol li + li {
  margin-top: 0.5em;
}
.p-policy-page__text ul ul, .p-policy-page__text ul ol, .p-policy-page__text ol ul, .p-policy-page__text ol ol {
  margin-top: 0.5em;
}
.p-policy-page__text ul {
  list-style: disc;
}
.p-policy-page__text ol {
  list-style: decimal;
}
.p-policy-page__text2 {
  margin-top: 0.3125rem;
}
.p-policy-page__date-list {
  padding-left: 0 !important;
  list-style-position: inside !important;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
.p-policy-page__date-list li {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 10%;
  font-size: 0.875rem;
  margin-top: 2rem !important;
}
.p-policy-page__date-list li p {
  display: block;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-policy-page__date-list li p {
    font-weight: 400;
  }
}
.p-policy-page__date-list li p {
  margin-top: 0;
}
.p-policy-page__date-list li p + p {
  margin-top: 1rem;
}
.p-policy-page__list {
  margin-top: 1.25rem;
}
.p-policy-page__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-policy-page__list-item {
    font-size: 0.875rem;
  }
}
.p-policy-page__list-item + .p-policy-page__list-item {
  margin-top: 0.625rem;
}
.p-policy-page__list-item dt {
  font-weight: 700;
  width: 6.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-policy-page__list-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-policy-page__sub-heading {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 2rem;
  line-height: 2;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .p-policy-page__sub-heading {
    font-size: 0.9375rem;
    margin-top: 2.5rem;
  }
}
.p-policy-page__note {
  font-size: 0.875rem;
  margin-top: 2rem;
  line-height: 2;
  letter-spacing: 10%;
}
.p-policy-page__table-list {
  border-top: 1px solid #E5E5E5;
  margin: 1.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-policy-page__table-list {
    margin: 0;
  }
}
.p-policy-page__table-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 0;
  border-bottom: 1px solid #E5E5E5;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-policy-page__table-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0;
  }
}
.p-policy-page__table-list-item dt {
  font-weight: 700;
  width: 14.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-policy-page__table-list-item dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0.625rem;
  }
}
.p-policy-page__table-list-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 4%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-policy-page__table-list-item dd {
    padding-right: 0;
  }
}
.p-policy-page__date-area {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-policy-page__date-area {
    font-size: 0.8125rem;
  }
}
.p-policy-page__mark {
  width: 4.6875rem;
  margin-top: 3.125rem;
}

.p-top-hero {
  position: relative;
  width: 100%;
  height: 660px;
  min-height: 600px;
  background-color: #111111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-hero {
    height: 585px;
  }
}
.p-top-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-hero__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}
.p-top-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-hero__inner {
    padding: 0 20px;
  }
}
.p-top-hero__content {
  max-width: 700px;
}
.p-top-hero__title {
  font-size: 6.25rem;
  line-height: 1.4;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-hero__title {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
.p-top-hero__title span {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  margin-top: 1.25rem;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-hero__title span {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
.p-top-hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-top: 2.5rem;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .p-top-hero__text {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
.p-top-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    margin-top: 2rem;
  }
}
.p-top-hero__btns .c-button {
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  .p-top-hero__btns .c-button {
    width: 100%;
  }
}

.p-top-about {
  padding: 6.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 3.125rem 0 3.125rem;
    font-weight: 400;
  }
}

.p-top-about__inner {
  padding-bottom: 4.3125rem;
}

.p-top-about__subtitle {
  color: #96C83C;
  font-size: 1rem;
  font-weight: 300;
  font-family: "DM Mono", monospace;
}
.p-top-about__subtitle::before {
  content: "<";
  margin-right: 0.5rem;
}
.p-top-about__subtitle::after {
  content: ">";
  margin-left: 0.5rem;
}

.p-top-about__title {
  margin-top: 1.625rem;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.05;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-about__title {
    font-size: 2rem;
    font-weight: 400;
  }
}

.p-top-about__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
  max-width: 596px;
}

.p-top-about__contents {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-about__contents__img {
  width: 13.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents__img {
    margin-left: auto;
    width: 7.8125rem;
  }
}

.p-top-about__contents2__img {
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents2__img {
    width: 12.3125rem;
    margin-top: 1.875rem;
  }
}

.p-top-about__contents2 {
  margin-top: 3.5rem;
  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;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents2 {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.p-top-about__contents2 p {
  max-width: 33.75rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents2 p {
    max-width: 18.4375rem;
    margin: 0 auto;
  }
}

.p-top-about__contents3 {
  margin-top: 9.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents3 {
    margin-top: 4.375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-about__contents3__img {
  width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents3__img {
    width: 100%;
  }
}

.p-top-about__contents3__img-logo {
  width: 27.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents3__img-logo {
    width: 100%;
  }
}

.p-top-about__contents3__right p {
  margin-top: 1.875rem;
  line-height: 2;
}

.p-top-about__banner {
  min-height: 672px;
  background: url("../images/top/about-bg.jpg") no-repeat center center/cover;
  overflow: hidden;
  padding: 5rem 0 3.75rem;
  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;
}
@media screen and (max-width: 767px) {
  .p-top-about__banner {
    background: url("../images/top/about-bg-sp.png") no-repeat center center/cover;
    min-height: auto;
    padding: 1.875rem 0;
    gap: 19.875rem;
  }
}
.p-top-about__banner .l-inner {
  position: relative;
  z-index: 2;
  color: #000000;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__banner .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}

.p-top-about__banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-top-about__banner-title {
    font-size: 1.25rem;
  }
}

.p-top-about__banner__contents {
  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;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__banner__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}
.p-top-about__banner__contents p {
  max-width: 30rem;
  line-height: 2;
}

.p-top-about__banner-text {
  font-size: 4rem;
  font-weight: 300;
  font-family: "Bricolage Grotesque", sans-serif;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111111;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-about__banner-text {
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 400;
  }
}
.p-top-about__banner-text span {
  display: inline-block;
  padding-right: 3.75rem;
  -webkit-animation: bannerTicker 40s linear infinite;
          animation: bannerTicker 40s linear infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes bannerTicker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes bannerTicker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-top-achievements {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-achievements {
    padding-bottom: 3.75rem;
  }
}

.p-top-achievements__text {
  text-align: center;
  color: #111111;
}

/* 1個目のp：導入実績 */
.p-top-achievements__text p:first-child {
  font-size: 1.5rem;
  color: #333;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__text p:first-child {
    font-size: 1.125rem;
  }
}

/* 2個目のp：100＋ */
.p-top-achievements__text p:nth-child(2) {
  font-size: 7.5rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__text p:nth-child(2) {
    font-size: 3.75rem;
  }
}
.p-top-achievements__text p:nth-child(2) span {
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* 3個目のp：数多くの大手企業様の〜 */
.p-top-achievements__text p:nth-child(3) {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1.875rem;
  font-weight: 400;
}

.p-top-achievements__company {
  margin-top: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__company {
    margin-top: 2rem;
  }
}
.p-top-achievements__company-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-achievements__company-inner picture {
  display: contents;
}
.p-top-achievements__company-inner img {
  width: auto !important;
  max-width: none !important;
  height: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__company-inner img {
    height: 2.0625rem;
    margin-right: 0.75rem;
  }
}

.p-top-achievements__company1 .p-top-achievements__company-inner {
  -webkit-animation: infinity-scroll-right 50s linear infinite;
          animation: infinity-scroll-right 50s linear infinite;
  will-change: transform;
}
.p-top-achievements__company1 .p-top-achievements__company-inner img {
  aspect-ratio: 3102/154;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__company1 .p-top-achievements__company-inner img {
    aspect-ratio: 1366/68;
  }
}

.p-top-achievements__company2 {
  margin-top: 1.25rem;
}
.p-top-achievements__company2 .p-top-achievements__company-inner {
  -webkit-animation: infinity-scroll-left 50s linear infinite;
          animation: infinity-scroll-left 50s linear infinite;
  will-change: transform;
}
.p-top-achievements__company2 .p-top-achievements__company-inner img {
  aspect-ratio: 2708/154;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__company2 .p-top-achievements__company-inner img {
    aspect-ratio: 1193/68;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-top-achievements__btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-achievements__btn {
    margin-top: 2.5rem;
  }
}

.p-top-service {
  background: #000000;
  color: #fff;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-bottom: 3.75rem;
  }
}
.p-top-service__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top-service__inner {
    padding: 0 20px;
  }
}
.p-top-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.75rem;
  padding: 7.5rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0;
    padding: 3.75rem 0 1.875rem;
  }
}
.p-top-service__title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-service__title {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
.p-top-service__desc {
  max-width: 33.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, .7);
}
@media screen and (max-width: 767px) {
  .p-top-service__desc {
    max-width: 100%;
  }
}
.p-top-service__item {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding: 3.125rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__item {
    padding: 2.5rem 0;
  }
}
.p-top-service__item-num {
  position: absolute;
  top: 5rem;
  left: 0;
  font-size: 1.125rem;
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, .5);
}
@media screen and (max-width: 767px) {
  .p-top-service__item-num {
    position: static;
    margin-bottom: 1.25rem;
  }
}
.p-top-service__item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  padding-left: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    gap: 1.875rem;
  }
}
.p-top-service__item-img {
  width: 17.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-img {
    width: 100%;
  }
}
.p-top-service__item-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-top-service__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-service__item-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title {
    font-size: 1.5rem;
    font-weight: 400;
  }
}
.p-top-service__item-text {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  margin-top: 0.625rem;
}
.p-top-service__item-links {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  row-gap: 2.0625rem;
}
.p-top-service__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-top-service__link::after {
  content: "";
  width: 2.125rem;
  height: 1.125rem;
  background: #fff url("../images/arrow_right-bk.svg") center/10px no-repeat;
  border-radius: 200px;
  display: block;
}
.p-top-service__link:hover {
  color: #92C022;
}
.p-top-service__link:hover::after {
  background: #92C022 url("../images/arrow_right.svg") center/10px no-repeat;
}
.p-top-service__link--white {
  color: #fff;
}
.p-top-service__link--white::after {
  background-color: #fff;
}

.p-top-news {
  padding: 7.5rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 5rem 0;
  }
}
.p-top-news__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    padding: 0 20px;
  }
}
.p-top-news__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-top-news__list {
  border-top: 1px solid #DEDFE1;
  margin-top: 3.75rem;
  font-family: "Inter", sans-serif;
}
.p-top-news__item {
  border-bottom: 1px solid #eee;
}
.p-top-news__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1.5rem 0;
  }
}
.p-top-news__item-link:hover {
  opacity: 0.7;
}
.p-top-news__item-img {
  width: 14.375rem;
  aspect-ratio: 210/120;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.p-top-news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.p-top-news__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-news__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.p-top-news__item-date {
  font-size: 0.75rem;
  letter-spacing: 10%;
  line-height: 2;
  color: #808080;
  font-family: "Inter", sans-serif;
}
.p-top-news__item-cat {
  font-size: 0.75rem;
  color: #111111;
  padding: 0.125rem 0.5rem;
  border: 1px solid #111111;
  border-radius: 20px;
}
.p-top-news__item-title {
  font-size: 1rem;
  font-weight: 300;
  color: #000000;
  line-height: 2;
  letter-spacing: 4%;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-title {
    font-size: 1rem;
    font-weight: 400;
  }
}
.p-top-news__btn-wrapper {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.5rem;
  }
}
.p-top-news__btn {
  min-width: 9.375rem;
  font-size: 1rem;
  font-weight: 300;
}

.p-top-recruit {
  background: url("../images/top/recruit.png") no-repeat center center/cover;
  min-height: 27.75rem;
  padding: 6.25rem 0 6rem;
  margin-bottom: 2.5rem;
}
.p-top-recruit__title {
  font-size: 4rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__title {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
.p-top-recruit__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__contents {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.p-top-recruit p {
  font-size: 1rem;
  line-height: 2;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  max-width: 33.75rem;
}
.p-top-recruit__btn img {
  width: 9rem;
}

.p-service-anchor {
  background: #F3F3F3;
  padding: 2.5rem 0;
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .p-service-anchor {
    padding: 1.875rem 0;
  }
}
.p-service-anchor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem 3.125rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-service-anchor__list {
    gap: 1.875rem;
  }
}
.p-service-anchor__item.is-active .p-service-anchor__link::after {
  background-color: #96C83C;
}
.p-service-anchor__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #111111;
  font-weight: 700;
  font-size: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
  border-bottom: 0.0625rem solid #ccc;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-service-anchor__link {
    font-size: 0.875rem;
  }
}
.p-service-anchor__link:hover::after {
  background-color: #96C83C;
}
.p-service-anchor__link::after {
  content: "";
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.25rem;
  height: 1.25rem;
  background-color: #222;
  border-radius: 0.625rem;
  margin-left: 1.875rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-image: url("../images/arrow-down-wh.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-service-anchor__link::after {
    width: 1.875rem;
    height: 1.125rem;
    margin-left: 0.625rem;
  }
}

.p-service-block--gray {
  background: #f8f8f8;
}
.p-service-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .p-service-block__inner {
    padding: 0 20px;
  }
}
.p-service-block__header {
  text-align: left;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-block__header {
    margin-bottom: 2.5rem;
  }
}
.p-service-block__subtitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #96C83C;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "DM Mono", monospace;
  list-style: 1.2;
}
.p-service-block__subtitle::before {
  content: "<";
  margin-right: 0.5rem;
}
.p-service-block__subtitle::after {
  content: ">";
  margin-left: 0.5rem;
}
.p-service-block__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-service-block__title {
    font-size: 1.625rem;
  }
}
.p-service-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-service-block__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.p-service-block__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service-block__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service-block__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-service-block__item-title {
    font-size: 1.375rem;
  }
}
.p-service-block__item-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}
.p-service-block__item-image {
  max-width: 30rem;
}
.p-service-block__item-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-block__item-image {
    margin: 0 auto;
  }
}
.p-service-block__video {
  margin-top: 3.75rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service-block__video {
    margin-top: 2.5rem;
  }
}
.p-service-block__video-wrapper {
  position: relative;
  padding-top: 54.6875%; /* 525px / 960px = 54.6875% ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, .08);
          box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, .08);
}
.p-service-block__video-wrapper iframe,
.p-service-block__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-case {
  background: #111111;
  color: #fff;
  overflow: hidden;
}
.p-service-case__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0 0 3.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-case__inner {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-case {
    padding: 3.75rem 0;
  }
}
.p-service-case__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-service-case__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  width: auto;
  height: auto;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-case__nav {
    padding-right: 0;
  }
}
.p-service-case__prev, .p-service-case__next {
  position: relative;
  z-index: 10;
  width: 3.5625rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1 !important;
  cursor: pointer;
  pointer-events: auto !important;
  background-repeat: no-repeat;
  background-position: center;
}
.p-service-case__prev::after, .p-service-case__next::after {
  display: none !important;
}
.p-service-case__prev.swiper-button-disabled, .p-service-case__next.swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: default;
}
.p-service-case__prev.swiper-button-lock, .p-service-case__next.swiper-button-lock {
  display: none !important;
}
.p-service-case__prev:hover:not(.swiper-button-disabled), .p-service-case__next:hover:not(.swiper-button-disabled) {
  background-color: #eee;
  opacity: 1 !important;
}
.p-service-case__prev:active, .p-service-case__next:active {
  background-color: #ddd;
}
.p-service-case__prev {
  background-image: url("../images/slider-arrow-prev.svg");
}
.p-service-case__next {
  background-image: url("../images/slider-arrow-next.svg");
}
.p-service-case__container {
  padding: 0;
  margin-top: 1.875rem;
}
.p-service-case__card {
  background: #F3F3F3;
  border-radius: 0.3125rem;
  color: #333;
  height: auto;
}
.p-service-case__card-inner {
  padding: 1.875rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-case__card-inner {
    padding: 1.875rem 1.25rem;
  }
}
.p-service-case__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.625rem;
  position: relative;
  display: inline-block;
  line-height: 1.6;
  padding-bottom: 0.1875rem;
}
.p-service-case__card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .p-service-case__card-title {
    font-size: 1.125rem;
  }
}
.p-service-case__card-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1.5px;
}
.p-service-case__card-detail {
  background: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-top: 1.25rem;
}
.p-service-case__card-detail-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.p-service-case__card-list li {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 0.625rem;
  position: relative;
  letter-spacing: 1px;
  margin-left: 0.4375rem;
}
.p-service-case__card-list li::before {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: 0;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}
.p-service-case__card-list li:last-child {
  margin-bottom: 0;
}

.p-service-cta {
  margin-top: 8.75rem;
  padding-bottom: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-cta {
    margin-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.p-service-cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-cta__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service-cta__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  padding: 1.875rem 1.25rem 1.25rem 1.875rem;
  border-radius: 0.3125rem;
  text-align: left;
  position: relative;
  min-height: 11.25rem;
  text-decoration: none;
}
.p-service-cta__btn--download {
  background: #111;
  color: #fff;
}
.p-service-cta__btn--contact {
  background: #96C83C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-service-cta__btn {
    padding: 1.875rem 1.25rem;
    min-height: 8.75rem;
  }
}
.p-service-cta__btn-single {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center !important;
  gap: 1.625rem;
}
.p-service-cta__btn-en {
  display: block;
  font-size: 3rem;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-service-cta__btn-en {
    font-size: 2.25rem;
  }
}
.p-service-cta__btn-jp {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-service-cta__btn-jp {
    font-size: 0.875rem;
  }
}
.p-service-cta__btn-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #fff;
  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;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 1.0625rem;
}
.p-service-cta__btn-icon::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -2px;
}
@media screen and (max-width: 767px) {
  .p-service-cta__btn-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-service-cta__btn-icon::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-service-cta__btn-icon2 {
  margin-top: 0;
  -ms-flex-item-align: center;
      align-self: center;
}

.p-service-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.875rem 3.75rem;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .p-service-features__grid {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-features__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}
.p-service-features__content {
  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: 1.25rem;
}
.p-service-features__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-service-features__item-title {
    font-size: 1.125rem;
  }
}
.p-service-features__item-text {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
  font-weight: 300;
  margin-top: 1.25rem;
}
.p-service-features__item-text li {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 0.625rem;
  position: relative;
  letter-spacing: 1px;
}
.p-service-features__item-text li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-service-features__item-text {
    font-size: 0.875rem;
  }
}
.p-service-features__icon {
  width: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-features__icon {
    width: 3.75rem;
  }
}
.p-service-features__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service-flow {
  margin-top: 4rem;
}
.p-service-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem 2.3125rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    overflow: visible;
  }
}
.p-service-flow__item {
  position: relative;
  width: 11.625rem;
  height: 18.0625rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
  padding: 2.875rem 1.375rem 1.5rem;
  text-align: center;
  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;
}
@media screen and (max-width: 767px) {
  .p-service-flow__item {
    height: auto;
    padding: 3.125rem;
  }
}
.p-service-flow__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 2.3125rem;
  height: 0.5rem;
  background: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-flow__item::before {
    top: auto;
    bottom: 100%;
    right: auto;
    left: 50%;
    width: 0.5rem;
    height: 2.8125rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-service-flow__item:first-child::before {
  display: none;
}
.p-service-flow__item--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}
.p-service-flow__item--dark .p-service-flow__item-num {
  color: #888;
}
.p-service-flow__item--dark .p-service-flow__item-text {
  color: #ddd;
}
.p-service-flow__item--dark .p-service-flow__item-text li::before {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-service-flow__item {
    width: 100%;
  }
}
.p-service-flow__item-num {
  font-family: "DM Mono", monospace;
  font-size: 0.875rem;
  color: rgba(17, 17, 17, .5);
  margin-bottom: 0.3125rem;
  display: block;
  line-height: 1.6;
  font-weight: 400;
}
.p-service-flow__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  position: relative;
  display: block;
  letter-spacing: 0;
}
.p-service-flow__item-title::after {
  content: "";
  display: block;
  width: 100%;
  margin: 0.9375rem auto 0;
  border-bottom: 2px dotted #ccc;
}
@media screen and (max-width: 767px) {
  .p-service-flow__item-title {
    font-size: 1.125rem;
  }
}
.p-service-flow__item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #111111;
  text-align: left;
  font-weight: 300;
}
.p-service-flow__item-text li {
  line-height: 1.6;
  padding-left: 0.625rem;
  position: relative;
  letter-spacing: 1px;
}
.p-service-flow__item-text li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
}

.p-service-hero {
  padding: 10rem 0 2.75rem;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-hero {
    padding: 5rem 0 3.75rem;
  }
}
.p-service-hero .p-service-block__inner .p-service-hero__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-hero .p-service-block__inner .p-service-hero__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
.p-service-hero__content {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.p-service-hero__image {
  text-align: right;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  .p-service-hero__image {
    width: 100%;
    text-align: center;
  }
}
.p-service-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, .1);
}
.p-service-hero__title {
  font-size: 4rem;
  line-height: 1;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #111;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-service-hero__title {
    font-size: 2.5rem;
  }
}
.p-service-hero__title span {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-top: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-service-hero__title span {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
.p-service-hero__text {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-hero__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}
.p-service-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service-hero__btns .c-button {
  min-width: 10.75rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  padding: 1.0625rem 0.625rem 1.0625rem 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-service-hero__btns .c-button {
    min-width: 100%;
    font-size: 1rem;
    padding: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service-problems {
    overflow: hidden;
  }
}
.p-service-problems--white .p-service-problems__prev,
.p-service-problems--white .p-service-problems__next {
  background-color: #111;
}
.p-service-problems--white .p-service-problems__prev {
  background-image: url("../images/slider-arrow-prev-wh.svg");
}
.p-service-problems--white .p-service-problems__next {
  background-image: url("../images/slider-arrow-next-wh.svg");
}
.p-service-problems__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-service-problems__top {
    gap: 0;
  }
}
.p-service-problems__nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service-problems__nav {
    padding-right: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: relative;
  }
}
.p-service-problems__prev, .p-service-problems__next {
  position: relative;
  z-index: 10;
  width: 3.5625rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1 !important;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}
.p-service-problems__prev::after, .p-service-problems__next::after {
  display: none !important;
}
.p-service-problems__prev.swiper-button-disabled, .p-service-problems__next.swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-service-problems__prev, .p-service-problems__next {
    width: 3.5625rem;
    height: 1.875rem;
  }
}
.p-service-problems__prev {
  background-image: url("../images/slider-arrow-prev.svg");
}
.p-service-problems__next {
  background-image: url("../images/slider-arrow-next.svg");
}
.p-service-problems__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service-problems__pagination {
    display: block;
    position: relative;
    margin-top: 1.875rem;
    text-align: center;
  }
  .p-service-problems__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    margin: 0 0.3125rem;
  }
  .p-service-problems__pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-service-problems__items {
    margin-top: 1.875rem;
  }
}
.p-service-problems__items .swiper-wrapper .swiper-slide {
  min-width: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-service-problems__items .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.p-service-problems__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-service-problems__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
}
.p-service-problems__item-case {
  font-family: "DM Mono", monospace;
  color: rgba(17, 17, 17, .5);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
}
.p-service-problems__item-category {
  font-weight: bold;
  font-size: 0.75rem;
  padding-left: 0.5625rem;
  border-left: 1px solid #ccc;
  line-height: 1;
  color: #000000;
}
.p-service-problems__item-top {
  background-color: #fff;
  padding: 1.875rem 1.4375rem;
  border-radius: 0.3125rem;
}
.p-service-problems__item-problem {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2;
  color: #111;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-service-problems__item-problem {
    min-height: auto;
    font-size: 1rem;
  }
}
.p-service-problems__item-arrow {
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 0.9375rem solid #ddd;
  margin: 0.3125rem auto 0.6875rem;
}
.p-service-problems__item-solution {
  background: #f5f5f5;
  padding: 1.875rem 1.5rem;
  border-radius: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 12.5rem;
}
.p-service-problems__item-solution-text {
  font-size: 0.875rem;
  line-height: 2;
  color: #111;
  font-weight: bold;
  text-align: left;
}

.p-service-scope {
  background: #111;
  color: #fff;
}
.p-service-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 3.75rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service-scope__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-service-scope__item {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-service-scope__item:hover .p-service-scope__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-service-scope__item-image {
  width: 100%;
  aspect-ratio: 510/310;
  overflow: hidden;
  border-radius: 0.5rem;
}
.p-service-scope__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.p-service-scope__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-scope__item-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}
.p-service-scope__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 8.75rem;
  padding-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-scope__item-title {
    font-size: 1.25rem;
    min-width: auto;
  }
}
.p-service-scope__item-text {
  font-size: 0.875rem;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #ccc;
  letter-spacing: 7%;
}
.p-service-scope__item-btn {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 0.25rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-service-scope__item-btn::before, .p-service-scope__item-btn::after {
  content: "";
  position: absolute;
  background: #000;
}
.p-service-scope__item-btn::before {
  width: 1rem;
  height: 0.125rem;
}
.p-service-scope__item-btn::after {
  width: 0.125rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .p-service-scope__item-btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.p-service-staff__content {
  margin: 3.5rem auto 0;
  max-width: 846px;
}
.p-service-staff__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 500px) {
  .p-service-staff__list {
    gap: 1.25rem;
  }
}
.p-service-staff__item {
  text-align: left;
}
.p-service-staff__item-label {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service-staff__item-label {
    font-size: 1rem;
  }
}
.p-service-staff__item-value {
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0.9375rem;
}
.p-service-staff__item-value span {
  font-size: 3rem;
  line-height: 1;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-staff__item-value {
    font-size: 1rem;
  }
}
.p-service-staff__image {
  margin-top: 3.4375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-staff__image {
    overflow: scroll;
  }
}
.p-service-staff__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-service-staff__image img {
    max-width: 756px;
  }
}

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

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

.u-serviceSec-bk {
  background: #111111;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .u-serviceSec-bk {
    overflow: hidden;
  }
}

.u-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.u-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.u-960 {
  max-width: 60rem;
}

.u-service-flow__item-padding {
  padding: 2.875rem 0.75rem 1.5rem;
}
/*# sourceMappingURL=styles.css.map */
