@charset "UTF-8";
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  display: inline-block;
  width: 100%;
  z-index: 500;
  position: fixed;
}
@media screen and (min-width: 1201px) {
  header {
    height: 60px;
    padding-top: 30px;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  header {
    height: 150px;
    padding-top: 30px;
    top: 0;
  }
}
@media screen and (max-width: 750px) {
  header {
    padding-top: 5.55vw;
    top: 6.4vw;
  }
}
header .section-inner {
  z-index: 10;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  header .section-inner {
    width: 1200px;
    height: 50px;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 750px) {
  header .section-inner {
    width: 100%;
    padding: 0 4.8vw;
    box-sizing: border-box;
  }
}
header .section-inner .header-area {
  display: flex;
  justify-content: end;
}
@media screen and (min-width: 1201px) {
  header .section-inner .header-area {
    height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner .header-area {
    height: 50px;
  }
}
header .section-inner .header-area .logo-main {
  z-index: 100;
  animation-name: slide-in;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  clip-path: inset(0);
  opacity: 0;
}
@media screen and (min-width: 1201px) {
  header .section-inner .header-area .logo-main {
    width: 9vw;
  }
}
@media screen and (max-width: 1200px) {
  header .section-inner .header-area .logo-main {
    width: 9vw;
  }
}
@media screen and (max-width: 750px) {
  header .section-inner .header-area .logo-main {
    width: 30.9vw;
    padding-top: 1.5vw;
  }
}
@keyframes slide-in {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
header .section-inner .header-area .logo-main img {
  max-width: 100%;
}
header .section-inner .header-area nav {
  z-index: 15;
}
header .section-inner .header-area nav ul {
  text-align: right;
  list-style: none;
}
header .section-inner .header-area nav ul li {
  display: inline-block;
}
header .section-inner .header-area nav ul li a {
  position: relative;
  padding-right: 60px;
}
header .section-inner .header-area nav ul li a:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  right: 0;
  top: 50%;
  margin-top: -2px;
  background: url(../../img/icon-arrow-bottom.png) no-repeat;
  background-size: 100%;
}
header .section-inner .header-area nav ul li a .menu-text {
  font-size: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.1s 0s ease-in;
  padding-bottom: 2px;
}
header .section-inner .header-area nav ul li a .menu-text:hover {
  border-bottom: 2px #fff solid;
}
header .menu-modal-area {
  position: fixed;
  top: 90;
  left: 0;
  width: 100%;
  visibility: hidden;
}
header .menu-modal-area .white-box {
  height: 8.33vw;
  z-index: 10;
  width: 100%;
  background-color: white;
}
@media screen and (min-width: 1201px) {
  header .menu-modal-area .white-box {
    height: 100px;
  }
}
@media screen and (max-width: 1200px) {
  header .menu-modal-area .white-box {
    height: 100px;
  }
}
@media screen and (max-width: 750px) {
  header .menu-modal-area .white-box {
    height: 8.33vw;
  }
}
header .menu-modal-area .white-box .menu-modal {
  visibility: hidden;
  display: flex;
  position: absolute;
  justify-content: center;
  height: 4.166vw;
  z-index: 150;
  background-color: #f4f4f4;
  width: 100%;
  list-style: none;
}
header .menu-modal-area .white-box .menu-modal li {
  display: inline-block;
  position: relative;
  letter-spacing: 1.8px;
  padding-right: 20px;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
header .menu-modal-area .white-box .menu-modal li:before {
  line-height: 1.5vw;
  content: "/";
  background: none;
  position: absolute;
  top: 0px;
  right: -2px;
  color: #d8d8d8;
  font-size: 20px;
}
@media screen and (min-width: 1201px) {
  header .hamburgerMenuArea.mb-on {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .hamburgerMenuArea.mb-on {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  header .hamburgerMenuArea.mb-on {
    display: block;
  }
}
header .hamburgerMenuArea .hamburger-content {
  width: 100vw;
  height: 100vh;
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  background-color: #111;
  padding: 11.4vw 12.4vw;
  transform: translate(101vw, 0px);
  /*動き*/
  transition: all 1.6s;
}
header .hamburgerMenuArea .hamburger-content.panelactive {
  transform: translate(0px, 0px);
}
header .hamburgerMenuArea .hamburger-content ul {
  list-style: none;
}
header .hamburgerMenuArea .hamburger-content ul li {
  display: list-item;
  text-align: left;
  margin-bottom: 20px;
}
header .hamburgerMenuArea .hamburger-content ul li a {
  color: #fff;
  font-family: "akrobat";
  text-decoration: none;
  letter-spacing: 0.6vw;
  font-size: 7.46667vw;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn {
    position: fixed;
    top: 6.4vw;
    right: 4.8vw;
    width: 6.66vw;
    overflow: hidden;
    z-index: 500;
  }
}
header .hamburgerBtn span {
  background-color: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn span {
    display: block;
    width: 100%;
    height: 0.53vw;
  }
}
header .hamburgerBtn span:nth-child(1) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn span:nth-child(2) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn.active span {
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  header .hamburgerBtn.active span {
    display: block;
    width: 100%;
    height: 0.53vw;
  }
}
header .hamburgerBtn.active span:nth-child(1) {
  margin-bottom: 2.13vw;
}
header .hamburgerBtn.active span:nth-child(2) {
  margin-bottom: 2.13vw;
  transform: translateX(2.6vw);
}
header .hamburgerBtn.active span:nth-child(3) {
  transform: translateX(5.4vw);
}

footer {
  overflow: hidden;
}
footer .top-area {
  background: url(../img/bg-footer.webp) no-repeat center center;
  height: 25vw;
  padding: 5vw 0;
}
@media screen and (min-width: 1201px) {
  footer .top-area {
    height: 360px;
    padding: 72px 0;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area {
    height: 25vw;
    padding: 5vw 0;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area {
    height: auto;
    padding: 10.66vw 4.8vw;
  }
}
footer .top-area .section-inner {
  padding: 0 8.3vw;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner {
    display: block;
  }
}
footer .top-area .section-inner .card-area {
  background-color: #fff;
  box-shadow: 16px 16px 40px 0px rgba(0, 0, 0, 0.12);
  position: relative;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area {
    width: 560px;
    height: 216px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area {
    width: 38.88889vw;
    height: 15vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area {
    width: 100%;
    height: 50.66667vw;
    margin-bottom: 4.8vw;
  }
}
footer .top-area .section-inner .card-area a {
  position: relative;
  display: block;
  width: 100%;
  height: 150%;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  color: black;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a {
    padding: 6.4vw 5.6vw;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a {
    padding: 2.22vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a {
    padding: 6.4vw 5.6vw;
  }
}
footer .top-area .section-inner .card-area a .text-cat {
  margin: 0 auto;
  font-weight: bold;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 13px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 0.90278vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .text-cat {
    font-size: 3.2vw;
    letter-spacing: 0.26667vw;
  }
}
footer .top-area .section-inner .card-area a .title {
  font-family: "akrobat";
  font-weight: bold;
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 32px;
    letter-spacing: 4px;
    margin: 24px 0;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 2.22222vw;
    letter-spacing: 0.27778vw;
    margin: 1.666vw 0;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .title {
    font-size: 5.86667vw;
    letter-spacing: 0.90667vw;
    line-height: 6.93333vw;
  }
}
@media screen and (min-width: 1201px) {
  footer .top-area .section-inner .card-area a .text-content {
    font-size: 14px;
    line-height: 28px;
    width: 440px;
  }
}
@media screen and (max-width: 1200px) {
  footer .top-area .section-inner .card-area a .text-content {
    font-size: 0.97222vw;
    line-height: 1.94444vw;
    width: 30.55556vw;
  }
}
@media screen and (max-width: 750px) {
  footer .top-area .section-inner .card-area a .text-content {
    width: 100%;
    font-size: 3.2vw;
    line-height: 5.6vw;
  }
}
footer .bottom-area {
  padding: 4.72vw 0 3.68vw 0;
  position: relative;
  background-color: #111;
}

#works-top {
  height: 360px;
  display: grid;
  place-items: center;
  background: radial-gradient(1200px 300px at 50% -40%, rgba(14, 165, 233, 0.3), transparent), linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0ea5e9 100%);
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -60px 120px rgba(0, 0, 0, 0.25);
}
#works-top .title h1 {
  font-size: 48px;
  letter-spacing: 1px;
}
#works-top .title .subtitle {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

#works-list {
  padding: 80px 0 120px;
}
#works-list .works-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  #works-list .works-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  #works-list .works-cards {
    grid-template-columns: 1fr;
  }
}
#works-list .works-card {
  position: relative;
}
#works-list .card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}
#works-list .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}
#works-list .card-thumb {
  position: relative;
}
#works-list .card-thumb img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#works-list .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
#works-list .card-title {
  position: absolute;
  left: 16px;
  bottom: 12px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
#works-list .card-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#works-list .card-desc {
  margin: 0;
  color: #475569;
  font-size: 14px;
}
#works-list .card-footer .arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0ea5e9;
  color: #fff;
  line-height: 32px;
  text-align: center;
  font-weight: 700;
}

#works-detail {
  padding: 80px 0 120px;
}
#works-detail h1 {
  font-size: 34px;
  margin-bottom: 18px;
}
#works-detail .lead {
  color: #334155;
  margin-bottom: 22px;
  font-size: 16px;
}
#works-detail .work-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
#works-detail .work-item {
  display: block;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 20px 24px 0;
}
#works-detail .work-item__media {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 24px 0 0;
}
#works-detail .work-item__media img {
  display: block;
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  border-radius: 10px;
}
#works-detail .work-item__body {
  padding: 20px 24px 24px;
}
#works-detail .work-item__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
}
#works-detail .work-item__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 6px;
  height: 1.2em;
  border-radius: 3px;
  background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
}
#works-detail .work-item__desc {
  margin: 0 0 14px;
  padding: 14px;
  color: #475569;
  font-size: 18px;
}
#works-detail .work-item__tags {
  list-style: none;
  padding: 0 14px 14px 14px;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#works-detail .work-item__tags .tag {
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

@font-face {
  font-family: "akrobat";
  src: url("../fonts/akrobat/Akrobat-ExtraBold.eot");
  src: url("../fonts/akrobat/Akrobat-ExtraBold.eot?iefix") format("eot"), url("../fonts/akrobat/Akrobat-ExtraBold.woff") format("woff"), url("../fonts/akrobat/Akrobat-ExtraBold.ttf") format("truetype");
}
@media screen and (max-width: 750px) {
  .mb-none {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .mb-none {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .mb-none {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .mb-none {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .mb-on {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .mb-on {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .mb-on {
    display: block;
  }
}

body {
  margin: 0;
  padding: 0;
}

.is-works-page {
  background-color: #f8fafc;
}

section {
  position: relative;
}

h1 {
  font-size: 42px;
  margin: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  .section-inner {
    width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .section-inner {
    width: 700px;
  }
}
@media screen and (max-width: 750px) {
  .section-inner {
    width: 100vw;
    padding: 0 16px;
  }
}

/*# sourceMappingURL=works-style.css.map */
