@charset "UTF-8";


/* -------------------------------------- */
/* 📱 SP (スマートフォン) 向けレイアウト (デフォルト) */
/* -------------------------------------- */

.shop-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* PC用ヘッダーはSPでは非表示 */
.shop-header-pc {
    display: none;
}

.shop-name {
    font-size: 14px;
    font-weight: bold;
    background-color: #ffebe6;
    padding: 5px 10px;
    margin-bottom: 5px;
    text-align: left;
    border-radius: 4px;
}

/* -------------------------------------- */
/* 📱 SP (スマートフォン) 向けレイアウト 修正版 */
/* -------------------------------------- */

/* 1. 項目名と値の配置を左寄せに変更 */
.phone,
.reservation,
.normal-bag,
.limited-bag,
.choose-bag {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 12px;
}

.phone:before, 
.reservation:before, 
.normal-bag:before, 
.limited-bag:before, 
.choose-bag:before { 
    margin-right: 15px; 
    min-width: 110px; 
    text-align: left;
}


/* 最後の項目は下線を消す (SP用) */
.shop-item > div:last-of-type {
    border-bottom: none;
}

/* 項目名のラベルを :before で追加 (SP表示のみ) */
.phone:before { content: "電話番号"; font-weight: bold; color: #555; }
.reservation:before { content: "予約期間"; font-weight: bold; color: #555; }
.normal-bag:before { content: "通常福袋"; font-weight: bold; color: #555; }
.limited-bag:before { content: "限定福袋"; font-weight: bold; color: #555; }
.choose-bag:before { content: "見える・選べる福袋"; font-weight: bold; color: #555; }

/* 🔴 最重要: 情報がない項目（has-dataクラスがないもの）をSPで非表示にする */
.shop-item > div:not(.has-data):not(.shop-name) {
    display: none;
}

/* -------------------------------------- */
/* 🖥️ PC (デスクトップ) 向けレイアウト (768px以上) */
/* -------------------------------------- */

@media (min-width: 768px) {
    
    /* 🔴 PCヘッダーの再表示と列定義の明示 */
    .shop-header-pc {
        display: grid;
        /* 6列の幅を明示的に指定 */
        grid-template-columns: 3fr 1.5fr 2.2fr 1.1fr 1.1fr 1.1fr;
        background-color: #464646;
        color: #fff;
        font-weight: bold;
        border-top: 2px solid #464646;
        border-bottom: 2px solid #464646;
        padding: 0;
    }

    /* 各店舗の情報行をグリッド表示に (6列) */
    .shop-item {
        display: grid;
        /* ヘッダーと同じ6列の幅を指定 */
        grid-template-columns: 3fr 1.5fr 2.2fr 1.1fr 1.1fr 1.1fr;
        border: 1px solid #ccc;
        border-top: none; 
        padding: 0;
        box-shadow: none;
    }
    
    .shop-list {
        gap: 0;
    }

    /* 最終行の枠線 */
    .shop-item:last-child {
        border-bottom: 1px solid #ccc;
    }

    /* 各セルにスタイルを適用 */
    .shop-item > div {
        display: flex;
        align-items: center;
        justify-content: center; /* 中央寄せ */
        padding: 10px 5px;
        border-left: 1px solid #ccc;
        border-bottom: none;
        font-size: 14px;
        /* 🔴 SPで非表示にしていた項目も、PCではすべて表示に戻す */
        display: flex !important; 
    }

    /* 最初の列（店名）の左枠線を消す */
    .shop-item > div:first-child {
        border-left: none;
        justify-content: left; /* 店名は左寄せ */
        padding-left: 15px;
    }

    /* 店名セルのSP用背景とマージン、角丸を解除 */
    .shop-name {
        background-color: transparent;
        margin-bottom: 0;
        text-align: left;
        font-weight: normal;
        border-radius: 0;
    }

    /* SP用に設定した情報ラベルをPCでは非表示にする */
    .shop-item > div:before {
        content: none;
    }

    /* PCヘッダーのテキストを中央寄せ */
    
    .shop-header-pc > div {
        justify-content: center !important;
        text-align: center !important;
        padding: 10px 5px;
        font-size: 12px;
    }
}





    
    
/* 共通 --------------------------------------------------- */	

	.CollaMenu {
	display: flex;
	justify-content: space-between;
	}
 
	.Photo {
	display: flex;
	flex-direction: column;
	}
 
	.BaseBtn {
	margin-top: auto;
	}

	.BaseBtn a {
    display: block;
    width: 100%;
    margin: 10px auto 0 auto;
    padding: 8px 0;
    color: #005caa;
    font-size: 16px;
    text-align: center;
    border-radius: 3rem;
    text-decoration: none;
    border: solid 1px #005caa;
	}
	
	.BaseBtn a:hover{
    background-color: #005caa;
    color: #fff;
    transition: .3s;
    }
    
	.MoreBtn a {
    display: block;
    width: 280px;
    margin: 25px auto 0 auto;
    padding: 8px 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 3rem;
    background-color: #fa0600;
    text-decoration: none;
    border: solid 1px #fa0600;
	}
	
	.MoreBtn a:hover{
    background-color: #fff;
    color: #fa0600;
    transition: .3s;
    }
    
    
#Page_Xmas {
width: 100%;
overflow: hidden;
}

#Page_Xmas .MdsH1 {
color: #fff;
letter-spacing: 0.1em;
}

#Page_Xmas .MdsH2 {
font-weight: normal;
text-align: center;
}

#Page_Xmas .Lead1 {
-moz-text-align: justify;
text-align: justify;
text-justify: distribute;
text-justify: inter-character;
}

#Page_Xmas .MoreBtn {
text-align: center;
}

