@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
* {
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  box-sizing: border-box;
}
:root {
  --text-color: #333;
  --green: #1cb569;
  --orange: #f2a215;
  --shadow: 0 0 4px #aaa;
}
html {
  font-size: 62.5%; /* 1rem = 10px */
  color: var(--text-color);
}
body {
  margin: 0;
  background: #f5f5f5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
table {
  border-collapse: collapse;
}
.material-icons {
  padding-top: 0.1em;
  font-size: 1.5em;
}
.align-center {
  display: flex;
  align-items: center;
}

.title {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  height: 60px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-size: auto 60px;
  background-position: left bottom;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.searchtitle.title{
  padding-left:0;
}
  .title>span {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
  }
.search_count{
  font-weight: bold;
}
.search_count span{
  color: var(--orange);
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  max-width: 450px;
  height: 3.4em;
  margin: 20px auto;
  background: var(--green);
  border: none;
  border-radius: 1.6em;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 10px 50px;
}
  .header__logo {
    display: block;
    height: 100%;
    object-fit: contain;
  }
  .header__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 60%;
    max-width: 700px;
  }
    .header__item {
      color: var(--text-color);
      text-align: center;
      font-weight: bold;
      text-decoration: none;
    }
  .header__call {
    width: 15%;
    min-width: 18em;
    text-align: center;
  }
    .header__tel {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 2.4rem;
      font-weight: bold;
    }
    .header__time {
      font-size: 1.4rem;
    }
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    padding: 10px;
  }
    .header--top {
      position: absolute;
      top: 0;
    }
    .header__logo {
      display: block;
      height: 100%;
      object-fit: contain;
    }
    .header__list {
      display: none;
    }
    .header__call {
      display: none;
    }
}

.footer {
  clip-path: ellipse(90% 100% at 50% 100%);
  width: 100%;
  margin-top: 60px;
  background: var(--orange);
  color: #fff;
}
  .footer__inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
  }
    .footer__text {
      padding: 1.2em 0.6em;
      border-bottom: solid 2px #fff;
      text-align: center;
      font-weight: bold;
      line-height: 1.8;
    }
    .footer__head {
      width: 90%;
      margin-top: 1.2em;
      font-size: 3.2rem;
    }
    .footer__list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 1.4em 1.4em 2.8em;
    }
      .footer__block {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1.2em);
        gap: 1.2em;
      }
        .footer__item {
          display: inline-block;
          color: #fff;
          font-weight: bold;
          text-decoration: none;
        }
    .footer__copyright {
      padding: 0.2em 0;
      text-align: center;
    }