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

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*--------------------------------------
　基本設定
---------------------------------------*/
body {
  font-size: 16px;
  line-height: 1.7;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  color: #333;
  text-align: justify;
  text-justify: inter-character;
  background-image: url("../images/bg_all.jpg");
  width:-webkit-fill-available;
}

a {
  text-decoration: none;
}
a:link {
  color: #dedb56;
} /* リンクの色 */
a:visited {
  color: #dedb56;
} /* 済みリンク */
a:hover {
  color: #dc2020;
  text-decoration: underline;
} /* リンク上 */
a:active {
  color: #dc2020;
} /* onclick */
dl {
  -webkit-text-size-adjust: none;
}
/*--------------------------------------
　大枠囲み
---------------------------------------*/
#wrapper {
  background: url(../images/bg_hd.png) repeat-x;
  width: 100vw;
  overflow:hidden;
}
/*--------------------------------------
　ヘッダー(PC)
---------------------------------------*/
#header {
  width:96vw;
  margin: 0;
  padding: 0 2vw 4px 2vw;
  z-index:9999;
  background-color: #fcf7d8;
  position: fixed;
　overflow: hidden;
}
#header_box2 {
  display: flex;
  justify-content: space-between;
}
h1 {
  font-size: 1vw;
  color: #999797;
  margin-top: 1vw;
}
#header_left {
  float: left;
}
#icons {
  display: flex;
  margin-right: 1em;
}
#icons p {
  padding:3px 5px;
  font-size: 2vw;
}
#header_right {
  float: right;
}
#logo {margin-top: 1vw;}
#logo img{width: 14vw;}

#header_btn {
  background:#fbbb0d;
  border-radius: 0 0 0.3em 0.3em;
  padding: 2vw 5vw;
  color: #ffffff;
  height: 1.7em;
}
#header_btn li {
  display: inline;
  font-size: 2vw;
  background: url(../images/arrow.png) 0 50% no-repeat;
}
#header_btn li:first-of-type {
  margin-right: 16px;
}
#tel {
  background: url(../images/tel.png) left no-repeat;
  font-size: 2vw;
  color: #b55e74;
  padding-left: 20px;
  margin-right: 0;
  float: right;
}
#header_btn a {
  text-decoration: none;
  font-size: 2vw;
  vertical-align: 1.5vw;
}
#header_btn a:link {
  color: #ffffff;
} /* リンクの色 */
#header_btn a:visited {
  color: #ffffff;
} /* 済みリンク */
#header_btn a:hover {
  color: #ffffff;
  text-decoration: underline;
} /* リンク上 */
#header_btn a:active {
  color: #ffffff;
} /* onclick */


/*--------------------------------------
　グローバルナビゲーション(PC)
---------------------------------------*/
#gnavi {
  display: none;
}

/*#gnavi {
  width: -webkit-fill-available;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  list-style-type: none;
  display: flex;
  justify-content:space-around;
}

#gnavi li {
  width: 20vw;
  height:4vw; 
  line-height: 0;
  text-align: center;
  color: #040370;
  background: url(../images/gnavi_off.png)no-repeat;
  background-size: contain;
}

#gnavi li:hover {
  line-height: 0;
  text-align: center;
  color: #040370;
  background: url(../images/gnavi_on.png) no-repeat;
  background-size: contain;
}

#gnavi li a {
  font-size: 1.7vw;
  display: block;
  color:#141111;
  text-decoration: none;
  padding-top: 1.6vw;
  padding-left: 1vw;
 
}
#gnavi a:hover {
  color: #040370;
}
#gnavi li strong {
  font-weight: normal;
}*/

/*--------------------------------------
　キービジュアル
---------------------------------------*/
#visual_box {
  width: 96vw;
  margin: 8vw 2vw 2vw;
}

#visual_box img{
  width:70vw;
  margin: 1vw 13vw;
}

@media screen and (max-width:600px) {
/*--------------------------------------
　ヘッダー(600px以下)
---------------------------------------*/
#header {
  width: -webkit-fill-available;
  margin: 0 auto;
}
#header_box2 {
  z-index:9999;
  background-color: #fcf7d8;
