﻿@charset "UTF-8";
/*--------------------------------------------
		sf スクエアフィールド
---------------------------------------------*/
/*-------------- パンくずリスト ----------------*/
.c-breadcrumb {
  width: 100%;
  height: 3.8rem;
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  line-height: 1;
  padding: 1.4rem 1rem !important;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-breadcrumb .c-categorylist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}

.c-breadcrumb .c-categorylist-item {
  font-size: 1.2rem;
  white-space: nowrap;
}

.c-breadcrumb .c-categorylist-item:not(:last-of-type) {
  position: relative;
}

.c-breadcrumb .c-categorylist-item:not(:last-of-type) a {
  color: #888;
}

.c-breadcrumb .c-categorylist-item:not(:last-of-type)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -0.9rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .c-breadcrumb {
    width: 120rem;
    height: 6rem;
    font-size: 1.3rem;
    margin: auto !important;
    padding: 2.4rem 0 !important;
  }

  .c-breadcrumb .c-categorylist {
    gap: 1.4rem;
  }

  .c-breadcrumb .c-categorylist-item {
    font-size: 1.3rem;
  }

  .c-breadcrumb .c-categorylist-item:not(:last-of-type)::after {
    right: -1rem;
  }
}

/*-------------- 検索BOX ----------------*/
.m-sf-search {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  margin: 26px auto 50px auto !important;
}

.m-sf-search__text {
  margin: 0;
  flex: 1 1 auto;
}

.m-sf-search__text input {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  padding: 18.5px 24px;
}

.m-sf-search__submit {
  margin: 0;
  width: 67px;
}

.m-sf-search__submit a {
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  text-indent: -9999px;
  background: #333;
  background-image: url(../../Contents/ImagesPkg/category/icon_search.png);
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: center;
  border-bottom: 1px solid #333;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .m-sf-search {
    overflow: hidden;
    border-radius: 5px;
  }

  .m-sf-search__text input {
    padding: 0 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
  }

  .m-sf-search__submit a {
    background-size: 29%;
  }
}

@media screen and (max-width: 960px) {
  .m-sf-search {
    padding: 0 10px !important;
    margin: 5px auto 20px auto !important;
  }

  .m-sf-search__text {
    margin: 0;
  }

  .m-sf-search__text input {
    font-size: 12px;
    padding: 10px;
    height: 40px;
  }

  .m-sf-search__submit {
    width: 45px;
  }

  .m-sf-search__submit a {
    height: 40px;
    background-size: 23px 23px;
  }
}