@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* base style
=====================================================================*/

body {
  background: #FFF;
  min-width: 1160px;
  font-size: 14px;
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  color: #222222;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
  box-sizing:border-box;
  -webkit-overflow-scrolling: touch;
}

*::selection {
  background: #CFD3DE;
}

.lock {
  overflow: hidden;
  position: relative;
}

input,
textarea {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.08em;
  line-height: 1.8;
  outline: none;
  border: none;
}

input::-ms-clear {
  visibility: hidden;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
}

button {
  font-size: 16px;
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  border: none;
}

.wrap,
.inner{
  width: 1100px;
  margin: 0 auto;
  position: relative;
  box-sizing:border-box;
}

.wrap:after,
.inner:after{
  content: "";
  display: block;
  clear: both;
}

.sec {
  padding: 60px 0 100px;
  width: auto;
  background: #FFF;
  position: relative;
  box-sizing:border-box;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li,
ol li {
  list-style: none;
}

p {
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

dl,
dt,
dd {
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
}

.img_wrap img {
  display: block;
  margin: 0 auto;
}

img {
  width: auto;
  height: auto;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width:767px) {
	.wrap,
	.inner{
	  width: 96%;
	  margin: 0 auto;
	  position: relative;
	  box-sizing:border-box;
	}
	
	.wrap:after,
	.inner:after{
	  content: "";
	  display: block;
	  clear: both;
	}

}


/* breadcrumb style
=====================================================================*/
.breadcrumb_wrapper{
	height:32px;
	line-height:32px;
	background:#FFF;
	border-bottom: 1px solid #EEEEEE;
}
.breadcrumb{
	display: flex;
	flex-wrap:wrap;
	padding-left: 50px;
}

.breadcrumb li,.breadcrumb a{
	display: block;
	font-size:11px;
	color: #777;
	letter-spacing: 0.1em;
}
.breadcrumb li{
	position:relative;
	overflow: hidden;
	padding:0 30px 0 20px;
}
.breadcrumb li:after{
	position: absolute;
	display: block;
	top: 0;
	bottom:0;
	right: 5px;
	width: 23px;
	height: 23px;
	margin: auto;
	content: "";
	vertical-align: middle;
	border-top: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.breadcrumb li:first-child{padding-left: 0;}

@media only screen and (max-width: 767px){
  
	.breadcrumb_wrapper{
		margin-bottom:30px;
		padding: 0px;
		height: auto;
	}
  .breadcrumb {
    padding-left: 3%;
  }
	.breadcrumb li,.breadcrumb a{
		font-size:.5rem;
	}
	.breadcrumb li{
		padding:0 24px 0 15px;
	}
	.breadcrumb li:first-child a{
		padding-left: 10px;
	}
}


/* アニメーション
=====================================================================*/

@keyframes horizontal {
    0% { transform:translateX( -10px); }
  100% { transform:translateX(  10px); }
}
@keyframes vertical {
    0% { transform:translateY(-10px); }
  100% { transform:translateY(  0px); }
}

/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  transform : translate(0, 100px);
  transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}

@media screen and (max-width:767px) {
	/* 画面外にいる状態 */
	.fadein {
		opacity : 0;
		transform : translate(0, 20px);
		transition : all 300ms;
		}
	 
	/* 画面内に入った状態 */
	.fadein.scrollin {
		opacity : 1;
		transform : translate(0, 0);
	}
}

@media screen and (max-width:767px) {

  body {
    width: 100%;
    min-width: 100%;
    font-size: 12px;
  }
  .wrap {
    width: 100%;
  }
  .sec {
    padding: 40px 0 50px;
  }
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .img_wrap img {
    width: 100%;
  }
  img{
	 max-width:100% !important;
  }
}

/* float設定 */

.f_wrap:after {
  content: "";
  clear: both;
  display: block;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.f_none {
  float: none;
}

/* flex設定 */

.flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

/* margin設定 */

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px;
}

/* color設定 */

.white {
  color: #FFF;
}


/* 見出し設定
=====================================================================*/

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: bold;
}

.lp_h03 {
  margin: 0 auto 45px;
  text-align:center;
}


/* link, btn
=====================================================================*/

a,
a:before,
a:after{
  backface-visibility: hidden;
  text-decoration: none;
  transition: 0.4s;
  color: #222222;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
}
a:hover,
a:before:hover,
a:before:after{
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
}

.btn_wrap {
}


/* gnavi
=====================================================================*/

#gnavi {
  background: #EB1F33;
  line-height: 70px;
  z-index: 1000;
  position: relative;
  height:70px;
  overflow:hidden;
  width:100%;
   position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#gnavi .gnavi_logo{
	float:left;
	margin:0;
	line-height: initial;
	height:70px;
}

#gnavi ul {
  display: flex;
  flex-wrap: wrap;
  float:right;
}

#gnavi li a {
  display: block;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 0 16px;
  font-weight:600;
  text-align: center;
}

#gnavi li a:hover,
#gnavi li a.current{
  background: #ce2a3a;
}

/* スマホ ハンバーガーメニュー */

