@charset "utf-8";

/* ========================================
    リセットcss
========================================= */
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-style:normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
	color: #552E31;
	transition: all 0.4s;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}

div#test {
    text-align: center;
    position: absolute;
    top: 0;
    opacity: 0.5;
}

/* micro clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}



body {
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
}

body p {
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.1rem;
}



/* ========================================
   header
========================================= */



header {
	position: fixed;
	background-color: rgba(255,255,255,0.9);
	z-index: 999;
	height: 60px;
	width: 90%;
	margin: 0 auto;
	padding: 30px 5% 0 5%;
}

header h1 {
	float: left;
	width: 20%;
}

header h1 img {
	width: 100%;
	max-width: 240px;
}

header h1 img:hover {
	opacity: 0.5;
}

nav {
	float: right;
}

nav li {
	list-style: none;
	float: left;
	margin-left: 32px; 
}

nav li a {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 1.1rem;
	text-decoration: none;
	letter-spacing: 0.3rem;
	color: #552E31;
}

nav li a:hover {
	color: #91D2E5;	
}

nav li a.page {
	color: #91D2E5;	
}


nav li a.btn_reserve {
	display: inline-block;
	padding: 15px 12%;
	margin-top: -10px;
	border: solid #91D2E5 1px;
	border-radius: 3px;
	color: #91D2E5;
	/*font-size: 0.8rem;	
	letter-spacing: 0.15rem;*/
}


nav li a.btn_reserve:hover {
	background-color: #91D2E5;
	color: #FFFFFF;
}


nav li i.tel {
	display: none;
}


/* ========================================
    top main images
========================================= */

.wrapper {
	width: 90%;
	margin: 0 auto;
	padding-top: 110px; 
  	position  : relative;
	color: #552E31;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.slide {
  position   : relative;
  overflow   : hidden;
  width      : 90vw;
  height     : 70vh;
  margin     : auto;    
  padding-bottom: 100px;
}
 

 /* 画像の設定*/
.slide img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  object-fit: cover;
  opacity    : 0;
  animation  : slideAnime 16s ease infinite;
  border-radius: 3px;
}
 
 /* スライドのアニメーションを段差で開始する  */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 4s }
.slide img:nth-of-type(3) { animation-delay: 8s }
.slide img:nth-of-type(4) { animation-delay: 12s }
 
 /*スライドのアニメーション */
@keyframes slideAnime{
   0% { opacity: 0 }
  20% { opacity: 1 }
  35% { opacity: 1 }
  40% { opacity: 0 }
 100% { opacity: 0 }
}

/* ========================================
    top discription
========================================= */

.discription-bg {
	float: right;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 50vw;
	padding: 3vh 5% ;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(234,250,255,0.6);
	border-radius: 3px;
	margin: 65px 0;
	text-align: right;
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.15rem;
	
}


.discription-left {
	color: #552E31;
	opacity: 0;
	-webkit-animation: example 1.0s ease 1.0s 1 forwards;
  	animation: example 1.0s ease 1.0s 1 forwards;
}

.discription-right {
	opacity: 0;
	-webkit-animation: example 1.5s ease 1.5s 1 forwards;
  	animation: example 1.5s ease 1.5s 1 forwards;
}

.discription-right img  {
	width: 60%;
}

.line {
	border: 1px solid #91D2E5;
}

.line a {
	padding: 16px;
	font-size: 0.85rem;
	color: #91D2E5;
	text-decoration: none;
}

.push-top {
	width: 100%;
	height: 50px;
	display: inline-block;
}

