@charset "utf-8";
/* CSS Document */



/* ------------------------------------------
  トップページ
--------------------------------------------- */

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


/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){


}

/*============================
#top-menu
============================*/
ul#top-menu {
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 50px;
}
ul#top-menu li {
	float: left;
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 20px;
}
/* ------------------------ パソコン ------------------------ */
@media only screen and (min-width:768px){

	ul#top-menu li:nth-child(3n){
		margin-right: 0;
	}

}

ul#top-menu li a {
	display: block;
	padding: 20px;
	border: 3px solid #f08300;
	border-radius: 15px ;
	text-decoration: none;
}
ul#top-menu li a:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
ul#top-menu li a div {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #f08300;
	margin-bottom: 15px;
}
ul#top-menu li a div h2 {
	color: #f08300;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
}
ul#top-menu li a div h2 span {
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 5px;
}
ul#top-menu li a div img {
	width: 100px;
	height: auto;
	margin-left: 10px;
}

ul#top-menu li a p{
	color: #000000;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

ul#top-menu {
	margin-top: 15px;
	margin-bottom: 10px;
}
ul#top-menu li {
	width: 100%;
	margin-right: 0;
	margin-bottom: 20px;
}
ul#top-menu li a {
	padding: 15px;
	border: 3px solid #f08300;
	border-radius: 15px ;
}
ul#top-menu li a div {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #f08300;
	margin-bottom: 15px;
}
ul#top-menu li a div h2 {
	font-size: 16px;
}
ul#top-menu li a div img {
	width: 70px;
	margin-left: 20px;
}

}


/* -----------------------------------
    ボタン
   ----------------------------------- */
.container-btn {
	margin: 20px auto 50px;
	text-align: center;
}

a.button{
	margin-left: 10px;
	margin-right: 10px;
	padding: 0.75em 1.2em;
	text-align: left;
	color: #ffffff;
	background-color: #003399;
	border-radius: 15px;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	
}
a.button span{
	font-size: 25px;
	font-weight: bold;
	display: inline-block;
	margin-left: 20px;
	border: 1px solid #FFFFFF;
	border-radius: 0.3em;
	padding: 0 10px;
}
a.button:before{
  content: "";
  background-color: rgba(255, 255, 255, 0.75);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -6em;
  -webkit-transform: skewX(-45deg) translateX(0);
          transform: skewX(-45deg) translateX(0);
  transition: none;
}
a.button:hover{
	background-color: #f08300;
}
a.button:hover:before{
  -webkit-transform: skewX(-45deg) translateX(75em);
          transform: skewX(-45deg) translateX(75em);
  transition: all 0.85s ease-in-out;
}
/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

.container-btn {
	margin: 20px auto 0;
	text-align: center;
}

a.button{
	margin-left: 10px;
	margin-right: 10px;
	padding: 20px;
	text-align: left;
	color: #ffffff;
	background-color: #003399;
	border-radius: 15px;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
	display: block;
	justify-content: center;
	align-items: center;
	
}
a.button span{
	font-size: 18px;
	display: block;
	margin-left: 0;
	padding: 5px 10px;
	margin-top: 10px;
	text-align: center;
}
a.button:before{
  content: "";
  background-color: rgba(255, 255, 255, 0.75);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -10em;
  -webkit-transform: skewX(-45deg) translateX(0);
          transform: skewX(-45deg) translateX(0);
  transition: none;
}
a.button:hover:before{
  -webkit-transform: skewX(-45deg) translateX(55em);
          transform: skewX(-45deg) translateX(55em);
  transition: all 0.85s ease-in-out;
}

}



/*============================
#news
============================*/

#news ul {
  width:750px;
  margin: 0 auto ;
}
#news ul li {
	margin-bottom: 5px;
}
#news ul li a{
	display: block;
	overflow: hidden;
	margin-bottom: 10px;
}
#news ul li time {
  display: block;
  float: left;
  width: 19%;
	font-weight: bold;
	color: #000000;
}
#news ul li a h3{
  color: #003399;
	text-decoration: underline;
	overflow: hidden;
}
#news ul li a:hover h3 {
  text-decoration: none;
}


/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  /*============================
  #news
  ============================*/

  #news {
    padding: 10px 0 30px 0;
  }

  #news ul {
    width: 100%;
  }
  #news ul li{
    margin-bottom: 20px;
  }
  #news ul li time {
    width: 35%;
    margin-right: 5%;
  }
  #news ul li h3 {
    float: left;
    width: 60%;
  }

}

