@charset "UTF-8";
/**********************************************************************************************
店舗検索
**********************************************************************************************/
.bl_shopEmergencyOuter {
  margin-top: 120px;
}

@media only screen and (max-width: 567px) {
  .bl_shopEmergencyOuter {
    margin-top: 60px;
  }
}

.bl_shopEmergencyList {
  border: 3px solid #d13d3d;
  padding: 20px;
}

.bl_shopEmergencyListItem {
  margin-top: 40px;
}

.bl_shopEmergencyListItem:first-of-type {
  margin-top: 0;
}

.el_shopEmergencyListItemTitle {
  font-size: 1.125rem;
  font-weight: bold;
  color: #d13d3d;
}

.el_shopEmergencyListItemText {
  font-size: 0.9375rem;
  margin-top: 8px;
}

.bl_shopSearchOuter {
  margin-top: -24px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 567px) {
  .bl_shopSearchOuter {
    margin-top: 20px;
  }
}

.bl_shopSearchWrapper {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media only screen and (max-width: 567px) {
  .bl_shopSearchWrapper {
    max-width: none;
  }
}

.bl_shopSearchInputWrapper {
  width: 285px;
  margin-right: 10px;
}

@media only screen and (max-width: 567px) {
  .bl_shopSearchInputWrapper {
    width: calc(100% - 115px);
  }
}

.bl_shopSearchInput {
  width: 100%;
  height: 40px;
  padding: 5px 5px 5px 34px;
  border: 1px solid #a4a4a4;
  border-radius: 3px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1) inset;
  background: url(/common/image/base/icon_form_search.svg) no-repeat left 11px center;
  background-size: 16px 16px;
  background-color: #fff;
}

.bl_shopSearchInput::placeholder {
  color: #999;
}

.bl_shopSearchInput:focus::placeholder {
  color: transparent;
}

.bl_shopSearchInput:focus::-webkit-input-placeholder {
  color: transparent;
}

.bl_shopSearchInput:focus::-moz-placeholder {
  color: transparent;
}

.bl_shopSearchInput:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.bl_shopSearchSubmitWrapper {
  width: 105px;
}

.bl_shopSearchSubmitBtnWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #1b1c25;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.bl_shopSearchSubmitBtnWrapper::before {
  position: absolute;
  content: "";
  z-index: 0;
  width: 140%;
  height: 100%;
  background: #00ac4d;
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition-duration: 0.3s;
}

@media only screen and (max-width: 567px) {
  .bl_shopSearchSubmitBtnWrapper::before {
    display: none;
  }
}

.bl_shopSearchSubmitBtnWrapper:hover::before {
  right: -20%;
}

.bl_shopSearchSubmitBtn {
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  border: none;
  letter-spacing: 1em;
  padding: 0;
  padding-left: 1em;
  background: none;
  z-index: 1;
  cursor: pointer;
}

.bl_shopSearchSubmitBtn:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #ff0;
  outline-offset: -2px;
}

.bl_shopSearchSubmitBtn:focus {
  background-color: #00ac4d;
}

.bl_shopGenreWrapper {
  margin-top: 40px;
}

.bl_shopGenreTitle {
  font-size: 1.625rem;
  font-weight: bold;
  margin-top: 53px;
}

.bl_shopGenreTitle:first-of-type {
  margin-top: 0;
}

.bl_shopGenreList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 13px;
}

.bl_shopGenreListItem {
  display: flex;
  width: 22.41%;
  margin-right: 3.45%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 567px) {
  .bl_shopGenreListItem {
    width: 100%;
    margin-right: 0;
  }
}

.bl_shopGenreListItem:nth-of-type(4n) {
  margin-right: 0;
}

.bl_shopGenreListItem:nth-child(4n+1):nth-last-child(-n+4),
.bl_shopGenreListItem:nth-child(4n+1):nth-last-child(-n+4) ~ li {
  margin-bottom: 0;
}

@media only screen and (max-width: 567px) {
  .bl_shopGenreListItem:nth-child(4n+1):nth-last-child(-n+4),
  .bl_shopGenreListItem:nth-child(4n+1):nth-last-child(-n+4) ~ li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 567px) {
  .bl_shopGenreListItem:last-of-type {
    margin-bottom: 0;
  }
}

.bl_shopGenreListItemLink {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 60px;
  height: auto;
  border: 1px solid #bfdcae;
  background-color: #fff;
  font-weight: bold;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  transition-duration: 0.3s;
  transition-property: color;
}

.bl_shopGenreListItemLink::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 11px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-left: 2px solid #dadada;
  border-bottom: 2px solid #dadada;
  transform: rotate(-135deg);
  transition-duration: 0.3s;
}

.bl_shopGenreListItemLink:hover, .bl_shopGenreListItemLink:focus {
  color: #00ac4d;
}

