html,body {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}
body {
	min-height: 100vh;
	font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.layout {
	width:calc(100% - 6px);
	margin:0 auto;
	overflow:hidden
}
#wrap {
	background: #fff;
	border-top: 3px solid #FF781E;
}
.pc_only{
display: none
}

#hd {
	padding:0 5px 10px;
}
#hd h1 {
	width:calc(100% - 166px);
	height:70px;
	background:url(../images/logo_sp.png) center center no-repeat;
	background-size:100%
}
#hd h1 a {
	width:100%;
	height:100%;
	display:block
}
#hd h1 img {
	display:none
}
#hd h1.en {
	width:calc(100% - 70px);
	height:16vw;
	background:url(../images/logo_en_sp.png) center center no-repeat;
	background-size:100%
}
#hd h1.en a {
	width:100%;
	height:100%;
	display:block
}
#hd h1.en img {
	display:none
}
#hd .language, #hd p {
	display:none
}
.nav_open {
	right:0px !important
}
.nav {
	-webkit-transition:All 0.5s ease;
	transition:All 0.5s ease;
	position:fixed;
	top:0px;
	right:-200px;
	height:calc(100% + 500px);
	padding-bottom:500px;
	z-index:100;
	width:200px;
	overflow-x:none;
	overflow-y:auto;
	background:#FF781E;
	color:#fff;
	/*--webkit-box-shadow: inset 0 0 5px 5px #222;
	moz-box-shadow: inset 0 0 5px 5px #222;
	box-shadow: inset 0 0 5px 5px #222;*/
}
.nav ul {
	display:block;
	margin:0;
	padding:0
}
.nav ul li {
	display:block;
	margin:0;
	line-height: 48px;
    border-top: 1px solid #eee;
    /*border-bottom: 1px solid #fff;*/
}
.nav ul li:hover {
	border-top: none;
	line-height: 49px
}
/*#nav ul li:hover > a {
	-webkit-box-shadow: inset 0 0 15px 3px #222;
	-moz-box-shadow: inset 0 0 15px 3px #222;
	box-shadow: inset 0 0 15px 3px #222;
}*/
.nav ul li a {
    display: block;
	padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    /*text-shadow: 2px 2px 0 rgba(0,0,0,1.0);*/
}
.nav ul li a:hover {
	box-shadow:inset 0 0 10px 2px rgba(0, 0, 0, 0.3)
}
.nav ul li a:after {
	content:"";
	border-bottom:1px solid rgba(255, 255, 255, 0.15);
	width:100%;
	position:absolute;
	bottom:0;
	left:0
}
.nav ul li ul {
	display:block;
	margin:0 0 0 15px;
	padding:0
}
.nav ul li ul li {
	display:block;
	margin:0
}
.nav ul li ul li a {
	font-size:12px;
	color:#fff;
	display:block;
	text-decoration:none;
	border-bottom:1px solid rgba(0, 0, 0, 0.15)
}
.nav ul li ul li a:hover {
	box-shadow:inset 0 0 10px 2px rgba(0, 0, 0, 0.3)
}
.nav ul li ul li a:after {
	content:"";
	border-bottom:1px solid rgba(255, 255, 255, 0.15);
	width:100%;
	position:absolute;
	bottom:0;
	left:0
}