/*============================
#top-contact
============================*/
#top-contact {
	background-color: #f2f2f2;
	padding: 40px 0;
	text-align: center;
}
#top-contact h3 {
	font-size: 16px;
	font-weight: bold;
	color: #003399;
	margin-bottom: 10px;
}
#top-contact p {
	font-weight: bold;
}
#top-contact p a {
  color: #003399;
	text-decoration: underline;
	font-weight: bold;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){


}




/* ------------------------------------------
  下層ページ
--------------------------------------------- */

#contents-header {
  position: relative;
  height: 75%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#contents-header img {
  width: 130px;
  height: auto;
  position: absolute;
  top: 30px;
  right: 30px;
}

#contents-header.shimanami {background-image: url("https://gotoeat-yamaguchi.com/img/header-shimanami.jpg");}
#contents-header.sadamisaki {background-image: url("https://gotoeat-yamaguchi.com/img/header-sadamisaki.jpg");}
#contents-header.ishizuchi {background-image: url("https://gotoeat-yamaguchi.com/img/header-ishizuchi.jpg");}
#contents-header.karusuto {background-image: url("https://gotoeat-yamaguchi.com/img/header-karusuto.jpg");}
#contents-header.ehime {background-image: url("https://gotoeat-yamaguchi.com/img/header-ehime.jpg");}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

#contents-header {
  position: relative;
  height: 300px;
}

#contents-header img {
  width: 100px;
  top: 20px;
  right: 20px;
}

}

ul.news-list{
	border-top: 1px solid #cacadb;
}
ul.news-list li a{
	display: block;
	padding: 16px 10px;
	border-bottom: 1px solid #cacadb;
	overflow: hidden;
}
ul.news-list li time {
  display: block;
  float: left;
  width: 20%;
	color: #818181;
}
ul.news-list li h3 {
  color: #003399;
	text-decoration: underline;
	overflow: hidden;
}
ul.news-list li h3:hover {
  text-decoration: none;
}

#news-single{
	margin-bottom: 60px;
}

#news-single time {
	display: block;
	color: #7A7A7A;
	margin-bottom: 30px;
}
#news-single h2 {
	font-size:19px;
	font-weight:bold;
  border-bottom: 2px solid #26b6b8;
	margin-top: 30px;
  padding-bottom: 17px;
	margin-bottom: 25px;
}
#news-single h3 {
	font-size: 17px;
	font-weight: bold;
	color: #26b6b8;
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 5px solid #26b6b8;
}
#news-single h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 15px;
}
#news-single img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
#news-single p {
	margin-bottom: 20px;
}

#news-single table{
	width: 100%;
	margin: 15px auto 40px;
	border: 1px solid #26b6b8;
}
#news-single table th,
#news-single table td{
	padding: 5px 15px;
	border-bottom: 1px solid #26b6b8;
	border-right: 1px solid #26b6b8;
}
#news-single table th {
	/*-moz-text-align-last: justify;
	text-align-last: justify;
	text-justify: inter-ideograph;*/
	text-align:center;
	font-weight:bold;
	background-color: #26b6b8;
	border-bottom: 1px solid #ffffff;
	vertical-align: middle;
	color: #ffffff;
}
#news-single table tr:last-child th,
#news-single table tr:last-child td{
	border-bottom: none;
}
#news-single table th {white-space: nowrap;}
@media screen and (max-width:480px) {
#news-single table th,
#news-single table td{
	padding: 4px 5px;}
}

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

#news-single table img{
  max-width:  100%;
  height: auto;
}

}




/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

ul.news-list li time {
  width: 110px;
}

#news-single{
	margin-bottom: 30px;
}

#news-single h2 {
	font-size: 16px;
	margin-top: 30px;
  padding-bottom: 17px;
	margin-bottom: 25px;
}
#news-single h3 {
	font-size: 16px;
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 15px;
}
#news-single h4 {
	font-size: 15px;
	margin-top: 30px;
	margin-bottom: 15px;
}

}

.guide-movie {
	width: 500px;
	margin: 0 auto 10px auto;
}
.guide-movie div{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.guide-movie div iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

.guide-movie {
	width: 100%;
}

}

table.form{
	width:100%;
	margin-top:20px;
	border-collapse: collapse;
	margin-left:auto;
	margin-right:auto;
	border-top:1px dashed #D0D0D2;
	margin-bottom:40px;
}

table.form tr{
	margin-bottom: 10px;
}

table.form th{
	text-align:left;
	vertical-align:top;
	padding:20px;
	border-bottom:1px dashed #D0D0D2;
}

table.form th{
	width:330px;
}

table.form td{
	padding:20px;
	border-bottom:1px dashed #D0D0D2;
}

input , option , select , textarea{
	font-size: 15px;
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
}

