@charset "utf-8";
/*================================
 CSS
FileName:    style.css
Last Modified:     2018.04.05
================================*/

/***------------------------
default
------------------------***/

h1,h2,h3,h4,h5,h6,div,ul,li,p,dl,dt,dd {
  margin  : 0px;
  padding : 0px;
}

img {
  border  : none;
  margin  : 0;
  padding : 0;
  vertical-align: middle;
}

/*リストの文頭は非表示*/
ul { list-style-type: none; }

/*改行関連*/
br { letter-spacing: 0; }   /* IEバグ対応 ※連続した<br>に対応しないため */

label { cursor: pointer; }

/*マウスホバー時のアルファ化*/
a:hover {
  filter  : alpha(opacity=70);  -moz-opacity:0.70;  opacity:0.70;
}

/***------------------------
【全般的に】
------------------------***/
body {
	margin			: 0px auto;				/* ページ全体のmargin */
	padding			: 0px;				/* ページ全体のpadding */
	text-align		: center;			/* 下記のautoに未対応用のセンタリング */
	background		: #000000;
	min-height		: 100%;
}

body,td {
	font-family		: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
	color			: #FFFFFF;
	letter-spacing	: 0;
	font-size		: 14px;
	line-height		: 1.5em;
}

p,div{ line-height	: 2.0em;}

/*トップマージンを指定*/
.m_top3  { margin-top:3px;}
.m_top5  { margin-top:5px;}
.m_top7  { margin-top:7px;}
.m_top10 { margin-top:10px;}
.m_top12 { margin-top:12px;}
.m_top15 { margin-top:15px;}
.m_top17 { margin-top:17px;}
.m_top20 { margin-top:20px;}
.m_top25 { margin-top:25px;}
.m_top30 { margin-top:30px;}
.m_top35 { margin-top:35px;}
.m_top40 { margin-top:40px;}
.m_top45 { margin-top:45px;}
.m_top50 { margin-top:50px;}
.m_top60 { margin-top:60px;}
.m_top80 { margin-top:80px;}
.m_top100 { margin-top:100px;}
.m_top160 { margin-top:160px;}

/*ボトムマージンを指定*/
.m_b2  { margin-bottom:2px;}
.m_b5  { margin-bottom:5px;}
.m_b10 { margin-bottom:10px;}
.m_b15 { margin-bottom:15px;}
.m_b20 { margin-bottom:20px;}
.m_b30 { margin-bottom:30px;}
.m_b40 { margin-bottom:40px;}
.m_b50 { margin-bottom:50px;}
.m_b60 { margin-bottom:60px;}
.m_b80 { margin-bottom:80px;}

/*左マージンを指定*/
.m_l3  { margin-left:3px;}
.m_l5  { margin-left:5px;}
.m_l8  { margin-left:8px;}
.m_l10 { margin-left:10px;}
.m_l15 { margin-left:15px;}
.m_l20 { margin-left:20px;}
.m_l24 { margin-left:24px;}
.m_l25 { margin-left:25px;}
.m_l28 { margin-left:28px;}
.m_l30 { margin-left:30px;}
.m_l35 { margin-left:35px;}
.m_l40 { margin-left:40px;}
.m_l50 { margin-left:50px;}
.m_l60 { margin-left:60px;}
.m_l70 { margin-left:70px;}
.m_l80 { margin-left:80px;}
.m_l100 { margin-left:100px;}

/*右マージンを指定*/
.m_r2  { margin-right:2px;}
.m_r5  { margin-right:5px;}
.m_r10 { margin-right:10px;}
.m_r15 { margin-right:15px;}
.m_r20 { margin-right:20px;}
.m_r25 { margin-right:25px;}
.m_r30 { margin-right:30px;}
.m_r35 { margin-right:35px;}
.m_r40 { margin-right:40px;}
.m_r50 { margin-right:50px;}
.m_r80 { margin-right:80px;}

/*上下マージンを指定*/
.v_sp5  { margin: 5px 0; }
.v_sp10 { margin: 10px 0; }
.v_sp15 { margin: 15px 0; }
.v_sp20 { margin: 20px 0; }
.v_sp30 { margin: 30px 0; }

