/*!追加のCSS */

span.icon-menu-text{
	font-size:0.8rem;
	color:#FFFFFF;
}

p.book_title{
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px;
}
table.table_book_tab{
	width:100%;
	margin-bottom:10px;
}
table.table_book_tab td{
	padding: 0 15px;
}


.top_button_l{
	display:block;
	float:left;
	width:48%;
	background: #fff;
	border:2px solid rgb(238, 238, 238);
	border-radius:3px;
}
.top_button_r{
	display:block;
	float:right;
	width:48%;
	background: #fff;
	border:2px solid rgb(238, 238, 238);
	border-radius:3px;
}
.top_button_peatix{
	display:block;
	float:left;
	margin:10px 0;
	/*background: #ff9c1b;
	border:2px solid rgb(238, 238, 238);
	border-radius:3px;*/
}
#top_raitenyoyaku{
	width: 100%;
	background: #FF6200;
	border: 8px solid #fff;
	padding: 7px;
}
.itemBox{
	display:inline-block;
	position:relative;
	/*padding: 10px 0;*/
}
.itemBoxThumb{
	display:inline-block;
	max-width: 100%;
	max-height: 100%;
}
.itemBoxCaption{
	text-align:center;
	background-color: rgba(0, 137, 167, 0.6);
	color:#FFF;
	padding:10px;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity:0;
}
.itemBoxCaption2{
	text-align:center;
	background-color: rgba(152,99,71,0.6);
	color:#FFF;
	padding:10px;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity:0;
}
.itemBoxCaption:hover{
	opacity:1;
}

.event_ichiran{
    float: left;
    font-size: 1.5em;
    color: #fff;
    margin:10px 0 0 0;
    padding: 0 .5em;
	width: 100%;
    height: 90px;
    border-radius: 4px;
	background-image: url("../img_event/report001img.jpg");
	background-size:100%;
	background-position:center;
}
.event_ichiran:active{
text-decoration: none;
}
.event_text{
text-align: center;
margin-top: 30px;
	width: 100%;
	text-shadow: 2px 2px 3px #bdbdbd;
}

/*ここから 雪が落ちる仕様 ゆきゆき*/

section #sakura{
	width:100%;
	height:100%;
	top:0;
	left:0;
}
section .inner div {
    opacity: 0;
    -webkit-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    transform-origin: 0px 0px;
    -webkit-animation-name: Drop;
    animation-name: Drop;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#sakura .inner div {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: url("../img/snow002.png") no-repeat;
	background-size:40px 40px;
	/*background-size:auto;*/
	z-index:7777;
}
 
#sakura .inner div.flake2,
#sakura .inner div.flake4,
#sakura .inner div.flake6,
#sakura .inner div.flake8 {
    background-size: 30px 30px !important;
}

.flake1 {
    left: 10%;
    -webkit-animation-duration: 5.2s;
    animation-duration: 5.2s;
}
 
.flake2 {
    left: 20%;
    -webkit-animation-duration: 6.4s;
    animation-duration: 6.4s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
 
.flake3 {
    left: 30%;
    -webkit-animation-duration: 6.8s;
    animation-duration: 6.8s;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    background: url("../img/snow001.png") no-repeat !important;
	background-size: 40px 40px !important;
}
 
.flake4 {
    left: 40%;
    -webkit-animation-duration: 6.7s;
    animation-duration: 6.7s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
 
.flake5 {
    right: 50%;
    -webkit-animation-duration: 5.8s;
    animation-duration: 5.8s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
 
.flake6 {
    left: 60%;
    -webkit-animation-duration: 7.23s;
    animation-duration: 7.23s;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
 
.flake7 {
    left: 70%;
    -webkit-animation-duration: 5.4s;
    animation-duration: 5.4s;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    background: url("../img/snow003.png") no-repeat !important;
	background-size: 40px 40px !important;
}
 
.flake8 {
    left: 80%;
    -webkit-animation-duration: 6.8s;
    animation-duration: 6.8s;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}



@-webkit-keyframes Drop {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 0;
    }
 
    50% {
        -webkit-transform: translateY(220px);
        transform: translateY(220px);
        opacity: 1;
    }
 
    100% {
        -webkit-transform: translateY(480px);
        transform: translateY(480px);
        opacity: 0.3;
    }
}
 
@keyframes Drop {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 0;
    }
 
    50% {
        -webkit-transform: translateY(220px);
        transform: translateY(220px);
        opacity: 1;
    }
 
    100% {
        -webkit-transform: translateY(480px);
        transform: translateY(480px);
        opacity: 0.3;
    }
}

/*ここまで 雪が落ちる仕様 ゆきゆき*/






/*一部レスポンシブ対応*/
@media (min-width: 768px)
and (max-width: 1199px) {
	.middle_none{
	display: none;
	}
}
/*一部レスポンシブ対応ここまで*/


/*iPad対応*/
@media (min-width: 1091px) {
	#page_top{
	padding-top:82px;
}

}

@media (min-width: 768px)
and (max-width: 1090px) {
	#page_top{
	padding-top:105px;
}
.top_smart_banner{
width:100%;
margin:0 auto 15px;
}
}
/*iPad対応ここまで*/