table.form input[type="text"] ,table.form select , table.form input[type="email"] , table.form textarea{
	background-color: #FFF;
	border: 1px solid #CCC;
	line-height: 140%;
	padding: 8px 5px;
	margin-bottom:5px;
	border-radius: 5px;
	/*width:80%;*/
}

table.form textarea{
  width:80%;
}

table.form .auto input{
	width:auto;
}

table.form label {
  display: inline-block;
  margin-right: 10px;
	padding-left:1.6em;
	text-indent:-1.6em;
}

table.form .copy{
	display: inline-block;
	font-size: 14px;
	margin-top: 10px;
	padding: 5px 10px;
	background-color: #003399;
	color: #FFFFFF;
	border: 1px solid #003399;
	cursor:pointer;
	transition: 0.5s ;
}

table.form .copy:hover {
	background-color: #FFFFFF;;
	color: #003399;
}

/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

	table.form input[type="text"] , table.form input[type="email"] , table.form input[type="file"] , table.form textarea{
		width:100% !important;
	}

	table.form input[type=radio]{
		margin-bottom:20px;
	}

	table.form th , table.form td{
		display: block;
		width: 100%;
	}

	table.form th{
		padding:15px 10px 0px 10px;
		border: none;
		font-weight: bold;
	}

	table.form td{
		padding:10px 10px 15px 10px;
	}

	table.form label {
		display: inline-block;
		margin: 0 10px 20px 0;
	}

}


form .button , form .return{
	overflow: hidden;
	border-radius: 10px;
	background:none;
	font-size:20px;
	display: inline-block;
	padding:7px 60px;
	transition: 0.5s ;
  font-weight: bold;
	vertical-align: top;
	text-decoration: none;
	line-height: 1.6;
}
form .button{
	color:#f08300;
	border:3px solid #f08300;
}
form .return{
	color:#003399;
	border:3px solid #003399;
	margin-right: 20px
}
form .button:hover{
	background-color:#f08300;
	color:#FFFFFF;
}
form .return:hover{
	background-color:#003399;
	color:#FFFFFF;
}


form .container-btn .button{
	font-size:25px;
	padding:7px 120px;
}

/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

#contact-form{
	margin-top:30px;
	padding:0;
}

#contact-form .text{
	margin-bottom:30px;
}


form .button , form .container-btn .button , form .return{
	font-size:14px;
	padding:10px 30px;
}
 
form .return{
	margin-right: 20px
}

}


/*============================
#contentsHeader
============================*/
#contentsHeader {
	border-bottom: 5px solid #f08300;
	margin-bottom: 20px;
}
#contentsHeader h2 {
	font-size: 30px;
	font-weight: bold;
	color: #f08300;
	padding: 40px 0;
	width: 1000px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
#contentsHeader h2 img {
	width: 130px;
	height: auto;
	position: absolute;
	right: 100px;
	bottom: 0;
}

.introduction {
	font-size: 18px;
	margin:0 auto 60px auto;
}


/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

	#contentsHeader {
		margin-bottom: 20px;
	}
	#contentsHeader h2 {
		font-size: 21px;
		padding: 40px 0 60px 0;
		width: 100%;
	}
	#contentsHeader h2 img {
		width: 100px;
		right: 10px;
		bottom: 0;
	}

	.introduction {
		font-size: 16px;
		margin-bottom: 30px;
	}

}

ul.about-rink {
	overflow: hidden;
	padding: 0 150px;
}
ul.about-rink li {
	width: 46%;
	margin-right: 8%;
	float: left;
}
ul.about-rink li:nth-child(2n){
	margin-right: 0;
}
ul.about-rink li a {
	display: block;
	color: #000000;
	padding: 25px;
	border: 3px solid #f08300;
	border-radius: 15px;
	text-decoration: none;
}
ul.about-rink li a:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
ul.about-rink li a h3 {
	font-size: 20px;
	font-weight: bold;
	color: #f08300;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 15px;
}
ul.about-rink li a p.rink {
	margin-top: 10px;
	color: #003399;
	text-decoration: underline;
}

/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

	ul.about-rink {
		padding: 0;
	}
	ul.about-rink li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 25px;
	}
	ul.about-rink li a {
		padding: 20px;
	}
	ul.about-rink li a h3 {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 15px;
	}
	ul.about-rink li a p.rink {
		margin-top: 10px;
	}

}

ul.purchase-rink {
	text-align: center;
	margin-bottom: 40px;
}
ul.purchase-rink li {
	display: inline-block;
	margin: 3px 10px;
}
ul.purchase-rink li a {
	font-size: 18px;
	font-weight: bold;
}

