@charset "utf-8";

/* ======================
header
====================== */
.blend-normal {
  color: #F3F3F3;
  mix-blend-mode: normal;
}

@media screen and (min-width: 769px) {

  .header__logo,
  .nav {
    color: #F3F3F3;
    mix-blend-mode: normal;
  }
}

@media screen and (min-width: 1024px) {
  .nav {
    position: fixed;
    right: 46.2%;
  }
}

/* ======================
visual
====================== */
body {
  background-color: #606060;
}

.workVisual {
  background-color: #606060;
  width: 100vw;
  padding: 124px 12px 108px;
  position: relative;
}

.workVisual::before {
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg-work-with.webp);
  background-repeat: no-repeat;
  display: grid;
  z-index: 0;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  pointer-events: none;
}

.workVisual__head {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 560px;
}

.workVisual__key img {
  width: 828px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--accentColor);
  padding: 12px;
  border-radius: 4px;
}

.workVisual__content {
  margin: 0 auto;
  padding: 0 10px;
  color: #F3F3F3;
}

.workVisual__heading {
  margin: 22px auto 0;
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.workVisual__type {
  margin: 3px auto 0;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.workVisual__type::before {
  margin-right: 6px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--accentColor);
  border-radius: 50%;
  vertical-align: 1px;
}

.keyColor {
  position: absolute;
  right: 8px;
  bottom: 16px;
  font-size: min(3.6vw, 1.35rem);
  letter-spacing: 0.02em;
  color: var(--baseColor);
}

.color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #BFBFBF;
  margin-right: 4px;
  vertical-align: -2px;
}

.color--white {
  background-color: var(--baseColor);
}

.color--green {
  background-color: #009E3B;
}

.color--navy {
  background-color: #31414F;
}

.color--turquoise {
  background-color: #3EB993;
}

@media screen and (min-width: 1024px) {
  .flex {
    display: flex;
    position: absolute;
    top: 0;
  }

  .workVisual {
    padding: 0 16px;
    width: 55vw;
    height: 100vh;
    position: fixed;
  }

  .workVisual__head {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 42.8571428571vw;
  }

  .workVisual__key img {
    padding: 20px;
  }

  .workVisual__content {
    padding: 0 20px;
    width: 800px;
  }

  .workVisual__heading {
    margin: 24px auto 0;
    font-size: 3.2rem;
    font-size: min(1.9047619048vw, 3.2rem);
  }

  .workVisual__type {
    margin: 2px auto;
    font-size: 1.8rem;
    font-size: min(1.07142857143vw, 1.8rem);
  }

  .workVisual__type::before {
    width: 9px;
    height: 9px;
    vertical-align: 2px;
  }

  .keyColor {
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-size: 1.8rem;
  }

  .color {
    width: 16px;
    height: 16px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .workVisual {
    padding: 156px 16px;
  }
}

/* ======================
detail
====================== */
.section--detail {
  padding: 30px 12px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), #ffffff 100%);
  backdrop-filter: blur(10px);
  position: relative;
}

.detail__link {
  background-image: linear-gradient(to right, #93a5cf 0%, #C8D3CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  transition: 0.8s;
}

.detail__link::after {
  margin-left: 8px;
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -4px;
}

.detail__link--gp::after {
  background-image: none;
}

.detail__link:hover {
  opacity: 0.6;
  transform: scale(1.01);
  transition: 0.8s;
}

.mockUp {
  margin-top: 4px;
  width: 180px;
}

.mockUp--gp {
  width: 320px;
}

.upDown {
  animation: upDown 7s ease-in-out infinite alternate;
}

@keyframes upDown {
  0% {
    transform: translate3d(0, 8px, 0)
  }

  50% {
    transform: translate3d(0, -8px, 0)
  }

  100% {
    transform: translate3d(0, 8px, 0)
  }
}

.detail__table {
  margin: 24px 0;
  max-width: 680px;
}

.detail__list {
  margin-bottom: 19px;
}

.bold {
  font-weight: 600;
  color: #009E3B;
}

.bold02 {
  font-weight: 600;
  color: #31414F;
}

.bold03 {
  font-weight: 600;
  color: #93a5cf;
}

.underLine {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #777;
}

.detail__list dt {
  font-size: 1.7rem;
  font-weight: var(--weight-regular);
}

.detail__list dd {
  margin: 0.3571428571vw 2px 0;
  font-size: 1.4rem;
  color: #444;
  line-height: 1.85;
}

.detail__list dd a {
  color: #3C79D4;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: 0.6s;
}

.detail__list dd a::before {
  content: "";
  display: block;
  background-image: url(../images/icon-externaLlink.svg);
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.detail__list dd a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

.detail__parts {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.2fr;
  gap: 6px;
}

.preview {
  max-width: 680px;
}

.preview__sp {
  display: flex;
  white-space: nowrap;
  gap: 16px;
}

.preview__sp img {
  border: 7px solid var(--baseColor);
  border-radius: 16px;
}

.preview__pc img {
  border-radius: 4px;
}

.preview__pc {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.otherWorks {
  margin-top: 38px;
  width: 100%;
}

.otherWorks__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.otherWorks h3 {
  background-image: linear-gradient(to right, #93a5cf 0%, #C8D3CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 12px;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.work__all {
  background-image: linear-gradient(to right, #93a5cf 0%, #C8D3CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 12px;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  transition: 0.8s;
}

.work__all::before {
  margin-right: 16px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -4px;
}

.work__all:hover {
  opacity: 0.6;
  transform: scale(1.01);
  transition: 0.8s;
}

.otherWorks__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 8px 0;
}

.otherWorks__visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0px 6px #00000010;
}

.otherWorks__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #282828cc 0%, #E6E6E633 62%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.otherWorks__visual::after {
  content: "View more";
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 1.3rem;
  color: var(--baseColor);
  letter-spacing: 0.02em;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.otherWorks__visual:hover::before,
.otherWorks__visual:hover::after {
  opacity: 1;
}

.otherWorks__visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

.otherWorks__visual:hover img {
  transition: 0.6s;
  transform: scale(1.05);
}

@media screen and (min-width: 769px) {
  .detail__list dt {
    font-size: max(1.07142857143vw, 1.8rem);
  }

  .detail__list dd {
    font-size: max(0.8928571429vw, 1.5rem);
  }

  .otherWorks h3 {
    padding-left: 16px;
    font-size: 3rem;
  }

  .work__all {
    padding-right: 16px;
    font-size: 2.6rem;
  }

  .work__all::before {
    margin-right: 16px;
    width: 24px;
    height: 24px;
  }

  .otherWorks__group {
    gap: 22px;
  }
}

@media screen and (min-width: 1024px) {
  .section--detail {
    padding: 32px 24px 56px;
    width: max(45vw, 315px);
    margin-left: auto;
  }

  .mockUp {
    margin-top: 16px;
    width: 300px;
  }

  .mockUp--gp {
  width: 420px;
}


  .detail__link {
    margin-left: 8px;
    font-size: max(2.2619047619vw, 3.8rem);
    letter-spacing: 0.03em;
  }

  .detail__link::after {
    margin-left: 10px;
    width: 32px;
    height: 32px;
  }

  .detail__table {
    max-width: 1000px;
  }
}

/* ======================
footer
====================== */
.footer {
  background-color: var(--baseColor);
  background-color: #606060;
  color: #F3F3F3;
}

@media screen and (min-width: 1024px) {
  .footer {
    width: max(45vw, 315px);
    margin-left: auto;
  }

  .preview {
    max-width: none;
  }
}