/*CSS共通PC*/
/* ■-------- ページ共通--------■ */
body {
		font-family: 'Roboto', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
		font-weight: 400;min-width: 778px;
}
h1, h2, h3 {
		font-weight: 700;
}
h1{margin: 0;	line-height: inherit;}

.price {
		font-family: 'Roboto Condensed', 'Noto Sans JP', sans-serif;
		font-weight: 700;
		color: #e60012; /* 家電ECっぽい赤 */
}
/*h2*/
.fs-p-heading--lv2 {
		border-left: 4px solid #ff8000;
		border-bottom: inherit;
		padding-left: 10px;
}


img {
		display: block;
		border: 0;
		padding: 0;
		margin: 0;
}
ul {
		list-style: none;
		padding-left: 0;
}
ul li {
		margin: 0.5rem;
}
hr{
color:#efebe6;
}


/*  ECサイトロゴ */
.fs-p-logo {
		display: flex;
		flex-direction: column;
		align-items: start;
		width: fit-content;
		width: 200px;
}
/* アイコン */
i {
		font-size: 3rem;
		margin: 0.5rem 1rem;
}
/*アイコン　フッター*/
.fs-p-footerNavigation i {
		font-size: 2rem;
		margin: 0.5rem 1rem;
}
/*お気に入りハート*/
.fs-c-button--particular.fs-c-button--removeFromWishList--icon::before {
		content: "\e91a";
		color: #F0829C;
}
/*パンくずリスト*/
.fs-c-breadcrumb {
		width: 100%;
                max-width:1200px;
		margin: 20px auto;
}
/*全ページのgapクリア*/
.fs-c-documentColumn__content {
		gap: 0;
}

/*右サイドのTOPへ戻る、カートマーク*/

.fs-p-scrollingCartButton
 {
    right: 1%;
}
.fs-p-footerPageTop {
    left: inherit;
    right: 1%;
}


/*ハンバーガーメニュー*/
.fs-p-drawerButton {
    cursor: pointer;
    display: inline-block;
    padding: 8px;
    text-align: center;
}


/* ■--------　ヘッダー　--------  */
/*--.fs-l-header__leftContainer {
		grid-row: 1;
		grid-column: 4;
		align-self: center;
}

.fs-l-header__contents {
		grid-template-rows: auto auto;
		grid-template-columns: 20% 20% 60%;
		max-width: 1216px;
		padding: 0;
		margin: auto;
}--*/

.fs-l-header__contents {
  display: grid;
  grid-template-columns: auto 1fr auto; /* 左:ロゴ、中:ユーティリティ、右:menu */
  align-items: center;
  width: 100%;
  max-width: none; /* 必要なら解除 */
  padding: 0 16px;
  box-sizing: border-box;
  gap: 16px; /* 任意：間隔 */
}
.fs-l-header__contents {
  display: grid;
  grid-template-areas:
    "h1-title h1-title h1-title h1-title"
    "logo . utility menu";
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1216px;
  margin: auto;
}
 h1.page_title{
  font-weight:normal;
}
.page_title{
  grid-area: h1-title;
  width:100%;
  font-size:12px;
}

.fs-p-logo {
  grid-area: logo;
}

.fs-l-header__utility {
  grid-area: utility;
}

.fs-l-header__leftContainer {
  grid-area: menu;
}



/* **サイト告知（フリーパーツ）↓↓ */
.fs-p-messageBoard {
		background-color: #f7f7f7;
		border: 1px solid #7c8790;
		border-radius: 3px;
		color: #3c3c3c;
		margin-bottom: 24px;
		padding: 16px;
		text-align: center;
}



