@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #d8d8d8;	/*全体の文字色*/
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #333333;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #d8d8d8;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: orange;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ロゴ　＋　メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: fixed;	/*ウィンドウに対して固定表示*/
	top: 0px;			/*上から0pxの場所に配置*/
	z-index: 20;
	width: 100%;
}
/*メニューブロック内にあるanimatemeブロック*/
#menubar .animateme {
	width: 100%;
	height: 70px;	/*高さ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(rgba(255,255,255,0.9),#fff 60%);/*グラデーション*/
}
/*メニューブロック内にあるロゴ画像*/
#menubar h1 img {
	height: 50px;	/*ロゴ画像の高さ。下の「#menubar ul li」の「line-height」の数字と合わせる。*/
	float: left;	/*左に回り込み*/
	padding-top: 10px;
	padding-left: 15px	/*上下、左右への余白*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	line-height: 70px;	/*行間。上の「#menubar h1 img」の「height」の数字と合わせる。*/
	margin-left: 2.8%;	/*左側に空けるスペース。*/
}
#menubar ul li a {
	text-decoration: none;
	color: #000;	/*文字色*/
	padding-bottom: 5px;	/*マウスオン時の下線との間にとるスペース*/
}
/*メニューのマウスオン時*/
#menubar ul li a:hover {
	border-bottom: 3px solid #333333;	/*下線の幅、線種、色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
	position: absolute;
	left: 8%;	/*左から12%の場所に配置*/
	top: 0px;	/*上から0pxの場所に配置*/
	width: 15%;	/*画像幅*/
}
/*---リニューアル部分----オンラインショップはこちらのボタン*/
.online_button{
	position: absolute;
	right: 0%;	/*右から0%の場所に配置*/
	top: 65%;	/*上から0pxの場所に配置*/
	width: 25%;	/*画像幅*/
	transition: 1.0s ;
}
.online_button:hover {
	opacity: 0.5 ;
}

/*---リニューアル部分----ご商談のご予約はこちらのボタン*/
.syoudan_button{
	position: absolute;
	right: 0%;	/*右から0%の場所に配置*/
	top: 75%;	/*上から0pxの場所に配置*/
	width: 25%;	/*画像幅*/
	transition: 1.0s ;
}
.syoudan_button:hover {
	opacity: 0.5 ;
}


/*コンテンツ
---------------------------------------------------------------------------*/
.scrollme.animateme{
	margin-top: 100px;

}


#contents {
	overflow: hidden;
	position: relative;z-index:10;
	background: #333333;	/*背景色*/
	padding: 120px 5% 50px;	/*上、左右、下へのボックス内の余白*/
}
/*トップページのコンテンツへの追加設定*/
#top #contents {
	padding-top: 0;	/*上の余白をゼロにする*/
}
/*h2見出し*/
#contents h2 {
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 46px;	/*文字サイズ*/
	margin-bottom: 60px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	color: #fff;			/*文字色*/
}

/*先頭文字の飾りなしに変更-------------------*/
/*h2見出しの１文字目
#contents h2::first-letter {*/
	/*font-size: 60px;	文字サイズ*/
	/*border: 1px solid #fff;	枠線の幅、線種、色*/
	/*padding: 10px;			余白*/
	/*margin-right: 5px;		右側に空けるスペース*/
	/*letter-spacing: normal;	文字間隔を通常に*/
	/*text-shadow: 5px 5px rgba(255,255,255,0.2);	文字の影。右に、下に、255,255,255は白の事で0.2は透明度20%の事。*/
/*---------}*/


/*h2見出し内のspanタグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	margin-top: -10px;	/*少し上に詰める設定*/
}
/*h3見出し*/
#contents h3 {
	font-size: 24px;	/*文字サイズ*/
	color: orange;  /*文字色*/
	margin-bottom: 30px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	text-align: center;
}

