@charset "utf-8";
/* CSS Document */

/*共通設定*/
html{
	min-width: 769px;
}
body {
	font-family: "IBM Plex Sans JP", serif;
	font-weight: 400;
	font-size: 15px;
	font-style: normal;
	color: #121212BF;
}

/******************** PT初期設定リセット /********************/
.block-switch-banner {
    width: 100% !important;
}
.container{
	width: 100% !important;
	max-width: 1400px;
}
.block-top-shop-feature ul.block-top-shop-feature--list {
    width: 100% !important;
    max-width: 1400px;
}
.block-recent-item {
    width: 100% !important;
    max-width: 1400px;
}

/* ランキング */
.block-top-event{
	padding-left: 20px;
	padding-right: 20px;
}
.block-ranking-r ul.block-ranking-r--items {
    width: 100% !important;
    margin-left: 0 !important;
	margin-right: 0 !important;
}
.block-top-event--header.block-top-event--header-ranking{
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 0 3rem !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: center;
}
.block-ranking-r dl::after{
	border-radius: 50%;
}
.block-ranking-r--goods-description {
    min-width: 120px;
}

/* カテゴリリンク */
.block-top-category{
	padding-left: 20px;
	padding-right: 20px;
}

/* お知らせ */
.block-top-topic{
    margin: 50px 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 30px;
    background: #ebf5f7;
    border-radius: 1.8rem;
}
.block-top-topic--header{
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 0 1.5rem !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	text-align: center;
}
.block-top-topic--items{
	margin-bottom: 15px;
}
.block-top-topic--items li{
	border: 0 !important;
	padding: 14px 0;
}
.block-top-topic--items li a:hover dd {
	color: #777;
	text-decoration: none !important;
}
.block-top-topic--items dd div p {
    width: 100% !important;
    max-width: 840px !important;
}
.block-top-topic--next-page {
	position: relative !important;
	display: block;
	margin-left: 94%;
}
.block-top-topic--next-page a {
    position: relative;
    border-radius: 50%;
	border: 1px solid #74AEBE;
    padding: 0.3rem 0 0 !important;
    font-size: 14px;
    color: #0B556A;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	line-height: 1.3;
	text-align: center;
	word-wrap: break-word;
	word-break: break-word;
	overflow-wrap: break-word;
}
.block-top-topic--next-page a::before {
	display: none;
}
.block-top-topic--next-page a:hover {
    border: 1px #0B556A solid;
}

/* 最近チェックしたアイテム */
.pane-right-menu{
	max-width: 1400px;
}
#block_of_itemhistory{
	padding-left: 20px;
	padding-right: 20px;
}
.block-thumbnail-h--goods-image figure {
    width: auto !important;
    height: auto !important;
}
.block-thumbnail-h--goods-description{
	min-width: 120px;
}
.block-thumbnail-h--variation {
    display: none;
}
.block-thumbnail-h--stock {
    display: none;
}

/* SP/PC切替 */
.block-switcher {
	width: 100% !important;
	max-width: 360px;
    border-radius: 1.8rem;
}
.block-switcher li div {
    border-radius: 0 1.8rem 1.8rem 0;
}

/* footer */
.block-footer .footer_container {
    max-width: 400px !important;
}
.footer_container .block-footerlogo {
    padding: 15px 0 !important;
}

/* トップへ戻るボタン */
.block-page-top{
	display: none !important;
}

/********************フェードイン効果/********************/
.fadein {
	opacity : 0;
	transform: translateY(0);
	transition: 2s;
}

.fadeInUp {
	opacity: 0;
	transform: translateY(80px);
}
.fadeInDown {
	opacity: 0;
	transform: translateY(-80px);
}
.fadeInLeft {
	opacity: 0;
	transform:  translate(-40px, 0);
}
.fadeInRight {
	opacity: 0;
	transform: translateX(40px);
}
@keyframes fadeIn {
	0% {
	}
	100% {
		opacity: 1;
		transform: translate(0);
	}
}
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

/******************** アニメーション効果 /********************/
/* メインエリア円形キャッチ */
.top_area .top_area_circle {
  animation: rotation 38s linear infinite, fadeinCircle 4s ease-in forwards;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes fadeinCircle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* キリン吹き出し */
.top_area .top_area_kirin_bubble {
	animation: floating-yy 3s ease-in-out;
	animation-iteration-count: 1;
}
@keyframes floating-yy {
  0% {
    transform: translateY(600px);
  }
  30% {
    transform: translateY(600px);
  }
  80% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.top_area .top_area_kirin_bubble .top_area_bubble {
	animation: bubble-animation 4s ease-in-out;
	animation-iteration-count: 1;
}
@keyframes bubble-animation {
  0% {
    transform: translateY(0);
	opacity : 0;
  }
  80% {
    transform: translateY(0);
	opacity : 0;
  }
  100% {
    transform: translateY(0);
	opacity : 1;
  }
}

/* サイズから選べるイメージ */
.size_flame_r img{
		animation: UpDown 5.5s infinite ease-in-out alternate;
}
@keyframes UpDown{
	0%{
	transform: translateY(-210px);
	}
	100%{
	transform: translateY(-20px);
	}
}

/* キャッチコピー */
.site_catch_copy_l{
	animation: step-fluffy 8s steps(1) infinite;
}
@keyframes step-fluffy {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-2.5%, -4.5%, 0);
  }
  50% {
    transform: translate3d(-1.5%, 4.5%, 0);
  }
  75% {
    transform: translate3d(2.5%, 1.5%, 0);
  }
  100% {
    transform: translate3d(1.5%, -2.5%, 0);
  }
}
.site_catch_copy_c .title {
  animation: catch-floating 4s ease-in-out infinite alternate-reverse;
}
.site_catch_copy_c .text {
  animation: catch-floating 6s ease-in-out infinite alternate-reverse;
}
@keyframes catch-floating {
  0% {
    transform: translate(-2.5%, -20%);
  }
  100% {
    transform: translate(2.5%, 20%);
  }
}
.site_catch_copy_r{
	animation: step-rotate 6s steps(1) infinite;
}
@keyframes step-rotate {
  0% {
    transform: rotate(.00005deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(.00005deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(.00005deg);
  }
}

/* 金額別で探す */
.price_flame_l .icon_price {
	animation: step-price 8s steps(1) infinite;
}

@keyframes step-price {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-6.5%, 0, 0);
  }
  50% {
    transform: translate3d(-5.5%, 0, 0);
  }
  75% {
    transform: translate3d(6.5%, 0, 0);
  }
  100% {
    transform: translate3d(5.5%, 0, 0);
  }
}