/*左右マージンを指定*/
.h_sp10 { margin: 0 10px; }
.h_sp20 { margin: 0 20px; }
.h_sp25 { margin: 0 25px; }
.h_sp30 { margin: 0 30px; }

/*上PADDING*/
.p_top5  { padding-top: 5px; }
.p_top10 { padding-top: 10px; }
.p_top15 { padding-top: 15px; }
.p_top20 { padding-top: 20px; }
.p_top30 { padding-top: 30px; }
.p_top40 { padding-top: 40px; }
.p_top50 { padding-top: 50px; }
.p_top60 { padding-top: 60px; }
.p_top80 { padding-top: 80px; }

/*下PADDING*/
.p_b20  { padding-bottom: 20px; }
.p_b30  { padding-bottom: 30px; }
.p_b60  { padding-bottom: 60px; }
.p_b160  { padding-bottom: 160px; }

/*左PADDING*/
.p_l60  { padding-left: 60px; }

/*左右PADDING*/
.p_h5  { padding: 0px  5px; }
.p_h10 { padding: 0px 10px; }
.p_h20 { padding: 0px 20px; }
.p_h50 { padding: 0px 50px; }
.p_h100 { padding: 0px 100px; }

/*上下PADDING*/
.p_v5  { padding: 5px  0px; }
.p_v10 { padding: 10px 0px; }
.p_v20 { padding: 20px 0px; }
.p_v30 { padding: 30px 0px; }
.p_v40 { padding: 40px 0px; }
.p_v50 { padding: 50px 0px; }

/*PADDING周囲*/
.pad_5  { padding: 5px; }
.pad_10 { padding: 10px; }
.pad_20 { padding: 20px; }
.pad_30 { padding: 30px; }

/*高さ０*/
.h_0 { height:0px;}

/*廻り込み関連*/
.FloatRight { float: right; }
.FloatLeft  { float: left; }
.Clear      { clear: both; }  /*<br class="Clear">*/
.clearfix
{
  display:block;
  min-height:1px;
}
* html .clearfix{
  height:1px;
}
.clearfix {zoom:1;}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}

/*左寄*/
.al_left   { text-align:left; }
/*右寄*/
.al_right { text-align:right;}
/*中央*/
.al_center { text-align:center; }


h1 {
	font-size		: 20px;
}

h2 {
	font-size		: 18px;
}

h3 {
	font-size		: 16px;
}

.font_b {
	font-weight		: bold;
}

/***------------------------
ヘッダー
------------------------***/
.header_top {
	width			: 100%;
	position		: fixed;
	z-index			: 1000;
}
.header_container{
	position		: relative;
	width			: 100%;
	margin			: 0 auto;
	padding			: 0;
}
.menu_area {
	width			: 100%;
	margin			: 0 auto;
	z-index			: 100;
}
.header_logoarea {
	width			: 100%;
	max-width		: 1200px;
	margin			: 0 auto;
	padding			: 10px 0 15px;
	background-color: #000000;
	z-index			: 200;
}
.header_logo_title {
	width			: 30%;
	max-width		: 360px;
	float			: left;
}
.header_logo_title img {
	width			: 90%;
}
.header_inquiry {
	width			: 14%;
	float			: right;
}
.header_inquiry img {
	width			: 100%;
	max-width		: 160px;
}
.navi_area {
	display			: block;
	float			: right;
	margin			: 0 auto;
}
.menu_navi {
	width			: 100%;
	margin			: 10px 30px;
}
.menu_navi li {
	padding			: 0 4px;
	float			: left;
	list-style		: none;
	color			: #FFFFFF;
	border-left		: 1px solid #FFFFFF;
}
.menu_navi li:last-child {
	border-right	: 1px solid #FFFFFF;
}
.menu_navi li a {
	color			: #FFFFFF;
	text-decoration	: none;
}
.fixed {
	position		: fixed;
	z-index			: 100;
}

/***------------------------
コンテンツ
------------------------***/
.wrapper {
	width			: 100%;
	margin			: 0 auto;
	padding-top		: 85px;
}
.content {
	width			: 100%;
	max-width		: 1200px;
	margin			: 0 auto;
	text-align		: left;
	word-break		: break-all;
}
.content a:link		{ text-decoration:none;}	/*リンク色*/
.content a:visited	{ text-decoration:none;}	/*訪問済みリンク色*/
.content a:active	{ text-decoration:none;}	/*クリックしたときのリンク色*/
.content a:hover	{ text-decoration:underline;}	/*マウスホバー時のリンク色*/

