@charset "utf-8";

:root {
  --red: #d00;
  --blue: #00f;
  --cream: #ffe;
  --white: #fff;
  --black: #333;
  --gray: #ccb;
}

#business-hours {
  font-size: 16px;
  img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .block {
    display: block;
  }
  .lhx1 {
    line-height: inherit;
  }
  .lhx2 {
    line-height: 2;
  }
  .colorRed {
    color: var(--red);
  }
  .colorWhite {
    color: var(--white);
  }
  .colorBlue {
    color: var(--blue);
  }
  .colorBlack {
    color: var(--black);
  }
  .bgCream {
    background-color: var(--cream);
  }

  .schedule {
    margin-bottom: 10px;
    width: 100%;
    border-top: var(--gray) 1px solid;
    border-left: var(--gray) 1px solid;
    border-collapse: collapse;
    border-spacing: 0;
    th,
    td {
      padding: 5px;
      width: 10%;
      border-right: var(--gray) 1px solid;
      border-bottom: var(--gray) 1px solid;
      text-align: center;
    }
    th.time {
      padding: 14px 0;
      width: 14%;
      line-height: 18px;
    }
  }

  .information {
    margin: 0 auto 30px;
    padding: 10px;
    border: 3px solid var(--red);
    line-height: 1.4em;
    text-align: justify;
    font-size: 110%;

    .information_title {
      background: var(--red);
      color: var(--white);
      padding: 10px;
      margin: 0 auto 30px;
      text-align: center;
      font-size: 120%;
      font-weight: bold;
    }
    .information_content {
      .heading {
        font-weight: bold;
        color: var(--red);
      }
    }
  }
  p {
    margin: 0 5px 20px;
    line-height: 1.4;
    text-align: justify;
  }
  p.lastP {
    margin-bottom: 10px;
  }
}
/*PC*/
@media screen and (orientation: landscape) {
  .pc_show {
    display: block;
  }

  .sp_show {
    display: none;
  }

  #business-hours {
    .schedule {
      th,
      td {
        padding: 15px 0;
      }
      th.time {
        font-size: 100%;
      }
    }
    .information {
      padding: 20px;
      .information_title {
        font-size: 22px;
      }
      .information_content {
        font-size: 18px;
      }
    }
  }
}
/*SP*/
@media screen and (orientation: portrait) {
  .pc_show {
    display: none;
  }

  .sp_show {
    display: block;
  }
  #business-hours {
    .schedule {
      th.time {
        font-size: 80%;
      }
    }
  }
}
