@charset "UTF-8";
:root {
  --accent: #87DBFF;
  --txt: #141414;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding-block: 100px;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 70px;
  height: 70px;
  background: #c8c8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
}

.pagetop .arrow {
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-135deg);
}

h2 {
  position: relative;
  padding-bottom: 20px;
  font-size: 7.5rem;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  letter-spacing: 0;
  word-break: keep-all;
}
h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

h4 {
  margin-bottom: 60px;
}

.animate__text span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px) translateZ(0);
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2,
.animate__text span {
  font-kerning: none;
  -webkit-font-smoothing: antialiased;
}

.sub {
  position: relative;
  margin-bottom: 60px;
  color: var(--accent);
}

p {
  line-height: 1.8;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--txt);
}

li {
  list-style: none;
}

.gradient__txt,
h2,
h3 {
  display: inline-block;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient__bg {
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  animation: rotate-circle 12s infinite linear;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(0deg) translateX(25px) rotate(0deg);
  }
  50% {
    transform: rotate(180deg) translateX(25px) rotate(-180deg);
  }
  100% {
    transform: rotate(360deg) translateX(25px) rotate(-360deg);
  }
}
.btn__c {
  display: inline-block;
  width: 130px;
  background: linear-gradient(90deg, #87DBFF, #b886fa);
  background-size: 200% auto;
  background-position: 50% 150%;
  text-align: center;
  transition: 0.3s;
}
.btn__c::after {
  content: none;
}
.btn__c a {
  color: #fff;
}
.btn__c:hover {
  background-position: 100% 200%;
}

.btn__s {
  text-align: right;
}
.btn__s span {
  position: relative;
  display: inline-block;
  width: 210px;
  padding: 10px 20px;
  margin-right: 0;
  border: 1px solid var(--txt);
  text-align: center;
  font-weight: 500;
}
.btn__s span:hover::before, .btn__s span:hover::after {
  right: -2.5em;
}
.btn__s span::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: var(--txt);
  transition: 0.3s;
}
.btn__s span::before {
  content: "";
  position: absolute;
  right: -30px;
  top: calc(50% - 2px);
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background: var(--txt);
  transition: 0.3s;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.loader__logo {
  width: 300px;
  z-index: 2;
}
.loader__circle {
  position: absolute;
  z-index: 1;
  transform: scale(0);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a7a8aa 0%, #fff 40%, #a7a8aa 100%);
  border-radius: 50%;
}

.all {
  opacity: 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-inline: 50px;
  background: rgba(255, 255, 255, 0.6901960784);
}
header h1 {
  width: 190px;
}
header ul.header__pc {
  display: flex;
  gap: 30px;
  line-height: 45px;
}
header .toggle,
header ul.header__sp {
  display: none;
}
header li {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
header li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
header li:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.mv {
  position: relative;
  font-weight: 500;
  margin-top: 80px;
}
.mv .gradient__bg {
  position: absolute;
  top: 25px;
  left: -15%;
  z-index: -1;
  width: 50vw;
  max-width: 900px;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(135, 219, 255, 0.6784313725), rgba(201, 160, 255, 0.6784313725));
  border-radius: 50%;
}
.mv .inner {
  margin-top: 60px;
  text-align: right;
}
.mv__logo {
  width: 45%;
  margin-bottom: 30px;
}
.mv__copy {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
}
.mv__line {
  width: 65%;
  margin-bottom: 60px;
  margin-right: calc(50% - 50vw + 10px);
}
.mv__desc {
  font-size: 1.5rem;
}

.about {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}
.about .gradient__bg {
  position: absolute;
  top: 150px;
  right: -15%;
  z-index: -1;
  width: 45vw;
  max-width: 600px;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(135, 219, 255, 0.3215686275), rgba(201, 160, 255, 0.2549019608));
  border-radius: 50%;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
.about__head-ja {
  margin-bottom: 60px;
  font-size: 3.125rem;
  font-weight: 500;
}
.about__head-en {
  color: #BABABA;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}
.about__desc div {
  margin-bottom: 60px;
}
.about__desc div > p {
  margin-bottom: 30px;
  font-weight: 500;
}

.service {
  position: relative;
  z-index: 1;
  background: #F9F9F9;
}
.service .gradient__bg {
  position: absolute;
  top: 30%;
  left: -15%;
  z-index: -1;
  width: 45vw;
  max-width: 600px;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(135, 219, 255, 0.3215686275), rgba(201, 160, 255, 0.2549019608));
  border-radius: 50%;
}
.service__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.service__content div {
  width: 50%;
}
.service__content img {
  width: 50%;
}
.service__content .btn__s {
  margin-top: 80px;
}
.service__head {
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

.works__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 60px;
}
.works__container a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.works__container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.5s;
}
.works__container img:hover {
  transform: scale(1.1);
}
.works .btn__s {
  text-align: center;
}
.works__name {
  margin-block: 30px 10px;
  font-size: 1.75rem;
  font-weight: 500;
}
.works__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.works__cat {
  display: inline-block;
  padding-inline: 5px;
  background: #BABABA;
  color: #fff;
  font-size: 0.875rem;
}

