@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", serif;
}

@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a {
  display: block;
}

a, input[type=submit] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover, input[type=submit]:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

html.is-fixed {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.assets {
  padding-top: 60px;
  padding-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .assets {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.25rem;
    padding-top: 1.875rem;
  }
}

.asset {
  border-left: 1px solid #dddddd;
  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;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
}

.asset:last-child {
  border-right: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .asset:last-child {
    border-right: none;
  }
}

@media screen and (max-width: 767px) {
  .asset:nth-child(odd) {
    border-left: none;
  }
}

.asset__number {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .asset__number {
    font-size: 0.875rem;
  }
}

.asset__title {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .asset__title {
    font-size: 1.125rem;
  }
}

.asset__title span {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .asset__title span {
    font-size: 0.875rem;
  }
}

.asset__detail {
  font-size: 16px;
  font-size: 1rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .asset__detail {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.breadcrumb__content {
  background: #f0f0f0;
  height: 40px;
  height: 2.5rem;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  padding: 0 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .breadcrumb__content {
    height: 1.875rem;
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }
}

.breadcrumb__content a, .breadcrumb__content span {
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__content a, .breadcrumb__content span {
    padding: 0 0.3125rem;
  }
}

.btn {
  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;
  position: relative;
}

.btn--top {
  font-size: 14px;
  font-size: 0.875rem;
  width: 147px;
  width: 9.1875rem;
  height: 33px;
  height: 2.0625rem;
  position: absolute;
  top: 15px;
  top: 0.9375rem;
  right: 25px;
  right: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .btn--top {
    position: relative;
    right: auto;
    right: initial;
    top: auto;
    top: initial;
    margin-top: 1.25rem;
    width: 100%;
    height: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn:after {
  content: "";
  display: block;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.btn--black {
  border: 1px solid #171717;
}

.btn--white {
  border: 1px solid #fff;
  color: #fff;
}

.btn--black:after {
  border-bottom: 1px solid #171717;
  border-right: 1px solid #171717;
}

.btn--white:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.footer__top {
  background: #3d3d3d;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__top {
    display: none;
  }
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 6.25rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-block {
  border-left: 1px solid #171717;
  padding: 40px;
  padding: 2.5rem;
  width: 275px;
  width: 17.1875rem;
}

.footer__nav-block:last-child {
  border-right: 1px solid #171717;
}

.footer__nav-link, .footer__nav-sublink {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  width: 100%;
}

.footer__nav-link {
  padding: 10px;
  padding: 0.625rem;
}

.footer__nav-sublink {
  padding: 5px;
  padding: 0.3125rem;
}

.footer__nav-list + .footer__nav-list {
  padding-top: 20px;
  padding-top: 1.25rem;
}

.footer__nav-sublists {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.footer__bottom {
  background: #171717;
  color: #fff;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 0.625rem 0;
  }
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer__policy {
    gap: 1.875rem;
  }
}

.footer__policy-link {
  padding: 10px 0;
  padding: 0.625rem 0;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  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) {
  .footer__policy-link {
    font-size: 0.75rem;
    padding: 0.3125rem 0;
  }
}

.footer__policy-link + .footer__policy-link:before {
  content: "";
  display: inline-block;
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  background: #fff;
  position: relative;
  left: -30px;
  left: -1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__policy-link + .footer__policy-link:before {
    left: -0.9375rem;
  }
}

.footer__copyright {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    width: 2.5rem;
    height: 1.875rem;
    position: relative;
    z-index: 200;
  }
}

.hamburger span {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 1px;
  background: #171717;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .hamburger span {
    width: 0.625rem;
  }
}

.hamburger span:nth-child(1) {
  top: 10px;
  top: 0.625rem;
}

.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
  bottom: 10px;
  bottom: 0.625rem;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  top: 17px;
  top: 1.0625rem;
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
  bottom: 19px;
  bottom: 1.1875rem;
}

.header {
  padding: 0px 0;
  padding: 0rem 0;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  z-index: 1000;
  position: relative;
  background: #fff;
}

.toppage .header {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding-right: 0.3125rem !important;
  }
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 194px;
  width: 12.125rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 6.25rem;
  }
}

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

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__list {
  position: relative;
}

.header__link {
  padding: 28px 40px;
  padding: 1.75rem 2.5rem;
  position: relative;
}

.header__link:before {
  content: "";
  display: block;
  width: 1px;
  width: 0.0625rem;
  height: 37px;
  height: 2.3125rem;
  background: #dddddd;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__list:last-child .header__link:after {
  content: "";
  display: block;
  width: 1px;
  width: 0.0625rem;
  height: 30px;
  height: 1.875rem;
  background: #dddddd;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__sublists {
  display: none;
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 0;
  background: #fff;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  z-index: 1;
}

.header__sublink {
  white-space: nowrap;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  display: block;
}

.header__sublink:before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.header__list:hover .header__sublists {
  display: block;
}

.header__list:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  background: #171717;
  position: absolute;
  bottom: 0px;
  bottom: 0rem;
  left: 0;
}

