@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-size:16px;
/*font: inherit;*/
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/*====================*/

*{
	position:relative;
	box-sizing:border-box;
}

body{
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
	line-height:1.7;
	letter-spacing:0.05em;
	font-weight: 500;
	color:#434b53;

}

#preload{
	position:fixed;
	display:block;
	height:100vh;
	width:100vw;
	left:0;
	top:0;
	z-index:99999;
}


#preload img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a{
	color:#434b53;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-shadow: none;
    box-shadow: none;   
    outline: none;
}

storng{
	font-weight:bold;
}

#store_box > div .thumb-item-nav li{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-shadow: none;
    box-shadow: none;   
    outline: none;
outline-width: 0;
}

a:hover{
	text-decoration:none;
}

img[src$=".svg"] {
    width: 100%;
}

/*記事内の画像*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em !important;
	margin-bottom: .5em !important;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em !important;
	margin-bottom: .5em !important;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
}

table.aligncenter{
	display:table;
}

table.flex_table.aligncenter,
table.flex_table.alignright,
table.flex_table.alignleft{
	float:none;
}

.btn{
	display:inline-block;
	padding:.3em 1em;
	text-decoration:none;
	color:#fff;
	margin:0 1em;
background-color: #434b53;
border:0;
    border-radius: 8px;
    border-left: 8px solid #ec6b53;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
	transition:.2s;
}

.btn:hover{
	color:#000;
	background:#fff;
    border-top: 1px solid #434b53;
    border-right: 1px solid #434b53;
    border-bottom: 1px solid #434b53;
}

/* 画面外にいる状態 */
.animate {
	opacity : 0;
	transform : translate(0, 50px);
	-webkit-transform : translate(0, 50px);
	transition : all 700ms;
}

.animatehead {
	opacity : 0;
	transform : translate(0, -25px);
	-webkit-transform : translate(0, -25px);
	transition : all 700ms;
}

.animateloadst {
	opacity : 0;
	transform : translate(0, 50px);
	-webkit-transform : translate(0, 50px);
	transition : all 700ms;
}

.leftin {
	transform : translate(-50px, 0);
	-webkit-transform : translate(-50px,0);
}

.rightin {
	transform : translate(50px, 0);
	-webkit-transform : translate(50px,0);
}


/* 画面内に入った状態 */
.animate.scrollin {
	opacity : 1 !important;
	transform : translate(0, 0);
	-webkit-transform : translate(0, 0);
}

.animatehead.scrollin {
	opacity : 1 !important;
	transform : translate(0, 0);
	-webkit-transform : translate(0, 0);
}

.animateloadst.scrollin {
	opacity : 1 !important;
	transform : translate(0, 0);
	-webkit-transform : translate(0, 0);
}

.animate.delay2{
	transition-delay:200ms;
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
}

.animate.delay4{
	transition-delay:400ms;
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
}

.animate.delay6{
	transition-delay:600ms;
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
}

.animate.delay8{
	transition-delay:800ms;
	-moz-transition-delay:800ms;
	-webkit-transition-delay:800ms;
	-o-transition-delay:800ms;
	-ms-transition-delay:800ms;
}

.animate.delay10{
	transition-delay:1000ms;
	-moz-transition-delay:1000ms;
	-webkit-transition-delay:1000ms;
	-o-transition-delay:1000ms;
	-ms-transition-delay:1000ms;
}

.animate.delay12{
	transition-delay:1200ms;
	-moz-transition-delay:1200ms;
	-webkit-transition-delay:1200ms;
	-o-transition-delay:1200ms;
	-ms-transition-delay:1200ms;
}

.animate.delay14{
	transition-delay:1400ms;
	-moz-transition-delay:1400ms;
	-webkit-transition-delay:1400ms;
	-o-transition-delay:1400ms;
	-ms-transition-delay:1400ms;
}

.animeend{
	transition-duration:0ms !important;
	-moz-transition-duration:0ms !important;
	-webkit-transition-duration:0ms !important;
	-o-transition-duration:0ms !important;
	-ms-transition-duration:0ms !important;
}

#sp_menu,
#sp_menu ul{
	display:none;
}

/* head */
#header_wrap_bg,
#top_main{

}

#header_wrap{
	border-bottom:5px solid #ec6b53;
}

#header_wrap.fixed{
	position:fixed;
	width:100%;
	background:#fff;
	animation-name: fadeIn;
	animation-duration: .3s;
	animation-iteration-count:1;
	z-index:9999;
}

@keyframes fadeIn { 
	0% {opacity: 0;}
	100% {opacity: 1;}
}

#header_wrap.fixed #header{
	padding:0 1em;
}

#header_wrap.fixed h1 a{
	height:80px;
}

#header_wrap.fixed form{
	font-size:100%;
}

#header{
	padding:1em;
	margin:0 auto;
	max-width:1500px;
}

#header_wrap h2,
#page #header_wrap h2{
	display:none;
}

#title{
	display:flex;
	align-items:center;
	justify-content:space-between;
	//padding-top:1em;
}


#sns_bookmark{
	clear:both;
	margin-bottom:1em;
	text-align:right;
	z-index:10;
}

#sns_bookmark p{
	text-align:left;
}

#sns_bookmark img{
	height:22px;
	width:auto;
}

#sns_bookmark p span{
	font-weight:bold;
}

#sns_bookmark *{
	vertical-align: middle;
}

#sns_bookmark > div{
	display:inline-block;
	line-height: 1;
}

#header h1{
}

#header h1 a,
#fixlogo p a{
	display:block;
	width:500px;
	height:120px;
	text-indent:-9999px;
	text-decoration:none;
	background-image:url(./img/ec-site/ec-title2.png);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;

}