@media (max-width: 767px) {
.event_pickup{
background: #fffaed;
padding: 15px;
text-align: center;
}
.event_pickup h3{
font-size: 18px;
}
.event_pickup img{
width: 100%;
}
.event_pickup p{
font-size: 15px;
text-decoration: none;
}
#information{
text-align: center;
padding: 0 15px;
line-height: 1.1;
}
#information span{
font-size: 10px;
}
.top_smart_banner{
width:100%;
margin:0 auto 15px;
}

.text-center {
  /*margin-bottom:80px;*/
  text-align: center;
}

.hawaii_banner{
	width:100%;
}
.hawaii_text{
	font-size:12px;
}

.smt_fixed{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9980;
}
}
span.address_dd{
	color:#666;
}

.hover_white {
  -webkit-transition: all 0.8s ease;
     -moz-transition: all 0.8s ease;
       -o-transition: all 0.8s ease;
      -ms-transition: all 0.8s ease;
          transition: all 0.8s ease;
}

.hover_white:hover{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	/*background:none!important;*/
	/*background:url(../img_test/his_omotesando300px.png);
	/*border-radius: 50%;*/

}

.hover_black {
  -webkit-transition: all 0.6s ease;
     -moz-transition: all 0.6s ease;
       -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
          transition: all 0.6s ease;
}

.hover_black:hover{
	opacity:0.6;
	filter:alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}


.calendar{
	width:100%;
	padding:10px 0 0 0;
	margin:0 auto;
}
.calendar table{
	width:100%;
	/*border:1px solid #ccc;*/
}
.calendar table th{
	text-align:center;
	border:1px dotted #ccc;
	width:14%;
	vertical-align:top;
	background-color:#FFFCF0;
}
.calendar table td{
	text-align:center;
	border:1px dotted #ccc;
	width:14%;
	vertical-align:top;
}
.sunday{
	color:#FF0004;
}
.saturday{
	color:#002CFF;
}



/*CONCEPT、access_top*/
@media (min-width: 768px) {
div.concept_top,
div.access_top,
div.title_top {
    width: 950px;
    margin: 0 auto 40px auto;
    text-align: center;
    border-bottom: 1px solid #493C37;
}

div.title_top_smt{
	display:none;
}
div.concept_mid{
	width:1170px;
	margin:0 auto;
	text-align:center;
}
div.access_mid{
	width:950px;
	margin:0 auto;
	text-align:center;
}
div.access_pc{
}
div.access_sp{
	display:none;
}
.pc_none{
	display:none;
}
}

@media (max-width: 767px) {
/**電話番号表示SMP**/
.con_tel{
    color: #915c40;
	}
	.con_tel0{
	font-size: 14px;
    font-weight: 700;
	}
	.con_tel1{
	font-size: 26px;
    font-weight: 700;
	}
	.con_tel2{
	font-size: 10px;
	}
	.con_tel_img{
    width: 70px;
    border-radius: 50%;
    background: #fdf6e3;
    padding: 10px;
    margin-right: 15px;
}
a.reservebox{
    display: block;
	text-align:center;
    margin: 20px 5px 0;
    border-radius: 3px;
    color: #fff;
    background: #d0895a;
    padding: 10px;
}
/**電話番号表示SMPここまで**/

div.concept_top,
div.access_top,
div.title_top{
	display:none;
}

div.title_top_smt{
	text-align: center;
	font-size: 22px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgb(108, 51, 12);
	/*color: rgb(108, 51, 12);*/
}
div.concept_mid{
	width:95%;
	margin:0 auto;
	text-align:center;
}
div.access_mid{
	width:95%;
	margin:0 auto;
	text-align:center;
}
div.access_pc{
	display:none;
}
div.access_sp{
	display:none;
}
}

