html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 85%;
  }
}

body {
  line-height: 1.8;
  letter-spacing: 1px;
  word-break: break-all;
  background-color: #fff;
  color: #272736;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

.__inner {
  width: 85%;
  margin: 0 auto;
  padding: 9% 0;
}

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

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

.btn {
  position: relative;
  background-color: #272736;
  width: 19.5rem;
  height: 60px;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .btn {
    height: 50px;
  }
}
.btn:hover {
  transform: scale(1.05);
}
.btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 700;
}
.btn a:hover {
  opacity: 1;
}
.btn a span {
  position: absolute;
  right: 14px;
  background-color: #fff;
  color: #272736;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .btn a span {
    width: 35px;
    height: 35px;
  }
}
.btn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ttl {
  font-size: clamp(3rem, 2.527rem + 2.36vw, 4.3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 7%;
}
.ttl span {
  display: block;
  font-size: 1.125rem;
  color: #797986;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #h-menu {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) {
  #h-menu.panelactive {
    pointer-events: auto;
    opacity: 1;
    z-index: 999;
  }
}
@media screen and (max-width: 768px) {
  #h-menu.panelactive #h-menu-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  #h-menu.panelactive .header-wrap__nav__list {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #h-menu .header-wrap__nav__list {
    display: none;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #h-menu .header-wrap__nav__list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
  }
}

@media screen and (max-width: 768px) {
  .openbtn {
    display: inline-block;
    width: 30px;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 999;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .openbtn span {
    display: block;
    height: 2px;
    width: 100%;
    transform: scaleY(0.5) translateY(1px);
    background-color: #000;
    margin: 4.2px 0;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: rotate(45deg) translate(2px, 5px);
    height: 1.5px;
  }
}
@media screen and (max-width: 768px) {
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: rotate(-45deg) translate(3px, -6px);
    height: 1.5px;
  }
}

.fadeUp {
  animation: fadeUpAnime 0.8s forwards;
  opacity: 0;
}

.fadeLeft {
  animation: fadeLeftAnime 0.8s forwards;
  opacity: 0;
  overflow: hidden;
}

.fadeRight {
  animation: fadeRightAnime 0.8s forwards;
  opacity: 0;
  overflow: hidden;
}

.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.footer {
  background-color: #272736;
  color: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 75%;
  margin: 0 auto;
  padding: 4% 0 3.5% 0;
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    display: block;
  }
}
.footer-wrap__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__left {
    width: 100%;
    margin-bottom: 10%;
  }
}
.footer-wrap__left__logo {
  margin-bottom: 4%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__left__logo {
    margin-bottom: 2%;
  }
}
.footer-wrap__left__logo h2 {
  font-size: 2.3rem;
}
.footer-wrap__left__add {
  font-weight: 400;
}
.footer-wrap__right {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__right {
    width: 100%;
    margin-left: 0;
    display: block;
  }
}
.footer-wrap__right__list {
  width: 100%;
}
.footer-wrap__right__list__item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__right__list__item {
    margin-top: 5%;
  }
}
.footer-wrap__right__list__item.__mb {
  margin-bottom: 8.5%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__right__list__item.__mb {
    margin-bottom: 5%;
  }
}
.footer-wrap__right__list__item a {
  color: #fff;
  font-size: 1.1rem;
}
.footer-wrap__right__list__item__sub {
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__right__list__item__sub {
    margin-top: 1%;
  }
}
.footer-wrap__right__list__item__sub__item a {
  font-size: 0.75rem;
  font-weight: 400;
  color: #cccccc;
}
.footer-wrap__copyright {
  margin-top: 5%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__copyright {
    margin-top: 9%;
  }
}
.footer-wrap__copyright p {
  font-weight: 400;
  font-size: 0.6rem;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s;
}
.header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% 2%;
}
@media screen and (max-width: 768px) {
  .header-wrap {
    padding: 2% 3%;
  }
}
.header-wrap__logo {
  width: 15%;
}
@media screen and (max-width: 768px) {
  .header-wrap__logo {
    width: 40%;
  }
}
.header-wrap__logo a {
  width: 100%;
}
.header-wrap__logo a h1 {
  font-size: 1.5rem;
  margin-right: 3%;
  font-weight: 400;
}
.header-wrap__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
}
@media screen and (max-width: 768px) {
  .header-wrap__nav {
    position: static;
    transform: none;
  }
}
.header-wrap__nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header-wrap__nav__list__item a {
  font-size: 0.9rem;
  font-weight: 400;
}
.header-wrap__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header-wrap__right {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .header-wrap__right__cta {
    margin-right: 5%;
  }
}
.header-wrap__right__cta a {
  color: #fff;
  font-weight: 700;
  display: block;
  background-color: #272736;
  border: solid 1px #272736;
  width: 12rem;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .header-wrap__right__cta a {
    width: 10rem;
    height: 32px;
  }
}
.header-wrap__right__cta a:hover {
  background-color: #fff;
  color: #272736;
  opacity: 1;
}
.header.change-color {
  background-color: #fff;
}