/* ■-------- フッター--------  */
/*TOPへもどるボタン*/
.fs-p-footerPageTop {
	position: fixed !important;
	bottom: 5% !important;
	z-index: 100;
	max-width: none;
        width: 60px;
}
.fs-p-footerPageTop__link {
	overflow: hidden;
	text-indent: -999px;
	width: 32px;
	height: 32px;
	background-color: #514e4e;
	border-radius: 30px;
}
.fs-p-footerPageTop__link::before {
	font-family: "fs-icon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e937";
	display: block;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1.3;
	text-indent: 0;
	text-align: center;
}
.footer li a {
		color: #5b4843;
		transition: color 0.3s ease; /* 色が0.3秒かけて変化 */
}
.footer li a:hover {
		color: #cc6600; /* 落ち着いたオレンジ */
}
.footer li a::before {
	content: "";
	border: 4px solid transparent;
	border-right-width: 1px;
	border-left-color: currentColor;
	display: inline-block;
	height: 0;
	width: 0;
}
.footer li a::before {
	border-left-color: #FF8800;
}
a.fs-p-footerNavigationItem__link {
		color: #ff8000;
		transition: color 0.3s ease; /* 色が0.3秒かけて変化 */
}
a.fs-p-footerNavigationItem__link:hover {
		background-color: #fff2e6; /* 薄いオレンジ */
		color: #cc6600; /* 落ち着いたオレンジ */
}
.telBox {
		margin-bottom: 10px;
}
.telBox a {
		color: #fff;
}
.telBox .fs-c-button__label {
		background: #fff;
		color: #247165;
		margin: 10px auto;
		display: block;
		border-radius: 50px;
		font-size: 24px;
		font-weight: bold;
}
.fs-c-button--addToCart--detail.fs-c-button--primary {
		width: 100%;
}
.footer button {
		color: #fff;
}
.footer button a {
		color: #fff;
		font-size: 18px;
}
.tel-link {
		display: inline-block;
		text-decoration: none;
		color: #fff; /* ボタンの文字色 */
		background-color: #007bff; /* 任意 */
		padding: 12px;
		border-radius: 4px;
		font-size: 15px;
		line-height: 1.6;
}
.tel-number {
		display: inline-flex;
		align-items: center; /* アイコンと文字を縦中央揃え */
		margin-top: 8px; /* 上のテキストと間隔をとる */
		font-size: 1.1em;
}
.tel-number i {
		margin-right: 6px;
		font-size: 1.2em;
}
.contact-link {
		display: inline-flex; /* 横並び */
		align-items: center; /* 高さ揃える */
		text-decoration: none;
		padding: 10px 16px;
		background-color: #247165;
		color: #fff;
		border-radius: 4px;
		font-size: 16px;
}
.contact-link i {
		margin-right: 8px; /* アイコンと文字の間にスペース */
		font-size: 1.1em; /* 高さバランス調整 */
}
.fs-c-button__label {
		margin: auto;
}

.fs-c-button--primary {
  min-width: 240px;
  background: #247165;
  border: 1px solid #247165;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  padding: 0.8em 1.6em 0.6em;
  box-shadow: 0 0 2px #b2b2b2;
}
.fs-c-button--primary:hover {
  opacity: 0.8;
}
.fs-c-button--primary:hover, .fs-c-button--primary:visited, .fs-c-button--primary:active {
  color: #ffffff;
  text-decoration: none;
}

.mark_n{
    padding: 0 10px;
    background: #247165;
    border-radius: 3px;
    color: #ffffff;
margin-left: 1rem;
}
.mark_s{
    padding: 0 10px;
    background: #5b4843;
    border-radius: 3px;
    color: #ffffff;
margin-left: 1rem;
}




/*コピーライト*/
.fs-p-footerCopyright {
	color: #262626;
	background-color: #efebe6;
	text-align: center;
	padding: 40px;
}
/*詳細検索*/
.fs-p-productSearch__formSwitch {
	cursor: pointer;
	background: rgb(239, 235, 230);
	line-height: 2;
	padding: 0 20px;
}
.fs-p-productSearch__searchButtonContainer {
    display: flex;
    gap: 10px; /* ボタンの間隔 */
    justify-content: center; /* 中央寄せ */
    margin-top: 20px;
}

.submitBtn,
.resetBtn {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

/* 検索ボタン色 */
.submitBtn {
    background-color: #247165;
    color: #fff;
    border-color: #247165;
}

.submitBtn:hover {
    background-color: #1b574e;
}

/* リセットボタン色 */
.resetBtn  {
    background-color: #f5f5f5;
    color: #333;
}

.resetBtn :hover {
    background-color: #e0e0e0;
}
.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
	border-color: #ff8000;
}
.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
	background: #ff8000;
}

/*お問い合わせフォーム*/