/************************ header ************************/
.header-wrap {
	position: fixed;
	width: 100%;
	z-index: 999;
	height: 200px;/*2025/12/16修正*/
	display: grid;
}

/*ショップロゴ・カテゴリアコーディオン・会員SNSアイコン*/
.block-header-top{
	width: 100%;
	background: #fff;
	height: 60px;
	box-shadow: 0px 1px 0px 0px #E1E1E1;
	display: flex;
	order: 3;
}
.block-header-logo{
	margin-left: 20px;
	margin-right: 25px;
}
.block-header-logo--img{
	height: 44px;
}
.block-headernav-link--btn {
	height: 40px;
    line-height: 42px;
	padding: 0 45px 0 50px;
	font-size: 14px;
}
.block-headernav-link--btn::before {
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
    content: "";
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #D7D7D7;
  border-radius: 5px;
}
.block-headernav-link--list_main, .block-headernav-link--list_child{
	font-size: 90%;
}

.block-header-usernav {
    padding-left: 32px;
    padding-right: 10px;
}
.block-header-usernav li{
	padding: 0 13px !important;
	margin: 0 !important;
}
.block-header-usernav li a{
	background-image: none !important;
	background-color: transparent !important;
	padding: 0 !important;
	font-size: 9px;
    letter-spacing: -0.08em;
    text-align: center;
    color: #2B2B2B !important;
}
.block-header-usernav li a:hover{
	opacity: 0.7;
}
.block-header-usernav li img{
	height: 25px;
	vertical-align: middle;
}

.block-header-snsrnav{
	display: flex;
	align-items: center;
	padding: 0 10px;
}
.block-header-snsrnav li{
	padding: 0 13px;
}
.block-header-snsrnav li a:hover{
	opacity: 0.7;
}
.block-header-snsrnav li img{
	height: 25px;
	vertical-align: middle;
}

/*検索BOX・グローバルメニュー*/
.block-header-globaltop{
	width: 100%;
	background: #15151D;
	padding: 7px 0;
	height: 40px;/*2025/12/16修正*/
	display: flex;
	order: 1;
}
.block-header-globaltopin{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.block-global-search {
	max-width: 300px;
	width: 100% !important;
	margin-right: 40px;
}
.block-global-search form{
	width: 100%;
	height: 26px;/*2025/12/16修正*/
	padding: 0 !important;
}
input.block-global-search--keyword {
	line-height: 24px;/*2025/12/16修正*/
	border: 0;
	height: 26px;/*2025/12/16修正*/
	border-radius: 26px !important;/*2025/12/16修正*/
	font-size: 13px;
}
button.block-global-search--submit {
	position: absolute;
    top: 3px;
    right: 3px;
    width: 40px;
    height: 20px;/*2025/12/16修正*/
    border-radius: 26px;/*2025/12/16修正*/
	padding: 0 !important;
	background: #15151D url(/img/shopstore/sukimaya/common/icon_search.png) top 45% left 45% no-repeat;
	background-size: 14px;/*2025/12/16修正*/
}
button.block-global-search--submit:hover {
    background-color: #0b556a;
}

.block-header-globalnav{
	padding: 0 !important;
	display: flex;
}
.block-header-globalnav li {
	border: 0 !important;
	padding: 0 20px 0 0;
}
.block-header-globalnav li a {
	color: #fff;
}
.block-header-globalnav li a:hover {
	color: #ccc;
}

/*メインメニュー*/
.block-header-mainmenu{
	width: 100%;
	height: 50px;
	background: #253344;
	display: flex;
	align-items: center;
	order: 2;
}
.block-header-mainmenu .container{
	display: flex;
	justify-content: center;
}
.block-header-mainmenu .block-header-logo{
	display: none;
}
.block-header-mainmenu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 20px;
}
.block-header-mainmenu ul li{
	margin: 0 1.3rem;
}
.block-header-mainmenu ul li a{
	color: #fff;
	font-size: 14px;
	/*font-weight: bold;*/
}
.block-header-mainmenu ul li a:hover{
	color: #ccc;
}

