@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2,  h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

h3{
  margin:5;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  color: #59220d;
  line-height: 1.5;
  font-size: 14px;
  font-family: sans-serif;
}

img{
  border: 0;
  max-width: 100%;
  height: auto;
}

ul,ol{
  list-style-type: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

img, input, select, textarea { 
  vertical-align: middle;
}

a {
  color: #59220d;
  transition: 0.5s;
}
a:hover {
  color: #d53e04;
}
a:hover img {
  opacity: 0.7;
}

/*
=========================================
  Base Layout
=========================================
*/

/*container*/
.container {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*grid*/
@media screen and (min-width: 768px) {
  /*汎用2カラム,3カラム指定*/
  .pc-grid-col2,
  .pc-grid-col3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /*2カラムの列幅*/
  .pc-grid-col2 .col {
    width: 48.9361%;
  }
  /*3カラムの列幅*/
  .pc-grid-col3 .col {
    width: 31.9148%;
  }
}

/*
=========================================
  Modules（Block）
=========================================
*/

/*header
--------------------*/
.header {
  position: relative;
  /*height: 500px;*/
  height: calc(100vh - 60px);
  background: url(../img/bg_header.jpg) center center no-repeat;
  background-size: cover;
}
.header-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
}
.header-logo {
  margin-bottom: 20px;
}
.header-msg {
  line-height: 1.8;
}

.header-title p {
  text-shadow: 
  white 2px 0px 2px, white -2px 0px 2px,
  white 0px -2px 2px, white -2px 0px 2px,
  white 2px 2px 2px, white -2px 2px 2px,
  white 2px -2px 2px, white -2px -2px 2px,
  white 1px 2px 2px, white -1px 2px 2px,
  white 1px -2px 2px, white -1px -2px 2px,
  white 2px 1px 2px, white -2px 1px 2px,
  white 2px -1px 2px, white -2px -1px 2px,
  white 1px 1px 2px, white -1px 1px 2px,
  white 1px -1px 2px, white -1px -1px 2px;
}


/*global navigation
--------------------*/
.gnav {
  background: #d8c7a0;
}
.gnav ul {
  display: flex;
}
.gnav li {
  flex: auto;
}
.gnav a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Cardo', serif;
  font-style: italic;
}
.gnav a:hover {
  background: #ecdfc2;
}

/*section
--------------------*/
.section {
  margin: 40px 0;
}

/*Pickup Menu
--------------------*/
.menu-list {
  text-align: center;
flex-wrap: wrap;
display: flex;
justify-content: space-between;
}
.menu-list li {
  margin-bottom: 20px;
  border: 1px solid #d8c7a0;
  box-sizing: border-box;
}
.menu-list::after{
width: 33%;
content: "";
display: block;
}
.menu-text {
  margin: 15px;
}


/*information
--------------------*/
.info-list {
  display: flex;
  flex-wrap: wrap;
}
.info-list dt {
  width: 30%;
  padding: 10px 0;
  border-top: 1px #d8c7a0 dotted;
}
.info-list dd {
  width: 70%;
  padding: 10px 0;
  border-top: 1px #d8c7a0 dotted;
}
.info-list :first-of-type {
  border-top: none;
}

/*staff
--------------------*/
#staff {
  display: block;
  padding: 20px;
  background: 
    repeating-linear-gradient(135deg, #fff, #fff 10px, #fcf2d9 10px, #fcf2d9 20px);
  box-sizing: border-box;
}
.staff-photo {
  width: 60%;
  margin: 20px auto 20px;
}
@media screen and (min-width: 768px) {
  #staff {
    display: block;
  }
  .staff-photo {
    width: 30%;
  }
}
.staff-heading{
  display: block;
  padding: 8px 10px;
  margin: 20px 20px 10px;
  border-radius: 2em;
  background: #d8c7a0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.staff-text{
  display: block;
  padding: 20px 20px;
  margin: 20px auto 10px;
}

