@charset "shift_jis";
/* CSS Document */
/*----------------------------------------------------
 base style
----------------------------------------------------*/

html {
	overflow-y: scroll;
}

body {
	color: #666666;
	font-family: 'メイリオ', Meiryo, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ Ｐゴシック', 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif;
	font-size: 85%;
}

/* for IE6 */
* html body {
	font-family: 'ＭＳ Ｐゴシック', 'MS PGothic', Sans-Serif;
}
img{
	width: 100%
}

.pc_only{
	display: none;
}
.sp_only{
	display: block;
}

/*----------------------------------------------------
 header
----------------------------------------------------*/
header .logoarea {
	clear: both;
	height: 60px;
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	display: flex;
	background-color: #fff;
}

header .logoarea h1 {
	padding-top: 20px;
	padding-left: 10px;
	width: 45%;
}

header .logoarea .login {
border: 1px solid #fbbc8a;
	padding: 15px 15px 13px 40px;
	margin: 10px;
	position: relative;
	font-weight: bold;
}
header .logoarea .login:before {
content: "";
	display: inline;
	position: absolute;
	background: url("../images/icon_login.png")no-repeat left top;
	width: 18px;
	height: 22px;
	left: 10px;
	top: 8px;
}


header .logoarea .login a{
	color: #666666;
}

/*ハンバーガーメニュー*/
.l-header {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
	display: flex;
}

