@charset "UTF-8";
/* products下層用 */
.page-pankuzu-pro {
  background: #e1e1e1;
  color: #000;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  position: relative;
  padding-top: 30px;
}
.page-pankuzu-pro_inner {
  max-width: 100%;
  width: calc(100% - 9rem);
  margin: 8px auto;
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 4px;
  color: #000;
}
.page-pankuzu-pro li a , .page-pankuzu-pro li {
  display: flex;
  align-items: center;
  line-height: 1.5;
  letter-spacing: 0px;
  text-align: left;
  color: #000;
}
.page-pankuzu-pro a {
  color: #fff;
  text-decoration: underline;
  &:hover {
    opacity: .7;
  }
}
.page-pankuzu-pro li::after {
  content: ">";
  font-size: 2rem;
  width: 10px;
  margin: 0px 8px;
  color: #CC4B0A;
}
.page-pankuzu-pro li:not(:first-child):after {
  color: #FF6600;
}
.page-pankuzu-pro .pankuzu-last::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-pankuzu-pro {
    min-height: 40px;
    padding-top: 0;
  }
  .page-pankuzu-pro_inner {
    margin: 8px 5% 8px auto;
  }
  .page-pankuzu-pro li a, .page-pankuzu-pro li {
    font-size: 1.4rem;
  }
}
.pc_block {display: block;}
.sp_block {display: none;}

.cont_art .pc_block {display: inline-block;}

.cont_art {
  position: relative;
  padding: 64px 0 80px;
  background: #F0F0F0;
}
.cont_sec {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto 64px;
  h2 {
    font: bold 2.4rem / 35px var(--font-family-jp);
    letter-spacing: 4.8px;
    color: #FFF;
    background: transparent linear-gradient(270deg, #004B9E 0%, #00325E 100%) 0% 0% no-repeat padding-box;
    padding: 10px 0 10px 20px;
    max-width: 1024px;
    margin: 0 auto 20px;
  }
  .cont_sec--list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    li {
      position: relative;
      width: 100%;
      max-width: 502px;
      background: #D9E4F1;
      padding: 28px 32px;
      padding-left: 104px;
      &::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 28px;
        margin: auto;
      }
      &:nth-child(1)::before {
        background: url(../img/icon11.png)no-repeat center;
        background-size: contain;
        width: 62px;
        height: 62px;
      }
      &:nth-child(2)::before {
        background: url(../img/icon12.png)no-repeat center;
        background-size: contain;
        width: 62px;
        height: 62px;
      }
      a {
        position: relative;
        display: inline-block;
        color: var(--main-color);
        font-size: 2.4rem;
        font-weight: bold;
        border-bottom: 1px solid var(--main-color);
        padding: 0 34px 10px 8px;
        margin-bottom: 20px;
        width: 100%;
        line-height: 1.6;
        &::after {
          content: '';
          position: absolute;
          background: url(../img/link_after.webp)no-repeat center;
          background-size: contain;
          width: 26px;
          height: 26px;
          top: 0;
          bottom: 8px;
          right: 0;
          margin: auto;
        }
      }
      .indent_list {
        margin-left: 1em;
        p {
          font-weight: bold;
          line-height: 1.6;
          span {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--main-color);
            border-radius: 50%;
            margin-right: 0.5em;
          }
        }
      }
      .indent_list.wrap {
        display: flex;
        flex-wrap: wrap;
        p {
          min-width: 144px;
        }
      }
    }
  }
}
.cont_sec#sec_02 {
  .cont_sec--list {
    li {
      &:nth-child(1)::before {
        background: url(../img/icon21.png)no-repeat center;
        background-size: contain;
        width: 93px;
        height: 71px;
        left: 10px;
      }
      &:nth-child(2)::before {
        background: url(../img/icon22.png)no-repeat center;
        background-size: contain;
        width: 88px;
        height: 68px;
        left: 10px;
      }
    }
  }
}
@media screen and (max-width: 767px) {
  .cont_sec#sec_02 {
    .cont_sec--list {
      li {
        &:nth-child(1)::before {
          left: 4px;
        }
      }
    }
  }
}