.bl_shopGenreListItemLink:hover::after, .bl_shopGenreListItemLink:focus::after {
  right: 6px;
  border-color: #bbbbbb;
}

.bl_shopGenreListItemLink:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.bl_shopGenreListItemLink[href^="#"]::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 11px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-left: 2px solid #dadada;
  border-bottom: 2px solid #dadada;
  transform: rotate(-45deg);
  transition-duration: 0.3s;
}

.bl_shopGenreListItemLink[href^="#"]:hover, .bl_shopGenreListItemLink[href^="#"]:focus {
  color: #00ac4d;
}

.bl_shopGenreListItemLink[href^="#"]:hover::after, .bl_shopGenreListItemLink[href^="#"]:focus::after {
  top: 12px;
  border-color: #bbbbbb;
}

.bl_shopBrandWrapper {
  width: 100%;
  height: auto;
  margin-top: 120px;
  margin-bottom: 170px;
  position: relative;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandWrapper {
    margin-top: 90px;
    margin-bottom: 100px;
  }
}

.bl_shopBrandWrapper::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 232, 0.5);
  transform: skewY(15deg);
  z-index: -1;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandWrapper::before {
    height: calc(100% + 80px);
    top: -30px;
  }
}

.bl_shopBrandWrapper::after {
  position: absolute;
  content: "";
  display: block;
  top: 120px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 232, 0.3);
  transform: skewY(-15deg);
  z-index: -1;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandWrapper::after {
    height: calc(100% + 80px);
    top: 0;
  }
}

.el_shopBrandTitle {
  font-size: 1.75rem;
  margin-top: 73px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 567px) {
  .el_shopBrandTitle {
    font-size: clamp(1.375rem, 0.643rem + 3.13vw, 1.75rem);
    margin-top: 60px;
    margin-bottom: 1em;
    text-align: center;
  }
  .bl_industryWrapper .el_shopBrandTitle:first-of-type {
    margin-bottom: 0;
  }
}

.bl_shopBrandList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 27px;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandList {
    justify-content: space-between;
  }
}

.bl_shopBrandListItem {
  width: 18.53%;
  height: 120px;
  margin-right: 1.72%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandListItem {
    width: 48%;
    margin-right: 0;
  }
}

.bl_shopBrandListItem:last-of-type {
  margin-right: 0;
}

.bl_shopBrandListItem:nth-of-type(5n) {
  margin-right: 0;
}

.bl_shopBrandListItem:nth-child(5n+1):nth-last-child(-n+5),
.bl_shopBrandListItem:nth-child(5n+1):nth-last-child(-n+5) ~ li {
  margin-bottom: 0;
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandListItem:nth-child(5n+1):nth-last-child(-n+5),
  .bl_shopBrandListItem:nth-child(5n+1):nth-last-child(-n+5) ~ li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 567px) {
  .bl_shopBrandListItem:last-child, .bl_shopBrandListItem:nth-last-child(2):nth-child(odd) {
    margin-bottom: 0;
  }
}

.bl_shopBrandListItemLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  margin-top: 0;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  transition-duration: 0.3s;
  transition-property: margin,box-shadow;
}

.bl_shopBrandListItemLink:hover, .bl_shopBrandListItemLink:focus {
  margin-top: -5px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.15);
}

.bl_shopBrandListItemLink:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.el_shopBrandListItemLinkImage {
  max-width: 200px;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 567px) {
  .el_shopBrandListItemLinkImage {
    max-width: 90%;
    height: auto;
  }
}


/* 25.03 追加 */
/* 業種メニュー
----------------------------- */
.bl_industryWrapper {
  margin-top: 30px;
  position: relative;
}
.bl_industryList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  gap: 20px 3.45%;
}
.bl_industryListItemLink {
  display: grid;
  place-items: center left;
  padding: .4em 34px .2em min(28px, 2.353vw);
  width: 100%;
  height: 100%;
  min-height: 60px;
  border: 1px solid #bfdcae;
  background-color: var(--color-white);
  color: inherit;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  transition: .3s ease color;
}
.bl_industryListItemLink:hover,
.bl_industryListItemLink:focus-visible {
  color: #00ac4d;
}
.bl_industryListItemLink::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #dadada;
  border-bottom: 2px solid #dadada;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  transform: rotate(45deg);
  transition: .3s ease bottom;
}
.bl_industryListItemLink:hover::after,
.bl_industryListItemLink:focus-visible::after {
  border-color: #bbb;
  bottom: -8px;
}

.bl_industrySelect {
  appearance: none;
  width: 100%;
	min-height: 54px;
	padding: .2em 0.6em;
  border: 1px solid #707070;
  background: var(--color-white) url(/common/image/base/icon_form_select.svg) no-repeat right 10px center / 12px auto;
}