/*段落タグにh3見出しが続いた場合、段落タグにh2見出しが続いた場合の設定*/
#contents p + h3,#contents p + h2 {
	margin-top: 50px;	/*見出しの上に空ける余白*/
}
/*段落タグが続いた場合の設定*/

section + section {
	padding-top: 80px;
}

/*---リニューアル部分----more button1*/
.more_button1
{
	text-align: right;
	padding-top:20px;
	transition: 1.0s ;

}
.more_button1:hover {
	opacity: 0.5 ;
}

.collection_button{
	display: flex;
	justify-content: space-around;
	padding-top: 20px;
	transition: 1.0s ;
}
.c-1:hover {
	opacity: 0.5 ;
}
.c-2:hover {
	opacity: 0.5 ;
}

.catalog_button{
	display: flex;
	justify-content: space-around;
	padding-top: 20px;
	transition: 1.0s ;

}
.catalog_button:hover {
	opacity: 0.5 ;
}

.showroom-detail{
	text-align: center;
	padding-bottom: 30px;
	

}


.syoudan_button2{
	text-align: center;
	margin-top:60px;
	margin-bottom: 100px;
}

.s_b2:hover {
	opacity: 0.5 ;
}

.access-map{
	text-align: center;
	font-size: 20px;
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
}


/*menu_bg（メニューページの小見出し含めた各メニューブロック）
---------------------------------------------------------------------------*/
#contents .menu_bg {
	overflow: hidden;
	background: #000;	/*背景色*/
	padding: 3%;		/*ボックス内の余白*/
}

/*box2（メニューページで使用）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .box2 {
	padding: 3%;	/*ボックス内の余白*/
}
/*ボックス内のh3タグ*/
#contents .box2 h3 {
	margin-bottom: 0;
	color: #fff;	/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	font-weight: bold;	/*太字にする*/
	background: url(../images/bg_dotline.png) repeat-x center;	/*背景画像の読み込み。X軸(横軸)にリピート、上下中央に配置。*/

}
/*ボックス内のh3タグの１文字目*/
#contents .box2 h3::before {
	content: "◇ ";	/*このテキストを冒頭に表示させる。変更してもらって構いませんが機種依存文字は化けるので使わないように。*/
	background: #000;	/*背景色*/
}
/*ボックス内のh3タグ内のspanタグ*/
#contents .box2 h3 span {
	background: #000;		/*背景色*/
	padding-right: 30px;	/*右側に空ける余白*/
}
/*ボックス内のh3タグ内のprice*/
#contents .box2 h3 .price {
	float: right;	/*右に回り込み*/
	padding-right: 0;	/*上で設定したspanタグの右の余白をリセット*/
	padding-left: 30px;	/*左側に空ける余白*/
	font-weight: normal;	/*太字から標準に戻す*/
}
/*ボックス内の段落タグ*/
#contents .box2 p {
	margin: 0;
	margin-left: 24px;	/*左に空けるスペース*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のfigure画像*/
#contents .box2 figure {
	width: 100%;	/*幅*/
}

/*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	margin-bottom: 50px;
}
/*説明文*/
.box1 figcaption.w50 {
	width: 47%;
}
/*説明文内のstrongタグ*/
.box1 figcaption strong {
	display: block;
	font-weight: normal;
	font-size: 20px;	/*文字サイズ*/
	color: #AFAF87;		/*文字色*/
}
/*リニューアル部分newcollection*/
.scrollme.box1.nc{
	overflow: hidden;
	margin-bottom: 0px;


}
/*-----------------------------------------------------
	newcollection-page*
-------------------------------------------------------*/
.pc_image{
	display: inline-block;
}
.sp_image{
	display: none;

}


.newcollection-page{
	text-align: center;
	margin: 0px;
	padding: 0px;
	background: #ffffff;	/*背景色*/
	-webkit-text-size-adjust: none;

}

hr{
	height: 2px;
    background-color: #996600;
    border: none;

}