#Page_Xmas .ShopInfo {
border-top: 1px solid #ababab;
padding-top: 20px;
}

#Page_Xmas .ShopInfo a {
color: #000;
text-decoration: underline;
}

#Page_Xmas .ShopLink {
color: #000;
text-decoration: underline;
}

.ListKomeS li {
position: relative;
}

.ListKomeS li:before {
display: inline-block;
position: absolute;
content: '※';
}

.ListKomeS li {
margin-bottom: 5px;
line-height: 1.8em;
}

.ListKomeS li:before {
left: 1px;
}

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

	.ListKomeS li {
	padding-left: 16px;
	font-size: 82%;
	}
	
	.ListKomeS li:before {
	top: 0;
	}
	
}

@media print, screen and (min-width: 768px) {

	.ListKomeS li {
	padding-left: 13px;
	font-size: 86%;
	}
	
	.ListKomeS li:before {
	top: 0;
	font-size: 86%;
	}
	
}


/* IE10以上 */
@media all and (-ms-high-contrast: none) {

	.Win .ListKomeS li:before {
	top: 1px;
	}

}

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

	#Page_Xmas .MdsH1 {
	margin: 60px 0 0 15px;
	font-size: 170%;
	font-weight: 700;
	}

	#Page_Xmas .MdsH2 {
	margin-bottom: 30px !important;
	font-size: 110%;
	font-weight: 400;
	line-height: 1.4em;
	}

	#Page_Xmas .MdsH2 span {
	display: block;
	margin-top: 30px;
	}

	#Page_Xmas .Lead1 {
	font-size: 93%;
	font-weight: 300;
/* 	font-feature-settings: 'palt'; */
	margin-bottom: 20px;
	}

	#Page_Xmas .Lead1 span {
	font-size: 110%;
	font-weight: 500;
	}

	#Page_Xmas .Lead2 {
	font-size: 80%;
	font-weight: 100;
	margin-bottom: 15px;
	}

	#Page_Xmas .Lead3 {
	font-size: 93%;
	font-weight: 300;
	margin-bottom: 15px;
	}

	#Page_Xmas .Lead3 span {
	font-size: 115%;
	font-weight: 700;
	}

	#Page_Xmas .Width1_SP {
	padding-right: 15px;
	padding-left: 15px;
	}

	#Page_Xmas .Width2_SP {
	width: 90%;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;
	}

	#Page_Xmas .Width3_SP {
	width: 100%;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;
	}

	#Page_Xmas .MoreBtn span {
	padding: 5px 40px;
	}

	#Page_Xmas .MTHumb {
	margin-top: 20px;
	}

	#Page_Xmas .MoreBtn span {
	display: inline-block;
	color: #fff;
	font-size: 80%;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 40px;
	background-color: #000;
	text-align: center;
	}

	#Page_Xmas .Copyright {
	font-size: 12px;
	font-weight: 100;
	text-align: center;
	margin-bottom: 20px;
	}

	#Page_Xmas .Logo {
	text-align: center;
	}

	#Page_Xmas .Logo img {
	width: 200px;
	margin: 25px 0;
	}

	.ContentMds {
	text-align: center;
	margin: 40px 0 20px 0;
	}

	.ContentMds img {
	width:90%;
	}

	.LoveImg {
	text-align: center;
	margin: 20px 0;
	}

	.LoveImg img {
	width: 100%;
	}
	
	.LovePlace {
	font-size: 18px;
	font-weight: 600;
	}

	.LoveLead {
	font-size: 13px;
	font-weight: 400;
	}

	.ItemLead {
	font-size: 12px;
	font-weight: 400;
	}
	
}

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

	#Page_Xmas {
	padding-top: 20px;
	}

	#Page_Xmas .Width1 {
	margin: 0 auto;
	padding-right: 100px;
	padding-left: 100px;
	box-sizing: border-box;
	}

	#Page_Xmas .Width2,
	#Page_Xmas .Width3 {
	max-width: 1090px;
	margin: 0 auto;
	padding-right: 20px;
	padding-left: 20px;
	}

	#Page_Xmas .Width4 {
	max-width: 800px;
	margin: 0 auto;
	padding-right: 40px;
	padding-left: 40px;
	}

	#Page_Xmas .Lead1 {
	font-size: 14px;
	font-weight: 300;