/*ヘッダースクロール設定*/
.HeightMin {
	position: fixed;
	z-index: 9999; /*最前面へ*/ height: 90px;/*2025/12/16修正*/
	animation: DownAnime 1s forwards;
	overflow: hidden;
	/*box-shadow: 0 2px 10px #d5d5d5;*/
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*.HeightMin .block-header-globaltop{
	order: 3;
}
.HeightMin .block-header-mainmenu{
	order: 2;
}
.HeightMin .block-header-top{
	order: 1;
}*/
.HeightMin .block-header-mainmenu .block-header-logo{
	display: grid;
	margin-right: 0;
}
.HeightMin .block-header-mainmenu .block-header-logo .block-header-logo--img{
	height: 30px;/*2025/12/16修正*/
}
.HeightMin .block-header-mainmenu ul li{
	margin: 0 0.9rem;
}

/*小スライダー*/
.sphead_slider {
	width: 100%;
	background: #fff;
	order: 4;
}
.sphead_sliderin {
	margin: 0 auto;
	padding: 0 10px 10px;
	max-width: 1080px;/*2025/12/16修正*/
	width: 100%;
	box-sizing: border-box;
}
.sphead_slider-img {
	margin: 0 5px;
}
.sphead_slider-img img {
	height: auto;
	max-height: 40px;/*2025/12/16追加*/
}
.sphead_slider .slick-dots {
	display:none !important;
}

.header_end{
	height: 0;
}

/************************ トップスライダー ************************/
@media screen and (min-width:1260px) {
	.top_area{
		position:relative;
		background: url("/img/shopstore/sukimaya/top/bg_top_area.webp") no-repeat;
		background-size: cover;
		background-position: center center;
		width: 100%;
		height: 820px;
		margin-bottom: 50px;
		overflow: hidden;
	}

	.top_area .top_area_circle{
		position: absolute;
		z-index: 6;
		bottom: 10rem;
		left: 54rem;
		width: 13%;
		max-width: 230px;
		min-width: 180px;
	}
	.top_area .top_area_rack{
		position: absolute;
		z-index: 5;
		bottom: 5%;
		right: 0;
		width: 47%;
		max-width: 940px;
	}
	.top_area .top_area_kirin_bubble{
		position: absolute;
		z-index: 7;
		bottom: -10%;
		right: 19%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 23%;
		max-width: 440px;
	}
}
@media screen and (min-width:869px) and (max-width:1259px) {
	.top_area{
		position:relative;
		background: url("/img/shopstore/sukimaya/top/bg_top_area.webp") no-repeat;
		background-size: cover;
		background-position: center center;
		width: 100%;
		height: 600px;
		margin-bottom: 50px;
		overflow: hidden;
	}
	.top_area .top_area_circle{
		position: absolute;
		z-index: 6;
		top: 2%;
		left: 33rem;
		width: 17%;
		min-width: 160px;
	}
	.top_area .top_area_rack{
		position: absolute;
		z-index: 6;
		bottom: 5%;
		right: 0;
		width: 44%;
	}
	.top_area .top_area_kirin_bubble{
		position: absolute;
		z-index: 7;
		bottom: -8%;
		right: 17.5%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 23%;
	}
}
@media screen and (max-width:868px) {
	.top_area{
		position:relative;
		background: url("/img/shopstore/sukimaya/top/bg_top_area.webp") no-repeat;
		background-size: cover;
		background-position: center center;
		width: 100%;
		height: 680px;
		margin-bottom: 50px;
		overflow: hidden;
	}
	.top_area .top_area_circle{
		position: absolute;
		z-index: 6;
		bottom: 10%;
		left: 0.2rem;
		width: 17%;
		min-width: 160px;
	}
	.top_area .top_area_rack{
		position: absolute;
		z-index: 6;
		bottom: 1%;
		right: 0;
		width: 54%;
		max-width: 260px;
	}
	.top_area .top_area_kirin_bubble{
		position: absolute;
		z-index: 7;
		bottom: -14%;
		right: 19%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 40%;
		max-width: 170px;
	}
	
}

.top_area .top_area_rack img{
	width: 100%;
}

.top_area .top_area_wave{
	position: absolute;
	z-index: 8;
	left: 0;
	bottom: -6px;
	width: 100%;
}
.top_area .top_area_wave img{
	width: 100%;
	vertical-align: bottom;
}

/************************ コンテンツ共通エリア(グレーフレーム)************************/
.contents_area{
	width: 100%;
	position: relative;
}

.c-line.-left::before, .c-line.-right::after {
    height: 100%;
    top: 0px;
}
.c-line.-left::before {
    left: 0px;
}
.c-line.-right::after {
    right: 0px;
}
@media screen and (min-width:869px) {
	.c-line.-left::before, .c-line.-right::after {
		content: "";
		display: block;
		background-color: #F2F2F2;
		position: absolute;
		z-index: 0;
		pointer-events: none;
		max-width: 20rem;
		width: calc((200 / 1920)* 100%);
	}
}
@media screen and (max-width:868px) {
	.c-line.-left::before, .c-line.-right::after {
		content: "";
		display: block;
		background-color: #F2F2F2;
		position: absolute;
		z-index: 0;
		pointer-events: none;
		max-width: 11rem;
		width: calc((110 / 375)* 100%);
	}
}
.c-line.-transit-left-top::before {
    border-radius: 0px 1.5rem 0px 0px;
}
.c-line.-transit-left-bottom::before {
    border-radius: 0px 0px 1.5rem 0px;
}
.c-line.-transit-left::before {
    border-radius: 0px 1.5rem 1.5rem 0px;
}
.c-line.-transit-right-top::after {
    border-radius: 1.5rem 0px 0px;
}
.c-line.-transit-right-bottom::after {
    border-radius: 0px 0px 0px 1.5rem;
}
.c-line.-transit-right::after {
    border-radius: 1.5rem 0px 0px 1.5rem;
}

/************************ 見出し共通スタイル ************************/
.heading01 {
    display: flex;
    align-items: flex-end;
	margin-bottom: 3rem;
}
.heading01_title {
	position: relative;
	margin-right: 3.4rem;
}
.heading01_title_main {
	line-height: 1;
	width: auto;
}
.heading01_title_main img {
	width: 71px;
	vertical-align: bottom;
	display: block;
	margin: 0 -40px 0 auto;
}
@media screen and (max-width:868px) {
	.heading01_title_main img {
		width: 51px;
		margin: 0 -28px 0 auto;
	}
}
.heading01_title_main h2{
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.heading02 {
    display: flex;
    align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
}
.heading02 img {
	width: 105px;
	vertical-align: bottom;
	display: block;
	margin-right: 1.5rem;
}
@media screen and (max-width:868px) {
	.heading02 img {
		width: 70px;
	}
}
.heading02 h2{
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.heading02 h2 span{
	font-size: 34px;
    color: #ce5811;
}

.heading03 {
    display: flex;
    align-items: flex-end;
	justify-content: center;
	margin-bottom: 3rem;
}
.heading03_title {
	position: relative;
	margin-right: 3.4rem;
}
.heading03_title_main {
	line-height: 1;
	width: auto;
}
.heading03_title_main h2{
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.heading03 img {
	width: 61px;
	vertical-align: bottom;
	display: block;
	margin-left: 3.4rem;
}
@media screen and (max-width:868px) {
	.heading03 {
		margin-bottom: 4rem;
	}
	.heading03_title {
		margin-right: 0.5rem;
	}
	.heading03 img {
		width: 50px;
		margin-left: 0.5rem;
	}
}

.heading_subtitle {
	border-color: #253344;
	background: #253344;
	color: #fff;
	font-size: 14px;
	height: 1.9rem;
	line-height: 2.2rem;
	padding: 0 1rem 0 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    border-top: solid 1px;
    border-right: solid 1px;
    border-bottom: solid 1px;
    border-radius: .3rem .3rem .3rem 0;
    -webkit-transform: skewX(19deg) rotate(.00001deg);
    transform: skewX(19deg) rotate(.00001deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    letter-spacing: 0;
}
.subtitle_inner {
    position: relative;
    z-index: 1;
    -webkit-transform: skewX(-19deg) rotate(.00001deg);
    transform: skewX(-19deg) rotate(.00001deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.subtitle_inner::before {
    content: '';
    display: block;
    height: 1px;
	width: 1rem;
	margin-right: 0.5rem;
	background: #fff;
}
.subtitle_inner::after {
    content: '';
    display: block;
    width: 12%;
	max-width: 33px;
    height: 100%;
	border: 1px solid inherit;
    border-top: none;
    border-right: none;
    border-radius: .3rem 0 0 .3rem;
    background-color: #253344;
    position: absolute;
    top: 0;
    left: -8%;
    z-index: 0;
    box-sizing: content-box;
}

/************************ 大洋商品　キャンペーン ************************/
.camp_area{
	position: relative;
	z-index: 20;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.camp_area_copy01{
	font-size: 24px;
	color: #0b556a;
	text-align: center;
	margin-bottom: -80px;
	padding-top: 80px;
	vertical-align: middle;
}
.camp_area_copy01 img{
	height: 40px;
	margin-left: 15px;
	vertical-align: middle;
}
.camp_area_copy02{
	font-size: 22px;
	color: #0b556a;
	text-align: center;
	margin-top: -80px;
	padding-bottom: 80px;
	vertical-align: middle;
}
.camp_area_copy02 img{
	height: 70px;
	margin-right: 15px;
	vertical-align: middle;
}
.camp_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	/*justify-content: flex-start;*/
	gap: 30px;
	padding: 120px 0 100px;
}
@media screen and (min-width: 1160px) {
	.camp_list li {
		max-width: calc(25% - 30px);
		flex: 1 1 calc(25% - 30px);
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.camp_list li {
		max-width: calc(33.333% - 20px);
		flex: 1 1 calc(33.333% - 20px);
	}
}
.camp_list li img{
	border-radius: 8rem;
	margin-bottom: 20px;
}
@media screen and (max-width: 868px) {
	.camp_area{
		position: relative;
		z-index: 20;
		width: 85%;
		margin: 0 auto;
		padding: 0 20px;
	}
	.camp_list{
		display: flex;
		flex-flow: column;
		/*flex-wrap: wrap;
		justify-content: flex-start;
		gap: 15px;*/
		padding-bottom: 100px;
	}
	.camp_list li {
		margin-bottom: 20px;
		/*max-width: calc(50% - 5px);
		flex: 1 1 calc(50% - 15px);*/
	}
	.camp_list li img{
		border-radius: 18rem;
		margin-bottom: 20px;
	}
}
.camp_list li a{
	display: block;
	text-decoration: none;
}
.camp_list li span{
	display: block;
	text-align: center;
}

/************************ こんな収納のお悩みありませんか？ ************************/
.utilization_area{
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}
.utilization_flame {
	width: 100%;
	margin: 0;
	border-radius: 1.5rem;
	position: relative;
	top: 0;
	z-index: 2;
	background: url("/img/shopstore/sukimaya/top/bg_utilization.webp") center;
	background-size: cover;
	transition-property: background-position;
	transition-duration: .7s;
	transition-delay: .035s;
	padding: 50px 30px;
	box-sizing: border-box;
}
.utilization_flame ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 auto;
}
.utilization_flame ul li {
	text-align: center;
}
.utilization_flame ul li img {
	border-radius: 3rem;
	width: 85%;
	border: 1px solid #ea901c;
	box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.25);
	transition: 0.4s ease;
}
.utilization_flame ul li a:hover img {
    box-shadow:
        0 0 10px rgba(234, 144, 28, 0.4),
        0 0 20px rgba(234, 144, 28, 0.3),
        0 0 30px rgba(234, 144, 28, 0.2);
    transform: translateY(-2px);
    opacity: 1;
}
@media screen and (min-width: 1160px) {
	.utilization_flame {
		height: 900px;
	}
	.utilization_subheading{
		font-size: 24px;
		margin-top: -2.5rem;
		margin-bottom: 3rem;
		text-align: center;
	}
	.utilization_flame ul{
		max-width: 960px;
	}
	.utilization_flame ul li {
		max-width: calc(33.333% - 10px);
		flex: 1 1 calc(33.333% - 10px);
		padding: 8px 0;
	}
	.utilization_flame ul li span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
		margin-bottom: 5px;
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.utilization_area{
		padding: 50px 20px 80px;
	}
	.utilization_flame {
		background: url("/img/shopstore/sukimaya/top/bg_utilization.webp") center;
		background-size: cover;
		max-height: 820px;
		/*height: 780px;*/
		padding: 30px;
	}
	.utilization_subheading{
		font-size: 24px;
		margin-top: -2.5rem;
		margin-bottom: 3rem;
		text-align: center;
	}
	.utilization_flame ul{
		width: 90%;
	}
	.utilization_flame ul li {
		max-width: calc(33.333% - 10px);
		flex: 1 1 calc(33.333% - 10px);
		padding: 8px 0;
	}
	.utilization_flame ul li span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
		font-size: 12px;
		margin-bottom: 5px;
	}
}
@media screen and (max-width:868px) {
	.utilization_flame {
		width: 100%;
		margin: 0;
		border-radius: 1.5rem;
		position: relative;
		top: 0;
		z-index: 2;
		background: url("/img/shopstore/sukimaya/top/bg_utilization.webp") center;
		background-size: cover;
		transition-property: background-position;
		transition-duration: .7s;
		transition-delay: .035s;
	}
	.utilization_subheading{
		font-size: 19px;
		margin-top: -1.5rem;
		margin-bottom: 2rem;
		text-align: center;
	}
	.utilization_flame ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 90%;
		gap: 5px;
	}
	.utilization_flame ul li {
		max-width: calc(50% - 5px);
		padding: 8px;
	}
	.utilization_flame ul li span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
		font-size: 11px;
		margin-bottom: 5px;
	}
}

/************************ 収納場所 -シーン別で探す ************************/
@media screen and (min-width: 1160px) {
	.contents_area .scene_area_shelf{
		position: absolute;
		z-index: 10;
		right: 8%;
		top: -18%;
		width: 17%;
		max-width: 295px;
		min-width: 260px;
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.contents_area .scene_area_shelf{
		position: absolute;
		z-index: 10;
		right: 6%;
		top: -11%;
		width: 22%;
		min-width: 140px;
	}
}
@media screen and (max-width:868px) {
	.contents_area .scene_area_shelf{
		position: absolute;
		z-index: 10;
		right: 6%;
		top: -2%;
		width: 27%;
		min-width: 130px;
	}
}
.contents_area .scene_area_shelf img{
	width: 100%;
	vertical-align: bottom;
}
.scene_area{
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.scene_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 30px;
	padding-bottom: 80px;
}
@media screen and (min-width: 1160px) {
  .scene_list li {
    max-width: calc(20% - 30px);
    flex: 1 1 calc(20% - 30px);
  }
}
@media screen and (min-width:869px) and (max-width:1159px)  {
  .scene_list li {
    max-width: calc(33.333% - 30px);
    flex: 1 1 calc(33.333% - 30px);
  }
}
@media screen and (max-width: 868px) {
	.scene_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 15px;
		padding-bottom: 80px;
	}
  .scene_list li {
    max-width: calc(50% - 5px);
    flex: 1 1 calc(50% - 15px);
  }
}
.scene_list li img{
	border-radius: 1.5rem;
	margin-bottom: 20px;
}
.scene_list li a{
	display: block;
	text-decoration: none;
}
.scene_list li span{
	display: block;
	text-align: center;
}

/************************ スタッフイチ押し ************************/
.staff_area{
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}
.staff_flame {
	width: 100%;
	margin: 0;
	border-radius: 1.5rem;
	position: relative;
	top: 0;
	z-index: 2;
	background: url("/img/shopstore/sukimaya/top/bg_staff.webp") center;
	background-size: 140%;
	transition-property: background-position;
	transition-duration: .7s;
	transition-delay: .035s;
	padding: 50px 30px;
	box-sizing: border-box;
}
.staff_flame ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 auto;
}
.staff_flame ul li {
	display: flex;
	justify-content: center;
}
.staff_flame ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #15151d;
	transition: 
		color 0.3s ease-in-out, 
		box-shadow 0.5s ease-in-out, 
		text-shadow 0.5s ease-in-out, 
		border-color 0.5s ease-in-out,
		transform 0.3s ease-in-out,
		opacity 0.5s ease-in-out;
	text-decoration: none;
	color: #253344;
}
.staff_flame ul li a img{
	width: 90%;
}
@media screen and (min-width: 1160px) {
	.staff_flame {
		height: 500px;
	}
	.staff_flame ul{
		max-width: 960px;
	}
	.staff_flame ul li {
		max-width: calc(25% - 10px);
		flex: 1 1 calc(25% - 10px);
		padding: 8px 0;
	}
	.staff_flame ul li a{
		width: 190px;
		height: 190px;
	}
	.staff_flame ul li a span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.staff_area{
		padding: 50px 20px 80px;
	}
	.staff_flame {
		background: url("/img/shopstore/sukimaya/top/bg_staff.webp") center;
		background-size: 150%;
		height: 340px;
		padding: 30px;
	}
	.staff_flame ul{
		width: 90%;
	}
	.staff_flame ul li {
		max-width: calc(25% - 10px);
		flex: 1 1 calc(25% - 10px);
		padding: 8px 0;
	}
	.staff_flame ul li a{
		width: 140px;
		height: 140px;
	}
	.staff_flame ul li a span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
		font-size: 12px;
	}
}
@media screen and (max-width:868px) {
	.staff_flame {
		width: 100%;
		margin: 0;
		border-radius: 1.5rem;
		position: relative;
		top: 0;
		z-index: 2;
		background: url("/img/shopstore/sukimaya/top/bg_staff.webp") center;
		background-size: 200%;
		transition-property: background-position;
		transition-duration: .7s;
		transition-delay: .035s;
	}
	.staff_flame ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 90%;
		gap: 5px;
	}
	.staff_flame ul li {
		max-width: calc(50% - 5px);
		padding: 8px;
	}
	.staff_flame ul li a{
		width: 120px;
		height: 120px;
	}
	.staff_flame ul li a span{
		display: block;
		line-height: 1.3;
		font-weight: bold;
		font-size: 11px;
	}
}
.staff_flame ul li a:hover {
	box-shadow: 
		0 0 10px 5px rgba(21, 21, 29, 0.5),
		inset 0 0 10px 5px rgba(21, 21, 29, 0.3);
	border-color: rgba(21, 21, 29, 0.8);
	transform: scale(1.05);
}