.main_image {
	display			: block;
	width			: 100%;
	max-width		: 1600px;
	margin			: 0 auto;
	position		: relative;
}
.main_image img {
	width			: 100%;
}
.main_image_sp {
	display			: none;
	width			: 100%;
	position		: relative;
}
.main_image_sp img {
	width			: 100%;
}

.pc {
	display			: block;
}
.pc_sp {
	display			: block;
}
.sp {
	display			: none;
}
.sp1 {
	display			: none;
}
.sp2 {
	display			: none;
}
.header_nav {
	display			: none;
}
#top-head {
	position		: relative;
	z-index			: 10;
}
#nav-toggle {
	display			: none;
	position		: absolute;
	right			: 12px;
	top				: 10px;
	width			: 10%;
	max-width		: 35px;
	height			: 100%;
	max-height		: 65px;
	cursor			: pointer;
	z-index			: 999;
	padding			: 0 15px;
}
#nav-toggle div {
	position		: relative;
}
#nav-toggle span {
	display			: block;
	position		: absolute;
	height			: 4px;
	width			: 100%;
	background		: #fff;
	left			: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top				: 15px;
}
#nav-toggle span:nth-child(2) {
	top				: 30px;
	height			: 5px;
}
#nav-toggle span:nth-child(3) {
	top				: 45px;
}
/***------------------------
トップページ
------------------------***/
.top_news_area {
	margin			: 40px auto 60px;
	width			: 100%;
	max-width		: 1200px;
	position		: relative;
}
.top_news_caption {
	width			: 100%;
	max-width		: 1200px;
}
.top_news_caption img {
	width			: 100%;
}
.top_news_btn {
	width			: 100%;
	max-width		: 300px;
	position		: absolute;
	top				: 30px;
	right			: 0;
}
.top_news_btn img {
	width			: 100%;
}
.top_news_box {
	word-break		: break-all;
	border-bottom	: 1px dashed #FFFFFF;
}
.top_news_date {
	margin-top		: 20px;
	line-height		: 1.5em;
}
.top_news_title {
	margin-bottom	: 20px;
	line-height		: 1.5em
}
.top_news_title a {
	color			: #FFFFFF;
}
.top_banner_area {
	margin			: 0 auto 20px;
}
.top_banner_spacial {
	float			: left;
	width			: calc(550 / 1200 * 100%);
}
.top_banner_info {
	float			: right;
	width			: calc(550 / 1200 * 100%);
}
.top_banner_spacial img,
.top_banner_info img {
	width			: 100%;
}
.okaidoku_btn {
	width			: 16%;
	position		: absolute;
	top				: 60%;
	left			: 22%;
}
.okaidoku_btn img {
	width			: 100%;
	max-width		: 190px;
}
.okaidoku_area {
	width			: 95%;
	max-width		: 1200px;
	margin			: 30px auto;
}
.top_okaidoku_box {
	width			: 100%;
	margin			: 0 auto;
	font-size		: 18px;
}
.top_okaidoku {
	color			: #ffcc33;
	font-weight		: bold;
}
.top_okaidoku_title {
	text-decoration	: underline;
	margin-left		: 20px;
	width			: calc(100% - 220px);
}
.top_okaidoku_title a {
	color			: #ffffff;
}