@media (min-width: 768px) {
/**電話番号表示PC**/
	.con_tel{
	color: #915c40;
	text-align: center;
	}
	.con_tel0{
	font-size: 16px;
	font-weight: 700;
	}
	.con_tel1{
	font-size: 33px;
	font-weight: 700;
	}
	.con_tel2{
	font-size: 12px;
	}
	.con_tel_img{
    width: 80px;
    border-radius: 50%;
    background: #fdf6e3;
    padding: 10px;
    margin-right: 20px;
}
	a.reservebox{
    display: none;
}
/**電話番号表示PCここまで**/

.top_smart_banner{
margin:0 auto 25px;
}
.hawaii_banner{
	width:300px;
}

.navfix{
	position: fixed;
	width: 100%;
	z-index: 99;
}

div.access_center{
	display:block;
	margin:10px auto;
	width:700px;
}
div.access_left{
	float:left;
	display:block;
	width:300px;
	margin-bottom: 8px;
}
div.access_right{
	float:right;
	padding: 13px 13px 0 20px;
	font-size:14px;
	text-align:left;
}
.img-concierge:hover{
	opacity:0.6;
	filter:alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
.top_event_pc_anchor{
	display:block;
	width:200px;
	text-align:center;
	text-decoration:none;
	background:#6f3d1c;
	padding:5px;
	border-radius:3px;
	color:#fff;
	margin:2px 2px 2px auto;
}
.top_event_pc_anchor:hover{
	color:#fff;
}
}

/*SNS右上表示 PC版*/
@media (min-width: 768px) {
.pagesidemenubox {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 145px;
    right: 0px;
    z-index: 11;
    width: 40px;
    height: 240px;
    -webkit-transform: translateZ(0);
}
ul.pagesidemenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    top: 0px;
    position: absolute;
    right: 0px;
    z-index: 11;
    width: 40px;
    -webkit-transform: translateZ(0);
}
ul.pagesidemenu li a:hover + .txts {
    opacity: 1;
}
ul.pagesidemenu li {
    margin: 0 0 15px 0;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
}
ul.pagesidemenu li a + .txts {
    position: absolute;
    left: -165px;
    top: 3px;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: .3s ease-in-out;
    background: url(../img/sideback.png) no-repeat;
    height: 32px;
    width: 160px;
    text-align: center;
    line-height: 32px;
    padding-right: 15px;
}

}

/*SNS下表示 スマホ版*/
@media (max-width: 767px) {
.pagesidemenubox {
    position: fixed;
    bottom: 0px;
    z-index: 11;
    background: rgba(235,209,182,0.8);
    border-top: 1px dotted #f5e5cd;
    width: 100%;
    height: 60px;
}
ul.pagesidemenu {
    list-style-type: none;
    display: block;
    width: 272px;
    padding: 0;
    margin: 0 auto;
    z-index: 11;
}
ul.pagesidemenu li a:hover + .txts {
    opacity: 1;
}
ul.pagesidemenu li {
	float:left;
    padding: 10px 5%;
}
ul.pagesidemenu li a + .txts {
    position: absolute;
    left: -165px;
    top: 3px;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: .3s ease-in-out;
    background: url(../img/sideback.png) no-repeat;
    height: 32px;
    width: 160px;
    text-align: center;
    line-height: 32px;
    padding-right: 15px;
}

}








@media (max-width: 767px) {
div.access_center{
	display:block;
	margin:0 auto 10px auto;
	padding:0 10px;
}
div.access_left{
	text-align:center;
}
div.access_left img{
	width:30%;
}
div.access_right{
	text-align:left;
}

.img_concierge_top{
	width:20%;
	border: none;
	margin:0;
	display:inline;
}
.img_concierge{
	width:100%;
	border: none;
	margin:0;
	display:inline;
}

#concept h3 img{
	width: 85%
}
}

