/* ヘッダーのスタイル */




.gnav-pc {
  background-color: #fff;
  width: 1280px;
  font-size: 10px;
  padding-top: 8px;
}

.fs-p-logo__image {
  margin-right: 65px;
  width: 335px;
}

/* 親ヘッダーの黄色枠直下に配置する想定 */
.tp-header-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
  max-width: 1200px;
  /* 一番上のバナーと同じ幅 */
  margin: 0 auto;
  /* 画面中央寄せ */
  padding-left: 20px;
  /* バナーに合わせた左右余白 */
  padding-right: 20px;
}



/* ロゴ：高さを一定に、縦中央揃え */
.tp-header-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* 検索フォーム（右側いっぱいに） */
.tp-search-form {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 500px;
  width: 100%;
}

.tp-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 2px solid #00367c;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
}

.tp-search-button {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 18px;
  border: 2px solid #00367c;
  border-radius: 0 8px 8px 0;
  background: #00367c;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.tp-search-button:hover,
.tp-search-button:focus {
  filter: brightness(1.05);
}

.tp-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 54, 124, 0.15);
}

.header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "header-inner"
    "gnav-pc"
    "gnav-sp";
  align-items: center;
  justify-items: center;
  background-color: #fff;
}

.header>.__header-inner {
  grid-area: header-inner;
  display: flex;
  flex-direction: column;
}

.header>.gnav-pc {
  grid-area: gnav-pc;
}

.header>.gnav-sp {
  grid-area: gnav-sp;
}

.__content-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  gap: 16px;
  flex-wrap: wrap;
}

.__search-form {
  flex: 0 0 auto;
  margin-bottom: 0;
  min-width: 0;
}

.tp-search-form {
  margin-bottom: 0;
  padding: 0 15px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* PC表示：電話番号 */
.__tel-pc {
  display: none;
  flex: 0 0 auto;
}

.__tel-info {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  align-items: flex-start;
}

.__tel-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.__tel-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.__tel-number {
  color: #00367c;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.__tel-hours {
  font-size: 13px;
}

.__tel-hours-text {
  font-size: 12px;
  background: #d1dff5;
  padding: 3px 6px;
  border-radius: 4px;
  margin-right: 1px;
}

/* SP表示：電話アイコンのみ */
.__tel-sp {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.__tel-link-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: .5em 0 .5em .5em;
}

.__tel-icon-sp-wrapper {
  background: #dbe5f5;
  border-radius: 50%;
  padding: .5em;
}

.__tel-icon-sp {
  width: 24px;
  min-width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.header .__banner .__wrap a.__logo {
  padding: 0;
}

/* __content-topと__bannerを囲む親要素のスタイル */
.__header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.header .__banner {
  width: calc(100% - 20px);
  margin: 0 15px 0 5px;
}

@media (min-width: 599px) {
  .header .__banner {
    width: auto;
  }
}

@media (min-width: 599px) {
  .header>.__header-inner>.__content-top {
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex-direction: row;
  }
}

/* PC表示時はgnav-spを非表示 */
@media (min-width: 599px) {
  .header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "header-inner"
      "gnav-pc";
    align-items: start;
  }

  .header>.__header-inner {
    flex-direction: row;
    padding: 10px 0;
    gap: 20px;
  }

  .header>.__header-inner>.__banner {
    flex: 0 0 auto;
    margin-right: auto;
  }



  .header>.gnav-sp {
    display: none;
  }

  .tp-search-form {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: 580px;
    width: 100%;
  }

  .__search-form {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 580px;
  }

  .header .__banner .__wrap a.__logo {
    padding: .5em 0;
  }

  /* PC表示：電話番号を表示 */
  .__tel-pc {
    display: flex;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* SP表示：電話アイコンを非表示 */
  .__tel-sp {
    display: none;
  }
}

/* SR-only */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* レスポンシブ：狭い幅ではロゴ上・検索下の2段 */
@media (max-width: 768px) {
  .tp-header-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
  }

  .tp-search-form {
    max-width: none;
  }

  .tp-header-logo img {
    height: 40px;
  }
}

@media screen and (max-width: 599px) {
  .header .__banner .__wrap a.__logo {
    text-align: left;
    height: 3.5em;
  }

  .__content-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 15px;
  }

  /* SP表示：電話アイコンのみを表示 */
  .__tel-sp {
    display: flex;
    order: -1;
    flex: 0 0 auto;
  }

  /* PC表示：電話番号を非表示 */
  .__tel-pc {
    display: none;
  }

  .__search-form {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tp-search-form {
    max-width: 100%;
    padding: 0;
    width: 100%;
  }
}


/* header_wrap */
.header_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.header_wrap .header_left {
  width: 765px;
}

.header_wrap .header_left .logo_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header_wrap .header_center {
  margin-right: 5px;
}

.header_mypage {
  margin-right: 5px;
}

.header_shoplist {}

.header_shoplist img {}

.header_mypage a,
.header_shoplist a {
  display: inline-block;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background-color: #f0f0f0;
  height: 80px;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 72px;
}

.header_mypage a img {
  width: auto;
  height: 26px;
}

.header_shoplist a img {
  width: auto;
  height: 30px;
}

.header_mypage a p,
.header_shoplist a p {
  padding: 8px 0 0 0;
  margin: 0;
}

.header_mypage a:hover,
.header_shoplist a:hover {
  border: 1px solid #00367c;
  color: #00367c;
  text-decoration: none;
  background-color: #f0f7fb;
}

.header_linklist01 {
  margin-left: 5px;
}

.header_linklist01 a {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  width: 175px;
  height: 37px;
  font-size: 12px;
  padding: 0 0 0 12px;
  position: relative;
  margin-bottom: 5px;
}

.header_linklist01 a:last-child {
  margin-bottom: 0px;
}

.header_linklist01 a:hover {
  border: 1px solid #00367c;
  color: #00367c;
  text-decoration: none;
}

.header_linklist01 a:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00367c !important;
  right: 8px;
}