/*ドロワー*/
.l-drawer {
  position: relative;
}
.l-drawer__checkbox {
  display: none;
}
.l-drawer__icon {
  cursor: pointer;
  display: block;
  width: 56px;
  height: 60px;
  position: absolute;
  right: 0;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  background-color: #666;
  display: block;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
  content: " ";
}
.l-drawer__icon-parts:before {
  top: 16px;
}
.l-drawer__icon-parts:after {
  top: -16px;
}
.l-drawer__overlay {
  background: #666;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}
.l-drawer__menu {
  background: #ffffff;
  color: #666;
  max-width: 100%;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: -320px;
}
.l-drawer__icon {
  z-index: 4;
}
.l-drawer__menu {
  z-index: 3;
}
.l-drawer__overlay {
  z-index: 2;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts {
  background: transparent;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}
.l-drawer__checkbox:checked ~ .l-drawer__menu {
  right: 0;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.storelist {
	padding: 40px 10px;
	color: #666666;
}

.storelist li{
	text-align: center;
	font-size: 1.3rem;
	border-bottom: 1px solid #666666;
	padding: 15px 0;
	position: relative;
}
.storelist li:after{
    content: "";
    position: absolute;
    right: 10%;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #c09a3d;
    border-right: solid 2px #c09a3d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav_btn li{
	font-size: 1.3rem;
	color: #fff;
	background: #aaaaaa;
	padding: 20px 0;
	border-radius: 20px;
	margin: 10px;
	text-align: center;
}
.nav_btn li:first-child{
	background: #fe9542;
}

/*----------------------------------------------------
 section
----------------------------------------------------*/
section {
	margin-bottom: 50px;
	position: relative;
	padding: 0 20px;
}

section p {
	line-height: 1.8em;
}



/*----------------------------------------------------
 anchor link
----------------------------------------------------*/
a {
	color: #0074b0;
	text-decoration: none;
}

a:link {
	color: #0074b0;
}

a:visited {
	color: #0074b0;
}

a:hover {
	color: #E45F00;
}

a:active {
	color: #0074b0;
}

.alpha:hover {
	opacity: 0.7; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=70); /* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	-khtml-opacity: .70; /* Safari 1.x */
	-moz-opacity: .70; /* FF lt 1.5, Netscape */
}

.arrow_link a{
	background: url(/common/images/iconArrow01.gif) no-repeat left center;
	padding-left: 12px;
}



/*----------------------------------------------------
 tabel
----------------------------------------------------*/
table {
	border: 1px solid #cccccc;
	line-height:1.5em;
	width: 100%;
}

table caption {
	border: 1px solid #cccccc;
	border-bottom: none;
	background: #fafafa;
	padding: 7px 10px;
	text-align: left;
	font-size: 125%;
	font-weight: bold;
}

table caption a{
	background: url(/common/images/iconArrow01.gif) no-repeat left center;
	padding-left: 18px;
}

table tr {
}

table th {
	background: #fff3ea;
	font-weight: bold;
	padding: 10px;
	text-align: left;
	/*width: 90px;*/
	border-bottom: 1px solid #cccccc;
}

table td {
	padding: 13px 20px 13px 20px;
	text-align: left;
	border-bottom: 1px solid #cccccc;
}

table li{
	clear: both;
	line-height: 1.5em;
	overflow: hidden;
}

table li dt{
	float: left;
	width: 100%;
}

table li ds{
	float: left;
}



/*----------------------------------------------------
 common
----------------------------------------------------*/
/* clerfix */
#contents:after {
	content: '.'; display: block; visibility: hidden; height: 0.1px; font-size: 0.1em; line-height: 0; clear: both;
}

/* title h */
h2 {
	font-size: 150%;
	font-weight: normal;
	color: #666;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	background: url(../images/line01.png) no-repeat left bottom;
  position: relative;
}

h3 {
	font-size: 150%;
	color: #666666;
	margin-bottom: 20px;
	padding-bottom: 10px;
	background: url(/common/images/lineH3.gif) no-repeat left bottom;
}

h4 {
	margin-bottom: 10px;
}

.title_opt_h2 {
	position: absolute;
	top: -60px;
	right: 0;
}

.title_opt_h3 {
	position: absolute;
	top: -50px;
	right: 0;
}

.txt_right {
	text-align: right;
}

.txt_left {
	text-align: left;
}

.txt_center {
	text-align: center;
}

.img_right {
	clear: both;
	overflow: hidden;
}

.img_right img {
	float: right;
	margin-left: 20px;
}

.img_right h3{
	width: 100%;
}

.img_right .txt_set {
	width: 100%;
	float: left;
}

.img_left {
	clear: both;
	overflow: hidden;
}

.img_left img {
	float: left;
	margin-right: 20px;
}

.img_left .txt_set {
	width: 100%;
	float: right;
}

/* margin */
.mln {
	margin-left: 0 !important;
}
.ml5 {
	margin-left: 5px !important;
}
.ml10 {
	margin-left: 10px !important;
}
.ml20 {
	margin-left: 20px !important;
}
.ml25 {
	margin-left: 25px !important;
}
.ml30 {
	margin-left: 30px !important;
}
.ml40 {
	margin-left: 40px !important;
}

.mrn {
	margin-right: 0 !important;
}
.mr5 {
	margin-right: 5px !important;
}
.mr10 {
	margin-right: 10px !important;
}
.mr20 {
	margin-right: 20px !important;
}
.mr25 {
	margin-right: 25px !important;
}
.mr30 {
	margin-right: 30px !important;
}
.mr40 {
	margin-right: 40px !important;
}
.mtn {
	margin-top: 0 !important;
}
.mt5 {
	margin-top: 5px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mbn {
	margin-bottom: 0 !important;
}
.mb5 {
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}

.fLeft {
	float: left;
	overflow: hidden;
}

/* background */

.bgFFF3EA {
	background: #FFF3EA;
}

/* frame */

.frame01 {
	border: 1px solid #ccc;
	padding: 20px;
	margin: 20px 0;
}
/* 文整列 */
.lefttext_ {
	text-align: left;
}
.righttext_ {
	margin-top: 20px;
	text-align: right;
}
.centertext_ {
	text-align: center;
}


/*----------------------------------------------------
 page
----------------------------------------------------*/
#page {
	margin: 0 auto 80px auto;
	width: 100%;
	min-height: 380px;
}



/*----------------------------------------------------
 breadcrumb
----------------------------------------------------*/
#breadcrumb {
	clear: both;
	margin-top: 10px;
	overflow: hidden;
	padding-top: 2px;
}

#breadcrumb li {
	float: left;
}

#breadcrumb li span {
	margin: 0 5px;
}



/*----------------------------------------------------
 contents
----------------------------------------------------*/
#contents {
	zoom: 1;
	margin-top: 40px;
}



/*----------------------------------------------------
 main
----------------------------------------------------*/
#main {

		width: 100%;
}

/* --------------------------------------------------------------------
	メインビジュアル
-------------------------------------------------------------------- */
#mainvisual{
	padding-top: 60px;
	position: relative;
}
#mainvisual p{
	background-color: rgba(255,255,255,.8);
	position: absolute;
	bottom: 0px;
	padding: 10px 20px;
	font-size: 12px;
	line-height: 1.5;
	min-height: 100px;
}
#mainvisual .campaign{
	background: none;
	position: absolute;
	bottom: 120px;
	right: 10px;
}