@media screen and (max-width:767px) {
  #gnavi {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #ea1f32;
    position: fixed;
    padding: 22% 0 0;
    top: 0px;
    left: 0;
    z-index: 999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    line-height: initial;
  }
  
  #gnavi.is-active {
    min-width: 100%;
    right: auto;
  }

  #gnavi ul {
    display: block;
	float:none;
  }
  #gnavi li a {
    font-size: 15px;
    font-weight: bold;
    padding: 15px 0;
  }
  #gnavi li:last-child a{
	padding: 15px 0;
  }
  
  .sp_navi_wrap {
    display: block;
    position: fixed;
    right: 4%;
    top: 19px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    z-index: 9999;
    background: #EB1F33;
    border-radius: 30px;
  }
  #sp_menu_btn {
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 0;
    height: 20px;
    width: 22px;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
  }
  #sp_menu_btn span,
  #sp_menu_btn::before,
  #sp_menu_btn::after {
    display: inline-block;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    margin: auto;
    background: #FFF;
  }
  #sp_menu_btn span {
    opacity: 1;
    transition: opacity 150ms 50ms;
  }
  #sp_menu_btn::before {
    z-index: 2;
    transform: translate(0, -8px);
    content: "";
  }
  #sp_menu_btn::after {
    z-index: 2;
    transform: translate(0, 8px);
    content: "";
  }
  #sp_menu_btn::before,
  #sp_menu_btn::after {
    transition: transform 200ms;
  }
  #sp_menu_btn.active span {
    opacity: 0;
    transition: opacity 150ms;
  }
  #sp_menu_btn.active::after {
    transform: rotate(-45deg);
  }
  #sp_menu_btn.active::before {
    transform: rotate(45deg);
  }
  .sns_area {
    margin-top: 35px;
    text-align: center;
  }
  #gnavi .sns_area a {
    background: #FFF;
    border-radius: 50px;
    display: inline-block;
    line-height: 1;
    margin-right: 14px;
    width: 45px;
  }
  #gnavi .sns_area a:last-child {
    margin: 0;
  }
  #gnavi .sns_area a img {
    width: 100%;
  }
}

/* footer
=====================================================================*/

#copyright {
  background: #333;
  line-height: 45px;
  height: 45px;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

#top_scroll{ 
    position: relative; 
    z-index: 100; 
    margin: 0; 
    padding: 0; 
}

/* ページトップへ
=====================================================================*/

#page_top{
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 40px;
  background: #EB1F33;
  border-radius: 50%;
  right:-60px;
}
#page_top:before{
  width: 10px;
  height: 10px;
  border-top:3px solid #fff;
  border-right:3px solid #fff;
  content:"";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  transform: rotate(-45deg);  
}
#page_top:hover{
	opacity:0.8;
}

@media screen and (max-width:767px) {
	#page_top{
	  width: 32px;
	  height: 32px;
	  position: fixed;
	  bottom: 5px;
	  background: #f2cd34;
	  border-radius: 50%;
	}
	#page_top:before{
	  width: 6px;
	  height: 6px;
	  border-top:3px solid #fff;
	  border-right:3px solid #fff;
	  content:"";
	  position: absolute;
	  top: 4px;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  text-align: center;
	  transform: rotate(-45deg);  
	}
}


/* top
=====================================================================*/

#main_img img{
	width: 100%;
}

.overflow {
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden;
  display: block;
}

#main_vis, #background-front {
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  margin-left: 0px;
  z-index:-9999;
  position:fixed;
}
@media screen and (max-width:767px) {
	#main_vis{
	}
}


.top_copy {
    position: absolute;
    top: -5%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 400px;
    max-height: 480px;
	text-align:center;
}
.top_copy img{
	max-height:100%;
	max-width:100%;
}
#main_img{
	background:#fff;
}
.top_report_btn {
	position: absolute;
    top: 0px;
    right: 0px;
    bottom: -77%;
    left: 40%;
    margin: auto;
    max-width: 237px;
    max-height: 186px;
}

.top_report_btn img{
	position:absolute;
	bottom:0;
	transition: all 0.5s ease;
	max-height:100%;
	max-width:100%;

}
.top_report_btn img:hover{
	bottom:10px;
	transition: all 0.5s ease;
}

/*2019/08/09 2019リンク追加
=====================================================================*/
.top_2019_btn {
    position: absolute;
    top: -70%;
    right: 0px;
    left: -50%;
    bottom: 0;
    margin: auto;
    max-width: 180px;
    max-height: 180px;
}

.top_2019_btn img{
	position:absolute;
	bottom:0;
	transition: all 0.5s ease;
	max-height:100%;
	max-width:100%;

}
.top_2019_btn img:hover{
	bottom:10px;
	transition: all 0.5s ease;
}



@keyframes reportBtnAnim {
  0% {
    opacity: 0;
    transform: translateY(800px);
		transition-delay: 2s;
  }
  100% {
    opacity: 1;
	transform: translateY(0);
    animation-timing-function: ease-out;
  }
  
}

.top_report_btn img {
  animation-duration: 3s;/* アニメーション時間 */
  animation-name: reportBtnAnim;/* アニメーション名 */
}




/* メインテーマ */

.sec_maintheme {
  padding: 80px 0 80px;
  background:#fff;
  position:relative;
}

.sec_maintheme .sec_maintheme_copy:before{
	content:"";
	background:url(../img/top/sec02_bg_left.png) no-repeat;
	width:478px;
	height:218px;
	background-size:100%;
	position:absolute;
	left:100px;
	bottom:180px;
}

.sec_maintheme .sec_maintheme_copy:after{
	content:"";
	background:url(../img/top/sec02_bg_left.png) no-repeat;
	width:478px;
	height:218px;
	background-size:100%;
	position:absolute;
	right:100px;
	bottom:180px;
}

@media screen and (max-width:767px) {
	.sec_maintheme .sec_maintheme_copy:before{
		width: 289px;
		height: 218px;
		background-size: 100%;
		position: absolute;
		left: -175px;
		bottom: 87px;
	}
	.sec_maintheme .sec_maintheme_copy:after{
		width: 253px;
		height: 218px;
		background-size: 100%;
		position: absolute;
		right: -124px;
		bottom: 72px;
	}
}



/* 開催概要 */