.inner {
  width: 100%;
  max-width: 1330px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.news-item {
  border-bottom: 1px solid #dddddd;
  display: grid;
  grid-template-columns: 16.875rem 1fr;
  gap: 30px;
  gap: 1.875rem;
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
    padding: 0.9375rem 0;
  }
}

.news-item:first-child {
  border-top: 1px solid #dddddd;
}

.news-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news-item__info {
    gap: 0.9375rem;
  }
}

.news-item__date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-item__date {
    font-size: 0.875rem;
  }
}

.news-item__category {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 300;
  background: #171717;
  width: 152px;
  width: 9.5rem;
  height: 33px;
  height: 2.0625rem;
  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) {
  .news-item__category {
    height: 1.5625rem;
  }
}

.news-item__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 3px;
  padding-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    font-size: 0.875rem;
    padding-top: 0;
  }
}

.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 100;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.page {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .page {
    padding-top: 1.875rem;
  }
}

.page__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page__title {
    font-size: 1.5rem;
  }
}

.page__title span {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #dddddd;
}
@media screen and (max-width: 767px) {
  .page__title span {
    font-size: 1rem;
  }
}

.project-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.project-item--white {
  color: #fff;
}

.project-item--black {
  color: #171717;
}

.project-item__img {
  position: relative;
  width: 100%;
  background: #dddddd;
}

.project-item__img:before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media screen and (max-width: 767px) {
  .project-item__img:before {
    padding-top: 55%;
  }
}

.project-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-item__body {
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .project-item__body {
    padding-top: 0.625rem;
  }
}

.project-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 5px;
  row-gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .project-item__tags {
    -webkit-column-gap: 0.3125rem;
       -moz-column-gap: 0.3125rem;
            column-gap: 0.3125rem;
    row-gap: 0.125rem;
  }
}

.project-item__tag {
  padding: 0 5px;
  padding: 0 0.3125rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .project-item__tag {
    font-size: 0.75rem;
  }
}

.project-item--white .project-item__tag {
  border: 1px solid #fff;
}

.project-item--black .project-item__tag {
  border: 1px solid #171717;
}

.project-item__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .project-item__title {
    padding-top: 0.3125rem;
  }
}

.project-item__detail {
  padding-top: 10px;
  padding-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .project-item__detail {
    padding-top: 0.3125rem;
  }
}

.sp-nav {
  display: none;
  position: fixed;
  top: 40px;
  top: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sp-nav {
    top: 1.875rem;
  }
}

.sp-nav.active {
  display: block;
}

.sp-nav__lists {
  padding: 20px;
  padding: 1.25rem;
}