.bl_industryWrap-pc { display: block; }
.bl_industryWrap-sp {
  display: none;
  width: 100%;
  height: max-content;
  padding: 10px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.bl_industryWrap-sp.is-fixed {
  padding: 10px 15px;
  background: var(--color-white);
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 999;
}

@media only screen and (max-width: 567px) {
  .bl_industryWrapper { padding-bottom: 74px; }
  .bl_industryWrap-pc { display: none; }
  .bl_industryWrap-sp { display: block; }
}


/* 25.03 追加 */
/* ブランド一覧
----------------------------- */
.bl_brandList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: min(30px, 2.521vw);
}
.bl_brandListItem {
  padding: min(20px, 1.681vw);
  background-color: var(--color-white);
  border-radius: 5px;
  box-shadow: 0px 0px 9px 0px rgba(51, 51, 51, 0.1);

  display: grid;
  grid-template-columns: 46% 50%;
  grid-template-rows: max-content 1fr;
  gap: 10px 4%;
  grid-template-areas:
    "br-name br-name"
    "br-left br-right";

	overflow-wrap: break-word;
	word-wrap: break-word;
}
.bl_brandListItem-name {
  grid-area: br-name;
  font-size: clamp(1.125rem, 1.024rem + 0.28vw, 1.25rem);
  font-weight: bold;
  display: grid;
  grid-template-columns: 1em auto;
  gap: .6em;
}
.bl_brandListItem-name::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: var(--color-xst);
  border-radius: 2px;
  transform: translateY(0.2em);
}

.bl_brandListItemLeft {
  grid-area: br-left;
}
.bl_brandListItemRight {
  grid-area: br-right;
}
.bl_brandListItemLeft,
.bl_brandListItemRight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_brandListItem-image {
  min-height: min(160px, 12.598vw);
  padding: 10px 20px;
  display: grid;
  place-items: center;
  border: 1px solid #B7B0B0;
}
.bl_brandListItem-image > img { height: auto; }
.bl_brandListItem-snsList,
.bl_brandListItem-link {
  margin-top: auto;
}
.bl_brandListItem-snsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  gap: 15px min(20px, 8%);
}
.bl_brandListItem-snsListItem > a { transition: .3s; }
.bl_brandListItem-snsListItem > a:hover { opacity: .5; }
.snsIcon {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 30px;
  overflow: hidden;
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  }
  .--x { background-image: url(/common/image/shop/snsicon/x.png); }
  .--ig { background-image: url(/common/image/shop/snsicon/instagram.png); }
  .--yt { background-image: url(/common/image/shop/snsicon/youtube.png); }
  .--ln { background-image: url(/common/image/shop/snsicon/line.png); }
  .--fb { background-image: url(/common/image/shop/snsicon/facebook.png); }

.bl_brandListItem-text {
  font-size: clamp(1rem, 0.899rem + 0.28vw, 1.125rem);
  height: 9.5em;
}
.bl_brandListItem-link {
  display: grid;
  place-items: center flex-start;
  width: 100%;
  min-height: 40px;
  padding: .4em 40px .3em 25px;
  font-size: 0.875em;
  font-weight: bold;
  color: var(--color-white);
  text-decoration: none;
  background-color: #399E4E;
  border-radius: 50vw;
  position: relative;
  overflow: clip;
}
.bl_brandListItem-link::before {
  position: absolute;
  content: "";
  z-index: 0;
  width: 140%;
  height: 100%;
  background: var(--color-black);
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition-duration: 0.3s;
}
.bl_brandListItem-link::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: 1;
}
.bl_brandListItem-link:hover::before {
  right: -20%;
}
.bl_brandListItem-linkText {
  z-index: 1;
}
.bl_brandListItem-link:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--color-black);
  outline-offset: 0;
}

@media only screen and (max-width: 567px) {
  .bl_brandList {
    grid-template-columns: 1fr;
    gap: min(35px, 6.173vw);
  }
  .bl_brandListItem {
    padding: 5vw;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content 1fr;
    gap: 15px;
    grid-template-areas:
      "br-name"
      "br-left"
      "br-right";
  }
  .bl_brandListItemLeft,
  .bl_brandListItemRight {
    gap: 15px;
  }
  .bl_brandListItem-name {
    font-size: clamp(1rem, 0.756rem + 1.04vw, 1.125rem);
  }
  .bl_brandListItem-text {
    font-size: clamp(0.875rem, 0.631rem + 1.04vw, 1rem);
    height: initial;
  }
}

@media only screen and (max-width: 980px) {
  .bl_brandListItem-text {
    height: initial;
  }
  .bl_brandListItem-snsList {
    margin-top: initial;
  }
}

.bl-indent{
	display:inline-block;
	padding-left:1rem;
	text-indent: -1rem;
}