.header_linklist01 a::after {
  content: "";
  position: absolute;
  right: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 4px solid #fff;
}

.header_right {
  display: flex;
  margin-left: auto;
}

.header_right .left_wrap {
  margin-right: 5px;
}

.header_right .left_wrap a {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  width: 175px;
  height: 37px;
  font-size: 12px;
  padding: 0 0 0 8px;
  position: relative;
  margin-bottom: 5px;
}

.header_right .left_wrap a:hover {
  border: 1px solid #00367c;
  color: #00367c;
  text-decoration: none;
}

.header_right .left_wrap a:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00367c !important;
  top: 50%;
  margin-top: -5px;
  right: 8px;
}

.header_right .left_wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 4px solid #fff;
}

.header_right .left_wrap a#ico_header_favorite img {
  width: 17px;
  height: auto;
}

.header_right .left_wrap a#ico_header_calculator img {
  width: 14px;
  height: auto;
}

.header_right .left_wrap a#ico_favorite img {
  width: 17px;
  height: auto;
}

.header_right .right_wrap a#ico_header_cart img {
  width: 36px;
  height: auto;
}

.header_right .right_wrap a#ico_header_fax img {
  width: 17px;
  height: auto;
}

.header_right {
  position: relative;
}

.header_right .fs-client-cart-count {
  position: absolute;
  right: 30px;
  top: 8px;
  background: #00367c;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  border: 2px solid #fff;
}

.header_right .fs-client-cart-count.fs-client-cart-count--0 {
  display: none;
}

.header_right a img {
  vertical-align: middle;
  margin-right: 5px;
}

.header_right .right_wrap a {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  width: 120px;
  height: 37px;
  font-size: 12px;
  padding: 0 0 0 8px;
  position: relative;
  margin-bottom: 5px;
}

.header_right .right_wrap a:hover {
  border: 1px solid #00367c;
  color: #00367c;
  text-decoration: none;
}

.header_right .right_wrap a:last-child:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00367c !important;
  top: 50%;
  margin-top: -5px;
  right: 8px;
}

.header_right .right_wrap a:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 4px solid #fff;
}

.header_right .right_wrap a.first {
  height: 80px;
  text-align: center;
  padding: 0;
  align-items: center;
  flex-direction: column;
}

.header_right .right_wrap a.first img {
  margin: 12px auto 10px;
}




/* heder_tel */
.header_tel_box {
  position: relative;
  display: block;
  border: 1px solid #e6e1de;
  border-radius: 5px;
  background-color: #f0f7fb;
  color: #00367c;
  font-size: 12px;
  width: 210px;
  text-align: center;
  height: 80px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header_tel_box .header_tel {
  display: block;
  font-size: 18px;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin: 3px auto 6px;
}

.header_tel_box .header_tel_time {
  display: block;
  color: #000;
  line-height: 1;
  margin: 0 auto 7px;
}

.header_tel_box .header_tel_notice {
  line-height: 1;
}

.header_tel_box .header_tel img {
  margin-right: 5px;
  width: 18px;
  height: 18px;
}



/* new header */

.header_right {
  margin-left: 5px;
}

.header_right .right_wrap a.first {
  height: 120px;
  justify-content: center;
}

.header_right .right_wrap a#ico_header_cart img {
  width: 46px;
  height: 39px;
}

