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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  color: #fafafa;
  background-color: #2a2a2a;
}

body.is-fixed {
  height: 100%;
  overflow: hidden;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::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 */
article > * + * {
  margin-top: 1em;
}

/* 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;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

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

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
.c-mdTitle {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-mdTitle {
    font-size: 1.125rem;
  }
}

.c-menuButton {
  position: relative;
  width: 100%;
  max-width: 150px;
  max-width: 9.375rem;
}

.c-menuButton img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-menuButton:hover img {
  scale: 1.1;
}

.c-menuButton.open img {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.c-menuButton:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/n_nworks.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  width: 1.25rem;
  height: 30px;
  height: 1.875rem;
}

.c-menuButton.--fix:before {
  width: 10px;
  width: 0.625rem;
  height: 15px;
  height: 0.9375rem;
}

.c-menuButton img {
  -webkit-animation: circle 10s linear infinite;
          animation: circle 10s linear infinite;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-sectionTitle {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 1.5rem;
  }
}

.c-sectionTitle span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: capitalize;
  color: #ff7f50;
}

.c-sectionTitle.--about span:nth-child(1) {
  display: inline;
  color: #ff7f50;
  letter-spacing: 0.075em;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle.--about span:nth-child(1) {
    font-size: 2.1875rem;
  }
}

.c-sectionTitle.--about span:not(:nth-child(1)) {
  color: #fafafa;
}

.c-sectionTitle.--black {
  color: #111;
}

.c-tag {
  display: inline-block;
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
  border-radius: 0.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .c-tag {
    margin-top: 0.3125rem;
  }
}

.c-tag.--green {
  background-color: #719c81;
}

.c-tag.--gray {
  background-color: #808080;
}

.c-tag.--lg {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-tag.--lg {
    font-size: 0.875rem;
  }
}

.c-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
}

.l-contact {
  margin-top: 80px;
  margin-top: 5rem;
}

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

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

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

.l-voice {
  margin-top: 250px;
  margin-top: 15.625rem;
}
@media screen and (max-width: 767px) {
  .l-voice {
    margin-top: 6.25rem;
  }
}

.p-about {
  overflow: hidden;
  padding-left: 25px;
}

.p-about__wrap {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    padding-left: 1.875rem;
  }
}

.p-about__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #2a2a2a;
  border-radius: 1.875rem 0 0 1.875rem;
  z-index: -1;
}

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

.p-about__container {
  margin-top: 80px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  max-width: 1200px;
  max-width: 75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about__container {
    display: block;
    margin-top: 2.5rem;
  }
}

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

.p-about__profile {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-about__profile {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-about__signature {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__signature span {
  color: #ff7f50;
}

.p-about__signature span {
  display: block;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.p-about__career {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about__career dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__career dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.3125rem;
  }
}

.p-about__career dl + dl {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-about__career dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .p-about__career dt {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-about__career dd {
    padding-left: 0.625rem;
  }
}

.p-about__meta-wrap {
  max-width: 1200px;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.p-about__company {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  border-top: 1px solid #fafafa;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-about__company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__company dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.3125rem;
  }
}

.p-about__company dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .p-about__company dt {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-about__company dd {
    padding-left: 0.625rem;
  }
}

.p-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    display: block;
  }
}

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

.p-contact__container.--list {
  padding: 50px;
  padding: 3.125rem;
  border-radius: 1.875rem;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-contact__container.--list {
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-contact__meta {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-contact__meta dl:not(:last-of-type) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}

.p-contact__meta dl:not(:last-of-type) dt {
  min-width: 80px;
  min-width: 5rem;
}

.p-contact__meta dl + dl {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contact__meta dl:last-of-type {
  padding-top: 20px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250, 250, 250, .3);
}

.p-contact__meta dl:last-of-type dd {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__meta dl:last-of-type dd {
    font-size: 0.9375rem;
  }
}

.p-contact__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  width: 100%;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  border-radius: 1.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__button a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-contact__button.--line a {
  background-color: #719c81;
}

.p-contact__button.--tel a {
  background-color: rgba(255, 127, 80, .9);
}

.p-contact__button.--mail a {
  background-color: #949494;
}

.p-contact__button a img {
  width: 30px;
  width: 1.875rem;
  height: auto;
}

.p-contact__button + .p-contact__button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-drawer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, .8);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-drawer:before {
    content: none;
  }
}

.p-drawer__wrap {
  position: relative;
  padding: 0 20px;
  padding: 0 1.25rem;
  height: 100%;
  width: 20%;
  margin-left: auto;
  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) {
  .p-drawer__wrap {
    width: 100%;
  }
}

.p-drawer__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap:before {
    background-color: rgba(17, 17, 17, .7);
  }
}

.p-drawer__navigation-items {
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__navigation-items {
    width: 40vw;
  }
}

.p-drawer__navigation-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fafafa;
}

.p-drawer__navigation-item + .p-drawer__navigation-item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-drawer__navigation-item a {
  display: block;
}

.p-drawer__navigation-item a span {
  display: block;
  line-height: 2;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Lato", sans-serif;
  color: #fafafa;
}

.p-drawer__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__meta table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: #fafafa;
}

.p-drawer__meta table tbody tr td {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-drawer__meta table tbody tr td:not(:last-of-type) {
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-drawer__privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #fafafa;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-feature {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background-image: url(../images/bg-concrete.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, .2);
}

.p-feature__wrap {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap {
    width: 100%;
  }
}

.p-feature__copy {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__copy {
    font-size: 1rem;
  }
}

.p-feature__container {
  margin-top: 80px;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  max-width: 900px;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    display: block;
  }
}

.p-feature__box {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-feature__box {
    width: 100%;
  }
}

.p-feature__mdTitle {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #fafafa;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-feature__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-feature__image {
  position: relative;
  width: 20%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__image {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-feature__image:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.p-feature__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.625rem;
}

.p-feature__caption {
  margin-top: 100px;
  margin-top: 6.25rem;
  font-size: 26px;
  font-size: 1.625rem;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(178deg, #fafafa 20%, #ff986f 80%);
  color: transparent;
  font-weight: 700;
}

.p-feature__symbol {
  max-width: 600px;
  max-width: 37.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-flow {
  color: #111;
}

.p-flow__wrap {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 50px;
  padding-right: 3.125rem;
  background-color: #fafafa;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__wrap {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.p-flow__items {
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  z-index: 1;
}

.p-flow__items:before {
  content: "";
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 22px;
  left: 1.375rem;
  width: 1px;
  height: 90%;
  background-color: #ff7f50;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow__items:before {
    left: 0.875rem;
    height: 80%;
  }
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    display: block;
    padding-left: 2.5rem;
    position: relative;
  }
}

.p-flow__item + .p-flow__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-flow__item:before {
  content: "";
  display: inline-block;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-flow__item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-flow__item.--step1:before {
  background-image: url(../images/common/icon-flowContact.png);
}

.p-flow__item.--step2:before {
  background-image: url(../images/common/icon-flowCheck.png);
}

.p-flow__item.--step3:before {
  background-image: url(../images/common/icon-flowQuotation.png);
}

.p-flow__item.--step4:before {
  background-image: url(../images/common/icon-flowConstruction.png);
}

.p-flow__item-title {
  min-width: 200px;
  min-width: 12.5rem;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    font-size: 1rem;
  }
}

.p-flow__item-title span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: capitalize;
  color: #719c81;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title span {
    display: inline-block;
    margin-right: 1.25rem;
  }
}

.p-flow__item-text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-footer {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #2a2a2a;
}
.p-footer__wrap {
  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;
  max-width: 1100px;
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    -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;
  }
}

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

.p-footer__logo {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-footer__logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-footer__navigation {
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-footer__pp {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 12px;
  font-size: 0.75rem;
}

.p-footer__copyright {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2.5rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  right: 25px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header {
    right: 20px;
    opacity: 1;
    visibility: visible;
  }
}

.p-header.active {
  opacity: 1;
  visibility: visible;
}

.p-header__inner {
  width: 100%;
  padding-top: 20px;
  padding-top: 1.25rem;
}
.p-header__button {
  max-width: 50px;
  max-width: 3.125rem;
}

.p-header__icons {
  max-width: 50px;
  max-width: 3.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-header__icon + .p-header__icon {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header__icon a img {
  width: 100%;
  max-width: 25px;
  max-width: 1.5625rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.p-mainVisual {
  position: relative;
  display: grid;
  place-items: center;
  height: 100vh;
  min-height: 600px;
  min-height: 37.5rem;
  max-height: 800px;
  max-height: 50rem;
  overflow: hidden;
}
.p-mainVisual__wrap {
  position: relative;
}

.p-mainVisual__imageWrap {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 50vw;
  height: 120%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__imageWrap {
    top: -9%;
    right: -35%;
    width: 120vw;
    height: 120%;
  }
}

@media screen and (min-width: 1440px) {
  .p-mainVisual__imageWrap {
    right: 5%;
  }
}
.p-mainVisual__image {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-mask: url(../images/mv_mask.png) no-repeat center center/contain;
          mask: url(../images/mv_mask.png) no-repeat center center/contain;
}

.p-mainVisual__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  z-index: 1;
}

.p-mainVisual__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-animation: slidemv 8s linear infinite;
          animation: slidemv 8s linear infinite;
  opacity: 0;
}

.p-mainVisual__image img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-mainVisual__image img:nth-child(2) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes slidemv {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}

@keyframes slidemv {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
.p-mainVisual__container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-mainVisual__logo {
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__logo {
    max-width: 12.5rem;
  }
}

.p-mainVisual__logo img {
  width: 100%;
  height: auto;
}

.p-mainVisual__copy {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__copy {
    font-size: 1.0625rem;
  }
}

.p-mainVisual__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__box {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-mainVisual__caption {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__caption {
    font-size: 1rem;
  }
}

.p-mainVisual__caption span {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  color: #fafafa;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__caption span {
    font-size: 0.875rem;
  }
}

.p-mainVisual__caption span + span {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-mainVisual__button {
  display: grid;
  place-items: center;
  width: 60px;
  width: 3.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__button {
    display: none;
  }
}

.p-mainVisual__navigation {
  position: absolute;
  bottom: -120px;
  bottom: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-47%) translateY(10px);
          transform: translateX(-47%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-mainVisual__navigation.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-navigation__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.75rem;
     -moz-column-gap: 1.75rem;
          column-gap: 1.75rem;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-navigation__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-navigation__item {
    font-size: 1rem;
  }
}

.p-needs__title {
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-needs__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 30px 50px;
  gap: 1.875rem 3.125rem;
  max-width: 900px;
  max-width: 56.25rem;
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-needs__lists {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.p-needs__list {
  padding: 40px 60px 50px;
  padding: 2.5rem 3.75rem 3.125rem;
  border: 1px solid rgba(250, 250, 250, .2);
  background-color: #2a2a2a;
  border-radius: 30px;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .p-needs__list {
    padding: 1.875rem 1.875rem 1.875rem;
  }
}

.p-needs__listTitle {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .p-needs__listTitle {
    font-size: 1.125rem;
  }
}

.p-needs__listTitle span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #ff7f50;
}

.p-needs__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-left: 20px;
  padding-left: 1.25rem;
  text-indent: -20px;
  text-indent: -1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-needs__listTitle:after {
  content: "";
  display: inline-block;
  height: 30px;
  height: 1.875rem;
  background-color: #fafafa;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-needs__listTitle.--house:after {
  width: 40px;
  width: 2.5rem;
  -webkit-mask: url(../images/icon-house.png) no-repeat center center/contain;
          mask: url(../images/icon-house.png) no-repeat center center/contain;
}

.p-needs__listTitle.--office:after {
  width: 50px;
  width: 3.125rem;
  height: 35px;
  height: 2.1875rem;
  -webkit-mask: url(../images/icon-office.png) no-repeat center center/contain;
          mask: url(../images/icon-office.png) no-repeat center center/contain;
}

.p-needs__listTitle.--plant:after {
  width: 50px;
  width: 3.125rem;
  height: 35px;
  height: 2.1875rem;
  -webkit-mask: url(../images/icon-plant.png) no-repeat center center/contain;
          mask: url(../images/icon-plant.png) no-repeat center center/contain;
}

.p-needs__listTitle.--shop:after {
  width: 40px;
  width: 2.5rem;
  -webkit-mask: url(../images/icon-shop.png) no-repeat center center/contain;
          mask: url(../images/icon-shop.png) no-repeat center center/contain;
}

.p-needs.active .p-needs__title,
.p-needs.active .p-needs__listTitle,
.p-needs.active .p-needs__text {
  color: #111;
}

.p-needs.active .p-needs__list {
  background-color: #f2f2f2;
}

.p-needs.active .p-needs__listTitle:after {
  background-color: #111;
}

.p-service {
  overflow: hidden;
  color: #111;
  padding-right: 25px;
}

.p-service__wrap {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-right: 50px;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__wrap {
    padding-top: 3.75rem;
    padding-bottom: 3.125rem;
    padding-right: 1.875rem;
  }
}

.p-service__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #fafafa;
  border-radius: 0 1.875rem 1.875rem 0;
  z-index: -1;
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.p-service__container {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service__container {
    margin-top: 3.125rem;
  }
}

.p-service__container:nth-child(3) {
  position: relative;
}

.p-service__container:nth-child(3):after {
  content: "";
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
  right: -350px;
  right: -21.875rem;
  -webkit-mask: url(../images/common/logo.png) no-repeat center center/contain;
          mask: url(../images/common/logo.png) no-repeat center center/contain;
  width: 1000px;
  width: 62.5rem;
  height: 360px;
  height: 22.5rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: rgba(17, 17, 17, .05);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service__container:nth-child(3):after {
    bottom: -8.125rem;
    right: -27.5rem;
  }
}

.p-service__mdTitle {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #d96435;
}

.p-service__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  width: 60%;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .p-service__items {
    width: 100%;
    padding-left: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.p-service__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-service__images {
  margin-top: 80px;
  margin-top: 5rem;
  margin-left: calc(50% - 50vw);
}

.p-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__areas {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-service__areaTitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__title {
    text-align: center;
  }
}

.p-voice__wrap {
  margin-top: 80px;
  margin-top: 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-voice__wrap {
    display: block;
  }
}

.p-voice__title {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.p-voice__container {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-voice__container {
    margin-top: 3.125rem;
    width: 100%;
  }
}

.p-voice__item + .p-voice__item {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item + .p-voice__item {
    margin-top: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__item-title {
    font-size: 1.125rem;
  }
}

.p-voice__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-voice__category {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-voice__category span {
  margin-right: 10px;
  margin-right: 0.625rem;
}

.p-voice.active .p-voice__title,
.p-voice.active .p-voice__listTitle,
.p-voice.active .p-voice__text {
  color: #111;
}

.p-voice.active .p-voice__list {
  background-color: #f2f2f2;
}

.p-voice.active .p-voice__listTitle:after {
  background-color: #111;
}

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

.p-works__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px 50px;
  gap: 5rem 3.125rem;
}

.p-works__image {
  position: relative;
  width: 100%;
}

.p-works__image:before {
  content: "";
  display: block;
  padding-top: 75%;
  background-color: rgba(17, 17, 17, .3);
}

.p-works__image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-works__item-title {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-works__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-works__text {
    font-size: 1rem;
  }
}

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

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
