@charset "UTF-8";
body {
  font-family: 'Noto Sans JP', "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",Arial, Helvetica, sans-serif;
  background: #f5fafa;
  color: #4b4b4b;
  font-weight: 400;
  font-size: 14px;
}

.fs-l-page {
  width: auto;
}

.header-contents, .top-section, .fs-l-main, .column-wrap, .top-guidance {
  width: 1100px;
  margin: 0 auto;
}

/*
  ヘッダー
*/
.header-contents {
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-template-rows: auto auto auto;
  display: -ms-grid;
  -ms-grid-columns: 190px 1fr;
  -ms-grid-rows: auto auto auto;
  padding: 20px 0;
}

/* ロゴ */
.header__logo {
  grid-column: 1;
  grid-row: 1 / 3;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  position: relative;
  width: 145px;
  margin-left: 10px;
  padding: 5px 0;
  text-align: center;
}
.header__logo span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 7px;
}
.header__logo img:nth-of-type(2) {
  margin-top: -8px;
}

/* サブメニュー */
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 新入荷～カテゴリ一覧のメニュー */
.header-utility {
  grid-column: 2;
  grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
}
.header-utility-nav {
  display: flex;
}
.header-utility-nav li {
  position: relative;
  width: 100px;
  height: 38px;
}
.header-utility-nav li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: url(//www.salhouse.com/img/share/nav_line.svg) repeat-y;
  background-size: contain;
}
.header-utility-nav li:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: url(//www.salhouse.com/img/share/nav_line.svg) repeat-y;
  background-size: contain;
}
.header-utility-nav li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.header-utility-nav li a:hover {
  background: #bdccd4;
}
.header-utility-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.header-utility-menu > li {
  margin: 0 10px;
  font-size: 0;
}
.header-utility-menu > li:first-child {
  display: none;
}
.header-utility-menu > li .subMenu {
  position: absolute;
  top: 100%;
  right: -10px;
  display: none;
  margin: 0;
  text-align: right;
  z-index: 10;
  background: #fff;
  border-radius: 0px 0px 6px 0px;
  opacity: 0;
  transition: .9s;
  box-sizing: 　border-box;
}
.header-utility-menu > li .subMenu > li {
  font-size: 14px;
  height: 40px;
  float: none;
  width: 200px;
  border-bottom: solid 1px #ccc;
}
.header-utility-menu > li .subMenu > li:last-child {
  border-bottom: 0;
}
.header-utility-menu > li .subMenu > li:hover {
  background: #f0f8ff;
  transition: all 0.5s;
}
.header-utility-menu > li .subMenu > li > a {
  display: block;
  padding: 10px;
  height: 40px;
}
.header-utility-menu > li .subMenu > li > img {
  vertical-align: middle;
  margin-right: 5px;
}
.header-utility-menu > li .subMenu2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-utility-menu > li .subMenu2 li {
  width: 300px;
  text-align: right;
  padding: 5px 10px;
  height: auto;
  height: 40px;
}
.header-utility-menu > li .subMenu2 li img {
  margin-left: 5px;
}
.header-utility-menu > li .subMenu2 li.ttl {
  font-weight: 600;
  background: #f0f8ff;
}
.header-utility-menu > li .subMenu2Wrap {
  display: none;
  position: absolute;
  min-height: 100%;
  right: 200px;
  top: 0;
  background: #fff;
  width: 900px;
  border-radius: 6px 0 0 6px;
}
.header-utility-menu > li .subMenu2Wrap > h3 {
  margin: 10px 10px 20px;
  font-size: 24px;
}
.header-utility-menu > li .subMenu2Wrap.antique {
  display: block;
}
.header-utility-menu > li .subMenu2Wrap.antique > h3 {
  margin: 10px;
}
.header-utility-menu > li.category {
  margin: -10px;
  padding: 10px;
}
.header-utility-menu > li.category:hover {
  cursor: pointer;
}
.header-utility-menu > li.category:hover span img {
  opacity: .7;
  transition: opacity 0.2s ease;
}
.header-utility-menu > li.category:hover .subMenu {
  display: block;
  right: -10px;
  animation: show 0.3s linear 0s;
  animation-fill-mode: forwards;
}
.header-utility-menu > li.category:hover .subMenu li:hover .subMenu2Wrap {
  display: block;
}

