.box001 {
    text-align:left;
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.box001 p {
    margin: 0; 
    padding: 0;
}

.box002 {
    padding: 0.2em 0.5em;
    margin: 2em 30px;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
    max-width: 800px;
}
.box002 p {
    margin: 1em 20px;
    font-size: 22px;
    font-weight: bold;
    color: #BC3A3A;
}




.photo001 {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative; /* 相対位置指定 */
}
.photo001 img {
	width: 100%;
	max-width: 300px;
}
.text {
	width: 100%;
	font-size: 150%;
	text-align: center;
	bottom: 4px;
	margin: 0;
	padding: 0;
	color: #fff;
	background: rgba(0,0,0,0.4); /* 帯の透明度 */
	position: absolute; /* 絶対位置指定 */
}

/* 文字の縁取り */
.text_decoration001 {
	font-size: 0.65em;
	color:#ffffff;
	text-shadow: 
		black 1px 1px 0, black -1px -1px 0,/*右下、左上*/
		black -1px 1px 0, black 1px -1px 0,/*右上、左下*/
		black 0px 1px 0, black  0-1px 0,/*右、左*/
		black -1px 0 0, black 1px 0 0;/*上、下*/
}

.text_decoration002 {
	color:#ffffff;
	font-size: 0.65em;
	text-shadow: 
		black 1px 1px 0, black -1px -1px 0,/*右下、左上*/
		black -1px 1px 0, black 1px -1px 0,/*右上、左下*/
		black 0px 1px 0, black  0-1px 0,/*右、左*/
		black -1px 0 0, black 1px 0 0;/*上、下*/
}

.text_decoration003 {
	color:#ffe8d1;
	font-size: 1.1em;
	text-shadow: 
		black 1px 1px 0, black -1px -1px 0,/*右下、左上*/
		black -1px 1px 0, black 1px -1px 0,/*右上、左下*/
		black 0px 1px 0, black  0-1px 0,/*右、左*/
		black -1px 0 0, black 1px 0 0;/*上、下*/
}

/*--------------------*/
/*****  地域選択  *****/
/*--------------------*/
/*   共通設定   */
.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	max-width: 1300px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
margin: 5px 1%;
max-width: 330px;
	max-height: 270px;
	width: 48%;

	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1.0;
}



.grid figure figcaption {
	padding: 2em;
	color: #fff;
	font-size: 1.5em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h3 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h3 span {
	font-weight: 800;
}

.grid figure h3,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}


/*------------------*/
/***** 地域選択 *****/
/*------------------*/

figure.area_select figcaption {
	text-align: right;
}

figure.area_select h3,
figure.area_select p {
	position: absolute;
	right: 20px;
	left: 20px;
	padding: 10px 0;

 
}


figure.area_select p {
	bottom: 30px;
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.area_select h3 {

	top: 0px;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.area_select:hover h3 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.area_select h3::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.area_select h3::after,
figure.area_select p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.area_select:hover h3::after,
figure.area_select:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


/*------------------------*/
/*****  市区町村選択  *****/
/*------------------------*/
/*   共通設定   */
.grid2 {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	max-width: 1400px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid2 figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 0%;
	min-width: 320px;
	max-width: 370px;
	max-height: 270px;
	width: 52%;
	background: #180614;
	text-align: center;
	cursor: pointer;
}

.grid2 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1.0;
}

.grid2 figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.5em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid2 figure figcaption::before,
.grid2 figure figcaption::after {
	pointer-events: none;
}

.grid2 figure figcaption,
.grid2 figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid2 figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid2 figure h3 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid2 figure h3 span {
	font-weight: 800;
}

.grid2 figure h3,
.grid2 figure p {
	margin: 0;
}

.grid2 figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/*----------------------*/
/***** 市区町村選択 *****/
/*----------------------*/

figure.area_select2 figcaption {
/*	text-align: right*/
text-align: center;
}

figure.area_select2 h3,
figure.area_select2 p {
	position: absolute;
	right: 5px;
	padding: 10px 0;
}


figure.area_select2 p {
/*	bottom: 30px;*/
	bottom: 10px
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.area_select2 h3 {
bottom: 50px
/*	top: 30px;*/
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,0px,0);
	transform: translate3d(0,-35px,0);
}

figure.area_select2:hover h3 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.area_select2 h3::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #ff6347;
	content: '';
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.area_select2 h3::after,
figure.area_select2 p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.area_select2:hover h3::after,
figure.area_select2:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*----------------------*/
/***** チェックポイント *****/
/*----------------------*/
.grid3{
	position: relative;
	margin: 0 auto;
	padding: 0em 0 0em;
	max-width: 1400px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid3 figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 0%;
	min-width: 320px;
	max-width: 370px;
	max-height: 270px;
	width: 52%;
	background: #2b2b2b;
	text-align: center;
	cursor: pointer;
}

.grid3 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1.0;
}

