@charset "utf-8";
/* --------- tourists */
.tourists-info {
  max-width: 550px;
  margin: 40px auto;
  @media screen and (max-width: 767px) {
    padding: 0 20px;
  }
  h2 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 15px;
     @media screen and (max-width: 767px) {
      font-size: 20px;
      line-height: 1.8;
     }
  }
  .tourists-info__desc {
    display: flex;
    justify-content: center;
    span {
      background-color: var(--orange);
      color: var(--white);
      padding: 2px 10px;
      border-radius: 30px;
      font-weight: bold;
      line-height: normal;
      margin: 0 5px;
      @media screen and (max-width: 767px) {
        font-size: 12px;
      }
    }
  }
  .tourists{
    flex-direction: column;
    margin: 20px 0 40px;
    tr {
      width: 100%;
      .price {
        color: var(--orange);
        font-weight: bold;
        font-size: 20px;
        @media screen and (max-width: 767px) {
          font-size: 18px;
        }
      }
    }
  }
  .treatment-list {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
    .treatment-list__items {
      background-color: var(--beige);
      width: 49%;
      border-radius: 10px;
      text-align: center;
      padding: 20px;
      @media screen and (max-width: 767px) {
        width: 100%;
        margin-bottom: 15px;
      }
      img {
        width: 40px;
        height: auto;
        vertical-align: middle;
      }
      ul {
        text-align: left;
        width: fit-content;
        margin: 20px auto 0;
        li {
          list-style: inside;
        }
      }
    }
  }
}

.about {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  h2 {
    margin-bottom: 10px;
    &::after {
      display: none;
    }
    @media screen and (max-width: 767px) {
      text-align: center;
    }
  }
  .contents-inner {
    display: flex;
    align-items: center;
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
    .contents-inner__left {
      width: 49%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
      ol {
        @media screen and (max-width: 767px) {
          width: fit-content;
          margin: 0 auto;
        }
        li {
            display: flex;
            margin-bottom: 10px;
            align-items: anchor-center;
          img {
            width: 50px;
            margin-right: 10px;
          }
          span {
            color: var(--orange);
            font-size: 18px;
            font-weight: bold;
            display: inline-block;
            margin-right: 5px;
          }
        }
      }
    }
    .contents-inner__right {
      width: 49%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
    }
  }
}

.info {
  h2 {
    text-align: center;
    &::after {
      display: none;
    }
  }
  .contents-inner {
    max-width: 900px;
    padding-bottom: 0;
    .contents-inner-right {
      width: 50%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
    }
  }
}

.tourists-cv-area {
  text-align: center;
  font-weight: bold;
  padding: 40px 0 80px;
  @media screen and (max-width: 767px) {
    padding: 0 20px 40px;
  }
  a {
    background-color: var(--orange);
    padding: 15px 0px;
    max-width: 400px;
    display: block;
    margin: 20px auto 0;
    border-radius: 50px;
    color: var(--white);
    font-size: 20px;
    @media screen and (max-width: 767px) {
      font-size: 18px;
    }
    img {
      width: 20px;
      vertical-align: sub;
      margin-right: 8px;
    }
  }
}