@charset "utf-8";

/* PC/スマホ共通表示 */
.-----PC_MOBILE_COMMON_CSS_START----- {}

* {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	-webkit-text-size-adjust: 100%;
	max-height: 999999px;
}
body {
	font-size: 14px;
	line-height: 170%;
	color: #333;
	width: 100%;
	font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.fadeIn {
	transition: 1s;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	top: -1px;
	left: 0px;
	white-space: nowrap;
}
.fadeIn.on {
	opacity:1.0;
	top: 0;
}


.fadeInTop {
	transition: 1s;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	bottom: 100px;
	left: 0px;
}
.fadeInTop.on {
	opacity:1.0;
	bottom: 0;
}

.fadeInBottom {
	transition: 1s;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	top: 100px;
	left: 0px;
}
.fadeInBottom.on {
	opacity:1.0;
	top: 0;
}

.fadeInRight {
	transition: 1s;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	top: 0px;
	left: 50px;
}
.fadeInRight.on {
	opacity:1.0;
	left: 0;
}

.fadeInLeft {
	transition: 1s;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	top: 0px;
	right: 50px;
}
.fadeInLeft.on {
	opacity:1.0;
	right: 0;
}
.clickable {
	cursor:pointer;
}

#wrapper {
	width: 100%;
	min-width: 1180px;
	overflow: hidden;
	position: relative;
}
#header {
	position: fixed;
	height: 100%;
	width: 265px;
	left: -265px;
	top: 0px;
	background-color: #F79222;
	z-index: 1;
	transition:1s;
}
#header.on {
	left: 0px;
}
#header .site_name {
	height: 144px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0px;
	background-image: url(../common/img/bg01.jpg);
	background-repeat: repeat;
	background-position: center top;
}

#g_nav {
	padding-top: 60px;
	text-align: center;
	width: 200px;
	margin-right: auto;
	margin-left: auto;
}
#g_nav li {
	margin-bottom:10px;
}
#g_nav li a {
	width:100%;
	color: #FFF;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	height: 60px;
	border-radius:4px;
	display: flex;
	justify-content:center;
	flex-wrap:wrap;
	align-content:center;
	transition:0.4s;
}
#g_nav li a em {
	font-size: 10px;
	font-style: normal;
	line-height: 10px;
	display: block;
	font-weight: normal;
	opacity: 0.8;
	width: 100%;
	margin-top: 0px;
}
#g_nav li a:hover {
	background-color: #FAB161;
}


#s_nav {
	box-sizing:border-box;
	padding-bottom:3px;
	position: fixed;
	right: 0px;
	z-index: 1000000;
	top: -89px;
	transition: 1s;
	background-color: rgba(244,177,0,0.7);
	height: 89px;
	width: 378px;
	display:flex;
	justify-content:center;
	align-items:center;
	align-content:center;
	flex-wrap:wrap;
}
#s_nav.on {
	top: 0px;
}
#s_nav > li {
	height: 26px;
	width: 205px;
	margin-left: 5px;
}

#s_nav > li:nth-child(even){
	width: 130px;
}
#s_nav > li > a {
	box-sizing: border-box;
	color: #FFF;
	text-decoration: none;
	line-height: 25px;
	display: block;
	width: 100%;
	background-repeat: no-repeat;
	background-position: 3px center;
	padding-left: 33px;
	border-radius: 3px;
	transition: 0.4s;
	font-size: 13px;
	padding-top: 1px;
}
#s_nav > li > a:hover {
	background-color:rgba(255,255,255,0.3);
}
#s_nav > li#s_nav_03 > a{
	background-image:url(../common/img/s_nav_icon_03.png);
}
#s_nav > li#s_nav_04 > a{
	background-image:url(../common/img/s_nav_icon_04.png);
}
#s_nav > li#s_nav_05 > a{
	background-image:url(../common/img/s_nav_icon_05.png);
}
#s_nav > li#s_nav_02 > a{
	background-image:url(../common/img/s_nav_icon_02.png);
}
#s_nav > li#s_nav_04 {
	position:relative;
}
#s_nav > li#s_nav_04 > ul  {
	display: none;
	width: 100px;
	position: absolute;
	right: 0px;
	top: 25px;
}
#s_nav > li#s_nav_04 > ul li  {
	margin-bottom:2px;
}
#s_nav > li#s_nav_04 > ul li a  {
	display: block;
	color: #FFF;
	background-color: rgba(210,153,0,0.5);
	text-align: center;
	text-decoration: none;
	line-height: 29px;
	border-radius:4px;
	transition:0.4s;
}
#s_nav > li#s_nav_04 > ul li a:hover  {
	background-color: rgba(210,153,0,0.8);
}

#f_nav {
	width: calc(100% - 265px);
	margin-right: 0px;
	margin-left: auto;
	margin-bottom: 20px;
}

#f_nav ul {
	width:100%;
	font-size: 14px;
	line-height: 14px;
	height: 13px;
	display: flex;
	justify-content:center;
}
#f_nav ul li {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
}
#f_nav ul li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #333;
}
#f_nav ul li a {
	display:inline-block;
	padding-right: 1.2em;
	padding-left: 1.2em;
	color: #333;
	text-decoration: none;
}
#f_nav ul li a em {
	display:none;
}
#f_nav ul li a:hover {
	color: #FF9900;
	text-decoration: underline;
}

#footer {
	width: calc(100% - 265px);
	margin-right: 0px;
	margin-left: auto;
	position: relative;
	z-index: 0;
	border-bottom-width: 6px;
	border-bottom-style: solid;
	border-bottom-color: #F79222;
	background-image: url(../common/img/bg01.jpg);
	background-repeat: repeat;
	background-position: center center;
}
#footer .wrapper {
	width: 873px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 80px;
	position: relative;
}
#footer .footer_link {
	font-size: 13px;
	line-height: 13px;
	position: absolute;
	left: 2px;
	bottom: 15px;
	display: block;
	height: auto;
}
#footer .footer_link ul {

}
#footer .footer_link li {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
	float: left;
	margin-bottom:7px;
}
#footer .footer_link li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #333;
}
#footer .footer_link li a {
	display:inline-block;
	padding-right: 0.8em;
	padding-left: 0.8em;
	color: #333;
	text-decoration: none;
	padding-top: 2px;
}
#footer .footer_link li a:hover {
	display: inline-block;
	padding-right: 0.8em;
	padding-left: 0.8em;
	color: #F79222;
	text-decoration: underline;
}
#footer address {
	font-size: 13px;
	font-style: normal;
	line-height: 120%;
}
#footer address img {
	margin-bottom: 10px;
	height: 28px;
	width: auto;
}
#footer .sns_policy {
	display: block;
	width: 327px;
	position: absolute;
	right: 0px;
	bottom: 83px;
}
#footer .sns_policy a {
	box-sizing:border-box;
	background-color: rgba(164,99,74,0.45);
	font-size: 13px;
	line-height: 52px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	background-image: url(../common/img/footer_sns.png);
	background-repeat: no-repeat;
	background-position: right center;
	display: block;
	padding-left: 11px;
	width: 100%;
	border-radius:5px;
	transition:0.4s;
}
#footer .sns_policy a:hover {
	background-color: rgba(164,99,74,0.7);
}