/* 検索 */
.header-search {
  width: 180px;
  margin-left: 15px;
  font-size: 18px;
}
.header-search form {
  display: flex;
  height: 100%;
  border-bottom: 2px solid #4c4b4b;
  box-sizing: border-box;
}
.header-search .form-btn-wrap {
  flex-shrink: 0;
  width: 24px;
  padding-bottom: 5px;
  background: url("//www.salhouse.com/img/share/icon_search.svg") center no-repeat;
  box-sizing: border-box;
}
.header-search .form-btn-wrap .form_btn {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 0;
  font-size: 0;
  background: none;
}
.header-search input[type="text"] {
  min-height: 0;
  border: 0;
  background: none;
  font-size: inherit;
}
.header-search .form_btn {
  width: 24px;
}

.fs-l-header .header-search form {
  align-items: flex-end;
}
.fs-l-header .header-search .form_btn {
  margin-bottom: 5px;
}

/* カテゴリー */
.header-nav {
  grid-column: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-row: 2;
}
.header-nav-list {
  display: flex;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.header-nav-list li {
  flex: 1;
  text-align: center;
}
.header-nav-list li img {
  display: block;
  margin: 0 auto 5px;
}

/* そのほか */
.header-info {
  grid-column: 1 / 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 3;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
  color: #231815;
}
.header-info__text {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 2px dashed #4c4b4b;
}
.header-info__text img {
  margin-right: 5px;
}

.header-sns {
  display: flex;
  align-items: center;
  height: 21px;
  margin-left: 12px;
}
.header-sns li {
  height: 21px;
  margin: 0 5px;
}

/*
  ヘッダー カテゴリー：アンティーク
*/
/* ロゴ */
.-category-antique .header__logo {
  grid-column: 1;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: unset;
  width: 162px;
  margin: 0 auto;
}
.-category-antique .header__logo img:nth-of-type(2) {
  margin: 0;
}
.-category-antique .header__logo > div.-fixed {
  display: none;
}

/* グローバルメニュー上 */
.-category-antique .header-utility {
  padding: 0 0 10px;
  background: none;
  border-radius: 0px;
}
.-category-antique .header-utility-menu {
  align-items: center;
  padding-right: 10px;
  border-right: 2px dashed #4c4b4b;
}
.-category-antique .header-utility-menu > li:nth-of-type(2) > a img {
  width: 21px;
}
.-category-antique .header-utility-menu > li:nth-of-type(3) > a img {
  width: 19px;
}
.-category-antique .header-utility-menu > li:nth-of-type(4) > a img {
  width: 26px;
}
.-category-antique .header-utility-menu > li:nth-of-type(5) > a img {
  width: 17px;
}
.-category-antique .header-utility-menu > li.category {
  margin: 0;
  padding: 8px;
}
.-category-antique .header-utility .header-sns {
  align-self: center;
  margin-right: 10px;
}

.-category-antique .header-info {
  display: block;
  padding: 0;
}
.-category-antique .header-info .header-info__text {
  display: none;
  padding-left: 0;
}
.-category-antique .header-info .header-info__text:first-child {
  display: flex;
  height: 100%;
}
.-category-antique .header-info .header-sns {
  display: none;
}

/* 検索 */
.-category-antique .header-search {
  width: 160px;
  margin-left: 10px;
}
.-category-antique .header-search form {
  align-items: flex-end;
  height: auto;
}
.-category-antique .header-search input[type="text"] {
  min-height: 0;
  border: 0;
  background: none;
  font-size: inherit;
}
.-category-antique .header-search .form_btn {
  width: 18px;
  margin-bottom: 2px;
  background: none;
}

/* カテゴリー */
.-category-antique .header-nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.2;
}
.-category-antique .header-nav-list li {
  flex: inherit;
  width: calc(100% / 5 - 6px);
  margin-bottom: 10px;
  text-align: center;
}
.-category-antique .header-nav-list li a {
  display: flex;
  align-items: center;
  padding: 0 5px 0 10px;
  background: #fff;
  border-radius: 10px;
  text-align: left;
}
.-category-antique .header-nav-list li img {
  margin: 0 5px 0 0;
}