#header h1 a img{
	vertical-align: text-top;
}

#main_menu {
	padding-top:1.5em;
	width: 100%;
	background:#fff;
}

#main_menu ul{
	display:flex;
	justify-content:space-between;
	margin: auto;
	max-width:1100px;
}

#main_menu ul li{
	margin:0 1.5em;
	text-align:center;
}

#ec-page #main_menu ul li a{
	display:inline-block;
	padding-left:1.7em;
	color:#434b53;
	font-size:130%;
	font-weight:bold;
	text-decoration:none;
	background-image:url(./img/menu_icon1.svg);
	background-repeat:no-repeat;
	background-size:auto 1.1em;
	background-position:left center;
}

#main_menu ul li a:after{
	position:absolute;
	display:block;
	content:'';
	width:0;
	height:3px;
	background:#ec6b53;
	left:0;
	right:0;
	bottom:-10px;
	transition:.5s;
}

#ec-page #main_menu ul li a:hover:after{
	width:100%;
}

#ec-page #main_menu ul li:nth-child(2) a{
	background-image:url(./img/menu_icon2.svg);
}

#ec-page #main_menu ul li.ec-srh a{
	background-image:url(./img/ec-site/icon-srh.svg);
}

#ec-page #main_menu ul li:nth-child(4) a{
	background-image:url(./img/menu_icon4.svg);
}

#ec-page #main_menu ul li.ec-icon a{
	padding-left:40px;
	background-image:url(./img/ec-site/ec-icon.svg);
}

#fixheight{
	height:0;
}

#header_wrap.head_fix{
	animation: fadein .2s linear normal;
	z-index: 9999;
	background-color:transparent;
}
@keyframes fadein{
  0% {
	opacity:0;
  }
  100% {
	opacity:1;
  }
}

#header_wrap.head_fix #header{
	max-width:100%;
	padding:0 1em;
}

#header_wrap.head_fix #title{
	padding:0;
	width:100%;
}

#header_wrap.head_fix  #header h1{
	margin:0;
	padding:1.5em .5em;
}

#header_wrap.head_fix  #header h1 a{
	margin-bottom:0;
	width: 350px;
	height:auto;
	font-size:120%;
	text-indent:0;

	text-indent:-9999px;
	background-image:url(./img/title_s.svg);
	background-repeat:no-repeat;
	background-position:center;
}

#header_wrap.head_fix h2,
#page #header_wrap.head_fix h2{
	display:none;
}

#header_wrap.head_fix #main_menu,
#header_wrap.head_fix #main_menu ul{
	position:relative;
	margin-bottom:auto;
	width:auto;
}

#header_wrap.head_fix #main_menu{
	display: flex;
	align-items:center;
	justify-content: space-between;
	padding-top: 0;
	width:100%;
}

body.hf #main_menu {
	position:fixed;
	padding: 1em 0;
	z-index: 9998;
	box-shadow: 2px 2px 5px #c6d4e2;
	top: 0;
	right: 0;
	justify-content: flex-end;
}

body.hf #main_menu ul{
	margin:0;
	padding:.5em;
	width:auto;
	left:0;
	right:0;
}

body.hf #main_menu ul li a{
	font-size:100%;
}


#header_wrap.head_fix #sns_bookmark,
#header_wrap.head_fix #translate,
#header_wrap.head_fix #header h1 span.sub{
	display:none;
}


#top-sh{
	display:flex;
	align-items:center;
}

#top-sh input[type="submit"], #sp-sh input[type="submit"] {
    display: inline-block;
    margin: .5em 0;
    padding: .5em !important;
    font-size: 20px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ec6b53;
}

#slide_header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:0 auto;
	padding:1em;
	max-width:1200px;
	display:none;

}

#top_main_wrap{
	overflow:hidden;
}

#top_main h3{
	font-size:200%;
}

#top_main h3 span{
	display:block;
	font-size:50%
}


/* slider */

#main_slide{
	padding:0;
	overflow:hidden;

}

#main_slide{
}


#main_slide .slider > p{
	display:flex;
	align-items:flex-end;
	justify-content:flex-end;
	width:100%;
	height:calc(100vh - 120px);
	//background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

#main_slide .slider > p:before{
	position:absolute;
	display:block;
	content:'';
	margin:auto;
	width:100%;
	height:100%;
	left:0;
	rop:0;
background: -moz-linear-gradient(left, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(0,0,0,0) 50%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(0,0,0,0) 50%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=1 ); /* IE6-9 */
}

#main_slide .slider p > span{
	display:block;
	margin:auto;
	width:100%;
	max-width:1200px;
	margin-bottom:.5em;
	color:#fff;
	text-align:right;
}

#main_slide .slider p > span span{
	display:block;
}

#main_slide .slider p > span span.site_name{
	font-weight:bold;
	font-size:120%;
}

#main_slide .slider img{
	display:inline;
	width:auto;
	height:auto;
}

#main_slide_wrap #ri-grid{
	margin:0 auto;
}

#main_slide_wrap #ri-grid ul li{
	background:#fff;
}

#main_slide_wrap #ri-grid ul li a{
	background-size:cover;
}

#main_slide_wrap #ri-grid ul li a span.logo{
	position:absolute;
	display:block;
	content:'';
	width:50%;
	height:30%;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:right bottom;
	right:0;
	bottom:0;
	z-index:9999;
}

#main_slide_wrap #ri-grid ul li a span.name{
	position:absolute;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	content:'';
	padding:1em;
	width:100%;
	height:100%;
	color:#fff;
	font-weight:bold;
	background:rgba(0,0,0,.6);
	right:0;
	bottom:0;
	opacity:0;
	z-index:999;
	transition:.2s;
	word-break:keep-all;
	text-align:center;
}