#footer #copyright {
	font-size: 11px;
	line-height: 13px;
	position: absolute;
	right: 0px;
	bottom: 40px;
}
#page_top {
	position: fixed;
	bottom: 220px;
	right: 25px;
	background: url(../common/img/page_top.png) no-repeat center center;
	height: 79px;
	width: 79px;
	text-indent: -9999px;
	z-index: 99999999;
}
#page_top:hover{
	opacity:0.7;
}



#top_contents {
	width: calc(100% - 265px);
	margin-right: 0px;
	margin-left: auto;
	position: relative;
	z-index: 0;
}
#main_image {
	width: 100%;
	height: 635px;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

#slider {
	width: 100%;
	height: 635px;
	position: relative;
	overflow: hidden;
	top: 0px;
	right: 0px;
}
#slider li {
	width: 100%;
	height: 635px;
	transition: 2s;
	opacity: 0;
	position: absolute;
	overflow: hidden;
}
#slider li.on {
	opacity:1;
}

#slider li div {
	width: 100%;
	height: 635px;
	background-repeat: no-repeat;
	background-position: center 0px;
	background-size: cover;
	background-attachment: scroll;
}
#slider li#scr1 div {
	background-image: url(../img/main_image_1.jpg);
}
#slider li#scr2 div {
	background-image: url(../img/main_image_2.jpg);
}
#slider li#scr3 div {
	background-image: url(../img/main_image_3.jpg);
}
#slider li#scr4 div {
	background-image: url(../img/main_image_4.jpg);
}


#main_image .text {
	height: 635px;
	width: 100%;
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	background-image: url(../img/main_text.png);
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: -9999px;
	overflow: hidden;
	transition:1s;
	opacity:0;
}
#main_image .text.on {
	opacity:1;
}
.content {
	box-sizing:border-box;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}
.content .ttl {
	font-size: 38px;
	font-weight: normal;
	line-height: 110%;
	color: #333;
	text-align: center;
	letter-spacing: 0.3em;
}
.content .ttl:first-letter {
	margin-left: 0.3em;
}
.content .ttl em {
	font-size: 14px;
	font-weight: bold;
	color: #FF9900;
	line-height: 100%;
	display: block;
	text-align: center;
	font-style: normal;
	letter-spacing: 0em;
	margin-top: 4px;
}
.banner_01 {
	width: 100%;
	display: block;
	margin-top: 55px;
	position: relative;
}
.banner_01 ul {
	width: 100%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.banner_01 ul li {
	width: 280px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CDCDCD;
	height: 60px;
}
.banner_01 ul li {
	width: 280px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CDCDCD;
	height: 60px;
}
.banner_01 ul li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CDCDCD;
}
.banner_01 ul li a {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	display: flex;
	background-image: url(../img/arrow_01.png);
	background-repeat: no-repeat;
	background-position: 245px center;
	background-color: #FFF;
	padding-left: 35px;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 18px;
	line-height: 100%;
	color: #333;
	text-decoration: none;
	transition:0.4s;
}
.banner_01 ul li a:hover{
	background-color:#FFD;
}
.banner_01 ul li a em {
	font-size: 11px;
	color: #FFCC66;
	font-weight: bold;
	display: block;
	line-height: 100%;
	margin-top: 5px;
	width: 100%;
	font-style: normal;
}


.banner_02 {
	width: 100%;
	display:block;
	margin-top:55px;
}
.banner_02 ul {
	width: 100%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.banner_02 ul li {
	width: 290px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CDCDCD;
	height: 60px;
	background-repeat: no-repeat;
	background-position: 167px center;
	transition:0.4s;
}
.banner_02 ul li:hover{
	background-color:#FFD;
}
.banner_02 ul li:nth-child(1) {
	background-image: url(../img/ir_bg.jpg);
}
.banner_02 ul li:nth-child(2) {
	background-image: url(../img/recruit_bg.jpg);
}
.banner_02 ul li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CDCDCD;
}
.banner_02 ul li a {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	display: flex;
	background-image: url(../img/arrow_01.png);
	background-repeat: no-repeat;
	background-position: 262px center;
	padding-left: 35px;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 18px;
	line-height: 100%;
	color: #333;
	text-decoration: none;
}
.banner_02 ul li a em {
	font-size: 11px;
	color: #FFCC66;
	font-weight: bold;
	display: block;
	line-height: 100%;
	margin-top: 5px;
	width: 100%;
	font-style: normal;
}


.banner_03 {
	width: 100%;
	display: block;
	padding-top: 60px;
	padding-bottom: 60px;
}
.banner_03 ul {
	width: 100%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.banner_03 ul li {
	width: 216px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CDCDCD;
	height: 30px;
}
.banner_03 ul li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CDCDCD;
}
.banner_03 ul li a {
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	display: flex;
	background-image: url(../img/arrow_05.png);
	background-repeat: no-repeat;
	background-position: 190px center;
	background-color: #FFF;
	padding-left: 25px;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 18px;
	line-height: 100%;
	color: #333;
	text-decoration: none;
	transition:0.4s;
}
.banner_03 ul li a:hover{
	background-color:#FFD;
}

.quick_msg {
	box-sizing:border-box;
	width: 100%;
	padding-top: 50px;
}
.quick_msg .wrapper {
	box-sizing:border-box;
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	border: 3px solid #FD280A;
	padding: 3px;
	opacity:0;
	transition:1s;
}
.quick_msg .wrapper.on {
	opacity:1;
}
.quick_msg .wrapper p {
	padding: 15px;
	background-color: #FAEFE2;
}