.top {
  background: url("../img/fv-bg.jpg") no-repeat;
  background-size: cover;
  height: 100vh;
}
.top-wrap {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-wrap {
    width: 80%;
  }
}
.top-wrap__ttl {
  margin-bottom: 5%;
}
.top-wrap__ttl h2 {
  font-size: clamp(3.5rem, 3.136rem + 1.82vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2.5%;
}
@media screen and (max-width: 1024px) {
  .top-wrap__ttl h2 {
    margin-bottom: 7%;
  }
}
.top-wrap__ttl p {
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-wrap__ttl p {
    margin-bottom: 12.5%;
  }
}

.top.sub {
  position: relative;
  height: 70vh;
}
@media screen and (max-width: 1024px) {
  .top.sub {
    height: 55vh;
  }
}
@media screen and (max-width: 768px) {
  .top.sub {
    height: 35vh;
  }
}
.top-wrap__ttl {
  line-height: 1.2;
}
.top-wrap__ttl h2 {
  font-size: clamp(3.5rem, 3.136rem + 1.82vw, 4.5rem);
}
.top-wrap__ttl h2 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #797986;
}

.works-details .top {
  background: none;
  height: 100vh;
}
.works-details .top-wrap__ttl {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .works-details .top-wrap__ttl {
    text-align: center;
  }
}

.home .works {
  background-color: #fff;
}
.home .works-wrap.__inner {
  width: 100%;
}
.home .works-wrap__ttl {
  margin-left: 7.5%;
}
.home .works-wrap__body__block {
  position: relative;
}
.home .works-wrap__body__block__item {
  width: auto;
  margin: 0 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .works-wrap__body__block__item {
    margin: 0 10px;
    padding-bottom: 30px;
  }
}
.home .works-wrap__body__block__item__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 3%;
}
.home .works-wrap__body__block__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .works-wrap__body__block__item__txt p {
  font-size: 1.15rem;
  margin-bottom: 2%;
}
.home .works-wrap__body__block__item__txt span {
  font-weight: 400;
  font-size: 0.7rem;
  border: solid 1px #bbbbbb;
  padding: 1% 4%;
  color: #bbbbbb;
  border-radius: 50px;
}
.home .works-wrap__body .btn {
  margin-left: auto;
  margin-right: 7.5%;
  margin-top: 7.5%;
}
@media screen and (max-width: 768px) {
  .home .works-wrap__body .btn {
    margin-right: auto;
    margin-left: 7.5%;
  }
}
.home .slick-list {
  overflow: visible;
}
.home .slick-prev,
.home .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32.5px;
  height: 32.5px;
  font-weight: 400;
  font-size: 0.9rem;
  background: rgba(39, 39, 54, 0.5);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.home .slick-prev {
  left: 10px;
}
.home .slick-next {
  right: 10px;
}
.home .service {
  background-color: #797986;
}
.home .service-wrap__head__ttl .ttl {
  color: #fff;
  margin-bottom: 3%;
}
.home .service-wrap__head__ttl .ttl span {
  color: #e9eaed;
}
.home .service-wrap__head__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7%;
}
@media screen and (max-width: 768px) {
  .home .service-wrap__head__info {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .service-wrap__head__info__txt {
    margin-bottom: 7%;
  }
}
.home .service-wrap__head__info__txt p {
  color: #fff;
  font-weight: 700;
}
.home .service-wrap__head__info .btn {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .home .service-wrap__head__info .btn {
    margin-right: auto;
    margin-left: 0;
  }
}
.home .service-wrap__body__block {
  margin-bottom: 5%;
}
.home .service-wrap__body__block__ttl {
  margin-bottom: 3%;
  border-bottom: solid 1px #fff;
  display: inline-block;
}
.home .service-wrap__body__block__ttl h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}
.home .service-wrap__body__block__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .service-wrap__body__block__list {
    flex-wrap: wrap;
  }
}
.home .service-wrap__body__block__list__item {
  background-color: #fff;
  border-radius: 50px;
  width: 24%;
  padding: 1.2% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .home .service-wrap__body__block__list__item {
    width: 45%;
    margin-bottom: 3%;
  }
}
.home .service-wrap__body__block__list__item p {
  font-size: 1.1rem;
}
@media screen and (max-width: 1024px) {
  .home .service-wrap__body__block__list__item p {
    font-size: 0.95rem;
  }
}