/* 	font-feature-settings: 'palt'; */
	margin-bottom: 25px;
	}

	#Page_Xmas .Lead1 span {
	font-size: 86%;
	line-height: 1em;
	}

	#Page_Xmas .Lead2 {
	font-size: 90%;
	font-weight: 100;
	line-height: 1.8em;
	margin-bottom: 15px;
	}

	#Page_Xmas .Lead3 {
	font-size: 93%;
	font-weight: 300;
	margin-top: 15px;
	text-align: center;
	}

	#Page_Xmas .Lead3 span {
	font-size: 120%;
	font-weight: 700;
	}

	#Page_Xmas .MdsH1 {
	text-align: center;
	font-weight: 700;
	font-size: 270%;
	}

	#Page_Xmas .MdsH2 {
	margin: 25px 0 !important;
	font-size: 130%;
	font-weight: 400;
	line-height: 1.4em;
	}

	#Page_Xmas .MdsH2 span {
	display: block;
	margin-top: 30px;
	}

	#Page_Xmas .MoreBtn span {
	padding: 5px 40px;
	}

	#Page_Xmas .MTHumb {
	margin-top: 40px;
	}

	#Page_Xmas .MoreBtn span {
	display: inline-block;
	color: #fff;
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 0.1em;
	border-radius: 40px;
	background-color: #000;
	text-align: center;
	}

	#Page_Xmas .Copyright {
	font-size: 12px;
	font-weight: 100;
	text-align: center;
	margin-bottom: 20px;
	}

	#Page_Xmas .Logo {
	text-align: center;
	}

	#Page_Xmas .Logo img {
	width: 300px;
	margin-bottom: 30px;
	}

	.ContentMds {
	text-align: center;
	margin: 50px 0 25px 0;
	}

	.ContentMds img {
	width: 650px;
	}

	.LoveImg {
	text-align: center;
	margin: 20px 0;
	}

	.LoveImg img {
	width: 650px;
	}
	
	.LovePlace {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	}

	.LoveLead {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	}

	.ItemLead {
	font-size: 16px;
	font-weight: 400px:
	}

}

@media print, screen and (min-width: 1090px) {

	#Page_Xmas {
	padding-top: 50px;
	}
	
	#Page_Xmas .Width1 {
	width: 960px;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;
	}
	
	#Page_Xmas .Width2 {
	width: 800px;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;	
	}

	#Page_Xmas .Width3 {
	width: 960px;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;
	}

	#Page_Xmas .Lead1 {
	font-size: 16px;
	font-weight: 300;
/* 	font-feature-settings: 'palt'; */
	margin-bottom: 25px;
	}

	.ContentMds {
	text-align: center;
	margin: 60px 0 0 0;
	}

	.ContentMds img {
	width: 850px;
	}

	.LoveImg img {
	width: 850px
	}

	.LoveLead {
	font-size: 18px;
	}

}




/* フッターメニュー --------------------------------------------------- */

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

	.BtnToHome {
	text-align: center;
	margin: 40px 0 20px 0;
	}

	.BtnToHome img {
	width: 200px;
	}
	
}

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

	.BtnToHome {
	text-align: center;
	margin-top: 50px;
	}
	
	.BtnToHome img {
	width: 230px;
	}

}

@media print, screen and (min-width: 1024px) {


}