.menu-trigger {
	z-index:1000;
	position:fixed !important;
	top:25px;
	right:15px;
	display:block;
	margin-top:-5px
}
.menu-trigger, .menu-trigger span {
	display:inline-block;
	-webkit-transition:all .4s;
	transition:all .4s;
	box-sizing:border-box
}
.menu-trigger {
	position:relative;
	width:36px;
	height:24px
}
.menu-trigger span {
	position:absolute;
	left:0;
	width:100%;
	height:4px;
	background-color:#000;
	border-radius:4px
}
.menu-trigger span:nth-of-type(1) {
top:0
}
.menu-trigger span:nth-of-type(2) {
top:10px
}
.menu-trigger span:nth-of-type(3) {
bottom:0
}
.menu-trigger::after {
position:absolute;
left:0;
bottom:-20px;
content:'MENU';
display:block;
width:100%;
color:#000;
font-size:10px;
text-decoration:none;
text-align:center;
-webkit-transition:all .4s;
transition:all .4s
}
.menu-trigger.active::after {
content:'CLOSE';
bottom:-25px;
color:#fff
}
.menu-trigger.active span:nth-of-type(1) {
-webkit-transform:translateY(10px) rotate(-45deg);
-ms-transform:translateY(10px) rotate(-45deg);
transform:translateY(10px) rotate(-45deg);
background:#fff
}
.menu-trigger.active span:nth-of-type(2) {
opacity:0;
background:#fff
}
.menu-trigger.active span:nth-of-type(3) {
-webkit-transform:translateY(-10px) rotate(45deg);
-ms-transform:translateY(-10px) rotate(45deg);
transform:translateY(-10px) rotate(45deg);
background:#fff
}
#con {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap
}
#main {
	width:calc(100% - 10px);
	margin:0 auto
}
#main ol, #main ul {
	padding:5px 0px 5px 25px
}
#main ul {
	list-style-type:disc
}
#main ol li, #main ul li {
	padding:5px 0px
}
#main table {
	margin:10px 0px
}
#main table th, #main table td {
	padding:5px
}
#main img {
	max-width:100%;
	height:auto
}
#main a img {
	display:inline-block;
	-webkit-transition:All 0.5s ease;
	transition:All 0.5s ease
}
#main a img:hover {
	opacity:0.7
}
#main h1 {
	color: #fff;
    border: 1px solid #FF781E;
    font-size: 34px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgba(0,0,0,1.0), 2px 2px 2px rgba(255,255,255,0.5);
    /*height: 80px;*/
	line-height:1.0;
    padding: 0.2em 0 0.2em 0.5em;
    background: url(../images/i_img.jpg);
}
#main .h1_sp {
	color: #fff;
    border: 1px solid #FF781E;
    font-size: 28px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgba(0,0,0,1.0), 2px 2px 2px rgba(255,255,255,0.5);
    height: 80px;
    padding: 0.9em 0 0.0em 0.5em;
    background: url(../images/i_img.jpg);
}
#main .h1_sp02 {
	color: #fff;
    border: 1px solid #FF781E;
    font-size: 18px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgba(0,0,0,1.0), 2px 2px 2px rgba(255,255,255,0.5);
    /*height: 80px;*/
	line-height:1.0em;
    padding: 0.1em 0 0.9em 0.5em;
    background: url(../images/i_img.jpg);
}
#main h1 span {
	display: block;
	margin-top: 5px;
	font-size: 0.65em;
}
#main h2 {
    font-size: 1.4em;
    font-weight: normal;
    height: 40px;
    content: "■";
    margin: 0.8em 0px 0.4em;
    padding: 0.5em 0px 0em 0.4em;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(224, 224, 224);
    border-image: initial;
    background: linear-gradient(rgb(242, 242, 242), rgb(221, 221, 221));
}
#main h2::before {
    content: "■";
    color: rgb(255, 120, 30);
    margin-right: 10px;
}

#main h2 span{
float: right;
font-size: 14px;
margin-right: 10px
}


#main .h2_sp {
    font-size: 1.0em;
    font-weight: normal;
    /*height: 40px;*/
    content: "■";
    margin: 0.8em 0px 0.4em;
    padding: 0.5em 0px 0.5em 0.4em;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(224, 224, 224);
    border-image: initial;
    background: linear-gradient(rgb(242, 242, 242), rgb(221, 221, 221));
}
#main .h2_sp::before {
    content: "■";
    color: rgb(255, 120, 30);
    margin-right: 10px;
}

#main h3 {
	font-size:1.1em;
	font-weight: normal;
	padding:1px 0 1px 10px;
	margin:12px 0 8px 0;
	border-left:4px solid #FF781E;
}