.company-wrap.__inner {
  width: 100%;
  padding-bottom: 0;
}
.company-wrap__ttl {
  margin-left: 7.5%;
}
.company-wrap__body {
  position: relative;
}
.company-wrap__body__con {
  background-color: #e9eaed;
  margin-right: 7.5%;
  border-radius: 0px 20px 20px 0px;
  padding: 6% 7.5%;
}
.company-wrap__body__con__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 35%;
  margin-top: 3%;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 768px) {
  .company-wrap__body__con__block {
    width: 60%;
  }
}
.company-wrap__body__con__block:nth-of-type(1) {
  margin-top: 0;
}
.company-wrap__body__con__block__ttl {
  line-height: 1.25;
}
.company-wrap__body__con__block__ttl h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12.5%;
}
.company-wrap__body__con__block__ttl span {
  display: block;
  font-size: 0.8rem;
  color: #797986;
}
.company-wrap__body__con__block__btn a {
  content: "";
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: solid 1px #272736;
  background-color: #272736;
  color: #fff;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-wrap__body__con__block__btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #272736;
}
.company-wrap__body__img {
  position: absolute;
  content: "";
  top: 30%;
  right: 0;
  width: 55%;
  aspect-ratio: 2.1/1;
}
@media screen and (max-width: 768px) {
  .company-wrap__body__img {
    top: 92.5%;
    width: 90%;
    aspect-ratio: 1.8/1;
  }
}
.company-wrap__body__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

@media screen and (max-width: 768px) {
  .news-wrap.__inner {
    padding-top: 55%;
  }
}
.news-wrap__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .news-wrap__body {
    display: block;
  }
}
.news-wrap__body .btn {
  margin-right: auto;
  margin-left: 0;
}
.news-wrap__body__list {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .news-wrap__body__list {
    width: 100%;
    margin-top: 7%;
  }
}
.news-wrap__body__list a:hover {
  opacity: 1;
}
.news-wrap__body__list__item {
  display: flex;
  align-items: center;
  padding: 2.5% 1.5%;
  border-bottom: solid 1px #cccccc;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-wrap__body__list__item {
    flex-wrap: wrap;
  }
}
.news-wrap__body__list__item:hover {
  background-color: #e9eaed;
}
.news-wrap__body__list__item__date {
  font-weight: 400;
  font-size: 0.9rem;
  word-break: keep-all;
}
.news-wrap__body__list__item__cate {
  margin-left: 3%;
  margin-right: 3%;
  background-color: #bbbbbb;
  padding: 0.25% 3%;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
  word-break: keep-all;
}
.news-wrap__body__list__item__head {
  font-weight: 400;
}

