@charset "utf-8";

@import "reset.css";
@import "var.css";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--base-textcolor);
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.header {
  padding: 24px 0;
  border-bottom: 2px solid var(--primary-color);

  .logo-group {
    margin: 0 auto;
    padding: 0 var(--side-paddingPC);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: var(--max-width);
    width: 100%;
    list-style: none;
    @media screen and (max-width: 768px) {
      padding: 0 var(--side-paddingSP);
    }
  }
  .logo-group__item {
    img {
      width: 100%;
      height: 25px;
    }
  }
}

.footer {
  padding: 24px 0;
  width: 100%;
  border-top: 1px solid var(--primary-color);
  background-color: var(--lightgray-bgcolor);
}
.footer__inner {
  margin: 0 auto;
  padding: 0 var(--side-paddingPC);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--max-width);
  @media screen and (max-width: 768px) {
    padding: 0 var(--side-paddingSP);
  }
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}


.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary-color);
  text-decoration: none;
  &:after {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin: 0;
    vertical-align: middle;
    background: url('/article/press/img/icon_arrow_blue.png') no-repeat 0 0;
    background-size: contain;
  }
  &:visited {
    color: var(--primary-color);
  }
  &:active {
    color: var(--primary-color);
  }
  @media (any-hover: hover) {
    &:hover {
      text-decoration: underline;
      img {
        opacity: 0.6;
      }
    }
  }
  &[target="_blank"]::after {
    margin: 0 0 0 0.5em;
    width: 1.5em;
    height: 1.5em;
    background: url('/article/press/img/icon_window_blue.png') no-repeat center;
  }
  img {
    width: auto;
  }
}

.link-anchor {
  display: inline;
  color: var(--base-textcolor);
  text-decoration: none;
  @media (any-hover: hover) {
    &:hover {
      text-decoration: underline;
    }
  }
  &:visited {
    color: var(--base-textcolor);
  }
  &:active {
    color: var(--base-textcolor);
  }
}


.main {
  margin: 0 auto;
  padding: 0 0 120px;
  max-width: var(--max-width);
  width: 100%;
}

.hero {
  margin: 32px auto 0;
  padding: 0 var(--side-paddingPC);
  max-width: var(--max-width);
  width: 100%;
}

.heading__lv1 {
  margin-top: 40px;
  font-size: 48px;
  line-height: 1.7;
  font-weight: 700;
}

.heading__lv2 {
  margin: 120px 0 56px;
  padding-bottom: 8px;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: solid 4px var(--primary-color);
}

.heading__lv3 {
  margin: 48px 0 24px;
  padding: 0 0 2px 16px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  padding: 0 0 2px 16px;
  border-left: 8px solid var(--primary-color);
}

.heading-number {
  counter-reset: h3-number;
  .heading__lv3 {
    padding: 0;
    border: none;
    &.-number {
      display: flex;
      gap: 12px;
      &::before {
        counter-increment: h3-number;
        content: counter(h3-number)".";
        display: inline-block;
        font-weight: 700;
        color: #000;
      }
    }
  }
}