#main_slide_wrap #ri-grid ul li a span.name span{
	display:block;
	font-size:80%;
	font-weight:normal;
}

#main_slide_wrap #ri-grid ul li a:hover span.name{
	opacity:1;
}


/*catlist */


/* page */

#header_wrap:not(.head_fix) #main_menu {
	margin:0 auto;
	max-width:1200px;
	padding-top:1em;
}

#header_wrap:not(.head_fix) #main_menu ul {
	width:100%;
}

#header_wrap:not(.head_fix) #main_menu ul li a{
	font-size:120%;
}


#ec-page #breadcrumb{
	margin:auto;
	padding:1em;
	max-width:1400px;
}

#ec-page #breadcrumb ul{
	display:flex;
	margin-bottom:0;
	font-size:90%;
	justify-content:flex-end;
}

#ec-page #breadcrumb ul li{
	margin-left: .5em;
	margin-bottom:0;
	padding-left: 0;
}

#ec-page #breadcrumb ul li:after{
	margin-left: .5em;
	content: '＞';
}

#ec-page #breadcrumb ul li:last-child:after{
	content:'';
}

#ec-page #breadcrumb ul li:before{
	display:none;
}

#ec-page #cont{
	margin:auto;
	max-width:1200px;
	padding:1em;
}

#ec-page #cat_map{
	padding-bottom:10px;
	background-image:url(./img/ec-site/town.jpg);
	background-position:0px bottom;
	background-size:cover;
	background-repeat:repeat-x;
	border-bottom:10px solid #f5d575;
	
}

#ec-page #cat_map:before{
	position:absolute;
	display:block;
	content:'';
	width:230px;
	height:218px;
	background-image:url(./img/ec-site/hukidasi.png);
	background-position:0px bottom;
	background-size:contain;
	background-repeat:no-repeat;
	right:10%;
	bottom:-10px;
	z-index:999;
}


#ec-page #cat_map:after{
	position:absolute;
	display:block;
	content:'';
	width:100px;
	height:70px;
	background-image:url(./img/ec-site/boygirl.png);
	background-position:0px bottom;
	background-size:contain;
	background-repeat:no-repeat;
	right:30%;
	bottom:-10px;
}

#ec-page #cat_map .tickercontainer:after{
	position:absolute;
	display:block;
	content:'';
	width:110px;
	height:80px;
	background-image:url(./img/ec-site/boygirl2.png);
	background-position:0px bottom;
	background-size:contain;
	background-repeat:no-repeat;
	left:20%;
	bottom:-10px;
}

.tickercontainer{
	overflow: visible !important;
}

#ec-page #cat_map ul{
	display:flex;
backface-visibility: hidden;
}

#ec-page #cat_map ul li{
}

#ec-page #cat_map ul li a{
	display:flex;
	justify-content:center;
	height:200px;
	width:200px;
	background-size:contain;
	background-position:center bottom;
	background-repeat:no-repeat;
}

#ec-page #cat_map ul li a span{
	position:absolute;
	display:table;
	margin:auto;
	padding:.5em;
	min-width:5em;
	background:#fff;
	border:3px solid #ec6b53;
	border-radius:8px;
	font-weight:bold;
opacity:0;
transition:.2s;
top:0;
}

#ec-page #cat_map ul li a span:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
opacity:0;

  z-index: 2;
}

#ec-page #cat_map ul li a span:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #ec6b53;
opacity:0;

  z-index: 1;
}

#ec-page #cat_map ul li a:hover span{
	opacity:1;
	animation: bound .2s linear normal;
}

#ec-page #cat_map ul li a:hover span:before,
#ec-page #cat_map ul li a:hover span:after{
	opacity:1;
}

@media all and (-ms-high-contrast: none) {
  /* ここに書く */
#ec-page #cat_map ul li a span:before {
  bottom: -19px;
}

#ec-page #cat_map ul li a span:after {
  bottom: -25px;
}

}

@keyframes bound {
  0% {
	top:15px;
  }

  100% {
	top:0;
  }
}



#ec-page #cat_map ul li.cat1 a{
	background-image:url(./img/ec-site/shop-fish.png);
}

#ec-page #cat_map ul li.cat2 a{
	background-image:url(./img/ec-site/shop-meat.png);
}

#ec-page #cat_map ul li.cat3 a{
	background-image:url(./img/ec-site/shop-okashi.png);
}

#ec-page #cat_map ul li.cat4 a{
	background-image:url(./img/ec-site/shop-food.png);
}

#ec-page #cat_map ul li.cat5 a{
	background-image:url(./img/ec-site/shop-men.png);
}

#ec-page #cat_map ul li.cat6 a{
	background-image:url(./img/ec-site/shop-sake.png);
}

#ec-page #cat_map ul li.cat7 a{
	background-image:url(./img/ec-site/shop-irui.png);
}

#ec-page #cat_map ul li.cat8 a{
	background-image:url(./img/ec-site/shop-kougei.png);
}

#ec-page #cat_map ul li.cat9 a{
	background-image:url(./img/ec-site/shop-other.png);
}


#ec-page .cat_slide_wrap{

	padding:2em 1em;
}

#ec-page .cat_slide_wrap:nth-child(2n){
	background-color:#eee;
}

#ec-page .cat_slide_wrap.num3{
	background-image:url(./img/ec-site/illust.png);
	background-repeat:no-repeat;
	background-size:auto 70%;
	background-position:90% bottom;
}


#ec-page .cat_slide_wrap .cat_slide{
	margin:auto;
	max-width:1500px;
}
#ec-page .cat_slide_wrap .slick-track{
	height:300px;
}

#ec-page .cat_slide_wrap .slider{
	margin:0 1em;
}