.concept-img{
	display: flex;
	justify-content: space-around;

}
.bouquet-woman{
	width: 32%;
	max-width: 300px;
	height: auto;
	padding-top: 50px;
	padding-right: 10%;
	


}
.newcollection-section{
	overflow: hidden;
	color: #333333;	/*全体の文字色*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	position: relative;z-index:10;
	box-sizing: border-box;
	margin:0 auto;

	

}
.concept	{
	background: url(../images/image_fiancee/back.png@2x.png);
	padding-bottom: 60px;
	
	
}
.concept-text1{
	text-align: left;
	font-size: 1.4rem;
	padding-top:200px;
	padding-bottom: 100px;
	
}
.concept-text{
	text-align: left;
	line-height: 50px;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 30px
	
}
.section-title{
	text-align: left;
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 2.4rem;
	color: #996600;
	padding-left: 10%;
	padding-top: 100px;
	padding-bottom: 30px;

}

.title-ruby{
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 1.2rem;
	color: #996600;
	padding-left: 40px;


}

.setion-subtitle{
	width: 90%;
	max-width: 900px;
	height: auto;
	margin :0 auto;
	padding-top: 100px;
	padding-bottom: 80px;

}
.features-section{
	box-sizing: border-box;
	margin: 0 2%;
}
.features-section.setion-title{
	padding-left: 0px;
}
/*------color-------*/
.color_text1{
	padding-bottom: 50px;
}
.color_text1.color2_title{
	margin-top: 100px;
}
.color_image{
	width: 80px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 80px;
}
.color-detail{
	box-sizing: border-box;
	margin:0 10%;
	display: flex;
	align-items: center;
	justify-content:center;
	padding-bottom: 40px;
	text-align: left;

}
.color_image2{
	width: 30%;
	height: auto;
	
  
}
.c-detail_text{
	font-size: 0.85rem;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom:10px;
}

/*------material-------*/
.material-detail{
	box-sizing: border-box;
	margin:0 18%;
	display: flex;
	justify-content: space-around;
	margin-top: 50px;
	margin-bottom: 50px;
}
.material_text{
	width: 32%;
	max-width: 250px;
	height: auto;
	
}
.material_notice{
	box-sizing: border-box;
	margin:0 20%;
	text-align: right;
	font-size: 0.5rem;
}
.material_image{
	box-sizing: border-box;
	margin:0 20%;
	width: 20%;
	height: auto;


}
.point{
	width: 15%;
	max-width: 130px;
	height: auto;
	padding-bottom:60px;
}
.point1-image{
	box-sizing: border-box;
	margin-left: 20%;
	margin-right: 10%;
	display: flex;
	justify-content: space-around;
	padding-top: 40px;
}
.point-image_text{
	width:70%;
	max-width: 350px;
	height: auto;
	padding-top: 30px;
}
.point1-image_image{
	width:100%;
	height: auto;
	padding-left:20px;
	padding-bottom: 60px;
}
.point2-image{
	padding-top: 40px;
	width: 60%;
	height: auto;
	margin: 0 auto;
	padding-bottom: 100px;
}

.ec{
	width:35%;
	height: 0 auto;
	padding-bottom: 30px;
	box-sizing: border-box;

}
.ec:hover{
	opacity: 0.5;
}
.arrange-title{
	color: orange;
	font-size: 1.2rem;
}
.arrange{
	width: 65%;
	
}
.high_value{

	width: 90%;
	max-width: 900px;
	height: auto;
	margin :0 auto;
	padding-top: 80px;
	padding-bottom: 80px;

}

.arrange_image{
	width:30%;
}
.arrange_box{
	box-sizing: border-box;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 20px;
	margin-bottom:20px;
	display: flex;
	justify-content: space-around;
}
.arrange.second{
	margin-bottom: 100px;
}
/*------item-------*/
.item{
	
	padding-top:100px;
	padding-bottom: 100px;
	padding-left: 20px;
	padding-right: 20px;
}

.item_list{
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 100px

}
.item_each{
	width:30%;
	padding-bottom: 50px;
	
}
.item_each:hover{
	opacity: 0.5;
}