@media (min-width: 768px) {

.event_pickup{
width: 910px;
background: #fffaed;
margin: 0 auto;
padding: 0;
text-align: center;
}
.event_pickup h3{
padding-top: 10px;
}
.event_pickup p{
font-size: 20px;
text-decoration: none;
}
#information{
text-align: center;
width: 690px;
margin: 5px auto;
}
.info_guide{
display: block;
font-weight: 700;
text-align: center;
margin: 0 auto;
width: 689px;
}
.sale_image{
	width:900px;
	margin-bottom:50px;
}
.campaign{
	width:800px;
	height:300px;
	position:relative;
	border-bottom:1px dotted #ccc;
	margin-bottom:10px;
}
.campaign_image{
	position:absolute;
	top:0;
	right:0;
	width:200px;
}
.campaign_text{
	width:600px;
	text-align:left;
	line-height:2.5;
	font-size:14px;
	position:absolute;
	top:0;
	left:0;
}
.campaign_ppp{
	font-size:22px;
	font-weight:700;
	text-shadow: 1px 1px 3px #E8E8E8;
}
#paris_link{
    display: block;
    width: 960px;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    border: 1px solid #B4D6EF;
    background-color: #F4F4F4;
    border-radius: 3px;
}

.h470{
	height:440px;
}
.h500{
	height:500px;
}
.h550{
	height:550px;
}
div.book_tab_index{
	width:100%;
	/*text-align:center;*/
}
img.book_tab{
	width:140px;
}
img.book_tab2{
	width:95px;
}
img.column_link{
	display:inline;
}
.img_concierge_top{
	width:105px;
}
.reservation_00{
	position:relative;
	width:910px;
	margin:0 auto 10px;
	height:220px;
}
.reservation_01{
	position:absolute;
	top:0;
	left:0px;
	width:450px;
}

.reservation_02{
	position:absolute;
	top:0;
	padding: 15px 20px;
	text-align: left;
	left:455px;
	width:450px;
}
.column_00{
	/*position:relative;
	width:950px;*/
	margin:0 auto;
}
.column_01{
	/*position:absolute;
	top:900px;
	left:455px;*/
	width:450px;
	margin:0 150px 0 auto;
}

.column_02{
	/*position:absolute;
	top:1096px;*/
	padding: 10px 0;
	text-align: left;
	/*left:455px;*/
	width:450px;
	margin:0 150px 0 auto;
}
.column_img{
}
.column_anchor{
    display: block;
    text-align: center;
    border: 2px solid #412100;
    color: #662B03;
    font-size: 20px;
    border-radius: 3px;
    background-color: #FFF7E5;
    padding: 15px;
    margin-top: 20px;
}
.column_anchor {
  -webkit-transition: all 0.6s ease;
     -moz-transition: all 0.6s ease;
       -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
          transition: all 0.6s ease;
}
a.column_anchor:hover{
    background-color: #c38341;
	text-decoration:none;
	color:#FFF;
}
.column_blog{
	width:1026px;
	padding:0;
}
.column_blog p{
	font-size: 24px;
	color: #a9724f;
	text-align:left;
}
.event_past{
    display: block;
    text-align: center;
    border: 1px solid #412100;
    color: #662B03;
    font-size: 20px;
    border-radius: 3px;
    background-color: #FFF7E5;
    padding: 15px;
}
.floor_anchor{
    display: block;
    width: 100%;
    text-align: center;
    color: #666;
    position: absolute;
    bottom: 30px;
    left: 0;
}
.floor_anchor_z{
    display: block;
    width: 80%;
    background: #444444;
    border-radius: 3px;
    padding: 5px;
    margin: 10px auto;
    color: #fff;
}
.floor_anchor_z:hover{
	color:#ccc;
	text-decoration:none;
}
.anchor_tel{
	font-size:16px;
}
.anchor_line{
	display:inline-block !important;
}
.reservation_button_pc{
	width: 950px;
    margin: 0 auto 20px auto;
    text-align: center;
}
.top_event_pc{
}
.reservation_button_sp,
.top_event_sp{
	display:none;
}
.reservation_anchor,
.top_event_sp_anchor{
	display:none;
}
#to-top{
	position:fixed;
	bottom:40px;
	right:40px;
	z-index: 900;
}
#to-top a{
	display:block;
	background:rgb(0, 137, 167);
	padding:12px;
}
.news{
	margin:10px 100px;
}
.news dl dt{
}
.news dl dd{
	margin-bottom: 18px;
}
.lumine_h4{
	border-bottom:2px solid #333;
	padding:5px;
}
.lumine_waku{
	width:700px;
	margin:0 auto;
	margin-bottom: 50px;
}
.theme_h3{
    margin-top: 40px;
    text-align: center;
    color: #3A5977;
    /* background: #BCE4FF; */
    padding: 10px;
    border-top: 8px dotted #9CC9F1;
    border-bottom: 8px dotted #9CC9F1;
}
.theme_h4t{
    border-left: 8px solid #FAA957;
    border-top: 8px solid #FD6770;
    border-right: 8px solid #3784F6;
    padding: 12px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}