.grid3 figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.5em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid3 figure figcaption::before,
.grid3 figure figcaption::after {
	pointer-events: none;
}

.grid3 figure figcaption,
.grid3 figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid3 figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid3 figure h3 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid3 figure h3 span {
	font-weight: 800;
}

.grid3 figure h3,
.grid3 figure p {
	margin: 0;
}

.grid3 figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}


figure.area_select3 figcaption {
	text-align: right;
}

figure.area_select3 h3,
figure.area_select3 p {
	position: absolute;
	right: 15px;
	left: 15px;
	padding: 10px 0;
}


figure.area_select3 p {
	bottom: 30px;
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.area_select3 h3 {
	top: 30px;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.area_select3:hover h3 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.area_select3 h3::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	content: '';
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.area_select3 h3::after,
figure.area_select3 p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.area_select3:hover h3::after,
figure.area_select3:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/*------------------------*/
/***** レストラン選択 *****/
/*------------------------*/
/* restaurantクラス */
.restaurant {
  box-shadow: 0 0 3px #aaa;
}

.restaurant a {
	text-decoration: none;
}

.restaurant h1 {
	font-weight: normal;
	text-align: center;
	font-size: 0.9rem;
	padding: 0px 10px 10px 10px;
}

.restaurant p {
	padding: 10px 0 0 0;
}

.restaurant img {
	width: 100%;
	box-shadow: 0 0 0px #aaa;
}

aside {
  padding: 10px;
}

main {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0px 10px 10px 10px;
}

main div.restaurant {
  width: calc(33.3% - 10px);

  margin: 5px;
}


@media (max-width: 500px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }

  main div.restaurant {
    width: calc(50% - 10px);

    margin: 5px;
  }
}

/*----------------------*/
/***** 画像文字重ね合わせ *****/
/*----------------------*/
.float_word001 {
	position: relative;
}

.float_word001 p {
	position: absolute;
	top: 20%;
	left: 30%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	font-size:1.5em;
	font-weight: 400;
	color:#ffffff;
}

.float_word001 img {
	width: 100%;
}

/* ボタン設定
------------------------------------------------------------*/
.shop_reward_btn {
	text-decoration: none;
	width: 500px;
	max-width: 80%;
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	margin: 30px 15px 30px 10px;;
	text-decoration: none;
	color: #FFF;
	background: #fd9535;/*色*/
	border-radius: 4px;/*角の丸み*/
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	font-weight: bold;
	font-size: 1em;
	border: solid 2px #d27d00;/*線色*/
}

.shop_reward_btn:active {/*押したとき*/
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}


/* add by jibiki 適当なcssへ
------------------------------------------------------------*/
.tsukushi {  
/*     letter-spacing: -0.1em;*/
     font-family: TsukushiAMaruGothic;
}
.tsukushiB {  
    font-family: TsukushiAMaruGothic;
text-shadow: 
		rgba(12, 12, 12, 0.3 ) 1px 1px 0, rgba(12, 12, 12, 0.3 ) -1px -1px 0,/*右下、左上*/
		rgba(12, 12, 12, 0.3 ) -1px 1px 0, rgba(12, 12, 12, 0.3 ) 1px -1px 0,/*右上、左下*/
		rgba(12, 12, 12, 0.3 ) 0px 1px 0, rgba(12, 12, 12, 0.3 )  0-1px 0,/*右、左*/
		rgba(12, 12, 12, 0.3 ) -1px 0 0, rgba(12, 12, 12, 0.3 ) 1px 0 0;/*上、下*/
	font-size: 0.9em;

}

.square_btn{
  display: inline-block;
  padding: 10px 1em;
  text-decoration: none;
  background: rgba(75,56,03,1);
/*  border-left: solid 6px #e6b422;;/*左線*/
  color: white;/*文字色*/
  font-weight: normal;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    font-family: TsukushiAMaruGothic;
    font-size: 1.4em;
    width:180px;
    height:60px;
    line-height: 40px;
}



.square_btn:hover {
    background: #755603;
    color: white;
    text-decoration: none;

}
.square_btn:active { 
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(20px);
    color: white;
    text-decoration: none;

}







.hero {
    font-size: 2rem;
    font-family: TsukushiAMaruGothic;
    letter-spacing: -0.2em; 
color:white;
/*  font-weight: bold; /*太字に*/
  font-weight: normal; /*太字に*/

}
.hero2 {
    font-size: 2rem;
    font-family: TsukushiAMaruGothic;
    letter-spacing: -0.4em; 
color:white;
  font-weight: normal; /*太字に*/

}

.hero3 {
    font-size: 2rem;
    font-family: TsukushiAMaruGothic;
    letter-spacing: -0.25em; 
  font-weight: normal; /*太字に*/

color:white;

}

.square_btn2{
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.8em 2em;
    text-decoration: none;
    color: white;
    background: #e6b422;
    font-family: TsukushiAMaruGothic;
    border-radius: 5px;
 /*   box-shadow: 0 0 50px gray;*/
    transition: .4s;
    letter-spacing: -0.2em;
  }

.square_btn2:hover {
    background: #755603;
    color: white;
    text-decoration: none;
}

.PlaceLetterOnImage {/*親div*/
  position: relative;/*相対配置*/
display:inline-block
  }

.PlaceLetterOnImage p {
  position: absolute;
  color: white;/*文字は白に*/
  font-weight: bold; /*太字に*/
  font-size: 8vw;
  font-family: TsukushiAMaruGothic;
  left:0%;
  bottom:40%;
width      : 100%;

text-shadow: 
    black 2px 0px 0px, black -2px 0px 0px,
    black 0px -2px 0px, black 0px 2px 0px,
    black 2px 2px 0px, black -2px 2px 0px,
    black 2px -2px 0px, black -2px -2px 0px,
    black 1px 2px 0px, black -1px 2px 0px,
    black 1px -2px 0px, black -1px -2px 0px,
    black 2px 1px 0px, black -2px 1px 0px,
    black 2px -1px 0px, black -2px -1px 0px,
    black 1px 1px 0px, black -1px 1px 0px,
    black 1px -1px 0px, black -1px -1px 0px;
  }

.PlaceLetterOnImageSmall {/*親div*/
  position: relative;/*相対配置*/
display:inline-block
  }

.PlaceLetterOnImageSmall p {
  position: absolute;
  color: white;/*文字は白に*/
  font-weight: bold; /*太字に*/
  font-family: TsukushiAMaruGothic;
  left:0%;
  bottom:50%;
width      : 100%;

text-shadow: 
    black 2px 0px 0px, black -2px 0px 0px,
    black 0px -2px 0px, black 0px 2px 0px,
    black 2px 2px 0px, black -2px 2px 0px,
    black 2px -2px 0px, black -2px -2px 0px,
    black 1px 2px 0px, black -1px 2px 0px,
    black 1px -2px 0px, black -1px -2px 0px,
    black 2px 1px 0px, black -2px 1px 0px,
    black 2px -1px 0px, black -2px -1px 0px,
    black 1px 1px 0px, black -1px 1px 0px,
    black 1px -1px 0px, black -1px -1px 0px;
	font-size: 2.5rem;

  }

.MenuTXTOnImage {/*親div*/
  position: relative;/*相対配置*/
  width      : 100%;
  }

.MenuTXTOnImage P{
  position: absolute;
word-wrap: break-word;
text-indent: 0em;
  color: #755603;
  font-size: 2.5rem;
  font-family: TsukushiAMaruGothic;
 left: 10%;
  TOP:13%;
line-height: 0.8em;
  }




.footer {
  margin-bottom: 60px;
}
.global-nav {

  position: fixed;
  left: 0;
  bottom: 0;
background: #866629;
  z-index: 2;
  color: white;/*文字は白に*/
  font-family: TsukushiAMaruGothic;
padding-bottom: env(safe-area-inset-bottom);
}
.nav-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  list-style: none;
  text-align: center;

}
.nav-item {
  display: table-cell;
  border: solid 1px #6f5436;
  padding: 4px 0px;

}
.nav-item a {
  text-decoration: none;
  color: white;/*文字は白に*/

}
.nav-item i {
  display: block;
  font-size: 24px;
}
.nav-item a span {
  display: block;
  font-size: 10px;
}

