.bg-dotted {
  @media screen and (min-width: 768px) {
    padding-bottom: 24px;

  }

  padding-bottom: 32px;

  p {
    font-weight: bold;
    color: var(--navy-blue);
    font-size: 18px;

    @media screen and (min-width: 768px) {
      font-size: 22px;
    }
  }

  h2 {
    background: var(--navy-blue);
    width: max-content;
    margin: 0 auto -15px;
    position: relative;
    top: -25px;
    display: flex;
    height: 50px;
    align-items: center;
    color: #fff;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 50px;
    font-size: 18px;

    @media screen and (min-width: 768px) {
      font-size: 32px;
      top: -30px;
      height: 60px;
    }
  }

  margin-top: 100px;

  background-color: #e0f3fa;
  background-image: linear-gradient(-90deg, #fff 50%, transparent 50%),
  linear-gradient(#fff 50%, transparent 50%);
  background-size: 8px 8px;
  background-position: 0 0,
  4px 4px;
}

.dl {
  padding: 12px 16px;
  border-radius: 8px;

  dt {
    line-height: 1.4;
    font-size: 0.9em;
    margin-bottom: 8px;
    font-weight: bold;
  }

  dd {
    line-height: 1.6;
    font-size: 0.9em;
  }

  background: var(--pale-gray);
}

figure {

  figcaption {
    display: block;
    font-weight: normal !important;
    font-size: 12px;
    text-align: center;
  }
}

.js-expandImg {
  width: 100%;
}

.table {
  width: 100%;

  th,
  td {
    line-height: 1.4;
    text-align: left;

    small {
      display: block;
    }
  }

  @media screen and (max-width: 767px) {
    display: block;
    border: 1px solid var(--blue);
  }

  thead {
    th {
      font-size: 16px;
      border: none;
      background: var(--blue);
      color: #fff;
      width: 25%;

      &~th {
        border-left: 1px solid #fff;
      }
    }

    @media screen and (max-width: 767px) {
      display: none;
    }
  }

  tbody {
    vertical-align: top;

    @media screen and (max-width: 767px) {



      display: block;

      span {
        display: block;
      }

      th,
      td,
      tr {
        display: block;

      }



      th {
        background: var(--blue);
        color: #fff;
      }

      td:nth-child(2n + 1) {
        background: var(--pale-gray);
      }
    }

    th,
    td {
      border: none;

      @media screen and (min-width: 768px) {
        border-bottom: 1px solid var(--gray);

        span {
          display: none;
        }

        &:nth-child(2n) {
          background: var(--pale-gray);
        }
      }

    }
  }

}

.home-reason--facility {
  position: relative
}

.home-reason--facility__img {
  display: block
}

@media screen and (max-width: 767px) {
  .home-reason--facility__img {
    width: 150px;
    margin: 0 auto -34px
  }
}

@media screen and (min-width: 768px) {
  .home-reason--facility__img {
    right: 32px;
    bottom: -10px;
    position: absolute
  }
}

.home-reason--facility dt {
  border-bottom: 1px solid #aaa;
  margin-bottom: 8px;
  font-weight: bold
}

.home-reason--facility dl {
  display: flex;
  flex-direction: column;
  gap: 8px
}

@media screen and (min-width: 768px) {
  .home-reason--facility {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(3, auto)
  }
}

.home-reason--facility dd {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px
}

.box {
  color: #666;
  line-height: 1.6;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 0.9em;
  background: var(--pale-gray);

  @media screen and (min-width: 768px) {
    padding: 24px 32px;

  }

  &.caution {
    border: 1px solid #999;

    li::before {
      background: none;
      /* color: var(--blue); */
      border-radius: 0;
      content: '※';
      scale: .8;
    }
  }

  &.caution:not(ul) {
    padding-left: 24px;
    border: none;

    @media screen and (min-width: 768px) {
      padding-left: 32px;
    }

    li {
      font-size: .9em;
      text-indent: 0;
      padding-left: 32px;
      margin-left: 0;
      position: relative;

      &::before {
        left: 0;
        font-weight: normal;
        top: 0px;
        position: absolute;
        color: var(--blue);
        content: '※' counter(num);

      }
    }

  }
}

.service {
  dt {
    font-weight: bold;
    border-bottom: 1px solid #999;
    margin-bottom: 16px;
    padding-bottom: 4px;
  }

  ul li {
    margin-left: 0;
    text-indent: 0;
    display: flex;
    padding: 4px 8px;

    justify-content: space-between;

    &::before {
      content: none;
    }

    border-bottom: 1px solid var(--gray);

    color: var(--blue);

    &.none {
      color: #888;
    }
  }

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

      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
  }
}

.shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  li {
    margin: 0 !important;
    text-indent: 0 !important;
    width: 100%;

    display: grid;
    gap: 16px;
    grid-template-columns: 180px 1fr;

    p {
      font-size: 0.9em;
      line-height: 1.6;
    }

    h3 {
      background: none;
      padding: 0;
      margin-bottom: 8px;
      font-size: 16px;
      line-height: 1.4;

      &::after {
        content: none;
      }

      &+p {
        margin-top: 0;
      }
    }

    &::before {
      content: none !important;
    }
  }

  @media screen and (max-width: 767px) {
    li.wide {
      display: flex;
      flex-direction: column;
    }
  }

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

      &:not(.wide) {
        width: calc(50% - 12px);
      }
    }
  }
}

p.box {
  padding: 8px 16px;

  @media screen and (min-width: 768px) {
    padding: 16px 24px;
  }

  color: #333;
}

.l-cln>div>p:first-child,
.l-cln>p:first-child {
  margin-top: 0;
}

.c-contents p>small {
  line-height: 1.8;
  display: inline-block;
}