/* --------------------------------------------------------------------
	トピックス
-------------------------------------------------------------------- */
/* トピック詳細 */
div.topic_ a{
	color: #0782c1;
	text-decoration: underline;
}
div.topic_ a:hover{
	text-decoration: none;
}
.topic_head_{
	padding:0 0 10px 0;
	color: #fe9542;
	font-size: 24px;
	font-weight: normal;
	line-height: 140%;	
}
h2.topic_title_ {
	padding: 5px 5px;
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 15px;
	border-left: 4px solid #fe9542;
	font-weight: normal;
	font-size: 14px;
}
.article_{
	padding: 0px 5px;
}
div.topic_ div.comment_ {
}
div.topic_ div.contents_ {
}
/* トピック一覧 */
div.topiclist_ {
	margin: 30px 0px;
}
div.topiclist_ a{
	color: #666;
	cursor: pointer;
}
div.topiclist_ a:hover{
	color: #fe9542;
	text-decoration: underline;
}
div.topiclist_ .topiclist_head_ {
	padding:12px 14px;
	font-size: 14px;
	font-weight: bold;
	border-left:#dddddd 1px solid;
	border-right:#dddddd 1px solid;
	background:#efefef url(../images/h2_bg.png) left top repeat-x;
	overflow: hidden;
}
div.topiclist_ .topiclist_head_ h2 {
	text-align: center;
	color: #666;
		font-size: 14px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 0px;
		
}
div.topiclist_ .topiclist_head_ .rss_ {
	float: right;
	display: inline;
	text-align: right;
}
div.topiclist_ .topiclist_body_ {
	padding: 0 14px 14px 14px;
	border-left:#dddddd 1px solid;
	border-right:#dddddd 1px solid;
	border-bottom:#dddddd 1px solid;
	background:#efefef;
}
div.topiclist_ .topiclist_body_ ul.topicline_ {
	margin: 0;
	padding: 0;
	background:#ffffff;
}

div.topiclist_ ul.topicline_ li dl {
	padding: 10px;
}
div.topiclist_ ul.topicline_ li dl dt{
	padding: 8px 7px 7px 15px;
	background:#ffffff url(../images/topic_arrow.png) 10px 10px no-repeat;
	border-bottom: 1px dotted #efefef;
}
div.topiclist_ ul.topicline_ li dl dd{
	padding: 15px 10px 5px;
}
div.topiclist_ ul.topicline_ li a {
	display:block;
}
div.topiclist_ ul.topicline_ li.img_ {
	padding: 5px 0;
	background: none;
}
div.topiclist_ .righttext_ a{
	padding-left: 20px;
	background:url(../images/topic_arrow.png) 10px 5px no-repeat;
	border-bottom: 1px dotted #efefef;
}


/* --------------------------------------------------------------------
	店舗一覧
-------------------------------------------------------------------- */
#list .grandcru{
	border: 1px solid #aeaeae;
	padding: 30px 20px;
	margin-bottom: 20px;
} 
#list .grandcru dl dt{
	margin: 0 20px;
} 
#list .grandcru dl dd {
	text-align: center;
	color: #fff;
	margin-top: 10px;
}
#list .grandcru dl dd a{
	background-color: #fe9542;
	padding: 15px;
		color: #fff;
	display: block;
	border-radius: 5px;
	font-size: 1.3rem;
	letter-spacing: 0.5rem;
	font-weight: bold;
	position: relative;

} 
#list .grandcru dl dd a:after {
    content: "";
    position: absolute;
    right: 15%;
    top: 37%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#list .grandcru ul{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
#list .grandcru ul li{
	position: relative;
	padding-left: 24px;
	padding-top: 20px
}
#list .grandcru ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 24px;
    height: 20px;
    background: url("../images/icon_check.png")no-repeat left top;
}

#list .tobuclo{
	border: 1px solid #aeaeae;
	padding: 30px 20px;
	margin-bottom: 20px;
} 
#list .tobuclo dl dt{
	margin: 0 20px;
} 
#list .tobuclo dl dd {
	text-align: center;
	color: #fff;
	margin-top: 30px;
}
#list .tobuclo dl dd a{
	background-color: #fe9542;
	padding: 15px 25px;
		color: #fff;
	display: block;
	border-radius: 5px;
	font-size: 1.3rem;
	letter-spacing: 0.5rem;
	font-weight: bold;
	position: relative;
} 

#list .tobuclo dl dd ul li a{
	background-color: #fe9542;
	padding: 15px 35px;
		color: #fff;
	display: block;
	border-radius: 5px;
	font-size: 1.2rem;
	letter-spacing: 0.3rem;
	font-weight: bold;
	position: relative;
} 
#list .tobuclo dl dd a:after {
    content: "";
    position: absolute;
    /* right: 15%; */
    right: 8%;
    top: 37%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#list .tobuclo ul{
  display: block;
	margin-top: 20px;
}