.pc {
	width:300px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.pc img {
	width: 100px;
	margin: 0 30px;
}

.pc p {
	font-size: 0.85rem;
	text-align: center;
}

.pc p a {
	color: #91D2E5;
}

.line_sp {
	display: none;
}

.sdgs {
	text-align: center;
}

.sdgs img {
	width: 200px;
}


/* ========================================
    全体
========================================= */

h2.title {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 1.7rem;
	letter-spacing: 0.5rem;
	text-align: center;
	margin: 30px 0;
}

.contents {
	position: relative;
	width: 90%;
	margin: 0 auto;
}

.left-img {
	width: 40vw;
	height: 40vh;
	float: left;
	margin-bottom: 0px;
	opacity: 0; 
	 -webkit-animation: example 0.5s ease 0.5s 1 forwards;
  	animation: example 0.5s ease 0.5s 1 forwards;
}

.left-img img {
	width      : inherit;
	height     : inherit;
	object-fit: cover;
	border-radius: 3px;

}

.clear {
	clear: both;
}

.right {
	width: 50vw;
	height: auto;
	padding: 10vh 0;
	position: relative;	
	display: flex;
	justify-content: space-around;
	align-items: center;
	top: -25vh;
	left: 35vw;
	margin-bottom: -25vh;
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.15rem;
	background-color: rgba(145,210,229,0.1);
	border-radius: 3px;
	color: #552E31;
	opacity: 0; 
	-webkit-animation: example 0.5s ease 1.5s 1 forwards;
	animation: example 0.5s ease 1.0s 1 forwards;

}

@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}

.right p {
	color: #552E31;
}



/* ========================================
    about staff
========================================= */


.staff {
	width: 80%;
	margin: 0 auto;	
	display: flex;
	flex-wrap: wrap;
	opacity: 0; 
	-webkit-animation: example 1.5s ease 0.5s 1 forwards;
  	animation: example 0.5s ease 1.5s 1 forwards;
}


.member  {
	width:  30%;
	margin: 50px 10% ;
	display: block;
}

.member_image {
	float: left;
	margin-bottom: 10px;
}

.member_image img {
	width: 100%;
	border-radius: 4px;
}

.member_coment {
	width: 100%;
}

.member section  h3 {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 0.8rem;
	letter-spacing: 0.2rem;
	color: #91D2E5;
}


.member section h2 {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 1.2rem;
	letter-spacing: 0.3rem;
	line-height: 1.5em;
	color: #552E31;
	margin-top: 10px;
}

.member section p {
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.1rem;
	margin-top: 10px;
}


.recrute {
	width: 30%;
	align-items: center;
	border: 1px solid #91D2E5;
	border-radius: 2px;
	margin: 30px auto ;
	padding: 40px 8%;
	text-align: center;
}


.recrute p { 
	width: 100%;
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	color: #91D2E5;
}

.recrute p.wanted {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 1.2rem;
	letter-spacing: 0.3rem;
	line-height: 1.5em;
	color: #91D2E5;
}



/* ========================================
    menu
========================================= */


table.table01 {
	width:60%;
	border-collapse: collapse;
}
table.table01 thead th {
	color:#91D2E5;
	padding:25px 15px 0px 15px;
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 0.9rem;
}
table.table01 thead th:last-child {
}
table.table01 tbody th {
	color:#552E31;
	padding:2px 15px;
	vertical-align:top;
}
table.table01 tbody tr:last-child th {
}
table.table01 tbody td {
	padding:2px 15px;
	vertical-align:top;
}


/* ========================================
    special
========================================= */

.special_discription {
	width: 50%;
	margin: 0 auto 50px auto;
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.15rem;
}


.special_contents {
	width: 100%;
	height: 556px;
	margin: 0 auto;
	background-image: url(img/menu_bg_right.png);
	padding: 120px 0;
	text-align: center;
}

.special_visual {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	justify-content: space-between;

}
.special_logo {
	float: left;
	margin-top: 0 10%;
	flex-grow: 1;

}

.special_pict   {
	float: left;
	flex-grow: 5;
}

.special_pict img {
	width: 350px;
}

.special_contents section {
	width: 60%;
	margin:50px auto 0 auto; 
}