#service {

}
#service .wrapper {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
}
#service .pickup_contents {
	margin-top:30px;
}
#service .pickup_contents ul {
	width: 100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#service .pickup_contents ul li {
	height: 245px;
	width: 300px;
}
#service .pickup_contents ul li div {
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	height: 245px;
	width: 300px;
	display:flex;
	align-items:flex-end;
	cursor:pointer;
	transition:0.4s;
}
#service .pickup_contents ul li div:hover {
	opacity:0.6;
}
#service .pickup_contents ul li.item01 div {
	background-image: url(../img/service_p01.jpg);
}
#service .pickup_contents ul li.item02 div {
	background-image: url(../img/service_p02.jpg);
}
#service .pickup_contents ul li.item03 div {
	background-image: url(../img/service_p03.jpg);
}
#service .pickup_contents ul li div a {
	height: 44px;
	width: 100%;
	background-color: rgba(0,0,0,0.4);
	line-height: 44px;
	font-size: 18px;
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
	text-align: center;
}
#topics {
	background-image: url(../common/img/bg01.jpg);
	background-repeat: repeat;
	background-position: center top;
}
#topics .wrapper {
	width: 880px;
	margin-right: auto;
	margin-left: auto;
}
#topics #topics_list {
	width: 100%;
	margin-top:20px;
}
#topics #topics_list dl {
	width: 880px;
}
#topics #topics_list dl dt {
	font-weight: bold;
	color: #FF6600;
	clear: both;
	float: left;
	width: 8em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
#topics #topics_list dl dd {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 8em;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
}
#topics #topics_list dl dd:last_child {
	border-bottom-style: none;
}
#topics #topics_list dl dd a {
	color: #333;
	text-decoration: none;
}
#topics #topics_list dl dd a:hover {
	color: #F60;
	text-decoration: underline;
}

#topics .log_btn {
	width: 315px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	transition:1s;
	opacity:0;
}
#topics .log_btn.on {
	opacity:1;
}
#topics .log_btn a {
	width: 315px;
	line-height: 40px;
	font-size: 14px;
	font-weight: bold;
	color: #FF6600;
	background-image: url(../common/img/arrow_01b.png);
	background-repeat: no-repeat;
	background-position: right center;
	display: block;
	text-align: center;
	text-decoration: none;
	border: 1px solid #CDCDCD;
	padding-top: 2px;
	transition:0.4s;
	background-color:#FFF;
}
#topics .log_btn a:hover {
	background-color:#FFD;
}

#product {

}
#product .wrapper {
	width: 1070px;
	margin-right: auto;
	margin-left: auto;
}
#product .product_list {
	margin-top:30px;
}
#product .product_list ul {
	width: 100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#product .product_list ul li {
	height: 222px;
	width: 245px;
}
#product .product_list ul li div {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 192px;
	width: 245px;
	display: flex;
	align-items: flex-end;
	cursor:pointer;
	transition:0.4s;
}
#product .product_list ul li div:hover {
	opacity:0.6;
}
#product .product_list ul li.item01 div {
	background-image: url(../img/product_p01.jpg);
}
#product .product_list ul li.item02 div {
	background-image: url(../img/product_p02.jpg);
}
#product .product_list ul li.item03 div {
	background-image: url(../img/product_p03.jpg);
}
#product .product_list ul li.item04 div {
	background-image: url(../img/product_p04.jpg);
}
#product .product_list ul li.item05 div {
	background-image: url(../img/product_p05.jpg);
}
#product .product_list ul li.item06 div {
	background-image: url(../img/product_p06.jpg);
}
#product .product_list ul li.item07 div {
	background-image: url(../img/product_p07.jpg);
}
#product .product_list ul li.item08 div {
	background-image: url(../img/product_p08.jpg);
}
#product .product_list ul li div a {
	height: 33px;
	width: 100%;
	background-color: rgba(0,0,0,0.4);
	line-height: 33px;
	font-size: 18px;
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
	text-align: center;
}


#web_catalog {
	width: 1050px;
	height:620px;
	margin-right: auto;
	margin-left: auto;
	margin-top:-50px !important;
}
#web_catalog .wrapper {
	box-sizing:border-box;
	width: 1050px;
	height:500px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#web_catalog .left {
	width: 242px;
	height:342px;
	position:relative;
}
#web_catalog .left .bg {
	width: 100%;
	height: 342px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/web_shop_banner1.png);
	background-size:cover;
}
#web_catalog .center {
	width: 483px;
	height:342px;
	position:relative;
}
#web_catalog .center .bg {
	width: 100%;
	height: 342px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/web_shop_banner2.png);
	background-size:cover;
}

#web_catalog .right {
	width: 293px;
	height:342px;
	position:relative;
}
#web_catalog .right .body {
	width: 100%;
	height:342px;
	position:relative;
}

#web_catalog .right .bg1 {
	width: 100%;
	height:110px;
	position:relative;
}
#web_catalog .right .bg1 a {
	box-sizing:border-box;
	display:block;
	width: 100%;
	height: 110px;
	padding-left:38px;
	font-size: 24px;
	line-height: 103px;
	font-weight: bold;
	letter-spacing:-1px;
	color: #FFF;
	text-decoration: none;
	background-image: url(../img/web_shop_banner3_bg1.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size:contain;
	transition:0.4s;
}
#web_catalog .right .bg1 a:hover {
	opacity:0.6;
}
#web_catalog .right .bg2 {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 191px;
	background-image: url(../img/web_shop_banner3_bg2.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	left: 15px;
	top: 78px;
	z-index:10px;
}
#web_catalog .right .bg3 {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 90px;
	background-image: url(../img/web_shop_banner3_bg3a.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	position: absolute;
	left: 0px;
	bottom: 0px;
}
#web_catalog .right .bg3 p {
	box-sizing: border-box;
	display: flex;
	width: 190px;
	height: 90px;
	padding-top: 12px;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 110%;
	font-weight: bold;
	color: #FFF;
	padding-left:13px;
}
#web_catalog .right .bg3 a {
	box-sizing: border-box;
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 94px;
	height: 61px;
	padding-left:11px;
	font-size: 13px;
	line-height: 130%;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	background-image: url(../img/web_shop_banner3_bg3b.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	transition: 0.4s;
	position: absolute;
	right: 8px;
	bottom: 8px;
}
#web_catalog .right .bg3 a:hover {
	opacity:0.7;
}