/************************ 埋めたい隙間のサイズ(幅)から選べる ************************/
.size_area{
	position: relative;
	z-index: 1;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}
.size_flame{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1300px;
	margin: 0 0 0 auto;
	padding-bottom: 50px;
}
@media screen and (min-width: 1160px) {
	.size_flame_l{
		width: 45%;
		margin-right: 10%;
	}
	.size_flame_l .heading02 h2{
		font-size: 23px;
	}
	.size_flame_l ul li a{
		width: 140px;
		height: 140px;
	}
	.size_flame_r{
		width: 45%;
		max-height: 560px;
		border-radius: 1.5rem;
		overflow:hidden;
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.size_flame_l{
		width: 49%;
		margin-right: 2%;
	}
	.size_flame_l .heading02 h2{
		font-size: 22px;
	}
	.size_flame_l ul li a{
		width: 120px;
		height: 120px;
	}
	.size_flame_r{
		width: 49%;
		max-height: 460px;
		border-radius: 1.5rem;
		overflow:hidden;
	}
}
@media screen and (max-width:868px) {
	.size_flame{
		display: flex;
		flex-flow: column;
		justify-content: center;
		width: 100%;
		margin: 0 auto;
		padding-bottom: 50px;
	}
	.size_flame_l{
		width: 100%;
		max-width: 380px;
		margin: 0 auto 2%;
	}
	.size_flame_l .heading02 h2{
		font-size: 22px;
	}
	.size_flame_l ul li a{
		width: 90px;
		height: 90px;
	}
	.size_flame_r{
		width: 100%;
		max-height: 420px;
		border-radius: 1.5rem;
		overflow:hidden;
	}
}
.size_kinds{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.size_flame_l ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}
.size_flame_l ul li {
	max-width: calc(33.333% - 10px);
	flex: 1 1 calc(33.333% - 10px);
	padding-bottom: 10px;
}
@media screen and (max-width: 868px) {
	.size_flame_l ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 5px;
		margin-bottom: 10px;
	}
	.size_flame_l ul li {
		max-width: calc(33.333% - 5px);
		flex: 1 1 calc(33.333% - 10px);
		margin-bottom: 10px;
	}
}
.size_flame_l ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0B556A;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 50%;
	transition: 
		background 0.3s ease-in-out, 
		color 0.3s ease-in-out, 
		border 0.3s ease-in-out,
		box-shadow 0.5s ease-in-out, 
		transform 0.3s ease-in-out;
}
.size_flame_l ul li a:hover{
	background: #EBF5F7;
	color: #0B556A;
	border: 1px solid #0B556A;
	transform: scale(1.05);
}
.size_flame_r img{
	width: 100%;
	height: auto;
}