/*-----------------------------------------------------
	newitem-page*
-------------------------------------------------------*/
.new_concept{
	background: url(../images/image_2024ss/back.jpg);
	padding-bottom: 120px;
}
.section-title{
	padding-top: 50px;
	margin-right: 10%;
}
.setion-title_item{
	text-align: center;
}

.concept-text.new_text{
	padding-top: 60px;
	font-size: 1.6rem;
	text-shadow:0 0 10px rgb(222, 152, 199);
}

.concept-text.new_text2{
	margin-top: 60px;
	font-size: 1.2rem;
	text-shadow:0 0 10px rgb(222, 152, 199);
}

.setion-subtitle.pc_image{
	display: inline-block;
}
.newitem_image{
	width: 20%;
}
.newitems_detail{
	display: flex;
	box-sizing: border-box;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 100px

}

.newitem_hr{
	height: 2px;
    background-color: rgb(254, 222, 244);
    border: none;
}
.arrange-section{
	margin-top: 100px;
	margin-bottom: 100px;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;


}

.arrange-title_newitems{
	color:rgb(250, 193, 232);
	font-size: 1.6rem;

}
.arrange_hr_newitems{
	height: 3px;
    background-color: rgb(254, 222, 244);
    border: none;
	width: 65%
}
.ec.newitems_ec{
	margin-bottom: 100px;


}
/*-----------------------------------------------------
	showroom-page*
-------------------------------------------------------*/
.item2{
	padding-top:100px;
	padding-bottom: 0px;
	padding-left: 20px;
	padding-right: 20px;

}
.item_each2{
	width:23%;
	padding-bottom: 50px;
}

.showroom_text{
	line-height: 250%;

}
.showroom_question{
	text-align: center;
	font-size: 1.8rem;
}
/*-----------------------------------------------------
	youtube
-------------------------------------------------------*/

/*-----------------------------------------------------
	display-page*
-------------------------------------------------------*/
.display_image{
	box-sizing: border-box;
	display: flex;
	justify-content: space-around;
	margin-top:50px;
	margin-bottom: 80px;
}
.display_text{
	box-sizing: border-box;
	text-align: center;
	padding-bottom: 50px;
}
.display_text_detail{
	margin-top: 30px;
	margin-bottom: 30px;
}

.display_toiawase_button{
	text-align: center;
	padding-top: 100px;
	padding-bottom: 140px;

}
.disply_image_each{
	width : 40vw ; /* 画面幅の40％ */
	text-align: center;
}
.designer-title{
	margin-top:50px;
	margin-bottom:50px;
}

.FIAN_x_title{
	font-size: 1.2rem;
	color: orange;
}

.how_to_order{
	margin-top:80px;
	text-align: center;
	margin-bottom: 80px;
}
.order_step{
	font-size: 1.2rem;
	padding-bottom: 20px;
	text-decoration:underline;/*下線を引く*/
	text-decoration-color:orange/*下線を赤色*/

}
.step_arrow{
	padding-top: 20px;
	padding-bottom: 20px;

}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;	/*文字サイズ*/
	background: #111;	/*背景色。古いブラウザ用*/
	border-top: 1px solid #222;	/*上の線の幅、線種、色*/
}
footer .pr {display: block;font-size: 80%;}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*ブロック設定*/
#icon {
	text-align: center;	/*センタリング*/
}
/*アイコン画像１個あたりの設定*/
#icon img {
	width: 40px;	/*幅*/
	margin: 30px 10px;	/*上下、左右への余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 0 3%;	/*上下、左右へのボックス内の余白*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	color:#ffffff;
	background: #333333;	/*背景色*/
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #d8d8d8;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	border-top: 1px solid #fff;	/*上の幅、線種、色*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 12em;		/*幅*/
	color: #ffffff;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 30px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #fff;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 200px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #333;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {
	margin-top: 50px;
	margin-bottom: 50px !important;
}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #AFAF87 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
/*.bg1 {overflow: hidden;background: url(../images/bg1.png) no-repeat -60% top/50%,url(../images/bg1.png) no-repeat 150% top/70%,#333333 !important;}:*/
.bg2 {overflow: hidden;background: url(../images/bg2.png) !important;}