.tenjikai_btn {
	width: 100%;
	padding-top:70px;
	padding-bottom:80px;
}
.tenjikai_btn a {
	background-color: #E3A500;
	display: flex;
	align-content: center;
	align-items: center;
	text-align: center;
	justify-content:center;
	width: 100%;
	height: 80px;
	border-radius: 10px;
	font-size: 26px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	line-height: 100%;
	transition:0.4s;
}
.tenjikai_btn a em {
	box-sizing:border-box;
	font-size: 20px;
	height: 40px;
	padding-top:2px;
	font-style: normal;
	text-align: center;
	display: block;
	align-content:center;
	align-items:center;
	width: 173px;
	margin-right: 20px;
	border-radius: 5px;
	background-color: #FF290B;
}
.tenjikai_btn a:hover {
	opacity:0.7;
}

#makizushi {
	background-image: url(../img/makizushi_bg.png);
	background-repeat: repeat-x;
	background-position: center center;
	height: 328px;
	position: relative;
	padding-top: 78px;
}
#makizushi .wrapper {
	position: relative;
	z-index: 10;
}
#makizushi .left {
	background-image: url(../img/makizushi_img_l.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 328px;
	width: 0px;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	transition:1.5s;
}
#makizushi .left.on {
	width: 460px;
}
#makizushi .right {
	background-image: url(../img/makizushi_img_r.png);
	background-repeat: no-repeat;
	background-position: right center;
	height: 328px;
	width: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 0;
	transition:1.5s;
}
#makizushi .right.on {
	width: 460px;
}
#makizushi .ttl {
	letter-spacing: 0em;
}

#makizushi .ttl:first-letter {
	margin-left:0;
}
#makizushi .btn {
	width: 170px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 50px;
}
#makizushi .btn a {
	box-sizing:border-box;
	width: 170px;
	color: #FFF;
	background-color: #E3A500;
	font-size: 14px;
	line-height: 14px;
	padding-top: 10px;
	height: 40px;
	background-image: url(../img/arrow_02.png);
	background-repeat: no-repeat;
	background-position: center 26px;
	border-radius: 4px;
	display: block;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition:0.4s;
}
#makizushi .btn a:hover {
	opacity:0.6;
}

#m_g {
	height: 330px;
	position: relative;
	background-color: #512929;
	color: #FFF;
	padding: 0px;
	margin-top:50px;
	margin-bottom:60px;
}
#m_g .wrapper {
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	width: 643px;
	padding-left: 60px;
	padding-right:60px;
	padding-top: 75px;
}
#m_g .wrapper .catch {
	font-size: 26px;
	font-weight: normal;
	line-height: 100%;
	position: absolute;
	left: 60px;
	top: 75px;
}
#m_g .wrapper .logo {
	box-sizing:border-box;
	width: 643px;
	position: absolute;
	left: 0px;
	top: 130px;
	padding-left: 60px;
	padding-right:60px;
}
#m_g .wrapper .logo ul {
	box-sizing:border-box;
	width: 523px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	padding:0;
}
#m_g .wrapper .logo li {
	width:242px;
	fint-size:15px;
}
#m_g .wrapper .logo li img {
}
#m_g .p01 {
	box-sizing:border-box;
	width: 230px;
	height:150px;
	position: absolute;
	top: 0px;
	left: 643px;
	z-index: 0;
}
#m_g .p01 div {
	width: 230px;
	height:150px;
	background-image: url(../img/m_g_p01.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
#m_g .p02 {
	box-sizing:border-box;
	width: 230px;
	height:173px;
	position: absolute;
	bottom: 0px;
	left: 643px;
	z-index: 0;
}
#m_g .p02 div {
	width: 230px;
	height:173px;
	background-image: url(../img/m_g_p02.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
#m_g .p03 {
	box-sizing:border-box;
	width: calc(100% - 880px);
	height:330px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 0;
}
#m_g .p03 div {
	width: 100%;
	height:330px;
	background-image: url(../img/m_g_p03.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size:cover;
}
#m_g .mask {
	box-sizing:border-box;
	width: calc(100% - 640px);
	height:330px;
	position: absolute;
	top: 0px;
	left: 640px;
	z-index: 1;
	transition:1.5s;
	background-color: #512929;
}
#m_g .mask.on {
	width:0px;
}

#m_g .btn {
	width: 170px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 160px;
}
#m_g .btn a {
	box-sizing:border-box;
	width: 170px;
	color: #FFF;
	background-color: #7C3F3F;
	font-size: 14px;
	line-height: 14px;
	padding-top: 8px;
	height: 40px;
	background-image: url(../img/arrow_02.png);
	background-repeat: no-repeat;
	background-position: center 25px;
	border-radius: 4px;
	display: block;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition:0.4s;
}
#m_g .btn a:hover {
	opacity:0.6;
}


#gobotea_pet {
	height: 330px;
	position: relative;
	background-color: #00A0E5;
	color: #FFF;
	padding: 0px;
	margin-top:50px;
	margin-bottom:60px;
}
#gobotea_pet .wrapper {
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	width: 643px;
	padding-left: 60px;
	padding-right:60px;
	padding-top: 75px;
}
#gobotea_pet .wrapper .catch {
	font-size: 26px;
	font-weight: normal;
	line-height: 150%;
	position: absolute;
	left: 60px;
	top: 55px;
}
#gobotea_pet .wrapper .catch br.pc_nowrap {
	display:none;
}

#gobotea_pet .wrapper .logo {
	box-sizing:border-box;
	width: 643px;
	position: absolute;
	left: 0px;
	top: 130px;
	padding-left: 60px;
}

#gobotea_pet .wrapper .logo > div {
	width: 523px;
	margin-left:0 !important;
	margin-top:20px;
	left: 0px;
}
#gobotea_pet .p01 {
	box-sizing:border-box;
	width: calc(100% - 643px);
	height:330px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 0;
}
#gobotea_pet .p01 div {
	width: 100%;
	height: 330px;
	background-image: url(../img/gobotea_pet_p01.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#gobotea_pet .mask {
	box-sizing:border-box;
	width: calc(100% - 640px);
	height:330px;
	position: absolute;
	top: 0px;
	left: 640px;
	z-index: 1;
	transition:1.5s;
	background-color: #00A0E5;
}
#gobotea_pet .mask.on {
	width:0px;
}