.contact {
  background: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 0;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.contact .contact-bg {
  background-color: #272736;
  padding: 9% 0;
  border-radius: 30px;
}
.contact-wrap.__inner {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .contact-wrap.__inner {
    width: 85%;
  }
}
.contact-wrap__ttl {
  text-align: center;
}
.contact-wrap__ttl .ttl {
  color: #fff;
  margin-bottom: 5%;
}
.contact-wrap__ttl span {
  color: #e9eaed;
}
.contact-wrap__body__txt {
  text-align: center;
  margin-bottom: 5%;
}
.contact-wrap__body__txt p {
  color: #fff;
  font-size: 1.15rem;
}
.contact-wrap__body .btn {
  background-color: #fff;
}
.contact-wrap__body .btn a {
  color: #272736;
}
.contact-wrap__body .btn a span {
  background-color: #272736;
  color: #fff;
}

.works-wrap.__inner {
  width: 80%;
}
.works-wrap__con {
  margin-bottom: 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .works-wrap__con {
    display: block;
  }
}
.works-wrap__con a {
  width: 47.5%;
}
.works-wrap__con__block {
  margin-bottom: 7.5%;
}
@media screen and (max-width: 768px) {
  .works-wrap__con__block {
    margin-bottom: 9%;
  }
}
.works-wrap__con__block:nth-of-type(5), .works-wrap__con__block:nth-of-type(6) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .works-wrap__con__block:nth-of-type(5), .works-wrap__con__block:nth-of-type(6) {
    margin-bottom: 9%;
  }
}
.works-wrap__con__block__img {
  width: 100%;
  margin-bottom: 1.5%;
}
.works-wrap__con__block__img img {
  width: 100%;
}
.works-wrap__con__block__txt {
  text-align: center;
}
.works-wrap__con__block__txt p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5%;
}
.works-wrap__con__block__txt span {
  border: solid 1px #bbbbbb;
  border-radius: 50px;
  padding: 0.5% 2%;
  font-size: 0.75rem;
  color: #bbbbbb;
}
.works-wrap__num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-wrap__num__item {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-right: 2%;
  background-color: #bbbbbb;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .works-wrap__num__item {
    width: 35px;
    height: 35px;
  }
}
.works-wrap__num__item:nth-last-of-type(1) {
  margin-right: 0;
}
.works-wrap__num__item:hover {
  background-color: #272736;
  cursor: pointer;
}
.works-wrap__num__item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
}
.works-wrap__num__item a:hover {
  opacity: 1;
}

.works-details .top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .works-details .top-wrap {
    display: block;
  }
}
.works-details .top-wrap__img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .works-details .top-wrap__img {
    width: 100%;
  }
}
.works-details .top-wrap__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-details .top-wrap__ttl {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .works-details .top-wrap__ttl {
    width: 100%;
    margin-top: 5%;
  }
}
.works-details .top-wrap__ttl p {
  font-size: 2.5rem;
  margin-bottom: 5%;
}
.works-details .top-wrap__ttl span {
  background-color: #bbbbbb;
  border-radius: 50px;
  padding: 0.5% 3%;
  color: #fff;
}

.project {
  background-color: #797986;
  border-radius: 50px;
}
.project-wrap__ttl h2 {
  color: #fff;
}
.project-wrap__ttl h2 span {
  color: #e9eaed;
}
.project-wrap__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .project-wrap__body {
    display: block;
  }
}
.project-wrap__body__list {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .project-wrap__body__list {
    width: 100%;
    margin-bottom: 7%;
  }
}
.project-wrap__body__list__item {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 2%;
  margin-bottom: 3%;
}
.project-wrap__body__list__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.project-wrap__body__list__item span {
  color: #e9eaed;
  font-size: 0.85rem;
  font-weight: 400;
}
.project-wrap__body__list__item p {
  font-size: 1.5rem;
  color: #fff;
  font-size: 500;
}
.project-wrap__body__txt {
  width: 40%;
  background-color: #fff;
  border-radius: 20px;
  padding: 5% 5%;
  line-height: 2.8;
}
@media screen and (max-width: 768px) {
  .project-wrap__body__txt {
    width: 90%;
  }
}
.project-wrap__body__txt p {
  font-weight: 400;
}