.contact {
  background: linear-gradient(90deg, rgba(135, 219, 255, 0.6784313725), rgba(201, 160, 255, 0.6784313725)), url(../images/contact.jpg);
  background-size: cover;
}
.contact h2 {
  margin-block: 0 60px;
}
.contact h2 span {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.contact h2::before {
  display: none;
}
.contact__container p {
  margin-bottom: 60px;
  color: #fff;
  font-weight: 700;
}
.contact__container .btn__s {
  text-align: left;
}
.contact__container .btn__s span {
  background: #fff;
}

footer {
  text-align: center;
}
footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 60px;
}
footer .inner p {
  width: 250px;
}
footer ul {
  display: flex;
  gap: 30px;
  line-height: 45px;
}
footer li {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
footer li a {
  position: relative;
}
footer li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
footer li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
footer li .btn__c::after {
  content: none;
}
footer small {
  display: block;
  padding-block: 12px;
  background: #0D0D0D;
  color: #fff;
}

@media (max-width: 1024px) {
  .inner {
    max-width: 850px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 2%;
  }
  h2 {
    font-size: 6rem;
  }
  .btn__s {
    text-align: center;
  }
  .btn__s span {
    width: 70%;
  }
  header {
    height: 60px;
  }
  header ul.header__pc {
    display: none;
  }
  header .toggle {
    display: block;
    position: relative;
    top: 10px;
    right: 0;
    z-index: 10000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: auto;
  }
  header .toggle span {
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: var(--txt);
    transition: 0.3s;
  }
  header .toggle span:nth-of-type(1) {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .toggle span:nth-of-type(2) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .toggle span:nth-of-type(3) {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  header ul.header__sp {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 9999;
    width: 85%;
    height: 100vh;
    padding: 60px 30px;
    background-color: #F9F9F9;
  }
  header ul.header__sp li {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 2.6rem;
    background: linear-gradient(90deg, #87DBFF, #C9A0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  header ul.header__sp li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    display: inline-block;
    background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  }
  header ul.header__sp li::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    transform: rotate(30deg);
    width: 20px;
    height: 2px;
    display: inline-block;
    background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  }
  .open ul.header__sp {
    display: block;
  }
  .open .toggle {
    background-color: var(--main);
  }
  .open .toggle span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(30deg);
    z-index: 999;
  }
  .open .toggle span:nth-of-type(2) {
    display: none;
  }
  .open .toggle span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-30deg);
    z-index: 999;
  }
  .about__container {
    flex-direction: column;
  }
  .about__head {
    margin-bottom: 60px;
  }
  .service__content {
    flex-direction: column;
  }
  .service__content div {
    width: 100%;
  }
  .service__content img {
    width: 100%;
  }
  .works__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__container {
    text-align: center;
  }
  .contact__container .btn__s {
    text-align: center;
  }
  footer ul {
    display: none;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }
  section {
    padding-block: 60px;
  }
  h2 {
    font-size: 3.75rem;
  }
  .sub {
    margin-bottom: 30px;
  }
  header {
    padding-inline: 5%;
  }
  header h1 {
    width: 130px;
  }
  .mv .inner {
    margin-top: 150px;
  }
  .mv .gradient__bg {
    width: 80vw;
  }
  .mv__logo {
    width: 80%;
  }
  .mv__line {
    width: 100%;
    margin-right: 0;
  }
  .mv__copy {
    font-size: 1.25rem;
  }
  .mv__desc {
    font-size: 1rem;
  }
  .about {
    padding-top: 0;
  }
  .about__container {
    gap: 0;
  }
  .about__head h2 {
    padding-left: 20px;
  }
  .about__head .animate__text span:first-child {
    margin-right: -20px;
  }
  .about__head-ja {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .about .gradient__bg {
    width: 90vw;
    top: 30%;
    left: -30%;
  }
  .service .gradient__bg {
    width: 90vw;
    top: 50%;
    left: -30%;
  }
  .works__container {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact h2 {
    padding-left: 20px;
  }
  .contact .animate__text span:first-child {
    margin-right: -20px;
  }
  footer .inner p {
    width: 130px;
  }
}
.wrapper {
  padding-top: 200px;
}

.kv {
  position: relative;
  padding-top: 180px;
  background: #F9F9F9;
}
.kv__head div {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.kv h2::before {
  left: 50%;
  transform: translateX(-50%);
}
.kv img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 180px;
}

.greeting {
  position: relative;
  overflow: hidden;
}
.greeting .gradient__bg {
  position: absolute;
  top: 150px;
  right: -15%;
  z-index: -1;
  width: 50vw;
  max-width: 900px;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(135, 219, 255, 0.3215686275), rgba(201, 160, 255, 0.2549019608));
  border-radius: 50%;
}
.greeting__lead {
  font-weight: 500;
  font-size: 2.5rem;
}
.greeting div p {
  margin-bottom: 30px;
}

.mvv {
  background: #F9F9F9;
}
.mvv__content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 10px;
}
.mvv__content:nth-of-type(2) {
  padding-left: 200px;
}
.mvv__content:nth-of-type(3) {
  padding-left: 400px;
}
.mvv__content p {
  font-weight: 700;
  font-size: 1.75rem;
}

