@charset "utf-8";
/*reset*/
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, address, em, img, small, strong, dl, dt, dd, ol, ul, li, form, label, table, caption, tr, th, td, article, aside, footer, header, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
nav ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, select {
  vertical-align: middle;
}
/*共通common*/
body {
  background-color: #e3dbd9;
  font-family: "UD デジタル 教科書体 NK-R", "ヒラギノ明朝 ProN", serif;
  line-height: 1.6;
  font-size: 15px;
  color: #4d5053;
  text-align: center;
}
h2 {
  color: #a09493;
  font-size: 36px;
  line-height: 1;
}
h3 {
  color: #a09493;
  font-size: 24px;
  margin-bottom: 40px;
}
.about, .menu, .culture {
  margin-bottom: 100px;
}
.about-img, .culture-img, .contact-img {
  width: 100%;
  height: auto;
}
.text200 {
  width: 200px;
  margin: 40px auto;
}
/*リンクボタン*/
.viewmore {
  display: inline-block;
  position: relative;
  padding: 8px 50px;
  border-top: solid 1px #4d5053;
  border-bottom: solid 1px #4d5053;
  text-decoration: none;
  color: #4d5053;
}
.viewmore:before, .viewmore:after {
  content: '';
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background-color: #4d5053;
  transition: .3s;
}
.viewmore:before {
  left: 8px;
}
.viewmore:after {
  right: 8px;
}
/*hover*/
.viewmore:hover {
  background-color: #dcc5b0;
  color: #fff;
}
.viewmore:hover:before {
  top: 0px;
  left: 0;
  height: 100%;
}
.viewmore:hover:after {
  top: 0px;
  right: 0;
  height: 100%;
}
/*header common*/
header_inner {
  position: relative;
}
h1 {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
h1 img {
  width: 100px;
  height: auto;
}
/*hamburger menu*/
.nav_toggle {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 50px;
  height: 45px;
  margin-left: auto;
  margin-right: inherit;
  background-color: #a09493;
}
.nav_toggle i {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 10px;
  right: 10px;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 10px;
  right: 10px;
}
.nav_toggle.show i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
nav {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  background-color: rgba(160, 148, 147, 0.8);
  line-height: 1;
}
.nav.show {
  opacity: 1;
  visibility: visible;
  padding: inherit;
}
.nav ul {
  padding: 80px 0;
}
.nav ul li {
  display: block;
  width: 250px;
  margin: auto auto 20px auto;
}
.nav ul li a {
  color: #e3dbd9;
  font-size: 30px;
  text-decoration: none;
  padding-left: 24px;
  padding-right: 24px;
}
.nav ul li a:hover {
  color: #4d5053;
  background: url("../img/cup.png") no-repeat left center;
}
.sns {
  vertical-align: bottom;
}
.sns a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #e3dbd9;
  border-radius: 50%;
  color: #a09493;
  font-size: 30px;
  text-decoration: none;
  padding: 14.5px 7.5px 0.5px 7.5px;
  margin: 20px;
}
.sns a:hover {
  color: #e3dbd9;
  background-color: #4d5053;
}
/*SlideShow*/
.slide-show {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.slide-show img {
  z-index: 8;
  opacity: 0;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 30s 0s infinite;
  vertical-align: bottom;
}
.slide-img:nth-of-type(2) {
  animation-delay: 6s;
}
.slide-img:nth-of-type(3) {
  animation-delay: 12s;
}
.slide-img:nth-of-type(4) {
  animation-delay: 18s;
}
.slide-img:nth-of-type(5) {
  animation-delay: 24s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0
  }
}
.slide-pc {
  display: none;
}
/*headerメディアクエリ*/
@media screen and (min-width:769px) {
  .header_inner {
    height: 600px;
  }
  h1 {
    position: fixed;
    top: 40px;
    left: 5.87%;
  }
  header nav {
    visibility: inherit;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    background-color: rgba(160, 148, 147, 1.0);
    padding-top: 20%;
  }
  .nav ul {
    padding: 20px 0;
  }
  .nav ul li {
    width: 180px;
    text-align: left;
  }
  .nav ul li a {
    font-size: 20px;
  }
  .nav_toggle {
    visibility: hidden;
  }
  .sns {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
  }
  .sns a {
    width: 30px;
    height: 25px;
    font-size: 18px;
    padding: 5px 5px 0 5px;
    margin: 8px;
    line-height: 1;
  }
  .slide-sp {
    display: none;
  }
  .slide-pc {
    display: block;
  }
  .slide-show {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
  }
  .slide-pc img {
    z-index: 8;
    opacity: 0;
    width: 83%;
    height: auto;
    position: absolute;
    right: 0;
    margin-right: 0;
    margin-left: 20%;
    vertical-align: bottom;
  }
}
@media screen and (min-width:1050px) {
  .nav ul li a {
    font-size: 24px;
  }
  .sns a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    padding: 6px 3px 0 3px;
  }
}
/*main common*/
main {
  margin: 0 auto;
  max-width: 1200px;
}
.lead {
  background-color: #a09493;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 160px;
}
.lead-inner {
  background: url("../img/flower1.png")no-repeat top left,url("../img/flower2.png")no-repeat bottom right;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.lead-inner p {
  width: 96px;
  ;
  writing-mode: vertical-rl;
  text-align: start;
  color: #e3dbd9;
  font-size: 30px;
  margin: 0 auto;
  padding: 60px 0;
  /* align-items: center;*/
}
.flower1 {
  width: 100px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.flower2 {
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
/*about common*/
.about {
  position: relative;
}
.about h2 {
  position: absolute;
  top: -90px;
  right: 20px;
  text-align: right;
}
/*menu common*/
.menu, .contact {
  position: relative;
}
.menu h2, .contact h2 {
  position: absolute;
  top: -20px;
  left: 20px;
  text-align: left;
}
.menu img {
  width: 66%;
  height: auto;
  border-bottom: solid 10px #a09493;
}
.menu-name {
  margin-bottom: 40px;
}
/*culture common*/
.culture {
  position: relative;
}
.culture h2 {
  position: absolute;
  top: -20px;
  right: 20px;
  text-align: right;
}
/*contact common*/
.contact {
  margin-bottom: 80px;
}
.contact-img-pc {
  display: none;
}
/*mainメディアクエリ*/
@media screen and (min-width:769px) {
  main {
    width: 80%;
    margin-left: 20%;
  }
  h2 {
    font-size: 72px;
    position: inherit;
  }
  .about, .menu, .culture, .contact {
    position: inherit;
    margin-bottom: 160px;
  }
  .about h2 {
    position: inherit;
    text-align: center;
    width: 300px;
    margin-left: 11%;
    margin-right: auto;
  }
  .menu h2 {
    position: inherit;
    text-align: center;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .culture h2 {
    position: inherit;
    text-align: center;
    width: 380px;
    margin-left: 8%;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .contact h2 {
    position: inherit;
    text-align: center;
    width: 380px;
    margin-left: auto;
    margin-right: 8%;
    margin-bottom: 40px;
  }
  .flex-box {
    display: flex;
    justify-content: space-between;
    margin-left: 45px;
    margin-right: 40px;
  }
  .flex-item {
    margin-top: auto;
    margin-bottom: 40px;
    /* padding:0 10%;*/
  }
  .about .flex-item, .culture .flex-item {
    order: 1;
    padding: 0 10%;
  }
  .contact .flex-item {
    padding: 10%;
  }
  .order2 {
    order: 2;
    width: 52.1%;
  }
  .contact-img-sp {
    display: none;
  }
  .contact-img-pc {
    display: block;
    width: 31.25%;
    margin-left: 10%;
  }
  .lead {
    background-color: inherit;
    padding: 40px 0;
  }
	.lead-inner {
		width: 500px;
  background: url("../img/flower3.png")no-repeat top left,url("../img/flower4.png")no-repeat bottom right;
}
  .lead-inner p {
    color: #4d5053;
    padding: 120px 0;
  }
  .flower1 {
    width: 200px;
    height: auto;
  }
  .flower2 {
    width: 200px;
    height: auto;
  }
}
/*footer common*/
footer {
  background-color: #dcc5b0;
  color: #fff;
  font-size: 13px;
  padding: 20px 20px 10px 20px;
}
.footer_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
footer img {
  width: 80px;
  height: auto;
}
footer .flex-box {
  display: flex;
  margin-bottom: 20px;
}
footer .flex-item {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
footer dl {
  display: none;
}
footer dt {
  font-size: 30px;
}
/*PageTopボタン*/
.page-top {
  writing-mode: vertical-rl;
  color: #4d5053;
  font-size: 15px;
  text-decoration: none;
  position: fixed;
  right: 20px;
  bottom: 200px;
  cursor: pointer;
  z-index: 10;
}
.page-top::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50px;
  background-color: #4d5053;
  margin-bottom: 10px;
}
/*PageTopアニメーション*/
.page-top::before {
  animation: sdl 4s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}
/*.page-top {
  animation: fwari ease-in-out 2s infinite alternate;
  -webkit-animation: fwari ease-in-out 2s infinite alternate;
  -moz-animation: fwari ease-in-out 2s infinite alternate;
}
@keyframes fwari {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -20px);
  }
}*/
.page-top:hover {
  color: #a09493;
}
.tel, .cafe {
  margin-bottom: 10px;
}
.cafe {
  font-size: 15px;
}
.inquiry {
  display: none;
}
footer .tel {
  filter: drop-shadow(2px 2px 2px #cfb9a6);
}
footer .tel a {
  background-color: #fff;
  color: #dcc5b0;
  padding: 5px 10px 3px 30px;
  border-radius: 10px;
  background-image: url("../img/tell.png");
  background-repeat: no-repeat;
  background-position: center left 10px;
  text-decoration: none;
}
footer .tel a:hover {
  background-color: #a09493;
  color: #fff;
}
small {
  font-size: 12px;
}
/*footerメディアクエリ*/
@media screen and (min-width:769px) {
  .page-top {
    font-size: 30px;
    right: 40px;
    bottom: 240px;
  }
  .page-top::before {
    height: 80px;
  }
  footer {
    padding: 40px 40px 20px 18%;
  }
  footer .flex-box {
    margin: 0;
  }
  footer img {
    display: none;
  }
  footer dl {
    display: block;
    padding-left:80px;
    text-align: left;
  }
  .cafe {
    display: none;
  }
  .inquiry {
    display: block;
  }
  small {
    padding-left: 40px;
  }
}
@media screen and (min-width:1050px) {
 footer dl {
    padding-left:100px;
}
}
/*ABOUT US common*/
/*パンくずリスト*/
.breadcrumbs-sp {
  text-align: left;
  margin: 40px;
}
.breadcrumbs-sp li {
  display: inline-block;
  font-size: 12px;
}
.breadcrumbs-item:after {
  content: '\003e';
  margin-left: 5px;
  margin-right: 5px;
  font-size: 10px;
}
.breadcrumbs-pc {
  display: none;
}
.about-noeul1, .about-noeul2, .about-noeul3 {
  margin-bottom: 40px;
}
.about-noeul1 div {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.main_inner_under h2 {
  margin-top: 160px;
}
.main_inner_under span {
  display: block;
  font-size: 16px;
  color: #a09493;
  margin-bottom: 20px;
}
.about-noeul1 p, .about-noeul2 p {
  padding: 40px 20%;
}
video {
  width: auto;
  height: 500px;
}
.about-noeul2 div{
 position:relative;
 width:210px;
 height:400px;
 margin:0 auto;
}
.about-noeul2 h3 {
 position:absolute;
 right:0;
 top:0;
  writing-mode: vertical-rl;
 font-size:20px;
  /*margin: 0 30% 0 70%;*/
}
.about-noeul2 img{
 position:absolute;
 bottom:0;
 left:0;
 width:150px;
}
about-noeul3 {
  text-align: center;
}
.about-noeul3 img {
  width: 60%;
  height: auto;
  margin-bottom: 20px;
}
/*ABOUT US メディアクエリ*/
@media screen and (min-width:769px) {
 .main_inner_under{
 padding-left:3%;
}
  .main_inner_under h2 {
    margin-top: inherit;
  }
  /*パンくずリスト-PC*/
  .breadcrumbs-pc {
    display: block;
    text-align: left;
    margin: 40px 40px 40px 50px;
  }
  .breadcrumbs-pc li {
    display: inline-block;
    font-size: 12px;
  }
  .breadcrumbs-item:after {
    content: '\003e';
    margin-left: 5px;
    margin-right: 5px;
    font-size: 10px;
  }
  .breadcrumbs-sp {
    display: none;
  }
  .about-noeul3 img {
    margin-bottom: 40px;
  }
}
/*MENU common*/
.menu-list span {
  font-size: 16px;
  color: #a09493;
}
.menu-slide img {
  width: 100%;
  height: auto;
}
.menu-list li {
  display: inline-block;
  padding: 0 20px;
}
.menu-list li a {
  color: #a09493;
  text-decoration: none;
}
.coupon {
  margin: 40px 20px;
  border: dashed 1px #a09493;
}
.coupon h3 {
  margin: 20px 0;
}
.coupon-text {
  padding: 20px 15%;
}
.coupon img {
  width: 80%;
  max-width: 500px;
}
.border {
  margin: 40px 20px;
}
.border img {
  width: 80%;
}
.hit-menu {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}
.hit-menu div {
  width: 50%;
}
.hit-menu h3 {
  font-size: 18px;
  margin-bottom: inherit;
}
.hit-menu span {
  font-size: 12px;
}
.hit-menu img {
  width: 80%;
  height: auto;
  border: solid 3px #dcc5b0;
}
.hit-text {
  width: 80%;
  max-width: 300px;
  margin: 10px auto;
}
.border-right {
  border-right: solid 1px #a09493;
}
#drink, #dessert, #bakery {
  border: double 3px #dcc5b0;
  background-color: #f0eceb;
  margin: 20px;
  padding: 40px 20px;
}
#drink dt, #dessert dt, #bakery dt, #drink dd, #dessert dd, #bakery dd {
  display: inline-block;
}
#drink dl, #dessert dl, #bakery dl {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  border-bottom: solid 1px #dcc5b0;
  padding: 8px 10px;
  box-sizing: border-box;
}
#drink dt, #dessert dt, #bakery dt {
  width: 75%;
  margin-left: 0;
  margin-right: auto;
}
#drink dd, #dessert dd, #bakery dd {
  width: 21%;
  float: right;
  text-align: right;
}
/*MENU メディアクエリ*/
@media screen and (min-width:769px) {
  #drink, #dessert, #bakery {
    margin: 40px 40px 40px 50px;
    padding: 80px 40px;
  }
  .coupon {
    margin: 40px 40px 40px 50px;
  }
  .coupon h3 {
    margin: 40px 0;
  }
  .coupon-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .coupon img {
    width: 80%;
    max-width: 500px;
  }
  .hit-menu {
    margin-left: 10px;
  }
}
/*CULTURE common*/
.culture1, .culture2 {
  border: solid 1px #a09493;
  margin: 0 20px 40px;
  padding: 40px 20px;
}
.culture-text {
  padding: 40px 20%;
}
.culture1 span, .culture2 span{
 color:#4d5053;
 font-size:13px;
 margin:inherit;
}
.culture1 img, .culture2 img {
  width: 100%;
  max-width: 500px;
}
.cooking img {
  width: 200px;
  border-radius: 50%;
}
table {
  margin: 0 auto;
}
th, td {
  border: solid 1px #a09493;
  padding: 10px;
}
th {
  background-color: rgba(160, 148, 147, 0.3);
}
td {
  background-color: #f0eceb;
 vertical-align: middle;
}
.culture1 .viewmore {
  margin: 40px auto 0;
}
.culture2 td {
  background-color: rgba(77, 80, 83, 0.1);
}
.red {
  color: #e81317;
}
.font13 {
  font-size: 13px;
}
/*CULTUREメディアクエリsp*/
@media screen and (min-width:405px) {
 .culture1 span, .culture2 span{
  display:inline;
  font-size:15px;
  margin-left:10px;
 }
}
/*CULTUREメディアクエリpc*/
@media screen and (min-width:769px) {
  .culture1, .culture2 {
    margin: 0 40px 80px;
    padding: 80px 40px;
  }
}
/*CONTACT common*/
.form-table {
  width: 100%;
  max-width: 400px;
  margin: 40px auto;
  border: solid 1px #a09493;
}
.form-table th {
  display: block;
  border: none;
  padding: 10px;
  vertical-align: middle;
}
.form-table td {
  display: block;
  border: none;
  padding: 20px;
  vertical-align: middle;
}
input .input-form{
 width:90%;
}
.form-table textarea {
  width: 90%;
}
.contact-form {
  padding: 40px;
}
.access {
  padding: 40px;
  /*background-color:#f0eceb;*/
}
.access .flex-box {
  border-top: solid 1px #dcc5b0;
  border-bottom: solid 1px #dcc5b0;
  padding: 40px 0;
}
.access h3 {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: center;
}
.access dt {
  color: #a09493;
  font-size: 13px;
}
.access dd {
  margin-bottom: 10px;
}
iframe {
  width: 80%;
  max-width: 400px;
  filter: grayscale(70%);
  margin-bottom: 20px;
}
/*CONTACTメディアクエリ*/
@media screen and (min-width:769px) {
  .access {
    width: 90%;
    max-width: 800px;
    /*display:flex;*/
    padding: 40px 20px 40px 30px;
    margin: 0 auto;
    text-align: left;
  }
  iframe {
    width: 55%;
    /*margin:0 auto; */
  }
  .form-table {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    border: none;
  }
  .form-table th {
    display: table-cell;
    width: 30%;
    padding: 20px 10px;
    vertical-align: middle;
    border: solid 1px #a09493;
  }
  .form-table td {
    display: table-cell;
    width: 70%;
    padding: 20px 20px;
    vertical-align: middle;
    text-align: left;
    border: solid 1px #a09493;
  }
  .form-table textarea {
    width:98%;
  }
  .contact-form {
    margin: 40px 20px;
    padding: 40px 20px 40px 30px;
  }
}
@media screen and (min-width:1050px) {
  .access {
    width: 80%;
  }
  iframe {
    width: 60%;
  }
  .form-table {
    width: 80%;
  }
}