#gobotea_pet .btn {
	width: 170px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 165px;
}
#gobotea_pet .btn a {
	box-sizing:border-box;
	width: 170px;
	color: #FFF;
	background-color: #72BBE3;
	font-size: 14px;
	line-height: 14px;
	padding-top: 8px;
	height: 40px;
	background-image: url(../img/arrow_02.png);
	background-repeat: no-repeat;
	background-position: center 25px;
	border-radius: 4px;
	display: block;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition:0.4s;
}
#gobotea_pet .btn a:hover {
	opacity:0.6;
}

#dev {
	margin-top: 55px;
	position: relative;
	padding: 0px;
	height: 464px;
}
#dev .bg {
	width: 0px;
	background-image: url(../img/dev_bg.jpg);
	background-repeat: repeat;
	background-position: left center;
	height: 407px;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 10;
	transition:1s;
}
#dev .bg.on {
	width: calc(50% + 42px);
}
_:-ms-lang(x), #dev .bg.on {
	width: 54%;
}
#dev .photo {
	width: 0px;
	height: 394px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 20;
	transition:1.5s;
	overflow:hidden;
}
#dev .photo.on {
	width: calc(50% + 42px);
}
_:-ms-lang(x), #dev .photo.on {
	width: 54%;
}
#dev .photo div {
	width: 100px;
	background-image: url(../img/dev_photo.jpg);
	background-repeat: repeat;
	background-position: right top;
	background-size: cover;
	height: 394px;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
#dev .wrapper {
	width: 830px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	z-index: 50;
	padding-top: 45px;
}
#dev .body {
	box-sizing: border-box;
	width: 313px;
	height: 313px;
	background-color: #FFF;
	padding-top: 70px;	
}
#dev .body .ttl {
	letter-spacing: 0em;
}

#dev .body .ttl:first-letter {
	margin-left:0;
}
#dev .body .btn {
	width: 170px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-top: 20px;
}
#dev .body .btn a {
	box-sizing:border-box;
	width: 170px;
	color: #FFF;
	background-color: #E3A500;
	font-size: 14px;
	line-height: 14px;
	padding-top: 10px;
	height: 40px;
	background-image: url(../img/arrow_02.png);
	background-repeat: no-repeat;
	background-position: center 26px;
	border-radius: 4px;
	display: block;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition:0.4s;
}
#dev .body .btn a:hover {
	opacity:0.6;
}
#fun {
	background-image: url(../common/img/bg01.jpg);
	background-repeat: repeat;
	background-position: center top;
	margin-top: 55px;
}
#fun .ttl {
	letter-spacing: 0em;
}

#fun .ttl:first-letter {
	margin-left:0;
}
#fun .wrapper {
	width: 860px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#fun .zen {
	width: 860px;
}
#fun .zen_wrapper {
	box-sizing:border-box;
	width: 860px;
	background-color: #FFF;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 35px;
}
#fun .zen .ttl_02 {
	background-color: #FDEBC1;
	font-size: 20px;
	font-weight: normal;
	color: #333;
	line-height: 46px;
	text-align: center;
	padding-top: 3px;
	width: 100%;
}
#fun .zen .ttl_03 {
	box-sizing: border-box;
	font-size: 18px;
	font-weight: normal;
	color: #333;
	line-height: 18px;
	width: 100%;
	margin-bottom: 7px;
	padding-left: 48px;
	padding-top: 28px;
}
#fun .zen .new {
	width: 217px;
	margin-left:48px;
}
#fun .zen .new .thumb {
	line-height: 0;
	border: 1px solid #CDCDCD;
	margin-bottom: 10px;
}
#fun .zen .new .btn a {
	height: 34px;
	width: auto;
	line-height: 32px;
	font-size: 14px;
	font-weight: bold;
	color: #FF9900;
	background-image: url(../img/arrow_03.png);
	background-repeat: no-repeat;
	background-position: 180px center;
	display: block;
	text-align: center;
	text-decoration: none;
	border: 1px solid #CDCDCD;
	padding-top: 2px;
	transition:0.4s;
}
#fun .zen .new .btn a:hover {
	background-color:#FFD;
}
#fun .zen .bn {
	width: 500px;
	margin-right: 48px;
}
#fun .zen .bn .thumbs {
	width:100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#fun .zen .bn .btn {
	width: 315px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}
#fun .zen .bn .btn a {
	height: 52px;
	width: 315px;
	line-height: 47px;
	font-size: 14px;
	font-weight: bold;
	color: #FF9900;
	background-image: url(../img/arrow_03.png);
	background-repeat: no-repeat;
	background-position: 290px center;
	display: block;
	text-align: center;
	text-decoration: none;
	border: 1px solid #CDCDCD;
	padding-top: 3px;
	transition:0.4s;
}
#fun .zen .bn .btn a:hover {
	background-color:#FFD;
}
#fun .mini {
	width: 421px;
	height: 112px;
	position: relative;
	transition:0.4s;
}
#fun .mini_wrapper {
	box-sizing: border-box;
	width: 421px;
	background-color: #FFF;
	height: 112px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content:center;
	padding-right: 10px;
	padding-left: 26px;
	transition:1s;
}
#fun .mini:hover {
	opacity:0.6;
}
#fun .mini .body {
	
}
#fun .mini .body h1 {
	font-size: 18px;
	font-weight: normal;
	color: #333;
	line-height: 130%;
	margin-bottom: 10px;
}
#fun .mini .body h1 strong {
	font-size: 14px;
	font-weight: bold;	
}
#fun .mini .body .btn a {
	font-size: 14px;
	font-weight: bold;
	color: #FF9900;
	text-decoration: none;
	display: inline-block;
	background-image: url(../img/arrow_04.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 15px;
}
#fun .mini .thumb {
	line-height: 0px;	
}


.-----PC_MOBILE_COMMON_CSS_END----- {}