.design-wrap.__inner {
  width: 75%;
}
.design-wrap__pc {
  margin-bottom: 9%;
}
.design-wrap__pc__ttl {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 7%;
}
.design-wrap__pc__body {
  background-color: #e9eaed;
  border-radius: 20px;
  padding: 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .design-wrap__pc__body {
    display: block;
  }
}
.design-wrap__pc__body__img {
  width: 40%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .design-wrap__pc__body__img {
    width: 100%;
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 768px) {
  .design-wrap__pc__body__img:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
.design-wrap__pc__body__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
}
.design-wrap__sp__ttl {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 7%;
}
.design-wrap__sp__body {
  background-color: #e9eaed;
  border-radius: 20px;
  padding: 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .design-wrap__sp__body {
    display: block;
  }
}
.design-wrap__sp__body__img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .design-wrap__sp__body__img {
    width: 100%;
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 768px) {
  .design-wrap__sp__body__img:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
.design-wrap__sp__body__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
}

.pro-wrap__body__block {
  display: flex;
  position: relative;
  margin-top: 7%;
}
@media screen and (max-width: 1024px) {
  .pro-wrap__body__block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pro-wrap__body__block {
    margin-bottom: 170px;
  }
}
.pro-wrap__body__block:nth-of-type(1) {
  margin-top: 0;
}
.pro-wrap__body__block:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .pro-wrap__body__block:nth-of-type(2) {
    margin-bottom: 120px;
  }
}
.pro-wrap__body__block__img {
  width: 57.5%;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1024px) {
  .pro-wrap__body__block__img {
    width: 100%;
  }
}
.pro-wrap__body__block__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.pro-wrap__body__block__con {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 45%;
  padding: 2.5% 3%;
  border-radius: 20px;
  background-color: #797986;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .pro-wrap__body__block__con {
    width: 50%;
    left: 3.5%;
  }
}
@media screen and (max-width: 768px) {
  .pro-wrap__body__block__con {
    width: 90%;
    left: 4.5%;
    bottom: -120px;
  }
}
.pro-wrap__body__block__con__ttl {
  margin-bottom: 3.5%;
}
.pro-wrap__body__block__con__ttl h3 {
  color: #fff;
  font-size: 1.75rem;
}
.pro-wrap__body__block__con__txt p {
  color: #fff;
  font-weight: 400;
  line-height: 2;
}

.pro-wrap__body__block:nth-of-type(2) .pro-wrap__body__block__con {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .pro-wrap__body__block:nth-of-type(2) .pro-wrap__body__block__con {
    margin-left: 3.5%;
  }
}
@media screen and (max-width: 768px) {
  .pro-wrap__body__block:nth-of-type(2) .pro-wrap__body__block__con {
    width: 90%;
    left: 5%;
    bottom: -120px;
    margin-left: 0;
  }
}

.flow {
  background-color: #e9eaed;
  border-radius: 50px;
}
.flow-wrap.__inner {
  margin-bottom: 9%;
}
.flow-wrap__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .flow-wrap__body {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.flow-wrap__body__block {
  width: 23.5%;
  margin-right: 2%;
}
@media screen and (max-width: 1024px) {
  .flow-wrap__body__block {
    min-width: 280px;
    align-items: stretch;
  }
}
.flow-wrap__body__block:nth-last-of-type(1) {
  margin-right: 0;
}
.flow-wrap__body__block__arrow {
  margin-bottom: 5%;
  position: relative;
  text-align: center;
  background: #cccccc;
  width: 80%;
  height: 75px;
}
@media screen and (max-width: 768px) {
  .flow-wrap__body__block__arrow {
    height: 65px;
  }
}
.flow-wrap__body__block__arrow::after {
  position: absolute;
  content: "";
  right: -40px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 39px solid transparent;
  border-bottom: 39px solid transparent;
  border-left: 41px solid #cccccc;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .flow-wrap__body__block__arrow::after {
    right: -34px;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
    border-left: 35px solid #cccccc;
  }
}
.flow-wrap__body__block__arrow h3 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
}
.flow-wrap__body__block__con {
  border-right: solid 1px #bbbbbb;
  padding-right: 3%;
  height: 70%;
}