.nav-item2 {
  display: table-cell;
  border: solid 1px #e6b422;
  padding: 4px 0px;
    background: #e6b422;


}
.nav-item2 a {
  text-decoration: none;
  color: black;/*文字は白に*/

}
.nav-item2 i {
  display: block;
  font-size: 24px;
}
.nav-item2 a span {
  display: block;
  font-size: 10px;
}


.nav-item3 {
  display: table-cell;
  border: solid 1px #FFA500;
  padding: 4px 0px;
    background: #FFA500;


}
.nav-item3 a {
  text-decoration: none;
  color: black;/*文字は白に*/

}
.nav-item3 i {
  display: block;
  font-size: 24px;
}
.nav-item3 a span {
  display: block;
  font-size: 10px;
}
/*
@media screen and (min-width:769px) {
  .global-nav {
    display:none;
  }


}*/

#center_Box{
  width:85%;
  margin:auto;
}



.box_27 {
    position: relative;
    margin: 0.1em 0.0em;
    padding: 1.3em.1em 1em 1em;
    bottom: 29px;

  font-family: TsukushiAMaruGothic;
     background: rgba( 0, 88, 145, 1);
/*     background: #866629;*/
text-align: left;
color:white;
    font-size: 1.1em;
	line-height: 1.3em;

}

}
.box_27 p {
    margin: 0; 
    padding: 0;
}