/***------------------------
新着情報
------------------------***/
.news_box {
	width			: 100%;
	margin			: 50px auto 0;
	padding			: 0 0 50px;
	border-bottom	: 1px solid #FFFFFF;
	word-break		: break-all;
}
.news_box a {
	color			: #FFFFFF;
}
.news_box a:link {
	text-decoration	: underline;
}
.news_box_image {
	float			: right;
	width			: 45%;
}
.news_box_image img {
	width			: 100%;
}
.news_box_text {
	float			: left;
	width			: 50%;
	line-height		: 1.5em;
}
.news_box_text_only {
	width			: 100%;
	line-height		: 1.5em;
}
.news_box_title {
	font-size		: 20px;
	font-weight		: bold;
	line-height		: 1.5em;
}
.news_box_date {
	margin			: 20px 0;
	font-size		: 14px;
	line-height		: 1.5em;
}
.news_box_url {
	margin-top		: 30px;
	line-height		: 40px;
	font-weight		: bold;
}
.news_box_url img {
	width			: 40px;
}
.news_pagelink {
	width			: 100%;
	margin			: 30px auto 60px;
	text-align		: center;
}
.news_pagelink_link {
	display			: inline-block;
	color			: #FFFFFF;
}
.news_pagelink_link.p_r {
	margin-right	: 15px;
}
.news_pagelink_btn {
	border			: 1px solid #FFFFFF;
	padding			: 3px 5px;
}

/***------------------------
肉はナカノのこだわり
------------------------***/
.special_title1 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 200px;
}
.special_title1 img {
	width			: 100%;
}
.special_content1 {
	font-size		: 16px;
	text-align		: center;
}
.special_content1_cap {
	display			: flex;
	align-items		: center;
	width			: 50%;
	margin			: 0 auto;
}
.special_content1_cap:before, .special_content1_cap:after {
	content			: "";
	flex-grow		: 1;
	height			: 1px;
	background		: #FFFFFF;
	display			: block;
}
.special_content1_cap:before {
	margin-right	: 5px;
}
.special_content1_cap:after {
	margin-left		: 5px;
}
.special_content1_point {
	width			: calc(100% - 42px);
	margin-top		: 30px;
	padding			: 15px 20px;
	border			: 1px solid #FFFFFF;
}
.special_title2 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 250px;
}
.special_title2 img {
	width			: 100%;
}
.special_content2 {
	font-size		: 16px;
}
.special_text {
	padding-top		: 10px;
	width			: 55%;
	border-top		: 1px solid #FFFFFF;
}
.special_image {
	width			: 40%;
}
.special_image img {
	width			: 100%;
}
.special_left {
	float			: left;
	margin-bottom	: 50px;
}
.special_right {
	float			: right;
	margin-bottom	: 50px;
}
.special_text_title {
	float			: left;
	margin-top		: 5px;
	width			: 80%;
	max-width		: 480px;
}
.special_text_title img {
	width			: 100%;
}
.special_text_icon {
	float			: right;
	width			: 15%;
	max-width		: 90px;
}
.special_text_icon img {
	width			: 100%;
}

.special_text_box {
	width			: calc(100% - 32px);
	border			: 1px solid #FFFFFF;
	margin			: 20px 0 0;
	padding			: 10px 15px;
}