/*
  ヘッダー　Fixed
*/
.fs-l-header.-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  /* ロゴ */
}
.fs-l-header.-fixed .header-contents {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.fs-l-header.-fixed .header__logo {
  flex-direction: row;
  width: auto;
  padding: 0;
  margin-left: 10px;
}
.fs-l-header.-fixed .header__logo span {
  display: none;
}
.fs-l-header.-fixed .header__logo img:nth-of-type(1) {
  width: 50px;
  margin-right: 10px;
}
.fs-l-header.-fixed .header__logo img:nth-of-type(2) {
  margin: 0;
}
.fs-l-header.-fixed .header-utility {
  margin: auto 0;
  padding: 0;
  background: none;
}
.fs-l-header.-fixed .header-utility-nav {
  display: none;
}
.fs-l-header.-fixed .header-utility-menu > li {
  position: relative;
  margin: 0;
  padding: 0 12px;
  font-size: 16px;
  font-weight: bold;
  height: 38px;
}
.fs-l-header.-fixed .header-utility-menu > li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: url(//www.salhouse.com/img/share/nav_line.svg) repeat-y;
  background-size: contain;
}
.fs-l-header.-fixed .header-utility-menu > li a {
  display: flex;
  align-items: center;
  height: 100%;
}
.fs-l-header.-fixed .header-utility-menu > li a span {
  width: 38px;
  text-align: center;
}
.fs-l-header.-fixed .header-utility-menu > li a span img {
  vertical-align: bottom;
}
.fs-l-header.-fixed .header-utility-menu > li:first-child {
  display: block;
}
.fs-l-header.-fixed .header-utility-menu > li.category {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 0;
}
.fs-l-header.-fixed .header-utility-menu > li.category span {
  width: 38px;
  text-align: center;
  line-height: 0;
}
.fs-l-header.-fixed .header-utility-menu > li.category:hover {
  color: #009ae3;
}
.fs-l-header.-fixed .header-utility-menu > li.category:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: url(//www.salhouse.com/img/share/nav_line.svg) repeat-y;
  background-size: contain;
}
.fs-l-header.-fixed .header-search {
  position: relative;
  width: 190px;
  margin: 0;
  padding: 0 15px;
}
.fs-l-header.-fixed .header-search:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: url(//www.salhouse.com/img/share/nav_line.svg) repeat-y;
  background-size: contain;
}
.fs-l-header.-fixed .header-search .form_btn {
  background: none;
}
.fs-l-header.-fixed .header-nav,
.fs-l-header.-fixed .header-info {
  display: none;
}

.fs-l-header.-category-antique.-fixed .header__logo {
  margin-left: auto;
}
.fs-l-header.-category-antique.-fixed .header__logo > div {
  display: none;
}
.fs-l-header.-category-antique.-fixed .header__logo > div.-fixed {
  display: flex;
}
.fs-l-header.-category-antique.-fixed .header__logo > div.-fixed a:nth-of-type(2) img:nth-of-type(1) {
  width: 100px;
  margin-right: 0;
}
.fs-l-header.-category-antique.-fixed .header__logo a {
  display: flex;
  align-items: center;
}
.fs-l-header.-category-antique.-fixed .header__logo a img:nth-of-type(2) {
  width: 76px;
}
.fs-l-header.-category-antique.-fixed .header-sns {
  display: none;
}
.fs-l-header.-category-antique.-fixed .header-utility-menu {
  border: 0;
  padding-right: 0;
}

/*
  フッター
*/
.fs-l-footer {
  width: 100%;
  margin: 40px auto 0;
}
.fs-l-footer__contents {
  max-width: 1200px;
}

/*
  メインビジュアル
*/
.cc-top-slider {
  min-width: 1100px;
  width: 100%;
  padding: 10px;
  background: #fff;
}

/*
  トップページコンテンツ
*/
.top-section {
  margin-top: 30px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px 10px;
}
.top-section__title {
  position: relative;
  padding: 15px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  color: #4b4b4b;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: serif;
}
.top-section__title img {
  position: absolute;
  bottom: 5px;
  transform: translateX(-102%) scale(0.8);
}
.top-section__description {
  width: 100%;
  margin: 25px 0;
  text-align: center;
  color: #000000;
}
.top-section-inner {
  padding: 10px 10px 20px;
}
.top-section .box-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.top-section .box-wrap > div {
  width: calc(100% / 4 - 10px);
  margin: 0 5px 15px;
  text-align: left;
  font-size: 14px;
}
.top-section .box-wrap > div img {
  margin-bottom: 8px;
  border-radius: 7px;
}
.top-section .box-wrap > div h3 {
  margin-bottom: .5em;
  font-weight: bold;
  line-height: 1.5;
  font-size: 13px;
}
.top-section .item-list {
  margin: 0 -5px;
}
.top-section.-type2 .box-wrap > div:nth-of-type(1), .top-section.-type2 .box-wrap > div:nth-of-type(2) {
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}
.top-section.-type2 .box-wrap > div:nth-of-type(1) h3, .top-section.-type2 .box-wrap > div:nth-of-type(2) h3 {
  margin: 0;
}
.top-section.-type2 .box-wrap > div:nth-of-type(1) img, .top-section.-type2 .box-wrap > div:nth-of-type(2) img {
  width: 534px;
  height: 250px;
  border-radius: 7px;
}
.top-section.-type2 .box-wrap > div:nth-of-type(1) dl, .top-section.-type2 .box-wrap > div:nth-of-type(2) dl {
  display: flex;
  line-height: 3;
}

/* 新入荷＆再入荷 */
.item-list {
  display: flex;
  flex-wrap: wrap;
}
.item-list li {
  width: calc(125% / 5 - 10px);
  margin: 0 3px 17px;
  color: #4b4b4b;
  font-size: 14px;
}
.item-list li img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.item-list.-col4 li {
  width: calc(100% / 4 - 10px);
}

/*
  2カラム
*/
.fs-l-main {
  grid-template-columns: 280px 820px;
  -ms-grid-columns: 280px 820px;
  padding-top: 0;
  background: none;
}

.fs-body-top .fs-l-main {
  background: none;
}

/* 左カラム */
.fs-l-pageAside {
  width: 280px;
}

/* 送料についてのテキスト */
.fs-l-pageAside-text {
  text-align: center;
  font-size: 13px;
}

/* 検索 */
.fs-l-pageAside-search {
  margin: 30px 0;
}
.fs-l-pageAside-search form {
  display: flex;
  border: 2px solid #8094b2;
}
.fs-l-pageAside-search form input[type="text"] {
  background: #fff;
  border: 0;
}
.fs-l-pageAside-search .form-btn-wrap {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #8094b2 url("//www.salhouse.com/img/share/icon_search_f.svg") center no-repeat;
  box-sizing: border-box;
}
.fs-l-pageAside-search .form-btn-wrap .form_btn {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 0;
  font-size: 0;
  background: none;
}

.-category-antique .fs-l-pageAside-search {
  margin: 30px 0 10px;
}
.-category-antique .fs-l-pageAside-search form {
  border: 2px solid #bf9f79;
}
.-category-antique .fs-l-pageAside-search .form-btn-wrap {
  background-color: #bf9f79;
}

/* フローティングナビ */
.top-floatNav {
  position: fixed;
  left: 2%;
  top: 150px;
  display: none;
  z-index: 200;
}

@media screen and (max-width: 1500px) {
  .top-floatNav {
    position: static;
    text-align: center;
    margin-bottom: 30px;
    display: block;
  }
}
/* サイドメニュー */
.fs-sideMenu {
  margin-bottom: 0;
}
.fs-sideMenu dt {
  margin-bottom: 5px;
  text-align: center;
  font-size: 18px;
}
.fs-sideMenu dt span {
  display: block;
  margin-bottom: 10px;
  padding: 20px 20px 5px;
  background: #bd9d79;
  font-size: 16px;
  color: #fff;
}
.fs-sideMenu dt span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 10px auto 0;
  border-style: solid;
  border-width: 15px 12.5px 0 12.5px;
  border-color: #ffffff transparent transparent transparent;
}
.fs-sideMenu dt a {
  position: relative;
  display: block;
  padding: 10px;
  color: #fff;
  background: #8094b2;
}
.fs-sideMenu dt a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.fs-sideMenu dd ul li {
  margin-bottom: 5px;
}
.fs-sideMenu dd ul li a {
  position: relative;
  display: flex;
  min-height: 46px;
  padding: 0 25px 0 5px;
  align-items: center;
  background: #fff;
  font-size: 13px;
  font-weight: bold;
}
.fs-sideMenu dd ul li a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%238094b2%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.fs-sideMenu dd ul li.noicon a {
  padding-left: 55px;
}
.fs-sideMenu dd ul li ul {
  margin-top: 5px;
}
.fs-sideMenu dd ul li ul li a {
  padding: 3px;
  min-height: 0;
  padding-left: 55px;
  font-size: 13px;
}
.fs-sideMenu dd ul li ul li a:after {
  display: none !important;
}
.fs-sideMenu#side_antique {
  margin-bottom: 15px;
}
.fs-sideMenu#side_antique dt a {
  background: #bd9d79;
}
.fs-sideMenu#side_antique dd ul li a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%23bd9d79%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* 右カラム */
.fs-l-pageMain {
  width: 820px;
}
.fs-l-pageMain .top-section {
  width: 100%;
}
.fs-l-pageMain .top-section__title {
  font-size: 18px;
}
.fs-l-pageMain .item-list li {
  width: calc(100% / 4 - 10px);
}