/************************ Just Right for You ************************/
.just_area{
	position: relative;
	z-index: 3;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
}
.site_catch_copy{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/*padding: 50px 0 100px;*/
	padding-top: 50px;
	max-width: 1100px;
	margin: 0 auto;
}
.site_catch_copy_l{
	width: 35%;
	margin-bottom: 15%;
}
.site_catch_copy_l img{
	transform: rotate(-2deg);
}
.site_catch_copy_c{
	width: 35%;
	margin: 0 6% 0 5%;
	text-align: center;
}
.site_catch_copy_c .title{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
}
.site_catch_copy_r{
	width: 19%;
	margin-top: 15%;
}
@media screen and (max-width:868px) {
	.just_area{
		position: relative;
		z-index: 3;
		width: 95%;
		margin: 0 auto;
	}
	.site_catch_copy{
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		/*padding: 0 0 50px;*/
		width: 100%;
		margin: 0 auto;
	}
	.site_catch_copy_l{
		width: 35%;
		margin-bottom: 5%;
		margin-right: 40%;
	}
	.site_catch_copy_l img{
		transform: rotate(-2deg);
	}
	.site_catch_copy_c{
		width: 70%;
		margin: 0 auto;
		text-align: center;
	}
	.site_catch_copy_c .title{
		font-size: 24px;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.site_catch_copy_r{
		width: 19%;
		margin-top: 4%;
		margin-left: 50%;
	}
}

/*ループスライダー-*/
.loopslider .slick-track {
	display: flex !important;
	align-items: center;
}
.loopslider{
	position: relative;
	z-index: 2;
	overflow: hidden;
	direction: rtl;
}
.loopslider .slick-slide .slick-slide {
    transform: scaleX(-1);
}
@media screen and (min-width: 1260px) {
	.loopslider{
		margin-top: -23%;
		padding-bottom: 6%;
	}
	.loopslider .slick-slide {
		margin: 0 30px;/*スライド左右の余白調整*/
		height: auto;
	}
}
@media screen and (min-width:869px) and (max-width:1259px) {
	.loopslider{
		margin-top: -36%;
		padding-bottom: 6%;
	}
	.loopslider .slick-slide {
		margin: 0 20px;/*スライド左右の余白調整*/
		height: auto;
	}
}
@media screen and (max-width: 868px) {
	.loopslider{
		margin-top: -56%;
		padding-bottom: 10%;
	}
	.loopslider .slick-slide {
		margin: 0 10px;/*スライド左右の余白調整*/
		height: auto;
	}
}
.loopslider li{
	position: relative;
}
.loopslider li img {
	display: block;
	width: 100%;
	border-radius: 1.5rem;
}
.loopslider li::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 1.5rem;
}