/* スマートフォン用CSS */
@media screen and (max-width: 640px) {
	
.-----MOBILE_ONLY_CSS_START----- {}


body {
	font-size: 22px;
	line-height: 170%;
	width: 640px;
}

img {
	max-width:600px;
	height:auto;
}
br.pc_nowrap {
	display: inline;
}
br.mobile_nowrap {
	display: none;
}

#wrapper {
	width: 640px;
	min-width: inherit;
	overflow: hidden;
	position: relative;
}
#header {
	width: 100%;
	display: block;
	height: 105px;
	position: relative;
	left: auto;
	top: auto;
}
#header .site_name {
	box-sizing:border-box;
	height: 105px;
	width: 100%;
	justify-content: flex-start;
	padding-left:30px;
}
#header .site_name img {
	height: 37px;
	width: auto;
}
#header nav {
	width: 100%;
	padding-right: 0px;
	padding-left: 0px;
	position: absolute;
	z-index: 1000;
	left: 0px;
	top: 105px;
	display:none;
}


#g_nav {
	padding-top: 0px;
	text-align: center;
	width: 100%;
}
#g_nav li {
	width: 100%;
	margin-bottom: 0px !important;
	height: 70px !important;
	margin: 0px !important;
	padding: 0px !important;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFF;
}
#g_nav li a {
	font-weight: normal;
	border-radius: 0px;
	font-size: 28px;
	line-height: 70px !important;
	height: 70px !important;
	color: #FFF;
	width: 100%;
	display: block;
	background-color: rgba(176,128,0,0.8);
	margin: 0px !important;
	padding: 0px !important;
}
#g_nav li a em {
	display: none;
}
#g_nav li a:hover {
	opacity:0.6;
	background-color:rgba(176,128,0,0.8);
}



#s_nav {
	padding-bottom:0px;
	position: relative;
	right: auto;
	top: auto;
	transition: none;
	background-color: transparent;
	height: auto;
	width: 100%;
	display:block;
}

#s_nav li {
	margin-left: 0px;
	width: 100%;
	margin-bottom: 0px !important;
	height: auto !important;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFF;
}
#s_nav li:nth-child(even){
	width: 100%;
}
#s_nav li a {
	font-size: 28px;
	line-height: 70px;
	color: #FFF;
	width: 100%;
	display: block;
	background-color: rgba(232,125,9,0.9);
	border-radius: 0px;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
#s_nav li a:hover {
	opacity:0.6;
	background-color:rgba(171,98,16,0.8) !important;
}
#s_nav li#s_nav_02 a,
#s_nav li#s_nav_03 a,
#s_nav li#s_nav_04 a,
#s_nav li#s_nav_05 a{
	background-image: none !important;
	background-color:rgba(171,98,16,0.8) !important;
}
#s_nav li#s_nav_04 a{
	font-size: 28px!important;
	line-height: 70px!important;
	color: #FFF;
	width: 100%!important;
	display: block!important;
	background-color:rgba(171,98,16,0.8) !important;
	padding-left: 0px;
	border-radius: 0px;
	padding-top: 0px;
	text-align: center;

}


#s_nav > li#s_nav_04 > a  {
	display: none !important;
}
#s_nav > li#s_nav_04 > ul  {
	display: block;
	width: auto;
	position: static;
	right: auto;
	top: auto;
}
#s_nav > li#s_nav_04 > ul li:first-child  {
	border-top-style: none !important;	
}



#header nav #g_nav {
	display:block;
	width: 100%;
	padding-right: 0px;
	padding-left: 0px;
	position: relative;
}
#header nav #g_nav li {
	width: 100%;
	margin-bottom: 2px;
	height: 73px;
}
#header nav #g_nav li a {
	font-size: 28px;
	line-height: 73px;
	color: #FFF;
	width: 100%;
	display: block;
	background-color:rgba(232,125,9,0.9);
}
#header nav #g_nav li a:hover {
	opacity:0.6;
}
#header nav #s_nav {
	display:block;
	width: 100%;
	padding-right: 0px;
	padding-left: 0px;
	position: relative;
}
#header nav #s_nav li {
	width: 100%;
	margin-bottom: 2px;
	height: 73px;
}
#header nav #s_nav li a {
	font-size: 28px;
	line-height: 73px;
	color: #FFF;
	width: 100%;
	display: block;
	background-color:rgba(232,125,9,0.9);
}
#header nav #s_nav li a:hover {
	opacity:0.6;
}

#f_nav {
	width:640px;
}
#f_nav ul {
	font-size: 17px;
	line-height: 17px;
	height: 16px;
}
#f_nav ul li a {
	padding-right: 0.5em;
	padding-left: 0.5em;
}

#g_nav_open_btn {
	position: absolute;
	background-image: url(../common/img/sp_header_menu_btn.png);
	background-repeat: no-repeat;
	background-position: center center;
	top: 0px;
	right: 0px;
	cursor: pointer;
	height: 105px;
	width: 106px;
	display: block;
}



#footer {
	width:640px;
	border-bottom-width: 10px;
}
#footer .wrapper {
	width: 100%;
	padding-top: 40px;
	padding-bottom:30px;
}
#footer .footer_link {
	font-size: 17px;
	line-height: 17px;
	position: static;
	left: auto;
	bottom: auto;
	height: auto;
	width:100%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-bottom:30px;
}
#footer .footer_link ul {
	width:100%;
	display:flex;
	justify-content:center;
	flex-wrap:nowrap;
}
#footer .footer_link li {
	flex:1 0 1;
	margin-bottom:10px;
}
#footer .footer_link li a {
	padding-right: 0.5em;
	padding-left: 0.5em;
}
#footer address {
	font-size: 20px;
	line-height: 120%;
	display:block;
	text-align:center;
}
#footer address img {
	height: auto;
	width: auto;
}


#footer .sns_policy {
	margin-top:15px;
	display: block;
	width: 370px;
	position: static;
	right: auto;
	bottom: auto;
	margin-right: auto;
	margin-left: auto;
}
#footer .sns_policy a {
	font-size: 16px;
	line-height: 57px;
}


#footer #copyright {
	margin-top:15px;
	display:block;
	font-size: 15px;
	line-height: normal;
	position: static;
	right:auto;
	bottom: auto;
	text-align:center;
}


#top_contents {
	width: 640px;
	min-height:700px;
}
#main_image {
	height: 450px;
}

#main_image .text {
	height: 450px;
	background-image: url(../img/sp_main_text.png);
}