.purchase-1column{
	padding: 15px;
	margin-bottom: 50px;
}
.purchase-1column div{
	background-color: #f2f2f2;
	padding: 30px 25px;
}
.purchase-list ul {
	overflow: hidden;
	margin-bottom: 40px;
	padding: 0 15px;
}
.purchase-list ul li {
	width: 47%;
	margin-right: 6%;
	float: left;
	background-color: #f2f2f2;
	padding: 15px;
	margin-bottom: 30px;
}
.purchase-list ul li:nth-child(2n){
	margin-right: 0;
}

.purchase-list ul li h3 , .purchase-1column h3{
	font-size: 19px;
	font-weight: bold;
	border-bottom: 1px solid #b3b3b3;
	padding-bottom: 7px;
	margin-bottom: 10px;
}
.purchase-list ul li p {
	padding: 0 5px;
}

/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {
	
	ul.purchase-rink {
		margin-bottom: 30px;
	}
	ul.purchase-rink li {
		margin: 3px 10px;
	}
	ul.purchase-rink li a {
		font-size: 15px;
		font-weight: bold;
	}

.purchase-1column{
		padding: 15px;
		margin-bottom: 30px;
	}
	.purchase-1column div{
		padding: 25px 15px;
	}

	.purchase-list ul {
		margin-bottom: 30px;
		padding: 0 15px;
	}
	.purchase-list ul li {
		width: 100%;
		margin-right: 0;
		padding: 15px;
		margin-bottom: 30px;
	}
	.purchase-list ul li h3 , .purchase-1column h3 {
		font-size: 16px;
		padding-bottom: 7px;
		margin-bottom: 10px;
	}
	.purchase-list ul li p {
		padding: 0 5px;
	}

}


/*============================
#shop-list
============================*/

.measures{
	background-color: #EFEFEF;
	padding: 40px 40px 10px;
	margin-bottom: 10px;
}

.measures ul{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	overflow: hidden;
	margin-bottom: 40px;
}

.measures ul li{
  float: left;
	overflow: hidden;
	width: 48%;
  margin-right: 4%;
	border-bottom: 1px solid #D1D1D1;
	padding: 15px 10px;
}
.measures ul li:nth-child(2n){
  margin-right: 0;
}
.measures ul li img{
  width: 40px;
  height: auto;
	float: left;
  vertical-align: middle;
  margin-right: 10px;
}
.measures ul li p{
	overflow: hidden;
	margin-top: 6px;
	font-size: 15px;
}
.measures ul li p strong{
	display: inline-block;
	margin-bottom: 4px;
	font-size: 16px;
}
ul#shop-list {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
  overflow: hidden;
  margin: 30px 0 60px 0;
}

ul#shop-list > li {
  float: left;
  width: 480px;
  margin-right: 40px;
  border-bottom: 1px solid #b3b3b3;
  padding: 20px 10px;
	line-height: 1.4;
	font-feature-settings: "palt";
}

ul#shop-list > li:nth-child(2n){
  margin-right: 0;
}

ul#shop-list > li div.left {
  width: 66%;
  float: left;
  margin-right: 4%;
  margin-bottom: 10px;
}

ul#shop-list > li div.left p.type a {
  font-weight: bold;
  color: #f08300;
  display: inline-block;
  margin-right: 20px;
	margin-bottom: 5px
}

ul#shop-list > li div.left h3 a {
	font-size:19px;
	margin-top: 5px;
	margin-bottom:5px;
	display: block;
  font-weight: bold;
	color: #000000;
	text-decoration: none;
}

ul#shop-list > li div.left p.text {
	margin-bottom:5px;
}

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

	ul#shop-list > li div.left p.text {
		height: 90px;
		overflow-y: auto;
		padding-right: 5px;
	}

}

ul#shop-list > li div.left h4{
  color: #f08300;
  font-weight: bold;
  margin: 5px 0;
  /*border-bottom: 1px solid #f08300;
  padding: 0 5px 0 5px;*/
}

ul#shop-list > li div.right {
  width: 30%;
  float: right;
  margin-bottom: 10px;
}

ul#shop-list > li div.right img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

ul#shop-list > li div.right p.heading , ul#shop-list > li div.right p.takeout , ul#shop-list > li div.right p.delivery{
  font-size: 16px;
  font-weight: bold;
	border: 1px solid;
	padding: 3px;
	text-align: center;
  margin-bottom: 10px;
}

ul#shop-list > li div.right p.heading{color: #f08300; border-color: #f08300;}
ul#shop-list > li div.right p.takeout{color: #ff0000; border-color: #ff0000;}
ul#shop-list > li div.right p.delivery{color: #003399; border-color: #003399;}

ul#shop-list > li div.right ul{
  overflow: hidden;
	margin-bottom: 10px;
}