.fs-body-top .fs-l-pageMain {
  width: 820px;
}

/* バナー4つ */
.top-mainBnr {
  padding: 5px;
  background: #fff;
  border-radius: 10px;
}
.top-mainBnr ul {
  display: flex;
  flex-wrap: wrap;
}
.top-mainBnr ul li {
  width: calc(60% - 10px);
  margin: 5px;
}
.top-mainBnr ul li a {
  position: relative;
  display: block;
  height: 308px;
  overflow: hidden;
}
.top-mainBnr ul li a img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  height: 100%;
}
.top-mainBnr ul li:nth-of-type(1), .top-mainBnr ul li:nth-of-type(4) {
  width: calc(40% - 10px);
}
.top-mainBnr ul li:nth-of-type(2) a img {
  left: 0;
  transform: translateX(0);
}

/* お知らせ */
#topNews .top-section-inner {
  display: block;
  padding: 30px 40px;
}

.news-list {
  width: 100%;
}
.news-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news-list li span {
  display: block;
  width: 130px;
  padding-right: 35px;
  text-align: right;
}

/* アンティーク */
#topAntique {
  background: #fff;
}
#topAntique .top-section__title {
  font-family: serif;
  background: #ffffff;
}

/* もっと見るボタン */
.btn-more {
  width: 100% !important;
  padding: 20px 0;
  text-align: center;
}
.btn-more a {
  display: inline-flex;
  align-items: center;
  padding: 10px 70px;
  padding-right: calc(60px - 1em);
  background: #fff;
  text-align: center;
  border-radius: 100px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  border: 2px solid #ccd4dc;
}
.btn-more a:after {
  margin-left: 1em;
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%234b4b4b%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* instagram */
.instagram_list {
  display: grid;
  grid-template-columns: 380px 185px 185px;
  grid-gap: 10px;
  grid-template-rows: 185px 185px;
  display: -ms-grid;
  -ms-grid-columns: 380px 185px 185px;
  -ms-grid-rows: auto auto;
  margin-bottom: 15px;
}
.instagram_list li:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 0;
}
.instagram_list li:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}
.instagram_list li:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}
.instagram_list li:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}
.instagram_list li:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

