@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Maru+Gothic:wght@700&display=swap");

.b-prochannel {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #1d1e21;
  text-align: center;
  padding-bottom: 160px;
}

.b-prochannel * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.b-prochannel span {
  font-size: inherit;
}

.b-prochannel img {
  max-width: 100%;
  height: auto;
}

.b-prochannel a {
  transition: all 0.3s;
  text-decoration: none !important;
}

.b-prochannel a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.fz12 {
  font-size: 12px !important;
}

.fz14 {
  font-size: 14px !important;
}

.fz15 {
  font-size: 15px !important;
}

.fz16 {
  font-size: 16px !important;
}

.fz18 {
  font-size: 18px !important;
}

.fz20 {
  font-size: 20px !important;
}

.fz22 {
  font-size: 22px !important;
}

.fz24 {
  font-size: 24px !important;
}

.mb1em {
  margin-bottom: 1em;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.bold {
  font-weight: bold;
}

.t-center {
  text-align: center;
}

.sp-only {
  display: none;
}

.bg-pink {
  background-color: #fff4f4;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #f4f4f4;
}

.title1 {
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  padding: 12px 10px 14px;
  background-color: #f57b6b;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 30px;
}

.title2 {
  font-size: 18px;
  font-weight: bold;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px dashed #f57b6b;
}

.title3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.orange {
  color: #ff9900;
}

.blue {
  color: #1584c5;
}

.pink {
  color: #f57b6b;
}

.green {
  color: #3d7a6b;
}

.box {
  border-radius: 10px;
  &.bg-pink,
  &.border-box,
  &.bg-gray {
    padding: 40px 10px 60px;
    .box__inner {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.border-box {
  border: 2px solid #f57b6b;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 440px;
  height: 80px;
  background-color: #1d1e21;
  color: #fff !important;
  border-radius: 4px;
  font-weight: bold;
  position: relative;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  margin: 0 auto;
}

.btn::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn:hover {
  text-decoration: none;
  opacity: 0.7;
}

.item-box {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 30px;
  .txt {
    text-align: left;
    .item-name {
      display: inline-flex;
      align-items: center;
      gap: 1em;
      margin-bottom: 0.5em;
    }
    .cate {
      display: block;
      font-size: 14px;
      line-height: 1;
      border-radius: 20px;
      padding: 4px 7px 5px;
    }
    dl {
      border-radius: 4px;
      padding: 20px;
      dd {
        ul {
          font-size: 14px;
          line-height: 1.4;
          display: flex;
          flex-direction: column;
          gap: 4px;
          li {
            text-indent: -1em;
            padding-left: 1em;
            &::before {
              content: "・";
            }
          }
        }
      }
    }
  }
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
  .notes-list__item {
    text-indent: -1em;
    padding-left: 1em;
    font-weight: 400;
    font-size: 14px;
    &::before {
      content: "※";
    }
  }
}

.system-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  .box {
    &.bg-white {
      padding: 30px 10px 40px;
    }
    &.border-box {
      padding: 15px 10px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.list-column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .b-prochannel {
    font-size: 15px;
    padding-bottom: 100px;
    text-align: left;
  }

  .b-prochannel span {
    font-size: inherit;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .title1,
  .title3,
  .fz24 {
    font-size: 20px;
    text-align: center;
  }

  .title2,
  .fz18 {
    font-size: 16px;
    text-align: center;
  }

  .box {
    border-radius: 5px;
    &.bg-pink,
    &.border-box,
    &.bg-gray {
      padding: 20px 10px 30px;
    }
  }

  .btn {
    max-width: 440px;
    height: 60px;
  }

  .btn::before {
    right: 20px;
  }

  .item-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 10px;
    .txt {
      .item-name {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 1em;
      }
      .cate {
        font-size: 12px;
      }
    }
  }

  .list-column2 {
    grid-template-columns: 1fr;
  }
}
