@charset "UTF-8";

/*
 * サイト共通用のCSSです。
 *
 */
/* 連続 br でIE6が改行しないバグ対策　CSS:letter-spacing の影響
----------------------------------------------- */
br {
  letter-spacing: normal;
}

/* フロート回り込み解除
----------------------------------------------- */
.clear {
  clear: both;
  display: none;
  font-size: 0px;
  line-height: 0%;
  height: 0px
}

/* float対策：背景色表示用
----------------------------------------------- */
.clearfix:after {
  display: block;
  clear: both;
  height: 0px;
  line-height: 0px;
  visibility: hidden;
  content: ".";
}

.clearfix {
  display: block;
  /* for IE8 */
}

.both {
  clear: both;
}

.hidden {
  display: none;
}

/* yui 上書き
----------------------------------------------- */
html,
body {
  /*height: 100%;*/
  /*背景画像を100%にする時に使用する*/
  overflow-x: hidden;
}

body {}

ol, ul, dl {
  margin: 0px;
}

li {
  list-style-type: none;
}

h1, h2, h3 {
  margin: 0px;
}

/* 基本サイト構造 (空白のままにすること)
----------------------------------------------- */
/* body */
body {}

/* container */
#container {}

/* container_inner */
#container_inner {}

/* header_wrapper */
#header_wrapper {}

/* header */
#header {}

/* main_nav */
#main_nav {}

/* breadcrumb */
#breadcrumb {}

/* contents_wrapper */
#contents_wrapper {}

/* footer_wrapper */
#footer_wrapper {}

/* footer */
#footer {}

/* -----------------------------------------------
 *
 *
 * ここから下を変更すること
 *
 *
----------------------------------------------- */
/* a リンク
----------------------------------------------- */
a {
  text-decoration: none;
}

a:link {}

a:visited {}

/* table
----------------------------------------------- */
tr {
  border: none;
}

th {
  background-color: #FFF;
}

th,
td {
  padding: 5px 10px;
  font-weight: 100;
  border: solid 1px #eaeaea;
}

/* img
----------------------------------------------- */
img {
    max-width: 100%;
}
/* ボタン
----------------------------------------------- */

/* fontawesome
----------------------------------------------- */
.fa-1--5x {
    font-size: 1.5em
}

/* form
---------------------------------------------- */
/* -----------------------------------------------
 * メイン
----------------------------------------------- */
/*body { margin:0; padding:0; font-size:1.5rem; font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; overflow-x:hidden; }*/
body {
  margin: 0;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 13px;
  color: #111;
}

blockquote, body, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: 500
}

/* html */
html {}

.container { width: 1100px; margin: 0 auto; }

.pc { display: block; }
.sp { display: none; }
.sp_only { display: none; }
.sp_none { display: block; }

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

}


@media screen and (max-width:1100px){
  .container { width: 90%; margin: 0 auto; }

}

@media screen and (max-width:768px){
  .pc { display: none; }
  .sp { display: block; }
  .tb { display: block; }
  /*#btn_menu { display: block !important; top: 10px; }
  #search, #category, #member { display: none !important; }
  #cart_area { right: 75px !important; top: 10px; }
  #search select { width: 150px; font-size: 1.4rem; }*/
  .search input[type="search"] { width: 70%; font-size: 1.4rem; }
  .search .input_search { padding: 0 0 0 1em; }
  .member_link a { font-size: 1.1rem; padding: 0 5px;}

}


@media screen and (max-width:479px){
  .tb { display: none; }
  .sp_only { display: block; }
  .sp_none { display: none; }
  /*#btn_menu { top: 0; }
  #cart_area { right: 0 !important; top: 0; }*/
  #main { width: 90%; margin: 0 auto; }
  .member_link a { font-size: 1.4rem; }

}

/* flex
----------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
}
.flex img {
  align-self:flex-start;
	max-width: 100%;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex_just-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_just-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_just-a {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex_align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center ;
}
.flex_align-b {
  -webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.flex_direction-row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}


/* header
----------------------------------------------- */
#header {
  position: fixed;
  z-index: 99;
  top: 0px;
  width: 100%;
  min-width: 800px;
  height: 94px;
  background: #fff;
  padding-top: 16px;
}