.flow-wrap__body__block:nth-of-type(4) .flow-wrap__body__block__con {
  border-right: none;
}

.mes-wrap {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mes-wrap {
    display: block;
  }
}
.mes-wrap.__inner {
  width: 100%;
  padding-bottom: 13.5%;
}
@media screen and (max-width: 768px) {
  .mes-wrap.__inner {
    width: 90%;
    margin-bottom: 300px;
  }
}
@media screen and (max-width: 480px) {
  .mes-wrap.__inner {
    margin-bottom: 350px;
  }
}
.mes-wrap__img {
  width: 47.5%;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 1024px) {
  .mes-wrap__img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .mes-wrap__img {
    width: 100%;
  }
}
.mes-wrap__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
  .mes-wrap__img img {
    object-position: 100% center;
  }
}
.mes-wrap__con {
  position: absolute;
  width: 60%;
  bottom: 5%;
  right: 0;
  background-color: #e9eaed;
  border-radius: 30px;
  padding: 5%;
}
@media screen and (max-width: 1024px) {
  .mes-wrap__con {
    bottom: 2%;
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .mes-wrap__con {
    bottom: -250px;
    width: 100%;
    padding: 7% 5%;
  }
}
@media screen and (max-width: 480px) {
  .mes-wrap__con {
    bottom: -320px;
    width: 100%;
  }
}
.mes-wrap__con__copy {
  margin-bottom: 5%;
  font-size: 1.8rem;
  font-size: 700;
}
.mes-wrap__con__txt {
  margin-bottom: 5%;
  font-weight: 400;
}
.mes-wrap__con__name {
  font-size: 1.55rem;
}
.mes-wrap__con__name span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 5%;
}

.out-wrap.__inner {
  padding-top: 0;
}
.out-wrap__body .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: solid 1px #cccccc;
  padding: 2% 0 2% 1%;
}
.out-wrap__body .row:nth-last-of-type(1) {
  align-items: baseline;
}
.out-wrap__body dl dt {
  width: 30%;
  font-weight: 500;
  font-size: 1.2rem;
}
.out-wrap__body dl dd {
  width: 65%;
  font-weight: 400;
}

.acc-wrap.__inner {
  padding-top: 0;
  padding-bottom: 13.5%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .acc-wrap.__inner {
    padding-bottom: 17.5%;
  }
}
.acc-wrap__ttl {
  margin-left: 7.5%;
}
.acc-wrap__body {
  position: relative;
}
.acc-wrap__body__map {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .acc-wrap__body__map {
    height: 350px;
  }
}
.acc-wrap__body__map iframe {
  width: 100%;
  height: 100%;
}
.acc-wrap__body__add {
  position: absolute;
  content: "";
  bottom: -10%;
  background-color: #797986;
  border-radius: 0px 20px 20px 0px;
  padding: 1.5% 7.5% 1.5% 5%;
}
.acc-wrap__body__add__ttl {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4.5%;
}
.acc-wrap__body__add__txt {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}

