* {
  font-family: poppins, noto sans tc, serif;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-image: url(../images/bg.png);
  background-size: cover;
}

.main_container {
  width: 100%;
  overflow: hidden;
}

.m-b-30 {
  margin-bottom: 30px;
}

.title .tc {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.title .en {
  font-size: 38px;
  line-height: 140%;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .title .en {
    font-size: 30px;
  }
}
.paragraph {
  font-size: 14px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 0.1em;
}

.section {
  padding-top: 150px;
}

@media (max-width: 1399px) {
  .section {
    padding-top: 100px;
  }
}
form .row {
  margin-bottom: 25px;
}

.form-label {
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  padding: 10px 15px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: #000;
  opacity: 0.25;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.form-control::placeholder,
.form-select::placeholder {
  color: #000;
  opacity: 0.25;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.form-control:focus, .form-control:focus-visible,
.form-select:focus,
.form-select:focus-visible {
  border: none;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  form .row {
    margin-bottom: 15px;
    gap: 15px;
  }
  textarea.form-control {
    height: 200px;
  }
}
.btn-primary {
  color: #fff;
  background: none;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 6px 10px 5px 20px;
  letter-spacing: 0.05em;
  text-align: center;
}
.btn-primary img {
  transform: rotate(-90deg);
  display: inline-block;
  margin-top: -3px;
  margin-left: 5px;
}
.btn-primary:hover {
  background-color: #6a7482;
  border-color: #6a7482;
}

.egg_group.md {
  display: none;
  align-items: end;
  gap: 20px;
  padding-bottom: 50px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 60px;
  z-index: 20;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 20px 15px;
  letter-spacing: 0.05em;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .navbar {
    padding: 10px 0 25px 10px;
  }
  .navbar-toggler {
    width: 50px;
    height: 50px;
    background-color: rgba(160, 170, 183, 0.5647058824);
    border-radius: 0;
  }
  .navbar-toggler:focus {
    border: none;
    box-shadow: none;
  }
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.5019607843);
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    color: #6a7482;
    text-align: center;
  }
}
.scroll_container {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  gap: 15px;
  overflow: hidden;
  pointer-events: none;
  z-index: 20;
}
.scroll_container .wrap {
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
}
.scroll_container .wrap .img-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: marquee 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes marquee {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .scroll_container {
    padding-left: 20px;
  }
}
.copyright {
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 300;
}
.copyright.lg {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 30px 60px;
  pointer-events: none;
  z-index: 20;
}
.copyright.md {
  display: none;
}

@media (max-width: 767px) {
  .copyright.lg {
    display: none;
  }
  .copyright.md {
    display: block;
  }
}
.kv {
  height: 100vh;
  padding-top: 0;
}
.kv .h1_wrap {
  width: calc(100vw - 18px);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 45%;
}
.kv .title {
  width: -moz-max-content;
  width: max-content;
  font-size: 8.4vw;
  font-style: normal;
  font-weight: 200;
  line-height: 120%;
  letter-spacing: 0.32vw;
  color: #fff;
}
.kv .title span {
  font-weight: 600;
}
.kv .egg {
  position: absolute;
}
.kv .egg.front {
  z-index: 5;
  left: 35%;
  top: 140px;
}
.kv .egg.rear_top {
  left: 25%;
  top: -18%;
  z-index: -20;
  transform: rotate(60deg);
}
.kv .egg.rear_bottom {
  left: 65%;
  top: 70%;
}

@media (max-width: 991px) {
  .kv .h1_wrap {
    top: 30%;
  }
  .kv .title {
    font-size: 17.5vw;
    text-align: center;
    letter-spacing: 0;
  }
  .kv .title span {
    display: block;
  }
}
@media (max-width: 767px) {
  .kv .egg.front {
    left: 25%;
    top: 53%;
  }
  .kv .egg.rear_bottom {
    top: 90%;
  }
}
@media (max-width: 575px) {
  .kv .h1_wrap .title {
    font-size: 17vw;
  }
  .kv .egg.front {
    top: 45%;
    left: 25%;
    width: 250px;
  }
  .kv .egg.rear_top {
    left: 0;
    top: -10%;
  }
  .kv .egg.rear_bottom {
    left: 50%;
    width: 150px;
    top: 80%;
  }
}
.about {
  padding-top: 0;
}
.about .subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.about .subtitle span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.about .slogan {
  font-size: 38px;
  line-height: 140%;
  letter-spacing: 0.15em;
}
.about .bg {
  margin-top: -100px;
  margin-bottom: 300px;
}
.about .bg img {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 1296px) / 2);
}
.about .egg.bottom {
  margin-top: 200px;
}

