@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  font-family: "Roboto Condensed", sans-serif;
  color: #000;
  word-break: break-word;
}
body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.en {
  font-family: "Montserrat", sans-serif;
}

.fv {
  height: 100vh;
  width: 100%;
  position: relative;
  padding: 100px 20px 0;
}
.fv::before {
  background: url(../img/fv_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .fv::before {
    background-position: 40%;
  }
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.fv .fv_copy {
  z-index: 2;
  position: absolute;
  top: 54%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv .fv_copy {
    top: 50%;
  }
}
.fv .fv_copy h2 {
  font-size: 60px;
  letter-spacing: 0.03em;
  font-weight: normal;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .fv .fv_copy h2 {
    font-size: 32px;
    margin: 0 0 25px;
  }
}
.fv .fv_copy p {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .fv .fv_copy p {
    font-size: 16px;
  }
}

.service {
  padding: 140px 40px;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .service {
    padding: 20% 5.33%;
  }
}
.service .sec_ttl {
  box-shadow: none;
  color: #fff;
}
.service .sub_ttl {
  color: #fff;
}
.service .service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service .service_list li {
  width: 36%;
  background: #fff;
  padding: 50px 30px 40px;
  box-sizing: border-box;
  margin: 0 30px 60px;
}
@media screen and (max-width: 768px) {
  .service .service_list li {
    width: 100%;
    padding: 30px 20px;
    margin: 0 10px 40px;
  }
}
.service .service_list li .icon {
  text-align: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .service .service_list li .icon {
    margin: 0 0 30px;
  }
  .service .service_list li .icon img {
    transform: scale(0.8);
  }
}
.service .service_list li h3 {
  text-align: center;
  font-size: 20px;
  margin: 0 0 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service .service_list li h3 {
    margin: 0 0 20px;
  }
}

.works {
  padding: 140px 0 140px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 20% 0;
  }
}
.works .inner {
  position: relative;
  z-index: 2;
}
.works .sub_ttl {
  margin: 30px auto 50px;
}
.works .works_tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .works .works_tab {
    flex-wrap: wrap;
    margin: 0 auto 30px;
  }
}
.works .works_tab li {
  cursor: pointer;
  padding: 10px 30px;
  margin: 0 14px;
  text-align: center;
  color: #000;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works .works_tab li {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0 10px 20px;
  }
}
.works .works_tab li:hover {
  color: #fff;
  background: #000;
}
.works .works_tab li.is-active {
  color: #fff;
  background: #000;
}
.works .works_list {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
}
.works .works_list.show {
  display: grid;
}
@media screen and (max-width: 1100px) {
  .works .works_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works .works_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works .works_list li {
  height: 220px;
  padding: 2px;
  box-sizing: border-box;
  background: #000;
}
@media screen and (max-width: 768px) {
  .works .works_list li {
    height: 150px;
  }
}
.works .works_list li .img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.works .works_list li .img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.works .works_list li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.works .works_list li a:hover {
  opacity: 1;
}
.works .works_list li a:hover .img::after {
  opacity: 0;
}
.works .works_list li a:hover img {
  transform: scale(1.1);
}
.works .more_btn {
  width: 200px;
  font-size: 22px;
  font-weight: normal;
  margin: 60px auto 0;
  margin-left: auto;
  letter-spacing: 0.05em;
  text-align: center;
}
.works .more_btn a {
  position: relative;
}
.works .more_btn a::after {
  content: "";
  height: 2px;
  background: #000;
  width: 0;
  position: absolute;
  right: 0;
  bottom: -5px;
  display: block;
  transform-origin: left;
  transition: all 0.5s ease;
}
.works .more_btn a:hover::after {
  width: 100%;
}

.about {
  padding: 140px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 20% 5.33% 0;
  }
}
.about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
}
.about .inner {
  position: relative;
  z-index: 2;
}
.about .about_box {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .about .about_box {
    display: block;
  }
}
.about .about_box .about_img {
  width: 40%;
  border: 2px solid #000;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about .about_box .about_img {
    width: 65%;
    margin: 0 auto;
  }
}
.about .about_box .about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about_box .contents {
  width: 50%;
  background: #fff;
  padding: 80px 40px 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .about .about_box .contents {
    width: 100%;
    transform: translateY(-100px);
    padding: 130px 30px 30px;
  }
}
.about .about_box .contents p {
  font-size: 14px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .about .about_box .contents p {
    font-size: 14px;
    line-height: 2;
  }
}
.about .about_box .contents .sns_list {
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .about .about_box .contents .sns_list {
    margin: 30px 0 0;
  }
}
.about .about_box .contents .sns_list li {
  margin-left: 30px;
}
.about .about_box .contents .sns_list li img {
  width: 45px;
}
@media screen and (max-width: 768px) {
  .about .about_box .contents .sns_list li img {
    width: 35px;
  }
}

.contact {
  padding: 140px 40px 160px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 20% 5.33%;
  }
}
.contact .inner {
  position: relative;
  z-index: 2;
}
.contact .txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .txt {
    text-align: left;
  }
}
.contact .txt span {
  color: red;
}
.contact table {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .contact table {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .contact table tr {
    display: flex;
    flex-direction: column;
  }
}
.contact table th {
  font-weight: normal;
  width: 30%;
  text-align: right;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact table th {
    text-align: left;
    width: 100%;
    padding: 0;
    padding-right: 15px;
  }
}
.contact table th.center {
  vertical-align: middle;
}
.contact table th span {
  color: red;
  font-size: 10px;
  vertical-align: top;
}
.contact table td {
  padding: 20px 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact table td {
    padding: 14px 0;
  }
}
.contact table td input {
  width: 75%;
  box-sizing: border-box;
  padding: 14px;
}
@media screen and (max-width: 768px) {
  .contact table td input {
    width: 100%;
    padding: 10px;
  }
}
.contact table td textarea {
  box-sizing: border-box;
  padding: 14px;
  width: 75%;
  height: 350px;
}
@media screen and (max-width: 768px) {
  .contact table td textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
  }
}
.contact .btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .contact .btn_box {
    margin: 35px auto 0;
  }
}
.contact .btn_box .back_btn input {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  background: #fff;
  outline: none;
  border: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact .btn_box .back_btn input {
    height: 45px;
    font-size: 16px;
  }
}
.contact .btn_box .back_btn:hover input {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
.contact .back_btn {
  display: none;
  width: 240px;
  height: 60px;
  background: #fff;
  border: 1px solid #000;
  font-size: 18px;
  margin: 0 20px;
}
.contact .submit_btn {
  width: 240px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .contact .submit_btn {
    width: 180px;
  }
}
.contact .submit_btn input {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  background: #000;
  outline: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact .submit_btn input {
    height: 45px;
    font-size: 16px;
  }
}
.contact .submit_btn:hover input {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}/*# sourceMappingURL=top.css.map */