.company dl {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20%;
}
.company dl dt {
  width: 15%;
  padding-block: 60px;
  border-top: 1px solid rgba(20, 20, 20, 0.2);
}
.company dl dt:last-of-type {
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}
.company dl dd {
  width: 85%;
  padding-block: 60px;
  line-height: 2;
  border-top: 1px solid rgba(20, 20, 20, 0.2);
}
.company dl dd:last-of-type {
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}

@media (max-width: 1024px) {
  .mvv__content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  .mvv__content:nth-of-type(2) {
    padding-left: 0;
  }
  .mvv__content:nth-of-type(3) {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .kv__head div {
    top: -60px;
  }
  .greeting .gradient__bg {
    width: 80vw;
  }
  .company dl {
    flex-direction: column;
    padding-left: 0;
  }
  .company dl dt {
    width: 100%;
    padding-block: 40px 20px;
  }
  .company dl dt:last-of-type {
    border-bottom: none;
  }
  .company dl dd {
    width: 100%;
    padding-block: 0 40px;
    border: none;
  }
}
@media (max-width: 480px) {
  .kv__head div {
    top: -40px;
  }
  .kv__about .animate__text span:first-child {
    margin-right: -20px;
  }
  .mvv__content p {
    font-size: 1.2rem;
  }
}
.kv__service {
  padding-block: 0;
}
.kv__service .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 150px;
  padding-top: 130px;
  margin-bottom: 100px;
}
.kv__service-lead {
  flex-shrink: 0;
  width: 400px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.4;
}
.kv__service img {
  margin-top: 0;
}

.recruitment {
  text-align: center;
}
.recruitment__content {
  max-width: 850px;
  margin: 0 auto;
}
.recruitment__content p {
  margin-bottom: 60px;
}
.recruitment__lead {
  font-weight: 500;
  font-size: 2rem;
}