/* フロアーナビ --------------------------------------------------- */

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

	nav.SubNavFloor {
	margin: 20px 0;
	}

	nav.SubNavFloor ul {
	font-size: 13px;
	text-align: center;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid #e73c10;
	border-left: 1px solid #e73c10;
	}
 
	nav.SubNavFloor ul li {
	float: left;
	width: 16.6%;
	border-right: 1px solid #e73c10;
	border-bottom: 1px solid #e73c10;
	box-sizing: border-box;
	background-color: #fff;
	}

	nav.SubNavFloor ul li.None {
	color: #d5d5d5;
	padding: 10px 0;
	}

	nav.SubNavFloor ul li:nth-child(6n) {
	width: 17%;
	}
 
	nav.SubNavFloor ul li a {
	color: #e73c10;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 0;
	display: block;
	}

	nav.SubNavFloor ul .FntSm {
	font-size: 16px !important;
	line-height: 1.2em !important;
	}
	
}

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

	nav.SubNavFloor {
	width: 100%;
	margin: 0 auto 50px auto;
	padding-top: 50px;
	}

	nav.SubNavFloor ul {
	font-size: 12px;
	text-align: center;
	width: 100%;
	overflow: hidden;
	}
 
	nav.SubNavFloor ul li {
	float: left;
	width: 7.9%;
	margin-right: 0.5%;
	margin-bottom: 6px;
	border: 1px solid #e73c10;
	box-sizing: border-box;
	background-color: #fff;
	}

	nav.SubNavFloor ul li.None {
	border: 1px solid #d5d5d5;
	color: #d5d5d5;
	padding: 10px 0;
	}
 
	nav.SubNavFloor ul li:nth-child(12n){
	width: 7.6%;
	margin-right: 0 !important;
	}
 
	nav.SubNavFloor ul li a {
	color: #e73c10;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 0;
	display: block;
	}

}

@media print, screen and (min-width: 1024px) {

	nav.SubNavFloor ul {
	font-size: 14px;
	}

}





/* 表組（新春スペシャル） --------------------------------------------------- */


.table_design08 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}
.table_design08 th, .table_design08 td{
  border: 1px solid #ccc;
  padding: 1em;
}
.table_design08 thead th {
  background-color: #464646;
  color: #fff;
  border: 2px solid #464646;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.table_design08 thead th:last-of-type {
  border-right: 2px solid #464646;
}
.table_design08 tbody th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: center;
}
.table_design08 .Shop {
  text-align: left;
}
.table_design08 .Plan {
  text-align: left;
}
.table_design08 .PlanTxt {
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .table_design08 {
  text-align: left;
  }
  .table_design08 thead {
  display:none;
  }
  .table_design08 th, .table_design08 td {
  display: block;
  border: 0;
  padding: 0.6em;
  }
  .table_design08 td::before{
  content: attr(data-label);
  display: none;
  }
  .table_design08 .Shop {
  width: 100% !important;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  background-color: #ffebe6;
  }
  .table_design08 .Plan {
  width: 100% !important;
  text-align: left;
  margin-bottom: 15px;
  }
}



/* 表組 --------------------------------------------------- */


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

	.EachFloor  {
	margin-bottom: 30px;
	}

	.EachFloor h4 {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
	}

	.MainMds {
    background-color: #006ab6;
    color: #fff;
    font-size: 18px;
    padding: 5px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
	}
	
/*
	th {
	background: #464646;
	border: solid 1px #ccc;
	color: #fff;
	font-size: 10px;
	padding: 15px 0 0 0;
	}
	
	td {
	border: solid 1px #ccc;
	padding: 13px 0 0 0;
	text-align: center;
	}
	
	.tbl-r03 {
	width: 100%;
	margin-bottom: 20px;
	font-size: 12px;
	}

	.tbl-r03 tr {
	display: block;
	float: left;
	}

	.tbl-r03 tr th {
    border-left: none;
    display: block;
    height: 50px;
	}
	
	.tbl-r03 tr td {
    border-left: none;
    display: block;
    min-height: 50px;
	}

	.tbl-r03 thead {
    display: block;
    float: left;
    width: 30%;
	}

	.tbl-r03 thead tr {
	width: 100%;
	}
	
	.tbl-r03 tbody {
    display: block;
    float: left;
    width: 70%;
	}

	.tbl-r03 tbody tr {
	width: 100%;
	}

	.tbl-r03 tr td + td {
	border-left: none;
	}

	.tbl-r03 tbody td:last-child {
	border-bottom: solid 1px #ccc;
	}

	td.shop_name {
	color: #000;
	text-align: center;
	}

	td.shop_tel {
	text-align: center;
	}

	td.shop_date {
	text-align: center;
	}

    td.shop_dateB {
	text-align: center;
	padding-top: 5px;
	line-height: 1.5em;
    }

	td.shop_dateNo {
	text-align: center;
	}

	td.shop_normal {
	text-align: center;
	}

	td.shop_limited {
	text-align: center;
	}

	td.shop_open {
	text-align: center;
	}

	td.shop_choose {
	text-align: center;
	}

	td.shop_web {
	text-align: center;
	}

	td.shop_web img{
	width: 60px;
	}

	.tbl-r03 th.spnon {
	display: none;
	}
	
	.tbl-r03 td.spnon {
	display: none;
	}

	.LinkBtn {
	text-align: center;
	margin: 10px 0 5px 0;
	}
	
	.LinkBtn span {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 40px;
	background-color: #000;
	text-align: center;
	padding: 5px 50px;
	}
*/

}

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

	.EachFloor {
	width: 100%;
	margin-bottom: 30px;
	}

	.EachFloor :not(.YoyakuTableFirst) thead {
	display: none;
	}

	.EachFloor h4 {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
	}

	.MainMds {
    background-color: #006ab6;
    color: #fff;
    font-size: 18px;
    padding: 5px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
	}
	