#header.open {
  background: #F9F5EC;
}

#header h1 {
    margin: 5px 0 0 0;
}
#header .logo {
  float: left;
  padding: 7px 7px 0;
}

#header .logo img {
  height: 26px;
  margin-left: 20px;
}

#header .header-r {
  float: right;

}

#header .header-r .nav {
  float: left;
  padding-top: 20px;
}

#header .header-r .nav li {
  float: left;
  margin-right: 20px;
  line-height: 30px;
  list-style: none;
}

#header .header-r .nav li span {
  padding-right: 16px;
}

#header .header-r .nav li span.guide {
}

#header .header-r .nav li span.member {
}

#header .header-r .nav li span.login {
}

#header .header-r .nav li span.favo {
}

#header .header-r .nav li span.mypage {
}

#header .header-r .nav li span.logout {
}

#header .header-r .nav li a {
  transition: 0.2s;
  color: #000;
}

#header .header-r .nav li a:hover {
  opacity: 0.7;
}

#header .header-r .h-btn {
  float: left;
}

#header .header-r .h-btn .h-cart {
  width: 70px;
  height: 70px;
  float: left;
  text-align: center;
  margin-right: 1px;
  box-sizing: border-box;
  background: linear-gradient(70deg, rgb(17 181 21), rgb(149 236 92));
  padding-top: 23px
}

#header .header-r .h-btn .h-cart a {
  display: block;
  color: #fff;
  transition: 0.15s;
  width: 70px;
  height: 70px;
  
}

#header .header-r .h-btn .h-cart a:hover {
  opacity: 0.95;
}

#header .header-r .h-btn .h-cart span {
  display: none;
}
/*バナーエリア*/
.goods_bnr_area01 img{
    width:100%; margin-bottom:3em; padding: 3% 0;}



@media screen and (max-width: 900px) {
    #header {
        min-width: unset;
    }
    #header .logo img{
        height: 28px;
        margin-left: 10px;
    }
    #header .header-r .nav li {
        margin-right: 12px;
    }
}
@media screen and (max-width: 767px) {
header{
    margin-bottom: 52px;
}
#header {
  min-width: 320px;
  height: 52px;
  top: 0px;
}
#header.open {
  background:#F9F5EC;
}
#header .logo {
  padding: 6px 3px 0;
  float: none;
    text-align: center;
}
#header .logo img{
    height: 13px;
    margin: 0;
}

#header .header-r .nav{
    display: none;
}
#header .header-r .h-btn{
    display: none;
}

}


/* pagetop
----------------------------------------------- */
.pagetop {
  display: block;
  width: 47px;
  height: 49px;
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 9999;
  display: none;
	line-height: 1.5;
}

