@charset "utf-8";

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (min-width: 1181px) {
  /*　画面サイズが1024pxからはここを読み込む　*/
}

@media screen and (min-width: 821px) and (max-width: 1180px) {
  /*　画面サイズが768pxから1024pxまではここを読み込む　*/
}

@media screen and (min-width: 270px) and (max-width: 820px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  select,
  textarea,
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    padding: 10px;
    background: #fff;
    width: 100%;
  }
  .page-inner {
    width: 100%;
  }
  .front-box {
    gap: 1rem;
    flex-direction: column;
  }
  .front-box-title,
  .front-box-txt {
    width: 100%;
  }
  .front-time-txt th,
  .front-time-txt td {
    padding: 1rem 0;
  }
  .front-yoyaku-txt li {
    width: 100%;
  }
  .sp-navigation .menu-pc-menu-container {
    overflow-x: auto;
    white-space: nowrap;
  }

  .sp-navigation ul {
    display: inline-block;
    margin: 0;
    padding: 1rem 0 1rem 1rem;
  }

  .sp-navigation li {
    display: inline-block;
    margin-right: 2rem;
  }

}
