
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

*{
	box-sizing: border-box;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

p{
	line-height: 1.6;
}

/* Flex styles -------------------------------------------------*/
header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

@media (min-width: 700px) {
 .leading {
    display: flex;
    align-items: center;
  }
}


/* Grid styles -------------------------------------------------*/
.link_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1fr));
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr;
}


/*IE10*/
@media all and (-ms-high-contrast:none) {
  .link_list{
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .link_list div {
    margin: 5px;
  }
}

/*IE11*/
@media all and (-ms-high-contrast:none) {
       *::-ms-backdrop,
    .link_list{
    margin-top: -5px;
    margin-bottom: -5px;
    }
    .link_list div {
        margin: 5px;
      }
}


.link_list div:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}
.link_list div:nth-child(2) {
  grid-column: 2;
  -ms-grid-column: 2;
  grid-row: 1;
  -ms-grid-row: 1;
}
.link_list div:nth-child(3) {
  grid-column: 3;
  -ms-grid-column: 3;
  grid-row: 1;
  -ms-grid-row: 1;
}


.half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr;
}


/*IE10*/
@media all and (-ms-high-contrast:none) {
  .half{
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .half article {
    margin: 5px;
  }
}

/*IE11*/
@media all and (-ms-high-contrast:none) {
       *::-ms-backdrop,
    .half{
    margin-top: -5px;
    margin-bottom: -5px;
    }
    .half article {
        margin: 5px;
      }
}


.half article:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}
.half article:nth-child(2) {
  grid-column: 2;
  -ms-grid-column: 2;
  grid-row: 1;
  -ms-grid-row: 1;
}


section.half{
	max-width: 1000px;
}



.bottom {
  display: grid;
  grid-template-columns:repeat( 1fr);
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr;
}


/*IE10*/
@media all and (-ms-high-contrast:none) {
  .bottom{
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .bottom div {
    margin: 5px;

  }
}

/*IE11*/
@media all and (-ms-high-contrast:none) {
       *::-ms-backdrop,
    .bottom{
    margin-top: -5px;
    margin-bottom: -5px;
    }
    .bottom div {
        margin: 5px;
      }
}


.bottom div:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}
.bottom div:nth-child(2) {
  grid-column: 2;
  -ms-grid-column: 2;
  grid-row: 1;
  -ms-grid-row: 1;
}






.single_photo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(900px, 1fr));
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr;
}


/*IE10*/
@media all and (-ms-high-contrast:none) {
  .single_photo{
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .single_photo article {
    margin: 5px;
  }
}

/*IE11*/
@media all and (-ms-high-contrast:none) {
       *::-ms-backdrop,
    .single_photo{
    margin-top: -5px;
    margin-bottom: -5px;
    }
    .single_photo article {
        margin: 5px;
      }


}

/*EDGE*/
@supports (-ms-ime-align:auto) {
    .single_photo{
    margin-top: -5px;
    margin-bottom: -5px;
    }
    .single_photo article {
        margin: 5px;
      }


}



.single_photo article:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}







/* Generic styles ----------------------------------------------*/


header {
  padding: 10px;
  font-size: 2em;
}

.logo {
width:150px;
}




.cards {
  max-width: 960px;
  margin: 0 auto 30px;
}




article {
  position: relative;
}

.main-img {
	height: 450px;
  max-width: 100%;
  object-fit: contain;
 font-family: 'object-fit: contain;';
}


.article-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
 font-family: 'object-fit: cover;';
}

.single_photo .article-img {
object-fit: contain;
font-family: 'object-fit: contain;';
height: 300px !important;
}


.article-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}















body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	color: #222;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}

img {border: 0;}

h1 {
	font-size: 1em;
	font-weight: normal;
	margin: 0;
	padding: 0;
}


h2 {
	font-size: 2em;
	font-weight: bold;
	color: #4eb3a3;
	margin:15px 0;
}

.main{
	max-width: 960px;
	margin: 0 auto;
}


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

table.default th{
	border:1px solid #888888;
	padding:2px 4px;
	background-color:#f5f5f5;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
	white-space: nowrap;
	line-height: 1.25em;
}