　overflow: hidden;
  display: flex;
  justify-content: space-between;
}
	
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 2vw;
	bottom: -1vw; /* ハンバーガーアイコンの位置（下から） */
	z-index: 9999;
	width: 10vw; /* アイコン（クリック可能領域）の幅 */
	height: 15vw; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 5vw;
	height: 0.9vw;
	background: #DEDB56; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 45%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 40%;
	background: #fafafa; /* メニューエリアの背景色 */
	padding: 5em 3% 5em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 100%;
}
/* メニューリスト */
.hb_list{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hb_list li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
	padding: .5em 0;
}
/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 50%;
}
	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}

h1 {
  font-size: 2.5vw;
  color: #999797;
  margin-top: 2.5vw;
  margin-left: 1vw;
}
#header_left {
  float: left;
  width: 45%;
}
#header_right {
  float: right;
  width: 55%;
}
#logo {margin-top: 2vw; margin-left:3vw; }
#logo img{width: 30vw;}	
	
#header_btn {
  background:#fbbb0d;
  border-radius: 0 0 0.3em 0.3em;
  padding: 2px 10px;
  color: #ffffff;
  height: 1.5em;
  width: 70%;
  float:right;
}
#header_btn li {
  display: inline;
  padding-left: 4vw;
  background: url(../images/arrow.png) 0 50% no-repeat;
  font-size: 1.5rem;
}
#header_btn li:first-of-type {
  margin-right: 5px;
}
#tel {
  background: url(../images/tel.png) left no-repeat;
  font-size: 3.5vw;
  color: #b55e74;
  padding-left: 20px;
  margin-right: 8vw;
  float: right;
}
#header_btn a {
  text-decoration: none;
  font-size: 3vw;
  vertical-align: 1.5vw;
}
#icons {
  display: flex;
  float:right;
  margin: -11px 10vw 0 0;
}
#icons p {
  padding:2vw 1.5vw 0 1vw;
  font-size: 6vw;
}
	
/*--------------------------------------
　グローバルナビゲーション(600px以下)
---------------------------------------*/
#gnavi {
  display: none;
}

/*--------------------------------------
　キービジュアル(600px以下)
---------------------------------------*/
#visual_box {
  width: 100vw;
  padding-top: 25vw;
  margin: 0 auto;
}
#visual_box img{
	width:100vw;
	margin: 1vw;
}
}/*ここまで600*/

/* PCではハンバーガーメニューを表示しない */
@media (min-width: 600px){
.hamburger{display: none;}
}
	

/*--------------------------------------
　コンテナ
---------------------------------------*/
#container {
  width: 100%;
  margin: 0 auto 5px;
}
/*--------------------------------------
　サイド
---------------------------------------*/
#side {
  width: 24vw;
  margin: 0 2vw;
  float: left;
}
#side h2 {
  background-image: url("../images/side_title.png") ;
  background-size: contain;
  background-repeat: no-repeat;
  color: #040345;
  padding: 0 0 0.5vw 6vw;
  margin-bottom: 4px;
  margin-top: 10px;
  line-height: 3vw;
  font-size: 1rem;
  font-weight: bold;
  width: 25vw;
}
#side ul {
  margin-bottom: 26px;
}
#side ul li {
  text-indent: 14px;
  padding: 0 0 0 20px;
  display: block;
  border-bottom: 1px dotted #cccccc;
  font-size: 0.8rem;
  line-height: 4vw;
  width: 18vw;
  margin-left: 1vw;
}
#side ul li a {
  display: block;
}
.side_info {
  padding-top: 5px;
  border-radius: 0.3em 0.3em 0 0;
  color: #ffffff;
  font-size: 14px;
}
.side_info img{
	width: 20vw;
 	margin-left: -0.5vw;
}
.s_box {
  width: 20vw;
  height: 35vw;
  background: url(../images/bg_info.png) ;
  background-size: cover;
  background-position: right;
  padding: 3px;
  font-size: 1.3vw;
  color: #ffffff;
  font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.s_box p:first-of-type {
  margin-bottom: -3vw;
}
.s_box img{width: 20vw;}
.side_list {
  background: url(../images/icon_1.png) 5% 50% no-repeat;
}

.side_bnr img{width: 21vw;}
.side_bnr_sns img{width: 21vw;}
.side_bnr:hover {opacity: 0.6;}

.s_btn1 {
  background: url(../images/btn1_off.png) no-repeat;
  margin-bottom: 15px;
  line-height: 64px;
}
#side ul a {
  text-decoration: none;
}
#side ul a:link {
  color: #333333;
} /* リンクの色 */
#side ul a:visited {
  color: #333333;
} /* 済みリンク */
#side ul a:hover {
  color: #dedb56;
} /* リンク上 */
#side ul a:active {
  color: #dedb56;
} /* onclick */