#list .tobuclo ul li{
margin-bottom:10px;
width: 100%;
}
#list .tobuclo ul.point{
display:flex;
	margin-top: 0px;
	 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-around;
}
#list .tobuclo div{
	padding-bottom: 30px;
}
#list .tobuclo ul.point li{
	line-height: 1.5;
	position: relative;
	padding-left: 24px;
	padding-top: 12px;
	/* padding-top: 20px; */
	color:#666;
}
#list .tobuclo ul.point li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 24px;
    height: 20px;
    background: url("../images/icon_check.png")no-repeat left top;
}

/* --------------------------------------------------------------------
	何を預けられるの？
-------------------------------------------------------------------- */
	

/*スライド*/
.slider{
    margin: 0 auto;
}
.slider img{
    height: auto;
    width: 100%;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #000!important;
}
.slick-dotted.slick-slider{
	margin: 10px;
}

#wedding03 .slick-prev:before
{
    content: '←';
	color: #222222;
}
[dir='rtl'] #wedding03 .slick-prev:before
{
    content: '→';
}

#wedding03 .slick-next
{
    right: -25px;
}
#wedding03 .slick-next:before
{
    content: '→';
	color: #222222;
	
}
[dir='rtl'] #wedding03 .slick-next:before
{
    content: '←';
}
#wedding03 .slick-dots li button:before
{
	 content: '・';
}


/* --------------------------------------------------------------------
	どんな時に利用するの？
-------------------------------------------------------------------- */
#use ul{
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 30px;
}
#use ul:last-child{
	margin-bottom: 0px;
}
#use ul li{
	width: 50%;
}
#use ul dl{
	margin-left: 10px;
}

#use ul dl dt{
	padding: 10px;
	color: #fff;
	 background-color: #666;
}

#use ul dl dd{
	margin-top: 15px;
	line-height: 1.5;
}

/* --------------------------------------------------------------------
	利用者の声
-------------------------------------------------------------------- */
	
.closet_voice dt.man {
	background: url(../images/icon_man.png) no-repeat left bottom;
}

.closet_voice dt.woman {
	background: url(../images/icon_woman.png) no-repeat left bottom;
}

.closet_voice dt {
	min-height: 30px;
	font-weight: bold;
	margin-bottom: 0;
	margin-top: 20px;
	position: relative;
}

.closet_voice dt:first-child {
	margin-top: 0;
}

.closet_voice dt p {
	position: absolute;
	left: 30px;
	bottom: 2px;
}

.closet_voice dd {
	background: #ffffff;
	border: #cccccc solid 1px;
	padding: 20px;
	line-height: 1.8em;
}


/* --------------------------------------------------------------------
	収納量の目安
-------------------------------------------------------------------- */
#storage dl:first-child{
	margin-bottom: 30px;
	margin-top: 10px;
}
#storage dl dt{
		padding: 10px;
	color: #fff;
	 background-color: #666;
	text-align: center;
	margin-bottom: 10px;
}
#storage dl dd{
line-height: 1.5;
	margin-bottom: 20px;
}


/* --------------------------------------------------------------------
	フッター
-------------------------------------------------------------------- */
footer{
	background-color: #f9f9f9;
}

footer .footer_store{
	display: flex;
	flex-wrap: wrap;
}

footer .footer_store li{
	    width: 50%;
    border: 1px solid #bfbfbf;
    box-sizing: border-box;
	text-align: center;
}
footer .footer_store li a{
	display: block;
	padding: 20px;
	font-size: 13px;
	color:#666;
}

footer .footer_btn{
	text-align: center;
	font-weight: bold;
	padding: 30px 40px;
}
footer .footer_btn li{
	margin-bottom: 10px;
}
footer .footer_btn li a{
	padding: 15px;
	font-size: 13px;
	display: block;
	color: #fff;
	background-color: #fe9542;
}

footer .footer_list{
	text-align: center;
}
footer .footer_list li{
	margin-bottom: 15px;
}
footer .footer_list li a{
	color: #666;
	text-decoration: underline;
}
footer .footer_logo{
width: 50%;
    margin: 40px auto 20px;
}

@media screen and (min-width:768px) {
	img{
	width: auto;
}

.pc_only{
	display: block;
}
.sp_only{
	display: none;
}
	.righttext_ {
	margin-top: 10px;
	text-align: right;
}

	main{
		width: 680px;
		margin: 0 auto;
	}
	header{
		width: 680px;
		height: auto;
		margin: 0 auto;
		
	}
	header .l-header {
    justify-content: space-between;
  }
header .l-drawer {
    display:none;
  }
	header .logoarea h1 {
    padding-top: 10px;
    padding-left: 0px;
    width: auto;
}
	header .logoarea {
	clear: both;
	height: 65px;
		width: 680px;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 10px;
	background-color: #fff;
}
	header .logoarea .login {
		    padding: 15px 30px 13px 50px;
	}
header .logoarea .contact {
border: 1px solid #fbbc8a;
	padding: 15px 30px 13px;
	margin:  10px;
	position: relative;
	font-weight: bold;
}

header .logoarea .contact a{
	color: #666666;
}
	#mainvisual{
	padding-top: 80px;
}
	#mainvisual p{
		font-size: 16px;
		    min-height: 70px;
	}