.sec_information {
  background: url(../img/top/sec03_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 190px;
  height:760px;
  box-sizing:border-box;
}
.sec_information .img_wrap{
	position:relative;
	width:1000px;
	margin:0 auto;
	text-align:center;
}
.label_instagram img {
    position: absolute;
    bottom: -20px;
    left: 67px;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
	transition: 0.4s;
    animation: vertical 1s ease-in-out infinite alternate;	
}

@media screen and (max-width:767px) {
	.sec_information .img_wrap {
		width:100%;
	}
	.sec_information{
	  padding: 40px 0;
      height: 680px;
	  box-sizing:border-box;
	}
    .sec_information img.sec_information_graph {
      width: 90%;
    }
    .sec_information .label_instagram img {
		width:180px;
		position:static;
		padding-top:30px;
	}

}

.sec_bg {
  width: 100%;
  height: 700px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkitjustify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background:url(../img/top/sec02_bg.jpg) no-repeat center bottom;
  background-size:cover;
  z-index:-1;
}

@media screen and (max-width:767px) {
	.sec_bg {
		height:400px;
	}
}

/* イベント event */
.sec.sec_event {
  padding: 0px 0 0;
  background:#C6E8F2;
  position:relative;
}

.sec.sec_event .lp_h03{
	position:absolute;
	top:-46px;
	left:calc(50% - 60px);
}
.sec.sec_event:before{
	content:"";
	width:100%;
	border-top:3px solid #000;
	position:absolute;
	top:11px;
}

.sec.sec_event .en{
	padding-top:180px;
}

p.en {
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin: 0 0 60px;
}

div.event_ecmarket p.pay_ttl {
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin: 0 0 20px;
}

#top_pay .event-box_ttl{
	margin-bottom: 20px;
}

.flexbox {
  position: relative;
}

.flexbox.food_drink {
  width: 260px;
  margin: 0 30px 0 40px;
  padding-top: 44px;
}

.flexbox.work_shop {
  width: 286px;
  margin-right: 30px;
  padding-top: 44px;
}

.flexbox.shop {
  width: 286px;
  padding-top: 44px;
}

.flexbox p {
  font-size: 13px;
}

.flexbox .img_wrap {
  margin: 0 0 10px;
}

.flexbox.food_drink:before {
    content: url(../img/top/sec04_box01_ttl.png);
}

.flexbox.work_shop:before {
    content: url(../img/top/sec04_box02_ttl.png);
}

.flexbox.shop:before {
    content: url(../img/top/sec04_box03_ttl.png);
}

.flexbox:before {
  display: inline-block;
  position: absolute;
  top: -95px;
  left: 19%;
}

.event_detail {
  padding: 00px 0 65px;
}

.event_box_wrap {
  margin: 50px 0 45px;
}


.top_event-through_box {
  background: #FFF;
  width: 100%;
  padding: 0 0 0 50px;
  position: relative;
  clear:both;
  overflow:hidden;
  box-sizing:border-box;
  margin-bottom:60px;
}

.top_event-through_box .img_wrap{
	float:right;
}

.top_event-small_box {
  background: #FFF;
  width: 520px;
  padding: 50px 0 50px 0;
  position: relative;
  overflow:hidden;
  box-sizing:border-box;
  margin-bottom:80px;
}
.top_event-box.top_event-through_box .event-box_text{
	float:left;
	width:450px;
	padding:50px 0 0 0;
	text-align:center;
}
.top_event-box.top_event-small_box .event-box_text{
	padding:0 50px 0;
	text-align:center;
}
.top_event-box.top_event-small_box.event_award{
	float:left;
}
.top_event-box.top_event-small_box.event_bycafe{
	float:right;
}
.top_event-small_box .img_wrap{
	margin-bottom:40px;
}
.top_event-box .event-box_ttl{
	margin-bottom:40px;
}

.top_event-box .event-box_text p{
	text-align:left;
	margin-bottom:30px;
}

p.event_attention {
  text-align: right;
  font-size: 12px;
  margin: 0;
  clear:both;
}



@media screen and (max-width:767px) {
	.top_event-through_box{
		padding: 20px 20px 40px;
	}
	.top_event-small_box {
		padding:40px 0 40px;
	}
	.top_event-box.top_event-through_box .event-box_text{
		float:none;
		width:100%;
		padding:0;
	}
	.top_event-through_box .img_wrap{
		float:none;
		margin-top:20px;
	}
	.top_event-box.top_event-small_box .event-box_text{
		padding: 0 20px 0;
	}
	.top_event-through_box{
	    margin-bottom: 30px;
	}
	.top_event-small_box{
		width:100%;
		margin-bottom:40px;
	}
	.top_event-box.top_event-small_box.event_award,
	.top_event-box.top_event-small_box.event_bycafe{
		float:none;
	}
	p.event_attention{
		text-align:left;
	    font-size: 11px;
		padding:0 10px;
	}
	
	
	.sec.sec_event .en{
		padding:140px 20px 0;
	}
    p.en{
		font-weight: bold;
		font-size: 15px;
		text-align: center;
		letter-spacing: 0.15em;
		line-height: 1.8;
		margin: 0 0 30px;	
	}
}