ul#shop-list > li div.right ul.measures_icon li{
  float: left;
  width: 30%;
  margin: 3px 5% 5px 0;
}
	
ul#shop-list > li div.right ul.measures_icon li:nth-child(3n) {
  margin-right: 0;
}

ul#shop-list > li div.right ul.measures_icon li img {
  width: 100%;
	height: auto;
	margin-bottom: 0;
}

ul#shop-list > li .rink{
  clear: both;
}

ul#shop-list > li .rink a {
  display: inline-block;
  background-color: #f08300;
  border-radius: 5px;
  color: #FFFFFF;
  padding: 3px 15px;
  margin-bottom: 5px;
	text-decoration: none;
}

#shop-list a{
	transition: 0.6s ;
}

#shop-list a:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

ul#shop-list > li .comment{
  height: 40px;
  overflow-y: auto;
  padding-right: 5px;
	margin-bottom: 10px;
}

.wp-pagenavi {
	clear: both;
	padding-top:5px;
	text-align:center;
	margin-top:50px;
  font-size: 17px;
}

.wp-pagenavi a, .wp-pagenavi span {
	color: #000000;
	text-decoration: none;
	border: 3px solid #BFBFBF;
	padding: 5px 15px !important;
	margin: 2px;
	display:inline-block;
  border-radius: 5px;
}


.wp-pagenavi span.current {
	font-weight: bold;
	color:#FFFFFF;
	background-color:#f08300;
	border-color:#f08300 !important;
}

.wp-pagenavi .larger , .wp-pagenavi .smaller{
	background-color:#FFFFFF;
}

.wp-pagenavi span.current , .wp-pagenavi a:hover{
	color:#FFFFFF;
	background-color:#f08300;
	border-color:#f08300 !important;
}

ul#shop-list.single{
	width: 80%;
	margin: 0 10%;
}

ul#shop-list.single > li {
  width: 100%;
  margin-right: 0;
  border-bottom: none;
  padding: 20px 10px;
	line-height: 1.7;
	font-feature-settings: "palt";
}

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

	ul#shop-list.single > li .rink{
		float: left;
		clear: none;
		margin-top: 30px;
	}

}

ul#shop-list.single > li div.left p.text {
	height: auto;
	overflow-y: auto;
}

ul#shop-list.single > li .comment{
	height: auto;
	overflow-y: auto;
}


/* ------------------------ スマートフォン ------------------------ */
@media screen and (max-width: 768px) {

	.measures{
		padding: 20px 20px 10px;
		margin-bottom: 10px;
	}
	.measures ul{
		margin-bottom: 40px;
	}
	.measures ul li{
		width: 100%;
		margin-right: 0;
		padding: 15px 10px;
	}
	.measures ul li img{
		width: 40px;
		margin-right: 10px;
	}
  ul#shop-list {
    margin-top: 10px;
		margin-bottom: 40px;
  }

  ul#shop-list > li {
    width: 100%;
    margin-right: 0;
    padding: 20px 0;
  }

  ul#shop-list > li div.left {
    width: 60%;
    margin-right: 4%;
    margin-bottom: 10px;
  }

  ul#shop-list > li div.left.break {
    clear: both;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  ul#shop-list > li div.left h3 a {
    font-size:17px;
    margin-bottom:5px;
  }

  ul#shop-list > li div.left p.text {
    margin-bottom:5px;
  }

  ul#shop-list > li div.right {
    width: 36%;
  }

  ul#shop-list > li div.right img {
    margin-bottom: 10px;
  }
	
	ul#shop-list > li div.right p.heading , ul#shop-list > li div.right p.takeout , ul#shop-list > li div.right p.delivery{
		font-size: 15px;
		padding: 3px;
		margin-bottom: 10px;
	}

	ul#shop-list > li div.right ul.measures_icon li{
		float: left;
		width: 30%;
		margin: 3px 5% 5px 0;
	}
	
  ul#shop-list > li .rink a {
    padding: 3px 15px;
    margin-bottom: 5px;
  }

  .wp-pagenavi {
    clear: both;
    padding-top:5px;
    text-align:center;
    margin-top:50px;
    font-size: 17px;
  }

  .wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 3px solid #BFBFBF;
    padding: 5px 15px !important;
    margin: 5px;
    display:inline-block;
    border-radius: 5px;
  }


  .wp-pagenavi span.current {
    font-weight: bold;
    color:#FFFFFF;
    background-color:#c40018;
    border-color:#c40018 !important;
  }

  .wp-pagenavi .larger , .wp-pagenavi .smaller{
    background-color:#FFFFFF;
  }


  .wp-pagenavi {
    margin-top:30px;
  }

	ul#shop-list.single{
		width: 100%;
		margin: 0;
	}

	ul#shop-list.single > li {
		width: 100%;
		margin-right: 0;
		border-bottom: none;
		padding: 20px 10px;
		line-height: 1.7;
		font-feature-settings: "palt";
	}


}