/* ランキング */
.top-section.-ranking .top-section__title {
  padding: 13px 15px;
}
.top-section.-ranking .top-section__title h2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: bold;
}
.top-section.-ranking .top-section__title h2:before {
  content: "";
  display: block;
  width: 27px;
  height: 23px;
  margin-right: 12px;
  background: url(//www.salhouse.com/img/top/icon_rank.svg) no-repeat;
  background-size: contain;
}
.top-section.-ranking .top-section__title .link {
  position: absolute;
  bottom: 15px;
  right: 80px;
  display: inline-block;
  font-size: 14px;
  color: #4b4b4b;
  letter-spacing: 0;
  font-weight: normal;
}
.top-section.-ranking .top-section-inner > div {
  width: auto;
  margin: 0;
}
.top-section.-ranking .FS2_Recommend2_recommend {
  margin: 0;
}
.top-section.-ranking .FS2_Recommend2_recommend .CrossHead {
  display: none;
}
.top-section.-ranking .FS2_Recommend2_recommend a {
  font-weight: normal;
}
.top-section.-ranking .FS2_Recommend2_recommend + br {
  display: none;
}
.top-section.-ranking ul {
  display: flex;
  flex-wrap: wrap;
}
.top-section.-ranking ul li {
  float: none;
  display: flex;
  flex-direction: column;
  width: calc(100% / 5 - 10px);
  height: auto;
  margin: 0 5px;
  padding: 0;
  color: #4b4b4b;
  font-size: 10px;
  border: 0;
  text-align: left;
}
.top-section.-ranking ul li br {
  display: none;
}
.top-section.-ranking ul li img {
  width: 100%;
  height: auto;
}
.top-section.-ranking ul li .itemPrice {
  margin-top: auto;
}
.top-section.-ranking.-rank10 ul li {
  width: auto;
  flex: 1;
}

/* MALTOスタッフおすすめアイテム */
#topStaffItem .top-section__title,
#topReStock .top-section__title,
#topTopics .top-section__title {
  background: #b4ccb4;
}