.theme_h4{
    border-left: 8px solid #9CC9F1;
    border-top: 8px solid #0089FE;
    border-right: 8px solid #FFFFFF;
    padding: 12px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}
.theme_waku{
	width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 0 100px;
    border-right: 1px dotted #C2E6FF;
    border-left: 1px dotted #C2E6FF;
}
.ftl_waku{
	width: 900px;
    margin: 0 auto;
    padding: 5px 150px;
}
.theme2_h3{
    margin-top: 40px;
    text-align: center;
    color: #471d11;
    /* background: #BCE4FF; */
    padding: 10px;
    border-top: 8px dotted #ffba7c;
    border-bottom: 8px dotted #ffba7c;
}
.theme4_h3{
    margin-top: 40px;
    text-align: center;
    color: #471d11;
    padding: 10px;
    border-top: 8px dotted #ffb2aa;
    border-bottom: 8px dotted #ffb2aa;
}
.theme2_h4t{
    border-left: 8px solid #39b5ff;
    border-top: 8px solid #39b5ff;
    border-right: 8px solid #39b5ff;
    padding: 20px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}
.theme2_h4{
    border-left: 8px solid #ff9f3b;
    border-top: 8px solid #ff9f3b;
    border-right: 8px solid #ff9f3b;
    padding: 12px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}

.theme4_h4t{
	background-color:#92d8e0;
	color:#383838;
    border-top: 5px dotted #ffffff;
    border-bottom: 5px dotted #ffffff;
    padding: 22px;
	font-size:24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
	text-align:center;
}
.theme4_h4fno{
    padding: 22px;
	font-size:24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
	text-align:center;
}
.theme2_waku{
	width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 0 100px;
    border-right: 1px dotted #C2E6FF;
    border-left: 1px dotted #C2E6FF;
}
.theme4_waku{
	width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 0 100px;
    border-right: 1px dotted #C2E6FF;
    border-left: 1px dotted #C2E6FF;
	background:#fff;
}
.theme3_h4{
    border-left: 8px solid #ff9f3b;
    border-top: 8px solid #ff9f3b;
    border-right: 8px solid #ff9f3b;
    padding: 12px;
	text-align:center;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}