.sp-nav__link {
  padding: 10px;
  padding: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.sp-nav__sublists {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.sp-nav__sublink {
  padding: 5px;
  padding: 0.3125rem;
  font-size: 12px;
  font-size: 0.75rem;
}

.sp-nav__sublink:before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.business {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .business {
    padding-bottom: 3.125rem;
  }
}

.business__items {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .business__items {
    padding-top: 2.5rem;
  }
}

.business__item:not(:first-child) {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .business__item:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.business__item-img {
  position: relative;
  width: 100%;
  z-index: -1;
}

.business__item-img:before {
  content: "";
  display: block;
  padding-top: 15%;
}
@media screen and (max-width: 767px) {
  .business__item-img:before {
    padding-top: 30%;
  }
}

.business__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business__item-title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  background: #171717;
  font-weight: 500;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  margin-top: -40px;
  margin-top: -2.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .business__item-title {
    font-size: 1.5rem;
    padding: 0.125rem 0.3125rem;
    margin-top: -1.25rem;
    margin-left: 0.625rem;
  }
}

.business__item-table {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .business__item-table {
    margin-top: 0.625rem;
    display: block;
  }
}

.business__item-table tr {
  border-bottom: 1px solid #dddddd;
}

.business__item-table tr:first-child {
  border-top: 1px solid #dddddd;
}

.business__item-table th {
  background: #f0f0f0;
  text-align: left;
  min-width: 200px;
  min-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .business__item-table th {
    min-width: 6.25rem;
  }
}

.business__item-table th, .business__item-table td {
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .business__item-table th, .business__item-table td {
    padding: 0.625rem;
    font-size: 0.875rem;
  }
}

.business__item-btn {
  width: 147px;
  width: 9.1875rem;
  height: 33px;
  height: 2.0625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .business__item-btn {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.business__asset {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .business__asset {
    padding-top: 3.125rem;
  }
}

.business__asset-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dddddd;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .business__asset-title {
    font-size: 1.5rem;
    padding-bottom: 0.3125rem;
    width: 100%;
  }
}

.business__asset-assets {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .business__asset-assets {
    padding-top: 0.9375rem;
  }
}

.business__flow {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .business__flow {
    padding-top: 3.125rem;
  }
}

.business__flow-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dddddd;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .business__flow-title {
    font-size: 1.5rem;
    padding-bottom: 0.3125rem;
    width: 100%;
  }
}

.business__flow-items {
  margin-top: 90px;
  margin-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business__flow-items {
    margin-top: 2.5rem;
  }
}

.business__flow-items:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #dddddd;
  position: absolute;
  top: 0;
  left: 50%; /* 水平中央 */
  margin-left: -0.5px; /* 線を正確に1px幅に調整 */
  z-index: -1;
}

.business__flow-item {
  max-width: 370px;
  max-width: 23.125rem;
  width: 100%;
  height: 68px;
  height: 4.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;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #dddddd;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .business__flow-item {
    height: 2.5rem;
    font-size: 0.875rem;
  }
}

.business__flow-item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .business__flow-item:not(:first-child) {
    margin-top: 0.9375rem;
  }
}