#topStaffItem .item-list li {
  width: calc(100% / 4 - 10px);
}

#topTopics .top-section {
  width: calc(100% / 2 - 10px);
  margin: 0;
}
#topTopics .top-section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
}
#topTopics .top-section-inner .img {
  width: 270px;
  margin: 0 20px 0 0;
}
#topTopics .top-section-inner .text {
  width: calc(100% - 290px);
  margin: 0;
  font-size: 16px;
  text-align: left;
}
#topTopics .top-section-inner h3 {
  margin-bottom: .5em;
  font-weight: bold;
}

/*
  アンティーク
*/
.column-wrap {
  display: flex;
  justify-content: space-between;
}
.column-wrap > div {
  width: calc(100% / 2 - 12px);
  margin: 0;
}

.fs-body-category-antique-shop .column-wrap {
  margin-top: 35px;
}

/* コラム：スライダー */
#antiqueColumn .top-section-inner {
  padding-bottom: 10px;
}

/* アンティークニュース */
#antiqueNews .top-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 80px);
}
#antiqueNews h3 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

/* アンティーク買い付けレポート */
.antique-report {
  display: flex;
  margin: 20px 10px 10px;
}
.antique-report li {
  width: calc(100% / 4 - 40px);
  margin: 0 20px;
  font-size: 11px;
}