a.button-box{
	border:2px solid #000;
	padding:12px 80px;
	display:inline-block;
	position:relative;
}
a.button-box-small{
	border:2px solid #000;
	padding:6px 80px;
	display:inline-block;
	position:relative;
}
a.button-box:hover,
a.button-box-small:hover{
	background:#1f1f1f;
	color:#fff;
}
.button-top_ecmarket{
	margin:0 auto;
	text-align:center;
	display:table !important;
}
.button-top_guest,
.button-top_ecmarket,
.button-top_pfm,
.button-top_bycafe{
	padding:12px 60px 12px 100px !important;
}
.button-top_guest:before{
	content:"";
	background:url(../img/top/sec04_box02_icon.png) no-repeat;
	width:32px;
	height:32px;
	background-size:cover;
	position:absolute;
	left: 54px;
    top: 6px;
}
.button-top_guest:hover:before{
	content:"";
	background:url(../img/top/sec04_box02_icon_w.png) no-repeat;
}
.button-top_award:before{
	content:"";
	background:url(../img/top/sec04_box03_icon.png) no-repeat;
	width:32px;
	height:32px;
	background-size:cover;
	position:absolute;
	left: 54px;
    top: 6px;
}
.button-top_award:hover:before{
	content:"";
	background:url(../img/top/sec04_box03_icon_w.png) no-repeat;
}
.button-top_bycafe:before{
	content:"";
	background:url(../img/top/sec04_box04_icon.png) no-repeat;
	width:32px;
	height:32px;
	background-size:cover;
	position:absolute;
	left: 54px;
    top: 6px;
}
.button-top_bycafe:hover:before{
	content:"";
	background:url(../img/top/sec04_box04_icon_w.png) no-repeat;
}
.button-top_pfm:before{
	content:"";
	background:url(../img/top/sec04_box05_icon.png) no-repeat;
	width:32px;
	height:32px;
	background-size:cover;
	position:absolute;
	left: 54px;
    top: 6px;
}
.button-top_pfm:hover:before{
	content:"";
	background:url(../img/top/sec04_box05_icon_w.png) no-repeat;
}
/* 会場MAP */

.sec_map {
  padding: 50px 0 0;
}

.map_intro {
  padding: 0 0 30px;
}
.map_intro_btn{
	text-align:center;
    margin: 20px auto 0;
}
.map_intro_btn a{
    display: inline-block;
    background: #EB1F33;
    color: #fff;
    padding: 16px 40px;
}
.map_intro_btn a:hover{
	opacity:0.6;
}


/* スポンサーエリア */

.sec_sponsor{
	padding:40px 0;
}
.sec_sponsor h3{
	text-align: center;
    background: #F7F7F7;
    margin-bottom: 50px;
    padding: 20px 0;
    font-size: 20px;
    color: #333;
}
.h_horizon{
	border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
	padding: 10px 0;
    text-align: center;
	margin-bottom:10px;
	font-size:16px;
}
.sec_sponsor-list-special,
.sec_sponsor-list-partner,
.sec_sponsor-list-media{
	margin-bottom:40px;
}
.sec_sponsor-list{
	text-align:center;
}
.sec_sponsor-list li{
	display:inline-block;
}
.sec_sponsor-list li a{
	display:block;
}
.sec_sponsor-list-special .sec_sponsor-list{
	width:800px;
	margin:0 auto;
	text-align:center;
}
.sec_sponsor-list-partner .sec_sponsor-list{
	width:1000px;
	margin:0 auto;
	text-align:center;
}
.sec_sponsor-list-special .sec_sponsor-list li{
	margin:32px 26px 0;
}
.sec_sponsor-list-partner .sec_sponsor-list li{
	margin:8px 8px 0px;
}
.sec_sponsor-list-media .sec_sponsor-list li{
	margin:20px 16px 0px;
}
.sec_sponsor-list-partner .sec_sponsor-list li a{
	display: table-cell;
    text-align: center;
    vertical-align: middle;
}

@media screen and (max-width:767px) {
	.sec_sponsor h3{
		font-size:15px;
	}
	.h_horizon{
		font-size:13px;
	}
	.sec_sponsor-list-special,
	.sec_sponsor-list-partner,
	.sec_sponsor-list-media{
		margin-bottom:20px;
	}
	.sec_sponsor-list-special .sec_sponsor-list,
	.sec_sponsor-list-partner .sec_sponsor-list{
		width:100%;
	}
	.sec_sponsor-list-special .sec_sponsor-list li{
	    margin: 10px 10px 0;
		width: 33%;
	}
	.sec_sponsor-list-partner .sec_sponsor-list li{
		margin: 3px 4px 0px;
		width: 22%;
	}
	.sec_sponsor-list-partner .sec_sponsor-list li a{
		height:60px;
	}
	.sec_sponsor-list-media .sec_sponsor-list li{
		margin: 20px 10px 0px;
		width: 33%;
	}
}


/* フッター付近 */

.bg_gray {
  background: #F7F7F7;
}

.fes_info.wrap {
  padding: 65px 0 50px;
}

.fes_info .flex_wrap {
  justify-content: center;
}
.fes_info_con {
  /* padding-left: 57px; */
  text-align:center;
}

.fes_info_con p {
  margin: 0 0 20px;
}
.access_map iframe {
  width: 100%;
  height: 400px;
  display: block;
}



@media screen and (max-width:767px) {
  
  #main_vis {
    width: 100vw;
  }
  .top_copy {
    width: 200px;
	height:274px;
  }
  .top_report_btn {
    width: 182px;
    height: 160px;
	top:inherit;
    right: 0px;
    bottom: 10px;
    left: 120px;
    margin: auto;
  }

  .top_2019_btn {
    width: 120px;
    height: 120px;
    top: -75%;
    right: 60%;
    left: 0px;
    margin: auto;
  }

  .top_copy img,
  .top_copy img{
    width: 100%;
    height: auto;
  }
  .sec_concept img {
    width: 93%;
  }
  .sec_maintheme{
	  padding:40px 0;
	  overflow:hidden;
   }
  .sec_maintheme img {
    width: 60%;
  }
  .map_intro {
    padding: 0 0 10px;
  }
  .lp_h03 {
    margin: 0 auto 30px;
    text-align: center;
  }
  .lp_h03 img {
  }
  .comingsoon img {
    width: 65%;
  }
  
  .fes_info.wrap {
    padding: 0 0 20px;
  }
  .fes_info .flex_wrap {
    display: block;
  }
  .fes_info_con {
    display: block;
    text-align: center;
    padding: 40px 0 0;
  }
  .fes_info .flex_wrap .footer-logo img {
    width: 150px;
  }
  .fes_info .flex_wrap .footer-ill img {
    width: 70px;
	margin:15px 0 0;
  }
  .fes_info_con p {
    margin: 0 0 15px;
    font-size: 11px;
  }
  .access_map iframe {
    height: 300px;
  }
}