/* -----------------------------------
    アンカーリンク
   ----------------------------------- */
#list-anchor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 820px;
	margin: 0px auto 30px;
}
#list-anchor li {
	margin-left: 15px;
	margin-right: 15px;
	text-align: center;
}
#list-anchor li a {
	
}
#list-anchor li a:before {
	font-family: 'FontAwesome';
	content: "\f103";
	padding-right: 3px;
}
@media screen and (max-width: 800px) {
#list-anchor {
	width: 95%;
}
}
@media screen and (max-width: 768px) {
#list-anchor li {
	width: 25%;
}
}
@media screen and (max-width: 500px) {
#list-anchor li {
	width: 33%;
}
}
@media screen and (max-width: 400px) {
#list-anchor li {
	width: 50%;
}
}

/* -----------------------------------
    開閉パネル
   ----------------------------------- */
.accbox {
	margin: 25px auto 60px;
	padding: 0;
	width: 95%;
}
.accbox label {
	display: block;
	padding : 13px 3em 13px 2.2em;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #003399;
	cursor : pointer;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-align: left;
	border-radius: 25px;
	border: 1px solid #003399;
	position: relative;
	text-indent: -1em;
}
#shimin .accbox label {
	background-color: #f08300;
	border: 1px solid #f08300;
}
.accbox label:after {
	content: '\f078';
	font-family: 'FontAwesome';
	padding-right: 8px;
	position: absolute;
	right: 10px;
	color: #fffc54;
	line-height: 40%;
	top: 40%;
}
.accbox input {
    display: none;
}
.accbox .accshow {
	height: 0;
	margin-bottom: 25px;
	overflow-y: hidden;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-align: left;
}
.cssacc:checked + label {
	border-radius: 25px 25px 0px 0px;
	background-color: #003399;
	border: 1px solid #003399;
}
#shimin .cssacc:checked + label {
	background-color: #f08300;
	border: 1px solid #f08300;
}
.cssacc:checked + label + .accshow {
	height: auto;
	padding: 10px;
	opacity: 1;
	border-radius: 0px 0px 25px 25px;
	border-left: 1px solid #003399;
	border-right: 1px solid #003399;
	border-bottom: 1px solid #003399;
}
#shimin .cssacc:checked + label + .accshow {
	border-left: 1px solid #f08300;
	border-right: 1px solid #f08300;
	border-bottom: 1px solid #f08300;
}
.accshow ul {
	position: relative;
}
.accshow ul:before {
	content: "A.";
	font-size: 40px;
	color: #003399;
	font-weight: bolder;
	padding-left: 10px;
	position: absolute;
	line-height: 0;
}
#shimin .accshow ul:before {
	color: #f08300;
}
.accbox .accshow li {
	margin: 10px 15px 10px 65px
}
/*アイコンを入れ替える*/
.cssacc:checked + label:after {
    content: '\f077';
}
@media screen and (max-width:768px) {
.accbox {
	width: 100%;
	margin-top: 20px;
}	
.accbox label {
	border-radius: 10px;
}
.cssacc:checked + label {
	border-radius: 10px 10px 0px 0px;
}
.cssacc:checked + label + .accshow {
	border-radius: 0px 0px 10px 10px;
}	
}
@media screen and (max-width:480px) {
.accbox .accshow li {margin-left: 35px;}
.accbox label:after {
	right: 8px;
}
}
@media screen and (max-width:380px) {
.accbox .accshow li {
	margin: 8px 10px;
	line-height: 1.4;
}
.accbox .accshow li:first-child {
	padding-top: 20px
}
}

/* -----------------------------------
    開閉パネル②
   ----------------------------------- */