/* アンティーク以外のサイドメニュー */
.fs-sideMenu-sub {
  margin-top: 40px;
}
.fs-sideMenu-sub dd {
  margin-bottom: 10px;
  color: #8093b1;
  font-weight: bold;
  text-align: center;
  font-size: 17px;
}
.fs-sideMenu-sub dd ul li {
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  border: 1px solid #8093b1;
}
.fs-sideMenu-sub dd ul li span {
  position: relative;
  display: block;
  padding: 10px;
  color: #8093b1;
  background: #fff;
}
.fs-sideMenu-sub dd ul li span:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%238093b1%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.fs-sideMenu-sub dd ul li:hover {
  cursor: pointer;
}
.fs-sideMenu-sub dd ul li:hover ul {
  display: flex;
}
.fs-sideMenu-sub dd ul li ul {
  display: none;
  position: absolute;
  top: -1px;
  left: 100%;
  flex-wrap: wrap;
  width: 800px;
  border-left: 1px solid #8093b1;
  z-index: 100;
}
.fs-sideMenu-sub dd ul li ul li {
  width: calc(100% / 3);
  margin: 0;
  border: 0;
  border-bottom: 1px solid #8093b1;
  border-right: 1px solid #8093b1;
}
.fs-sideMenu-sub dd ul li ul li:nth-of-type(1), .fs-sideMenu-sub dd ul li ul li:nth-of-type(2), .fs-sideMenu-sub dd ul li ul li:nth-of-type(3) {
  border-top: 1px solid #8093b1;
}
.fs-sideMenu-sub dd ul li a {
  display: block;
  padding: 11.5px;
  color: #8093b1;
  font-size: 14px;
  background: #fff;
  font-weight: normal;
}

.antique-footer-info {
  display: none;
}

body:not(.fs-body-category-antique-shop) .antique-header-info {
  display: none;
}
body:not(.fs-body-category-antique-shop) .antique-footer-info {
  display: block;
}

/*
  商品一覧
*/
body:not(.fs-body-top, .fs-body-category, .fs-body-product) .fs-l-pageMain {
  width: calc(820px - 30px);
  margin-left: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px 10px;
}
body:not(.fs-body-top, .fs-body-category, .fs-body-product) .fs-l-pageMain__title, body:not(.fs-body-top, .fs-body-category, .fs-body-product) .fs-l-pageMain > h1.fs-c-heading.fs-c-heading--page {
  position: relative;
  margin: -20px -20px 20px;
  padding: 15px;
  background: #bdccd4;
  border-radius: 10px 10px 0 0;
  border: 0;
  color: #4b4b4b;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
}

.fs-c-productList {
  padding: 10px 0;
  background: #fff;
  border-radius: 10px 10px;
}

/* ページャー */
.fs-c-listControl {
  margin: 15px 0;
  justify-content: center;
}
.fs-c-listControl .fs-c-pagination__item {
  font-size: 20px;
}
.fs-c-listControl .fs-c-pagination__item.is-active {
  font-size: 25px;
  color: #000;
}

/* 商品一覧 */
.fs-c-breadcrumb {
  margin-bottom: 10px;
}

.fs-body-category .FS2_Recommend2_ranking_horizontal {
  background: #fff;
  border-radius: 10px;
}
.fs-body-category .FS2_Recommend2_ranking_horizontal .CrossHead {
  padding: 15px;
  background: #bdccd4;
  border-radius: 10px 10px 0 0;
  color: #4b4b4b;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
}
.fs-body-category .FS2_Recommend2_ranking_horizontal table {
  margin: 10px;
}

.fs-c-productList__list {
  grid-gap: 0;
  padding: 0 2.5px;
}
.fs-c-productList__list__item {
  margin: 0 7.5px;
  margin-bottom: 25px;
  padding: 0;
  border: 0;
  font-size: 500;
}
.fs-c-productList__list .fs-c-productName__name {
  margin-top: 5px;
  color: #000;
}
.fs-c-productList__list .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
  color: #000;
}
.fs-c-productList__list .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__addon {
  color: #000;
  font-size: 8px;
}

/* おすすめアンティーク */
#antiqueRecommend .item-list li {
  margin-bottom: 20px;
  color: #000;
  font-size: 11px;
}
#antiqueRecommend .item-list .itemName {
  display: block;
  font-weight: bold;
}
#antiqueRecommend .item-list .itemPrice {
  display: block;
  text-align: right;
  color: #4b4b4b;
}