/*=====================================================================*/
/* ゲストトーク
=====================================================================*/

#guest .main_ttl {
	padding: 170px 0 100px;
	background: url(../img/guest/top.jpg) no-repeat center;
	background-size: cover;
	box-sizing: border-box;
	height: 600px;
}
#guest .main_ttl img {
	width: auto;
}

.tab_wrap{
	padding: 60px 0 100px;
}
input[type="radio"]{
	display: none;
}
.tab_area{
	font-size: 0;
	text-align: center;
	border-bottom: 6px solid #EB1F33;
}
.tab_area label{
	width: 400px;
	height: 60px;
	margin: 0 12px; 
	display: inline-block; 
	padding: 15px 0; 
	color: #fff;
	background: #C2C4C5; 
	text-align: center;
	font-size: 20px;
	cursor: pointer;
	transition: ease 0.2s opacity;
	box-sizing: border-box;
}
.tab_area label:hover{
	opacity: 0.5;
}
.panel_area{
	background: #fff;
}
.tab_panel{
	width: 100%; 
	padding: 80px 0;
	display: none;
}
.tab_panel .img_wrap img {
	margin: 20px auto 70px;
}
#tab1:checked ~ .tab_area .tab1_label{background:#EB1F33; color:#fff;}
#tab1:checked ~ .panel_area #panel1{display:block;}
#tab2:checked ~ .tab_area .tab2_label{background:#EB1F33; color:#fff;}
#tab2:checked ~ .panel_area #panel2{display:block;}

.guest_box .guest_info {
    margin: 100px 0 0 0;
    padding: 100px 30px;
	border-top: 1px solid #E6E6E6;
}
.guest_box .guest_info .pic {
    float: left;
    margin: 0;
}
.guest_box .guest_info dl {
    float: right;
    width: 800px;
    margin: -6px 0;
}
.guest_box .guest_info dl dt {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 10px 0;
	width: 100%;
}
.guest_box .guest_info dl dd {
    font-size: 13px;
    font-weight: normal;
    line-height: 180%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.guest_box .guest_book,
.guest_box .guest_ec {
	background-color: #F7F7F7;
}
.guest_box .guest_book.guest_info,
.guest_box .guest_ec.guest_info {
	border-top: none;
	margin: 0;
	padding: 40px 70px;
}
.guest_box .guest_book.guest_info dl,
.guest_box .guest_ec.guest_info dl {
	width: 760px;
}

.guest_ec ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.guest_box .guest_ec ul li {
    float: left;
    list-style: none;
    width: 480px;
    margin: 0;
    padding: 0;
}
.guest_box .guest_ec ul li p {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 0;
}
.guest_box .guest_ec ul li p span {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 5px 0 20px 0;
    display: block;
	word-wrap: break-word;
}
.guest_box .guest_ec ul li img {
    border: 1px solid #ccc;
    margin: 0 auto;
    text-align: center;
    display: block;
	width: 70%;
}

@media screen and (max-width: 767px) {
	#guest .sec_concept img {
		max-width: 93%;
	}
	#guest .wrap .panel_area {
		width: 93%;
		margin: 0 auto;
	}
	.tab_wrap {
		padding: 0 0 100px
	}
	.tab_area {
		border-bottom: none;
		background-color: #F7F7F7;
		padding-bottom: 20px;
	}
	.tab_area label {
		width: 93%;
		margin: 20px 0 0;
	}
	.tab_panel {
		padding: 60px 0;
	}
	
	.guest_box .guest_info {
		margin: 40px 0 0 0;
		padding: 40px 0;
	}
	.guest_box .guest_info .pic {
		float: none;
	}
	.guest_box .guest_info .pic img {
		display: block;
		margin: 0 auto;
	}
	.guest_box .guest_info dl {
		float: none;
		width: 100%;
		margin: 20px 0;
	}
	.guest_box .guest_info dl dt {
		margin: 0 0 10px 0;
	}
	
	.guest_box .guest_book.guest_info,
	.guest_box .guest_ec.guest_info {
		padding: 40px 15px 20px;
	}
	
	.guest_box .guest_book.guest_info dl {
		width: 100%;
	}
	
	.guest_box .guest_ec ul li {
		float: none;
		width: 100%;
		margin-bottom: 30px;
	}
	.guest_box .guest_ec ul li p span {
		margin: 5px 0 10px 0;
		font-size:12px;
	}
}



/*=====================================================================*/
/* EC　MARKET
=====================================================================*/
#ecmarket .main_ttl {
  padding: 170px 0 100px;
  background: url(../img/ecmarket/ttl_bg.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  height: 600px;
  opacity: 1;
  transition: opacity 1.0s linear 0.3s;
}

#ecmarket .main_ttl img {
  width: auto;
}

#ecmarket .market-box * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

#ecmarket .market-box {
/*  width: 50%;*/
  width: calc(50% - 1px);
  height: 600px;
  float: left;
  position: relative;
  overflow: hidden;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  pointer-events: none;
}

#ecmarket .market-box:nth-of-type(even){
  float:right;
}