table.default th.menu {
	white-space:nowrap;
	border:1px solid #888888;
	padding:2px 4px;
	background-color:#ffd895;
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

table.default td{
	border:1px solid #888888;
	padding:2px 4px;
	vertical-align:top;
	line-height: 1.25em;
}

table.default td.menu {
	border:1px solid #888888;
	padding:2px 4px;
	vertical-align:top;
	background-color:#ffd895;
	line-height: 1.25em;
}


table.nobdr{
	border-collapse:collapse;
}

table.nobdr th{
	padding:2px 4px;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
	white-space: nowrap;
	line-height: 1.25em;
	color: #C60;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
table.nobdr td{
	padding:2px 4px;
	vertical-align:top;
	line-height: 1.25em;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

a:link {color: #00F;}
a:hover {
	color: #FF0099;
	text-decoration: underline;
}
.clear {
	clear: both;
	margin: 0;
	padding: 0;
}
.alignL {
	float: left;
}
.alignR {
	float: right;
}
.rightText {
	text-align: right;
}


.remarksText {
	font-size: 0.85em;
	line-height: 1.25em;
	font-weight: normal;
	color: #963;
}


.mapW {
	height: 300px;
	width: 100%;
	margin-top: 10px;
	border: 1px solid #999;
}




.kumoSeparator {
	clear: both;
	height: 40px;
	width: 100%;
}
.dotline {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666;
	padding-top: 10px;
}

.mainArticle {
	clear: both;
	padding-top: 10px;
}
h3 {
	font-size: 1.5em;
	font-weight: bold;
	color: #222;
	padding: 8px;
	border-left: 10px solid #4eb3a3;
	margin: 25px 0 15px 0;
}
h4 {
	font-size: 1.3em;
	font-weight: bold;
	color: #4eb3a3;
	padding: 8px;
	margin: 10px 0 15px 0;
}


.mainArticle ul {
	padding-left: 2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}


h5 {
	font-size: 1em;
	font-weight: bold;
	color: #4eb3a3;
	padding: 5px;
	margin: 0 0 5px 0;
	border-bottom: 1px solid #4eb3a3;
}

h6{
	font-weight: bold;
	margin: 10px;
}


#rank {
	padding: 4px;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	background-color: #CCC;
	height: 16px;
	text-align: center;
	font-size: 12px;
	color: #333;
}
.rankin {
	color: #FF0;
}



#wrapper {
	padding: 0;
	width: 100%;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}


#wrapper p {
	margin-bottom: 0.5em;
	margin-top: 0px;
}

#header {
	margin: 0;
	padding: 0;
}




#topPhoto {
	padding: 0;
	margin-right: 20px;
	float: left;
	width: 100%;
}


#topPhoto p{
	margin: 15px 5px;
}

#SocialService {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
	clear: both;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#SocialService ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#SocialService li {
	margin-top: 0;
	margin-right: 8px;
	margin-bottom: 0;
	margin-left: 0;
	float: left;
}
#SocialService li:nth-child(2) {
	margin-top: 5px;
}

#SocialService li:nth-child(3) {
	margin-top: 5px;
}


#coupon {
	background-color: #FDA;
	padding: 4px;
	clear: both;
	margin-bottom: 4px;
}
#hotelService {
	clear: both;
	margin-top: 8px;
}
#link {
	background-color: #333;
}
.yesAme {
	color: #36F;
}
.ichibuAme {
	color: #C90;
}
.nashiAme {
	color: #CCC;
}




#topTable {
	width:100%;
}

footer {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 8px;
	padding-top: 8px;
	text-align: center;
}
#navigation {
	background-color: #4eb3a3;
	clear: both;
	width: 100%;
	padding-top: 10px;
	background-image: url(../imageV2/back_navi.gif);
	padding-bottom: 20px;
}
#xmap {
	height: 500px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #900;
	clear: both;
}



.naviArticle {
	width: 100%;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}
.nabiBar {
	float: left;
	width: 190px;
	margin-left: 5px;
}
.naviTitle {
	width: 140px;
	background-color: #666;
	text-align: center;
	padding: 4px;
	color: #FFF;
	margin-bottom: 2px;
}
.naviArticle p {
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}

div.threebox {
	float: left;
	width: 250px;
	margin: 0 10px 15px 0;
}


.fb-like{
	margin-top: 0 !important;
}



section{
padding: 0;margin: 0;
}

section.cards {
	margin-bottom:5px;
}




.content_box{
	margin: 15px 10px;
}

p.text_s{
	font-size: 0.8em;
	line-height: 1.5;
	margin:0 10px;
}