.special_contents h4 {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 1.2rem;
	color: #91D2E5;
	letter-spacing: 0.3rem;
	margin-bottom: 20px; 
}

.special_contents p {
	font-size: 0.85rem;
	letter-spacing: 0.15rem;
	color: #552E31;
}


/* ========================================
    special
========================================= */

.vision {
	padding: 60px 0;
}

.vision p {
	font-size: 1rem;
	letter-spacing: 0.15rem;
	text-align: center;
}


.recruit_detail {
	width: 60%;
	margin: 0 auto;
	text-align: center;
}


.recruit_detail table {
	margin: 30px auto;
	text-align: left;
	font-size: 0.85rem;
	letter-spacing: 0.15rem;
}

.recruit_detail th {
  background: rgb(209, 236, 245);
  border: solid 1px #fff;
  padding: 20px;
}

.recruit_detail td {
	background-color: rgb(212, 233, 240, 0.2);
	border: solid 1px #fff;
  padding: 20px;
}

.recruit_lastmessage {
	color: #91D2E5;
}




/* ========================================
    access
========================================= */


.map {
	position: relative;
	margin:40px auto;
	padding-top: 40%;
	border-radius: 3px;	
	opacity: 0; 
	-webkit-animation: example 1.5s ease 0.5s 1 forwards;
  	animation: example 0.5s ease 1.5s 1 forwards;
	}

.map iframe,
.map object,
.map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/* ========================================
    reserve
========================================= */

.reserve_bg {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	background-image: url(img/reserve_pc.png);
 	background-size:cover;
	background-position: center center; 
 	border-radius: 3px; 
}

 .reserve {
 	width: 60%;
 	margin: 50px auto;
 	padding: 10vh 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 0.85rem;
	line-height: 2em;
	letter-spacing: 0.15rem;
	background-color: rgba(255,255,255,0.7);
	border-radius: 3px;
	color: #552E31;
 	line-height: 2.0;
 }


.reserve_tel  a {
	font-family: Copperplate, "Copperplate Gothic Light";
	font-size: 2.5rem;
	color: #91D2E5;
}

.reserve_tel a:hover {	
	opacity: 0.5;
}


/* ========================================
    footer
========================================= */


footer {
	width: 100%;
	height: 50px;
	font-size: 0.7rem;
	letter-spacing: 0.15rem;
	display: inline-block;
	text-align: center;
	margin-top: 50px;
}



/* ========================================
    sunday market
========================================= */

.market_contents {
	width: 800px;
	margin: 0 auto;
	padding: 40px 0 40px 0;
	font-size: 1rem;
	line-height: 2em;
	background-color:rgba(234, 250, 255, 0.5);
}

.market_description {
	margin: 40px auto;
	width: 100%;
	text-align: center;
}
.market_description p span {
	font-family: Copperplate, "Copperplate Gothic Heavy";
	font-size: 20px;
}

.market_image {
	margin: 0 auto;
	width: 80%;
	text-align: center;
}