/*カート*/
.fs-c-accountService {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 80%;
}
.fs-c-accountService__page--accountDelete {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* ■-------- TOPページ--------■ */

.fs-p-heading--lv2:not(:first-child) {
    margin-top: 3em;
}

/*新着情報　日付*/
time {
		background: #6c6c6c !important;
		color: #fff !important;
    line-height: 1.2;
    padding: 2px 4px 1.6px;
        font-weight: 200;
}
/*新着情報*/
.fs-pt-list__item a:hover {
		text-decoration: none;
}
.cate .fs-p-sideMenu {
		margin-bottom: 80px;
}
/*TOP おすすめ商品　新着商品 スライダー解除*/
/*配送業者タグ　非表示*/
.fs-c-productListCarousel__list__item .sagawa, .fs-c-productListCarousel__list__item .art{
display:none;
}
#fs_Top .fs-c-productListCarousel.fs-c-slick {
		display: block;
}
#fs_Top span.fs-c-productListCarousel__ctrl {
		display: none !important;
}
#fs_Top .fs-c-productListCarousel__list {
		display: block;
}
#fs_Top div.slick-track {
		display: grid !important;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr!important;
		grid-gap: 16px;
		width: 100% !important;
		transform: none !important;
}
#fs_Top div.slick-track::before {
		content: none !important;
}
#fs_Top article.fs-c-productListCarousel__list__item.fs-c-productListItem {
		min-width: 100%;
		margin: 0;
}
.flex-box {
		display: flex;
		justify-content: space-around;
		margin: 2rem auto;
		align-items: center;
		padding-inline-start: initial;
		flex-wrap: nowrap;
}
.marker {
		background: linear-gradient(transparent 70%, rgba(25, 161, 8, 0.5) 0);
}
/* ■-------- サイド　アサイド--------■ */
/*非表示*/
aside .fs-p-headerUtilityMenu {
	display: none;
}
.fs-l-sideArea {
		max-width: 240px;
		width: 240px;
}
/*サイドメニューの開閉*/
.fs-p-sideMenu .fs-pt-menu__submenu {
		margin-left: 2em;
}
/*サイドメニューのactive*/
.fs-pt-menu__item.active > .fs-pt-menu__heading {
		background: #eee;
}
.fs-p-sideMenu a:hover {
		background: #efebe6;
		color: #5b4843;
}
.fs-p-sideMenu .fs-pt-menu__link--lv1::after {
		content: "\e90c";
		color: #ff8000;
}
/*ヘッダーメニューアイコン*/
.fs-p-headerUtilityMenu__list{
font-size: inherit;}
.fs-p-headerUtilityMenu__list a::before{
display:initial;
border:none;
padding-right: 0.5rem;
font-size:inherit;
}

.fs-p-headerUtilityMenu__list .new_customer  a::before{
font-family: "Font Awesome 6 Free"!important;
  content: "\f05a";
  font-weight: 900;
}
.fs-p-headerUtilityMenu__list .fs-p-headerUtilityMenu__logout a::before{
font-family: "Font Awesome 6 Free"!important;
  content: "\f08b";
  font-weight: 900;
}
.fs-p-headerUtilityMenu__list .fs-p-headerUtilityMenu__login a::before{
font-family: "Font Awesome 6 Free"!important;
  content: "\f090";
  font-weight: 900;
}
.fs-p-headerUtilityMenu__list .shopinfor a::before{
font-family: "Font Awesome 6 Free"!important;
  content: "\f54f";
  font-weight: 900;
}
.fs-p-headerUtilityMenu__list .cart a::before{
font-family: "Font Awesome 6 Free"!important;
  content: "\f07a";
  font-weight: 900;
}


/* ■-------- 商品一覧ページ（商品グループ）--------■ */
/*配送業者タグ　非表示*/
.fs-c-productList__list .sagawa, .fs-c-productList__list .art{
display:none;
}

/*在庫切れ表示　非表示*/
.fs-c-button--viewProductDetail.fs-c-button--plain {
	display: none;
}

.fs-c-sortItems__list__item.is-active {
	background: #ff8000;
	color: #ffffff;
}
.fs-c-productListItem__prices.fs-c-productPrices .fs-c-productPrice__main__price.fs-c-price {
		/* font-weight: bold; */
		font-size: 140%;
}
.fs-c-productList__list__item {
		position: relative;
}
/*拡大アイコン*/
.fs-c-productListItem__viewMoreImageButton.fs-c-buttonContainer {
		display: none;
}
/*カートに入れるボタン*/
.fs-c-button--addToCart--list.fs-c-button--plain {
		display: none;
}
/* ■-------- 商品詳細ページ--------■ */

/*商品詳細ページ　右エリア*/
.shadow-box {
		border: 1px solid #e5e5e5;
		padding: 1rem 2rem;
		box-shadow: 2px 2px 2px #e5e5e5;
}
/*商品詳細ページ お問い合わせボタン*/
.fs-c-inquiryAboutProduct {margin: 3rem auto!important;}