.news_sub-wrap.__inner {
  width: 80%;
}
.news_sub-wrap__body__list {
  margin-bottom: 9%;
}
.news_sub-wrap__body__list a:hover {
  opacity: 1;
}
.news_sub-wrap__body__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #cccccc;
  padding: 2.5% 1.5%;
  transition: all 0.3s;
}
.news_sub-wrap__body__list__item:nth-of-type(8) {
  margin-bottom: 0;
}
.news_sub-wrap__body__list__item:hover {
  background-color: #e9eaed;
}
.news_sub-wrap__body__list__item__con {
  display: flex;
  align-items: center;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .news_sub-wrap__body__list__item__con {
    flex-wrap: wrap;
  }
}
.news_sub-wrap__body__list__item__con__date {
  font-weight: 400;
  margin-right: 2%;
  font-size: 0.9rem;
  word-break: keep-all;
}
.news_sub-wrap__body__list__item__con__cate {
  font-weight: 400;
  margin-right: 2%;
  background-color: #bbbbbb;
  padding: 0.25% 3%;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
  word-break: keep-all;
}
.news_sub-wrap__body__list__item__con__head {
  font-weight: 400;
  font-size: 1.1rem;
}
.news_sub-wrap__num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_sub-wrap__num__item {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-right: 2%;
  background-color: #bbbbbb;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news_sub-wrap__num__item {
    width: 35px;
    height: 35px;
  }
}
.news_sub-wrap__num__item:nth-last-of-type(1) {
  margin-right: 0;
}
.news_sub-wrap__num__item:hover {
  background-color: #272736;
  cursor: pointer;
}
.news_sub-wrap__num__item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
}
.news_sub-wrap__num__item a:hover {
  opacity: 1;
}

.news_detail-wrap__ttl {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 2%;
}
.news_detail-wrap__ttl__meta {
  display: flex;
  align-items: center;
  margin-bottom: 2.5%;
}
.news_detail-wrap__ttl__meta__date {
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 3%;
}
.news_detail-wrap__ttl__meta__cate {
  font-weight: 400;
  margin-right: 2%;
  background-color: #bbbbbb;
  padding: 0.25% 2.5%;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
}
.news_detail-wrap__ttl__head h2 {
  font-weight: 700;
  font-size: 2.15rem;
}
.news_detail-wrap__body__txt {
  margin-top: 5%;
  margin-bottom: 7%;
}
.news_detail-wrap__body__txt p {
  font-weight: 400;
}
.news_detail-wrap__body__btn {
  margin-bottom: 7%;
}
.news_detail-wrap__body__btn a {
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: solid 1px #272736;
  padding-bottom: 1%;
}

.con-wrap.__inner {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .con-wrap.__inner {
    width: 80%;
  }
}
.con-wrap__txt {
  text-align: center;
  margin-bottom: 7%;
}
.con-wrap__txt p {
  font-weight: 400;
}
.con-wrap__body__form__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .con-wrap__body__form__block {
    display: block;
    margin-bottom: 7%;
  }
}
.con-wrap__body__form__block:nth-last-of-type(1) {
  margin-bottom: 0;
}
.con-wrap__body__form__block__left {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .con-wrap__body__form__block__left {
    margin-bottom: 3.5%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}
.con-wrap__body__form__block__left p {
  font-size: 1.05rem;
}
@media screen and (max-width: 768px) {
  .con-wrap__body__form__block__left p {
    margin-right: 7%;
  }
}
.con-wrap__body__form__block__left span {
  font-size: 0.75rem;
  border: solid 1px #a43434;
  border-radius: 50px;
  color: #a43434;
  padding: 0.5% 3%;
}
.con-wrap__body__form__block__left .opti {
  color: #797986;
  border: solid 1px #797986;
}
.con-wrap__body__form__block input {
  width: 50%;
  height: 2.75rem;
}
@media screen and (max-width: 768px) {
  .con-wrap__body__form__block input {
    width: 100%;
  }
}
.con-wrap__body__form__block textarea {
  width: 50%;
  height: 17.5rem;
}
@media screen and (max-width: 768px) {
  .con-wrap__body__form__block textarea {
    width: 100%;
  }
}
.con-wrap__body__form__block.__con {
  align-items: baseline;
}
.con-wrap__body__form__btn {
  text-align: center;
  margin-top: 7%;
}
.con-wrap__body__form__btn button {
  background: #272736;
  border: solid 1px #272736;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  width: 19.5rem;
  height: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.4s;
}
.con-wrap__body__form__btn button:hover {
  color: #272736;
  border: solid 1px #272736;
  background-color: #fff;
}
