@charset "UTF-8";

/* --------------------------------------------------------------------
  トップページ common
--------------------------------------------------------------------- */
.block-top-inner {
  padding: 0 16px;
}

.block-top-header {
  margin: 0 0 32px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}

/* --------------------------------------------------------------------
  トップページ本文
--------------------------------------------------------------------- */
#top-slider {
  width: 100%;
  height: 250px;
}

#top-slider #top-slider-text {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

#top-slider #top-slider-text h2 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.416;
  color: #FFFFFF;
  text-shadow: 1px 5px 11px #000000, 0px 0px 25px #000000;
}

#top-slider #top-slider-text div {
  margin: 24px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.714;
  color: #FFFFFF;
  text-shadow: 1px 5px 11px #000000, 0px 0px 25px #000000;
}

#top-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
  margin: 14px 0;
}

#top-info a {
  display: block;
  width: calc((100% - 7px)/2);
}

#top-info a img {
  width: 100%;
}

/* --------------------------------------------------------------------
  トップページ予備テンプレート1
--------------------------------------------------------------------- */
#top-shape {
  margin: 40px 0 0;
}

#top-shape .shape-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 10px;
}

#top-shape .shape-title a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.142;
  color: #FFFFFF;
  background: linear-gradient(#038258, var(--cartBtnColor));
  border: 1px solid #038258;
}

#top-shape .shape-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 11px 0 0;
}

#top-shape .shape-list li {
  width: calc((100% - (10px*2))/3);
}

#top-shape .shape-icon {
  text-align: center;
  background: linear-gradient(#FFFFFF, #F0F0F0);
  border: 1px solid #DDDDDD;
  border-radius: 3px;
}

#top-shape .shape-icon a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#top-shape .shape-icon img {
  width: 100%;
}

#top-shape .shape-icon img:has(+.shape-icon-text) {
  width: 77%;
}

#top-shape .shape-icon-text {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(2em*1.1);
  font-size: 11px;
  line-height: 1.1;
  color: #288435;
  transition: all .3s;
}

#top-shape .shape-icon a:hover .shape-icon-text {
  color: var(--accentColor);
}

#top-shape .shape-link-wrap {
  margin: 11px 0 0;
}

#top-shape .shape-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 37px;
  color: var(--cartBtnColor);
  border: 1px solid var(--cartBtnColor);
}

#top-shape .shape-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid var(--cartBtnColor);
  border-right: 1px solid var(--cartBtnColor);
  transform: rotate(45deg);
}

#top-shape .shape-link+.shape-link {
  margin-top: 8px;
}

#top-shape .shape-group:not(:has(.shape-list li:nth-child(n+2))) {
  width: calc((100% - 20px)/3);
}

#top-shape .shape-group:not(:has(.shape-list li:nth-child(n+2))) .shape-title a {
  font-size: 14px;
}

#top-shape .shape-group:not(:has(.shape-list li:nth-child(n+2))) .shape-list li {
  width: 100%;
}

#top-shape .shape-group.terminal {
  width: calc((100% - 20px)/3*2 + 10px);
}

#top-shape .shape-group.terminal .shape-list li {
  width: calc((100% - 10px)/2);
}

/* --------------------------------------------------------------------
  トップページ予備テンプレート2
--------------------------------------------------------------------- */
#top-search {
  margin: 40px 0 0;
}

#top-search .search-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#top-search .search-box {
  padding: 16px;
  background: var(--bgColor);
}

#top-search .search-title {
  margin: 0 0 16px;
  padding: 0 0 0 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  border-left: 5px solid var(--themeColor);
}

#top-search .search-material,
#top-search .block-global-search {
  position: relative;
  background: #fff;
}

#top-search .search-material::before,
#top-search .block-global-search::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--themeColor);
  border-right: 2px solid var(--themeColor);
  transform: rotate(135deg);
}

#top-search .search-material select,
#top-search .block-global-search select {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  font-size: 18px;
  background: none;
  cursor: pointer;
}

#top-search .search-material select::-ms-expand,
#top-search .block-global-search select::-ms-expand {
  display: none;
}

#top-search .search-material select:disabled,
#top-search .search-material select:invalid,
#top-search .search-material select option:first-child,
#top-search .block-global-search select:disabled,
#top-search .block-global-search select:invalid,
#top-search .block-global-search select option:first-child {
  color: #999999;
}

#top-search .search-material select option,
#top-search .block-global-search select option {
  color: var(--textColor);
}

#top-search .search-number {
  position: relative;
}

#top-search .search-number .block-global-search--keyword {
  width: 100%;
  height: 48px;
  padding: 10px 48px 10px 16px;
  font-size: 16px;
}

#top-search .search-number .block-global-search--submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: url(../../img/usr/common/icon_search_b.png) no-repeat center / 18px;
}

#top-search .block-search-suggest {
  top: calc(100% - 1px);
  border: 1px solid var(--borderColor);
  border-radius: 4px;
  box-shadow: 0 3px 6px rgb(0,0,0,0.16);
}

#top-search .block-search-suggest--keyword {
  border: none;
}

#top-search .block-search-suggest--keyword a {
  padding: 12px 16px;
}

/* --------------------------------------------------------------------
  トップページ予備テンプレート3
--------------------------------------------------------------------- */
#top-hirosuginet {
  width: 93%;
  margin: 30px auto 48px;
  text-align: center;
}