#slider {
	width: 100%;
	height: 450px;
}
#slider li {
	height: 450px;
}
#slider li div {
	width: 100%;
	height: 450px;
}
#slider li#scr1 div {
	background-image: url(../img/main_image_1_sp.jpg);
}
#slider li#scr2 div {
	background-image: url(../img/main_image_2_sp.jpg);
}
#slider li#scr3 div {
	background-image: url(../img/main_image_3_sp.jpg);
}
#slider li#scr4 div {
	background-image: url(../img/main_image_4_sp.jpg);
}


.content {
	box-sizing:border-box;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}
.content .ttl {
	font-size: 38px;
	font-weight: normal;
	line-height: 110%;
	color: #333;
	text-align: center;
	letter-spacing: 0.3em;
}
.content .ttl:first-letter {
	margin-left: 0.3em;
}
.content .ttl em {
	font-size: 14px;
	font-weight: bold;
	color: #FF9900;
	line-height: 100%;
	display: block;
	text-align: center;
	font-style: normal;
	letter-spacing: 0em;
	margin-top: 4px;
}

.banner_01 ul li {
	width: 290px;
	height: 80px;
}
.banner_01 ul li a {
	height: 80px;
	background-position: 270px center;
	padding-left: 20px;
	font-size: 24px;
}
.banner_01 ul li a em {
	font-size: 16px;
}


.banner_02 ul li {
	width: 290px;
	height: 80px;
	background-position: 180px center;
}
.banner_02 ul li a {
	height: 80px;
	background-position: 270px center;
	padding-left: 15px;
	font-size: 24px;
}
.banner_02 ul li a em {
	font-size: 16px;
}


.banner_03 ul li {
	width: 290px;
	height: 40px;
}
.banner_03 ul li a {
	height: 40px;
	background-position: 260px center;
	padding-left: 20px;
	font-size: 26px;
}

.quick_msg .wrapper {
	width: 580px;
}


#service {

}
#service .wrapper {
	width: 600px;
}
#service .pickup_contents {

}
#service .pickup_contents ul {
	width: 100%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
#service .pickup_contents ul li {
	height: 340px;
	width: 400px;
	margin-bottom:20px;
}
#service .pickup_contents ul li div {
	height: 320px;
	width: 400px;
}
#service .pickup_contents ul li div a {
	height: 60px;
	line-height: 60px;
	font-size: 24px;
}
#topics {
	background-image: url(../common/img/bg01.jpg);
	background-repeat: repeat;
	background-position: center top;
}
#topics .wrapper {
	width: 600px;
	margin-right: auto;
	margin-left: auto;
}
#topics #topics_list {
	margin-top:20px;
}
#topics #topics_list dl {
	width: 600px;
}
#topics #topics_list dl dt {
	clear: none;
	float: none;
	width: auto;
	padding-top: 0.5em;
	padding-bottom: 0em;
}
#topics #topics_list dl dd {
	padding-top: 0em;
	padding-bottom: 0.5em;
	padding-left: 0em;
}
#topics .log_btn a {
	line-height: 60px;
	font-size: 22px;
}

#product {

}
#product .wrapper {
	width: 600px;
}

#product .product_list ul li {
	height: 240px;
	width: 290px;
	margin-top: 20px;
}
#product .product_list ul li div {
	height: 230px;
	width: 290px;
}
#product .product_list ul li div a {
	height: 50px;
	line-height: 50px;
	font-size: 26px;
}


#web_catalog {
	width: 590px;
	height: 620px;
	display: block;
}
#web_catalog .wrapper {
	box-sizing:border-box;
	width: 590px;
	height: 353px;
	display: block;
	position: relative;
}
#web_catalog .left {
	width: 175px;
	height: 247px;
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 0px;
}
#web_catalog .left .bg {
	width: 100%;
	height: 247px;
}
#web_catalog .center {
	width: 254px;
	height:187px;
	position: absolute;
	z-index: 0;
	left: 22px;
	bottom: 0px;
}
#web_catalog .center .bg {
	width: 100%;
	height:187px;
}

#web_catalog .right {
	width: 302px;
	height: 353px;
	position: absolute;
	top: 0px;
	right: 0px;
}
#web_catalog .right .body {
	width: 100%;
	height: 353px;
	position: absolute;
	top: 0px;
	right: 0px;
}

#web_catalog .right .bg1 {
	height: 114px;
}
#web_catalog .right .bg1 a {
	height: 114px;
	padding-left:40px;
	font-size: 24px;
	line-height: 106px;
	letter-spacing:0;
	background-image: url(../img/web_shop_banner3_bg1_sp.png);
	transition:none;
}
#web_catalog .right .bg2 {
	height: 196px;
	left: 10px;
	top: 80px;
}
#web_catalog .right .bg3 {
	height: 93px;
	background-image: url(../img/web_shop_banner3_bg3a_sp.png);
}
#web_catalog .right .bg3 p {
	width: 195px;
	height: 93px;
	padding-top: 13px;
	font-size: 16px;
	padding-left:10px;
}
#web_catalog .right .bg3 p br {
	display:none;
}
#web_catalog .right .bg3 a {
	width: 98px;
	height: 64px;
	padding-left:7px;
	font-size: 15px;
	transition:none;
	right: 8px;
	bottom: 8px;
}

.tenjikai_btn {
	padding-top:420px;
}
.tenjikai_btn a {
	height: 90px;
	font-size: 27px;
	transition:none;
}
.tenjikai_btn a em {
	font-size: 23px;
	height: 50px;
	padding-top:0px;
	width: 135px;
	margin-right: 15px;
}
#makizushi {
	background-image: url(../img/makizushi_bg.png);
	background-repeat: repeat-x;
	background-position: center center;
	height: 200px;
	position: relative;
	padding-top: 30px;
}
#makizushi .left {
	background-size:contain;
	height: 200px;
}
#makizushi .right {
	background-size:contain;
	height: 200px;
}
#makizushi .ttl {
	letter-spacing: 0em;
}

#makizushi .ttl:first-letter {
	margin-left:0;
}
#makizushi .btn {
	width: 200px;
	margin-top: 15px;
}
#makizushi .btn a {
	width: 200px;
	font-size: 20px;
	line-height: 20px;
	padding-top: 15px;
	height: 60px;
	background-position: center 40px;
}