/************************ カテゴリで探す ************************/
.category_area{
	padding: 20px 0;
	margin-bottom: 4rem;
}

/************************ 金額別で探す ************************/
.price_area{
	position: relative;
	z-index: 1;
	max-width: 1700px;
	margin: 0 auto;
	padding: 80px 20px;
}
.price_flame {
	width: 100%;
	margin: 0;
	border-radius: 1.5rem;
	position: relative;
	top: 0;
	z-index: 2;
	background: url("/img/shopstore/sukimaya/top/bg_price01.webp") center top;
	background-size: 130%;
	transition-property: background-position;
	transition-duration: .7s;
	transition-delay: .035s;
	display: flex;
	justify-content: flex-start;
}
.price_flame_l{
	position: relative;
	border-radius: 1.5rem 0 0 1.5rem;
	background: #253344;
	overflow: hidden;
}
.price_flame_l h2{
	font-size: 28px;
	color: #fff;
	font-weight: normal;
	letter-spacing: 0.03em;
	margin: 0 !important;
	padding: 5rem 0 0 !important;
	border: 0 !important;
	text-align: center;
}
.price_flame_l h2 span{
	display: block;
	font-size: 12.5px;
	text-align: center;
	padding-top: 5px;
}
.price_flame_l .icon_price{
	position: absolute;
	bottom: 0;
	left: 32%;
}
.price_flame_l .icon_price img{
	vertical-align: bottom;
}
.price_flame_r{
	width: 75%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.price_flame_r ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}