/*
	table {
	width: 100%;
	font-size: 12px;
	border-collapse: collapse;
	}
	
	th {
	background: #464646;
	border: solid 1px #ccc;
	color: #fff;
	font-size: 10px;
	padding: 10px;
	}

	td {
	border: solid 1px #ccc;
	padding: 10px;
	}

	td.shop_name {
	width: 25%;
	color: #000;
	text-align: left;
	}

	td.shop_tel {
	width: 20%;
	text-align: center;
	}

	td.shop_date {
	width: 20%;
	text-align: center;
	}

	td.shop_dateB {
	width: 20%;
	text-align: center;
	}

	td.shop_dateNo {
	width: 20%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_normal {
	width: 10%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_limited {
	width: 10%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_open {
	width: 9%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_choose {
	width: 9%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_web {
	width: 15%;
	text-align: center;
	font-size: 16px;
	}

	td.shop_web img{
	width: 45px;
	}

	td.shop_txt {
	width: 60%;
	font-size: 13px;
	}

	.LinkBtn {
	text-align: center;
	margin-bottom: 20px;
	}
	
	.LinkBtn span {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 40px;
	background-color: #000;
	text-align: center;
	padding: 5px 50px;
	}
*/

}	

@media print, screen and (min-width: 1090px) {

	.MainMds {
    background-color: #006ab6;
    color: #fff;
    font-size: 24px;
    padding: 5px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
	}
	
/*
	td.shop_name {
	width: 25%;
	color: #000;
	text-align: left;
	}
	
	td.shop_tel {
	width: 20%;
	text-align: center;
	}

	td.shop_date {
	width: 20%;
	text-align: center;
	}

	td.shop_dateB {
	width: 20%;
	text-align: center;
	}

	td.shop_dateNo {
	width: 20%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_normal {
	width: 10%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_limited {
	width: 10%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_open {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_choose {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_web {
	width: 15%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_web img{
	width: 55px;
	}

	.LinkBtn {
	text-align: center;
	margin-bottom: 20px;
	}
	
	.LinkBtn span {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 40px;
	background-color: #000;
	text-align: center;
	padding: 5px 50px;
	}
*/
	
}


/*
@media screen and (max-width: 767px) {

	.EachFloor  {
	margin-bottom: 30px;
	}

	.EachFloor h4 {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
	}

	table {
	border-collapse: collapse;
	}

	.YoyakuTable { 
	display: table; 
	width: 100%;
	margin-bottom: 20px;
	}

	.YoyakuTable thead { 
	display: table-cell; 
	width: 25%;
	vertical-align: top;
	}

	.YoyakuTable tbody { 
	display: table-cell; 
	width: 100%;
	vertical-align: top;
	background: #fff;
	}

	.YoyakuTable th { 
	display: block;
	}

	.YoyakuTable td { 
	display: inline-block;
	width: 100%;
	}

	tr th {
	padding: 15px 8px;
	border-top: 1px solid #f0f0f0;
	font-size: 12px;
	line-height: 1.5em;
	text-align: center;
	color: #fff;
	background: #464646;
	}

	tr th:first-child {
	border-top: none;
	}

	tr td {
	padding: 15px 8px;
	border-top: 1px solid #c8c8c8;
	font-size: 12px;
	line-height: 1.5em;
	background: #fff;
	}

	tr td:first-child {
	border-top: none;
	}

	td.shop_name {
	color: #000;
	text-align: center;
	}

	td.shop_yoyaku {
	text-align: center;
	}

	td.shop_web {
	text-align: center;
	}

	td.shop_web img{
	width: 60px;
	}

	td.shop_date {
	text-align: center;
	}

	td.shop_dateNo {
	text-align: center;
	}

	td.shop_normal {
	text-align: center;
	}

	td.shop_limited {
	text-align: center;
	}

	td.shop_open {
	text-align: center;
	}

	td.shop_choose {
	text-align: center;
	}
	th.spnon {
	display: none;
	}
	td.spnon {
	display: none;
	}
	
}

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

	.EachFloor {
	width: 100%;
	margin-bottom: 30px;
	}

	.EachFloor :not(.YoyakuTableFirst) thead {
	display: none;
	}

	.EachFloor h4 {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
	}

	table {
	width: 100%;
	border-collapse: collapse;
	}

	tr th {
	padding: 6px 13px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: center;
	color: #fff;
	background: #464646;
	}

	tr th {
	border: 1px solid #f0f0f0;
	}

	tr td {
	padding: 13px;
	border: 1px solid #f0f0f0;
	font-size: 12px;
	color: #5e5d5d;
	}

	td.shop_name {
	width: 37%;
	color: #000;
	text-align: left;
	}

	td.shop_yoyaku {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_yoyaku a {
	color: #0000ff;
	text-decoration: underline;
	}

	td.shop_web {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_web img{
	width: 55px;
	}

	td.shop_date {
	width: 9%;
	text-align: center;
	}

	td.shop_dateNo {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_normal {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_limited {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_open {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

	td.shop_choose {
	width: 9%;
	text-align: center;
	font-size: 22px;
	}

}	

@media print, screen and (min-width: 1090px) {

	
}
*/