.accbox02 {
	margin: 25px auto 60px;
	padding: 0;
	width: 95%;
}
.accbox02 label {
	display: block;
	padding : 13px 3em ;
	font-weight: bold;
	background-color: #F0F0F0;
	cursor : pointer;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-align: left;
	border: 1px solid #000000;
	position: relative;
	text-indent: -1em;
}
#shimin .accbox02 label {
	background-color: #f08300;
	border: 1px solid #f08300;
}
.accbox02 label:after {
	content: '\f078';
	font-family: 'FontAwesome';
	padding-right: 8px;
	position: absolute;
	right: 10px;
	line-height: 40%;
	top: 40%;
}
.accbox02 input {
    display: none;
}
.accbox02 .accshow02 {
	height: 0;
	margin-bottom: 25px;
	overflow-y: hidden;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-align: left;
}
.cssacc02:checked + label {
	background-color: #F0F0F0;
	border: 1px solid #000000;
	border-radius: 10px 10px 0px 0px;
}
#shimin .cssacc02:checked + label {
	background-color: #F0F0F0;
	border: 1px solid #f08300;
}
.cssacc02:checked + label + .accshow02 {
	height: auto;
	padding: 10px;
	opacity: 1;
	border-radius: 0px 0px 10px 10px;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
}
#shimin .cssacc02:checked + label + .accshow02 {
	border-left: 1px solid #f08300;
	border-right: 1px solid #f08300;
	border-bottom: 1px solid #f08300;
}
.accshow02 ul {
	position: relative;
}
.accbox02 .accshow02 li {
	margin: 10px 10px;
}
/*アイコンを入れ替える*/
.cssacc02:checked + label:after {
    content: '\f077';
}
@media screen and (max-width:768px) {
.accbox02 {
	width: 100%;
	margin-top: 20px;
}
/*.accbox label {
	border-radius: 10px;
}
.cssacc:checked + label {
	border-radius: 10px 10px 0px 0px;
}
.cssacc:checked + label + .accshow {
	border-radius: 0px 0px 10px 10px;
}*/
}
@media screen and (max-width:480px) {
.accbox02 .accshow02 li {margin-left: 35px;}
.accbox02 label:after {
	right: 8px;
}
}
@media screen and (max-width:380px) {
.accbox02 .accshow02 li {
	margin: 8px 10px;
	line-height: 1.4;
}
.accbox02 .accshow02 li:first-child {
	padding-top: 20px
}
}


table.contact{
	width:100%;
	border-collapse: collapse;
	margin-left:auto;
	margin-right:auto;
}

table.contact tr{
	margin-bottom: 10px;
}

table.contact th{
	width:170px;
	font-weight: bold;
	background-color: #e6e6e6;
	padding:7px 0;
	border-bottom: 10px solid#FFFFFF;
}

table.contact td{
	padding:7px 0 7px 20px;
	border-bottom: 10px solid#FFFFFF;
}

table.contact input[type="text"] ,table.contact select , table.form input[type="email"] , table.contact textarea{
	background-color: #FFF;
	border: 1px solid #CCC;
	line-height: 140%;
	padding: 8px 5px;
	margin-bottom:5px;
	border-radius: 5px;
	width:100%;
}

table.contact .auto input{
	width:auto;
}

table.contact label {
  display: inline-block;
  margin-right: 10px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

table.contact tr{
	margin-bottom: 10px;
}

table.contact th{
	width:120px;
	font-weight: bold;
	padding:7px 0;
}

table.contact td{
	padding:7px 0 7px 10px;
}

table.contact input[type="text"] , table.form input[type="email"] , table.form textarea{
	width:100%;
}

table.contact input[type=radio]{
	margin-bottom:20px;
}

table.contact label {
  display: inline-block;
  margin: 0 10px 20px 0;
}


}

/* -----------------------------------
    店舗情報
   ----------------------------------- */
/*エリアマップ*/
#contents-search li {
	margin-bottom: 5px;
}
.column-search {
	padding: 15px 10px 0px;
	margin-bottom: 80px;
}
#container-map {
	width: 65%;
	position: relative;
}
#container-submap li {
	position:absolute;
	top:0;
	left:0;
	display:none;
}
#container-map img,
#container-submap img {
	width:100%;
}
#container-city {
	width:27%;
}
#container-city p {
	text-align: left !important;
	margin-top: 10px;
}
#search-area{
	
}
#search-area li {
	margin-bottom: 7px;
	line-height: 48px
}
#search-area li label{
	cursor: pointer;
	display: block;
	font-size: 18px;
	font-weight: bold;
	height: 48px;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
}
.check_box:checked + .label {
	border: 1px solid #000000 !important;
}
#search-area li#area-01 label {border-bottom: 4px solid #fbb03b;}
#search-area li#area-02 label {border-bottom: 4px solid #ff7bac;}
#search-area li#area-03 label {border-bottom: 4px solid #8cc63f;}
#search-area li#area-04 label {border-bottom: 4px solid #26b6b8;}
#search-area li#area-05 label {border-bottom: 4px solid #ce6016;}
#search-area li#area-06 label {border-bottom: 4px solid #3fa9f5;}
#search-area li#area-07 label {border-bottom: 4px solid #93278f;}
#search-area li#area-08 label {border-bottom: 4px solid #009245;}
#search-type{overflow: hidden;}
#search-type li {
	width: 33.3%;
	float: left;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