#ec-page .cat_slide_wrap .slide_cont{
	display:flex;
	flex-direction:column;
	margin:auto;
	max-width:1500px;
	height:100%;
}

#ec-page .cat_slide_wrap .slide_cont a{
	position:absolute;
	display:block;
	content:'';
	margin:auto;
	width:100%;
	height:100%;
	left:0;
	right:0;
	background-color:rgba(255,255,255,0);
	transition:.2s;
	z-index:1
}

#ec-page .cat_slide_wrap .slide_cont a:hover{
	background-color:rgba(255,255,255,.3);
}

#ec-page .cat_slide_wrap .ec_image{
	height:70%;
	background-size:cover;
	background-position:center top;
}

#ec-page .cat_slide_wrap .ec_image img{
	width:50%;
	height:auto;
	box-shadow:2px 2px 5px #ccc;
}

#ec-page .cat_slide_wrap .slide_cont > p:nth-child(3){
	text-align:center;
}

#ec-page .cat_slide_wrap .slide_cont .site_name{
	display:inline-block;
	margin:auto;
	text-align:left;
	font-size:80%;
	font-weight:bold;
	word-break:keep-all;
}

#ec-page .cat_slide_wrap .slide_cont .site_name span{
	font-size:inherit;
}


#ec-page .cat_slide_wrap .slide_cont .site_cat{
	display:block;
	font-size:80%;
	line-height:1.2;
}

#ec-page .cat_slide_wrap .slick-prev{
	width:40px;
	height:100%;
	color:#fff;
	background-color:rgba(0,0,0,.7);
	left:0;
	z-index:100;
}

#ec-page .cat_slide_wrap .slick-next{
	width:40px;
	height:100%;
	color:#fff;
	background-color:rgba(0,0,0,.7);
	right:0;
	z-index:100;
}

#ec-page .cat_slide_wrap .slick-prev:before{
	content:'＜'
}

#ec-page .cat_slide_wrap .slick-next:before{
	content:'＞'
}

#ec-page .cat_slide_wrap .slick-prev:before,
#ec-page .cat_slide_wrap .slick-next:before{
	color:#fff;
}

#ec-page .cat_slide_wrap #shoplist {
	display:flex;
	flex-wrap:wrap;
	margin:auto;
	max-width:1500px;
}

#ec-page .cat_slide_wrap #shoplist > div {
	margin:.5em;
	width:calc(10% - 1em);
	width:134px;
}

#ec-page .cat_slide_wrap .ec_image{
	height:100px;
}

#ec-page #cont h2{
	margin-bottom:1.5em;
    padding: .5em 0 .5em 95px;
    font-size: 230%;
    background-image: url(./img/ec-site/h3_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
	border-bottom:2px solid #ccc;
}

#ec-page #cont h3,
#ec-page .cat_slide_wrap h3{
display: flex;
    align-items: center;
	margin-bottom:1.5em;
    padding: .3em 0 .3em 150px;
    font-size: 230%;

    background-image: url(./img/ec-site/h3_bg2.png);
    background-repeat: no-repeat;
background-size:130px auto;
    background-position: left center;
	border-bottom:2px solid #ccc;

}

#ec-page .cat_slide_wrap h3 a{
	display:inline-block;
font-size: inherit;
text-decoration:none;
}


#ec-page #cont h2{
    display: flex;
    flex-wrap:wrap;
    align-items: center;
	margin:auto;
	max-width:1200px;

    margin-bottom:0;
    background-image: none;
    border-bottom:0;
}

#ec-page #cont h2 span{
	font-size:70%;
}

#ec-page .cat_slide_wrap h3{
	margin:0 auto 1.5em;
	max-width:1500px;
}

.screenshot{
	margin-bottom:1.5em;
	text-align:center;
}

.description,
#ec-page #cont #ec_box h4{
	margin:0 auto 1.5em;
	max-width:1000px;
}

.screenshot img{
	box-shadow:2px 2px 5px #ccc;
}

.productlist{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	margin:0 auto 1.5em;
	max-width:1200px;
}

.productlist li{
	width:100%;
	max-width:calc( 20% - 1em);
	margin:.5em;
	font-weight:bold;
	text-align:center;
}

.productlist li .product-image{
	height:150px;
}

.productlist li img{
	object-fit:cover;
	width:100%;
	height:100%;
}



#page #cont{
	margin:0 auto;
	padding:0 1em;
	max-width:1500px;
	min-height:500px;
}

#ec-page #cont h4{
    margin: .5em 0;
    padding: .3em 1em;
    text-decoration: none;
    color: #fff;
font-size: 120%;
    background-color: #434b53;
    border: 0;
    border-radius: 8px;
    border-left: 8px solid #ec6b53;
    transition: .2s;
	margin-bottom:1.5em;
}

#page #cont h5{
	margin-bottom:1em;
	font-size:100%;
	border-bottom:1px dotted #434b53;
}

#ec-page #cont p{
	margin-bottom:1.5em;
}

#page #cont img{
	max-width:100%;
	height:auto;
}

#page :not('#lightbox') img{
	max-width:100%;
	height:auto;
}

#page #cont a:hover img{
	transition:.2s;
}

#page #cont a:hover img{
	opacity:0.5;
}

#page #cont ul{
	margin-bottom:1.5em;
}

#page #cont :not(#result) ul li:not(.slick-slide) {
	position: relative;
	padding: 0.5em 1em 0.5em 2.3em;
	margin-bottom:5px;
}

#page #cont :not(#result) ul li:not(.slick-slide):after,
#page #cont :not(#result) ul li:not(.slick-slide):before{
	content:'';
	position: absolute;
	border-radius: 50%;
}

