@charset "utf-8";

/* ============================================================
  # Extend
============================================================ */


/* ## xxxxページ
======================================== */

/*
.ex_Page__Block__Element_Key_Value {}
.ex_contact__form__btn_bg_blue {}

.Block__Element_Key_Value {}
.itemList__btn_color_red {}

.Block__Element_Value {}
.item__text_sm {}
 */


/* ## トップページ
======================================== */

.ex_home__visual {
  background-color: var(--gray-600);
  background-image: url("./img/home/visual.webp");
  background-position: center;
  background-size: cover;
  /* height: min(50vw, 530px); */
}

.ex_home__newsList {
  transform: translateY(-12.5%);
}
@media (min-width: 576px) {
  .ex_home__newsList {
    transform: translateY(-12.5%);
  }
}
@media (min-width: 768px) {
  .ex_home__newsList {
    transform: translateY(-25%);
    /* transform: translateY(-37.5%); */
  }
}
@media (min-width: 992px) {
  .ex_home__newsList {
    transform: translateY(-50%);
  }
}


/* 商品を検索する */
.ex_home__welcartSearch .widget_title {
  display: none;
}

.ex_home__welcartSearch ul.ucart_search_body {
  padding-left: 0;
  width: 100%;
}

.ex_home__welcartSearch form#searchform {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .ex_home__welcartSearch form#searchform {
    flex-direction: row;
  }
}


.ex_home__welcartSearch section.widget_welcart_search input.searchtext {
  display: block;
  width: auto;
  height: auto;
  padding: 0.375em 0.75em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  /* background-color: hsl(32 15% 95%); */
  background-color: var(--gray-100);
  background-clip: padding-box;
  border: 1px solid hsl(32 15% 80%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  flex: 1;
  /* outline: none; */
}
.ex_home__welcartSearch section.widget_welcart_search input.searchtext:focus {
  color: #222;
  background-color: #fff;
  border-color: hsl(32 70% 70%);
  outline: 0;
  box-shadow: 0 0 0 0.2rem hsl(32 100% 50% / 0.25);
}
.ex_home__welcartSearch section.widget_welcart_search input#searchsubmit {
  background-color: var(--primary);
  background-image: url("./img/common/search_icon.svg");
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 0.5em 16px 0.5em 32px;
  text-align: center;
  transition: background-color 0.15s, border 0.15s, color 0.15s, opacity 0.15s, filter 0.15s;
  user-select: none;
  vertical-align: middle;
  height: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .ex_home__welcartSearch section.widget_welcart_search input#searchsubmit {
    width: 12em;
  }
}
@media (hover: hover) {
  .ex_home__welcartSearch section.widget_welcart_search input#searchsubmit:hover {
    background-color: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    filter: brightness(1.1);
    text-decoration: none;
  }
}

/* 複合検索 */
.ex_home__welcartSearch .widget_welcart_search #searchsubmit + div {
  display: none;
}


/* 店舗案内 */
.ex_home__storePhoto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 1rem + 0.667vw, 1.5rem);
}
.ex_home__storePhoto__img01 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  aspect-ratio: 1100 / 820;
}
.ex_home__storePhoto__img02 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  aspect-ratio: 640 / 380;
}
.ex_home__storePhoto__img03 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  aspect-ratio: 640 / 380;
}
@media (min-width: 768px) {
  .ex_home__storePhoto {
    grid-template-columns: 1100fr 640fr;
  }
  .ex_home__storePhoto__img01 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .ex_home__storePhoto__img02 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .ex_home__storePhoto__img03 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}


/* ## お問い合わせページ
======================================== */

.ex_contact__formTable {
  display: grid;
}
.ex_contact__formTable__head {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0 0.25em 0;
}
.ex_contact__formTable__body {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
  padding: 0.25em 0 1em 0;
}
.ex_contact__formTable__head:nth-child(-n+2) {
  border-top: 1px solid var(--border-color);
}
@media (min-width: 768px) {
  .ex_contact__formTable {
    grid-template-columns: 15em 1fr;
  }
  .ex_contact__formTable__head {
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5em 1.5em 1.5em 0;
  }
  .ex_contact__formTable__body {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5em 0 1.5em 0;
  }
  .ex_contact__formTable__head:nth-child(-n+2),
  .ex_contact__formTable__body:nth-child(-n+2) {
    border-top: 1px solid var(--border-color);
  }
}


/* ## お知らせページ
======================================== */

.ex_newsList__post {
  border-bottom: 1px solid var(--border-color);
  display: grid;
  padding-top: clamp(1rem, 1rem + 0.667vw, 1.5rem);
  padding-bottom: clamp(1rem, 1rem + 0.667vw, 1.5rem);
}
.ex_newsList__post:first-of-type {
  border-top: 1px solid var(--border-color);
}

.ex_newsList__post__title {}
.ex_newsList__post__date {
  order: -1;
  margin-bottom: 0;
}
.ex_newsList__post__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
/* .ex_newsList__post__body p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 75%;
} */