#side {
	width:calc(100% - 10px);
	margin:0 auto
}
#side h2 {
	font-size:1.1em;
	color:#333;
	text-align:center;
	padding:14px 5px;
	margin:0 0 6px;
	background:#F5F5F5;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
}
#side #sidenav {
	display:none
}
#side #bnr {
	margin:20px 0;
	width:100%
}
#side #bnr li {
	margin-bottom:4px
}
#side #bnr li a {
	width:100%;
	padding:10px 10px 10px 30px;
	border:1px solid #FF781E;
	border-radius:3px;
	display:block;
	text-decoration:none;
	background:url(../images/bnr_bg.png) no-repeat 8px center;
	font-size:12px;
	font-weight:bold;
	color:#333;
	-webkit-transition:All 0.5s ease;
	transition:All 0.5s ease
}
#side #bnr li a:hover {
	opacity:0.5
}
#side #contact {
	margin-top:20px
}
#side #contact p {
	padding:5px 10px
}
#side #contact a.form {
	display:block;
	margin:10px;
	padding:14px;
	background:#F5F5F5;
	color:#333;
	font-weight: bold;
	text-align:center;
	text-decoration:none;
	border:1px solid #ccc;
	-webkit-transition:All 0.5s ease;
	transition:All 0.5s ease
}
#side #contact a.form:hover {
	background:#fff;
	color:#FF5252;
	border:1px solid #FF5252;
}
#center {
	display:none
}
.ft_language ul {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex
}
.ft_language ul li {
	width:calc(100% / 3)
}
.ft_language ul li a {
	font-size:0.8em;
	color:#fff;
	background:#333;
	padding:14px;
	display:block;
	text-decoration:none;
	text-align:center;
	border-top:1px solid rgba(255, 255, 255, 0.6);
	border-left:1px solid rgba(255, 255, 255, 0.6)
}
.ft_language ul li:first-child a {
	border-left:none
}
#ft {
	margin-top: auto;
	padding-top:15px;
	padding-bottom:15px;
	text-align:center;
	color:#fff;
	background:#FF781E;
}
.slider_slick {
    display: none;
}
.slider_slick.slick-initialized {
    display: block;
}
#i_img {
	margin: 0 0 55px;
	box-shadow:0 10px 10px rgba(0, 0, 0, 0.05)
}
#i_img ul {
	/*margin:-10px 0 -10px -25px*/
}
.slick-dotted.slick-slider {
    margin-bottom: 0!important;
}
#i_news {
	height:30vh;
	overflow:auto
}
#i_news table {
	width:100%
}
#i_news table tr {
	border-bottom:1px dotted #cccccc;
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap
}
#i_news table td {
	vertical-align:top;
	font-size:0.9em;
	padding:10px 10px 0 10px
}
#i_news table td:first-child {
	background:url(../images/news_icon.png) 10px 17px no-repeat;
	padding-left:30px
}
#i_news table td:last-child {
	display:block;
	width:100%;
	padding:0 10px 10px 30px
}
#page-top {
    background: #666;
    border: none;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    display: block;
}
.menu_img{
background: #FEE9DC;
padding: 10px;
}
.menu_img img{
width: 100%;
padding-bottom: 10px
}

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

.nav_txt{
font-size: 1.5em;
font-weight: bold;
color: #FF781E;
margin-top: 20px
}

.recipe_box{
display:flex;
justify-content:space-between;
width:100%	;
}

.recipe_img {
/*width:40%	;*/
margin-right:10px
}
.recipe_img img{
width:100%	
}

.recipe_txt{
display:flex;
flex-direction: row;
width: 100%
}

.recipe_ttl{
display:flex;
justify-content:start
}
.item{
	position:relative;
		border:3px solid #ccc;
        border-radius: 3px;
		width:130px;
		
		height:38px;
		margin-left:10px
}
.item span{
	position:absolute;
	top:7px;
	left:30px
}
	
.item2{
		
	position:relative;
	background:#CCFFCC;
	color:#006600;
    font-weight: bold;
	text-align:center;
    padding: 3px;
    border-radius: 3px;
	/*width:80px;*/
	/*height:38px;*/
	padding-top:8px;
	margin-left:10px
}


h4 {
   padding: 0.25em 0.8em;
  color: #494949;
  background: transparent;
  border-left: solid 4px #FF9900;
  margin:20px 0 20px 10px
}

.indent{
padding-left:1em; 
text-indent:-1.6em; 
}

.zairyou{
background:url(../images/zairyou.jpg)  no-repeat left center;
background-repeat: round!important;
max-width: 100%;
height: 40px;
color: #494949;
font-size: 1.5em;
font-weight: bold;
padding: 10px 0 0 70px;
margin: 30px 0
}

.tsukurikata{
background:url(../images/zairyou.jpg)  no-repeat left center;
background-repeat: round!important;
max-width: 100%;
height: 40px;
color: #494949;
font-size: 1.5em;
font-weight: bold;
padding: 10px 0 0 70px;
margin: 30px 0
}

.list_recipe_sp{
margin-top: -25px!important
}
h2 img{
	margin-bottom: 4px;
}
.item img{
	margin-bottom: 5px;
	margin-right: 10px;
	margin-left: 0px;
}
.menu_img a{
	font-size: 15px;
}

/* バナー */
.index_bnr {
    margin: 10px 0;
}
.bnr_list {
    padding-left: 0!important;
}
.bnr_list li {
    list-style: none;
}
.bnr_list li img {
	width: 100%;
}