#page #cont :not(#result) ul li:not(.slick-slide):before {
	top: 1.2em;
	left: 0.2em;
	width: 17px;
	height: 17px;
	background: #434b53;
	transform: translateY(-50%);
	z-index:10;
}

#page #cont :not(#result) ul li:not(.slick-slide):after {
	top: 1.1em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: #ec6b53;
	z-index:1;
}

#page #cont table.flex_table,
#page #cont table.flex_table > tbody{
	display:block;
	max-width:100%;
	background:transparent;
	border-top: 0;
	border-left: 0;
	border:0;
}

#page #cont table.flex_table > tbody > tr{
	display:flex;
}

#page #cont table.flex_table.aligncenter > tbody > tr{
	justify-content:center;
}

#page #cont table.flex_table > tbody > tr > td{
	display:block;
	padding:1em;
	width:auto !important;
	border-right: 0;
	border-bottom: 0;
}

#page #cont table th,
#page #cont table td,
#page #cont table.flex_table > tbody > tr > td table.flex_table td{
	padding:.5em;
}

#page #cont table.flex_table.aligncenter > tbody > tr > td{
	width:auto !important;
}

#page #cont table.flex_table.alignright > tbody > tr{
	justify-content:flex-end;
}

#page #cont table.flex_table.al_center > tbody > tr{
	align-items:center;
}

#page #cont table.flex_table.eqwidth > tbody > tr > td{
	width:100% !important;
}

#page #cont table.flex_table.aligncenter,
#page #cont table.flex_table.aligncenter > tbody{
	display:inline-block;
	margin:auto;
	width: 100%;
}

#page #cont table.tb_noborder,
#page #cont table.tb_noborder td{
	border:0;
}


#page #sns_bookmark.page_foot{
	margin:0 auto 1.5em;
	padding:0 1em;
	max-width:1500px;
}

#page #map{
	margin:0 auto 3em;
	width:80%;
	height:600px;
}

#ec-page #sotre-sh{
	margin:0 auto 1.5em;
	padding:1em;
	max-width:80%;
	border:2px solid #434b53;
	border-radius:8px;
}

#ec-page #sotre-sh input[type=submit]{
    padding: .2em 2em !important;
    font-size: 100%;
}

#ec-page #sotre-sh input[type=text]{
	width:500px;
}

#ec-page #sotre-sh label{
	display:inline-block;
	width:25%;
}

#ec-page #result{
	margin:auto;
	max-width:1200px;
}

#ec-page #result ul{
	
}

#ec-page #result li{
	display:flex;
	padding:1em;
	margin-bottom:2em;
	border-bottom:1px solid #434b53;
	border-right:1px solid #434b53;
}

#ec-page #result li a{
	position:absolute;
	display:block;
	content:'';
	width:100%;
	height:100%;
	left:0;
	top:0;
	z-index:10;
	background:rgba(255,255,255,0);
	transition:.2s;
}

#ec-page #result li:hover a{
	background:rgba(255,255,255,.5);
}


#ec-page #result li span.srhimg{
	display:block;
	width:150px;
	height:150px;
	background-size:cover;
	background-position:center;
}

#ec-page #result li span.srhdetail{
	display:block;
	padding: .5em 1em;
	width:calc(100% - 150px);
}

#ec-page #result li > span > span{
	display:block;
}

#ec-page #result li span.srhcat,
#ec-page #result li span.srhpr{
	font-size:90%;
}

#ec-page #result li span.srhcat{
	margin-bottom:1em;
	font-size:100%;
	font-weight:bold;
	border-bottom:1px dotted #434b53;
}

#ec-page #result li span.srhname{
	margin:.5em 0;
	font-size:150%;
	font-weight:bold;


}

#ec-page #result li span.srhplace{
	margin:.5em 0;
	font-weight:bold;
}


#ec-page #result li span.srhname > span{
    display: inline-block;
    padding: 0 .5em;
    font-size: 100%;
	border-bottom:8px solid #ec6b53
}

#ec-page #result li span.srhname > span span{
    display: inline-block;
    font-size:inherit;
}


#ec-page #result .now{
	padding:.5em;
	color:#fff;
	background-color:#434b53;
}

#cont .su-tabs{
	background:transparent;
}

#cont .su-tabs-nav{
	text-align:center;
}

#cont .su-tabs-nav span{
	border-radius:5px;
}

#cont .su-tabs-nav span.su-tabs-current{
	color:#fff;
	background-color:#434b53;
}

/* store */
#store_box{
	display:flex;
	justify-content:space-between;
	width:100%;
}

#store_box > div{
	padding:1em;
	width:50%;
	overflow:hidden;
}

#store_box > div .thumb-item li a{
	display:block;
	width:100%;
	height:300px;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
}

#store_box > div .thumb-item-nav {
	margin-bottom:1.5em;
}

#store_box > div .thumb-item-nav .slick-track{
	width:100% !important;
}

#store_box > div .thumb-item-nav li{
	width:calc(20% - 6px ) !important;
	height:100px;
	background-size:cover;
	background-position:center;
}

#store_box span.srhcat {
    display: inline-block;
    margin:.5em;
    padding: .3em 1em;
    text-decoration: none;
    color: #fff;
    background-color: #434b53;
    border: 0;
    border-radius: 8px;
    border-left: 8px solid #ec6b53;
    transition: .2s;
}

#store_box p#linklist a,
#ec_box p#linklist a{
	display:flex;
	align-items:center;
	margin:.5em;
	//width:50px;
	//height:50px;
	//text-indent:-9999px;
	font-weight:bold;
	background-size:50px;
}

#store_box p#linklist a:before,
#ec_box p#linklist a:before{
	content:'';
	display:inline-block;
	margin:.5em;
	width:50px;
	height:50px;
	text-indent:-9999px;
	background-size:50px;
}