/***------------------------
肉はナカノのご紹介
------------------------***/
.info_title1 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 200px;
}
.info_title1 img {
	width			: 100%;
}
.info_title1_box {
	margin-top		: 50px;
	width			: 45%;
}
.info_title1_box_image {
	float			: left;
	width			: 48%;
}
.info_title1_box_image img {
	width			: 100%;
	max-width		: 240px;
}
.info_title1_box_text {
	float			: left;
	width			: 48%;
	margin-left		: 4%;
	border-top		: 1px solid #FFFFFF;
}
.info_title1_box_name {
	font-size		: 24px;
	font-weight		: bold;
	font-family		: "游明朝", "YuMincho","ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "MS明朝", "MS Mincho", serif;
	line-height		: 2em;
}
.info_title1_box_kana {
	font-size		: 12px;
}
.info_title1_box_comment {
	margin-top		: 20px;
	padding-left	: 5px;
	border-left		: 1px solid #FFFFFF;
	border-bottom	: 1px solid #FFFFFF;
}
.info_title1_box.left {
	float			: left;
}
.info_title1_box.right {
	float			: right;
}
.info_title2 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 290px;
}
.info_title2 img {
	width			: 100%;
}
.info_title2_area img {
	width			: 100%;
}
.info_title2_access {
	width			: calc(100% - 430px);
	float			: left;
	margin-right	: 30px;
}
.info_title2_access_left {
	width			: 150px;
	float			: left;
	font-weight		: bold;
}
.info_title2_access_right {
	width			: calc(100% - 150px);
	float			: left;
}
.info_title2_map {
	width			: 400px;
	float			: left;
}
.info_title3 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 200px;
}
.info_title3 img {
	width			: 100%;
}
.info_title3_text {
	margin			: 0 auto;
	width			: 100%;
	text-align		: center;
}
.info_title3_text img {
	width			: 100%;
	max-width		: 376px;
}
.info_title4 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 260px;
}
.info_title4 img {
	width			: 100%;
}
.info_title4_area img {
	width			: 100%;
}
.info_title4_text {
	font-size		: 16px;
}
.info_title4_text2 {
	margin-top		: 20px;
	text-align		: right;
}
.info_title5 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 200px;
}
.info_title5 img {
	width			: 100%;
}
.info_title5_left {
	float			: left;
	width			: 200px;
}
.info_title5_right {
	float			: left;
	width			: calc(100% - 200px);
}
.info_title5_area {
	margin			: 0 auto 60px;
	font-size		: 16px;
}
.info_title5_box {
	padding-bottom	: 5px;
}
.info_title5_left {
	float			: left;
	width			: 100px;
}
.info_title5_right {
	float			: left;
	width			: calc(100% - 100px);
}
.info_title6 {
	margin			: 50px auto;
	text-align		: center;
	width			: 100%;
	max-width		: 200px;
}
.info_title6 img {
	width			: 100%;
}
.info_title6_area {
	margin			: 0 auto 60px;
	font-size		: 16px;
}
.info_title6_box {
	padding-bottom	: 10px;
	border-bottom	: 1px dashed #FFFFFF;
}
.info_title6_left {
	float			: left;
	width			: 120px;
}
.info_title6_right {
	float			: left;
	width			: calc(100% - 120px);
}

/***------------------------
おすすめ品
------------------------***/
.store_image {
	width			: 95%;
	max-width		: 1200px;
	margin			: 0 auto;
	overflow		: hidden;
	font-size		: 20px;
}
.okaidoku_content {
	width			: 95%;
	max-width		: 1200px;
	margin			: 0 auto;
	word-break		: break-all;
}
.okaidoku_title {
	width			: 100%;
	max-width		: 1200px;
	margin			: 20px auto;
}
.okaidoku_title img {
	width			: 100%;
	max-width		: 416px;
}
.okaidoku_box {
	width			: 100%;
	margin			: 50px auto 0;
	padding			: 0 0 100px;
	word-break		: break-all;
}
.okaidoku_box_date {
	margin			: 10px 0;
}
.okaidoku_box_title {
	font-size		: 20px;
	font-weight		: bold;
	margin-bottom	: 10px;
}
.okaidoku_box_price {
	font-size		: 20px;
	font-weight		: bold;
	margin-bottom	: 10px;
}
.okaidoku_box_border {
	border-top		: 1px solid #FFFFFF;
}
.okaidoku_box_text {
	width			: 80%;
	margin			: 30px auto;
	line-height		: 2em;
}
.okaidoku_box_image_box {
	width			: 100%;
	max-width		: 1200px;
}
.okaidoku_box_image {
	width			: calc(100% / 3 - 2%);
	float			: left;
}
.okaidoku_box_image img {
	width			: 100%;
	max-width		: 360px;
}
.okaidoku_box_image:first-of-type,
.okaidoku_box_image:nth-of-type(2) {
	margin-right	: 2%;
}
.ggmap {
	position		: relative;
	padding-bottom	: 46%;
	padding-top		: 30px;
	height			: 0;
	overflow		: hidden;
}
.ggmap iframe,
.ggmapr object,
.ggmap embed {
	position		: absolute;
	top				: 0;
	left			: 0;
	width			: 100%;
	height			: 100%;
	max-height		: 552px;
}