/* トップ --------------------------------------------------- */


#Page_Xmas.TopSection {
padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
	
	#Page_Xmas.TopSection .SectionMain {
	margin-top: 20px;
	}

	.KeyvisualSP {
	margin-bottom: 20px;
	}
	
	.KeyvisualPC {
	display: none;
	}

	.KeyvisualLovePC {
	display: none;
	}

	.MainLead {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	margin: 20px auto;
	font-feature-settings: 'palt';
	}

	.Schedule {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	text-align: center;
	color: #fff;
	font-size: 20px;
	margin-bottom: 15px;
	}

/*
	.MainLeadLove {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	}

	.MainLeadLove span {
    display: block;
    margin: 15px auto 0 auto;
    padding: 6px;
    color: #000;
    font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
    text-align: center;
    border-radius: 1rem;
    text-decoration: none;
    border: solid 1px #000;
	}
*/

	#Page_Xmas .LinkBox {
	padding: 50px 0;
	margin: 80px auto;
	text-align: center;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	}

	#Page_Xmas .LinkBox img {
	width: 90%;
	filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.4));
	}
	
	#Page_Xmas .LinkBox .LinkLead {
	margin-top: 15px;
	color: #fff;
    font-size: 14px;
	font-weight: 300;
	}
	
	#Page_Xmas .LinkBox .ComingSoon {
	color: #fff;
    font-size: 24px;
	font-weight: 600;
	}

	#Page_Xmas .ContentBox {
	background-color: #fff;
	padding: 15px;
	margin-top: 20px;
	border: 1px solid;
	border-color: #dcdcdc;
	}

	#Page_Xmas .BoxDate {
    padding: 1em;
    border: double 5px #7c6d53;
    background-color: #000;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	margin-top: 15px;
	}

	#Page_Xmas .BoxDate span {
	font-size: 18px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
	}

	#Page_Xmas .FukuBox {
	margin-top: 25px;
	padding: 15px;
	font-weight: 300;
	line-height: 2.0em;
	border: solid 1px #000;
	}

	#Page_Xmas .FukuBox span {
	display: block;
	font-weight: 500;
	}
	
	#Page_Xmas .NoteBox {
	margin-top: 25px;
	padding: 15px;
	background-color: #f0f0e5;
	}

	#Page_Xmas .NoteBox .NoteMds {
	font-size: 16px;
	font-weight: 500;
	color: #ff0000;
	text-align: center;
	}

	#Page_Xmas .NoteBox .NoteLead {
	font-size: 13px;
	font-weight: 300;
/* 	font-feature-settings: 'palt'; */
    text-indent: -1em;
    padding-left: 1em;
	}

	#Page_Xmas .StartMds {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6em;
	color: #e03b15;
	text-align: center;
	font-feature-settings: 'palt';
	}

	#Page_Xmas .StartLead {
	margin-top: 5px;
	font-size: 14px;
	font-weight: 500;
	}

}

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

	#Page_Xmas.TopSection .SectionMain {
	margin-top: 20px;
	}
	
	.Keyvisual {
	margin-top: 30px;
	}
	
	.KeyvisualSP {
	display: none;
	}

	.KeyvisualPC {
	width: 100%;
	}
	
	.KeyvisualPC img {
	width: 700px;
	}

	.KeyvisualLovePC {
	width: 100%;
	}
	
	.KeyvisualLovePC img {
	width: 700px;
	}

	.MainLead {
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	font-feature-settings: 'palt';
	}

	.Schedule {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	text-align: center;
	color: #fff;
	font-size: 28px;
	margin-bottom: 20px;
	}
	