/*Google Map
--------------------*/
.map {
  position: relative;
  padding-top: 50%; 
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*access
--------------------*/
.add {
  text-align: center;
  font-style: normal;
  font-size: 12px;
}
.add p {
  margin-top: 15px;
}

.btn-tel {
  display: inline-block;
  width: 70%;
  max-width: 200px;
  padding: 8px 0;
  border-radius: 2em;
  background: #d8c7a0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/*banner
--------------------*/
.banner-list li{
  margin-bottom: 20px;
}
.banner-list li img{
  border: #fff 5px solid;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/*footer
--------------------*/
.footer{
  padding: 20px 0;
  background: #d8c7a0;
}
.footer-info-title {
  margin-bottom: 20px;
}
.footer-info-ph img{
  box-sizing: border-box;
  border: #fff 5px solid;
}
.footer-info-list{
  margin-bottom: 20px;
}
.footer-info-list dt{
  clear: left;
  float: left;
  width: 7em;
  margin-bottom: 10px;
}
.footer-info-list dd{
  margin-bottom: 10px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .footer-info {
    display: flex;
    justify-content: space-between;
  }
  .footer-info-ph {
    width: 31.9148%;
  }
  .footer-info-data {
    width: 65.9574%;
  }
}

/*SNS*/
.sns{
  margin-bottom: 15px;
  text-align: center;
}
.sns li{
  display: inline-block;
}
.sns a{
  display: block;
  padding: 10px 10px;
  background: #fff;
  color: #d8c7a0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 24px; 
}
.sns a:hover{
  opacity: 0.7;
}

/*copyright*/
.copyright {
  text-align: center;
}

/*pagetop*/
.pagetop{
  width: 45px;
  height: 45px;
  position: fixed;
  right: 10px;
  bottom: 70px;
}
.pagetop a {
  display: block;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
}
.pagetop a:hover {
  background: rgba(255,255,255,0.8);
  color: #59220d;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1px solid #59220d;
  border-right: 1px solid #59220d;
  transform: rotate(-45deg);
}

/*
=========================================
  Modules（Parts）
=========================================
*/

/*Heading
--------------------*/
.heading{
  margin-bottom: 15px;
  border-bottom: #59220d 1px solid;
  color: #59220d;
  font-size: 20px;
  font-weight: normal;
  font-family: 'Cardo', serif;
  font-style: italic;
  overflow: hidden;
  position: relative;
}

/*ポットアイコン*/
.heading::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 26px;
  margin-right: 5px;
  background: url(../img/ico_pot.png) no-repeat;
  background-size: contain;
  position: relative;
  bottom: -3px;
}

.heading .more{
  float: right;
  display: inline-block;
  padding: 5px 5px 5px 10px;
  background: #59220d;
  border-radius: 2em;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}
.heading .more:hover{
  opacity: 0.7;
}

/*三角アイコン*/
.heading .more::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border: transparent 5px solid;
  border-left-color: #fff;
  vertical-align: middle;
}

/*
=========================================
  Utilities
=========================================
*/

/* マージン
---------------------------------*/
.mb0{ margin-bottom: 0 !important;}
.mb5{ margin-bottom: 5px !important;}
.mb10{ margin-bottom: 10px !important;}
.mb15{ margin-bottom: 15px !important;}
.mb20{ margin-bottom: 20px !important;}
.mb25{ margin-bottom: 25px !important;}
.mb30{ margin-bottom: 30px !important;}
.mb35{ margin-bottom: 35px !important;}
.mb40{ margin-bottom: 40px !important;}
.mb45{ margin-bottom: 45px !important;}
.mb50{ margin-bottom: 50px !important;}

/* 左右行揃え
---------------------------------*/
.ta-l{ text-align: left; }
.ta-r{ text-align: right; }
.ta-c{ text-align: center; }


/* フロート／フロート解除
---------------------------------*/
.fl{ float:left; }
.fr{ float:right; }
.fl-img{ float: left; margin-right: 10px; margin-bottom: 10px;}
.fr-img{ float: right; margin-left: 10px; margin-bottom: 10px;}
.clear{ clear:both; }

/* clearfix */
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both; 
}

/*icon fonts*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?mp503x');
  src:  url('fonts/icomoon.eot?mp503x#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?mp503x') format('truetype'),
    url('fonts/icomoon.woff?mp503x') format('woff'),
    url('fonts/icomoon.svg?mp503x#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\ea90";
}
.icon-twitter:before {
  content: "\ea96";
}
.icon-pinterest:before {
  content: "\ead1";
}