/***------------------------
お問い合わせ
------------------------***/
.inquiry_atent {
	margin-top		: 50px;
	text-align		: center;
}
.inquiry_atent a {
	color			: #FFFFFF;
}
.inquiry_bold {
	font-weight		: bold;
}
.inquiry_form dt {
	width			: 30%;
	float			: left;
	text-align		: right;
	margin-right	: 10px;
	word-break		: break-all;
}
.inquiry_form dd { 
	width			: 60%;
	float			: left;
	word-break		: break-all;
}
.inquiry_form input[type=text],
.inquiry_form textarea {
	border			: 1px solid #000000;
	outline			: none;
	padding			: 5px;
	font-size		: 16px;
}
.inquiry_input {
	width			: 95%;
	max-width		: 400px;
}
.inquiry_textarea {
	width			: 95%;
	max-width		: 400px;
	height			: 100px;
}
.inquiry_construction {
	width			: 600px;
}
.inquiry_zip {
	width			: 100px;
}
.inquiry_btn_area {
	margin			: 50px auto 100px;
	text-align		: center;
	width			: 100%;
	max-width		: 350px;
}
.inquiry_btn {
	width			: 45%;
	max-width		: 160px;
}
.red {
	color			: #ff0000;
}
/***------------------------
プライバシーポリシー
------------------------***/
.privacy_title {
	margin			: 50px 0;
	text-align		: left;
	width			: 100%;
	max-width		: 600px;
}
.privacy_title img {
	width			: 100%;
}
.privacy_sub {
	margin			: 40px 0 20px;
	font-weight		: bold;
}
.privacy {
	color			: #FFFFFF;
}