.ourservice {
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.ourservice h3 {
  background: none;
}
.ourservice .animate__text span {
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}
.ourservice h4 {
  color: #fff;
}
.ourservice__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.ourservice__content {
  width: 33.3333333333%;
  padding: 30px;
  background: #fff;
  text-align: center;
}
.ourservice__content-head {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 500;
}
.ourservice__content ul {
  width: fit-content;
  margin: 0 auto 30px;
  text-align: left;
}
.ourservice__content .btn__c {
  position: relative;
  width: 250px;
  padding-block: 10px;
  background-size: 200% auto;
  background-position: 25% 75%;
  transition: 0.3s;
}
.ourservice__content .btn__c:hover {
  background-position: 75% 25%;
}
.ourservice__content .btn__c::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.ourservice__content .btn__c:hover::before {
  right: 15px;
}
.ourservice__content .btn__c a {
  display: inline-block;
  width: 100%;
  font-weight: 700;
}

.details__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
}
.details__content {
  width: 50%;
}
.details__content-head {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 60px;
  border-bottom: 4px solid transparent;
}
.details__content-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.details__content-head p {
  font-size: 3.125rem;
  font-weight: 500;
}
.details__content-head span {
  padding-right: 10px;
  color: var(--accent);
  font-size: 6.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}