.price_flame_r ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: 
		color 0.3s ease-in-out, 
		box-shadow 0.5s ease-in-out, 
		text-shadow 0.5s ease-in-out, 
		border-color 0.5s ease-in-out,
		transform 0.3s ease-in-out,
		opacity 0.5s ease-in-out;
}
@media screen and (min-width: 1160px) {
	.price_flame {
		height: 500px;
	}
	.price_flame_l{
		width: 25%;
	}
	.price_flame_l .icon_price{
		max-width: 130px;
	}
	.price_flame_r ul{
		max-width: 960px;
		width: 98%;
	}
	.price_flame_r ul li {
		max-width: calc(25% - 10px);
		flex: 1 1 calc(25% - 10px);
		padding: 8px 0;
	}
	.price_flame_r ul li a{
		width: 190px;
		height: 190px;
	}
}
@media screen and (min-width:869px) and (max-width:1159px)  {
	.price_flame {
		height: 400px;
	}
	.price_flame_l{
		width: 25%;
		min-width: 250px;
	}
	.price_flame_l .icon_price{
		max-width: 95px;
	}
	.price_flame_r ul{
		width: 90%;
	}
	.price_flame_r ul li {
		max-width: calc(33.333% - 10px);
		flex: 1 1 calc(33.333% - 10px);
		padding: 8px 0;
	}
	.price_flame_r ul li a{
		width: 140px;
		height: 140px;
	}
}
@media screen and (max-width:868px) {
	.price_flame {
		width: 100%;
		margin: 0;
		border-radius: 1.5rem;
		position: relative;
		top: 0;
		z-index: 2;
		background: url("/img/shopstore/sukimaya/top/bg_price01.webp") center;
		background-size: auto;
		transition-property: background-position;
		transition-duration: .7s;
		transition-delay: .035s;
		display: flex;
		flex-flow: column;
	}
	.price_flame_l{
		border-radius: 1.5rem 1.5rem 0 0;
		width: 100%;
		height: 7.5rem;
	}
	.price_flame_l h2{
		padding: 2rem 0 0 !important;
	}
	.price_flame_l .icon_price{
		position: absolute;
		bottom: 0;
		left: auto !important;
		right: 20% !important;
		max-width: 43px;
	}
	.price_flame_r{
		width: 100%;
		padding: 30px 0;
	}
	.price_flame_r ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px;
	}
	.price_flame_r ul li {
		max-width: calc(50% - 5px);
		padding: 8px;
	}
	.price_flame_r ul li a{
		width: 120px;
		height: 120px;
	}
}
.price_flame_r ul li a:hover {
	box-shadow: 
		0 0 10px 5px rgba(255, 255, 255, 0.7),
		inset 0 0 10px 5px rgba(255, 255, 255, 0.5);
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.05);
}

/************************ お役立ちコンテンツ ************************/
@media screen and (min-width:869px) {
	.useful_area{
		width: 100%;
		padding: 80px 0;
	}
	.useful_areain{
		width: 100%;
		padding: 50px 0;
		background: #F2F2F2;
	}
	.useful_title{
		font-size: 28px;
		text-align: center;
		margin-bottom: 30px;
	}
	.useful_areain ul{
		/*width: 30%;*/ /*記事1列パターン*/
		width: 55%; /*記事2列パターン*/
		min-width: 330px;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.useful_areain ul li{
		/*width: 100%;*/ /*記事1列パターン*/
		width: 50%; /*記事2列パターン*/
		padding: 0 10px 20px;
		box-sizing: border-box;
	}
	.useful_areain ul li a{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		width: 100%;
		height: 100%;
		border-radius: 1.5rem;
		background: #fff;
		text-decoration: none;
		padding: 20px;
		box-sizing: border-box;
	}
	.useful_areain ul li a:hover{
		opacity: 0.8;
	}
	.useful_areain ul li a img{
		width: 25%;
	}
	.useful_areain ul li a p{
		width: 70%;
	}
}
@media screen and (max-width:868px) {
	.useful_area{
		width: 100%;
		padding: 50px 0;
	}
	.useful_areain{
		width: 100%;
		padding: 50px 15px;
		background: #F2F2F2;
		box-sizing: border-box;
	}
	.useful_title{
		font-size: 28px;
		text-align: center;
		margin-bottom: 30px;
	}
	.useful_areain ul{
		width: 100%;
		min-width: 330px;
		margin: 0 auto;
		display: flex;
		flex-flow: column;
	}
	.useful_areain ul li{
		width: 100%;
		padding-bottom: 20px;
	}
	.useful_areain ul li a{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		width: 100%;
		height: 100%;
		border-radius: 1.5rem;
		background: #fff;
		text-decoration: none;
		padding: 20px 10px;
		box-sizing: border-box;
	}
	.useful_areain ul li a img{
		width: 30%;
	}
	.useful_areain ul li a p{
		width: 65%;
	}
}

/************************ footer ************************/
#copyright {
    display: none;
}