.box_28 {
z-index:1;
    position: relative;
    margin: 0.1em 0em;
    padding: 1em.3em 1em 0.5em;
    top: -2px;

  font-family: TsukushiAMaruGothic;
/*      bakground: rgba( 0, 88, 145, 1);*/
    background: #866629;
text-align: left;
color:white;
    font-size: 1.1em;
	line-height: 1.3em;

}

}
.box_28 p {
    margin: 0; 
    padding: 0;

}

.box_4 {
    position: relative;
    margin: 2.0em 0.0em;
    padding: 0.5em 1em;
  font-family: TsukushiAMaruGothic;
     background: #fff0cd;
text-align: left;
color:#866629;

}
.box_4 .box-title {
    position: absolute;
    display: inline-block;
    top: -25px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 17px;
    background: #866629;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
  font-family: TsukushiAMaruGothic;

}
.box_4 p {
    margin: 0; 
    padding: 0;

}


/*hint*/
.hint_box {
    position: relative;/*相対配置*/
    padding: 1em 0.9em;
    margin: 2em 1em;
    background: #ffd700;
    color: black;
  font-family: TsukushiAMaruGothic;
    border-radius: 30px 30px 30px 29px;
}
.hint_box:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 73px;
border-style: solid;
border-width: 0 15px 20px 0;
border-color: transparent #ffd700 transparent transparent;
    width: 0;
    height: 0;

}
.hint_box p {
    margin: 0; 
    padding: 0;
}


.bg_image {/*親div*/
  position: relative;/*相対配置*/

   width      : 100%;
    height: 100%;
  }

.bg_image  p {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  top: 0;
  left: 0;
  }


.bg_image .sitename {
  z-index: 2;
  position: absolute;/*絶対配置*/
  font-family: TsukushiAMaruGothic;
  center:0px;
  bottom:15px;
padding-left : 0px ;
   width      : 100%;
    height: 10vw;
    line-height: 10vw;
    font-size: 6vw;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
     background: rgba(75,56,03,1);
    font-family: TsukushiAMaruGothic;
  }

/*stamp img */

.bg_image  stampimage1 {
  z-index: 4;
  position: absolute;
  right:8px;
  bottom:3px;
  width      : 100px;
  }


.bg_image  stampimage2 {
  z-index: 5;

  position: absolute;
  font-family: TsukushiAMaruGothic;
  right:65px;
  top:-8vw;
   width      : 15vw;
    height: 100px;
  }