.header_shoplist a img {
  height: 26px;
}

.header_wrap .header_center {

  margin-right: 0;
  margin-left: 5px;
}

/* ご利用ガイド・よくあるご質問 ヘッダー部分 */
.header_center .header_guide_header {
  margin-bottom: 5px;
}

.header_center .header_guide_header .guide_header_link {
  display: flex;
  align-items: center;
  background-color: #f0f7fb;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  height: 37px;
  padding: 0 12px;
  text-decoration: none;
  color: #000;
  position: relative;
  justify-content: center;
}

.header_center .header_guide_header .guide_header_link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.header_center .header_guide_header .guide_icon_img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.header_center .header_guide_header .guide_text {
  font-size: 14px;
}

.header_center .header_guide_header .guide_arrow {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00367c !important;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: auto;
}

.header_center .header_guide_header .guide_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 4px solid #fff;
}

/* グリッド部分 */
.header_center .header_guide_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.header_center .header_guide_grid .guide_grid_item {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background-color: #fff;
  width: 190px;
  color: #000;
  height: 37px;
  padding: 0 8px 0 10px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.header_center .header_guide_grid .guide_grid_item:hover {
  border-color: #00367c;
  color: #00367c;
  text-decoration: none;
}

.header_center .header_guide_grid .guide_item_icon_img {
  margin-right: 10px;
}

.header_center .header_guide_grid #ico_header_shop .guide_item_icon_img {
  width: 21px;
  height: 18px;
}

.header_center .header_guide_grid #ico_header_delivery .guide_item_icon_img {
  width: 22px;
  height: 32px;
  /* 実際には16pxで表示されるため、2倍の値を指定 */
}

.header_center .header_guide_grid #ico_header_calculator .guide_item_icon_img {
  width: 15px;
  height: 23px;
}

.header_center .header_guide_grid #ico_header_inquiry .guide_item_icon_img {
  width: 21px;
  height: 15px;
}

.header_center .header_guide_grid .guide_item_text {
  flex: 1;
  font-size: 12px;
}

.header_center .header_guide_grid .guide_item_arrow {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00367c !important;
  position: relative;
  margin-left: auto;
}

.header_center .header_guide_grid .guide_item_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 4px solid #fff;
}


/* item-search */
.item_serch_wrap .searchBox {
  width: 100%;
  margin-top: 5px;
}

.item_serch_wrap .searchBox input[type="image"] {
  height: 34px
}

.item_serch_wrap .searchBox form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%
}

.item_serch_wrap .searchBox .txtBox {
  width: 100%;
  max-width: 397px;
  border: solid 1px rgba(0, 0, 0, .3);
  padding: 3.5px 4px;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px 0 0 3px
}

.item_serch_wrap .searchBox .txtBox {
  width: 100%;
  max-width: 700px;
  border: solid 1px #00367c;
  padding: 0 8px;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px 0 0 5px;
  line-height: 1.3;
  border-right: 0;
  height: 37px
}

.item_serch_wrap .searchBox input[type="submit"] {
  -webkit-appearance: button;
  background-color: #00367c;
  padding: 5px 20px;
  border: 0;
  border-radius: 0 5px 5px 0;
  color: #fff;
  height: 37px;
  letter-spacing: .1em;
  font-size: 16px;
  cursor: pointer
}

/* item-search old */
.item-search-container {
  padding: 5px 0 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 750pt;
  margin: 0 auto
}

.item-search-container a {
  line-height: 0;
  display: block
}

.item-search-container a img {
  vertical-align: bottom
}

.item-search-container .list-menu li {
  margin-left: 10px
}

.item-search-container .list-menu li:first-child {
  margin-left: 0
}

@media screen and (max-width:1024px) {
  .item-search-container .list-menu, .item-search-container .searchBox {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
  }

  .item-search-container .list-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .item-search-container .list-menu li {
    max-width: calc(100%/3 - 10px)
  }

}

@media (min-width: 599px) {
  .header>.__header-inner {
    display: none;
  }
}