.footer-wave-top {
    width: 100%;
    height: 100px;
    padding-bottom: 20%;
    margin-top: -5%;
    line-height: 0;
}
.footer-wave-top svg {
	width: 100%;
	height: auto;
	display: block;
}
.footer-wrap {
	position: relative;
}
.footer-nav {
	position: relative;
	width: 100%;
	z-index: 10;
	background: #253344;
	padding: 0 20px 40px;
	box-sizing: border-box;
}
.footer-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.footer-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	padding: 10px;
	transition: color 0.3s;
}
.footer-nav a:hover {
	color: #ccc;
}

.Footer_address{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #15151D;
}
.Footer_address p{
	color: #fff;
	font-size: 10px;
}

/* トップへ戻るボタン */
.page_top_btn {
	position: fixed;
	top: 75vh;
	right: 0;
	z-index: 999;
	width: 121px;
	height: 135px;
	background:url(/img/shopstore/sukimaya/common/page_top_btn.png);
	background-size:cover;
	transition: 0.3s;
}
.page_top_btn:hover {
	background-image:url(/img/shopstore/sukimaya/common/page_top_btn_hover.png);
}
@media screen and (max-width:868px){
	.page_top_btn{
		display: none !important;
		/*width: 80px;
		height: 91px;*/
	}
}

/************************ 下層ページ ************************/
/* 左ナビ */
.block-filter-frame {
	padding: 0 20px;
    border: 0;
    border-radius: 1rem;
}
.block-filter-frame .block-filter-item .block-filter-name {
    font-size: 15px;
}
.block-filter-frame .block-filter-item .block-filter--keyword-frame .block-filter--keyword {
    font-size: 14px;
}
.block-filter-frame .block-filter-item .block-filter--check-frame select {
	font-size: 14px;
}
/* カテゴリから探す */
.block-mall-category-tree--level-2 > li > a, .block-category-tree--level-2 > li > a, .block-genre-tree--level-2 > li > a {
    border-top: 1px solid #CECECE !important;
}
.block-mall-category-tree--level-3 li a, .block-category-tree--level-3 li a, .block-genre-tree--level-3 li a {
    border-top: 1px solid #CECECE !important;
}
.block-mall-category-tree--level-3 > li:first-of-type > a, .block-category-tree--level-3 > li:first-of-type > a, .block-genre-tree--level-3 > li:first-of-type > a {
    border-top: 1px solid #CECECE !important;
}
.block-mall-category-tree--level-4 > li:first-of-type > a, .block-category-tree--level-4 > li:first-of-type > a, .block-genre-tree--level-4 > li:first-of-type > a {
    border-top: 1px solid #CECECE !important;
}

/*ご利用ガイド/特定商取引法/会社情報等*/
.parent_box {
	width: 100%;
	max-width: 1400px;
	padding: 0 20px;
	margin: 0 auto;
}
.right_block {
	width: 78%;
	float: right;
}
.left_block_menu {
	width: 17%;
	float: left;
	margin-left: 10px;
	margin-top: 50px;
}
.block-mt-common.wide {
	max-width: 1060px;
}
.block-mt-common {
	margin: 0 auto 40px auto;
}
.block-mt-h2 h2, .safe_installation h2, .mounting h2, .extension h2 {
    font-size: 28px !important;
	font-weight: normal !important;
    color: #121212;
	background-color: transparent !important;
    padding: 8px 12px 6px !important;
    margin-top: 40px !important;
    text-align: center;
}
.block2-mt-table table {
	width: 100%;
	border-top: 1px solid #dedede;
	border-left: 1px solid #dedede;
	margin: 20px 0;
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 1.7;
}
.block2-mt-table table tr th {
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	padding: 15px;
	background: #f3f3f3;
	border-bottom: 1px solid #dedede;
	border-right: 1px solid #dedede;
	vertical-align: top;
}
.block2-mt-table table tr td {
	font-size: 14px;
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid #dedede;
	border-right: 1px solid #dedede;
	vertical-align: top;
}
.h3_heading, .block-mt-h3 h3, .safe_installation h3, .mounting h3, .extension h3 {
	font-size: 20px;
	font-weight: normal !important;
	border-bottom: 1px solid #ddd;
	padding: 5px 5px 5px 15px !important;
	margin: 10px 0 5px !important;
	position: relative;
}
.h3_heading:before, .block-mt-h3 h3:before {
	content: "";
	height: 10px;
	width: 10px;
	left: 0;
	position: absolute;
	top: 40%;
	background: #1c5a8f;
}
.safe_installation h3, .mounting h3, .extension h3{
	padding-left: 0 !important;
}
.block-mt-h4 h4 {
	font-size: 18px;
	margin: 0;
	font-weight: normal;
	color: #333;
	padding-left: 15px;
	margin-bottom: 5px;
	position: relative;
}
.block-mt-h4 h4:before {
	content: "";
	height: 8px;
	width: 8px;
	left: 0;
	position: absolute;
	top: 40%;
	border-radius: 50%;
	background: #1c5a8f;
}
.page_common_table_ p {
	margin-bottom: 30px;
}
.page_common_table_ ol {
	margin-bottom: 30px;
}
/*ナビゲーション*/
.MAcd .title2 {
	background-color: #F5F5F5;
	padding: 11px 25px 11px 15px;
	font-size: 100%;
	font-weight: bold;
	position: relative;
}
.block-mt-accordion li .title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    display: block;
    border-right: 2px #006BC4 solid;
    border-bottom: 2px #006BC4 solid;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.block-mt-common a {
	text-decoration: none;
	color: #2B2B2B;
}
.block-mt-common a:hover {
	opacity: 0.7;
}
.block-mt-accordion li {
	border-top: 1px #E6E6E6 solid;
	border-left: 1px #E6E6E6 solid;
	border-right: 1px #E6E6E6 solid;
}
.block-mt-accordion li:last-child {
	border-bottom: 1px #E6E6E6 solid;
}
.block-mt-accordion li .body {
	display: none;
	border-top: 1px #E6E6E6 solid;
	padding: 15px;
}
.MAcd .body p {
	width: 100%;
	line-height: 1.5em;
	/*text-indent: 10px;*/
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px #E6E6E6 solid;
	font-size: 14px;
}