@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: relative;
  z-index: 100;
}
.header > .container > .box-logo {
  position: fixed;
  top: 30px;
  left: 60px;
}
@media screen and (max-width: 1024px) {
  .header > .container > .box-logo {
    top: 20px;
    left: 16px;
  }
}
.header > .container > .box-logo > .link > .image {
  width: 69px;
  height: 43px;
}
@media screen and (max-width: 480px) {
  .header > .container > .box-logo > .link > .image {
    width: 40px;
    height: 43px;
  }
}
.header > .container > .menu-pc {
  position: fixed;
  bottom: 20px;
  left: 74px;
}
.header > .container > .menu-pc > .menu {
  position: relative;
  margin-bottom: 24px;
}
.header > .container > .menu-pc > .menu:before {
  content: "";
  display: inline-block;
  background-color: #000000;
  border-radius: 50px;
  position: absolute;
  top: 12px;
  left: -16px;
  width: 6px;
  height: 6px;
}
.header > .container > .menu-pc > .menu > .link {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .container > .menu-pc > .menu > .link:hover {
  color: #8b8b8b;
}
.header > .container > .hamburger-menu {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 21px;
  height: 20px;
  z-index: 5;
  cursor: pointer;
}
.header > .container > .hamburger-menu > .line {
  position: absolute;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 2px;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0;
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0;
}
.header > .container > .hamburger-menu > .line.active {
  background-color: #ffffff;
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
.header > .container > .menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100vh;
  padding: 18px;
  z-index: 3;
}
.header > .container > .menu-sp > .list-menu > .menu {
  border-bottom: 2px solid #ffffff;
}
.header > .container > .menu-sp > .list-menu > .menu:first-child {
  border-bottom: 0;
  width: 40px;
  margin-bottom: 20px;
}
.header > .container > .menu-sp > .list-menu > .menu:first-child > .link {
  padding: 0;
}
.header > .container > .menu-sp > .list-menu > .menu > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  letter-spacing: 0.07em;
  padding: 24px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .container > .menu-sp > .list-menu > .menu > .link:hover {
  background-color: #ffffff;
  color: #000000;
}
.header > .container > .menu-sp > .list-menu > .menu > .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  letter-spacing: 0.07em;
  padding: 24px 0 5px;
}
.header > .container > .menu-sp.active {
  display: block;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  position: relative;
  margin-top: 85px;
}
@media screen and (max-width: 820px) {
  .footer {
    overflow: hidden;
  }
}
.footer > .box-background {
  position: absolute;
  background-position: top center;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../../assets/imgs/background_clients.svg);
  width: 100%;
  height: 279px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .footer > .box-background {
    height: 240px;
  }
}
@media screen and (max-width: 820px) {
  .footer > .box-background {
    width: 150%;
    height: 269px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .box-background {
    width: 180%;
    height: 239px;
  }
}
.footer > .container {
  padding: 56px 16px 41px;
}
@media screen and (max-width: 1024px) {
  .footer > .container {
    padding: 56px 16px 0px;
  }
}
@media screen and (max-width: 820px) {
  .footer > .container {
    padding: 56px 16px 12px;
  }
}
.footer > .container > .logo {
  width: 160px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 480px) {
  .footer > .container > .logo {
    width: 120px;
  }
}
.footer > .container > .copyright {
  color: #8b8b8b;
  font-size: 12px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.07em;
}

body {
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-gin-std, sans-serif;
  color: #000000;
  font-weight: 600;
  overflow: hidden;
}
body.auto {
  overflow: auto;
}

img {
  width: 100%;
  vertical-align: top;
}

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

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

.inline-block {
  display: inline-block;
}

section {
  position: relative;
}

.section-title {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.03em;
  max-width: 265px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .section-title {
    font-size: 40px;
    max-width: 145px;
  }
}

.box-background {
  position: absolute;
  top: -136px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 450px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .box-background {
    top: -66px;
  }
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
  transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
}

.button {
  position: absolute;
  width: 84px;
  height: 84px;
}
@media screen and (max-width: 480px) {
  .button {
    width: 54px;
    height: 54px;
  }
}
.button > .circle {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button > .circle:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.button > .arrow {
  position: absolute;
  width: 22px;
}
@media screen and (max-width: 480px) {
  .button > .arrow {
    width: 15px;
  }
}

.remodal {
  max-width: 1366px;
  width: 100%;
  background-color: #ededed;
}
.remodal > .box-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .remodal > .box-contents {
    display: block;
  }
}
.remodal > .box-contents > .box-overview {
  max-width: 33%;
  width: 100%;
  text-align: left;
  margin-right: 51px;
}
@media screen and (max-width: 820px) {
  .remodal > .box-contents > .box-overview {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.remodal > .box-contents > .box-overview > .title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 37px;
}
@media screen and (max-width: 820px) {
  .remodal > .box-contents > .box-overview > .title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.remodal > .box-contents > .box-overview > .text {
  font-size: 12px;
  font-weight: 400;
  line-height: 2.4;
}
.remodal > .box-contents > .box-image {
  max-width: 66%;
}
@media screen and (max-width: 820px) {
  .remodal > .box-contents > .box-image {
    max-width: 100%;
  }
}
.remodal > .box-contents > .box-image > .thumbnail {
  width: 100%;
  height: 461px;
  margin-bottom: 16px;
}
@media screen and (max-width: 820px) {
  .remodal > .box-contents > .box-image > .thumbnail {
    height: 100%;
  }
}
.remodal > .box-contents > .box-image > .thumbnail > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.remodal > .box-contents > .box-image > .list-information {
  text-align: left;
}
.remodal > .box-contents > .box-image > .list-information > .info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding: 14px 0;
}
@media screen and (max-width: 480px) {
  .remodal > .box-contents > .box-image > .list-information > .info {
    display: block;
  }
}
.remodal > .box-contents > .box-image > .list-information > .info:before {
  content: "";
  display: inline-block;
  background-color: #000000;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
}
.remodal > .box-contents > .box-image > .list-information > .info > .label {
  color: #8b8b8b;
  font-size: 14px;
  width: 40px;
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .remodal > .box-contents > .box-image > .list-information > .info > .label {
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 480px) {
  .remodal > .box-contents > .box-image > .list-information > .info > .client {
    font-size: 12px;
    margin-right: 0;
  }
}
.remodal > .box-contents > .box-image > .list-information > .info > .list-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 745px;
}
.remodal > .box-contents > .box-image > .list-information > .info > .list-category > .category {
  margin-right: 14px;
}
@media screen and (max-width: 480px) {
  .remodal > .box-contents > .box-image > .list-information > .info > .list-category > .category {
    font-size: 12px;
    margin-right: 0;
  }
}