#store_box p a.kigyouhp:before,
#ec_box p a.kigyouhp:before {
	background-image:url(./img/homepage.svg);
}

#store_box p a.facebook:before,
#ec_box p a.facebook:before {
	background-image:url(./img/facebook.svg);
}

#store_box p a.twitter:before,
#ec_box p a.twitter:before {
	background-image:url(./img/twitter.svg);
}

#store_box p a.instagram:before,
#ec_box p a.instagram:before {
	background-image:url(./img/instagram.svg);
}

#store_box p a.line:before,
#ec_box p a.line:before {
	background-image:url(./img/line.svg);
}

#store_box p a.youtube:before,
#ec_box p a.youtube:before {
	background-image:url(./img/youtube.png);
}


#store_box p a.otherweb:before,
#ec_box p a.otherweb:before {
	background-image:url(./img/otherweb.svg);
}


#ec_box .homepage{
	text-align:center;
}

#ec_box .homepage a{
	display:inline-block;
	width:320px;
	height:70px;
	color:#fff;
	font-size:150%;
	text-indent:-9999px;
	text-decoration:none;
	text-align:left;
	background-color: #de424c;
	background-image:url(./img/cart-link.png);
	background-position:center;
	background-repeat:no-repeat;
	border:1px solid #de424c;
	border-radius:8px;
	transition:.2s;
}

#ec_box .homepage.headlink{
	margin:auto;
	max-width:1000px;
	text-align:right;
}

#ec_box .homepage a:hover{
	color:#de424c;
	background-color: #fff;
	background-image:url(./img/cart-link-hov.png);

}

#ec_box h5{
	margin:auto;
	max-width:1000px;
	padding:.5em;
	font-size:130%;
	text-align:center;
}


#ec_box h6{
	margin:auto;
	max-width:1000px;

	margin-bottom:1.5em;
	padding:.5em;
	font-size:130%;
	border-top:1px dotted #434b53;
	border-bottom:1px dotted #434b53;
}

#ec_box .otherweb{
	display:flex;
	align-items:center;
	justify-content:center;
}

#ec_box .otherweb.headlink{
	justify-content:flex-end;
	margin:auto;
	width:1200px;
}

#ec_box .otherweb img{
	width:208px;
	height:47px;
}

#ec_box .otherweb a{
	display:inline-block;
	margin:.5em;
	padding:1em 2em;
	color:#fff;
	font-size:100%;
	text-decoration:none;
	background-color: #de424c;
	border:1px solid #de424c;
	border-radius:8px;
	transition:.2s;
}

#ec_box .otherweb a:hover{
	color:#de424c;
	background-color: #fff;
}

#ec_box #linklist{
	display:flex;
	justify-content:flex-start;
	max-width: 1000px;
	margin: 0 auto;
}


.thumb-item-nav{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}

.thumb-item-nav li{
	width:25%;
}

.thumbnail-current{
	border:4px solid #ec6b53;
}

.thumb-item-nav li:before,
.thumb-item-nav li:after{
	display:none;
}

#ec-page #cont p.owner{
	clear:both;
	max-width: 1000px;
	text-align:left;
	font-weight:bold;
	margin:0 auto;
}

#footer_wrap{
	border-top:1px dotted #ccc;
}


/* form */

form input[type=submit],
form input[type=reset],
form input[type=button],
form button {
    position: relative;
    display: block;
    margin: 0 auto 1em;
    padding: .5em 2em !important;
    color: #fff;
    font-size: 120%;
    font-weight: bold;
    text-shadow:none;
    box-shadow:none;
    cursor:pointer;

}



form{
	font-size:120%;
}

#header_wrap from{
	display:flex;
	align-items:center;
}

form label{
	cursor:pointer;
}

form input,
form select,
form textarea{
	margin:.5em;
	padding:.5em !important;
	font-size:100%;
font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
	border:1px solid #ccc;
	border-radius:3px;
border: 2px solid #ec6b53;
}

form input[type=file]{
	position: relative;
	max-width:400px;
	background:transparent;
	border:0;
	box-shadow:none;
	display:none;
}

label#filebtn {
    display:inline-block;
  color: #fff;  
  background-color: #434b53;
  padding: 6px;
  border-radius: 3px;
}

form > table{
	max-width:1200px;
	margin:0 auto;
}

form th,
form td{
	padding:1em;
}

form p{
	margin-bottom:1.4em;
}

form h6{
	white-space:nowrap;
}


/* footer */
#page #footer_wrap{
	clear:both;
	border-top:3px solid #434b53;
}

#foot_add{
	display:table;
	max-width:1500px;
	margin:0 0 0 auto;
	padding:1em;
	text-align:right;
}

#foot_add h3{
	font-size:150%;
	padding-left:35px;
	display:table;
	margin:auto 0;
	background-image:url(./img/miyako_logo.jpg);
	background-repeat:no-repeat;
	background-size:30px 30px;
	background-position:left center;
}

#foot_add h4,
#foot_add p{
	text-align:left;
}

#copyright{
	text-align:center;
}

.sp_br{
	display:none;
}

#sp-sh,
#page #sp-sh,
#sp-dram,
#page #sp-dram{
	display:none;
}

#map .map_disc{
	display:flex;
	align-items:center;
}

#map .map_disc img{
	width:auto;
	height:100px;
}

#map .map_disc div{
	padding:.5em;
}

#map .map_disc p:last-child{
	margin-bottom:0;
}

a[href^="tel:"] {
	text-decoration:none;
	color:inherit;
	cursor: default;
	pointer-events: none;
 }


#sp-dram{
max-width:500px;
margin:0 auto;
display: flex;
    justify-content: center;
    text-align: center;
	align-items:center;
	overflow:hidden;
}