.link_button{
position: fixed;
z-index: 2000000;
top:15px;
right: 25%;
}

.top_button1, .top_button2{
	float: left;
}

.top_button1 a{
	text-decoration:none;
	color: #fff;
	font-weight: bold;
	margin-right: 5px;
	font-size: 14px;
	background: #ff9900;padding: 30px;border-bottom-left-radius: 6px;border-bottom-right-radius: 6px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.top_button2 a{
	text-decoration:none;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	background: #ff0000;padding: 30px;border-bottom-left-radius: 6px;border-bottom-right-radius: 6px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.top_button1 a:hover, .top_button2 a:hover{
 opacity: 0.7;
}


.top_content{
	padding: 15px 0;
}



.slick-box article{
	margin: 0 2px;
}

.content_box p{
	margin: 10px 0;
	padding:15px;
	background:#f5f5f5;
}

.footer_in{
	max-width: 960px;
	margin: 0 auto;
	padding: 30px 0;
}

.footer_in p{
	font-size: 12px;
}


ul.mini_info{
	list-style-type: disc;
	margin-left: 25px;
}


.link_list{
	padding: 30px 5px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.link_list a{
	text-decoration: none;
	font-weight: bold;
}

.article-img3 {
  max-width: 100% ;
object-fit: contain;
font-family: 'object-fit: contain;'
}




@media (max-width: 769px) {
.logo {
width:100px;
height: auto;
}

h2{
	font-size: 1.5em;
}

h3{
	font-size:1.2em;
}

h4{
	font-size:1.1em;
}



.hamburger {
  right: 0.5em !important;

}
.page_top {
    right:0.5em;
}

.half {
  display: grid;
  grid-template-columns: repeat(1fr 1fr);
  grid-gap: 5px;
}


.link_button{
position: fixed;
top:0;
right: 15%;
}


.top_button1 a ,.top_button2 a{
	font-size: 12px;
	padding: 15px;
}


.main-img {
  width: 100%;
  height: auto;
}


.single_photo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr;
  -ms-grid-rows: 1fr;
}


.single_photo .article-img{
height: 250px !important;

}

.article-img {
  height: 250px;
object-fit: cover;
font-family: 'object-fit: cover;'
}

/* Grid styles -------------------------------------------------*/
.link_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1fr));
  grid-gap: 10px 0;
  display: -ms-grid;
  -ms-grid-columns: 1fr;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr 1fr 1fr;
}


.link_list div:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
  margin: 15px 0;
}
.link_list div:nth-child(2) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 2;
  -ms-grid-row: 2;
   margin: 15px 0;
}
.link_list div:nth-child(3) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 3;
  -ms-grid-row: 3;
  margin: 15px 0;
}


.half {
  display: grid;
  grid-template-columns:1fr;
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr 1fr;
}



.half article:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}
.half article:nth-child(2) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 2;
  -ms-grid-row: 2;
}



.bottom {
  display: grid;
  grid-template-columns:1fr;
  grid-gap: 10px;
  display: -ms-grid;
  -ms-grid-columns: 1fr;
  grid-gap: 10px;
  /*grid-auto-rows: minmax(250px, auto);*/
  -ms-grid-rows: 1fr 1fr;
}



.bottom div:nth-child(1) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  -ms-grid-row: 1;
}
.bottom div:nth-child(2) {
  grid-column: 1;
  -ms-grid-column: 1;
  grid-row: 2;
  -ms-grid-row: 2;
}


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

  .half article {
        margin:10px 5px;
  }

  .bottom div {
        margin:10px 5px;
  }

.link_list div{
        margin:15px 0;
  }


}

/*IE11*/
@media all and (-ms-high-contrast:none) {
       *::-ms-backdrop,

  .half article {
        margin:10px 5px;
  }

  .bottom div {
        margin:10px 5px;
  }

.link_list div{
        margin:15px 0;
  }

}


/*EDGE*/
@supports (-ms-ime-align:auto) {
  .half article {
        margin:10px 5px;
  }

  .bottom div {
        margin:10px 5px;
  }

.link_list div{
        margin:15px 0;
  }

}





}



nav , nav p a{
	color:#fff !important;
}

nav a:hover , nav p a:hover {
	color: #FF0099 !important;
}


/*.top_button2{
	display: none;
}*/