.theme4_h4{
    border-left: 8px solid #ffb2aa;
    border-top: 8px solid #ffb2aa;
    border-right: 8px solid #ffb2aa;
    padding: 12px;
	text-align:center;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 0px;
}
p.date{
	font-size:15px;
	margin:10px 0 5px 0;
	font-weight:700;
}
p.fee{
	font-size:16px;
	font-weight:700;
}
.button_june{
    display: block;
	width:300px;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(to bottom, #359EF7  0%,#0089FE 100%);
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}
.button_july{
    display: block;
	width:300px;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(to bottom, #fdad5a 0%,#f5840e 100%);
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

.button_sept{
    display: block;
	width:300px;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
	font-weight:700;
    background:#05bbe0;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
	box-shadow:1px 2px #ccc;
}
.button_sept:hover{
	text-decoration:none;
	color:#fff;
	background:#fb7278;
}

.avanti_waku{
	background:#FFF7E5;
	padding:20px;
	margin:5px 0;
}
.lumine_img,
.mulga_img,
.theme_img{
	width:900px;
	margin:0 auto;
}
.theme4_img{
	width:900px;
	margin:82px auto 2px;
}
.mulga_img02{
	width:700px;
}
.attention{
	/*width: 1140px;
    border: 1px solid #ccc;
    margin:  auto;*/
    padding: 3px;
    /* background: #F7EBDE; */
    text-align: center;
    margin-top: 10px;
}


.compaign_main_title {
	display:block;
	color:#333333;
	text-decoration:none;
    width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0px;
    border: 5px solid #ff9b6f;
	background-image:url(../img/fit_the_local_img4.jpg);
    background-color: rgba(255,255,255,0.7);
    box-shadow: 0px 0px 5px #dadada;
}

.compaign_ftl_link:hover,
.fit_the_local_img:hover,
.compaign_main_title:hover {
  -webkit-transition: all 0.6s ease;
     -moz-transition: all 0.6s ease;
       -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
          transition: all 0.6s ease;
	text-decoration:none;
}


.compaign_main_title:hover{
	color:#222222;
	border: 5px solid #b16d4f;
	text-decoration:none;
	    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.compaign_ftl_link:hover,
.fit_the_local_img:hover{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.compaign_ftl_link:focus,
.fit_the_local_img:focus{
  text-decoration: none;
}
.compaign_ftl_link{
	display:block;
	color:#333333;
	text-decoration:none;
    width: 360px;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    border: 1px solid #cccccc;
    box-shadow: 0px 0px 5px #dadada;
}

.fc-ftl {
    color: #ff4d00!important;
	font-weight:700;
}
.ftl_date{
	font-size:20px;
}
.ftl_001{
	font-size:16px;
	font-weight:700;
}

.ftl_002{
	font-size:15px;
}
.ftl_003{
	font-size:16px;
	text-align:center;
	font-weight:700;
	width:500px;
	display:block;
	margin:0 auto;
}
.ftl_004{
	font-size:17px;
}
.floor_ppp{
	font-weight:700;
}
.yappari_italy img{
	width: 100%;
	margin: 29px 0 0;
	}

.yappari_italy p{
    padding: 10px;
    background: #fbfbf9;
    font-weight: 700;
    text-align: center;
	}
#concept h3 img{
	width: 60%
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.service-item {
  display: block;
  border: 3px solid #cce4f6; /* 薄めの青 */
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.05); /* ほんのり影 */
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
}

.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* 当店舗でできること*/
#service-grid-h2 {
    text-align: center;
    color: #525252;
    text-shadow: 1px 2px 3px #cde4f6;
}
.service-item p {
  position: relative;
  padding-bottom: 8px;
}

.service-item p::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #66bfff;
  margin: 6px auto 0;
}

.service-item img {
  background-color: rgba(102, 191, 255, 0.2);
  border-radius: 50%;
  padding: 10px;
}
.title_h3 {
  position: relative;
  line-height: 1.4;
  font-size: 3.5rem;
  text-shadow: 3px 3px 3px #ffd4c7;
  padding:0.25em 1em;
  display: inline-block;
}

.title_h3:before, .title_h3:after { 
  content:'';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}

.title_h3:before {
  border-left: solid 1px #ff5722;
  border-top: solid 1px #ff5722;
  top:0;
  left: 0;
}

.title_h3:after {
  border-right: solid 1px #ff5722;
  border-bottom: solid 1px #ff5722;
  bottom:0;
  right: 0;
}
}









/*スマホココから*/
@media (max-width: 767px) {
.sale_image,
.lumine_img,
.mulga_img,
.mulga_img02{
	width:100%;
	padding:10px;
}

.campaign{
	width:100%;
}
.campaign_image{
	width:60%;

}
.campaign_text{
	padding:15px;
	text-align:center;
	line-height:2.0;
	margin-bottom:50px;
}
.campaign p.campaign_ppp{
	font-weight:700;
	text-shadow: 1px 1px 3px #E8E8E8;
}
#paris_link{
	border:1px solid #ccc;
	background-color:#FFF;
	border-radius:3px;
}
div.book_tab_index{
	width:100%;
	text-align:center;
}
img.book_tab{
	width:28%;
}
img.book_tab2{
	width:100%;
}
img.column_link{
	width:35%;
}

.smt_none{
	display:none;
}
.smt_w25{
	width:25%;
}
.smt_w100{
	width:100%;
}
.smt_top_image{
	width:22%;
	float:left;
	display:block;
}
.reservation_00,
.column_00{
}
.reservation_01,
.column_01{
	width:100%;
	padding:0 15px;
}
.reservation_02,
.column_02{
	width:100%;
	text-align: left;
	padding:0 15px 10px;
}
.column_img{
	/*border-top: 1px solid #412100;*/
	padding-top:15px;
}
.column_anchor,
.event_past{
    display: block;
    text-align: center;
    border: 1px solid #412100;
    color: #662B03;
    font-size: 18px;
    border-radius: 3px;
    background-color: #FFF7E5;
    padding: 15px;
}
.column_anchor,
.event_past {
  -webkit-transition: all 0.6s ease;
     -moz-transition: all 0.6s ease;
       -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
          transition: all 0.6s ease;
}

.column_blog{
	display:none;
}
.floor_anchor{
    display: block;
    width: 100%;
    text-align: center;
    color: #666;
}
.floor_anchor_z{
    display: block;
    width: 80%;
    background: #444444;
    border-radius: 3px;
    padding: 5px;
    margin: 10px auto;
    color: #fff;
}
.floor_anchor_z:hover{
	color:#ccc;
	text-decoration:none;
}
.anchor_tel{
	font-size:16px;
}
.anchor_line{
	display:inline-block !important;
}

div.caption h3{
	text-align:center;
	font-weight:700;
	font-size:18px;
}
a.column_anchor,
a.event_past:hover{
    background-color: #c38341;
	text-decoration:none;
	color:#FFF;
}
.reservation_button_pc,
.top_event_pc{
	display:none;
}
.reservation_button_sp,
.top_event_sp{
	text-align:center;
	margin:2px 15px 35px 15px;
}
.reservation_anchor,
.top_event_sp_anchor{
	display:block;
	width:100%;
	text-align:center;
	border:1px solid #412100;
	color:  #662B03;
	font-size: 20px;
	border-radius:3px;
	background-color:#f5e5cd;
	padding:10px;
	margin-bottom:5px;
}
#to-top{
	position:fixed;
	bottom:10px;
	right:10px;
	z-index: 900;
}
#to-top a{
	display: block;
	background: #337ab7;
	padding:8px;
}
h3.top_hhh{
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight:700;
  color: #36373A;
}
.news{
}
.news dl dt{
}
.news dl dd{
	margin-bottom: 8px;
}