.market_shops {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

.market_shops ul{
	text-align: center;
}

.market_list_color {
	color: #91D2E5;
	font-size: 0.8rem;
}

.market_caution {
	width: 50%;
	margin: 50px auto;
	font-size: 0.8rem;
}


/* ============================================================================
  

    ここからスマホ


============================================================================= */


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



		header {
			position: fixed;
			height: 40px;
			width: 90%;
			padding: 30px 5% 0 5%;		
			margin:0;	
			background-color: rgba(255,255,255,0.7);
			z-index: 999;
		}

		header h1 {
			width: 40%;
		    z-index: 97;
		}

		a.menu{
		    height: 20px;
		    position: fixed;
		    right: 20px;
		    top: 20px;
		    width: 30px;
		    z-index: 99;
		}
		span.menu__line{
		    background: #552E31;
		    display: block;
		    height: 2px;
		    position: absolute;
		    transition:transform 0.3s;
		    width: 100%;
		}
		.menu__line--center{
		    top: 9px;
		}
		.menu__line--bottom{
		    bottom: 0;
		}
		.menu__line--top.active{
		    top: 8px;
		    transform: rotate(45deg);
		}
		.menu__line--center.active{
		    transform:scaleX(0);
		}
		.menu__line--bottom.active{
		    bottom: 10px;
		    transform: rotate(135deg);
		}

		/*gnav*/
		.gnav{
		    background: rgba(230,250,255,0.99);
		    display: none;
		    height: 100%;
		    position: fixed;
		    top:0;
		    right:0;
		    width: 100%;
		    z-index: 98;
		}
		.gnav__wrap{
		    align-items:center;
		    display: flex;
		    height: 100%;
		    justify-content: center;
		    position: absolute;
		    width: 100%;
		}

		.gnav__menu__item{
			width: 100%;
		    margin:16px 0;
			text-align: center;
		}
		.gnav__menu__item a{
		    color: #552E31;
		    font-size: 1.2em;
		    padding: 30px 10%;
		    transition: .5s;
		}
		.gnav__menu__item a:hover{
		    color: #91D2E5;
		}

		nav li a.btn_reserve {
			display: flex;
		    justify-content: center;
			width: 50%;
			border: solid #91D2E5 1px;
			border-radius: 3px;
			color: #91D2E5;
			margin:0 12.5%;
			}	

		nav li i.tel {		
			display: block;	
			color: #91D2E5;
			letter-spacing: 0.8rem;
		}

		/*a.tel {
			display: block;
		    position: fixed;
		    right: 80px;
		    top: 17px;	 
		    border: solid #552E31 1px;   
		    color: #552E31;
		    padding: 8px;
		    background-color: rgba(145,210,229,0.0);
		    font-size: 0.7em;
		    letter-spacing: 0.3em;
			font-family: Copperplate, "Copperplate Gothic Light";
		    text-decoration: none;
		    }*/

		

		/* ========================================
		    top main images
		========================================= */
		.wrapper {
			position   : relative;
			width: 100%;
			margin: 0 auto 0 auto;
			padding-top: 80px; 
			color: #552E31;
		    animation: fadeIn 2s ease 0s 1 normal;
		    -webkit-animation: fadeIn 2s ease 0s 1 normal;
		}

		@keyframes fadeIn {
		    0% {opacity: 0}
		    100% {opacity: 1}
		}

		@-webkit-keyframes fadeIn {
		    0% {opacity: 0}
		    100% {opacity: 1}
		}

		.slide {
		  position   : relative;
		  overflow   : hidden;
		  width: 100%;
		  height     : 30vh; 
		  padding-bottom: 0;
		}
		 

		 /* 画像の設定*/
		.slide img {
		  display    : block;
		  position   : absolute;
		  width      : inherit;
		  height     : inherit;
		  object-fit: cover;
		  opacity    : 0;
		  animation  : slideAnime 16s ease infinite;
		  border-radius: 3px;
		}
		 
		 /* スライドのアニメーションを段差で開始する  */
		.slide img:nth-of-type(1) { animation-delay: 0s }
		.slide img:nth-of-type(2) { animation-delay: 4s }
		.slide img:nth-of-type(3) { animation-delay: 8s }
		.slide img:nth-of-type(4) { animation-delay: 12s }
		 
		 /*スライドのアニメーション */
		@keyframes slideAnime{
		   0% { opacity: 0 }
		  20% { opacity: 1 }
		  35% { opacity: 1 }
		  40% { opacity: 0 }
		 100% { opacity: 0 }
		}

		/* ========================================
		    top discription
		========================================= */

		.discription-bg {
			float: right;
			display: flex;
			flex-flow: column nowrap;
			align-items: center;
			justify-content: center;
			width: 70%;
			height: auto;
			position: absolute;
			top: 120px;
			left: 15%;
			background-color: rgba(234,250,255,0.0);
			padding: 0;
			border-radius: 3px;
			text-align: center;
			font-size: 0.6rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
		}


		.discription-left {
			color: #552E31;
			order: 2;
		}

		.discription-right img {
			width: 50%;
			margin: 20px 0;
			order:1;
		}

		.push-top {
			height: calc(50vh - 60px);
			display: inline-block;
		}

		.pc {
		display: none;
	}

		.line_sp {
			display: block;
			margin-top: 30px;
			order: 3;
		}
		
		.line_sp span a{
			padding: 12px;
			font-size: 0.85rem;
			color: #91D2E5;
			border: 1px solid #91D2E5;
			text-decoration: none;
			border-radius: 3px;
		}

		.sdgs img {
			width: 30%;
		}
		


		/* ========================================
		    全体
		========================================= */

		h2.title {
			font-family: Copperplate, "Copperplate Gothic Light";
			font-size: 1.3rem;
			letter-spacing: 0.3rem;
			text-align: center;
			margin-top:0;
			margin-bottom: 20px;
		}

		.contents {
			width: 100%;
			margin: 0 auto;
		}

		.left-img {
			float: left;
			width: 100%;
			height: 30vh;
			margin-bottom: 0px;
		}

		.left-img img {
			width      : inherit;
			height     : inherit;
			object-fit: cover;
		}

		.clear {
			clear: both;
		}

		.right {
			display: flex;
			position: relative;	
			top: -30px;
			left: 0	;
			width: 70%; 
			margin-left: 20%;
			margin-bottom:0;
			padding: 50px 5%;
			font-size: 0.6rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
			background-color: rgba(145,210,229,0.1);
			border-radius: 3px;
			color: #552E31;
		}

		.right p {
			color: #552E31;
		}



		/* ========================================
		    about_staff
		========================================= */

		.staff {
			width: 90%;
			margin: 0 auto;
			display: flex;
		}

		.member  {
			width:  100%;
			margin: 5% ;
			display: flex;
			flex-flow: column nowrap;
		}

		.member_image {
			float: left;
			margin: 0 auto 10px auto; 
		}

		.member_image  img {		
			width: 100%;
			max-width: 400px;
		}

		.member_coment {
			width: 100%;
		}

		.member section  h3 {
			font-family: Copperplate, "Copperplate Gothic Light";
			font-size: 0.8rem;
			letter-spacing: 0.2rem;
			color: #91D2E5;
		}

		.member section h2 {
			font-family: Copperplate, "Copperplate Gothic Light";
			font-size: 1rem;
			letter-spacing: 0.15rem;
			line-height: 1.5em;
			color: #552E31;
			margin-top: 6px;
		}

		.member section p {
			font-size: 0.85rem;
			line-height: 2em;
			letter-spacing: 0.1rem;
			margin-top: 10px;
		}

		.staff-push {
			display: block;
			height: 500px;
		}

		.recrute {
			width: 50%;
			align-items: center;
			border: 1px solid #91D2E5;
			border-radius: 2px;
			margin: 30px auto ;
			padding: 40px 8%;
			text-align: center;
		}


		/* ========================================
		    menu
		========================================= */

		table.table01 {
		width:100%;
		}
		table.table01 thead th {
			padding:25px 0px 0px 0px;
		}

		table.table01 tbody th {
		color:#552E31;
		padding:2px 0px;
		}	

		table.table01 tbody td {
		padding:2px 0px;
		}

		/* ========================================
		    special
		========================================= */

		.special_discription {
			/*width: 90%;
			margin: 0 auto 20px auto;
			font-size: 0.6rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
			color: #552E31;*/
			width: 90%; 
			padding: 50px 5%;
			font-size: 0.6rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
			background-image: url(img/menu_bg_right.png);
			background-size: 100%;
			background-repeat: no-repeat;
			border-radius: 3px;
			color: #552E31;
		}

		.special_discription p {
			width: 100%;
		}


		.special_contents {
			width: 100%;
			height: auto;
			margin: 0 auto 80px auto;
			background-image: none;
			padding: 0;
			text-align: center;
		}

		.special_visual {
			width: 100%;
			margin: 0 auto;
			display: flex;
			flex-flow: column nowrap;
			justify-content: space-around;
			align-items: center;

		}


		.special_logo {
			clear: left;
			margin: 30px auto 10px auto;
			order: 2;
		}

		.special_logo img {
			width: 80%;
		}


		.special_pict   {
			clear: left;
			order: 1;
		}

		.special_pict img {
			width: 90%;
		}

		.special_contents section {
			margin: 20px 5% 0 5%; 
			width: 90%;
			text-align: left;
		}

		.special_contents h4 {
			font-family: Copperplate, "Copperplate Gothic Light";
			font-size: 1.0rem;
			color: #91D2E5;
			letter-spacing: 0.3rem;
			margin-bottom: 20px; 
		}

		.special_contents p {
			font-size: 0.85rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
			color: #552E31;
		}




		/* ========================================
		    recruit
		========================================= */

		.vision {
			width: 90%;
			margin: 0 auto;
		}

		.recruit_detail {
			width: 90%;
		}

		.recruit_detail th {
			display: block;
			width: 90%;
			border-bottom: none;
			padding: 10px 5%;
			background-color: rgb(212, 233, 240, 0.3);
		}
	
		.recruit_detail td {
			display: block;
			width: 90%;
			border-bottom: none;
			padding: 10px 5%;
			background-color: #fff;
		}



		/* ========================================
		    access
		========================================= */


		.map {
			position: relative;
			margin:0 auto 40px auto;
			padding-top: 100%;
			border-radius: 3px;
			}

		.map iframe,
		.map object,
		.map embed {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		/* ========================================
		    reserve
		========================================= */

		.reserve_bg {
			width: 100%;
			margin: 0 auto;
			background-image: url(img/reserve_pc.png);
		 	background-size:cover;
			background-position: center center; 
		 	border-radius: 3px; 
		 	text-align: center;
		}

		 .reserve {
		 	width: 80%;
		 	margin: 0px auto;
		 	padding: 10vh 0;
			display: flex;
			justify-content: space-around;
			align-items: center;
			font-size: 0.6rem;
			line-height: 2em;
			letter-spacing: 0.15rem;
			background-color: rgba(255,255,255,0.7);
			border-radius: 3px;
			color: #552E31;
		 	line-height: 2.0;
		 }


		.reserve_tel  a {
			font-family: Copperplate, "Copperplate Gothic Light";
			font-size: 1.5rem;
			color: #91D2E5;
		}

		.reserve_tel a:hover {	
			opacity: 0.5;
		}




		/* ========================================
		    footer
		========================================= */


		footer {
			width: 100%;
			height: 50px;
			font-size: 0.5rem;
			letter-spacing: 0.15rem;
			display: inline-block;
			text-align: center;
			}


		/* ========================================
		    market
		========================================= */
			/* .market_contents {
				width: 90%;
			}

			.market_image img {
				width: 100%;
			}

			.market_description {
				margin: 15px auto;
				width: 100%;
			}
			
			.market_description p {
				margin: 10px auto;
				text-align: center;
			}
			.market_shops ul {
				font-size: 0.9rem;
				text-align: left;
			}
			
			.market_description p span {
				font-family: Copperplate, "Copperplate Gothic Heavy";
				font-size: 18px;
			}
			
			.market_shops {
				width: 80%;
				padding: 10%;
			}

			.market_caution {
				width: 80%;
			}

			.market_link_pc {
				display: none;
			}

			.market_link_mobile {
				width: 100%;
				margin: 10px auto;
				text-align: center;
				display: block;
			} */

}/*=======ここまで*=======/