/*------------------------------------------------------------------------------------------------------------------------------
    ------------------------
     画面幅900px以下の設定
    ------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:910px){



	/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
	left: 5%;	/*左から5%の場所に配置*/
	width: 20%;	/*画像幅*/
}
.online_button{
	display: none;
}
.syoudan_button{
	display: none;
}
.top_text_gothic{
	position: absolute;
	right: 2%;	/*右から10pxの場所に配置*/
	bottom: 15px;	/*下から20pxの場所に配置*/
	width: 60%;	/*画像幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 0px;
	z-index: 30;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	margin-bottom: 30px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 20px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 40;
	position: absolute;
	top: 20px;	/*上から20pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding-top: 50px;	/*上側のボックス内の余白*/
}
section + section {
	padding-top: 20px;
}

/*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
/*説明文*/
.box1 figcaption.w50 {
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}



/*-----------------------------------------------------
	top-page*
-------------------------------------------------------*/
.collection_button{
	text-align: center;
	display: block;
	padding-top: 20px;
	transition: 1.0s ;
}
.c-1{
	padding-bottom: 20px;
}
.catalog_button{
	display: block;
	text-align: center;
	padding-top: 20px;
	transition: 1.0s ;

}
.mini-catalog{
	padding-bottom: 20px;
}
/*-----------------------------------------------------
	/top-page*
-------------------------------------------------------*/

/*-----------------------------------------------------
	newcollection-page*
-------------------------------------------------------*/
.setion-subtitle{
	width: 90%;
	height: auto;
	margin :0 auto;
	padding-top: 80px;
	padding-bottom: 80px;

}
.concept-text1{
	padding-top: 100px;
	text-align: center;
}
.concept-img{
	display:block;

}
.bouquet-woman{
	width: auto;
	height: auto;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 30px;
}

.color_image{
	width: 70px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 80px;
}
.color-detail{
	margin:0 10%;
}
/*------material-------*/
.material-detail{
	margin-left: 5%;
	margin-right: 5%;
}
.material_notice{
	margin:0 5%;
	text-align: left;
	font-size: 0.4rem;
}
.point{
	width: 15%;
	height: auto;
	padding-bottom:60px;
}
.point1-image{
	box-sizing: border-box;
	margin-left: 5%;
	margin-right: 0%;
	display: flex;
	justify-content: space-around;
	padding-top: 40px;
}
.point2-image{
	padding-top: 40px;
	width: 60%;
	height: auto;
	margin: 0 auto;
	padding-bottom: 100px;
}
.ec{
	width:60%;
	height: 0 auto;
	padding-bottom: 30px;
}
/*-----------------------------------------------------
	newitem-page*
-------------------------------------------------------*/

/*-----------------------------------------------------
	showroom-page*
-------------------------------------------------------*/
.item_each2{
	width: 45%;
	padding-bottom: 50px;
}
/*-----------------------------------------------------
	display-page*
-------------------------------------------------------*/

.isaka_profile{
	box-sizing: border-box;
	padding:20px 20px 20px 20px;
	flex-direction: column;
}

.isaka_image{
	width : 100vw ; /* 画面幅の100％ */
	height: auto;
	padding-top: 30px;
	padding-bottom: 50px;
	width: 60vw;
    height: auto;
	text-align: center;
}

.isaka_text{
	padding-right: 0px;
}






}






/*------------------------------------------------------------------------------------------------------------------------------
    ------------------------
     *画面幅400px以下の設定
    ------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
#contents h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
/*h2見出しの１文字目*/
#contents h2::first-letter {
	border: none;padding: 0;margin: 0;text-shadow: none;
	font-size: 24px;	/*文字サイズ*/
	letter-spacing: 0.2em;
}
/*h2見出し内のspanタグ*/
#contents h2 span {
	font-size: 10px;
	margin-top: 0px;
}

