:root {
  /* fonts */
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
}

body {
  font-family: var(--font-noto-sans-jp);
}

.sp {
  display: none;
}

.lp-section_title__white {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.lp-section_title__white p {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 21px;
}

.lp-section_title__white {
  color: #fff;
}

.lp-section_title__white .double-line {
  width: 212px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 2px 0;
}

.search-btn {
  display: block;
  width: 452px;
  height: 64px;
}

.search-btn img {
  width: 100%;
}

.price-table {
  width: 610px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 4px;
}

.price-table th,
.price-table td {
  padding: 8px 0;
  background-color: #fff;
  text-align: center;
  color: #585754;
  font-family: var(--font-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.price-table th.last,
.price-table td.last {
  width: 178px;
}

.price-table td.second {
  text-align: left !important;
  width: 124px;
  padding-left: 8px;
}

.price-table td.third {
  width: 206px;
}

.price-table__leftHead {
  background-color: #f2f9ff !important;
  width: 86px;
  vertical-align: middle;
  font-weight: 600 !important;
}

.price-table__topHead {
  background-color: #e3e2e2 !important;
  font-weight: 600 !important;
}

.price-table__center-full {
  width: 334px;
}

.price-table__note {
  color: #fff;
  font-family: var(--font-noto-sans-jp);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 24px;
}

/* footer top search */
.footer-top-search {
  background-color: #f2f9ff;
  display: flex;
  height: 128px;
  justify-content: center;
  align-items: center;
}

.footer-top-search__btn {
  padding: 56px 0;
}

.footer-top-search__btn .search-btn {
  margin: auto;
}

/* bread brumb */
.breadcrumb {
  display: flex;
  align-items: center;
  padding-top: 24px;
  margin-left: 80px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb ul li {
  margin-right: 40px;
  position: relative;
}

.breadcrumb ul li:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("https://develop-test.j-snao.com/wp-content/themes/makidume-center/images/icon/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: -30px;
  width: 20px;
  height: 25px;
}

.breadcrumb ul li:last-child:before {
  display: none;
}

.breadcrumb-link {
  color: #85837f;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  text-decoration: underline;
}

.breadcrumb-icon {
  margin: 0 12px;
}

.breadcrumb-normal {
  color: #85837f;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

/* page top title */
.page-top-title {
  color: #6d6b66;
  text-align: center;
  text-shadow: 0px 0px 20px rgba(255, 253, 253, 0.75);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #fff;
  font-family: "A-OTF Midashi Go MB31 Pr6N", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

/* slider */
.slide-arrow .prev-arrow {
  width: 40px !important;
  height: 40px !important;
}

/* ここから矢印カスタマイズ */
.price-slide .slick-arrow {
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.price-slide .slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}
.price-slide .prev-arrow {
  right: 90%;
}
.price-slide .next-arrow {
  left: 90%;
}

/* ページネーション */

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dbdad7;
  border-radius: 3px;
  color: #8a8985;
  font-family: var(--font-noto-sans-jp);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-right: 8px;
}

.page-numbers li:has(> .page-numbers.current) {
  background: #4a96dc;
  color: #fff;
}

.none-content {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #6d6b66;
  font-family: var(--font-noto-sans-jp);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

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

  .sp {
    display: block;
  }

  .lp-section_title__white {
    justify-content: space-between;
  }

  .lp-section_title__white p {
    font-size: 18px;
    margin: 0 9px;
  }

  .lp-section_title__white .double-line {
    width: 70px;
  }

  /* search btn */
  .search-btn {
    width: 342px;
    height: 48px;
  }

  .search-btn p {
    font-size: 16px;
  }

  .search-btn__icon {
    width: 44px;
    padding: 14px;
  }

  .search-btn__icon img {
    width: 16px;
    height: 16px;
  }

  /* price table */
  .price-table__wrapper {
    overflow-x: scroll;
  }

  /* breadcrumb */

  .breadcrumb {
    flex-wrap: wrap;
    padding-top: 16px;
    margin-left: 24px;
  }

  .breadcrumb-normal {
    width: 100%;
    margin-top: 8px;
  }

  /* page top title */
  .page-top-title {
    width: 100%;
    font-size: 32px;
    top: 60%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  /* footer top search */

  .footer-top-search__btn {
    padding: 20px 0 40px 0;
  }

  /* フッター追従ボタン */
  .bottom-follow-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 236px;
    height: 64px;
    background-color: #4a96dc;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    filter: drop-shadow(0px 0px 13px rgba(123, 123, 123, 0.5));
    border-radius: 10px 10px 0 0;
    z-index: 10;
  }

  .bottom-follow-btn img {
    width: 24px;
    height: 24px;
    margin-left: 4px;
  }

  .none-content {
    height: 25vh;
  }
}

/*   .page-top {
      background: url("<?php echo $image_path; ?>");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      width: 100%;
      height: 242px;
      position: relative;
      margin-top: 224px;
    }
  
    @media screen and (max-width: 767px) {
      .page-top {
        background: url("<?php echo $sp_image_path ? $sp_image_path : $image_path; ?>");
        background-position: center;
        background-size: cover;
        height: 196px;
        margin-top: 110px;
      }
    } */

.news .page-top {
  background: url(https://makizumecenter.com/wp-content/themes/makidume-center/images/news/top-image.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 242px;
  position: relative;
  margin-top: 224px;
}
.review .page-top {
  background: url(https://makizumecenter.com/wp-content/themes/makidume-center/images/review/top-image.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 242px;
  position: relative;
  margin-top: 224px;
}
.shops .page-top {
  background: url(https://makizumecenter.com/wp-content/themes/makidume-center/images/shop/top-image.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 242px;
  position: relative;
  margin-top: 224px;
}