/*他社比較表　table*/
.comparison-table {
		width: 100%;
		border-collapse: collapse;
		text-align: center;
		margin: 20px 0;
		font-family: sans-serif;
}
.comparison-table th, .comparison-table td {
		border: 1px solid #ccc;
		padding: 0.8em;
		text-align: center;
		vertical-align: middle;
}
.comparison-table thead th {
		background: #f5f5f5;
}
.comparison-table td span.symbol {
		font-size: 200%;
		display: block;
}
.comparison-table td span.caution {
		font-size: 80%;
}
/* 色分け（画像に合わせた雰囲気） */
.happy {
		background-color: #fff3d8;
		color: #ec6d10;
		font-weight: bold;
		font-size: 120%;
		width: 20%;
}
.a {
		background-color: #f3fff0;
		color: #5b9746;
		width: 20%;
}
.b {
		background-color: #e3f2fd; /* 薄い青 */
		color: #1976d2; /* 濃い青 */
		width: 20%;
}
.freemarket {
		background-color: #fbe9e7; /* 薄い赤 */
		color: #d84315; /* 濃い赤 */
		width: 20%;
}
/*商品詳細ページ(商品情報)*/
.fs-l-productLayout__item.fs-l-productLayout__item--2 {
		position: sticky !important;
		top: 1% !important;
		border: 1px solid #d0b7a4;
		/*box-shadow: -1px 1px 5px #d0b7a4;*/
		padding: 10px;
		background: #ffffff;
}
/*徹底したクリーニング*/
/*.free_ec_wrap.detail h3 {
		font-size: 24px;
		text-align: center;
}
.seisou_reizouko {}
.reizoukoWrap {
		margin: 0 auto 40px;
}
.reizoukoBox {
		margin: 0 auto 40px;
}
.reizoukoBox.flexWrap {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
}
.seisou_reizouko h4 {
		font-size: 24px;
		color: #4380A7;
		text-shadow: 1px 1px 1px rgba(83, 148, 189, 0.43);
		max-width: 100%;
		flex-basis: 100%;
}
.reizoukoBox.flexWrap div {
		margin-bottom: 20px;
}
.reizoukoBox.flexWrap .flex {
		flex-basis: 48%;
		max-width: 48%;
}
.reizoukoBox p.title {
		font-weight: bold;
		color: #262626;
		border-bottom: 2px solid #eee;
}
.reizoukoBox p {
		font-size: 16px;
		line-height: 1.55;
		color: #5b4843;
		margin-bottom: 8px;
}
.free_ec_wrap .reizoukoWrap {
		display: flex;
		flex-flow: row wrap;
}
.free_ec_wrap .reizoukoBox img {
		text-align: center;
		display: block;
		margin: auto;
}
.free_ec_wrap .reizoukoBox.flexWrap {
		width: 732px;
}
#cleaning {
		margin-bottom: 94px;
}
#cleaning h4 {
		margin-bottom: 24px;
}
#cleaning h4 img {
		width: 100%;
}
.kodawari_pict_center {
		text-align: center;
}
.kodawari_pict_center img {
		border: 1px solid #7F9DB9;
}
.sentakuki_seisou ul {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: stretch;
		align-content: space-between;
}
.sentakuki_seisou ul li {
		flex: 0 1 auto;
		width: 48%;
		margin-bottom: 40px;
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: stretch;
		align-content: space-between;
}
.sentakuki_seisou .dousatest li {
		width: 30%;
}
.dousatest li div {
		margin: auto;
}
.reizouko_seisou {
		text-align: center;
		margin: 16px auto 0;
}
.sentakuki_seisou h5 {
		font-size: 24px;
		color: #4380A7;
		text-shadow: 1px 1px 1px rgba(83, 148, 189, 0.43);
}
.sentakuki_seisou li p {
		font-size: 16px;
		line-height: 1.55;
		color: #95b696;
		margin-bottom: 8px;
}
.sentakuki_seisou li .hosoku {
		font-size: 12px;
		text-indent: -1em;
		padding-left: 1em;
}*/

/*お気に入りページ*/
.fs-l-additionalProduct.fs-l-additionalProduct--wishlist {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

@media screen and (min-width: 1200px) {
  .fs-p-drawerButton {
    display: none;
}

}
/**ショッピングカート*/
/*ショッピングカートのご利用方法ボタン*/
.fs-c-continueShopping{
    text-align: right;
    padding-top:  1rem;
    margin: 5rem;
}

/*ご注文手続き*/
/*お支払い金額*/
@media screen and (min-width: 960px) {
   [class^=fs-body-checkout] .fs-l-checkout__sideColumn {
        position: sticky!important;
        top: 10px!important;
    }
}