/*--------------------------------------
　メインコンテンツ
---------------------------------------*/
#main {
  width:70vw;
  float: right;
  margin-right: 2vw;
}
#feature{
	width:70vw;
	height: 143vw;
	background-image: url("../images/bg_contents_mihara.jpg");
	background-size: contain;
	background-repeat: no-repeat;
}

.feature_more_btn1 {
  position: relative;
  top: 28vw;
  left: 15vw;
  transform: rotate( -7deg );
}
.feature_more_btn2 {
  position: relative;
  top: 58vw;
  left: 35vw;
  transform: rotate( 7deg );
}
.feature_more_btn3 {
  position: relative;
  top: 80vw;
  left: 14vw;
  transform: rotate( -7deg );
}
.feature_more_btn4 {
  position: relative;
  top: 117vw;
  left: 35vw;
  transform: rotate( 7deg );
}
.feature_more_btn1 img, .feature_more_btn2 img, .feature_more_btn3 img,.feature_more_btn4 img {
  width: 20vw;
}

/*
#news {
  margin-bottom: 2vw;
}
#news h2 {
  background: url(../images/title_1.png) left bottom no-repeat;
  padding: 4px 0px 4px 80px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
#news dl {
  overflow: hidden;
  font-size: 1.5vw;
}
#news dt {
  background: url(../images/icon_2.png) 11% 50% no-repeat;
  float: left;
  padding-left: 27px;
  line-height: 38px;
}
#news dd {
  border-bottom: 1px dotted #a6a6a6;
  padding: 0 0 0 140px;
  line-height: 38px;
}
*/

@media screen and (max-width:600px) {
/*--------------------------------------
　コンテナ(600px)
---------------------------------------*/
#container {
  width: 100vw;
  margin: 0 auto;
}
/*--------------------------------------
　サイド(600px)→横並びにする
---------------------------------------*/
#side {
  width: 90vw;
  height: 20vw;
  margin: 0 5vw;
  display: flex;
  justify-content: space-around;
}
#side h2 {display: none;}
#side ul {display: none;}

.side_info {display: none;}
.s_box {display: none;}
.side_list {display: none;}
.side_bnr_sns{display: none;}
	
.side_bnr {
 width: 100%;
 height: 100%;
}
.side_bnr:hover {
  opacity: 0.6;
}
.side_bnr img{width:93%;}
.s_btn1 {
  background: url(../images/btn1_off.png) no-repeat;
  margin-bottom: 15px;
  line-height: 64px;
}
#side ul a {
  text-decoration: none;
}
#side ul a:link {
  color: #333333;
} /* リンクの色 */
#side ul a:visited {
  color: #333333;
} /* 済みリンク */
#side ul a:hover {
  color: #dedb56;
} /* リンク上 */
#side ul a:active {
  color: #dedb56;
} /* onclick */
	