.business__flow-text {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 35px;
  padding-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .business__flow-text {
    padding-top: 1.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.company {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 3.125rem;
  }
}

.company__items {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .company__items {
    padding-top: 1.875rem;
  }
}

.company__item {
  padding: 34px 0;
  padding: 2.125rem 0;
  border-top: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .company__item {
    padding: 1.0625rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company__item:last-child {
  border-bottom: 1px solid #dddddd;
}

.company__item-title {
  width: 200px;
  width: 12.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company__item-title {
    width: 100%;
    font-size: 0.875rem;
  }
}

.company__item-body {
  width: calc(100% - 12.5rem);
  padding-left: 10px;
  padding-left: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .company__item-body {
    width: 100%;
    font-size: 0.875rem;
    padding-left: 0;
  }
}

.company__item-list {
  line-height: 1.75;
}

.company__item-img {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company__item-img {
    margin-top: 0.625rem;
  }
}

.company__item-line {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company__item-line {
    padding-top: 1.25rem;
  }
}

.company__item-term {
  font-weight: 500;
}

.company__item-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 23%;
  max-width: 800px;
  max-width: 50rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company__item-map {
    margin-top: 1.25rem;
    padding-top: 120%;
  }
}

.company__item-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greeting {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .greeting {
    padding-bottom: 3.125rem;
  }
}

.greeting__img {
  position: relative;
  width: 100%;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .greeting__img {
    margin-top: 2.5rem;
  }
}

.greeting__img:before {
  content: "";
  display: block;
  padding-top: 33%;
}

.greeting__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting__copy {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .greeting__copy {
    font-size: 1.5rem;
    padding-top: 0.9375rem;
  }
}

.greeting__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .greeting__text {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.greeting__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .greeting__name {
    font-size: 0.875rem;
    padding-top: 1.875rem;
  }
}

.greeting__name img {
  display: block;
  width: 185px;
  width: 11.5625rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .greeting__name img {
    padding-top: 0.625rem;
    width: 8.75rem;
  }
}

.history {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .history {
    padding-bottom: 3.125rem;
  }
}

.history__lists {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .history__lists {
    padding-top: 1.875rem;
  }
}

.history__list {
  padding: 35px 0;
  padding: 2.1875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .history__list {
    padding: 1.25rem 0;
  }
}

.history__list:last-child {
  border-bottom: 1px solid #dddddd;
}

.history__list-date {
  width: 200px;
  width: 12.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .history__list-date {
    width: 6.25rem;
    font-size: 0.875rem;
  }
}

.history__list-text {
  width: calc(100% - 12.5rem);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .history__list-text {
    width: calc(100% - 6.25rem);
    font-size: 0.875rem;
  }
}

.performance {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .performance {
    padding-bottom: 3.125rem;
  }
}

.performance__items {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .performance__items {
    margin-top: 1.875rem;
  }
}

.performance__item {
  border-bottom: 1px solid #dddddd;
  padding: 35px 0;
  padding: 2.1875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .performance__item {
    padding: 0.9375rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.performance__item:first-child {
  border-top: 1px solid #dddddd;
}

.performance__item-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .performance__item-title {
    width: 100%;
  }
}

.performance__item-body {
  width: calc(100% - 12.5rem);
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .performance__item-body {
    padding-left: 0;
    width: 100%;
  }
}

.performance__item-img {
  max-width: 1000px;
  max-width: 62.5rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .performance__item-img {
    padding-top: 0.625rem;
  }
}

.performance__item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .performance__item-text {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.philosophy {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .philosophy {
    padding-bottom: 3.125rem;
  }
}

.philosophy__img {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .philosophy__img {
    padding-top: 2.5rem;
  }
}

.philosophy__lead {
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .philosophy__lead {
    padding-top: 0.625rem;
  }
}

.philosophy__lead-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .philosophy__lead-title {
    font-size: 1.5rem;
  }
}

.philosophy__lead-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 15px;
  padding-top: 0.9375rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .philosophy__lead-text {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.philosophy__items {
  padding-top: 85px;
  padding-top: 5.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .philosophy__items {
    padding-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.philosophy__item-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .philosophy__item-title {
    font-size: 1.125rem;
    padding-bottom: 0.3125rem;
  }
}

.philosophy__item-lists {
  padding-top: 30px;
  padding-top: 1.875rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .philosophy__item-lists {
    padding-top: 0.625rem;
  }
}

.philosophy__item-list {
  line-height: 1.75;
  padding-left: 0.7em;
  text-indent: -0.7em;
}
@media screen and (max-width: 767px) {
  .philosophy__item-list {
    font-size: 0.875rem;
  }
}

.contact {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 3.125rem;
  }
}

.contact__items {
  padding-top: 80px;
  padding-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact__items {
    padding-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}

.contact__item {
  background: #dddddd;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#fff));
  background: linear-gradient(180deg, #f0f0f0 0%, #fff 100%);
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  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) {
  .contact__item {
    padding: 0.9375rem;
  }
}

.contact__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__item-title {
    font-size: 1.125rem;
  }
}

.contact__item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .contact__item-text {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
  }
}

.contact__item-lists {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__item-lists {
    padding-bottom: 0rem;
  }
}

.contact__item-list {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__item-list {
    font-size: 0.875rem;
  }
}

.contact__item-btn {
  margin-top: auto;
  width: 217px;
  width: 13.5625rem;
  height: 53px;
  height: 3.3125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contact__item-btn {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.policy {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  line-height: 1.75;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .policy {
    padding-bottom: 3.125rem;
  }
}

.policy__lead {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .policy__lead {
    padding-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.policy__lists {
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .policy__lists {
    padding-top: 2.5rem;
  }
}

.policy__list:not(:first-child) {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .policy__list:not(:first-child) {
    padding-top: 2.5rem;
  }
}

.policy__list-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .policy__list-title {
    font-size: 1.5rem;
  }
}

.policy__list-text {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .policy__list-text {
    padding-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.policy__list-text a {
  display: inline-block;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.policy__bottom {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .policy__bottom {
    padding-top: 3.125rem;
  }
}

.news-detail {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-bottom: 3.125rem;
  }
}

.news-detail__article {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .news-detail__article {
    padding-top: 1.875rem;
  }
}

.news-detail__top {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-detail__top {
    padding-bottom: 1.25rem;
  }
}

.news-detail__top-category {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 300;
  background: #171717;
  width: 152px;
  width: 9.5rem;
  height: 33px;
  height: 2.0625rem;
  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) {
  .news-detail__top-category {
    height: 1.5625rem;
  }
}

.news-detail__top-date {
  color: #dddddd;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 10px;
  padding-top: 0.625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .news-detail__top-date {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
  }
}

.news-detail__img {
  position: relative;
  width: 100%;
  background: #dddddd;
}

.news-detail__img:before {
  content: "";
  display: block;
  padding-top: 33%;
}

.news-detail__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 40px;
  padding-top: 2.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .news-detail__text {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}

.news-detail__text + .news-detail__img {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-detail__text + .news-detail__img {
    margin-top: 2.5rem;
  }
}

.news-detail__btn {
  width: 187px;
  width: 11.6875rem;
  height: 53px;
  height: 3.3125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-detail__btn {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.news-list {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-list {
    padding-bottom: 3.125rem;
  }
}

.news-list__items {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-list__items {
    padding-top: 1.875rem;
  }
}

.project {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .project {
    padding-bottom: 3.125rem;
  }
}

.project__article {
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .project__article {
    padding-top: 1.875rem;
  }
}

.project__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .project__text {
    font-size: 0.875rem;
  }
}

.project__table {
  margin-top: 55px;
  margin-top: 3.4375rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .project__table {
    margin-top: 1.25rem;
  }
}

.project__table tr {
  border-bottom: 1px solid #dddddd;
}

.project__table tr:first-child {
  border-top: 1px solid #dddddd;
}

.project__table th, .project__table td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding: 14px;
  padding: 0.875rem;
}
@media screen and (max-width: 767px) {
  .project__table th, .project__table td {
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

.project__table th {
  background: #f0f0f0;
  text-align: left;
  padding-right: 60px;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .project__table th {
    padding-right: 0.625rem;
  }
}

.project__img {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .project__img {
    margin-top: 1.875rem;
  }
}

.project__img + .project__img {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .project__img + .project__img {
    margin-top: 1.25rem;
  }
}

.project__btn {
  width: 187px;
  width: 11.6875rem;
  height: 53px;
  height: 3.3125rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .project__btn {
    width: 100%;
    margin-top: 3.125rem;
  }
}

.projects {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .projects {
    padding-bottom: 3.125rem;
  }
}

.projects__anchors {
  padding-top: 120px;
  padding-top: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .projects__anchors {
    padding-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.projects__anchor {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  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;
  padding: 75px 40px;
  padding: 4.6875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .projects__anchor {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}

.projects__anchor:nth-child(1) {
  background-image: url(../../../images/projects/projects-01-img.jpg);
}

.projects__anchor:nth-child(2) {
  background-image: url(../../../images/projects/projects-02-img.jpg);
}

.projects__anchor-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
  background: #171717;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .projects__anchor-title {
    font-size: 1.5rem;
    padding: 0.125rem 0.3125rem;
  }
}

.projects__anchor-title:after {
  content: "";
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
  top: -5px;
  top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .projects__anchor-title:after {
    width: 0.3125rem;
    height: 0.3125rem;
    margin-left: 0.3125rem;
  }
}

.projects__contents {
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .projects__contents {
    padding-top: 2.5rem;
  }
}

.projects__content:not(:first-child) {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .projects__content:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.projects__content-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .projects__content-title {
    padding-bottom: 0.3125rem;
    font-size: 1.5rem;
  }
}

.projects__content-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 55px;
  row-gap: 3.4375rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .projects__content-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    padding-top: 1.25rem;
  }
}

.sitemap {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .sitemap {
    padding-bottom: 3.125rem;
  }
}

.sitemap__lists {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .sitemap__lists {
    padding-top: 1.875rem;
  }
}

.sitemap__list {
  padding: 34px 0;
  padding: 2.125rem 0;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    padding: 1.25rem 0;
  }
}

.sitemap__list:last-child {
  border-bottom: 1px solid #dddddd;
  color: #dddddd;
}

.sitemap__link {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sitemap__link {
    font-size: 0.875rem;
  }
}

.sitemap__sublists {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .sitemap__sublists {
    padding-left: 0.625rem;
  }
}

.sitemap__sublink {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding: 2px 0;
  padding: 0.125rem 0;
}
@media screen and (max-width: 767px) {
  .sitemap__sublink {
    font-size: 0.875rem;
  }
}

.mv {
  height: 880px;
  height: 55rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 30rem;
    padding-bottom: 3.75rem;
  }
}

.mv__video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.mv__text {
  background: #171717;
  color: #fff;
  display: inline-block;
  margin-top: -48px;
  margin-top: -3rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    margin-top: -4.375rem;
    padding: 0.625rem;
  }
}

.mv__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
  }
}

.mv__title-en {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .mv__title-en {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.top-about {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#b02125), color-stop(65%, #b02125), color-stop(65%, #f0f0f0), to(#f0f0f0));
  background: linear-gradient(180deg, #b02125 0%, #b02125 65%, #f0f0f0 65%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
    background: #b02125;
  }
}

.top-about:before {
  content: "";
  display: block;
  width: 100%;
  height: 370%;
  background-image: url(../../..//images/top/about-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 56%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.top-about__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about__title {
    font-size: 1.5rem;
  }
}

.top-about__items {
  background: #fff;
  padding: 15px;
  padding: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-about__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }
}

.top-about__item-img {
  position: relative;
  width: 100%;
}

.top-about__item-img:before {
  content: "";
  display: block;
  padding-top: 32%;
}

.top-about__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-about__item-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 15px;
  padding-top: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-about__item-title {
    padding-top: 0.625rem;
  }
}

.top-business {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top-business {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.top-business__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-business__title {
    font-size: 1.5rem;
  }
}

.top-business__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-business__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.25rem;
    gap: 1.25rem;
  }
}

.top-business__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-business__item {
    width: 100%;
  }
}

.top-business__item-text {
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-top: -25px;
  margin-top: -1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-business__item-text {
    margin-top: -0.9375rem;
    padding-left: 0.625rem;
  }
}

.top-business__item-title {
  color: #fff;
  background: #171717;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  display: inline-block;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-business__item-title {
    font-size: 1.125rem;
  }
}

.top-business__item-lists {
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-business__item-lists {
    padding-top: 0.3125rem;
  }
}

.top-business__item-list {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .top-business__item-list {
    font-size: 0.875rem;
  }
}

.top-group {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-group {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
}

.top-group__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-group__title {
    font-size: 1.5rem;
  }
}

.top-group__items {
  padding-top: 50px;
  padding-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-group__items {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 1.25rem;
  }
}

.top-news {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.top-news__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 1.5rem;
  }
}

.top-news__items {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    padding-top: 1.875rem;
  }
}

.top-project {
  background-image: url(../../..//images/top/top-project-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-project {
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
  }
}

.top-project__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-project__title {
    font-size: 1.5rem;
  }
}

.top-project__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-project__items {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 1.25rem;
    gap: 1.875rem;
  }
}

.top-recruit__banner {
  background-image: url(../../..//images/top/top-recruit.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding: 70px 55px;
  padding: 4.375rem 3.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-recruit__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .top-recruit__banner:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.top-recruit__title {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-recruit__title {
    font-size: 1.5rem;
    position: relative;
  }
}

.top-recruit__btn {
  position: relative;
  top: auto;
  top: initial;
  right: auto;
  right: initial;
}
/*# sourceMappingURL=styles.css.map */
