@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

span {
  color: inherit;
  font-weight: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 56px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #333333;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 1.3px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 900px) {
  body {
    font-size: 1.6rem;
  }
}

.hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

@media (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1240px;
    padding-inline: 30px;
  }
}
@media (min-width: 1280px) {
  .inner {
    max-width: 1300px;
    padding-inline: 60px;
  }
}

.header {
  height: 56px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 900px) {
  .header {
    position: relative;
    height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 5px;
  height: inherit;
}
@media (min-width: 900px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 18px;
  }
}

.header__logo {
  text-align: center;
}
.header__logo img {
  width: 140px;
}
@media (min-width: 900px) {
  .header__logo img {
    width: 200px;
  }
}
@media (min-width: 1280px) {
  .header__logo img {
    width: 288px;
  }
}

.header__logo-text {
  font-size: 1rem;
  line-height: 1.8;
  display: block;
}
@media (min-width: 900px) {
  .header__logo-text {
    font-size: 1.4rem;
    text-align: right;
  }
}

.header__content {
  display: none;
}
@media (min-width: 900px) {
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.header__banner {
  width: 240px;
}

.header__tel span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
}

.header__tel-number {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 3px;
}
@media (min-width: 1280px) {
  .header__tel-number {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
}

@media (min-width: 900px) {
  .header__contact-button {
    background: #ba2636;
    border: solid 1px #ba2636;
    color: #fff;
    font-weight: bold;
    width: 120px;
    line-height: 50px;
    text-align: center;
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header__contact-button:hover {
    background-color: #fff;
    color: #ba2636;
  }
}
@media (min-width: 1280px) {
  .header__contact-button {
    width: 150px;
  }
}

.header__drawer-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 40px;
  z-index: 50;
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 900px) {
  .header__drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  width: 30px;
  height: 2px;
  position: absolute;
  right: 12.5px;
  background-color: #333333;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 17px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 26px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 35px;
}
@media (min-width: 900px) {
  .drawer-icon__bar {
    display: none;
  }
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  padding-block: 56px 30px;
  padding-inline: 30px;
  top: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
  overflow-y: auto;
}
.drawer::before {
  background: #ffffff;
  content: "";
  opacity: 0.95;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.drawer.is-checked {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .drawer {
    display: none;
  }
}

.drawer__banner {
  max-width: 333px;
  margin: 0 auto;
}

.drawer__time {
  margin-block: 20px;
  text-align: center;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.drawer__link {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
.drawer__link:first-of-type {
  border-top: 1px solid #dcdcdc;
}
.drawer__link a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding: 11px 8px 11px 20px;
}
.drawer__link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #333333;
}

.drawer__toggle-wrapper {
  position: absolute;
  padding: 10px 10px 10px 25px;
  top: 10px;
  right: 10px;
  bottom: 0;
  width: 12px;
  height: 26px;
  display: block;
  border: 1px solid #333;
  border-radius: 2px;
  z-index: 100;
  cursor: pointer;
}
.drawer__toggle-wrapper.is-open .drawer__toggle:nth-of-type(2) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.drawer__toggle {
  width: 10px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer__toggle:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 8px;
}

.drawer__sub-list {
  display: none;
  padding: 10px 20px 20px;
}
.drawer__sub-list li {
  border-bottom: 1px dashed #dcdcdc;
}
.drawer__sub-list li:last-of-type {
  border-bottom: none;
}
.drawer__sub-list a {
  padding: 8px;
  font-weight: normal;
  font-size: 1.4rem;
}
.drawer__sub-list a::before {
  content: none;
}

.header__nav {
  display: none;
}
@media (min-width: 900px) {
  .header__nav {
    display: block;
    padding-bottom: 10px;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-link {
  border-left: 1px solid #dcdcdc;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  font-weight: bold;
  width: 100%;
}
.header__nav-link a {
  width: 100%;
  padding: 8px 5px;
  display: inline-block;
}
.header__nav-link:last-of-type {
  border-right: 1px solid #dcdcdc;
}
@media (min-width: 768px) {
  .header__nav-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header__nav-link:hover {
    background: #ba2636;
    color: #fff;
  }
}

.fv {
  margin-top: 56px;
}
@media (min-width: 900px) {
  .fv {
    margin-top: 0;
  }
}

.fv__bg {
  background: url(../img/products-bg.webp) repeat center center;
}

.fv__wrapper {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fv__wrapper {
    max-width: 1240px;
    padding-top: 12px;
  }
}
@media (min-width: 900px) {
  .fv__wrapper {
    padding-top: 20px;
  }
}
@media (min-width: 1280px) {
  .fv__wrapper {
    max-width: 1260px;
  }
}

@media (min-width: 768px) {
  .fv__inner {
    max-width: 1240px;
    padding-inline: 30px;
  }
}
@media (min-width: 1280px) {
  .fv__inner {
    max-width: 1260px;
    padding-inline: 40px;
  }
}

.fv-swiper-wrapper {
  padding-bottom: 33px;
}

@media (min-width: 900px) {
  .fv-swiper-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px !important;
  }
}
.fv-swiper-pagination .swiper-pagination-bullet-active {
  background: #666666;
}

.fv-swiper-button-next,
.fv-swiper-button-prev {
  display: none;
}
@media (min-width: 768px) {
  .fv-swiper-button-next,
  .fv-swiper-button-prev {
    display: block;
    width: 10px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .fv-swiper-button-next:hover,
  .fv-swiper-button-prev:hover {
    opacity: 0.7;
  }
}
@media (min-width: 900px) {
  .fv-swiper-button-next,
  .fv-swiper-button-prev {
    width: 14px;
  }
}
@media (min-width: 1280px) {
  .fv-swiper-button-next,
  .fv-swiper-button-prev {
    width: 18px;
  }
}
.fv-swiper-button-next::after,
.fv-swiper-button-prev::after {
  display: none;
}

.fv-swiper-button-prev {
  background: url(../img/fv-arrow-prev.png) no-repeat center center/contain;
}

.fv-swiper-button-next {
  background: url(../img/fv-arrow-next.png) no-repeat center center/contain;
}

.fv__banners {
  margin-top: 15px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .fv__banners {
    margin-top: 40px;
  }
}

.fv__banners-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .fv__banners-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .fv__banners-items a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .fv__banners-items a:hover {
    opacity: 0.8;
  }
}

.top-blog {
  background: url(../img/top-bg.webp);
  padding-block: 30px;
}
@media (min-width: 768px) {
  .top-blog {
    padding-block: 40px;
  }
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 2.5rem;
  }
}

.rss-blog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .rss-blog__items {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 2%;
  }
}

.rss-blog__item {
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
}
@media (min-width: 500px) {
  .rss-blog__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.rss-blog__image {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 5/3;
}
.rss-blog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
@media (min-width: 500px) {
  .rss-blog__image {
    aspect-ratio: 2/1;
    max-width: 220px;
  }
}
@media (min-width: 768px) {
  .rss-blog__image {
    min-width: 150px;
  }
  .rss-blog__image a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .rss-blog__image a:hover {
    opacity: 0.8;
  }
}
@media (min-width: 900px) {
  .rss-blog__image {
    aspect-ratio: 1/1;
  }
}

.rss-blog__content {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.rss-blog__published {
  color: #6e6e6e;
  font-weight: bold;
  font-size: 1.3rem;
}

.rss-blog__title a {
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
}
@media (min-width: 768px) {
  .rss-blog__title a {
    font-size: 1.5rem;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .rss-blog__title a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 1280px) {
  .rss-blog__title {
    font-size: 1.6rem;
  }
}

.rss-blog__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 900px) {
  .rss-blog__content-bottom {
    margin-top: 15px;
  }
}

.rss-blog__excerpt {
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 1.3;
}
@media (min-width: 1280px) {
  .rss-blog__excerpt {
    margin-top: 10px;
  }
}

.rss-blog__link {
  color: #ba2636;
  font-size: 1.4rem;
  text-align: right;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .rss-blog__link {
    transition: -webkit-text-decoration 0.4s;
    -webkit-transition: -webkit-text-decoration 0.4s;
    transition: text-decoration 0.4s;
    transition: text-decoration 0.4s, -webkit-text-decoration 0.4s;
    margin-top: 0px;
  }
  .rss-blog__link:hover {
    text-decoration: none;
  }
}

.rss-blog__button {
  margin-inline: auto;
  text-align: center;
}
.rss-blog__button a {
  display: inline-block;
  color: #ba2636;
  margin-top: 30px;
  border: 1px solid #ba2636;
  background-color: #fff;
  width: 220px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .rss-blog__button a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .rss-blog__button a:hover {
    background-color: #ba2636;
    color: #fff;
  }
}

.service {
  padding-block: 50px;
}

.service__text {
  text-align: center;
  margin-top: 10px;
}

.service__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 2%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .service__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service__link {
  background: url(../img/top-bg.webp);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px #bbb9ae;
          box-shadow: 0 0 30px #bbb9ae;
  position: relative;
  display: block;
  padding: 10px;
  height: 100%;
}
@media (min-width: 768px) {
  .service__link {
    padding: 14px;
  }
  .service__link::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .service__link:hover::after {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .service__link:hover .service__item-image::after {
    opacity: 1;
  }
}

.service__item-image img {
  border-radius: 3px;
}
@media (min-width: 768px) {
  .service__item-image {
    position: relative;
  }
  .service__item-image::after {
    position: absolute;
    content: "≫詳しく見る";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    z-index: 50;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}

.service__item-heading {
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
  font-size: 1.4rem;
}
@media (min-width: 900px) {
  .service__item-heading {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}

.more-button {
  background: #ba2636;
  color: #fff;
  font-size: 11px;
  border-radius: 30px;
  width: 110px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  margin-inline: auto;
  margin-top: 8px;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .more-button {
    display: none;
  }
}

.shop-info {
  background-color: #f4ece0;
  padding-block: 40px;
}
@media (min-width: 768px) {
  .shop-info {
    padding-block: 50px;
  }
}

.shop-info__wrapper {
  margin-top: 20px;
  padding: 15px 15px 22px;
  background-color: #fff;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .shop-info__wrapper {
    padding: 30px 30px 45px;
  }
}

.shop-info__text {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .shop-info__text {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) {
  .shop-info__text {
    font-size: 1.6rem;
  }
}

.shop-info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  gap: 45px;
}
@media (min-width: 768px) {
  .shop-info__items {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .shop-info__items {
    gap: 0;
  }
}

.shop-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .shop-info__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.shop-info__item-image {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}
.shop-info__item-image img {
  border-radius: 10px;
  -webkit-box-shadow: 15px 15px 0px 0 rgb(245, 242, 236);
          box-shadow: 15px 15px 0px 0 rgb(245, 242, 236);
}
@media (min-width: 768px) {
  .shop-info__item-image {
    padding-right: 25px;
  }
}

.shop-info__item-content {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}

.shop-info__item-heading {
  font-family: "Zen Maru Gothic", serif;
  text-shadow: 0 0 2px white;
  font-size: 3rem;
  margin-block: 20px;
  padding-left: 50px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}
.shop-info__item-heading::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 0;
  z-index: -1;
}
.shop-info__item-heading::after {
  content: "";
  position: absolute;
  width: 89%;
  height: 5px;
  bottom: -3px;
  left: 25px;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .shop-info__item-heading {
    font-size: 3.6rem;
  }
  .shop-info__item-heading::before {
    width: 110px;
    height: 110px;
  }
}

.shop-info__item-heading--pink::before {
  background: #ffd9d3;
}
.shop-info__item-heading--pink::after {
  background: #ffd9d3;
}

.shop-info__item-heading--orange::before {
  background: #ffe1bb;
}
.shop-info__item-heading--orange::after {
  background: #ffe1bb;
}

.shop-info__item-heading--green::before {
  background: #bee1c5;
}
.shop-info__item-heading--green::after {
  background: #bee1c5;
}

.shop-info__item-text {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.5rem;
  margin-top: 50px;
  line-height: 1.5;
  margin-top: 15px;
}
@media (min-width: 900px) {
  .shop-info__item-text {
    font-size: 1.7rem;
    margin-top: 50px;
    line-height: 1.6;
  }
}

.shop-info__item--revers .shop-info__item-image {
  padding-right: 0;
  margin-bottom: -15px;
}
.shop-info__item--revers .shop-info__item-image img {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 768px) {
  .shop-info__item--revers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.service__history {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.service__history img {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .service__history {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .service__history:hover {
    opacity: 0.7;
  }
}

.item-info {
  padding-block: 40px;
}
@media (min-width: 768px) {
  .item-info {
    padding-block: 50px;
  }
}

.item-info__items {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .item-info__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1%;
  }
}

.item-info__item {
  background: url(../img/top-bg.webp);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px #bbb9ae;
          box-shadow: 0 0 30px #bbb9ae;
  padding: 10px;
  height: 100%;
}
@media (min-width: 768px) {
  .item-info__item {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
}

.item-info__link {
  display: block;
}
.item-info__link img {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .item-info__link {
    padding: 8px 8px 12px;
    position: relative;
  }
  .item-info__link::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .item-info__link:hover::after {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .item-info__link:hover .item-info__image::after {
    opacity: 1;
  }
}

.item-info__image {
  position: relative;
}
.item-info__image::after {
  position: absolute;
  content: "≫詳しく見る";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 50;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.item-info__item-heading {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.8rem;
}

.top-banners a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.top-banners a:hover {
  opacity: 0.8;
}

.top-banners__bws {
  width: 100%;
  display: block;
  margin-top: 25px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .top-banners__bws {
    width: 70%;
  }
}

.footer {
  padding-top: 50px;
  background: #fff;
}

.footer__logo {
  text-align: center;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 40px;
    gap: 20px;
  }
  .footer__content a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer__content a:hover {
    color: #ba2636;
    text-decoration: underline;
  }
}
@media (min-width: 900px) {
  .footer__content {
    gap: 40px;
  }
}

.footer__nav span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #333333;
}
@media (min-width: 768px) {
  .footer__nav {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

.footer__nav-list {
  margin-top: 22px;
  width: 100%;
}
.footer__nav-list:first-child {
  margin-top: 0;
}

.footer__nav-link {
  font-weight: bold;
  border-bottom: 1px solid #333333;
  display: block;
  padding: 0 6px 6px;
  font-size: 1.5rem;
}

.footer__nav-link--row {
  border-bottom: none;
}

.footer__sub-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 15px;
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
}
.footer__sub-nav::before, .footer__sub-nav::after {
  position: absolute;
  content: "";
  background: #333333;
}
.footer__sub-nav::before {
  width: 1px;
  height: 10px;
  top: 5px;
  left: 10px;
}
.footer__sub-nav::after {
  width: 10px;
  height: 1px;
  top: 15px;
  left: 10px;
}

.footer__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__info-wrapper {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}
@media (min-width: 1280px) {
  .footer__info-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}

.footer__info {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer__info {
    line-height: 1.8;
  }
}
@media (min-width: 900px) {
  .footer__info {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
}

.footer__info-heading {
  font-weight: bold;
  font-size: 1.6rem;
}

.footer__info-text {
  margin-top: 1em;
}
.footer__info-text a {
  text-decoration: underline;
}

.footer__map iframe {
  width: 100%;
  aspect-ratio: 3/1;
}
@media (min-width: 900px) {
  .footer__map {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}
@media (min-width: 1280px) {
  .footer__map iframe {
    aspect-ratio: 1/1;
  }
}

.footer__map-link {
  color: #1a73e8;
  text-decoration: underline;
  font-size: 1.4rem;
}

.footer__copyright {
  border-top: 1px solid #dcdcdc;
  font-size: 1.2rem;
  text-align: right;
  padding-top: 14px;
  padding-bottom: 130px;
  color: #777;
}
@media (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 14px;
  }
}

.page-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background-color: transparent;
  border: 2px solid #ba2636;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .page-top {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .page-top:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@media (min-width: 768px) {
  .page-top {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 23px;
  }
}

.page-top.show {
  opacity: 1;
}

.fa-chevron-up {
  color: #ba2636;
}

.fix-sp {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 65px;
  z-index: 20;
}

.fix-sp__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fix-sp__contact {
  background: #ba2636;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  height: 65px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fix-sp__contact img {
  width: 20px;
  display: inline-block;
  margin-right: 5px;
}
.fix-sp__contact span {
  font-size: 1.2rem;
  font-weight: bold;
}
.fix-sp__contact span:first-child {
  font-size: 1.6rem;
}

.fix-sp__line {
  width: 50%;
  height: 65px;
  border: 3px solid #06c755;
  color: #06c755;
  border-bottom: none;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fix-sp__line img {
  width: 25px;
  display: inline-block;
  margin-right: 5px;
}
.fix-sp__line span {
  font-size: 1.2rem;
  font-weight: bold;
}
.fix-sp__line span:first-child {
  font-size: 1.6rem;
}

.fix-pc {
  position: fixed;
  bottom: 150px;
  right: 0;
  width: 100px;
  z-index: 20;
}

.fix-pc__line {
  border: 3px solid #06c755;
  color: #06c755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  width: 100px;
  height: 100px;
  font-weight: bold;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.fix-pc__line img {
  display: block;
  width: 45px;
}
.fix-pc__line:hover {
  opacity: 0.8;
}

.fix-pc__contact {
  margin-top: 10px;
  background: #ba2636;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100px;
  height: 110px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  gap: 3px;
  border-radius: 4px 0 0 4px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.fix-pc__contact img {
  width: 40px;
}
.fix-pc__contact span {
  margin-top: -3px;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: normal;
}

.breadcrumb__wrapper {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb__wrapper {
    display: block;
  }
}
@media (min-width: 900px) {
  .breadcrumb__wrapper {
    margin-top: 20px;
  }
}

.breadcrumb {
  color: #ba2636;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .breadcrumb a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .breadcrumb a:hover {
    opacity: 0.8;
  }
}

.archive-products__bg {
  background: url(../img/products-bg.webp) repeat center center;
  padding-top: 20px;
  padding-bottom: 60px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .archive-products__bg {
    margin-top: 11px;
    padding-top: 46px;
    padding-bottom: 80px;
  }
}

.bg {
  background: url(../img/products-bg.webp) repeat center center;
  padding-top: 20px;
  margin-top: 56px;
  padding-bottom: 60px;
}
@media (min-width: 900px) {
  .bg {
    padding-top: 46px;
    margin-top: 0;
    padding-bottom: 80px;
  }
}

.archive-products__wrapper {
  border-radius: 13px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
  padding: 17px 15px 50px;
}
@media (min-width: 768px) {
  .archive-products__wrapper {
    padding: 17px 30px 50px;
  }
}

.wrapper {
  border-radius: 13px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
  padding: 17px 15px 50px;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 17px 30px 50px;
  }
}

.archive-products__heading-bg {
  background: #f2f2f2;
}

.archive-products__heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 20px;
  gap: 15px;
}
@media (min-width: 768px) {
  .archive-products__heading-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 37px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.archive-products__heading {
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}
.archive-products__heading::before {
  position: absolute;
  content: "";
  background: url(../img/products-h1-deco.webp) no-repeat center center/contain;
  width: 33px;
  height: 33px;
  -webkit-transform: rotate(24.5deg);
          transform: rotate(24.5deg);
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .archive-products__heading {
    margin-right: 30px;
    padding-left: 48px;
  }
  .archive-products__heading::before {
    width: 43px;
    height: 43px;
  }
}

.archive-products__heading-tag {
  border-radius: 6px;
  background: #ba2636;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 5px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .archive-products__heading-tag {
    margin: 0;
    font-size: 1.9rem;
  }
}

.archive-products__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .archive-products__categories {
    gap: 26px;
  }
}

.archive-products__category {
  border-radius: 39px;
  background: #f2f2f2;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 4px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .archive-products__category {
    padding: 12px 15px;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .archive-products__category img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .archive-products__category:hover {
    color: #666666;
  }
  .archive-products__category:hover img {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}

.archive-products__search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 15px;
}
@media (min-width: 768px) {
  .archive-products__search-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.archive-products__sort-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.archive-products__count {
  font-size: 1.3rem;
}

.archive-products__sort-form {
  font-size: 1.3rem;
}
.archive-products__sort-form select {
  border-radius: 20px;
  padding: 1px 7px;
  font-size: 1.2rem;
}

.archive-products__search-form {
  width: 220px;
}

.archive-products__search-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  background: #f8f8f8;
  overflow: hidden;
}
.archive-products__search-input-wrapper input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 15px 8px 20px;
  border: none;
  outline: none;
  background: #f8f8f8;
  width: 180px;
}
.archive-products__search-input-wrapper button {
  background: none;
  border: none;
  padding: 10px 12px 12px;
  cursor: pointer;
  color: #333;
}

.archive-products__items-heading-wrapper {
  padding: 14px 20px;
  border-radius: 5px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 900px) {
  .archive-products__items-heading-wrapper {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-section__heading {
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
}
.page-section__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/products-deco.png) no-repeat center center/contain;
  width: 26px;
  height: 21px;
}
@media (min-width: 900px) {
  .page-section__heading {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.archive-products__items-heading-text {
  font-size: 1.4rem;
  font-weight: 700;
}

.archive-products__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 500px) {
  .archive-products__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 15px;
  }
}
@media (min-width: 900px) {
  .archive-products__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
    gap: 35px 0;
  }
}

.archive-products__item {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .archive-products__item {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    padding-inline: 15px;
  }
  .archive-products__item:hover {
    opacity: 0.8;
  }
}

.custom-thumbnail {
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 325/225;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 900px) {
  .custom-thumbnail {
    aspect-ratio: 325/285;
  }
}

.archive-products__item-heading {
  font-size: 1.9rem;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
  margin-top: 17px;
}
.archive-products__item-heading::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #ba2636;
}

.archive-products__item-description {
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
  background: #f8f8f8;
  padding: 3px 7px;
  margin-top: 10px;
}

.archive-products__item-size {
  margin-top: 8px;
  font-size: 1.2rem;
}

.goods-item__price {
  text-align: right;
  color: #ba2636;
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 8px;
}

.goods-item__price-yen {
  font-size: 1.2rem;
  color: #333333;
}

.archive-products__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.credit-banner {
  margin-top: 20px;
}
@media (min-width: 900px) {
  .credit-banner {
    margin-top: 40px;
  }
}

.related {
  margin-top: 40px;
}
@media (min-width: 900px) {
  .related {
    margin-top: 60px;
  }
}

.related__heading {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: 700;
}

.related__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 19px;
}
@media (min-width: 768px) {
  .related__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.related__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.related__item span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
}
.related__item a span {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .related__item a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .related__item a:hover {
    opacity: 0.8;
  }
}

.single-related {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .single-related {
    padding-bottom: 70px;
  }
}

.delivery-history {
  background: #f2f2f2;
  padding-block: 47px;
}

.delivery-history__heading {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .single-products {
    padding-bottom: 20px;
  }
}

.single-products__line {
  background: #f2f2f2;
  height: 30px;
  width: 100%;
}

.single-products__heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-block: 15px;
  gap: 15px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-products__heading-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
@media (min-width: 768px) {
  .single-products__heading-wrapper {
    padding-block: 30px 20px;
  }
}

.single-products__heading-tag {
  border-radius: 6px;
  background: #ba2636;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 5px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .single-products__heading-tag {
    margin: 0;
    font-size: 1.9rem;
  }
}

.single-products__heading {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  position: relative;
  padding-left: 33px;
  line-height: 1.7;
}
.single-products__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/products-deco.png) no-repeat center center/contain;
  width: 26px;
  height: 21px;
}

.single-products__description {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 12px;
	line-height:2;
}

.single-products__price {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 10px;
}
.single-products__price span {
  font-weight: 700;
  font-size: 2.8rem;
  color: #ba2636;
  margin-left: 5px;
  margin-right: 2px;
}

.splide {
  margin-top: 23px;
  overflow: hidden;
}

.splide__list {
  width: 100%;
}

.splide__slide {
  width: 100%;
  max-height: 480px;
  text-align: center;
}
.splide__slide img {
  border-radius: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.splide__arrow {
  background: #ba2636;
  opacity: 1;
  width: 60px;
  height: 60px;
}
.splide__arrow:disabled {
  cursor: default;
  opacity: 0.6;
}
.splide__arrow svg {
  display: none;
}
@media (min-width: 768px) {
  .splide__arrow {
    width: 86px;
    height: 86px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}

.splide__arrow--next {
  right: -3rem;
}
.splide__arrow--next::after {
  position: absolute;
  content: "";
  background: url(../img/splide-right.svg) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .splide__arrow--next {
    right: -4rem;
  }
  .splide__arrow--next::after {
    width: 25px;
    height: 25px;
    left: 15px;
  }
}

.splide__arrow--prev {
  left: -3rem;
}
.splide__arrow--prev::after {
  position: absolute;
  content: "";
  background: url(../img/splide-left.svg) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .splide__arrow--prev {
    left: -4rem;
  }
  .splide__arrow--prev::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
}

.thumbnails-container {
  width: 100%;
  overflow-x: auto;
  margin: 25px auto 0;
  scrollbar-width: none;
}
.thumbnails-container::-webkit-scrollbar {
  display: none;
}

.thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  gap: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; /* コンテンツの幅に合わせる */
  min-width: 100%; /* 最低でも親要素の幅 */
}
@media (min-width: 768px) {
  .thumbnails {
    gap: 10px;
  }
}

.thumbnail {
  overflow: hidden;
  list-style: none;
  cursor: pointer;
  width: calc((100vw - 30px) / 4);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; /* 伸縮しない */
  padding-bottom: 15px;
}
.thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.thumbnail.is-active {
  position: relative;
}
.thumbnail.is-active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background: #ba2636;
}
@media (min-width: 768px) {
  .thumbnail {
    width: calc((100vw - 40px) / 5); /* 5枚分の幅（画面幅からマージンを引いて5で割る） */
    max-width: 200px; /* 最大幅を制限（必要に応じて調整） */
  }
}

.single-products__content {
  margin-top: 57px;
}

.single-products__content-heading {
  font-size: clamp(1.9rem, 2.1vw, 2.4rem);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.single-products__content-heading::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #ba2636;
}
@media (min-width: 768px) {
  .single-products__content-heading {
    padding-bottom: 15px;
  }
}

.single-products__content-block-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
@media (min-width: 900px) {
  .single-products__content-block-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .single-products__content-block-wrapper {
    gap: 40px;
  }
}

/* .single-products__content-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
} */
.single-products__content-block.left {
  width:60%;
}
.single-products__content-block.right {
  width:40%;
}
@media (max-width: 768px) {
.single-products__content-block.left {
  width:100%;
}
.single-products__content-block.right {
  width:100%;
}
}
.single-products__good-points-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ba2636;
}
@media (min-width: 768px) {
  .single-products__good-points-heading {
    font-size: 2.1rem;
  }
}