.heading__lv4 {
  margin: 48px 0 24px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

.heading__lv2 + .heading__lv3 {
  margin: 32px 0 24px;
}

.text {
  margin-top: 16px;
  &:first-of-type {
    margin-top: 0;
  }
}

.text__lead {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.5;
  &:first-of-type {
    margin-top: 0;
  }
}

.block-group {
  padding: 0 var(--side-paddingPC);
  & > .text__lead {
    margin-top: 48px;
  }
  .block-toc {
    margin: 80px auto 0;
    padding: 24px 8px 0;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid var(--gray-bgcolor);
    border-bottom: 1px solid var(--gray-bgcolor);

    .block-toc__title {
      position: relative;
      padding-bottom: 10px;
      font-size: var(--fontsize-24);
      font-weight: 700;
      color: var(--primary-color);
      /* text-align: center; */
      &::before {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 2px;
        content: '';
        border-radius: 9999px;
        background: var(--gray-bgcolor);
      }
    }
    .block-list {
      margin: 40px 0 ;
      padding: 0 24px;
    }
    .link-anchor {

    }
  }
  .block-list {
    margin: 16px auto 0;
    list-style: none;
    &.-number {
      counter-reset: list-number;
      .block-list__item {
        display: flex;
        counter-increment: list-number;
        &::before {
          content: counter(list-number)".";
          display: inline-block;
          font-weight: 700;
          color: #000;
          margin-right: 10px;
        }
      }
    }
    &.-circle {
      .block-list__item {
        position: relative;
        display: flex;
        align-content: flex-start;
        padding-left: 24px;
        &::before {
          position: absolute;
          left: 0;
          top: 9px;
          content: '';
          width: 8px;
          height: 8px;
          border-radius: 9999px;
          background-color: var(--base-textcolor);
        }
      }
    }
  }
  .block-list__item {
    margin-top: 16px;
    &:first-of-type {
      margin-top: 0;
    }
  }
  .block-image {
    margin: 40px auto 0;
    text-align: center;
    img {
      max-width: 100%;
      width: auto;
      height: auto;
    }
    .block-image__caption {
      margin-top: 16px;
      text-align: center;
    }
    &.--left {
      text-align: left;
      .text-link {
        margin-left: 20px;
      }
    }
  }
  .block-table {
    margin: 40px auto 0;
    text-align: center;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    th {
      background-color: var(--gray-bgcolor);
    }
    th,
    td {
      padding: 16px;
      border: 1px solid var(--glay-bordercolor);
      text-align: left;
    }
    .block-table__caption {
      margin-top: 16px;
      text-align: center;
    }
  }

  .block-colmns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    &.-colomn2 {
      .case-study__content,
      .case-study__image{
        width: calc((100% - 24px) / 2);
      }
    }
    &.-colomn3 {
      .product-card__item {
        width: calc((100% - 24px * 2) / 3);
      }
    }
  }

  .product-card {
    margin: 40px 0 0;
    list-style: none;
  }
  .product-card__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    .product-card__image {
      order: 1;
      img {
        width: 100%;
        height: auto;
      }
    }
    .product-card__content {
      order: 2;
    }
    .product-card__title {
      font-size: 24px;
      line-height: 1.4;
      font-weight: 700;
    }
    .product-card__text {
      margin-top: 16px;
    }
    .text-link {
      margin-top: 16px;
    }
  }
  .case-study {
    margin: 48px 0 0;
    .case-study__image {
      img {
        width: 100%;
        height: auto;
      }
    }
    .heading__lv3 {
      margin-top: 0;
    }
  }
}

.block-group.-full {
  padding: 0;
}

.contact {
  margin-top: 120px;
  padding: 40px;
  width: 100%;
  background-color: var(--lightgray-bgcolor);
  /* border: 2px solid var(--primary-color); */
  .contact__title {
    position: relative;
    margin-bottom: 48px;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    border: none;
    color: var(--primary-color);
    &::before {
      position: absolute;
      bottom: 0;
      left: calc(50% - 40px);
      width: 80px;
      height: 5px;
      content: '';
      border-radius: 9999px;
      background: var(--accent-color);
    }
  }
  .contact__button {
    display: block;
    margin: 40px auto 0;
    padding: 16px;
    font-weight: bold;
    color: var(--primary-color);
    background-color: var(--white-color);
    border-radius: 3em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 6px 3px #e3e3e3;
    width: 100%;
    max-width: 400px;
    transition: .2s all;
    border: 2px solid var(--primary-color);
  }
  @media (any-hover: hover) {
    .contact__button:hover {
      border: 2px solid var(--white-color);
      background-color: var(--primary-color);
      color: var(--white-color);
    }
  }
}

.-text-center {
  text-align: center;
}

@media screen and (max-width: 768px) {

  .heading__lv1 {
    margin-top: 48px;
    font-size: 48px;
    line-height: 1.7;
  }

  .heading__lv2 {
    margin: 100px 0 48px;
    padding-bottom: 8px;
    font-size: 32px;
    line-height: 1.5;
  }

  .heading__lv3 {
    margin: 48px 0 24px;
    font-size: 24px;
    line-height: 1.4;
  }
  .heading__lv4 {
    margin: 48px 0 24px;
    font-size: 20px;
    line-height: 1.4;
  }

  .hero {
    padding: 0 var(--side-paddingSP);
  }
  .block-group {
    padding: 0 var(--side-paddingSP);
    .product-card__item {
      .product-card__title {
        font-size: 20px;
        line-height: 1.4;
      }
    }
    .block-table__wrap {
      overflow-x: scroll;
    }
    .block-table {
      min-width: 768px;
    }
    .block-colmns {
      &.-colomn2 {
        .case-study__content,
        .case-study__image{
          width: 100%;
        }
      }
      &.-colomn3 {
        &.product-card {
          gap: 48px 24px;
        }
        .product-card__item {
          gap: 24px;
          width: calc((100% - 24px) / 2);
        }
      }
    }
  }

}

@media screen and (max-width: 480px) {
  .block-group {
    .block-colmns {
      &.-colomn3 {
        .product-card__item {
          width: 100%;
          .product-card__image {
            order: 2;
          }
          .product-card__content {
            order: 1;
          }
        }
      }
    }
  }

}