#mainvisual p.campaign {
    bottom: 80px;
}
	section{
		padding: 0px;
		margin-bottom: 60px;
	}
	h2 {
    font-size: 180%;
    text-align: left;
		margin-top: 20px
}
		#list img{
		width: 100%;
	}
	#block_of_topic{
		margin-bottom: 30px;
	}
	div.topiclist_ .righttext_ a {
font-size: 12px;
	}
	div.topiclist_ .topiclist_head_ h2{
		text-align: left;
	}
	#list .grandcru ul,
		#list .tobuclo ul.point{
		display: block;
			margin-top: 7px;
			text-align: center;
	}
		#list .tobuclo ul{
			margin-top: 7px;
			text-align: center;
display: flex;
	}
		#list .tobuclo ul li{
			margin-right: 10px;
	}
		#list .tobuclo div:last-child{
		display: block;
			margin-top: -3px;
			text-align: center;
	}
	#list .ichiran{
		display: flex;
	}
	#list .grandcru{
		width: 30%;
		margin-right: 10px;
		padding: 10px 20px;
	}
	#list .grandcru dl dt {
    margin: 24px 0px 0px;
}
	#list .grandcru dl dd{
		margin-top: 50px;
	}
	#list .grandcru dl dd a{
		font-size: 1.0rem;
		padding: 10px;
	}
	
	#list .grandcru dl dd a:after {
    content: "";
    position: absolute;
    left: 24%;
    top: 51.5%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
	#list .tobuclo{
		width: 70%;
	}
	#list .tobuclo dl dd{
		margin-top: 41px;
	}
	#list .tobuclo div:last-child{
		/* width: 32%; */
		/* width: 25%; */
	}
	#list .tobuclo div:first-child{
		/* width: 64%; */
		/* width: 74%; */
	}
	#list .tobuclo dl dd a:after{
		top:33%;
	}
	#list .tobuclo div:first-of-type{
	padding-bottom: 0px;
	border:none;

}
		#list .tobuclo div{
	margin-top: -10px;
}
	/*#list .tobuclo dl dd ul li a:first-child{
		margin-bottom: 10px;
	}*/
	#list .tobuclo ul.point li:before{
		left: 16%
	}
	#list .tobuclo ul.point{
		margin-top: 10px;
	}
	#list .tobuclo dl dd ul li a,
	#list .tobuclo dl dd a{
		font-size: 1rem;
		padding: 10px;
	}
	#store .pc_only{
		margin: 0 auto;
		width: 628px;
	}
	#use ul {
  display: block;

	}
	#use ul li{
		width: 100%;
	}
	#use div{
		display: flex;
		justify-content: space-between;
	}
	#use div ul{
		width: 32%;
	}
	#use div ul li img{
		width: 100%;
	}
	#use ul dl {
    margin-left: 0px;
}
	footer ul {
		width: 680px;
		margin: 0 auto;
	}

footer .footer_store{
	display: flex;
		flex-wrap: nowrap;
	justify-content: space-around;
	}

footer .footer_store li{
	    /* width:100%; */
	width:auto;
    border:none;
    box-sizing: border-box;
	text-align: center;
}
footer .footer_store li a{
	display: inline-block;
	padding: 30px 0px 0px;
	text-decoration: underline;
	font-size: 13px;
	color:#666;
}

footer .footer_btn{
	text-align: center;
	font-weight: bold;
	padding: 30px 40px 10px;
	    display: flex;
    justify-content: space-between;
}
footer .footer_btn li{
	margin-bottom: 0px;
	width: 30%;
}
footer .footer_btn li a{
	padding: 15px;
	font-size: 13px;
	display: block;
	color: #fff;
	background-color: #fe9542;
}

footer .footer_list{
	    display: flex;
    justify-content: flex-start;
}
footer .footer_list li{
	margin-bottom: 15px;
	margin-right: 15px
}
footer .footer_list li a{
	color: #666;
	font-size:10px;
	text-decoration: underline;
}
footer .footer_logo{
width: 680px;
    margin: 0 auto;
}

	
	
}