.market-box.market-meatparty{
	width:100% !important;
}

.market-kabegamihonpo {
  background: url(../img/ecmarket/img_bg_kabegami.jpg) no-repeat center;
  background-size: cover;
}
.market-ikeuchi {
  background: url(../img/ecmarket/img_bg_ikeuchi.jpg) no-repeat center;
  background-size: cover;
}
.market-motherhouse {
  background: url(../img/ecmarket/img_bg_motherhouse.jpg) no-repeat center;
  background-size: cover;
}
.market-ecomfort {
  background: url(../img/ecmarket/img_bg_ecomfort.jpg) no-repeat center;
  background-size: cover;
}
.market-mitasnakers {
  background: url(../img/ecmarket/img_bg_mitasnakers.jpg) no-repeat center;
  background-size: cover;
}
.market-kobefrantz {
  background: url(../img/ecmarket/img_bg_kobefrantz.jpg) no-repeat center;
  background-size: cover;
}
.market-greentech {
  background: url(../img/ecmarket/img_bg_greentech.jpg) no-repeat center;
  background-size: cover;
}
.market-vikingbakery {
  background: url(../img/ecmarket/img_bg_vikingbakery.jpg) no-repeat center;
  background-size: cover;
}
.market-koganeicheesecake {
  background: url(../img/ecmarket/img_bg_koganeicheesecake.jpg) no-repeat center;
  background-size: cover;
}
.market-starland {
  background: url(../img/ecmarket/img_bg_starland.jpg) no-repeat center;
  background-size: cover;
}
.market-yonayona {
  background: url(../img/ecmarket/img_bg_yonayona.jpg) no-repeat center;
  background-size: cover;
}
.market-origami {
  background: url(../img/ecmarket/img_bg_origami.jpg) no-repeat center;
  background-size: cover;
}
.market-maruhisa {
  background: url(../img/ecmarket/img_bg_maruhisa.jpg) no-repeat center;
  background-size: cover;
}
.market-pajyamaya {
  background: url(../img/ecmarket/img_bg_pajyamaya.jpg) no-repeat center;
  background-size: cover;
}       
.market-bandainamco {
  background: url(../img/ecmarket/img_bg_bandainamco.jpg) no-repeat center;
  background-size: cover;
}
.market-rubodan {
  background: url(../img/ecmarket/img_bg_rubodan.jpg) no-repeat center;
  background-size: cover;
}
.market-logizard {
  background: url(../img/ecmarket/img_bg_logizard.jpg) no-repeat center;
  background-size: cover;
}
.market-pajyamaya02 {
  background: url(../img/ecmarket/img_bg_pajyamaya02.jpg) no-repeat center;
  background-size: cover;
}
.market-plum {
  background: url(../img/ecmarket/img_bg_plum.jpg) no-repeat center;
  background-size: cover;
}
.market-sodastream {
  background: url(../img/ecmarket/img_bg_sodastream.jpg) no-repeat center;
  background-size: cover;
}
.market-souwakajyuen {
  background: url(../img/ecmarket/img_bg_souwakajyuen.jpg) no-repeat center;
  background-size: cover;
}
.market-oishiineibaraki {
  background: url(../img/ecmarket/img_bg_oishiineibaraki.jpg) no-repeat center;
  background-size: cover;
}
.market-oyaizu {
  background: url(../img/ecmarket/img_bg_oyaizu.jpg) no-repeat center;
  background-size: cover;
}
.market-jyutasu {
  background: url(../img/ecmarket/img_bg_jyusuta.jpg) no-repeat center;
  background-size: cover;
}
.market-serika {
  background: url(../img/ecmarket/img_bg_serika.jpg) no-repeat center;
  background-size: cover;
}
.market-withals {
  background: url(../img/ecmarket/img_bg_withals.jpg) no-repeat center;
  background-size: cover;
}
.market-meatparty {
  background: url(../img/ecmarket/img_bg_meatparty.jpg) no-repeat center;
  background-size: cover;
}



.market-front-ttl {
  color: #fff;
  font-size: 26px;
  opacity: 1;
  text-align: center;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.75);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: 0.4s;
  z-index: 10;
  line-height: 1.8;
  padding: 0 10%;
}
.market-front-ttl-sub{
	display: block;
    font-size: 24px;
    font-weight: 800;
    padding-top: 40px;
}

.market-text-wrap {
  position: absolute;
  height: 570px;
  background: rgba(0,0,0, 0.5);
  width: 96%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.market-text-main {
  height: 285px;
  color: #FFF;
  font-size: 15px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 5%;
  top: -10%;
  position: absolute;
}

.market-text-main p {
  line-height: 1.8;
  margin: 0;
}

.market-text-sub {
  position: absolute;
  color: #FFF;
  bottom: 0;
  opacity: 0;
  width: 96%;
  margin: 0 auto 15px;
  display: block;
  left: 0;
  right: 0;
  display:none;
}

.market-text-sub.text-bg-darkblue {
  background: rgba(52, 58, 96, 0.77);
}

.market-text-sub.text-bg-gold {
  background: rgba(120, 84, 0, 0.77);
}

.market-text-sub.text-bg-skyblue {
  background: rgba(132, 206, 225, 0.77);
}

.market-text-sub.text-bg-green {
  background: rgba(36, 93, 80, 0.77);
}

.market-text-sub-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 5% 40px;
  height: 285px;
}

.market-text-sub-wrap figure {
  margin: 0;
  display: block;
  width: 30%;
}

.market-text-sub-wrap figure img {
  display: block;
  width: 100%;
}

.market-text-sub-wrap dl {
  width: 65%;
  margin-left: 4%;
}

.market-text-sub-wrap dl dd {
  margin-top: 15px;
}