.download_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  a {
    position: relative;
    width: 100%;
    max-width: 328px;
    display: flex;
    flex-direction: column;
    &:hover {opacity: 1;}
    &:hover img {
      transform: scale(1.06, 1.06);
      transition: .5s all;
    }
    .download_img {
      overflow: hidden;
      height: auto;
    }
    p:last-child {
      position: relative;
      width: 100%;
      height: 70px;
      background: #D9E4F1;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      &::after {
        content: '';
        position: absolute;
        background: url(../img/pdf.svg)no-repeat center;
        background-size: contain;
        width: 18px;
        height: 20px;
        top: 0;
        bottom: 0;
        right: 2em;
        margin: auto;
        @media screen and (max-width: 767px) {
          right: 2rem;
        }
      }
    }
    &:nth-child(2) {
      p:last-child::after {
        content: '';
        position: absolute;
        background: url(/common/img/excel.svg)no-repeat center;
        background-size: contain;
        width: 17px;
        height: 20px;
        top: 0;
        bottom: 0;
        right: 2em;
        margin: auto;
        @media screen and (max-width: 767px) {
          right: 2rem;
        }
      }
    }
  }
  a:nth-child(2) {
    p:last-child::after {
      right: 2.5em;
      @media screen and (max-width: 767px) {
        right: 2rem;
      }
    }
  }
  a:nth-child(3) {
    p:last-child::after {
      right: 4em;
      @media screen and (max-width: 767px) {
        right: 2rem;
      }
    }
  }
}

.faq_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  li {
    position: relative;
    width: 100%;
    max-width: 328px;
    background: #D9E4F1;
    padding: 28px 32px;
    a {
      position: relative;
      display: inline-block;
      color: var(--main-color);
      font-size: 2.4rem;
      font-weight: bold;
      border-bottom: 1px solid var(--main-color);
      padding-bottom: 10px;
      padding-right: 34px;
      margin-bottom: 20px;
      width: 100%;
      line-height: 1.6;
      &::after {
        content: '';
        position: absolute;
        background: url(../img/link_after.webp) no-repeat center;
        background-size: contain;
        width: 26px;
        height: 26px;
        top: 0;
        bottom: 8px;
        right: 0;
        margin: auto;
      }
    }
    p {
      font-weight: bold;
      line-height: 1.6;
    }
    .faq_indent {
      span {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: var(--main-color);
        border-radius: 50%;
        margin-right: 0.5em;
      }
    }
  }
}

.tel_block {
  position: relative;
  width: 100%;
  background: #D9E4F1;
  padding: 32px 5%;
  text-align: center;
  a {
    color: var(--main-color);
    font-size: 4.4rem;
    font-family: var(--font-family-en);
    font-weight: 900;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    span {
      color: #FFF;
      min-width: 72px;
      height: 32px;
      background: var(--sub-color);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
    }
  }
  p {font-weight: bold;}
}

@media screen and (max-width: 767px) {
  .page_visual {
    background-position: right;
  }
  .pc_block {display: none;}
  .cont_art .pc_block {display: none;}
  .sp_block {display: block;}
  .cont_art {
    padding-bottom: 10px;
  }
  .cont_sec {
    h2 {
      font: bold 2rem / 30px var(--font-family-jp);
      letter-spacing: 2px;
      padding: 10px 5%;
    }
    .cont_sec--list {
      flex-direction: column;
      li {
        padding-left: 88px;
        padding-right: 5%;
        &::before {
          left: 16px;
        }
        a {
          font-size: 2rem;
        }
        .indent_list {
          p {
            display: flex;
            span {
              position: relative;
              top: 0.6em;
            }
          }
        }
      }
    }
  }
  .download_list {
    flex-direction: column;
    align-items: center;
    a {
      p:last-child {
        height: auto;
        padding: 8px 5%;
      }
    }
  }
  .faq_list {
    flex-direction: column;
    align-items: center;
    li {
      padding: 28px 5%;
      a {
        font-size: 2rem;
      }
    }
  }

  .tel_block {
    a {
      font-size: 2.8rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0 10px;
      span {
        font-size: 1.6rem;
        min-width: 40px;
      }
    }
    p {
      text-align: left;
    }
  }
}