@charset "utf-8";
/* CSS Document */

html {
  font-size: 100%;
}
body {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
	background: #BA9B80;
	color: #fff;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

/*sec-title*/
.sec-title {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
  position: absolute;
  top: 30%;
}

/*item-title*/
.item-title {
  font-size: 2.5rem;
  display: inline-block;
 /* border-bottom: solid 6px #e03131;*/
  margin-bottom: 70px;
}

/*fixed-bg*/
.fixed-bg {
  height: 300px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/*wrapper*/
.wrapper {
  max-width: 1000px;
  padding: 90px 16px 150px 16px;
  margin: 0 auto;
  text-align: center;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  width: 100%;
  min-height: 100vh;
  background-image: url("img/cafe3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 20px 40px;
  position: relative;
}
nav ul {
  display: flex;
  justify-content: flex-end;
}
nav li {
  margin-left: 30px;
}
nav li a {
  color: #fff;
  font-weight: bold;
  transition: all  0.3s ease;
  filter: drop-shadow(1px 1px 2px #121212);
}
nav li a:hover {
  color: #261F1A;
}

/*-------------------------------------------
Menu
-------------------------------------------*/
#menu {
  margin-top: 20px;
}
#menu .menu-img {
  background-image: url("img/menu.png");
  position: relative;
}
#menu .menu-content {
  display: flex;
}
#menu .menu-item {
  width: 50%;
  padding: 0 45px;
}
#menu .menu-item:first-child {
  border-right: solid 1px #fff;
}
#menu .menu-item dl {
  display: flex;
  flex-wrap: wrap;
}
#menu .menu-item dt {
  width: 87%;
  text-align: left;
  border-bottom: dotted 1px #fff;
  margin-bottom: 25px;
}
#menu .menu-item dd {
  width: 13%;
  text-align: right;
  padding-top: 8px;
}
#menu .menu-item dl.food {
  margin-bottom: 55px;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about {
  margin-top: 20px;
}
#about .about-img {
  background-image: url("img/about.png");
  position: relative;
}
#about ul {
  /*display: flex;
  justify-content: space-between;
  flex-wrap: wrap;*/
  margin-bottom: 40px;
	padding-left: 320px;
	text-align: center;
}

#about li {
  width: 50%;
  line-height: 2;
  /*text-align: left;*/
  padding: 2%;
}

a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 50px;
  box-sizing: border-box;
  background: repeating-linear-gradient(45deg, #ffffff, #ffffff 3px, #261F1A 3px, #261F1A 30px);
	
  color: #261F1A;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
	margin-left: 410px;
}
a.btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  box-sizing: border-box;
  position: absolute;
  top: -6px;
  left: -6px;
  transition-duration: 0.2s;
}
a.btn:hover span {
  left: -1px;
  top: -1px;
}

/*-------------------------------------------
Location
-------------------------------------------*/
#location {
  margin-top: 20px;
}
#location .location-img {
  background-image: url("img/location.png");
  position: relative;
}
#location .item-map {
  filter: grayscale(1);
  margin-bottom: 20px;
}
#location .item-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
#location .item-info {
  text-align: left;
}
#location .item-info p {
  margin-bottom: 10px;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  font-size: 0.5rem;
  padding: 10px 0;
  text-align: center;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .site-title {
    top: 42%;
  }
  .sec-title {
    font-size: 2rem;
    top: 26%;
  }
  .item-title {
    font-size: 1.25rem;
    margin-bottom :25px;
  }
  .fixed-bg {
    height: 94px;
    background-attachment: scroll;
  }
  .wrapper {
    padding: 30px 16px 60px 16px;
  }

  /*-------------------------------------------
  Menu
  -------------------------------------------*/
  #menu {
    margin-top: 10px;
  }
  #menu .menu-content {
    flex-direction: column;
  }
  #menu .menu-item {
    width: 100%;
    padding: 0;
  }
  #menu .menu-item:first-child {
    border-right: none;
  }
  #menu .menu-item dl {
    margin-bottom: 10px;
  }
  #menu .menu-item dl.food {
    margin-bottom: 10px;
  }

  /*-------------------------------------------
  About
  -------------------------------------------*/
  #about ul {
    flex-direction: column;
  }
  #about li {
    width: 100%;
  }
}
/*-------------------------------------------
  scroll
  -------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down{
  position:absolute;
  bottom:1%;
  right:50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #fff;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #fff;
    transform: skewX(-31deg);
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background:#fff;
}

@keyframes arrowmove{
   0%{bottom:1%;}
   50%{bottom:5%;}
   00%{bottom:1%;}
}

.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background-color: #ccc;
  border-radius: 50vh;
  transition: 0.3s;
}

.button a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 3px solid #333;
  border-left: 3px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

.button span {
  width: 0px;
  height: 0px;
  visibility: hidden;
}

.button a:hover {
  background-color: #333333;
}

.button a:hover::after {
  border-top: 3px solid #f2f2f2;
  border-left: 3px solid #f2f2f2;
  transform: translateY(-5px) rotate(45deg);
}