.market-text-sub-wrap dl dd a {
  color: #FFF;
  font-size: 12px;
}

@keyframes appear {
  0% {
    opacity: 0;
    bottom: -10%;
  }
  100% {
    opacity: 1;
    bottom: 0%;
  }
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
    bottom: -10%;
  }
  100% {
    opacity: 1;
    bottom: 0%;
  }
}

@media screen and (min-width: 768px) {
  .market-box:hover .market-front-ttl {
    opacity: 0;
  }
  .market-box:hover .market-text-wrap {
    opacity: 1;
  }
  .market-text-wrap {
    opacity: 0;
  }
  .market-box:hover .market-text-main {
    text-transform: lowercase;
    top: -50%;
    -webkit-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
  }
  .market-text-sub-wrap dl dd a:hover {
    text-decoration: underline;
  }
 .market-box:hover .market-text-sub {
    animation: appear 0.6s ease 0.2s 1 normal forwards;
    -webkit-animation: appear 0.6s ease 0.2s 1 normal forwards;
  }
}

@media screen and (max-width: 1400px) {
  .market-text-sub-wrap {
    padding: 32px 5% 40px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  
  #ecmarket .main_ttl {
    height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #ecmarket .main_ttl img {
    width: 93%;
  }
  #ecmarket .market-box {
    width: calc(100% - 8%);
    padding: 0 4%;
    height: auto;
    float: none;
    background: none;
    margin: 0 0 35px;
    display: block;
  }
  #ecmarket .market-box .img_wrap.sp_only {
    height: 200px;
    overflow: hidden;
  }
  .market-front-ttl {
    position: absolute;
    line-height: inherit;
    font-size: 16px;
    left: 0;
    right: 0;
    margin: auto;
    top: 60px;
    height: 200px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
  }
  .market-front-ttl-sub{
	  padding-top:20px;
	  font-size:11px;
  }
  .market-text-wrap {
    position: initial;
    width: 100%;
    height: auto;
    background: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 15px 0;
	display:none;
  }
  .market-text-main {
    height: auto;
    color: #222;
    font-size: 12px;
    top: auto;
    position: relative;
    display: block;
    padding: 0;
  }
  .market-text-sub {
    opacity: 1;
    position: relative;
    width: 100%;
	display:none;
  }
  .market-text-sub-wrap {
    padding: 20px 4%;
    font-size: 13px;
    height: auto;
  }
  .market-text-sub-wrap dl {
    font-size: 10px;
  }
  .market-text-sub-wrap dl dd {
    margin-top: 8px;
  }
  .market-text-sub-wrap dl dd a {
    font-size: 10px;
    word-break: break-all;
  }
}


/*=====================================================================*/
/* PERFORMANCE
=====================================================================*/
#performance {}

#performance .main_ttl {
  background: url(../img/performance/mv_bg.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  height: 387px;
  padding: 0;
}

#performance .bg_point {
  padding: 65px 0 85px;
}

#performance .performance_main_con {
  background: url(../img/performance/bg_01.png) no-repeat top center;
  background-size: cover;
  padding: 160px 0 40px;
}

#performance .performance_main_con p {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  width: 753px;
  display: block;
  margin: 0 auto 40px;
  letter-spacing: 0;
  line-height: 2.0;
}

#performance .sec.with_als {
  padding: 30px 0 50px;
}

.performer_prof {
  justify-content: space-between;
}

.performer_con {
  width: 70%;
  font-size: 14px;
  font-weight: 500;
}

.performer_con p {
  line-height: 1.9;
  margin: 0 0 30px;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  
  .performer_con p a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .nobreak {
    display: none;
  }
  #performance .main_ttl {
    background: #131D29;
    height: auto;
  }
  #performance .performance_main_con {
    padding: 70px 0 40px;
  }
  #performance .performance_main_con p {
    width: calc(100% - 8%);
    font-size: 12px;
    padding: 0 4%;
    margin: 0 0 20px;
  }
  #performance .bg_point {
    padding: 25px 0 50px;
  }
  #performance .bg_point img {
    width: 93%;
  }
  #performance .sec.with_als {
    padding: 20px 0 30px;
  }
  #performance .sec.with_als img {
    width: 93%;
  }
  .performer_prof {
    display: block;
  }
  .performer_prof img {
    width: 70%;
  }
  .performer_con {
    width: calc(100% - 10%);
    padding: 0 5%;
    margin-top: 30px;
  }
  .performer_con p {
    line-height: 1.6;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
    font-size: 12px;
  }
}


/*=====================================================================*/
/* BACKYARD AWARD
=====================================================================*/

#backyard_award .main_ttl {
  padding: 170px 0 100px;
  background: url(../img/backyard_award/ttl_bg.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  height: 600px;
}

#backyard_award .sec_intro {
  background-image: url(../img/backyard_award/bg_left.png), url(../img/backyard_award/bg_right.png);
  background-repeat: no-repeat, no-repeat;
  background-position:top 48% left 10%, top 48% right 8%;
  background-size: 310px, 300px;
  margin: 15px 0 0;
  padding: 70px 0;
}

#backyard_award .sec_main_img {
  margin: 15px 0 60px;
  background: url(../img/backyard_award/bg_border.png) repeat;
  padding: 35px 0;
  overflow: hidden;
}

#backyard_award .sec_main_img .wrap {
  position: relative;
  z-index: 0;
}

#backyard_award .sec_main_img .wrap:before,
#backyard_award .sec_main_img .wrap:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

#backyard_award .sec_main_img .wrap:before {
  top: -68px;
  left: 58px;
  width: 500px;
  height: 270px;
  background: url(../img/backyard_award/pic_kirakira_left.png) no-repeat 0px 0px;
  z-index: -1;
}