@media (max-width: 1399px) {
  .about .bg {
    margin-bottom: 200px;
  }
  .about .egg.top {
    width: 300px;
  }
  .about .egg.bottom {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  .about .egg.top {
    width: 250px;
  }
  .about .egg.bottom {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .about .egg_group.md {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .about .egg_group.lg {
    display: none;
  }
  .about .egg.lg {
    display: none;
  }
  .about .bg {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .about .slogan {
    font-size: 30px;
  }
  .about .bg img {
    width: 300%;
    margin-left: -70%;
  }
}
@media (max-width: 575px) {
  .about .egg_group.md {
    margin-top: 50px;
  }
}
.service {
  padding-top: 100px;
}
.service .paragraph {
  margin-top: 30px;
  margin-bottom: 120px;
}
.service .cover {
  width: 100vw;
  z-index: -1;
}
.service .cover img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1300px) {
  .service {
    padding-top: 50px;
  }
}
@media (max-width: 1199px) {
  .service .content {
    margin-top: -50px;
  }
}
@media (max-width: 991px) {
  .service {
    padding-top: 0;
  }
  .service .content {
    margin-top: 0;
  }
  .service .paragraph {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .service .cover {
    height: 200px;
  }
  .service .cover img {
    width: 100%;
    height: 100%;
  }
  .service .paragraph {
    margin-top: 0;
  }
}
.process .item {
  display: flex;
  gap: 50px;
}
.process .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process .left .line {
  width: 1.5px;
  background-color: #fff;
}
.process .left .line.top {
  height: 28px;
}
.process .left .line.bottom {
  height: 100%;
}
.process .left .point {
  width: 12px;
  height: 12px;
  min-height: 12px;
  background-color: #fff;
  border-radius: 50%;
}
.process .right {
  display: flex;
  padding-bottom: 25px;
}
.process .right .number {
  width: 80px;
  font-size: 38px;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 0.1em;
  margin-right: 30px;
}
.process .right .title {
  padding-top: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.1em;
}
.process #service_list .item:first-child .left .line.top {
  opacity: 0;
}
.process #service_list .item:last-child .left .line.bottom {
  opacity: 0;
}

@media (max-width: 1199px) {
  .process .list {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .process .item {
    gap: 30px;
  }
  .process .right {
    flex-direction: column;
  }
  .process .right .number {
    margin-bottom: 0;
  }
}
.experience .title {
  text-align: center;
}
.experience .list {
  margin-top: 70px;
}
.experience .item {
  display: flex;
  align-items: center;
  padding-right: calc(50% - 5px);
  position: relative;
  min-height: 66px;
}
.experience .item .paragraph {
  white-space: nowrap;
  margin-right: 30px;
  margin-bottom: 0;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.experience .item .paragraph span {
  margin-right: 20px;
}
.experience .item .dashed {
  width: 100%;
  height: 1px;
  border: 1px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, #fff 0, #fff 6px, transparent 6px, transparent 12px) 30;
     border-image: repeating-linear-gradient(to right, #fff 0, #fff 6px, transparent 6px, transparent 12px) 30;
}
.experience .item .point {
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-grow: 1;
}
.experience .item img {
  position: absolute;
  width: 350px;
  left: calc(50% - 175px);
  z-index: -10;
}
.experience .item:nth-child(even) {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: calc(50% - 5px);
}
.experience .item:nth-child(even) .paragraph {
  margin-left: 30px;
  margin-right: 0;
  text-align: right;
}
.experience .item:nth-child(even) .paragraph span {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .experience .item {
    min-height: 47.84px;
  }
  .experience .item img {
    width: 250px;
    left: calc(50% - 125px);
  }
  .experience .item .dashed {
    -o-border-image: repeating-linear-gradient(to right, #fff 0, #fff 3px, transparent 3px, transparent 6px) 30;
       border-image: repeating-linear-gradient(to right, #fff 0, #fff 3px, transparent 3px, transparent 6px) 30;
  }
}
@media (max-width: 767px) {
  .experience .list {
    margin-top: 40px;
  }
  .experience .item,
  .experience .item:nth-child(even) {
    flex-direction: row;
    min-height: 42.11px;
    padding-right: 110px;
    padding-left: 0;
  }
  .experience .item img,
  .experience .item:nth-child(even) img {
    width: 220px;
    left: auto;
    right: 0;
  }
  .experience .item .paragraph,
  .experience .item:nth-child(even) .paragraph {
    font-size: 16px;
    margin-left: 0;
    margin-right: 20px;
    text-align: left;
  }
  .experience .item .paragraph span,
  .experience .item:nth-child(even) .paragraph span {
    margin-right: 5px;
  }
  .experience .item .dashed,
  .experience .item:nth-child(even) .dashed {
    -o-border-image: none;
       border-image: none;
    border: 1px dashed #fff;
  }
}
.works {
  padding-top: 200px;
}
.works .title {
  text-align: center;
  margin-bottom: 70px;
}
.works .cover {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-top: 119.4%;
  border-radius: 10px;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.works .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.3s ease-in;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .cover .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease-in;
  z-index: 10;
}
.works .cover:hover img {
  transform: scale(1.03);
}
.works .splide__track {
  overflow: visible;
}

@media (max-width: 767px) {
  .works {
    padding-top: 150px;
  }
  .works .title {
    margin-bottom: 40px;
  }
}
.contact {
  margin-bottom: -50px;
}
.contact .title {
  margin-bottom: 300px;
}
.contact .egg.top {
  width: 215px;
}
.contact .egg.bottom {
  width: 120px;
}

@media (max-width: 1399px) {
  .contact {
    padding-top: 150px;
  }
}
@media (max-width: 1199px) {
  .contact {
    margin-bottom: 50px;
  }
  .contact .title {
    margin-bottom: 50px;
  }
  .contact .egg_group.md {
    display: flex;
  }
  .contact .egg_group.lg {
    display: none;
  }
  .contact .egg.lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-top: 100px;
  }
}
footer {
  background-color: #A0AAB7;
}
footer .section {
  padding-top: 60px;
  padding-bottom: 80px;
}
footer .slogan {
  font-size: 80px;
  line-height: 120%;
  margin: 0;
}
footer .footer_right {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: column;
}
footer .footer_nav {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: end;
  padding: 15px 0;
  margin-bottom: 0;
}
footer .footer_nav li {
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 16px;
  list-style: none;
  width: 150px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  transition: 0.1s ease-in;
}
footer .footer_nav li:hover {
  opacity: 0.7;
}
footer .sns_group {
  margin-bottom: 15px;
}
footer .sns_group a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 5px;
  transition: 0.1s ease-in;
}
footer .sns_group a:hover {
  opacity: 0.7;
}
footer .sns_group a img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  footer .section {
    margin-bottom: 50px;
  }
  footer .footer_right {
    flex-direction: row;
  }
  footer .footer_nav {
    justify-content: flex-start;
    margin: 30px 10px 0;
  }
}
@media (max-width: 767px) {
  footer .slogan {
    font-size: 60px;
  }
  footer .footer_right {
    flex-direction: column;
  }
  footer .footer_nav {
    width: 100%;
    justify-content: space-between;
    margin: 0;
    padding: 50px 5px 30px;
  }
  footer .footer_nav li {
    width: 47%;
  }
  footer .footer_right_inner {
    width: 100%;
  }
  footer .footer_right_inner .sns_group {
    margin-bottom: 10px;
  }
  footer .footer_right_inner .copyright {
    padding-left: 10px;
  }
}/*# sourceMappingURL=main.css.map */