<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "euc-jp";

@media only screen and (max-width: 750px)
#wrap * {
    margin: 0;
    padding: 0;
    border: none;
}


body{
	margin-left: auto;
	margin-right: auto;
}

html{
	
	scroll-behavior: smooth;
}
	
*{ 
	list-style:none; 
	margin:0;
	padding:0;
}


/*---------------------------------

　看板

---------------------------------*/
.title_img{
	width: 100%;
}

/*---------------------------------

　文章

---------------------------------*/

.mozi {
	text-align: center;
    margin: 40px 0;
    line-height: 37px;
    font-size: 18px;
}

.strong01{
	background: linear-gradient(transparent 60%, #ffe800 60%);
	font-weight: 600;
	font-size: 25px;
}


/*---------------------------------

 見出し

---------------------------------*/


/*メニュータイトル*/

.navi_title{
	width: 995px;
	position: relative;
    padding: 1.2rem 1rem 1rem 1.5rem;
	border-radius: 40px;
    background-color: #fff;
	text-align: center;
	font-size: 22px;
	line-height: 1.5em;
	font-weight: 600;
	margin: 1% auto 3%;
	letter-spacing:2px;
}

.navi_title::before{
	position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color: #fff;
    border-width: 8px;
    content: "";
}

.strong02{
	font-weight: 600;
	font-size: 30px;
	color: #5cb8b3;
}



/*回遊タイトル*/
.ex_title{
	width: 1070px;
	position: relative;
    padding: 1.2rem 1rem 1rem 1.5rem;
	/*border-radius: 40px;*/
    background-color: #9c9c9c;
	text-align: center;
	font-size: 22px;
	line-height: 1.5em;
	font-weight: 600;
	margin: 1% auto 3%;
	letter-spacing:2px;
	color: #fff;
}

.ex_title::before{
	position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color: #9c9c9c;
    border-width: 8px;
    content: "";
}

/*---------------------------------

 メニュー

---------------------------------*/

.navi {
	overflow: hidden;
	background-color: #b5e8e6;
	padding: 30px 0;
}

.navi_pc {
	width: 1047px;
	margin: 0 auto;
}


.navi .navi_pc li{
    margin-right: 6px;
    margin-bottom: 11px;
	padding-left: 13px;
    text-align: center;
    float: left;
}

.navi .navi_pc li img{
    width: 330px;
}

.navi_pc li a{transition: 0.3s;}
.navi_pc li a:hover{opacity: 0.8;}

/*---------------------------------

　カテゴリ

---------------------------------*/

#kettle,
#toaster,
#ricecooker,
#iron,
#scale,
#humidifier,
#circulator,
#aircleaner,
#futondryer,
#dehumidifier,
#other
{
	background: #fff;
    width: 1080px;
    margin: 50px auto 30px auto;
	overflow: hidden;
}


#excursion{
	background: #fff;
    width: 1080px;
    margin: 100px auto 10px auto;
	/*overflow: hidden;*/
}

/*タイトル・レビュー*/
.content_main{
	max-width: 100%;
	margin: 0 auto;
}


/*おすすめ商品タイトル*/

.osusume{
	position: relative;
	/*display: inline-block;*/
	/*padding: 0 55px;*/
	margin: 5% 1.5% 2% 4.5%;
	text-align: center;
	font-size: 1.6em;
}

.osusume:before, .osusume:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 395px;
	height: 1px;
	background-color: black;
  }
  
  .osusume:before {
	left:0;
  }
  .osusume:after {
	right: 0;
  }


/*---------------------------------

 商品名/訴求アイコン

---------------------------------*/

/*商品名*/
.name{
	/*font-size: 1.2em;*/
    font-weight: bold;
	text-align: center;
	margin: 2% 0;
}

/*訴求アイコン*/

.txt_icon{
	display: flex;
	margin: 3% 0;
}

.name01,.name02{
	height: 25px;
	background-color: #000;
	float: left;
	color: #fff;
	text-align: center;
	padding: 3% 1% 1% 1%;
	font-size: 0.8em;
}

.name01 {
	/* width: 100px; */
	width: 100%;
	margin-right: 7px;
}

.name01:last-child{
	margin-right: 0;
}

.name02{
	width: 100%;
}




/*---------------------------------

 ボタン

---------------------------------*/

/*詳細はこちら*/
.linkbtn{
	width: 100%;
}

a.btn_01 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	position: relative;
	background: #5cb8b3;
	border: 1px solid #5cb8b3;
	/*border-radius: 5px;*/
	box-sizing: border-box;
	/*padding: 0 45px 0 25px;*/
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	transition-duration: 0.3s;
	/*margin-right: 4px;*/
  }
  a.btn_01:before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -6px;
  }
  a.btn_01:hover {
	background: #fff;
	color: #5cb8b3;
  }
  a.btn_01:hover:before {
	border-top: 2px solid #5cb8b3;
	border-right: 2px solid #5cb8b3;
  }
  


/*もっと見る*/
.more_btn{
	max-width: 986px;
	margin: 3% 0 5% 6%;
}

a.btn_02 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	position: relative;
	background: #fff;
	border: 1px solid #5cb8b3;
	border-radius: 45px;
	box-sizing: border-box;
	padding: 3px 45px 0 25px;
	color: #5cb8b3;
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	transition-duration: 0.3s;
	margin-right: 4px;
  }
  a.btn_02:before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-top: 2px solid #5cb8b3;
	border-right: 2px solid #5cb8b3;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -6px;
  }
  a.btn_02:hover {
	background: #5cb8b3;
	color: #fff;
  }
  a.btn_02:hover:before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
  }


/*---------------------------------

 カラム設定

---------------------------------*/


/*4カラム*/
.item4_box {
	/* border-radius: 10px;
	background: #edf; */
	padding: 15px;
	margin: 5px;
	text-align: center;
  }
  


/*2カラム*/
.item2_box {
	/* border-radius: 10px;
	background: #edf; */
	padding: 15px;
	text-align: center;
	margin: 0 auto;
  }
  


/*3カラム*/
.btn3_box{
	padding: 8px;
	text-align: center;
}
 .btn3_box img{
	width: 100%;
} 

.btn_box:last-child{
	padding-right: 0;
}


@media ( min-width : 950px ){
	.flexbox {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4% 0 4%;
	}
  .item4_box {
	width: 20%;
  }

  .item2_box {
	width: 30%;
  }

  .btn3_box {
	width: 31%;
  }
}

  
/*------共通------*/

.item4_info,.item2_info{
	max-width: 100%;
	/* height: auto; */
}




/*---------------------------------

 SHOPカテゴリ

---------------------------------*/

#shopcate {
	overflow: hidden;
	background-color: #f7f7f7;
	padding: 40px 0;
	margin-top: 70px;
	overflow: hidden;
}


.cate_title{
	text-align: center;
	font-size: 1.3em;
	font-weight: 600;
	margin-left: 4%;
}

.cate_info{
	width: 950px;
	margin: 2% auto;
}

.btn3_box a{transition: 0.3s;}
.btn3_box a:hover{opacity: 0.5;}



/*---------------------------------

 ページトップ

---------------------------------*/

.pagetop_btn{
	height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop_arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

#pagetop a{transition: 0.3s;}
#pagetop a:hover{opacity: 0.5;}</pre></body></html>