#backyard_award .sec_main_img .wrap:after {
  bottom: 60px;
  right: -122px;
  width: 500px;
  height: 270px;
  background: url(../img/backyard_award/pic_kirakira_right.png) no-repeat 0px 0px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  #backyard_award .main_ttl {
    height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #backyard_award .main_ttl img {
    width: 93%;
  }
  #backyard_award .sec_intro {
    background-size: 146px, 146px;
    margin: 0px 3% 40px;
    padding: 0;
    background-position: top 61% left -34%, top 59% right -34%;
  }
  #backyard_award .sec_main_img {
    margin: 0 0 35px;
    padding: 25px 0;
  }
  #backyard_award .sec_main_img .wrap {
    padding: 0 5%;
  }
  #backyard_award .sec_main_img .wrap:before {
    top: -50px;
    left: 6px;
    width: 200px;
    height: 103px;
    background-size: 200px;
  }

  #backyard_award .sec_main_img .wrap:after {
    bottom: -36px;
    right: 6px;
    width: 200px;
    height: 122px;
    background-size: 200px;
  }

}

/*=====================================================================*/
/* PAY
=====================================================================*/

#pay .main_ttl {
  padding: 170px 0 100px;
  background: url(../img/pay/ttl_bg.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  height: 600px;
}

#pay .sec_intro {
  padding: 45px 0 80px;
}

#pay .img_wrap.pay_all {
  margin: 50px auto 0;
}

.sec_pay_box_wrap {
  margin: 0 0 65px;
}

.pay_box {
  padding: 20px 0;
  margin: 0 0 25px;
}

.pay_box.rakutenpay {
  background: url(../img/pay/bg_01.png) repeat;
}

.pay_box.amapay {
  background: url(../img/pay/bg_02.png) repeat;
}

.pay_box.linepay {
  background: url(../img/pay/bg_03.png) repeat;
}

.pay_box .wrap {
  width: 1060px;
  background: #FFF;
  box-shadow: 0px 2px 6px -3px #000000;
  align-items: center;
  justify-content: center;
  height: 270px;
}

.pay_box .pay_con_wrap {
  width: 677px;
  margin-left: 75px;
}

.pay_box .wrap p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 2.0;
}

@media screen and (max-width: 767px) {
  #pay .main_ttl {
    height: 300px;
    padding: 0;
    display: block;
    padding-top: 50px;
  }
  #pay .main_ttl img {
    width: 66%;
  }
  #pay .img_wrap.pay_all {
    margin: 20px auto 0;
  }
  #pay .sec_intro {
    padding: 0px 5% 40px;
  }
  .pay_box {
    padding: 20px 4%;
    margin: 0 0 20px;
  }
  .pay_box .wrap {
    width: 100%;
    display: block;
    height: auto;
    padding: 25px 4% 10px;
  }
  .pay_box .pay_con_wrap {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .pay_box .img_wrap img {
    width: 160px;
  }
  .pay_box.rakutenpay .img_wrap img {
    width: 140px;
  }
  .pay_box .wrap p {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .pay_box .wrap p br{
	  display:none;
  }
}

/*=====================================================================*/
/* BACKYARD CAFE
=====================================================================*/

#backyard_cafe .main_ttl {
  padding: 170px 0 100px;
  background: url(../img/backyard_cafe/ttl_bg.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  height: 600px;
}

#backyard_cafe .sec_intro {
  padding: 45px 0 80px;
}

#backyard_cafe .tab_panel {
  padding: 40px 0;
}

#backyard_cafe .cafe_section_area {
  margin: 0 0 150px;
}

#backyard_cafe .guest_box {
  background: #F7F7F7;
  border: 1px solid #E4E4E4;
  padding: 80px 70px 0;
  width: 848px;
  margin: 0 auto;
}

#backyard_cafe .guest_box .guest_info {
  margin: 0 0 90px;
  padding: 0;
  border: none;
}

#backyard_cafe .guest_box .guest_info dl {
  width: 657px;
}

@media screen and (max-width: 767px) {
  #backyard_cafe .main_ttl {
    height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #backyard_cafe .main_ttl img {
    width: 93%;
  }
  #backyard_cafe .tab_wrap {
    padding: 0 0 0px;
  }
  #backyard_cafe .wrap .panel_area {
    width: 93%;
    margin: 0 auto;
  }
  #backyard_cafe .tab_panel .img_wrap img {
    margin: 0px auto 40px;
  }
  #backyard_cafe .tab_panel .img_wrap img.solo {
    width: 200px;
  }
  #backyard_cafe .img_wrap.time_schedule img {
    width: 230px;
  }
  #backyard_cafe .cafe_section_area {
    margin: 0 0 40px;
  }
  #backyard_cafe .guest_box {
    width: calc(100% - 8%);
    padding: 40px 4% 0;
  }
  #backyard_cafe .guest_box .guest_info {
    margin: 0 0 40px;
  }
  #backyard_cafe .guest_box .guest_info dl {
    width: 100%;
  }
  #backyard_cafe .guest_box .guest_info dl dd {
    font-size: 11px;
  }
}


/*=====================================================================*/
/* COMING SOON
=====================================================================*/
.sec_comingsoon{
	height:100vh;
	width:80%;
	margin:0 auto;
}

@media screen and (max-width: 767px) {
	.sec_comingsoon img{
		max-width:80%;
	}

}


.sec_finish_text {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 1px;
  background: #fff;
}
.sec_finish_text p {
  text-align: center;
	font-size: 16px;
	font-weight: bold;
}
.footer_supplement_txt {
	width: 100%;
	margin: 30px auto 50px;
}
.footer_supplement_txt p {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}