/* ガイダンス */
.top-guidance {
  margin-top: 70px;
}
.top-guidance__title {
  text-align: center;
}
.top-guidance__title img {
  flex-shrink: 0;
}
.top-guidance__title span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
}
.top-guidance__title span:before, .top-guidance__title span:after {
  content: "";
  width: calc(50% - 4em - 40px);
  border: 1px solid #000;
}
.top-guidance .guidance-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 810px;
  margin: 70px auto;
  font-size: 15px;
}
.top-guidance .guidance-list li {
  width: calc(100% / 2);
}
.top-guidance .guidance-list li a:before {
  content: "・";
}
.top-guidance .guidance-list li:nth-child(even) {
  padding-left: 10%;
}

/*
  商品詳細
*/
.fs-l-productLayout {
  margin-bottom: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 10px 10px;
}
.fs-l-productLayout .cc-product-title {
  position: relative;
  margin: -20px -20px 20px;
  padding: 15px;
  background: #bdccd4;
  border-radius: 10px 10px 0 0;
  color: #4b4b4b;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
}

.fs-body-product .fs-l-pageMain {
  margin-bottom: 40px;
}
.fs-body-product .FS2_Recommend2_recommend {
  background: #fff;
  border-radius: 10px;
}
.fs-body-product .FS2_Recommend2_recommend .CrossHead {
  padding: 15px;
  background: #bdccd4;
  border-radius: 10px 10px 0 0;
  color: #4b4b4b;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
}
.fs-body-product .FS2_Recommend2_recommend ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 5px;
}
.fs-body-product .FS2_Recommend2_recommend ul li {
  float: none;
  display: flex;
  flex-direction: column;
  width: calc(100% / 5 - 10px);
  height: auto;
  margin: 0 5px 10px;
  padding: 0;
  color: #4b4b4b;
  font-size: 12px;
  border: 0;
  text-align: left;
}

/*
  暮らしの雑貨
*/
.fs-body-category-hitorigurashi-interior .fs-l-page > p > img {
  display: block;
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* マイページトップボタン */
.fs-c-buttonContainer--myPageTop {
  justify-content: center;
  padding: 20px 0;
  text-align: center;
}
.fs-c-buttonContainer--myPageTop a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 70px;
  padding-right: calc(60px - 1em);
  background: #fff;
  text-align: center;
  border-radius: 100px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  border: 2px solid #ccd4dc;
}
.fs-c-buttonContainer--myPageTop a:after {
  margin-left: 1em;
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%234b4b4b%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* SEO用のタイトル一時非表示 */
.fs-c-heading--page {
  width: 1100px;
  margin: 0 auto;
  padding: 10px 0 0;
  border-bottom: 0;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  background-color: transparent;
}

.fs-l-pageMain .fs-c-heading--page {
  width: auto;
}

/*
  アンティークページのコラムスライダー
*/
#antiqueColumnSlider .fs-pt-carousel__slide__caption {
  background: none;
  color: #000;
  position: static;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
#antiqueColumnSlider .fs-c-slick .slick-slide {
  opacity: .6;
}
#antiqueColumnSlider .fs-c-slick .slick-active {
  opacity: 1;
}
#antiqueColumnSlider .fs-c-slick .slick-prev,
#antiqueColumnSlider .fs-c-slick .slick-next {
  top: unset;
  bottom: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
}
#antiqueColumnSlider .fs-c-slick .slick-prev:before,
#antiqueColumnSlider .fs-c-slick .slick-next:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.03%2015.37%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill%3Anone%3Bstroke%3A%23666%3Bstroke-miterlimit%3A10%3Bstroke-width%3A1.5px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpolyline%20class%3D%22cls-1%22%20points%3D%220.48%200.57%208.87%207.68%200.48%2014.8%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
#antiqueColumnSlider .fs-c-slick .slick-prev {
  left: 90px;
}
#antiqueColumnSlider .fs-c-slick .slick-prev:before {
  transform: rotate(180deg);
}
#antiqueColumnSlider .fs-c-slick .slick-next {
  right: 110px;
}

/*# sourceMappingURL=style_new.css.map */