@charset "utf-8";
@import url("root.css");

/***************************************
-------------- NEWS --------------
***************************************/
.low_header {
  width: 100%;
  height: 65px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.phone_num {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 2% 0 0;
  a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1;
  }
  a:before {
    content: "";
    display: block;
    background: url(../img/svg/icn_tel_bl.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    width: clamp(1.8rem, 3vw, 2.3rem);
    height: auto;
    margin-right: 10px;
    aspect-ratio: 31/25;
    object-fit: cover;
  }
  .open_time {
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1.2;
  }
}

#pagetitle {
  width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: url(../img/main_bg.webp) no-repeat;
  background-position: center center;
  background-size: cover;
  h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
    color: var(--text-color);
    span {
      font-size: 0.75em;
      color: var(--text-color);
      margin-left: 1rem;
    }
  }
  h1::before {
    content: "";
    display: block;
    background: linear-gradient(#4545b0, var(--base-color01));
    width: 8px;
    height: calc(clamp(2.4rem, 4.5vw, 3.2rem) * 1.2);
    margin-right: 10px;
    margin-top: 2px;
  }
}

.desc {
  width: 100%;
  margin: clamp(25px, 5vw, 50px) auto;
  text-align: center;
}

/***************************************
-------------- パンくず --------------
***************************************/
#Breadcrumb {
  ol {
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
    width: 100%;
    margin: 2rem auto;
    padding-bottom: 2rem;
    border-bottom: 2px dotted #ddd;
    li {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      a {
        font-size: 1.4rem;
        line-height: 1;
      }
      a:hover {
        text-decoration: underline;
      }
      span {
        font-size: 1.4rem;
        line-height: 1;
      }
    }
    li:not(:last-of-type)::after {
      content: "≫";
      display: block;
      margin: 0 1rem;
      font-size: 1rem;
      line-height: 1;
    }
  }
}

/* =======================
  PC
======================== */
@media (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media (max-width: 1199px) {
}

/* =======================
  SP
======================== */
@media (max-width: 599.98px) {
  #pagetitle {
    margin-top: 65px;
  }
}