/*--------------------------------------
　メインコンテンツ(600px)
---------------------------------------*/
#main {
  width:100vw;
  margin: 0;
}
#feature{
  width: 100vw;
  height: 205vw;
  background-image: url("../images/bg_contents_mihara.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}
	
.feature_box1 {
  width:100vw;
  height: 100vw;
  background-size: 100%;
  position: relative;
	top:0;
}

.feature_box_txt1 {
  position: absolute;
  top: 25vw;
  left: 10vw;
  width: 40vw;
  font-size: 2.5vw;
}
.feature_more_btn1 {
  position: absolute;
  top: 125vw;
  left: 22vw;
}	
	
.feature_box2 {
  width:100vw;
  height:100vw;
  background-size: 100%;
  position: relative;
	top:-33.5vw;
}
.feature_box_txt2 {
  position: absolute;
  top: 37vw;
  left: 49vw;
  width: 47vw;
  font-size: 2.5vw;
}
.feature_more_btn2 {
  position: absolute;
  top: 168vw;
  left: 50vw;
}
	
.feature_box3 {
  width: 100vw;
  height: 100vw;
  background-size: 100%;
  position: relative;
	top:-63.5vw;
}
.feature_box_txt3 {
  position: absolute;
  top: 50vw;
  left: 8vw;
  width: 48vw;
  font-size: 2.5vw;
}
.feature_more_btn3 {
  position: absolute;
  top: 217vw;
  left: 20vw;
}

.feature_more_btn4 {
  position: absolute;
  top: 271vw;
  left: 50vw;
}	
	
.feature_more_btn1 img, .feature_more_btn2 img, .feature_more_btn3 img, .feature_more_btn4 img{
  width: 29vw;
}
	
.feature_big {
  font-size: 28px;
  text-shadow: 1px 1px 2px silver;
}

/*
#news {
  margin-bottom: 2vw;
}
#news h2 {
  background: url(../images/title_1.png) left bottom no-repeat;
  padding: 4px 0px 4px 80px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;	
}
#news dl {
  overflow: hidden;
  font-size: 3vw;
}
#news dt {
  background: url(../images/icon_2.png) 11% 50% no-repeat;
  float: left;
  padding-left: 27px;
  line-height: 38px;
}
#news dd {
  border-bottom: 1px dotted #a6a6a6;
  padding: 0 0 0 140px;
  line-height: 38px;
}*/

}/*ここまで600*/

/*--------------------------------------
	　フッター
---------------------------------------*/
#footer_top {
  width: 100vw;
  height: 12.5vw;
  margin: 0 auto;
  overflow: hidden;
}
#footer_top ul {
  font-size: 1.5vw;
  justify-content: space-between;
  padding: 7vw 2vw;
  list-style-type: none;
}
#footer_top ul li {
  float: left;
}
#footer_top li a {
  margin: 0 20px;
  color: #1F4F58;
  text-decoration: none;
}
#footer_top p {
  float: right;
}
#footer_top p img{width: 18vw;}

#footer_bottom {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  background:#fbbb0d;
  color: #ffffff;
  font-size: 12px;
}
#footer_bottom a {
  color: #595959;
}
#footer_bottom_box {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}
#footer_bottom address {
  float: left;
  padding-top: 3px;
  font-style: normal;
  margin-left: 20px;
}
#footer_bottom .copy {
  float: right;
  margin-top: 38px;
  margin-right: 20px;
}

@media screen and (max-width:600px) {
/*--------------------------------------
	　フッター(600px)
---------------------------------------*/
#footer_top {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}
#footer_top ul {
  font-size: 2vw;
  float: left;
  padding:0 3vw;
  list-style-type: none;
}
#footer_top ul li {
  float: left;
}
#footer_top li a {
  margin: 0 3px;
  color: #1F4F58;
  text-decoration: none;
}
#footer_top p img{width: 30vw;}
#footer_top p {
  float: right;
}
#footer_bottom {
  width: 100vw;
  background:#fbbb0d;
  color: #ffffff;
  font-size: 0.5em;
}
#footer_bottom a {
  color: #595959;
}
#footer_bottom_box {
  width: 100vw;
}
#footer_bottom_box address{
  float: left;
  padding-top: 3px;
  font-style: normal;
}
#footer_bottom_box .copy{
  margin:2vw 13vw 0 0;
}
}/*ここまで600*/