#m_g {
	height: 278px;
}
#m_g .wrapper {
	height: 278px;
}
#m_g .wrapper {
	width: 400px;
	padding-left: 13px;
	padding-right:13px;
	padding-top: 60px;
}
#m_g .wrapper .catch {
	font-size: 21px;
	left: 15px;
	top: 60px;
}
#m_g .wrapper .logo {
	width: 400px;
	top: 102px;
	padding-left: 13px;
	padding-right:26px;
}
#m_g .wrapper .logo ul {
	width: 361px;
	justify-content:flex-start;
}
#m_g .wrapper .logo li {
	width:174px;
	line-height:100%;
	font-size:14px;
	letter-spacing:0px;
	margin-right:3px;
}
#m_g .wrapper .logo li img {
	height:31px;
	width:auto;
	margin-bottom:8px;
}
#m_g .p01 {
	width: 142px;
	height:127px;
	left: 328px;
}
#m_g .p01 div {
	width: 142px;
	height:127px;
	background-image: url(../img/m_g_p01.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
#m_g .p02 {
	width: 142px;
	height:145px;
	left: 328px;
}
#m_g .p02 div {
	width: 142px;
	height:145px;
	background-image: url(../img/m_g_p02.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
#m_g .p03 {
	width: 155px;
	height:278px;
	right: 10px;
}
#m_g .p03 div {
	width: 100%;
	height:278px;
	background-image: url(../img/m_g_p03.jpg);
	background-repeat: no-repeat;
	background-position: -185px center;
	background-size:cover;
}

#m_g .mask {
	width: calc(100% - 325px);
	height:278px;
	left: 325px;
	transition:1s;
}
#m_g .mask.on {
	width:0px;
}

#m_g .wrapper > .iw {
	margin-left: 0px !important;
}
#m_g .btn {
	width: 200px;
	margin-right: auto;
	margin-left: 50px;
	display: block;
	margin-top: 130px;
}
#m_g .btn a {
	width: 200px;
	font-size: 20px;
	line-height: 20px;
	padding-top: 12px;
	height: 55px;
	background-position: center 37px;
}

#gobotea_pet {
	height: 278px;
}
#gobotea_pet .wrapper {
	height: 278px;
}
#gobotea_pet .wrapper {
	width: 400px;
	padding-left: 13px;
	padding-right:13px;
	padding-top: 60px;
}
#gobotea_pet .wrapper .catch {
	font-size: 21px;
	left: 15px;
	top: 30px;
}
#gobotea_pet .wrapper .catch br.pc_nowrap {
	display:inline;
}
#gobotea_pet .wrapper .logo {
	width: 400px;
	top: 102px;
	padding-left: 13px;
	padding-right:26px;
}
#gobotea_pet .wrapper .logo > div {
	width: 450px;
	margin-left:0 !important;
	margin-top:30px;
	left: 0px;
}
#gobotea_pet .wrapper .logo img {
	height:36px;
	width:auto;
	margin-bottom:8px;
}
#gobotea_pet .p01 {
	width: 302px;
	height:278px;
	right: 10px;
}
#gobotea_pet .p01 div {
	width: 100%;
	height:278px;
}

#gobotea_pet .mask {
	width: calc(100% - 325px);
	height:278px;
	left: 325px;
	transition:1s;
}
#gobotea_pet .mask.on {
	width:0px;
}

#gobotea_pet .wrapper > .iw {
	margin-left: 0px !important;
}
#gobotea_pet .btn {
	width: 200px;
	margin-right: auto;
	margin-left: 50px;
	display: block;
	margin-top: 130px;
}
#gobotea_pet .btn a {
	width: 200px;
	font-size: 20px;
	line-height: 20px;
	padding-top: 12px;
	height: 55px;
	background-position: center 37px;
}

#dev {

	margin-top: 55px;
	position: relative;
	padding: 0px;
	height: 340px;
}
#dev .bg {
	height: 300px;
}
#dev .photo {
	height: 300px;
}
#dev .photo div {
	height: 300px;
}
#dev .wrapper {
	width:600px;
	padding-top: 20px;
}
#dev .body {
	width: 260px;
	height: 260px;
	padding-top: 40px;	
}
#dev .body .btn {
	width: 200px;
}
#dev .body .btn a {
	width: 200px;
	font-size: 20px;
	line-height: 20px;
	padding-top: 15px;
	height: 60px;
	background-position: center 40px;
}
#fun {

}

#fun .wrapper {
	width: 600px;
}

#fun .zen {
	width: 600px;
	margin-bottom: 15px;
	padding-bottom: 20px;
	position: relative;
}
#fun .zen_wrapper {
	width: 600px;
}
#fun .zen .ttl_02 {
	font-size: 28px;
	line-height: 53px;
	padding-top: 5px;
}
#fun .zen .ttl_03 {
	font-size: 24px;
	line-height: 24px;
	padding-left: 20px;
	padding-top: 20px;
}
#fun .zen .new {
	width: 217px;
	margin-left:20px;
}
#fun .zen .new .btn a {
	height: 52px;
	width: auto;
	line-height: 47px;
	font-size: 20px;
	text-align: left;
	padding-top: 3px;
	padding-left: 15px;
	background-position: 190px center;
}
#fun .zen .bn {
	width: 320px;
	margin-right: 20px;
}
#fun .zen .bn .thumbs {
	width:100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#fun .zen .bn .thumbs li {

}
#fun .zen .bn .thumbs li img {
	width:75px;
	height:auto;
}
#fun .zen .bn .btn {
	width: 100%;
	margin-top:10px;
}
#fun .zen .bn .btn a {
	font-size: 20px;
	background-position: 280px center;
}
#fun .mini {
	width:100%;
	height: 130px;
	margin-top:15px;
}
#fun .mini_wrapper {
	width: 100%;
	height: 130px;
	padding-right: 20px;
	padding-left: 30px;
}
#fun .mini .body {
	
}
#fun .mini .body h1 {
	font-size: 26px;
	line-height: 110%;
	margin-bottom:10px;
}
#fun .mini .body h1 strong {
	font-size: 22px;
}
#fun .mini .body .btn a {
	font-size: 20px;
	padding-right: 15px;
}
#fun .mini .thumb {
	line-height: 0px;	
}



.-----MOBILE_ONLY_CSS_END----- {}

	
}