.details__content-cat {
  width: fit-content;
  background: #BABABA;
  color: #fff;
  padding: 5px;
  margin-bottom: 20px;
}
.details__content-lead {
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 500;
}
.details__list-box {
  margin-bottom: 10px;
  padding: 30px;
  background: #F9F9F9;
  font-weight: 500;
}
.details__list-box li {
  position: relative;
  padding: 15px 15px 15px 40px;
}
.details__list-box li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.details__list__list2 {
  margin-top: 200px;
}
.details__list-title {
  color: var(--accent);
  font-weight: 700;
}
.details__feature {
  margin-right: calc(50% - 50vw + 10px);
  margin-left: calc(50% - 50vw + 10px);
  padding-block: 60px;
  background: #F9F9F9;
}
.details__feature-head {
  position: relative;
  margin-bottom: 30px;
  padding-left: 45px;
  font-size: 2rem;
  font-weight: 500;
}
.details__feature-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 6px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.details__feature-desc {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  margin: 0 0 10px 180px;
  padding: 30px 60px;
}
.details__feature-desc img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.details__feature-txt {
  flex: 1;
}
.details__feature-title {
  position: relative;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 500;
}
.details__feature-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.details__feature-detail {
  padding: 10px;
}
.details__boxes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.details__box {
  width: 33.3333333333%;
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}
.details__box-head {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}
.details__box-head span {
  font-size: 0.875rem;
}
.details__box-head:not(.ex) {
  padding-top: 20px;
}
.details__box-value {
  display: inline-block;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.625rem;
  font-weight: 700;
}
.details__box-value span {
  font-size: 3.125rem;
}
.details__container3, .details__container4 {
  display: block;
}
.details__content3 {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}
.details__content3 img {
  width: 50%;
  height: auto;
  object-fit: cover;
}
.details__list3 li {
  font-size: 1.5rem;
  font-weight: 500;
}
.details__list3 span {
  display: block;
  padding-left: 40px;
  line-height: 2;
}
.details__list3 .mb {
  margin-bottom: 30px;
}
.details__content4 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
.details__content4 img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .ourservice__container {
    flex-direction: column;
  }
  .ourservice__content {
    width: 100%;
    margin: 0 auto 30px;
  }
  .details__content-head span {
    font-size: 4rem;
  }
  .details__content-head p {
    font-size: 2.4rem;
  }
  .details__content-head ul {
    width: 50%;
    margin: 0 auto;
  }
  .details__content-lead {
    font-size: 1.5rem;
  }
  .details__content3, .details__content4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .details__content3 img, .details__content4 img {
    width: 100%;
  }
  .details__feature-desc {
    margin-left: 0;
  }
  .details__boxes {
    flex-direction: column;
  }
  .details__box {
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media (max-width: 768px) {
  .kv__service .inner {
    flex-direction: column;
    gap: 0;
  }
  .kv__service-lead {
    width: 100%;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .details__container {
    flex-direction: column;
  }
  .details__content {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .recruitment__content p:not(.recruitment__lead) {
    text-align: left;
  }
  .details__feature-head {
    font-size: 1.5rem;
  }
  .details__feature-title {
    text-align: center;
  }
  .details__feature-desc {
    flex-direction: column;
    gap: 0;
    padding: 30px;
    text-align: center;
  }
  .details__feature-txt {
    text-align: left;
  }
}
.kv__works {
  padding-top: 0;
}
.kv__head {
  height: 0;
}

.introduction {
  padding-top: 60px;
  background: #F9F9F9;
}
.introduction__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.introduction__content a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.introduction__content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: 0.5s;
}
.introduction__content img:hover {
  transform: scale(1.1);
}
.introduction__content-title {
  font-size: 1.75rem;
  font-weight: 700;
}
.introduction__content .works__cats {
  border: none;
}
.introduction__content-desc {
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}

@media (max-width: 768px) {
  .introduction__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .introduction__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.post {
  max-width: 850px;
  margin-inline: auto;
  padding-top: 0;
}

.post__content {
  margin-bottom: 100px;
}
.post__content .works__cats {
  border: none;
}
.post__content img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}
.post__content-data {
  font-size: 0.875rem;
}
.post__content-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.post__content-deschead {
  position: relative;
  padding-left: 40px;
}
.post__content-deschead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.post__content .works__cat {
  font-size: 1.2rem;
}
.post__content-btn {
  margin-top: 60px;
  text-align: center;
}
.post__content-btn .btn__c {
  width: 500px;
  margin-inline: auto;
}
.post__content-btn .btn__c a {
  display: inline-block;
  width: 100%;
  padding: 20px 10px;
  font-weight: 700;
}
.post__content-deschead {
  margin-top: 60px;
  font-size: 1.5rem;
  font-weight: 700;
}
.post__content-desc {
  padding-top: 40px;
}
.post__content-siteimage {
  margin-top: 60px;
  text-align: center;
}
.post__content-siteimage img {
  width: 75%;
}
.post__related-head {
  position: relative;
  padding-left: 40px;
  font-size: 1.5rem;
  font-weight: 700;
}
.post__related-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #87DBFF, #C9A0FF);
}
.post__related-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block: 40px 60px;
}
.post__related-list a {
  display: inline-block;
  width: 33.3333333333%;
}
.post__related-list img {
  width: 100%;
}
.post .related__card {
  position: relative;
  width: 33.3333333333%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post .related__card-img img {
  width: 100%;
  display: block;
}
.post .related__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post .related__card-date {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.post .related__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.post .related__card-cat {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.post .related__card-tag {
  font-size: 0.8rem;
  opacity: 0.85;
}
.post .related__card:hover .related__card-overlay {
  opacity: 1;
}
.post__btn {
  text-align: center;
}
.post__btn-s {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid var(--txt);
}
.post__btn-s a {
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  transition: 0.3s;
}
.post__btn-s a:hover {
  background: var(--txt);
  color: #fff;
}

@media (max-width: 480px) {
  .post__content-btn .btn__c {
    width: 100%;
  }
  .post__related div {
    flex-direction: column;
  }
  .post__related div img {
    width: 100%;
  }
}
/*===================================================
WP-Pagenaviのcss
===================================================*/
.wp-pagenavi {
  text-align: center;
  padding: 50px 0;
  font-size: 1.125rem;
}

/* 総ページ数 */
.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  margin-inline: 10px;
  padding-inline: 30px;
  border: 1px solid var(--txt);
  transition: all 0.3s ease;
  font-weight: 500;
  box-sizing: content-box;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .page:hover {
  background-color: var(--txt);
  color: #fff;
}

.wp-pagenavi .page {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-inline: 10px;
  font-weight: bold;
  border: 1px solid var(--txt);
  box-sizing: content-box;
}

.wp-pagenavi .current {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-inline: 10px;
  font-weight: bold;
  background-color: var(--txt);
  color: #fff;
}/*# sourceMappingURL=main.css.map */