#sp-dram div{
	font-size:100%;
	font-weight:bold;
}

#sp-dram div span{
	display:inline-block;
	font-size:inherit;
}

#rool{
	overflow:hidden;
}


#sp-dram input[type=submit],
#sp-dram input[type=button]{
	display:block;
	font-size: 100%;
	width:70px;
	padding:0 !important;
	margin:0 0 0 .5em;
	background-color:#fff;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	border:0;
	text-indent:-9999px;
}

#sp-dram input.st-dram{
	background-image:url(./img/janru_start.svg);
}

#sp-dram input.stop-dram{
	background-image:url(./img/janru_stop.svg);
}

#sp-dram input.result-btn{
	background-image:url(./img/janru_kensaku.svg);
}

.loop{
	margin:0;
	position:absolute;
	top:0;
	display : flex;
	white-space : nowrap;
	line-height : 1em;
	animation : scrolltext 1.5s linear infinite;
}

@keyframes scrolltext{
0% { transform: translateX(0%)}
100% { transform: translateX(-40%)}
}


#loop-wrap,
#sp-dram input.stop-dram,
#sp-dram input.result-btn{
	display:none;
}

.loop li{
	margin:0 .5em;
	font-weight:bold;
}

.handwash{
	padding-left:1.5em;
	background-image:url(./img/handwash.svg);
	background-repeat:no-repeat;
	background-position:left center;
	background-size:auto 1.2em;
}

#loop-wrap{
	width: calc(100% - 106px);
	height: 1em;
	overflow: hidden;
}


#page .slick-prev,
#page .slick-next{
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
	text-indent:-9999px;
    font-size: 15px;
	z-index:9999;
}

#page .slick-next {
    right:0;
}

#page .slick-prev {
    left:0;
}

#page .slick-prev:before,
#page .slick-prev:after,
#page .slick-next:before,
#page .slick-next:after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

#page .slick-prev:before,
#page .slick-next:before{
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #434b53;
}

#page .slick-prev:after{
    right: 8px;
    box-sizing: border-box;
    width: 8px;
    height: 6px;
    border: 5px solid transparent;
    border-right: 8px solid #fff;
}

#page .slick-next:after{
    left: 8px;
    box-sizing: border-box;
    width: 8px;
    height: 6px;
    border: 5px solid transparent;
    border-left: 8px solid #fff;
}

#page .thumb-item-nav .slick-current{
	border:3px solid #ec6b53;
}


/* pagetop */
#page-top{
  width: 110px;
  height: 120px;
  position: fixed;
  right: 10px;
  bottom: 0;
  opacity: 0;
  transition:.2s;
  z-index:999;
}

#page-top a{
  position: relative;
  display: block;
  width: 110px;
  height: 120px;
  text-decoration: none;
  background-image:url(./img/gotop.png);
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:contain;
}

#page-top a:hover{
	background-image:url(./img/gotop_hov.png);
}


@media screen and (max-width:1100px) { 

#title #sns_bookmark{
	display:none;
}

}

@media screen and (max-width:1000px) { 

#top_main_wrap{
overflow: hidden;
}


#main_menu{
	display:none;
}

#header{
	padding:0 !important;
}

#title{
	padding-top:.5em;
	flex-wrap:wrap;
	justify-content:flex-start;
}

#header_wrap h1{
	width:100%;
}

#header_wrap h1 a{
	height:80px;
	width:77%;
}

#header_wrap form{
	width:100%;
	padding-left:25px;
    	padding-right: 1em;
	font-size:100%;
}

#header_wrap form input[type="text"]{
	width:80%;
}

#sp_menu{
	display:block;
	position: fixed;
	text-align: right;
	z-index: 99999;
	transition:.2s;
	right:0;
}

#sp_toggle{
	position:relative;
	display:inline-block;
	margin:1em;
padding-top: 2.5em;
	font-size:75%;
	text-align:center;
	color:#ec6b53;
	font-weight:bold;
	box-sizing:border-box;
  cursor:pointer;
}

#sp_toggle #sp_toggle_icon{
  display: block;
  position: absolute;
  top: 1em;
  right: .3em;
  width: 2em;
  height: 2px;
  margin: -1px 0 0 -2.5em;
  background: #ec6b53;
  transition: .2s;

}

#sp_toggle #sp_toggle_icon:before,
#sp_toggle #sp_toggle_icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  height: 2px;
  background: #ec6b53;
  transition: .3s;
}

#sp_toggle #sp_toggle_icon:before{
  margin-top: -.6em;
}

#sp_toggle #sp_toggle_icon:after{
  margin-top: .5em;
}

#sp_toggle #sp_toggle_icon.close{
  background: transparent;
}

#sp_toggle #sp_toggle_icon.close:before, #panel-btn .close:after{
  margin-top: 0;
}

#sp_toggle #sp_toggle_icon.close:before{
  margin-top: -1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#sp_toggle #sp_toggle_icon.close:after{
  margin-top: -1px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
#open_left,
#open_right{
	display:none;
}

.menuopen{
	height:100vh;
	background-color: rgba(255, 255, 255, 0.9);
}

.menuopen#sp_menu ul{
    text-align: left;
}

.menuopen#sp_menu ul li{
	margin-bottom:1.5em;
	padding:0 1em;
}

.menuopen#sp_menu ul li a{
	text-decoration:none;
	font-weight:bold;
}

.menuopen#sp_menu ul li:last-of-type a{
	margin-bottom:1em;
}

.menuopen#sp_menu ul li:last-of-type a{
	border:0;
}

.menuopen#sp_menu ul li.carrent a,
.menuopen#sp_menu ul li a:hover{
}