/*--------------------------------------
　下層ページ共通
---------------------------------------*/
/*#page_ttl {
  margin: 0 auto;
  background: url(../images/bg_title.jpg) no-repeat;
  overflow: hidden;
  width: 1000px;
  height: 97px;
}*/
#page_ttl p {
  padding-left: 40px;
  font-size: 60px;
  line-height: 97px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}
/*--------------------------------------
　takeout　ページ
---------------------------------------*/
#page_ttl_takeout,#page_ttl_design {
  width: 96vw;
  margin: 13vw 2vw 0;
}

#page_ttl_takeout img,#page_ttl_design img{
  width:96vw;
  margin: 1vw auto;
}

#takeout_menu {
  	width:70vw;
	height: 120vw;
	background-image: url("../images/bg_contents_takeout.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

#tab {
  width: 60vw;
  height: 5vw;
  margin: 0 1vw -1.2vw 4vw;
  display: flex;
  justify-content: space-around;
}
.tab_bnr {
 width: 100%;
 height: 100%;
}
.tab_bnr:hover {
  opacity: 0.6;
}
.tab_bnr img{width:93%;}


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

#page_ttl_takeout,#page_ttl_design {
  width: 96vw;
  margin: 22vw 2vw -1vw;
}

#page_ttl_takeout img,#page_ttl_design img{
  width:96vw;
  margin: 1vw auto;
}

#takeout_menu {
  	width:100vw;
	height: 150vw;
	background-image: url("../images/bg_contents_takeout.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

#tab {
  width: 93vw;
  height: 5vw;
  margin: 0 1vw 0.8vw 4vw;
  display: flex;
  justify-content: space-around;
}
.tab_bnr {
 width: 100%;
 height: 100%;
}
.tab_bnr:hover {
  opacity: 0.6;
}
.tab_bnr img{width:93%;}

}

/*--------------------------------------
　ハレの日
---------------------------------------*/
#takeout_hare {
  	width:70vw;
	height: 120vw;
	background-image: url("../images/bg_contents_harenohi.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

@media screen and (max-width:600px) {
#takeout_hare {
  	width:100vw;
	height: 150vw;
	background-image: url("../images/bg_contents_harenohi.jpg");
	background-size: contain;
	background-repeat: no-repeat;}
}
/*--------------------------------------
　ベーカリー
---------------------------------------*/
#takeout_bakery {
  	width:70vw;
	height: 120vw;
	background-image: url("../images/bg_contents_bakery0209.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

@media screen and (max-width:600px) {
#takeout_bakery {
  	width:100vw;
	height: 150vw;
	background-image: url("../images/bg_contents_bakery0209.jpg");
	background-size: contain;
	background-repeat: no-repeat;}
}


/*--------------------------------------
　デザイン
---------------------------------------*/
#takeout_design {
  	width:70vw;
	height: 200vw;
	background-image: url("../images/bg_contents_design2.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

.desing_link{height: 55vw;}
.desing_link2{height: 22vw;}
.desing_link3{height: 22vw;}

.desing_link img{
	width: 86%;
	margin: 19vw 4vw 0;}
.desing_link2 img{
	width: 58%;
	margin: -2vw 1vw 0;}
.desing_link3 img{
	width: 58%;
	margin: -2vw 26vw 0;}

@media screen and (max-width:600px) {
#takeout_design {
  	width:100vw;
	height: 290vw;
	background-image: url("../images/bg_contents_design2.jpg");
	background-size: contain;
	background-repeat: no-repeat;}

.desing_link{height: 80vw;}
.desing_link2{height: 35vw;}
.desing_link3{height: 33vw;}

.desing_link img{
	width: 86%;
	margin: 30vw 4vw 0;}
.desing_link2 img{
	width: 58%;
	margin: 0 4vw;}
.desing_link3 img{
	width: 58%;
	margin: -4vw 37vw 0;}
}