.single-products__good-points-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 11px;
}
@media (min-width: 500px) {
  .single-products__good-points-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

.single-products__good-points-item {
  background: #ba2636;
  border-radius: 6px;
  text-align: center;
  padding: 9px 40px 9px;
}
@media (min-width: 500px) {
  .single-products__good-points-item {
    padding: 7px 5px 9px;
  }
}

.single-products__good-points-item-heading {
  font-weight: 700;
  color: #ba2636;
  font-size: 1.5rem;
  border-radius: 15px;
  background: #fff;
  padding: 3px;
  line-height: 1.5;
}

.single-products__good-points-content {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 7px;
}
@media (min-width: 900px) {
  .single-products__good-points-content {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .single-products__good-points-content {
    font-size: 1.6rem;
  }
}

.single-products__sect {
  border-radius: 6px;
  background: #fbf5f1;
  margin-top: 22px;
  padding: 9px 13px;
}

.single-products__sect-heading {
  border-radius: 4px;
  background: #ba2636;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 3px 8px;
}

.single-products__sect-content {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 7px;
	line-height:1.7;
}

.sect-item {
  display: inline-block;
}

.single-products__size {
  margin-top: 20px;
}
.single-products__size table {
  border-collapse: collapse;
  width: 100%;
}
.single-products__size th,
.single-products__size td {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid #e2e2e2;
}
.single-products__size th {
  background: #fbf4f1;
  padding: 8px;
}
.single-products__size th:first-child {
  width: 80%;
}
.single-products__size td {
  padding: 16px 5px;
}
@media (min-width: 768px) {
  .single-products__size th,
  .single-products__size td {
    font-size: 1.5rem;
  }
  .single-products__size th:first-child {
    width: 70%;
  }
  .single-products__size td {
    padding: 16px;
  }
}
@media (min-width: 900px) {
  .single-products__size {
    margin-top: 0;
  }
  .single-products__size th,
  .single-products__size td {
    font-size: 1.3rem;
  }
}
@media (min-width: 1280px) {
  .single-products__size th,
  .single-products__size td {
    font-size: 1.5rem;
  }
}

.single-products__line-banner {
  margin-top: 35px;
  display: block;
}
@media (min-width: 768px) {
  .single-products__line-banner {
    margin-top: 70px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .single-products__line-banner:hover {
    opacity: 0.8;
  }
}

.single-products__point {
  background: #fbf5f1;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .single-products__point {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}

.single-products__point-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1280px) {
  .single-products__point-items {
    gap: 40px 30px;
  }
}

.single-products__point-item {
  border-radius: 12px;
  background: #fff;
  padding: 30px 20px 40px;
}
.single-products__point-item.full-width {
  width: 100%;
}
.single-products__point-item.half-width {
  width: 100%;
}
@media (min-width: 768px) {
  .single-products__point-item.half-width {
    width: 48%;
  }
}
@media (min-width: 1280px) {
  .single-products__point-item {
    padding: 30px 40px 50px;
  }
}

.single-products__point-heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.single-products__point-number {
  color: #ba2636;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.single-products__point-number span {
  font-size: clamp(2.5rem, 4vw, 5rem);
  margin-left: 5px;
}

.single-products__point-heading {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  margin-left: 14px;
}

.single-products__point-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .single-products__point-content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.single-products__point-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-products__point-content img {
  width: 100%;
  height: 100%;
}
.single-products__point-content p {
  margin-top: 14px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .single-products__point-content {
    margin-top: 20px;
  }
}

.renovation {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .renovation {
    margin-top: 45px;
  }
}

.renovation__heading {
  font-weight: bold;
  font-size: clamp(1.9rem, 2.9vw, 3.1rem);
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .renovation__heading {
    letter-spacing: 0.1em;
  }
}
@media (min-width: 900px) {
  .renovation__heading {
    letter-spacing: 0.15em;
  }
}

.renovation__image {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .renovation__image {
    margin-top: 25px;
  }
}

.renovation__news-text {
  color: rgb(255, 0, 0);
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .renovation__news-text {
    font-size: 2rem;
  }
}
@media (min-width: 1280px) {
  .renovation__news-text {
    font-size: 2.4rem;
  }
}

.renovation-introduction {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .renovation-introduction {
    margin-top: 50px;
  }
}

.renovation-introduction__heading {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .renovation-introduction__heading {
    font-size: 2rem;
  }
}

.renovation-introduction__message {
  color: #ba2636;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 5px;
}
@media (min-width: 900px) {
  .renovation-introduction__message {
    font-size: 1.8rem;
  }
}

.renovation-introduction__text {
  margin-top: 5px;
}

.renovation-process {
  margin-top: 50px;
}

.renovation-process__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  gap: 20px;
}
@media (min-width: 768px) {
  .renovation-process__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 900px) {
  .renovation-process__items {
    gap: 20px;
  }
}

.renovation-process__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.renovation-process__item a {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
}
.renovation-process__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.renovation-process__item-heading {
  margin-top: 10px;
}

.renovation-section__item-heading {
  font-weight: bold;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .renovation-section__item-heading {
    font-size: 1.8rem;
  }
}

.renovation-process__item-text {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .renovation-process__item-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (min-width: 900px) {
  .renovation-process__item-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .renovation-process__item-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.renovation-section__item-text {
  margin-top: 5px;
}

.renovation-case {
  margin-top: 50px;
}

.renovation-case__item {
  margin-top: 10px;
}
.renovation-case__item:not(:first-of-type) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .renovation-case__item:not(:first-of-type) {
    margin-top: 50px;
  }
}

.renovation-case__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .renovation-case__image-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.renovation-case__image-large {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.renovation-case__image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.renovation-case__image-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.renovation-case__image-small img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .renovation-case__image-small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.renovation-case__item-heading-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .renovation-case__item-heading-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.renovation-case__item-text {
  margin-top: 5px;
}

.renovation-part {
  margin-top: 50px;
}

.renovation-part__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .renovation-part__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.renovation-part__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.renovation-part__item a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.renovation-part__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.renovation-part__item-text {
  margin-top: 10px;
}

.archive-hidden {
  display: none;
}

.blog__heading {
  text-align: center;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .blog__heading {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.blog__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (min-width: 900px) {
  .blog__wrapper {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

@media (min-width: 900px) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.blog__title {
  color: #ba2636;
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
}
.blog__title::before {
  content: "";
  position: absolute;
  background: url(../img/blog-title-icon.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog__title::after {
  position: absolute;
  content: "";
  background: #dcdcdc;
  height: 1px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
@media (min-width: 768px) {
  .blog__title {
    font-size: 2rem;
  }
}

.blog__meta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 5px;
}
@media (min-width: 768px) {
  .blog__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.blog__published {
  font-size: 1.3rem;
  color: #777;
}

.blog__category {
  color: #ba2636;
  font-size: 1.2rem;
  border: 1px solid #ba2636;
  font-weight: bold;
  padding: 0 5px;
}

.blog__content {
  margin-top: 5px;
}
.blog__content a {
  color: #ba2636;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .blog__content a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .blog__content a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.blog__content p {
  margin-top: 1em;
}

.wp-block-image {
  margin-top: 15px;
}

.blog__button-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 10px;
  border-top: 1px solid #dcdcdc;
}
.blog__button-wrapper a {
  color: #ba2636;
  text-decoration: underline;
  font-weight: bold;
}
.blog__button-wrapper a:nth-child(2) {
  text-align: center;
}
.blog__button-wrapper a:nth-child(3) {
  text-align: right;
}
@media (min-width: 768px) {
  .blog__button-wrapper a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .blog__button-wrapper a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

@media (min-width: 900px) {
  .sidebar {
    width: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1280px) {
  .sidebar {
    width: 280px;
  }
}

.sidebar__item-heading {
  position: relative;
}
.sidebar__item-heading::after {
  position: absolute;
  content: "";
  background: #dcdcdc;
  height: 1px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.sidebar__item-new-list {
  margin-top: 10px;
}
.sidebar__item-new-list li {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
  padding-top: 10px;
}

.sidebar__item-new-published {
  display: block;
  font-size: 1.3rem;
}

.sidebar__item-new-link {
  color: #ba2636;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .sidebar__item-new-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sidebar__item-new-link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.sidebar__item-category {
  margin-top: 30px;
}

.sidebar__item-category-list {
  margin-top: 10px;
}
.sidebar__item-category-list li {
  position: relative;
  padding-left: 15px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
  padding-top: 10px;
}
.sidebar__item-category-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #333;
}

.sidebar__item-category-link {
  color: #ba2636;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .sidebar__item-category-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sidebar__item-category-link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.sidebar__item-monthly {
  margin-top: 30px;
}

.sidebar__item-monthly-list {
  margin-top: 10px;
}
.sidebar__item-monthly-list li {
  color: #ba2636;
  text-decoration: underline;
  position: relative;
  padding-left: 15px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
  padding-top: 10px;
}
.sidebar__item-monthly-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #333;
}
@media (min-width: 768px) {
  .sidebar__item-monthly-list li {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sidebar__item-monthly-list li:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.sidebar__item-monthly-more {
  text-decoration: underline;
  font-size: 1.4rem;
  margin-top: 5px;
}
.sidebar__item-monthly-more span {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .sidebar__item-monthly-more:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.blog__item:not(:first-of-type) {
  margin-top: 70px;
}

.blog-pagination {
  margin-top: 50px;
}
.blog-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .blog-pagination {
    margin-top: 70px;
  }
  .blog-pagination .nav-links {
    gap: 7px;
  }
}
.blog-pagination a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.blog-pagination a:hover {
  background: #ba2636;
  color: #fff;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid #ba2636;
  font-size: 1.5rem;
  color: #ba2636;
}
.page-numbers.current {
  background: #ba2636;
  color: #fff;
}
@media (min-width: 768px) {
  .page-numbers {
    font-size: 1.7rem;
    width: 36px;
    height: 36px;
  }
}

.temple {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .temple {
    margin-top: 30px;
  }
}

.temple__heading {
  font-weight: bold;
  font-size: clamp(1.9rem, 2.9vw, 3.1rem);
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .temple__heading {
    letter-spacing: 0.1em;
  }
}
@media (min-width: 900px) {
  .temple__heading {
    letter-spacing: 0.15em;
  }
}

.temple-message {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .temple-message {
    margin-top: 50px;
  }
}

.temple-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
@media (min-width: 900px) {
  .temple-message__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.temple-message__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.temple-message__images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.temple-case {
  margin-top: 50px;
}

.temple-case__sub-heading {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  margin-top: 10px;
}
.temple-case__sub-heading::before {
  content: "";
  position: absolute;
  background: url(../img/sub-heading-icon.png) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.temple-case__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  padding-bottom: 50px;
  gap: 30px;
}
@media (min-width: 900px) {
  .temple-case__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}

.temple-case__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 900px) {
  .temple-case__item a {
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
  }
  .temple-case__item a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.temple-case__item__text {
  margin-top: 5px;
}

.temple-case__item__description {
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.5;
}

.temple-case__item-heading {
  font-weight: bold;
  padding-bottom: 5px;
}

.staff__heading {
  font-weight: bold;
  font-size: clamp(1.9rem, 2.9vw, 3.1rem);
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .staff__heading {
    letter-spacing: 0.1em;
  }
}
@media (min-width: 900px) {
  .staff__heading {
    letter-spacing: 0.15em;
  }
}

.staff-section {
  margin-top: 30px;
}

.staff-section__text {
  margin-top: 8px;
}

.staff__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .staff__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
}

.staff__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.staff__item img {
  width: 100%;
}

.staff__item-text {
  margin-top: 5px;
}

.company-wrapper {
  margin-top: 30px;
}

.company__fv-heading {
  font-weight: bold;
  font-size: clamp(1.9rem, 2.9vw, 3.1rem);
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .company__fv-heading {
    letter-spacing: 0.1em;
  }
}
@media (min-width: 900px) {
  .company__fv-heading {
    letter-spacing: 0.15em;
  }
}

.company__fv-image {
  margin-top: 20px;
}

.company-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.company-nav li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .company-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.company-nav__link {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ba2636;
  border: 1px solid #ba2636;
  display: block;
  padding: 2px 10px 2px 24px;
  position: relative;
}
.company-nav__link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  display: block;
  top: 13px;
  left: 9px;
}
@media (min-width: 768px) {
  .company-nav__link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .company-nav__link:hover {
    opacity: 0.7;
  }
}

.company-steps {
  margin-top: 50px;
}

.company-steps__content {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 500px) {
  .company-steps__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .company-steps__content {
    gap: 10%;
  }
}

@media (min-width: 768px) {
  .company-steps__image {
    width: 150px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.company-steps__image-text {
  text-align: center;
}

.company-history {
  margin-top: 50px;
}

.company-history__content {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.company-history__content a {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
@media (min-width: 768px) {
  .company-history__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.company-history__table {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
.company-history__table table {
  width: 100%;
}
.company-history__table table,
.company-history__table td,
.company-history__table th {
  border: 1px solid #dcdcdc;
  border-collapse: collapse;
}
.company-history__table th {
  background: #e0ebaf;
  padding: 6px 10px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}
.company-history__table td {
  padding: 6px 10px;
}
@media (min-width: 768px) {
  .company-history__table th {
    width: 18%;
    min-width: 120px;
    padding: 6px 20px;
  }
  .company-history__table td {
    padding: 6px 20px;
  }
}
@media (min-width: 900px) {
  .company-history__table {
    width: 22%;
  }
}

.company-profile {
  margin-top: 50px;
}

.company-profile__table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 5px;
  padding-bottom: 10px;
}
.company-profile__table td,
.company-profile__table th {
  border: 1px solid #dcdcdc;
  border-collapse: collapse;
  display: block;
}
.company-profile__table th {
  background: #e0ebaf;
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}
.company-profile__table td {
  padding: 6px 10px;
}
@media (min-width: 768px) {
  .company-profile__table {
    padding-bottom: 20px;
  }
  .company-profile__table a {
    color: #ba2636;
    text-decoration: underline;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .company-profile__table a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .company-profile__table th,
  .company-profile__table td {
    display: table-cell;
  }
  .company-profile__table th {
    width: 25%;
    min-width: 120px;
    padding: 6px 20px;
  }
  .company-profile__table td {
    padding: 6px 20px;
  }
}

.company-profile__image-heading {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .company-profile__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .company-profile__items {
    gap: 30px;
  }
}

.company-profile__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company-profile__item img {
  margin-top: 10px;
}

.company-related {
  margin-top: 50px;
}

.company-related__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .company-related__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .company-related__items {
    gap: 30px;
  }
}

.company-related__item img {
  width: 100%;
}
.company-related__item iframe {
  width: 100%;
  aspect-ratio: 560/372;
}

.company-related__item-heading {
  font-weight: bold;
  margin-top: 5px;
}

.inquiry__fv-heading {
  font-weight: bold;
  font-size: clamp(1.9rem, 2.9vw, 3.1rem);
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .inquiry__fv-heading {
    letter-spacing: 0.1em;
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
@media (min-width: 900px) {
  .inquiry__fv-heading {
    letter-spacing: 0.15em;
  }
}

@media (min-width: 768px) {
  .inquiry__line-banner {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .inquiry__line-banner:hover {
    opacity: 0.7;
  }
}

.inquiry-form {
  margin-top: 50px;
}

.CF7_table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
.CF7_table label {
  font-size: 1.6rem;
  color: #333333;
}
.CF7_table input,
.CF7_table textarea {
  padding: 5px 10px;
}
.CF7_table input:focus,
.CF7_table textarea:focus {
  outline: 1px solid #333333;
  background: #fff;
}
.CF7_table textarea {
  height: 130px;
}
.CF7_table th,
.CF7_table td {
  display: block;
}
.CF7_table th {
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid #dcdcdc;
  padding-top: 10px;
}
.CF7_table th label {
  font-weight: bold;
}
.CF7_table td {
  padding-bottom: 10px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .CF7_table th,
  .CF7_table td {
    display: table-cell;
    border-top: 1px solid #dcdcdc;
  }
  .CF7_table th {
    padding: 20px 10px 20px 30px;
    width: 240px;
  }
  .CF7_table th label {
    font-weight: normal;
  }
  .CF7_table td {
    padding: 20px 30px 20px 10px;
    margin-top: 0;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}

.required {
  color: #f13748;
  font-weight: 500;
  display: inline-block;
  margin-left: 5px;
  line-height: 14px;
}
@media (min-width: 768px) {
  .required {
    margin-left: 8px;
  }
}

.wpcf7-form-control {
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  width: 100%;
  min-height: 40px;
}
@media (min-width: 768px) {
  .wpcf7-form-control {
    min-height: 50px;
  }
}

.form-note {
  font-size: 1.3rem;
  color: #f13748;
  line-height: 1.4;
  margin-top: 10px;
}

.postal-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.postal-search p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.postal-search p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.postal-search input {
  min-height: 45px;
  border: 1px solid #a0a0a0;
  width: 180px;
}
@media (min-width: 768px) {
  .postal-search p {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 900px) {
  .postal-search {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.postal-mark {
  font-size: 1.8rem;
  font-weight: bold;
}

.postal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.postal-wrapper p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-field {
  margin-top: 15px;
}
.address-field input {
  margin-top: 15px;
}

.search-btn {
  background: #ba2636;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .search-btn {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .search-btn:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.address-select {
  width: 180px;
  min-height: 50px;
}

.form-image-wrapper input {
  border: none;
}

.form-radio-wrapper .wpcf7-form-control {
  border: none;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.wpcf7-list-item input {
  vertical-align: 0px;
}

.contact-privacy {
  height: 160px;
  overflow-y: scroll;
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  padding: 5px 10px;
  background: #fff;
}
.contact-privacy p {
  font-size: 1.3rem;
  line-height: 1.5;
}

.postal-link {
  color: #ba2636;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .postal-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .postal-link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.cf7-accept-check {
  margin-top: 10px;
  text-align: center;
}
.cf7-accept-check .wpcf7-list-item-label {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .cf7-accept-check .wpcf7-list-item-label {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}
.cf7-accept-check label {
  font-weight: 700;
}
.cf7-accept-check a {
  text-decoration: underline;
  font-weight: 700;
}
.cf7-accept-check .wpcf7-form-control {
  border: none;
}
.cf7-accept-check input {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cf7-accept-check input:checked {
  background-color: #ba2636;
  border: #ba2636;
}
.cf7-accept-check input:checked::after {
  content: "";
  position: absolute;
  background: url(../img/check.webp) no-repeat center center/contain;
  top: 50%;
  left: 1.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
}

.wpcf7-list-item {
  margin: 0;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.wpcf7-submit {
  background: #ba2636;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.wpcf7-submit:disabled {
  background: #dcdcdc;
}
.wpcf7-submit:hover {
  opacity: 0.8;
}

.inquiry-form-links {
  text-align: center;
  font-size: 1.3rem;
}

.wpcf7-spinner {
  display: block;
}

.grecaptcha-badge {
  visibility: hidden;
}

.inquiry-thanks__text {
  margin-top: 20px;
  text-align: center;
}
.inquiry-thanks__text a {
  color: #ba2636;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .inquiry-thanks__text a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .inquiry-thanks__text a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.inquiry-thanks__button {
  margin-top: 50px;
}

.top-page-button a {
  background: #ba2636;
  color: #fff;
  font-weight: bold;
  padding: 10px 25px;
}
@media (min-width: 768px) {
  .top-page-button a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .top-page-button a:hover {
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .info {
    margin-top: 30px;
  }
}

.info-heading-01 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: bold;
  padding: 10px;
  position: relative;
  border-left: 5px solid #666;
  border-bottom: 1px solid #dcdcdc;
}

.info-heading-02 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.info-heading-02::before, .info-heading-02::after {
  content: "";
  background: #ba2636;
  height: 1px;
  width: 40px;
}
@media (min-width: 768px) {
  .info-heading-02::before, .info-heading-02::after {
    width: 100px;
  }
}

.info-heading-03 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: bold;
  background: #efefef;
  padding: 15px;
}

.info-heading-04 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: bold;
  padding: 10px;
  border-left: 5px solid #ba2636;
  border-bottom: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-section {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .info-section {
    margin-top: 60px;
  }
}
@media (min-width: 900px) {
  .info-section {
    margin-top: 70px;
  }
}

.info-image {
  margin-top: 12px;
  width: 100%;
  display: block;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .info-image {
    margin-top: 20px;
  }
}
@media (min-width: 900px) {
  .info-image {
    margin-top: 25px;
  }
}

.info-text {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .info-text {
    margin-top: 15px;
    line-height: 1.6;
  }
}
@media (min-width: 900px) {
  .info-text {
    margin-top: 20px;
  }
}

.info-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f5f55a));
  background: linear-gradient(transparent 60%, #f5f55a 60%);
  font-weight: bold;
}

.info-note {
  background: #f5f5f5;
  padding: 15px 10px;
}
.info-note a {
  font-weight: bold;
  color: #ba2636;
  text-decoration: underline;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .info-note {
    font-size: 1.6rem;
    padding: 15px 20px;
    line-height: 1.6;
  }
  .info-note:hover a {
    opacity: 0.8;
    text-decoration: none;
  }
}

.move__fv-image {
  width: 100%;
  display: block;
}

.move__banner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .move__banner-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.move__banner {
  display: block;
}

.move__credit-banner {
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .move__credit-banner img {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .move__image {
    width: 80%;
  }
}

.move__credit-banner-text {
  margin-top: 5px;
}

.move__heading-02 {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .move__flow-image {
    width: 60%;
  }
}

.move__flow-text {
  border: solid 2px #85a7b1;
  padding: 10px;
  font-weight: bold;
  max-width: 720px;
  background: #f9fdff;
  margin-top: 30px;
  border-radius: 10px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .move__flow-text {
    padding: 10px 20px;
    margin-top: 40px;
  }
}

.ihai__fv-image {
  margin-top: 20px;
}

.ihai__heading-02 {
  margin-top: 40px;
  font-size: 2rem;
}
@media (min-width: 900px) {
  .ihai__heading-02 {
    margin-top: 60px;
    font-size: 2.8rem;
  }
}

.ihai__section {
  margin-top: 40px;
}
.ihai__section:first-of-type {
  margin-top: 15px;
}
@media (min-width: 900px) {
  .ihai__section {
    margin-top: 50px;
  }
  .ihai__section:first-of-type {
    margin-top: 30px;
  }
}

.ihai__heading-price-wrapper {
  padding: 10px;
  position: relative;
  border-left: 5px solid #ba2636;
  border-bottom: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ihai__heading-price {
  font-size: 1.7rem;
  font-weight: bold;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .ihai__heading-price {
    font-size: 1.9rem;
  }
}
@media (min-width: 900px) {
  .ihai__heading-price {
    font-size: 2.1rem;
  }
}

.ihai__price {
  color: #ba2636;
  font-weight: bold;
  font-size: 1.7rem;
}
.ihai__price span {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .ihai__price {
    font-size: 1.9rem;
  }
}
@media (min-width: 900px) {
  .ihai__price {
    font-size: 2.1rem;
  }
  .ihai__price span {
    font-size: 1.6rem;
  }
}

.ihai__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .ihai__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .ihai__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
}
@media (min-width: 1280px) {
  .ihai__items {
    gap: 20px;
  }
}

.ihai__item {
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 25px #cfcfcf;
          box-shadow: 0 0 25px #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
}

.ihai__item-image {
  overflow: hidden;
  aspect-ratio: 237/190;
}
.ihai__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ihai__item-text {
  padding: 15px;
}

.ihai__item-category {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
}

.ihai__item-heading {
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
}

.ihai__products-text {
  margin-top: 40px;
}

.ihai__heading-03 {
  margin-top: 40px;
}

.ihai__heading-04 {
  margin-top: 30px;
  font-size: clamp(1.7rem, 2vw, 2rem);
}

.ihai__size-list-heading {
  font-weight: bold;
  margin-top: 30px;
}

.ihai__size-list-text {
  margin-top: 10px;
}

.ihai__size-list {
  background: #eee;
  display: inline-block;
  padding: 15px 30px 15px 40px;
  margin-top: 10px;
  border: solid 1px #b1b1b1;
  border-radius: 5px;
  list-style-type: disc;
}
.ihai__size-list li {
  font-weight: bold;
}

.ihai__table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
}
.ihai__table th,
.ihai__table td {
  display: block;
  border: 2px solid #fff;
  background-color: #f1e7e7;
  padding: 0.8em;
  width: 100%;
}
.ihai__table th {
  background-color: #ba2636;
  color: #fff;
  font-weight: bold;
  text-align: left;
}
.ihai__table td {
  padding: 1em;
}
@media (min-width: 900px) {
  .ihai__table th,
  .ihai__table td {
    display: table-cell;
    vertical-align: middle;
    padding: 1em;
  }
  .ihai__table th {
    width: 20%;
    min-width: 200px;
  }
}

.ihai__credit-banner,
.juzu__credit-banner {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
}
@media (min-width: 768px) {
  .ihai__credit-banner,
  .juzu__credit-banner {
    margin-top: 40px;
  }
}

.ihai__button,
.juzu__button {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .ihai__button,
  .juzu__button {
    margin-top: 60px;
  }
}

.juzu__fv-image {
  margin-top: 20px;
}

.juzu__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .juzu__info-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.juzu-info__content {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.juzu-info__heading {
  font-size: clamp(2.2rem, 2.7vw, 2.9rem);
  font-weight: bold;
}

.juzu-info__text {
  margin-top: 15px;
}
.juzu-info__text span {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .juzu-info__text {
    margin-top: 30px;
  }
}

.juzu-info__image {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.juzu__heading-02 {
  font-size: clamp(1.9rem, 2.4vw, 2.9rem);
}

.juzu__heading-03 {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .juzu__heading-03 {
    margin-top: 30px;
  }
}

.juzu-products__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 500px) {
  .juzu-products__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .juzu-products__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (min-width: 900px) {
  .juzu-products__items {
    gap: 25px;
  }
}
@media (min-width: 1280px) {
  .juzu-products__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.juzu-products__item {
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 25px #cfcfcf;
          box-shadow: 0 0 25px #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.juzu-products__item img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.juzu-products__item-body {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .juzu-products__item-body {
    padding: 10px;
  }
}
@media (min-width: 900px) {
  .juzu-products__item-body {
    padding: 15px;
  }
}

.juzu-products__item-heading {
  font-weight: bold;
  font-size: 1.6rem;
}
.juzu-products__item-heading span {
  font-size: 1.4rem;
  display: block;
}

.juzu-products__item-price {
  font-size: 2.1rem;
  color: #ba2636;
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
  vertical-align: bottom;
}
.juzu-products__item-price span {
  font-size: 1.2rem;
}

.juzu-products__sect-items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 500px) {
  .juzu-products__sect-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .juzu-products__sect-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (min-width: 900px) {
  .juzu-products__sect-items {
    gap: 25px;
  }
}
@media (min-width: 1280px) {
  .juzu-products__sect-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.juzu-products__sect-item {
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 25px #cfcfcf;
          box-shadow: 0 0 25px #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.juzu-products__sect-item img {
  aspect-ratio: 3/4;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.juzu-products__sect-item-text {
  padding: 15px;
  font-weight: bold;
  text-align: center;
}

.juzu__repair-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .juzu__repair-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.juzu-repair__text {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.juzu-repair__image {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.candle__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 900px) {
  .candle__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 50px;
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .candle__content-wrapper--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.candle__content {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

@media (min-width: 900px) {
  .candle__heading-02 {
    margin-top: 30px;
  }
}

.candle__content-text {
  margin-top: 20px;
}

.candle__image {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.candle-products__text {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

.candle-products__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 500px) {
  .candle-products__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .candle-products__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (min-width: 1280px) {
  .candle-products__items {
    gap: 25px;
  }
}

.candle-products__item {
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 25px #cfcfcf;
          box-shadow: 0 0 25px #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.candle-products__item img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.candle-products__item-body {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .candle-products__item-body {
    padding: 10px;
  }
}
@media (min-width: 900px) {
  .candle-products__item-body {
    padding: 15px;
  }
}

.candle-products__item-text {
  font-weight: bold;
  font-size: 1.6rem;
}
.candle-products__item-text span {
  font-size: 1.4rem;
  display: block;
}

.candle-products__item-price {
  font-size: 2.1rem;
  color: #ba2636;
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
  vertical-align: bottom;
}
.candle-products__item-price span {
  font-size: 1.2rem;
}

.candle-delivery__text {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

.candle-delivery__note {
  margin-top: 20px;
}

.candle__credit-banner {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
}
@media (min-width: 768px) {
  .candle__credit-banner {
    margin-top: 50px;
  }
}

.candle__button {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .candle__button {
    margin-top: 60px;
  }
}

.link-collection__text {
  font-size: 1.8rem;
  color: rgb(0, 100, 0);
  font-weight: bold;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .link-collection__text {
    font-size: 2.2rem;
  }
}

.link-collection__items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px 10px;
}
@media (min-width: 768px) {
  .link-collection__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .link-collection__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.link-collection__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.link-collection__item span {
  text-decoration: underline;
  color: rgb(0, 0, 205);
}
@media (min-width: 768px) {
  .link-collection__item {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .link-collection__item:hover {
    opacity: 0.8;
  }
  .link-collection__item:hover span {
    text-decoration: none;
  }
}

.helpful__text {
  color: rgb(75, 0, 130);
  font-weight: bold;
  font-size: 2rem;
  margin-top: 30px;
}

.helpful__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px 10px;
}
@media (min-width: 768px) {
  .helpful__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .helpful__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.helpful__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.helpful__item span {
  text-decoration: underline;
  color: rgb(0, 0, 205);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .helpful__item {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .helpful__item:hover {
    opacity: 0.8;
  }
  .helpful__item:hover span {
    text-decoration: none;
  }
}

.helpful__link {
  display: block;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .helpful__link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .helpful__link:hover {
    opacity: 0.8;
  }
}

.basic__image {
  padding-bottom: 16px;
  display: block;
}

.basic__line {
  color: rgb(221, 160, 221);
  font-size: clamp(1.2rem, 3vw, 3.4rem);
  margin-top: 15px;
  display: block;
}

.basic__heading {
  font-weight: bold;
  color: #fff;
  background-color: rgb(221, 160, 221);
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  display: inline-block;
  padding: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .basic__heading {
    margin-top: 50px;
  }
}

.basic__text span {
  background-color: rgb(255, 255, 0);
}

.basic__sub-heading {
  color: rgb(238, 130, 238);
  font-weight: bold;
  font-size: 2rem;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .basic__sub-heading {
    font-size: 2.2rem;
  }
}

.basic__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .basic__text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .basic__content {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}
@media (min-width: 1280px) {
  .basic__content {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
}

.basic__content-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 10px;
  text-align: center;
}

.basic__table {
  border-collapse: collapse;
  margin-inline: auto;
  margin-top: 20px;
}
.basic__table th {
  background: #00ffff;
  text-align: center;
}
.basic__table th,
.basic__table td {
  border: 2px solid gray;
  padding: 5px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .basic__table th,
  .basic__table td {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
}
@media (min-width: 900px) {
  .basic__table th,
  .basic__table td {
    font-size: 1.6rem;
  }
}

.basic__link {
  color: rgb(0, 0, 205);
  font-weight: bold;
  font-size: 2rem;
  margin-top: 30px;
  display: inline-block;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .basic__link {
    font-size: 2.4rem;
    margin-top: 50px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .basic__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.shop__image {
  padding-bottom: 16px;
  display: block;
}

.shop__line {
  color: rgb(255, 140, 0);
  font-size: clamp(1.2rem, 3vw, 3.4rem);
  margin-top: 15px;
  display: block;
}

.shop__list li {
  list-style: disc;
  margin-left: 30px;
}
@media (min-width: 768px) {
  .shop__list li {
    margin-left: 80px;
  }
}

.shop__heading {
  font-weight: bold;
  color: #fff;
  background-color: rgb(255, 165, 0);
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  display: inline-block;
  padding: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .shop__heading {
    margin-top: 50px;
  }
}

.shop__text span {
  background-color: rgb(255, 255, 0);
}

.shop__sub-heading {
  color: rgb(255, 140, 0);
  font-weight: bold;
  font-size: 2rem;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .shop__sub-heading {
    font-size: 2.2rem;
  }
}

.choose__image {
  padding-bottom: 16px;
  display: block;
}

.choose__line {
  color: rgb(221, 160, 221);
  font-size: clamp(1.2rem, 3vw, 3.4rem);
  margin-top: 15px;
  display: block;
}

.choose__heading-02 {
  font-weight: bold;
  background-color: rgb(221, 160, 221);
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  display: inline-block;
  padding: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .choose__heading-02 {
    margin-top: 50px;
  }
}

.choose__heading-03 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .choose__heading-03 {
    font-size: 2.4rem;
  }
}

.choose__heading-04 {
  color: rgb(128, 0, 128);
  font-weight: bold;
  font-size: 1.7rem;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .choose__heading-04 {
    font-size: 2rem;
  }
}

.choose__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .choose__text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.choose__content {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.choose__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.choose__word {
  border: 2px solid;
  margin-top: 20px;
}

.choose__word-heading {
  background-color: rgb(255, 140, 0);
  color: #fff;
  font-size: 2rem;
  display: inline-block;
  padding: 6px 10px;
}
@media (min-width: 768px) {
  .choose__word-heading {
    font-size: 2.4rem;
  }
}

.choose__word-text {
  padding: 10px;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .choose__word-text {
    font-size: 1.9rem;
  }
}

.choose__table {
  border-collapse: collapse;
  margin-top: 20px;
}
.choose__table th {
  text-align: left;
}
.choose__table td {
  text-align: center;
  vertical-align: middle;
}
.choose__table th,
.choose__table td {
  border: 1px solid gray;
  padding: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .choose__table th,
  .choose__table td {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}

.utensils__heading-03 {
  font-weight: bold;
  font-size: 1.7rem;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .utensils__heading-03 {
    font-size: 2.2rem;
  }
}

.utensils__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .utensils__text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 900px) {
  .utensils__text-wrapper {
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .utensils__text-wrapper {
    gap: 50px;
  }
}

.utensils__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.utensils__content-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .utensils__content-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .utensils__content-link img {
    max-height: 450px;
  }
  .utensils__content-link:hover {
    opacity: 0.7;
  }
}

.utensils__section {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .utensils__section {
    margin-top: 40px;
  }
}

.repair__text {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .repair__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 900px) {
  .repair__text {
    font-size: 2rem;
  }
}

.repair__list span {
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
}
.repair__list li {
  margin-top: 8px;
  list-style: disc;
  margin-left: 20px;
}
.repair__list a {
  color: #0000ff;
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .repair__list span {
    font-size: 2.4rem;
  }
  .repair__list a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    font-size: 2rem;
  }
  .repair__list a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

.repair__heading-02 {
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 4.4rem);
  color: #006400;
  text-align: center;
  padding-block: 15px;
}

.repair-orange {
  font-weight: bold;
  color: #ff8c00;
}

.repair-red {
  font-weight: bold;
  color: #ff0000;
}

.repair-green {
  font-weight: bold;
  color: #008000;
}

.repair__heading-03 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: bold;
  color: #b22222;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .repair__heading-03 {
    padding-top: 40px;
  }
}

.summer_pr__bunner {
    margin: 40px auto;
    max-width: 1240px;
    padding: 0 30px;
}
.archive-products__inner .summer_pr__bunner,
.renovation .summer_pr__bunner,
.temple .summer_pr__bunner{
    margin: 20px auto;
    padding: 0;
}
@media (max-width: 768px) {
.summer_pr__bunner {
	margin: 15px auto;
    padding: 0 15px;
}
}