/*
	.MainLeadLove {
	margin-top: 20px;
	text-align: center;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	}

	.MainLeadLove span {
    display: block;
    width: 700px;
    margin: 15px auto 0 auto;
    padding: 5px 0;
    color: #000;
    font-size: 14px;
	font-weight: 300;
    text-align: center;
    border-radius: 3rem;
    text-decoration: none;
    border: solid 1px #000;
	}
*/

	#Page_Xmas .LinkBox {
	padding: 70px 0;
	margin: 120px auto;
	text-align: center;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	}

	#Page_Xmas .LinkBox img {
	width: 400px;
	filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.4));
	}

	#Page_Xmas .LinkBox .LinkLead {
	margin-top: 25px;
	color: #fff;
    font-size: 14px;
	font-weight: 300;
	}
	
	#Page_Xmas .LinkBox .ComingSoon {
	color: #fff;
    font-size: 30px;
	font-weight: 600;
	}

	#Page_Xmas .ContentBox {
	background-color: #fff;
	padding: 25px;
	margin: 40px 20px 0 20px;
	border: 1px solid;
	border-color: #dcdcdc;
	}

	#Page_Xmas .BoxDate {
    margin: 30px 20px 0 20px;
    padding: 1em;
    border: double 5px #7c6d53;
    background-color: #000;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	}

	#Page_Xmas .BoxDate span {
	font-size: 20px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
	}

	#Page_Xmas .FukuBox {
	margin-top: 30px;
	padding: 20px;
	font-weight: 300;
	line-height: 2.5em;
	border: solid 1px #000;
	}

	#Page_Xmas .FukuBox span {
	font-weight: 500;
	}
	
	#Page_Xmas .NoteBox {
	margin-top: 30px;
	padding: 20px;
	background-color: #f0f0e5;
	}

	#Page_Xmas .NoteBox .NoteMds {
	font-size: 16px;
	font-weight: 500;
	color: #ff0000;
	text-align: center;
	}

	#Page_Xmas .NoteBox .NoteLead {
	font-size: 13px;
	font-weight: 300;
    text-indent: -1em;
    padding-left: 1em;
	}

	#Page_Xmas .StartMds {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6em;
	color: #e03b15;
	text-align: center;
	font-feature-settings: 'palt';
	}

	#Page_Xmas .StartLead {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	}

}

@media print, screen and (min-width: 1090px) {

	#Page_Xmas .TopSection .SectionMain {
	margin-top: 10px;
	}

	.Keyvisual {
	padding: 0;
	text-align: center;
	}
	
	.KeyvisualSP {
	display: none;
	}

	.KeyvisualPC {
	width: 960px;
	}

	.KeyvisualLovePC {
	width: 960px;
	}

	.MainLead {
	text-align: center;
	color: #fff;
	font-size: 21px;
	font-weight: 600;
	font-feature-settings: 'palt';
	}

	.Schedule {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	text-align: center;
	color: #fff;
	font-size: 34px;
	margin-bottom: 20px;
	}

/*
	.MainLeadLove {
	margin-top: 20px;
	text-align: center;
	color: #000;
	font-size: 20px;
	font-weight: 600;
	}

	.MainLeadLove span {
    display: block;
    width: 830px;
    margin: 15px auto 0 auto;
    padding: 5px 0;
    color: #000;
    font-size: 16px;
	font-weight: 300;
    text-align: center;
    border-radius: 3rem;
    text-decoration: none;
    border: solid 1px #000;
	}
*/
	
	#Page_Xmas .ContentBox {
	background-color: #fff;
	padding: 25px;
	margin: 40px auto 0 auto;
	border: 1px solid;
	border-color: #dcdcdc;
	}
	
	#Page_Xmas .BoxDate {
    margin: 40px auto 0 auto;
    padding: 1em;
    border: double 5px #7c6d53;
    background-color: #000;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	}

	#Page_Xmas .BoxDate span {
	font-size: 20px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
	}

	#Page_Xmas .StartMds {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6em;
	color: #e03b15;
	text-align: center;
	font-feature-settings: 'palt';
	}

	#Page_Xmas .StartLead {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	}
	
}



/* コラボレーション --------------------------------------------------- */


/*
.CollaboSection {
padding-top: 0 !important;
}
*/

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