.pagetop img {
  opacity: 0.3;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pagetop:hover img {
  opacity: 1;
}

.ec-layoutRole .ec-layoutRole__contents {
	max-width: none;
	margin-top: 94px;
}

/* 共通
----------------------------------------------- */
.u_inner { width: 1200px; margin: 0 auto; }
h2.title { text-align: center; font-size: 2rem; margin-bottom: 20px; letter-spacing: 3px; font-family: "Bely"; }
p.sub_title { font-size: 1.4rem; font-weight: bold; letter-spacing: 1px; width: 350px; text-align: center; background-color: #fff; border-radius: 50px; margin-bottom: 20px; padding: 5px 10px; display: inline-block; }
p.sub_title_b { font-size: 1.8rem; letter-spacing: 1px; text-align: center; font-weight: bold; font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }

a { text-decoration: none; color: #111;}
.mincyo { font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
.half_box { width: 48%; }
.button { margin: 20px 0; }
.button a { background-color: #fff; color: #111; border: 1px solid #111; display: block; padding: 20px; width: 300px; text-align: center; margin: 0 auto; font-size: 1.6rem; letter-spacing: 1px;}
.button_b a { background-color: #111; color: #fff; }
.button a:hover { background-color: #111; color: #fff; transition: 0.3s; }
.button_b a:hover{ background-color: #fff; color: #111; transition: 0.3s; }

@media screen and (max-width:1100px){
  .u_inner { width: 90%; }


}

@media screen and (max-width:768px){
  .half_box { width: 100%; margin-bottom: 30px; }
}


@media screen and (max-width:479px){
  .button a { padding: 15px; width: 70%; font-size: 1.2rem;}
  h2.title img { width: auto; height: 25px; }
  p.sub_title { width: 90%;}
  p.sub_title_b { font-size: 1.4rem; }

}

/* -----------------------------------------------

	 g_cate

----------------------------------------------- */
.g_cate { width: 100%; border-top: 1px solid #D9D9D9;  border-bottom: 1px solid #D9D9D9; padding: 0 20px; }
.g_cate .bg_black { background-color: #111; color: #fff; padding: 4px; letter-spacing: 1px; width: 150px; text-align: center; margin-right: 20px; }
.g_cate ul { border: none !important; }
.g_cate ul li { min-width: 200px; }


@media screen and (max-width:1100px){
  .g_cate .bg_black { width: 130px; }
  .g_cate ul li { min-width: 180px; }

}

@media screen and (max-width:768px){
  .g_cate { padding: 0; }
  .g_cate .bg_black { width: 120px; }
  .g_cate ul li { min-width: 130px; }
  .g_cate ul li a { font-size: 1.4rem; }



}


@media screen and (max-width:479px){
  .g_cate .bg_black { margin-top: 10px; }
}




/* -----------------------------------------------

	 top_slide

----------------------------------------------- */
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 37vw;
 
}
.full div.img01 {
  background-image: url(../img/top/top_mainimg01.jpg);
}
.full div.img02 {
  background-image: url(../img/top/top_mainimg01.jpg);
}
.full div.img03 {
  background-image: url(../img/top/top_mainimg03.jpg);
}
.full .slick-dots {
    bottom: 4%;
    z-index: +1;
}



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

}


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

}

@media screen and (max-width:768px){
.full div {
  margin: 27px 0 0 0;
}
}


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

}

/* -----------------------------------------------

	 top_mainarea

----------------------------------------------- */
.top_mainarea { padding: 50px 0; margin-bottom: 30px;}
.top_mainarea .text_area { width: 70%; text-align: center; }
.top_mainarea .text_area h3 { background-image: url(../img/top/from_italy.png); background-repeat: no-repeat; background-size: 25%; background-position: top right; font-size: 2rem; letter-spacing: 2px; font-weight: bold; line-height: 55px; margin-bottom: 20px; text-align: center; }
.top_mainarea .text_area p { font-size: 1rem; width: 80%; line-height: 30px; margin: 0 auto; font-weight: bold; }



@media screen and (max-width:1100px){
  .top_mainarea { padding: 30px 0; margin-bottom: 0;}
  .top_mainarea .text_area { width: 95%; }
  .top_mainarea .text_area h3 { font-size: 2rem; line-height: 35px; }
  .top_mainarea .text_area p { font-size: 1.4rem; width: 90%; line-height: 25px; }

}

@media screen and (max-width:768px){
  .top_mainarea .text_area { width: 100%; }
  .top_mainarea .text_area h3 { background-size: 18%; background-position: 85% 0%; }
  .top_mainarea .text_area p { width: 65%; }
}


@media screen and (max-width:479px){
  .top_mainarea { padding:0; }
  .top_mainarea .text_area h3 { font-size: 1.6rem; line-height: 30px; background-position: 90% 0%; }
  .top_mainarea .text_area p { font-size: 1.2rem; width: 85%; }
}


/* -----------------------------------------------

	 item

----------------------------------------------- */
.top_item { padding: 100px 0; text-align: center; /*background-image: url(../img/top/top-item-2022.jpg); background-repeat: no-repeat; background-position: -3% 0%; background-size: 15%;*/ }
.bg01 {background-image: url(../img/top/top_item_bg.png); background-repeat: no-repeat; background-position: -3% 0%; background-size: 15%;}
.bg02 {background-image: url(../img/top/top_item_bg.png); background-repeat: no-repeat;  }

.top_item .item_area { margin: 30px 0; }
/*.top_item .item_area img { width: 100%; margin-bottom: 30px; }
.top_item .item_area .img_half { width: 49%; }*/

.top_item .item_area .item_trere { margin-bottom:50px; padding: 50px 30px 40px; background-image: url(../img/top/top_trere_bg.jpg); background-repeat: no-repeat; background-size: cover; }
.top_item .item_area .item_spring { margin-bottom:50px; padding: 10px 0; }

.top_item .item_area .item_limited { margin-bottom:50px; padding: 50px 30px 40px; background-image: url(../img/top/top_limited_bg.jpg); background-repeat: no-repeat; background-size: cover; }
.top_item .item_area .item_e-summer { margin-bottom:50px; padding: 50px 30px 40px; background-image: url(../img/top/top_e-summer_bg.jpg); background-repeat: no-repeat; background-size: cover; }

.top_item .item_area .item_roeno { margin-bottom:50px; padding: 50px 30px 40px; background-image: url(../img/top/top_roeno_bg.jpg); background-repeat: no-repeat; background-size: cover; }
.top_item .item_area .item_tit { width: 80%; margin: 0 auto 30px; }
.top_item .item_area .img_wine { width: 30%; margin: 1%; }
.top_item .item_area .img_spring { width: 33%; margin: 2px; }
.top_item .item_area .img_food { width: 22%; margin: 1%; }

.top_item .goods_bnr_area { margin: 30px 0 50px 0; }


@media screen and (max-width:1100px){
  .top_item { padding: 50px 0; }
  /*.top_item .item_area img { margin-bottom: 20px; }*/
}

@media screen and (max-width:768px){
  /*.top_item .item_area img { margin-bottom: 15px; }*/
  .top_item .item_area .item_spring .flex{ 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top_item .item_area .img_spring{ width: 100%; margin-bottom: 15px;}
}


@media screen and (max-width:479px){
  .top_item { padding: 30px 0; }
  /*.top_item .item_area img { margin-bottom: 8px; }*/

  .top_item .item_area .item_trere { padding: 30px 20px 20px; background-image: url(../img/top/top_trere_bg.jpg); }
  .top_item .item_area .item_limited { padding: 30px 20px 20px; background-image: url(../img/top/top_limited_bg.jpg); }
  .top_item .item_area .item_e-summer { padding: 30px 20px 20px; background-image: url(../img/top/top_e-summer_bg.jpg); }
  .top_item .item_area .item_roeno { padding: 30px 20px 20px; background-image: url(../img/top/top_roeno_bg.jpg); }
  .top_item .item_area .item_tit { margin: 0 auto 20px; }
  .top_item .item_area .img_wine { width: 100%; margin: 0; margin-bottom: 20px; }
  .top_item .item_area .img_food { width: 100%; margin: 0; margin-bottom: 20px; }

}



/* -----------------------------------------------

	 goods

----------------------------------------------- */
.top_goods { padding: 100px 0; text-align: center; }
.top_goods .goods_bnr_area { margin: 30px 0; }



@media screen and (max-width:1100px){
  .top_goods { padding: 50px 0; }
}

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

}


@media screen and (max-width:479px){
  .top_goods { padding: 30px 0; }
}



/* -----------------------------------------------

	 category

----------------------------------------------- */
.top_category { padding: 100px 0; background-image: url(../img/top/top_category_bg.png); background-repeat: repeat-y; background-size: 90%; background-position: top center; }
.top_category .category_area { width: 70%; margin: 30px auto;}
.top_category .category_area ul li { width: 28%; padding: 4%;}
.top_category .category_area ul li:hover { transform: scale(1.1); transition: 0.3s;}



@media screen and (max-width:1100px){
  .top_category { padding: 50px 0; }
}

@media screen and (max-width:768px){
  .top_category .category_area { width: 90%; }
}


@media screen and (max-width:479px){
  .top_category { padding: 30px 0; }
  .top_category .category_area { width: 100%; }
}

/* -----------------------------------------------

	 top_news

----------------------------------------------- */
.top_news { padding: 100px 0; background-image: url(../img/top/top_news_bg.png); background-repeat: no-repeat; background-size: cover; background-position:center; }
.top_news .u_inner { width: 900px;}



@media screen and (max-width:1100px){
  .top_news { padding: 50px 0; }
  .top_news .u_inner { width:80%;}
}

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

}


@media screen and (max-width:479px){
  .top_news { padding: 30px 0; }
}


/* -----------------------------------------------

	 column

----------------------------------------------- */
.top_column { padding: 150px 0 100px; background-image: url(../img/top/top_column_bg.png); background-repeat: no-repeat; background-size: 30%; background-position: 80% 10%; }
.top_column .column_area { margin: 30px 0;}
.top_column .column_area .column_box { width: 31%; margin-bottom: 30px; border: 1px solid #111; padding: 20px 40px; background-color: #fff;}
.top_column .column_area .column_box p { margin: 0; margin-bottom: 5px; }
.top_column .column_area .column_box .column_date { font-size: 1.1rem; }
.top_column .column_area .column_box .more { text-align: right; margin-top: 20px; }



@media screen and (max-width:1100px){
  .top_column { padding: 100px 0 50px; }
}

@media screen and (max-width:768px){
  .top_column .column_area .column_box { width: 48%; margin: 0 auto 30px; }
  .top_column .column_area .column_box:first-of-type { width: 54%; }
}


@media screen and (max-width:479px){
  .top_column { padding: 60px 0 30px; background-size: 35%; background-position: 85% 3%;}
  .top_column .column_area .column_box { width: 100%; margin: 0 auto 30px; padding: 20px; }
  .top_column .column_area .column_box:first-of-type { width: 100%; }
  .top_column .column_area .column_box p { font-size: 1.1rem; line-height: 22px; }
  .top_column .column_area .column_box .more a { font-size: 1rem; }
}



/* -----------------------------------------------

	 flow

----------------------------------------------- */
.top_flow { padding: 100px 0; background-color: #EBE9E5; text-align: center; }
.top_flow .flow_area {}
.top_flow .flow_area .flow_box { width: 18%; margin-bottom: 30px; text-align: center; }
.top_flow .flow_area .flow_box h4 { font-size: 1.8rem; font-weight: bold; letter-spacing: 1px; margin-bottom: 5px; }
.top_flow .flow_area .flow_box img { margin-bottom: 10px; width: 100%; }
.top_flow .flow_area .flow_box p { text-align: justify; padding: 0 10px; }



@media screen and (max-width:1100px){
  .top_flow { padding: 50px 0; }
  .top_flow .flow_area { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .top_flow .flow_area .flow_box { width: 30%; margin: 1% 1% 3%;}
}

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

}


@media screen and (max-width:479px){
  .top_flow { padding: 30px 0; }
  .top_flow .flow_area { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .top_flow .flow_area .flow_box { width: 48%; margin: 0; margin-bottom: 30px; }
  .top_flow .flow_area .flow_box h4 { font-size: 1.4rem; }
  .top_flow .flow_area .flow_box p { font-size: 1rem; line-height: 20px;}
}


/* -----------------------------------------------

	 thoughts(私たちの想い)

----------------------------------------------- */
.thoughts { margin-top: 30px; border-top: 5px solid #000; padding: 20px 0 150px; text-align: center; }
.thoughts h4.line_title {
  font-size: 2rem;
	color: #111;
  width: 98%;
  margin: 0 auto 100px;
}
.thoughts h4.line_title span {
  padding: 0 20px;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
}
.thoughts h4.line_title:before, .thoughts h4.line_title:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #111;
	display: block;
}
.thoughts h4.line_title:before {
	margin-right: .4em;
}
.thoughts h4.line_title:after {
	margin-left: .4em;
}

.thoughts h3 { font-size: 3rem; letter-spacing: 2px; margin-bottom: 50px; color: #9B8066; }
.thoughts p { font-size: 1.4rem; line-height: 30px; margin-bottom: 30px; letter-spacing: 1px; color: #9B8066; }


.zigzag {
  position: relative;
  background: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
.zigzag::after {
  height: 20px;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.zigzag::after {
  bottom: -20px;
  background: linear-gradient(135deg, #fff 10px, transparent 0), linear-gradient(225deg, #fff 10px, transparent 0);
  background-size: 30px 30px;
}
.thoughts_img_area { width: 50%; margin: 0 auto; }
.thoughts_img_area .img01 { width: 300px; margin: 50px 0 100px; }

@media screen and (max-width:1100px){
  .thoughts { width: 100%; margin: 0 auto; }

}

@media screen and (max-width:768px){
  .thoughts h3 { font-size: 2.5rem; }
  .thoughts_img_area { width: 70%; }
  .thoughts_img_area .img01 { width: 200px; }

}


@media screen and (max-width:479px){
  .thoughts { padding: 20px 0 100px; }
  .thoughts h4.line_title { font-size: 1.6rem; margin: 0 auto 50px; }
  .thoughts h3 { font-size: 1.8rem; margin-bottom: 30px; }
  .thoughts p { font-size: 1.2rem; line-height: 25px; width: 90%; margin: 0 auto 15px; }
  .thoughts_img_area { width: 90%; }
}



/* -----------------------------------------------

	 wine_salon(ワインサロン)

----------------------------------------------- */
.wine_salon .schedule { padding: 100px 0 50px; color: #2c0f0d; background-color: #af8e6f; }
.wine_salon .schedule h2 { font-size: 2.5rem; font-weight: bold; text-align: center; margin-bottom: 30px; font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
.wine_salon .schedule h2.kongo { font-size: 2rem; text-align: left; margin: 50px 5% 10px; padding-top: 20px; border-top: 1px dashed #2c0f0d; }
.wine_salon .schedule .schedule_box { width: 90%; margin:0 auto 30px; background-color: #fff; padding: 30px; }
.wine_salon .schedule .schedule_box .schedule_box_inner { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
.wine_salon .schedule .schedule_box h3 { font-size: 2rem; letter-spacing: 1px; font-weight: bold; margin-bottom: 20px; color: #fff; background-color:#8C0027;  padding: 10px 20px; }
.wine_salon .schedule .schedule_box .schedule_text { width: 65%; }
.wine_salon .schedule .schedule_box .schedule_text h4 { font-size: 1.6rem; font-weight: bold; color:#8C0027; margin-bottom: 10px; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info { margin-top: 30px; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info dl { width: 100%; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info dl dt, .wine_salon .schedule .schedule_box .schedule_info dl dd { font-size: 1.2rem; line-height: 20px; padding: 5px 10px; border: 1px solid #ccc; border-bottom: none; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info dl dt { width:30%; background-color: rgba(175,142,111,0.6); text-align: center; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info dl dd { width:70%; }
.wine_salon .schedule .schedule_box .schedule_text .schedule_info dl:last-of-type dt, .wine_salon .schedule .schedule_box .schedule_info dl:last-of-type dd { border-bottom:1px solid #ccc; }
.wine_salon .schedule .schedule_box .schedule_img { width: 33%; }

.schedule_btn { width: 40%; margin: 30px auto 0;}
.schedule_btn:hover { opacity: 0.8; }
.img_mb { margin-bottom: 0; margin-top: 20px; }

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



}

@media screen and (max-width:768px){
  .wine_salon .schedule .schedule_box { padding: 15px; }
  .wine_salon .schedule .schedule_box h3 { font-size: 1.5rem; padding: 10px; }
  .wine_salon .schedule .schedule_box .schedule_text { width: 100%; margin-bottom: 20px; }
  .wine_salon .schedule .schedule_box .schedule_text h4 { font-size: 1.3rem; }
  .wine_salon .schedule .schedule_box .schedule_text .schedule_info { margin-top: 20px; }
  .wine_salon .schedule .schedule_box .schedule_img { width: 80%; }

  .schedule_btn { width: 50%; margin: 0 auto;}
  .img_mb { margin-bottom: 15px; margin-top: 0; }
}


@media screen and (max-width:479px){
  .wine_salon .schedule h2 { font-size: 1.6rem; margin-bottom: 20px; }
  .wine_salon .schedule .schedule_box h3 { font-size: 1.4rem; }
  .wine_salon .schedule .schedule_box .schedule_text p { line-height: 20px; }
  .wine_salon .schedule .schedule_box .schedule_img { width: 100%; }

  .schedule_btn { width: 90%; }

}
/* -----------------------------------------------

	 フッター

----------------------------------------------- */




.ec-shelfRole {
    margin: 0 auto 100px;
}