/*-----------------------------------------------------
	newcollection-page*
-------------------------------------------------------*/
.sp_text{
	display: none;
}
.concept-text{
	padding: 40px 20px 20px 20px;


}
.concept-text1{
	padding-top: 100px;
	text-align: center;}

.concept-img{
	display:block;

}
.bouquet-woman{
	width: auto;
	height: auto;
	padding-right: 0px;
	padding-top: 50px;
	


}
.features-section{
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}
.pc_image{
	display: none;
}
.sp_image{
	display: inline-block;

}
.section-title{
	display: flex;
	flex-direction: column;
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 2.0rem;
	color: #996600;
	padding-top: 100px;
	padding-bottom: 30px;

}
.title-ruby{
	font-family:'Noto Serif JP', serif;		/*フォント種類*/
	font-size: 1.2rem;
	color: #996600;
	padding-left: 0px;


}

.setion-subtitle{
	width: 100%;
	
}
.color_image{
	width: 15%;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 80px;
}
.color-detail{
	display: block;
	text-align: center;
	margin:0 0%;
}

.color_image2{
	width: 100%;
	height: auto;
}
.c-detail_text{
	font-size: 0.8rem;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 10px;
	padding-bottom:10px;
}
/*------material-------*/
.material-detail{
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
	margin-bottom: 10px;
	margin-left:15%;
	margin-right: 15%;
}

.material_text{
	width: 100%;
	height: auto;
	padding-bottom:10px;
}
.material_notice{
	box-sizing: border-box;
	margin:0 0%;
	text-align: left;
	font-size: 0.8rem;
}
.material_image{
	box-sizing: border-box;
	margin:0 0%;
	width: 60%;
	height: auto;	
	margin-top: 20px;
}
.point{
	width: 40%;
	height: auto;
	padding-bottom:60px;
}
.point1-image{
	box-sizing: border-box;
	margin-left: 0%;
	margin-right: 0%;
	display: block;
	padding-top: 40px;
}
.point-image_text{
	width:100%;
	height: auto;
	padding-top: 20px;
}
.point1-image_image{
	width:60%;
	height: auto;
	padding-left:0px;
	padding-bottom: 0px;
}
.point_sp{
	margin-bottom: 80px;
}
.point2-image{
	padding-top: 40px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-bottom: 100px;
}

.ec{
	width: 100%;
	height: 0 auto;
	padding-bottom: 30px;
}
.ec:hover{
	opacity: 0.5;
}
.arrange_box{
	flex-direction: column;
}
.arrange_image{
	width:100%;
	height: auto;
	padding-top:20px;
}
.arrange.second{
	margin-top: 50px;
}
/*------item-------*/
.item{
	box-sizing: border-box;
	margin: 0 20px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top:60px;
	padding-bottom: 60px;
}

.item_list{
	display: block;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 80px

}
.item_each{
	width:100%;
	padding-bottom: 50px;
	
}
.item_each:hover{
	opacity: 0.5;
}
/*-----------------------------------------------------
	/ newitems-page*
-------------------------------------------------------*/
.ec.newitems_ec{
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;

}
.newitem_image{
	width: 40%;
	padding-bottom: 30px;
}
/*-----------------------------------------------------
	showroom-page*
-------------------------------------------------------*/
.item_each2{
	width: 60%;
	padding-left: 20%;
	padding-bottom: 50px;
}
/*-----------------------------------------------------
	display-page*
-------------------------------------------------------*/
.display_image{
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	
}
.disply_image_each {
    width: 100vw;
	padding-bottom: 20px;
}
.isaka_image{
	width: 100vw;
    height: auto;
	padding-bottom: 20px;
}
.isaka_title{
	display: flex;
	flex-direction: column;
}
.isaka_detail{
	padding-top :0px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	font-size: 16px;		/*文字サイズ*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}