#search-type li label{
	font-weight: bold;
}
@media screen and (max-width: 820px) {
#container-map {
	width: 60%;
}
#container-city {
	width:35%;
}	
}
@media screen and (max-width: 768px) {
#search-area{overflow: hidden;}
#search-area li {
	width: 48%;
	float: left;
	margin-right: 4%;
}
#search-area li:nth-child(2n){
	margin-right: 0;
}
#search-area li label{
	font-size: 16px;
	font-feature-settings: "palt";
}
.column-search {
	padding: 0;
	margin-bottom: 30px;
}
#search-type li {
	width: 50%;
}	
#container-map {
	width: 100%;
}
#container-city {
	width:100%;
}
}
@media screen and (max-width: 500px) {
#search-type li {
	width: 100%;
}	
}
@media screen and (max-width: 500px) {
#search-area li {
	width: 100%;
	margin-right: 0;
}
}

/*店舗情報*/
#search-list:before,
#title-search:before{
	font-family: 'FontAwesome';
	content: "\f00e";
	padding-right: 3px
}
#title-search:before {
	content: "\f002";
	padding-right: 3px
}

.list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 15px;
	margin-bottom: 50px;
}
.list div{
	border: 1px solid #2b8ed0;
	padding: 15px;
	width: 49%;
	margin-bottom: 2%;
	border-radius: 6px;
}
@media screen and (max-width: 768px) {
.list {
    display: block;
}
.list div {
    width: 100%;
}
}
.container-flex {
	display: flex;
	justify-content: space-between;
}
.block-image{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.block-image img{
	width: 100%
}
@media screen and (max-width: 768px) {
.container-flex {
	display: block;
}
.block-image{
	width: 100%;
}
}

.consent-form {
	height: 300px;
	overflow-y: auto;
	padding: 50px;
	border: 1px solid #B3B3B3;
	margin-bottom: 50px;
}
.consent-form h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.consent-form h4 {
	font-size: 17px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 6px 20px;
	background-color: #f08300;
	margin-bottom: 20px;
}
.consent-form ol {
	padding: 0 15px;
	margin-bottom: 30px;
}
.consent-form ol li {
	padding-left:1.1em;
	text-indent:-1.1em;
	margin-bottom: 10px;
}

#check-text{
	color: #909090;
}

.confirm-text{
	position: fixed;
	top: 0;
	left: 0;
	border: 5px solid #CACACA;
	width: 100%;
	padding: 25px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	background-color: #FFFFFF;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

.consent-form {
	height: 300px;
	padding: 20px 20px 0 20px ;
	margin-bottom: 30px;
}
.consent-form h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.consent-form h4 {
	font-size: 17px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 6px 20px;
	background-color: #f08300;
	margin-bottom: 20px;
}
.consent-form ol {
	padding: 0;
	margin-bottom: 30px;
}
.consent-form ol li {
	padding-left:1.1em;
	text-indent:-1.1em;
	margin-bottom: 10px;
}

.confirm-text{
	position: fixed;
	top: auto;
	bottom: 0;
	padding: 15px;
	font-size: 16px;
	text-align: left;
}

}

ul.area-anchor{
	text-align: center;
}

ul.area-anchor li{
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 10px;
}

.modaal-content-container{
	padding: 60px !important;
}

.modaal-close:after, .modaal-close:before{
	background: #f08300 !important;
}

.caution{
	padding: 30px;
	background-color: #d3edfb;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.modaal-content-container{
		padding: 20px !important;
	}

	.caution{
		padding: 20px;
		background-color: #d3edfb;
	}

}

.shop-list table th , .shop-list table td{
	word-break:break-all;
	padding: 3px 10px;
}

.shop-list table th{
	font-size: 14px;
	line-height: 16px;
}

.shop-list table td{
	font-size: 13px;
	line-height: 16px;
}

.shop-list table a{
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	line-height: 1.2;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.shop-list table th , .shop-list table td{
		width: 33% !important;
		line-height: 1.2;
		padding: 2px 5px;
	}

}

ul.shop-list-rink{
	text-align: center;
}

ul.shop-list-rink li{
	display: inline-block;
}

ul.shop-list-rink li a{
	border-radius: 10px;
	display: inline-block;
	text-decoration: none;
	background: none;
	padding: 7px 15px;
	color: #003399;
	border: 3px solid #003399;
	transition: 0.5s;
	font-weight: bold;
	margin-left: 7px;
	margin-right: 7px;
	margin-bottom: 10px;
}

ul.shop-list-rink li a:hover{
	color: #FFFFFF;
	background-color: #003399;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	ul.shop-list-rink li{
		width: 100%;
	}
	
	ul.shop-list-rink li a{
		width: 100%;
		padding: 7px 15px;
		margin: 0;
		margin-bottom: 7px;
	}

}