.lumine_h4{
	border-bottom:2px solid #333;
	padding:5px;
}
.lumine_waku{
	width:100%;
	padding:5px;
	margin-bottom: 30px;
}

.lumine_img,
.mulga_img,
.theme_img,
.theme4_img{
	width:100%;
}
.theme_h3{
	text-align:center;
	width:100%;
	font-weight: 700;
	font-size: 20px;
	padding:10px;
	color:#3A5977;
	border-top: 8px dotted #9CC9F1;
	border-bottom: 8px dotted #9CC9F1;
}
.theme_h4t{
    border-left: 8px solid #FAA957;
    border-top: 8px solid #FD6770;
    border-right: 8px solid #3784F6;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme_h4{
    border-left: 8px solid #9CC9F1;
    border-top: 8px solid #0089FE;
    border-right: 8px solid #9CC9F1;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme4_waku{
	background:#fff;
}
.theme2_h3{
	text-align:center;
	width:100%;
	font-weight: 700;
	font-size: 20px;
	padding:10px;
	color:#3A5977;
	border-top: 8px dotted #ffba7c;
	border-bottom: 8px dotted #ffba7c;
}
.theme4_h3{
	text-align:center;
	width:100%;
	font-weight: 700;
	font-size: 20px;
	padding:10px;
	color:#3A5977;
	border-top: 8px dotted #ffb2aa;
	border-bottom: 8px dotted #ffb2aa;
}
.theme2_h4t{
    border-left: 8px solid #39b5ff;
    border-top: 8px solid #39b5ff;
    border-right: 8px solid #39b5ff;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme2_h4{
    border-left: 8px solid #ff9f3b;
    border-top: 8px solid #ff9f3b;
    border-right: 8px solid #ff9f3b;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme3_h4{
    border-left: 8px solid #ff9f3b;
    border-top: 8px solid #ff9f3b;
    border-right: 8px solid #ff9f3b;
    padding: 12px;
	text-align:center;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}