.bg_image  point {
  z-index: 2;
  position: absolute;/*絶対配置*/

  font-family: TsukushiAMaruGothic;
  left:2em;
  bottom:83px;
   width      : 3em;
    height: 3em;
    line-height: 3em;
    font-size: 1em;
    text-decoration: none;
    display: block;
    text-align: center;
background: #ffd700;
border: solid 0.05em #FFA500;;/*線*/
box-shadow: 0 0 0 3px #FFA500;
-webkit-box-shadow: 0 0 0 3px #FFA500;;
-moz-box-shadow: 0 0 0 3px #FFA500;;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
   font-family: hcpmaru;
  }




/*自治体TOP　都道府県帯*/
.bg_image  obi1 {
  z-index: 2;
  position: absolute;/*絶対配置*/
  font-family: TsukushiAMaruGothic;
  left:0px;
  bottom:23vw;
padding-left : 10vw ;
   width      : 100%;
    height: 8vw;
    line-height: 100%;
    font-size: 6vw;
    text-decoration: none;
    display: block;
    text-align: left;
    color: white;
     background: rgba(12, 12, 12, 0.5 );
    font-family: TsukushiAMaruGothic;
  }
 
/*site detail obi*/

.bg_image  obi2 {
  z-index: 2;
  position: absolute;/*絶対配置*/
  font-family: TsukushiAMaruGothic;
  center:0px;
  bottom:70px;
padding-left : 0px ;
   width      : 100%;
    height: 10vw;
    line-height: 10vw;
    font-size: 2em;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
     background: rgba(75,56,03,0.2);
    font-family: TsukushiAMaruGothic;
  }

.bg_image  mikaihou {
  z-index: 20;
  position: absolute;/*絶対配置*/
  font-family: TsukushiAMaruGothic;
  center:0px;
  top:80px;
padding-left : 0px ;
   width      : 100%;
    height: 10vw;
    line-height: 10vw;
    font-size: 1.5em;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
     background: rgba(75,56,03,0);
    font-family: TsukushiAMaruGothic;
  }


.bg_image  img {
  width: 100%;
  }

/*自治体TOP看板*/
.kanban1 {/*親div*/
  position: relative;/*相対配置*/
    left: -18px;
  }


/*都道府県名*/
.kanban1 .box-title {
  z-index: 3;
    position: absolute;
  bottom:4.6em;
    left: 2.2em;
    text-decoration: none;
    display: inline-block;
    padding: 0px 14px;
    vertical-align: middle;
    font-size: 1em;
    background: rgba( 0, 88, 145, 1);
    color: white;
    border-radius: 3px;
border: solid 0.1em white;/*線*/
   font-family: hcpmaru;

}
/*自治体名*/

.kanban1 .name {
  z-index: 3;
  bottom:0em;
    left: 1em;
    position: absolute;
    color: rgba( 0, 88, 145, 1);
    padding: 0.4em 0.5em 0.1em;
    margin: 0px 0px 0px;
    height: 2.3em;
    font-size: 2.0em;
    text-decoration: none;
   font-family: hcpmaru;
border: double 0.15em rgba( 0, 88, 145, 1);/*線*/
    border-radius: 8px;/*角の丸み*/
    display: block;
    text-align: center;
background: white;
line-height:0.8em;
  }

/*店名*/

.kanban1 .shop-name {
  z-index: 3;
  bottom:0em;
    left: 1em;
    position: absolute;
    color: rgba( 0, 88, 145, 1);
    padding: 0.3em 0.5em 0.1em;
    margin: 0px 0px 0px;
    height: 2.3em;
    font-size: 2.0em;
    text-decoration: none;
   font-family: hcpmaru;
border: solid 0.1em white;/*線*/
    border-radius: 8px;/*角の丸み*/
    display: block;
    text-align: center;
background: rgba(75,56,03,1);
line-height:1em;
  }


/*場所名*/

.kanban1 .s_name {
  z-index: 3;
  bottom: 0em;
    left: 1.3em;
    position: absolute;
    color: rgba( 0, 88, 145, 1);
    padding: 0.5em 0.5em 0.1em;
    margin: 0px 0px 0px;
    height: 2.3em;
    font-size: 1.5rem;
    text-decoration: none;
   font-family: hcpmaru;
border: double 0.15em rgba(75,56,03,1);/*線*/
    border-radius: 8px;/*角の丸み*/
    display: block;
    text-align: center;
background: white;
line-height:1em;
  }


.kanban1  h1 {
    text-decoration: none;
   font-family: hcpmaru;
font-weight: normal;
  }