/*
	.CollaboSection .MainMds {
    background-color: #006ab6;
    color: #fff;
    font-size: 18px;
    padding: 5px;
    font-weight: 700;
    margin-top: 30px;
    text-align: center;
	}

	.CollaboSection .DateMds {
    color: #006ab6;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
	}

	.CollaboSection .PhotoA {
    text-align: center;
    margin-top: 20px;
	}

	.CollaboSection .PhotoA img {
    width: 100%;
    border: 1px solid #000;
	}
	
	.CollaboSection .LeadA {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6em;
    margin-top: 20px;
	}

	.CollaboSection .LeadA span {
	display: inline;
	color: #006ab6;
	font-size: 13px;
	font-weight: 700;
    line-height: 1.6em;
	background: linear-gradient(transparent 80% , #a8c3e1 80%);
	}

	.CollaboSection .LeadB {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    text-align: center;
    margin-top: 20px;
	}

	.CollaboSection .LeadC {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6em;
    margin-top: 20px;
	}

	.CollaboSection .LeadD {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6em;
    margin-top: 10px;
	}

	.CollaboSection .LeadD span {
	color: #006ab6;
    font-size: 14px;
    font-weight: 700;
	}

	.CollaboSection .FoodMenu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	
	.CollaboSection .FoodMenu .Photo {
	width: 100%;
	}

	.CollaboSection .FoodMenu .Photo img {
	width: 100%;
	margin: 20px 0 5px 0;
	}

	.CollaboSection .FoodMenu .FoodMds {
	display: inline;
	color: #006ab6;
	font-size: 14px;
	font-weight: 700;
	line-height: 2em;
	background: linear-gradient(transparent 70% , #a8c3e1 70%);
	}
	
	.CollaboSection .FoodMenu .FoodTxt {
	font-size: 13px;
	font-weight: 500;
	display: block;
	}

	.CollaboSection .FoodMenu .FoodTxt span {
	margin-top: 5px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.4em;
	display: block;
	}
*/

/*
	.Box {
	margin: 30px 0 0 0;
	padding: 25px;
	border: solid 1px #000;
	border-radius: 15px;
	}

	.CardMds {
    margin-bottom: 7px;
    font-family: Montserrat,sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	}

	.CardSubMds {
    margin-bottom: 7px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6rem;
	}

	.CardImg {
	margin: 20px 0;
	}
	
	.CardLead {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4rem;
	}

	.CollaMenu{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	
	.CollaMenu .Photo{
	width: 100%;
	}

	.CollaMenu .Photo img {
	border-radius: 10px;
	width: 100%;
	margin: 25px 0 7px 0;
	}

	.CollaShopNmae {
	color: #005caa;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	}

	.CollaLead {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.4rem;
	}

}

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

	.Box {
	margin: 30px 0 0 0;
	padding: 25px;
	border: solid 1px #000;
	border-radius: 15px;
	}

	.CardMds {
    margin-bottom: 7px;
    font-family: Montserrat,sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	}

	.CardSubMds {
	text-align: center;
    margin-bottom: 7px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6rem;
	}

	.CardImg {
	margin: 20px 0;
	}
	
	.CardLead {
	margin-top: 15px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4rem;
	}

	.CardShopName {
	margin-top: 30px;
	color: #e71c75;
	font-size: 18px;
	font-weight: 600;
	}
	
	.CollaMenu{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	
	.CollaMenu .Photo {
	width: 47%;
	}

	.CollaMenu .Photo img {
	border-radius: 10px;
	width: 100%;
	margin: 30px 0 10px 0;
	}

	.CollaShopNmae {
	color: #005caa;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6rem;
	}

	.CollaLead {
	margin-top: 5px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4rem;
	}

}

@media print, screen and (min-width: 1090px) {

	.CollaMenu .Photo {
	width: 30%;
	}

	.CollaShopNmae {
	font-size: 18px;
	}
		
}
*/






/* =LOVE福袋 --------------------------------------------------- */

/*
@media screen and (max-width: 767px) {

	.FukuImg {
	text-align: center;
	margin: 20px 0;
	}

	.FukuImg img {
	width: 100%;
	}

}

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

	.FukuImg {
	text-align: center;
	margin: 20px 0;
	}

	.FukuImg img {
	width: 400px;
	}
	
}

@media print, screen and (min-width: 1090px) {


}
*/



/* ステッカー --------------------------------------------------- */

/*
@media screen and (max-width: 767px) {

	.StickerImg {
	text-align: center;
	margin: 20px auto;
	}

	.StickerImg img {
	width: 75%;
	border: 6px solid #fff;
	}

	.StickerList {
	margin: 30px 0;
	padding: 25px;
	background: #fff;
	}

	.StickerListMds {
    margin-bottom: 7px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;	
	}

	.StickerListLead {
	font-size: 14px;
	font-weight: 300;
	}
	
}

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

	.StickerImg {
	text-align: center;
	margin: 20px 0;
	}

	.StickerImg img {
	width: 300px;
	border: 10px solid #fff;
	}

	.StickerList {
	margin: 30px 0;
	padding: 25px;
	background: #fff;
	}

	.StickerListMds {
    margin-bottom: 7px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;	
	}

	.StickerListLead {
	font-size: 14px;
	font-weight: 300;
	}
		
}

@media print, screen and (min-width: 1090px) {


}
*/