@charset "UTF-8";
/* ==========================================================================
   トップページ汎用レイアウト 初期セット
   - 特定案件名やブランド名は書かない
   - 必要に応じてクラス名・カラーは各案件ごとに上書きする前提
   ========================================================================== */
/* --------------------------------------
   News
   -------------------------------------- */
.news {
  background: #f0f9f8;
  border-radius: 0 0 0 60px;
  margin-bottom: 60px;
}
.news__ttl {
  margin: 0;
}
.news__in {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 60%;
}
.news__list li {
  padding: 10px 0;
}
.news__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.news__link::after {
  content: "";
  background: url(../assets/img/news/news_arrow.png);
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
}
.news__link:hover::after {
  transform: translateX(4px) translateY(-50%) scale(0.5);
}
.news__date {
  white-space: nowrap;
  margin-right: 40px;
  font-size: 15px;
  font-size: 1.5rem;
}
.news__title {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

/* --------------------------------------
   Products
   -------------------------------------- */
.products {
  margin-bottom: 40px;
  padding: 40px;
}
.products__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.products__ttl {
  margin: 0;
}
.products__list {
  margin: 0;
  padding: 0 0 0 10%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products__list::after {
  content: "";
  width: 31%;
  display: block;
}
.products__list li {
  width: 31%;
  margin-bottom: 40px;
}
.products__img {
  border: 1px solid #000;
  border-radius: 28px;
  background: #fff;
  display: block;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  overflow: hidden;
  justify-content: center;
  position: relative;
}
.products__img:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.products__img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  transform: translate(10px, 10px);
  -o-object-fit: cover;
     object-fit: cover;
}
.products__title {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.products__price {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
}
.products__price span {
  font-size: 18px;
  font-size: 1.8rem;
}

/* --------------------------------------
   Shop
   -------------------------------------- */
.shop {
  margin-bottom: 40px;
  padding: 40px;
}
.shop__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.shop__ttl {
  margin: 0;
}
.shop__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10%;
}
.shop__detail {
  width: 28%;
}
.shop__name {
  margin: 0 0 40px 0;
}
.shop__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8em;
}
.shop__img {
  margin: 0;
  padding-top: 40px;
}
.shop__img--2 {
  padding: 0;
}

/* --------------------------------------
   Contact
   -------------------------------------- */
.contact {
  margin-bottom: 40px;
  padding: 40px;
}
.contact__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contact__ttl {
  margin: 0;
}
.contact__txt {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
}
.contact__dotted {
  margin: 0;
  width: 32%;
  height: 4px;
  background-image: radial-gradient(circle, #bfbfbf 2px, transparent 2px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 14px 4px;
}/*# sourceMappingURL=index.css.map */