.ly_header {
  width: 100%;
  padding-top: 20px;
}

.bl_header_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1366px;
}

.bl_header_terminal {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid #A59ACA;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(165, 154, 202, 0.3);
  overflow: hidden;
  min-height: 250px;
  background: #fff;
}

.bl_header_terminal_upper {
  background: #333;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.bl_header_terminal_upper_dotGroup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bl_header_terminal_upper_dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bl_header_terminal_upper_dot__red {
  background: #ff5f56;
}

.bl_header_terminal_upper_dot__yellow {
  background: #ffbd2e;
}

.bl_header_terminal_upper_dot__green {
  background: #27ca3f;
}

.bl_header_terminal_upper_txt {
  color: #ccc;
}

.bl_header_terminal_under {
  padding: 20px;
  line-height: 150%;
  position: relative;
}

.ly_footer {
  width: 100%;
  padding-bottom: 30px;
}

.bl_footer_inner {
  width: 90%;
  margin: 0 auto;
}

.bl_footer_line {
  width: 100%;
  height: 1px;
  background: #ccc;
}

.bl_footer_copyRight_wrapper {
  margin-top: 30px;
  text-align: center;
}

.bl_footer_copyRight {
  font-size: 12px;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP";
  color: #333;
  background: linear-gradient(135deg, #fefefe 0%, #f5f5f5 50%, #eeeeee 100%);
}

span {
  display: inline-block;
}

@media screen and (min-width: 1080px) {
  body {
    font-size: 16px;
  }
}
.bl_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(165, 154, 202, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(165, 154, 202, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

.bl_cont_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .bl_cont_inner {
    width: 80%;
  }
}
.bl_imgWrapper img {
  width: 100%;
}

.un_lb__reverse {
  display: none;
}

@media screen and (min-width: 1080px) {
  .un_lb {
    display: none;
  }
  .un_lb__reverse {
    display: block;
  }
}
.ly_cont {
  padding: 60px 0;
}
@media screen and (min-width: 1080px) {
  .ly_cont {
    padding: 80px 0;
  }
}

.bl_btnGroup {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.bl_btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: "Roboto";
  border-radius: 25px;
}

.bl_btn__portfolio {
  border: 1px solid #A59ACA;
  color: #A59ACA;
  transition: all 0.3s;
}
.bl_btn__portfolio:hover {
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.3);
  background: #A59ACA;
  color: #fff;
}

.bl_btn__contact {
  border: 1px solid #333;
  transition: all 0.3s;
}
.bl_btn__contact:hover {
  box-shadow: 0px 0px 10px rgba(165, 154, 202, 0.3);
  background: #333;
  color: #fff;
}

.bl_secTtl_group {
  font-family: "Roboto";
  text-align: center;
}

.bl_secTtl_ttl {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
}

.bl_secTtl_subCopy {
  font-size: clamp(18px, 3vw, 24px);
  color: #A59ACA;
  margin-top: 10px;
}

.bl_secTtl_status {
  max-width: 300px;
  margin: 20px auto 0 auto;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #A59ACA;
  background: rgba(165, 154, 202, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.bl_secTtl_status_dot {
  width: 8px;
  height: 8px;
  background: #A59ACA;
  border-radius: 8px;
  -webkit-animation: status 1s infinite alternate;
          animation: status 1s infinite alternate;
}

@-webkit-keyframes status {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes status {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bl_secTtl_status_txt {
  font-family: "Roboto";
  font-size: 16px;
}

.bl_cardGroup {
  width: 100%;
  margin-top: 30px;
  display: grid;
  justify-content: center;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .bl_cardGroup {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
  }
}
@media screen and (min-width: 1080px) {
  .bl_cardGroup {
    margin-top: 42px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.bl_card {
  max-width: 365px;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #A59ACA;
  box-shadow: 0px 2px 10px rgba(165, 154, 202, 0.3);
  background: #fff;
}

.bl_card_ttl {
  font-size: 21px;
  font-weight: 600;
  font-family: "Roboto";
}

.bl_card_txt {
  line-height: 150%;
  margin-top: 12px;
}

.bl_card_list {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bl_card_listItem {
  background: rgba(165, 154, 202, 0.1);
  color: #A59ACA;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid #A59ACA;
}

.bl_card_list2 {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.bl_card_listItem2 {
  color: #A59ACA;
  line-height: 150%;
}

.bl_card_list3 {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.bl_card_listItem3 {
  font-size: 16px;
  line-height: 150%;
}
.bl_card_listItem3 .bl_card_listItem3_bold {
  display: inline-block;
  font-weight: 700;
}

.el_particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #A59ACA;
  -webkit-animation: float 6s infinite linear;
          animation: float 6s infinite linear;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

@-webkit-keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}
/*# sourceMappingURL=styles.css.map */