.theme4_h4t{
	background-color:#92d8e0;
	color:#383838;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme4_h4fno{
	color:#4a4a4a;
	text-align:center;
    padding: 12px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}
.theme4_h4{
    border-left: 8px solid #ffb2aa;
    border-top: 8px solid #ffb2aa;
    border-right: 8px solid #ffb2aa;
    padding: 12px;
	text-align:center;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 0px;
}

.theme2_waku{

}
p.date{
	font-weight:700;
	margin:5px 0;
}
p.fee{
	font-weight:700;
}
.button_june{
    display: block;
	width:100%;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(to bottom, #359EF7  0%,#0089FE 100%);
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

.button_july{
    display: block;
	width:100%;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(to bottom, #fdad5a 0%,#f5840e 100%);
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}
.button_sept{
    display: block;
	width:100%;
    padding: 10px;
    margin: 0 auto;
    color: #fff;
	font-weight:700;
    background:#05bbe0;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

.attention{
	width:100%;
	padding:15px 15px 0px 15px;
	float:left;
}
.oshirase{
	display:block;
	float:left;
}


.compaign_main_title {
	display:block;
	color:#333333;
	text-decoration:none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0px;
    border: 5px solid #ff9b6f;
	background-image:url(../img/fit_the_local_img4.jpg);
    background-color: rgba(255,255,255,0.7);
    box-shadow: 0px 0px 5px #dadada;
}

.fit_the_local_img{
	display:block;
	width:80%;
	margin:10px auto;
}
.compaign_ftl_link{
	display:block;
	color:#333333;
	text-decoration:none;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    border: 1px solid #cccccc;
    box-shadow: 0px 0px 5px #dadada;
}

.fc-ftl {
    color: #ff4d00!important;
	font-weight:700;
}
.ftl_date{
	font-size:20px;
}
.ftl_001{
	font-size:16px;
	font-weight:700;
}

.ftl_002{
	font-size:15px;
}
.ftl_003{
	font-size:16px;
	text-align:center;
	font-weight:700;
	width:100%;
	display:block;
	margin:0 auto;
}
.ftl_004{
	font-size:17px;
}
.floor_ppp{
	text-align:center;
}
.flo_r{
	float:right;
}.yappari_italy img{
	width: 100%;
	margin: 10px 0 0;
	}

.yappari_italy p{
    padding: 5px;
    font-weight: 700;
    background: #fbfbf9;
    text-align: center;
	}

  /*.service-grid {
    grid-template-columns: repeat(2, 1fr);
  }*/
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
.service-item {
  border: 3px solid #cce4f6; /* 薄めの青 */
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.05); /* ほんのり影 */
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
}

.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.service-item p {
  position: relative;
  padding-bottom: 8px;
}

.service-item p::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #66bfff;
  margin: 6px auto 0;
}

.service-item img {
  background-color: rgba(102, 191, 255, 0.2);
  border-radius: 50%;
  padding: 10px;
}
	
.title_h3 {
  position: relative;
  line-height: 1.4;
  font-size: 2rem;
  text-shadow: 3px 3px 3px #ffd4c7;
  padding:0.25em 1em;
  display: inline-block;
}

.title_h3:before, .title_h3:after { 
  content:'';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}

.title_h3:before {
  border-left: solid 1px #ff5722;
  border-top: solid 1px #ff5722;
  top:0;
  left: 0;
}

.title_h3:after {
  border-right: solid 1px #ff5722;
  border-bottom: solid 1px #ff5722;
  bottom:0;
  right: 0;
}

}
/*スマホココまで*/




.link_box{
    position:relative;
}
 
a.link_box_ko{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-indent:-999px;
}
a.link_deco_no{
	text-decoration:none;
	color:#333;
}
a.to_book{
	display:block;
	border:1px solid #ccc;
	background:#FFFCF0;
	border-radius:3px;
	text-align:center;
	padding:20px;
	margin:0 auto;
	color:#5D5D5D;
}
a.anchor_red{
	color:#FF0004;
}

.floor_tel{
	font-size: 18px;
}
.floor_name{
	font-size: 11px;
}