.menuopen#sp_menu ul li.carrent a:after,
.menuopen#sp_menu ul li a:hover:after {
    width: 0;
}

.menuopen#sp_menu ul li.carrent:last-of-type a,
.menuopen#sp_menu ul li:last-of-type a:hover {
    color: inherit;
    background-color: inherit;
}

.menuopen#sp_menu ul li #ts_icon{
}

#sp_menu ul li #ts_icon a{
	display:inline-flex;
	margin:.5em;
	width:40px;
	height:40px;
}

.menuopen#sp_menu #sns_bookmark{
	text-align:left;
}

#ec-page #cat_map ul li a span{
	opacity:1;
}

#ec-page #cat_map:before{
	width:150px;
}

#ec-page .cat_slide_wrap.num3{
	 background:none;
}


#main_slide_wrap #ri-grid ul li a:hover span.name{
	opacity:0;
}


.screenshot img{
	max-width:100%;
	height:auto;
}

#ec-page #ec_box .otherweb.headlink{
	width:100%;
	flex-wrap:wrap;
	justify-content:center;
}

#ec_box .otherweb a{
	padding:1em 1.5em;
}

#ec-page #ec_box .otherweb.headlink img{

display: block;
    width: 100%;
    object-fit: contain;
    height: 47px;
}


} 

@media screen and (max-width:750px) {

#header_wrap.fixed{
	position: relative;
    width: 100%;
    background: #fff;
    animation-name: unset;
}

#ec-page #cat_map{
	padding-bottom:0;
}

#ec-page #cat_map:before{
	width:100px;
}

#ec-page #cat_map ul li a{
	margin-top:25px;
	width:100px;
	height:100px;
}

#ec-page #cat_map ul li a span{
	font-size:70%;
	top:-25px;
}

#ec-page #cat_map:before{
	right:8px;
	bottom:-20px;
}

#ec-page #cat_map .tickercontainer:after,
#ec-page #cat_map:after {
	width:50px;
	height:35px;
}

#breadcrumb{
	display:none;
}

.productlist li{
	max-width:calc( 50% - 1em)
}

.productlist li .product-image{
	margin-bottom:0;
	height:120px;
    overflow: hidden;
}

#ec_box #linklist{
	flex-direction:column;
}

#ec-page .cat_slide_wrap #shoplist{
	justify-content:space-around;
}

#ec-page #cont.topcont p{
	text-align:left !important;
	font-size:80%;
}

#ec-page #cont h2{
	justify-content:space-around;
	padding:.5em;
	font-size:130%;
}

#ec-page .cat_slide_wrap{
	padding:.5em;
}

#ec-page .cat_slide_wrap h3 a{
	word-break:keep-all;
}

#ec-page .cat_slide_wrap #shoplist > div{
	width:calc( 33.3333% - 1em );
}

#ec-page #cont h3, #ec-page .cat_slide_wrap h3{
	padding:.3em 0 .3em 70px;
	font-size:120%;
	background-size:60px auto;
}

#ec-page .cat_slide_wrap .slide_cont .site_name{
	font-size:60%;
}

#ec-page #cont img{
	max-width:100%;
	height:auto;
}

#ec-page #sotre-sh{
	max-width:100%;
}

#ec-page #sotre-sh input[type=text]{
	max-width:100%;
	margin:0;
}

#ec-page #sotre-sh label{
	width:auto;
}

#ec-page #result li{
	align-items:center;
	flex-direction:column;
}

#ec-page #result li span.srhdetail{
	width:100%;
	padding:.5em 0;
}

#ec-page #result li span.srhname > span{
	padding:0;
}

#ec-page .su-tabs-pane{
	padding:1em 0;
}

#ec_box{
	display: flex;
	flex-direction: column;
}

#ec_box h2{
    order: 1;
}

#ec_box .headlink{
	width:100%;
    order: 2;
}

#ec_box .description{
    order: 4;
}

#ec_box .screenshot{
    order: 3;
}

#ec_box .productlist{
    order: 5;
}

#ec_box h5{
    order: 7;
	width:100%;
}

#ec_box h5{
    order: 6;
	width:100%;
}

#ec_box .footlink{
    order: 7;
	flex-wrap:wrap;
}

#ec_box .otherweb span{
	display:flex;
}

#ec_box h6{
    order: 8;
	width:100%;
}


#ec_box .owner{
    order: 9;
	width:100%;
	font-size:80%
}

#ec_box #linklist{
	width:100%;
    order: 10;

}

#ec_box .homepage.headlink{

}

#ec-page #ec_box .otherweb.headlink{

}

#ec_box .homepage a{
	width:200px;
	background-size:160px auto;
}

#store_box p#linklist a:before,
#ec_box p#linklist a:before{
	width:30px;
	height:30px;
	background-size:contain;
}

#foot_add h3{
	font-size:90%;
    background-size: contain;
}

#foot_add h4, #foot_add p{
	font-size:60%;
}

#foot_add p a{
	font-size:inherit;

}

#foot_add{
	padding-bottom:100px;
}

#copyright p{
	font-size:50%;
}

#page-top a{
	animation : imgchenge 3s linear infinite;
}

@keyframes imgchenge{
0% { background-image: url(./img/gotop.png);}
49% { background-image: url(./img/gotop.png);}
50% { background-image: url(./img/gotop_hov.png);}
100% { background-image: url(./img/gotop_hov.png);}
}

}


@media screen and (max-width:500px) { 
#header_wrap h1 a{
    height: 0;
    padding-top: 23%;
}

#top-sh input[type="submit"], #sp-sh input[type="submit"]{
	padding:.3em .5em !important;
}

#header_wrap form input[type="text"]{
	padding:.3em .5em !important;
	width:58%;
}