.kanban1  img {
  width: 100%;
  }

.kanban1  a {
  }

.nk-header-title.nk-header-title_full {
	height: 100%; padding-top: 0px; min-height: 200px;
}
.nk-header-title.nk-header-title_full .nk-header-table {
	height: 100%; min-height: 700px;
}


.select_title {
  z-index: 2;
  font-family: TsukushiAMaruGothic;
   width      : 100%;
    height: 10vw;
    line-height: 10vw;
    font-size: 6vw;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
     background: rgba(75,56,03,1);
    font-family: TsukushiAMaruGothic;
  }


/*font awesome*/

.fa {
  vertical-align: middle;
}
.fa-lg {
  vertical-align: middle;
}
.fa-2x {
  vertical-align: middle;
}
.fa-3x {
  vertical-align: middle;
}

.fa-rotate-45 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fab{font-size: 2rem;}

.fa-twitter {color: white;}
.fa-facebook {color: white;}

.fa-line {color: white;}

/*area box */



.area_btn{
  display: inline-block;
  padding: 1.8em 0em;
  margin:6px 1px;
  text-decoration: none;
  background: green;
    text-align: center;

/*  border-left: solid 6px #e6b422;;/*左線*/
  color: white;/*文字色*/
  font-weight: normal;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
font-family:GDhwGoJA;
    font-size: 1.3em;
width:48%;
height:100px;


}
.area_btn:active { 
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(20px);
    color: white;
}

.area_btn:hover {
    background: darkgreen;
    color: white;
    text-decoration: none;

}

/* area select grid */


.wrapper {
    display: grid;
 text-align: center;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 100px 100px 100px 100px 60px;
    font-size: 1.5em;
    width:100%;



font-family:GDhwGoJA;
}


.item0 {
 grid-column: 4/ 5;
    display: flex;
    align-items: center;
    justify-content: center;
border: solid 0.1em white;
    grid-row-start: 1;
    grid-row-end: 2;
    color: white;
 background: green;

}


.item1 {
 grid-column: 4/ 5;
    display: flex;
    align-items: center;
    justify-content: center;
border: solid 0.1em white;
    grid-row-start: 2;
    grid-row-end: 4;
    color: white;
}




.item2 {
 grid-column: 4/ 5;
    display: flex;
    align-items: center;
    justify-content: center;
border: solid 0.1em white;
    grid-row-start: 4;
    grid-row-end: 6;

}

.item3 {
    display: flex;
 grid-column: 3/ 4;
    grid-row-start: 2;
    grid-row-end: 4;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;
 background: green;

}

.item4 {
    display: flex;
 grid-column: 2/ 3;
    grid-row-start: 2;
    grid-row-end: 4;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;

}

.item5 {
    display: flex;
 grid-column: 1/ 2;
    grid-row-start: 2;
    grid-row-end: 3;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;
 background: green;

}

.item6 {
    display: flex;
 grid-column: 1/ 2;
    grid-row-start: 3;
    grid-row-end: 4;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;
 background: green;

}

.item7 {
    display: flex;
 grid-column: 1/ 2;
    grid-row-start: 4;
    grid-row-end: 5;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;
 background: green;

}
.item8 {
    display: flex;
 grid-column: 1/ 2;
    grid-row-start: 5;
    grid-row-end: 6;

    align-items: center;
    justify-content: center;
border: solid 0.1em white;
 background: green;

}



.area_btn2{ 
  width: 100%;
  height: 100%;
    text-decoration: none;
    text-align: center;
 background: green;
line-height:10px;
    padding: 75px 0.1em;


}
.area_btn2:active { 
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(20px);
    color: white;
}

.area_btn2:hover {
    background: darkgreen;
    color: white;
    text-decoration: none;
}


.pref_name {

    color: white;
    height: 100px;
    font-size: 2em;
    text-decoration: none;
   font-family: hcpmaru;
border: double 0.2em white;/*線*/
    border-radius: 10px;/*角の丸み*/
    display: block;
    text-align: center;
background:  rgba( 0, 88, 145, 1);
line-height:20px;
    padding: 20px 0.5em 0.1em;

  }

.pref_name:active { 
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 1);
  transform: translateY(20px);
    color: white;
}

.pref_name:hover {
    background: rgba( 0, 88, 145, 0.5);
    color: white;
    text-decoration: none;
}