/***------------------------
フッター
------------------------***/
.footer_inquiry_area {
	width			: 100%;
	margin			: 10px auto 50px;
}
.footer_inquiry_area img {
	width			: auto;
	max-width		: 100%;
}
.footer_inquiry_btn {
	margin			: 30px auto 0;
}
.footer_inquiry_btn img {
	width			: 100%;
}
.footer_inquiry_tel {
	display			: inline-block;
	width			: 320px;
}
.footer_inquiry_tel2 {
	display			: inline-block;
	max-width		: 420px;
	width			: 95%;
}
.footer_inquiry_mail {
	display			: inline-block;
	width			: 320px;
	margin-left		: 30px;
}
.footer {
	width			: 100%;
	padding			: 30px 0 50px;
	border-top		: 1px solid #FFFFFF;
}
.footer_area {
	width			: 100%;
	max-width		: 1200px;
	margin			: 30px auto;
}
.footer a {
	color			: #FFFFFF;
	text-decoration	: none;
}
.footer a:hover {
	text-decoration	: underline;
}
.footer_navi_area {
	display			: block;
	margin			: 0 auto;
	text-align		: center;
}
.footer_menu_navi {
	margin			: 0 auto 50px;
}
.footer_menu_navi li {
	padding			: 0 10px;
	display			: inline-block;
	list-style		: none;
	color			: #FFFFFF;
	border-left		: 1px solid #FFFFFF;
}
.footer_menu_navi li:last-child {
	border-right	: 1px solid #FFFFFF;
}
.footer_adress {
	float			: left;
	text-align		: left;
	width			: 100%;
	max-width		: calc(1200px - 925px);
}
.footer_copy {
	margin-top		: 30px;
	font-size		: 14px;
}
.footer_link {
	float			: right;
	width			: 100%;
	max-width		: calc(1200px - 275px);
}
.footer_banner {
	float			: left;
}
.footer_banner2 {
	float			: left;
}
.footer_banner_space {
	margin-left		: 2%;
}
.footer_banner_space2 {
	margin-left		: 2%;
}
.footer_link img {
	width			: 100%;
	max-width		: 230px;
}
.footer_insta img {
	width			: 100%;
	max-width		: 145px;
}
/**------------------------------------------------------------------------
画面幅　1280px
------------------------------------------------------------------------***/
@media screen and (max-width: 1280px) {
	/***------------------------
	ヘッダー
	------------------------***/
	.menu_navi {
		margin			: 10px -2%;
		font-size		: 14px;
	}
	/***------------------------
	コンテンツ
	------------------------***/
	.content {
		width			: 95%;
		margin			: 0 auto;
	}
	/***------------------------
	トップ
	------------------------***/
	.top_news_btn {
		top				: 5%;
	}
	/***------------------------
	フッター
	------------------------***/
	.footer {
		width			: 95%;
		padding			: 20px 2.5%;
	}
	.footer_link {
		margin-top		: 10px;
	}
}
/**------------------------------------------------------------------------
画面幅　960px
------------------------------------------------------------------------***/
@media screen and (max-width: 960px) {
	/***------------------------
	コンテンツ
	------------------------***/
	.main_image {
		display			: none;
	}
	.main_image_sp {
		display			: block;
	}
	.pc {
		display			: none;
	}
	.pc_sp {
		display			: block;
	}
	.sp {
		display			: block;
	}
	.sp1 {
		display			: block;
	}
	.sp2 {
		display			: none;
	}
	#top-head,
	.inner {
		width		: 100%;
		padding		: 0;
	}
	#top-head {
		top			: 0;
		margin-top	: 0;
	}
	#top-head.fixed {
		padding-top	: 0;
		background	: transparent;
	}
	#mobile-head {
		background	: #D5F2FA;
		width		: 100%;
		height		: 118px;
		z-index		: 1;
		position	: fixed;
		top			: 0;
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position	: absolute;
		left		: 13px;
		top			: 13px;
		color		: #333333;
		font-size	: 26px;
	}
	#nav-toggle {
		display			: block;
		background-color: #C4424B;
		border-radius	: 20px;
	}
	#global-nav {
		position	: absolute;
		top			: -740px;
		background	: #000000;
		color		: #FFFFFF;
		width		: 100%;
		text-align	: center;
		padding		: 70px 0 10px;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		text-align	: left;
	}
	#global-nav ul {
		list-style	: none;
		position	: static;
		right		: 0;
		bottom		: 0;
		font-size	: 14px;
	}

	#global-nav ul li {
		float		: none;
		position	: static;
	}
	/* 一回り小さくする*/
	.open #nav-toggle{
		width		: 35px;
		height		: 65px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top			: 30px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width		: 0;
		left		: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top			: 30px;
		-webkit-transform: rotate(-315deg);	
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.open #global-nav {
		-moz-transform: translateY(740px);
		-webkit-transform: translateY(740px);
		transform: translateY(740px);
		filter  : alpha(opacity=80);  -moz-opacity:0.80;  opacity:0.80;
	}
	.header_logo_title {
		width			: 75%;
	}
	.header_nav {
		display			: block;
		z-index			: 5;
	}
	.header_nav li {
		display			: block;
		width			: 90%;
		border-bottom	: 1px dashed #FFFFFF;
		padding			: 10px 0;
		margin			: 0 auto;
	}
	.header_nav li a {
		color			: #FFFFFF;
		text-decoration	: none;
	}
	.header_nav li.none {
		border-bottom	: none;
	}
	.header_nav li.none2 {
		margin-top		: -10px;
	}
	.header_nav li a:hover{
		transition		: 0.3s;
		background-position		:0 100%;
	}
	.header_nav li div {
		margin-top		: 5px;
	}
	.okaidoku_btn {
		width			: 20%;
		left			: 11%;
	}
	/***------------------------
	トップ
	------------------------***/
	.footer_inquiry_tel {
		width			: 40%;
		max-width		: 320px;
	}
	.footer_inquiry_mail {
		width			: 40%;
		max-width		: 320px;
	}
	.top_news_btn {
		width			: 30%;
	}
	.top_okaidoku {
		float			: none;
	}
	.top_okaidoku_title {
		float			: none;
		margin-left		: 0;
	}
	.top_okaidoku_title::before {
		content: "\A" ;
		white-space: pre ;
	}
	/***------------------------
	肉はナカノのご紹介
	------------------------***/
	.info_title2_access {
		width			: 100%;
		float			: none;
		margin			: 0;
	}
	.info_title2_map {
		width			: 100%;
		float			: none;
		margin-top		: 30px;
	}
	.info_title2_access_left {
		width			: 100%;
		float			: none;
	}
	.info_title2_access_right {
		width			: 100%;
		float			: none;
	}
	/***------------------------
	お買得品
	------------------------***/
	.okaidoku_content {
		text-align		: left;
	}
	.okaidoku_box_text {
		margin			: 30px 0;
		width			: 100%;
	}
	.okaidoku_box_image_box {
		text-align		: center;
	}
	.okaidoku_box_image {
		float			: none;
		width			: 100%;
		margin-bottom	: 25px;
	}
	.okaidoku_box_image:first-of-type,
	.okaidoku_box_image:nth-of-type(2) {
		margin-right	: 0px;
	}
	/***------------------------
	フッター
	------------------------***/
	.footer_adress {
		max-width		: 100%;
		float			: none;
	}
	.footer_link {
		max-width		: 100%;
		margin			: 40px auto 0;
		float			: none;
	}
	.footer_banner {
		width			: 48%;
	}
	.footer_banner2 {
		float			: none;
		width			: 100%;
	}
	.footer_banner2 img {
		max-width		: calc(100% - (48% - 230px));
		margin-top		: 30px;
	}
	.footer_banner_space {
		margin-left		: 2%;
	}
	.footer_banner_space2 {
		margin-left		: 0;
	}
	.footer_insta {
		float			: none;
		margin			: 0 auto 15px;
	}
	.footer_insta img {
		max-width		: 230px;
	}
}
/**------------------------------------------------------------------------
画面幅　600px
------------------------------------------------------------------------***/
@media screen and (max-width: 600px) {
	/***------------------------
	ヘッダー
	------------------------***/
	.header_logoarea {
		width			: 95%;
		padding			: 10px 2.5% 15px;
	}
	.header_logo_title {
		width			: calc(100% - 80px);
	}
	.navi_area {
		float			: none;
	}
	/***------------------------
	コンテンツ
	------------------------***/
	.pc_sp {
		display			: none;
	}
	.sp1 {
		display			: none;
	}
	.sp2 {
		display			: block;
	}
	/***------------------------
	トップ
	------------------------***/
	.top_news_btn {
		position		: relative;
		width			: 100%;
		margin			: 30px auto 0;
	}
	.top_banner_spacial {
		float			: none;
		width			: 100%;
	}
	.top_banner_info {
		float			: none;
		width			: 100%;
		margin-top		: 30px;
	}
	/***------------------------
	新着情報
	------------------------***/
	.news_box_text {
		float			: none;
		width			: 100%;
	}
	.news_box_image {
		float			: none;
		width			: 100%;
		margin-top		: 30px;
	}
	/***------------------------
	肉はナカノのこだわり
	------------------------***/
	.special_text {
		width			: 100%;
	}
	.special_content1 {
		text-align		: left;
	}
	.special_image {
		width			: 100%;
		margin-top		: 20px;
	}
	.special_left {
		float			: none;
	}
	.special_right {
		float			: none;
	}
	/***------------------------
	肉はナカノのご紹介
	------------------------***/
	.info_title1_box {
		width			: 100%;
	}
	.info_title1_box.left {
		float			: none;
	}
	.info_title1_box.right {
		float			: none;
	}
	/***------------------------
	お問い合わせ
	------------------------***/
	.inquiry_atent {
		text-align		: left;
	}
	.inquiry_form dt {
		width			: 100%;
		float			: none;
		text-align		: left;
	}
	.inquiry_form dd { 
		width			: 100%;
		float			: none;
	}
	/***------------------------
	フッター
	------------------------***/
	.footer_inquiry_tel {
		display			: block;
		margin			: 0 auto;
		width			: 90%;
		max-width		: 320px;
	}
	.footer_inquiry_mail {
		display			: block;
		width			: 90%;
		max-width		: 320px;
		margin			: 30px auto 0;
	}
}
/**------------------------------------------------------------------------
画面幅　400px
------------------------------------------------------------------------***/
@media screen and (max-width: 400px) {
	.header_logo_title {
		height			: auto;
	}
	#nav-toggle {
		top				: 10px;
		max-width		: 17px;
		max-height		: 40px;
		border-radius	: 15px;
	}
	#nav-toggle span {
		display			: block;
		position		: absolute;
		height			: 2px;
		width			: 100%;
		background		: #fff;
		left			: 0;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top				: 10px;
	}
	#nav-toggle span:nth-child(2) {
		top				: 20px;
		height			: 2px;
	}
	#nav-toggle span:nth-child(3) {
		top				: 30px;
	}
	.open #nav-toggle{
		width			: 17px;
		height			: 40px;
	}
	.open #nav-toggle span:nth-child(1) {
		top				: 20px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width			: 0;
		left			: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top				: 20px;
		-webkit-transform: rotate(-315deg);	
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
}