@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
 font-family: 'Noto Sans JP', sans-serif;
font-size: 1.7rem;
font-weight: normal;
background-color: #F7F6ED;
-webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  display: block;
  font-family: 'Kiwi Maru', serif;
}

img {
  width: 100%;
}

li {
  list-style: none;
}

.wrapper {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding:0 8%;
}

h2,
h3,
h4 {
  font-family: 'Kiwi Maru', serif;
}


.sec-title .ja {
  letter-spacing: 0.5em;
  text-align: center;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #CE863C;
}

.sec-title .en {
  text-align: center;
  display: block;
  font-size:7rem;
  letter-spacing: 0.07em;
  font-weight: normal;
}

.sec-title .en span {
  color: #CE863C;
}

#menu .sec-title,
#news  .sec-title{
  position: relative;
}

#menu .sec-title::before,
#news .sec-title::before{
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: #000;
  bottom: -40px;
  left: 50%;
}


.btn {
  text-align: center;
}

.btn a {
  display: inline-block;
  letter-spacing: 0.2em;
  width: 250px;
  height: 60px;
  line-height: 60px;
  border-radius: 40px;
  border: 2px solid #121A0B;
  color: #fff;
  background-color: #121A0B;
  text-align: center;
  transition: all 0.3s ease;
}

.btn a:hover {
  color: #121A0B;
  background-color: #fff;
}

#you .btn a {
  border: 2px solid #fff;
  background-color: rgba(0,0,0,0);
  transition: all 0.3s ease;
}

#you .btn a:hover {
  background-color: #fff;
  color: #121A0B;
  opacity: 1;
}

.fa-chevron-right {
  font-size: 1.7rem;
  margin-left: 10px;
}

/*------header--------*/
#header {
  position: absolute;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  z-index: 10;
  font-family: 'Kiwi Maru', serif;
}

.site-title {
position: absolute;
left: 4.5%;
top: 4%;
width: 7.5%;
height: auto;
}

#header .header-nav {
  position: absolute;
  width: 80%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

#header .header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  -js-display: flex;
}

#header .header-nav li {
padding: 0 3%;
  border-left: 1.5px solid #fff;
}

#header .header-nav li:first-child {
  border-left: none;
}

#header .header-nav .ja {
  position: relative;
  font-size: 1.7vw;
  display: block;
}

#header .header-nav .en {
  display: block;
  text-align: center;
  font-size: 1.1vw;
  letter-spacing: 0.2em;
}

#header .header-nav li a {
  position: relative;
  color: #fff;
  transition: all 0.3s ease;
}

#header .header-nav li a:hover {
  color: #F1D8AF;
}

#header .header-nav li a::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1.4px;
  background: #F1D8AF;
  transition: all 0.5s ease;
  transform: scale(0,1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

#header .header-nav li a:hover::after {
  transform: scale(1,1);
}

/*----------------nav button------------*/
#nav-toggle {
  position:fixed;
  z-index: 1000;
  right: 3%;
   top: 4%;
  width: 90px;
  height: 90px;
  background-color: #582707;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}

#nav-toggle:hover {
  opacity: 0.7;
}

#nav-toggle.open {
  background-color: transparent;
}

#nav-toggle>div span {
  position:absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.5s ease;
}

#nav-toggle.open>div span {
left: 27%;
}

#nav-toggle>div span:nth-child(1) {
  top: 25%;
}

#nav-toggle>div span:nth-child(2) {
  top: 40%;
}

#nav-toggle>div span:nth-child(3) {
  top: 55%;
}

#nav-toggle.open>div span:nth-child(1) {
  top: 40%;
  transform: rotate(45deg);
}

#nav-toggle.open>div span:nth-child(2) {
  top: 40%;
  transform: rotate(45deg);
}

#nav-toggle.open>div span:nth-child(3) {
  top: 40%;
  transform: rotate(-45deg);
}

body.open,
html.open {
  overflow: hidden;
}


#nav-toggle>div p {
  position:absolute;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: 60%;
}


/*------------open-nav------*/
#open-nav {
  position: fixed;
  z-index: 100;
  background: #121A0B;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateY(-100vh);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 0;
  box-sizing: border-box;
  transition: all 1s ease;
  -js-display: flex;
}

#open-nav.open {
  transform: translateY(0);
  opacity: 1;
}

#open-nav .open-logo {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 25px;
-js-display: flex;
width: 100%;
height: auto;
}

#open-nav .open-logo img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#open-nav .open-logo .icon-mame {
  font-size: 8rem;
  color: #fff;
}
#open-nav ul li {
  text-align: center;
  margin-bottom: 10px;
}

#open-nav ul a {
display: inline-block;
}

#open-nav ul .ja {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  display: block;
}

#open-nav ul .en {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  transform: translateY(-4px);
}

#open-nav li a {
  position: relative;
  color: #fff;
}

#open-nav li a:hover {
  color: #F1D8AF;
}

#open-nav li a::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 10%;
  width: 80%;
  height: 1.2px;
  background: #F1D8AF;
  transition: all 0.5s ease;
  transform: scale(0,1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

#open-nav li a:hover::after {
  transform: scale(1,1);
}

/*--------------nav-sns---------*/
#nav-sns {
  position: fixed;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 10px 8px;
  background: #121A0B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  -js-display: flex;
}

#nav-sns p {
  position: relative;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 40px;
}

 #nav-sns p::before {
   position: absolute;
   content: "";
   bottom: -28px;
   left: 48%;
   width: 1.5px;
   height: 20px;
   background: #fff;
 }

#nav-sns ul {
  text-align: center;
}

#nav-sns li {
  margin-bottom: 7px;
}

#nav-sns .fab {
  font-size: 2.1rem;
  color: #fff;
  transition: all 0.3s ease;
}

#nav-sns .fab:hover {
  color: #F1D8AF;
}

/*------top-------*/

#top {
  width: 100%;
  height: 100vh;
  position: relative;
margin-bottom: 40px;
}

.slider {/*-----slider-----*/
  position:relative;
	z-index: 1;
  width: 100%;
	height: 100vh;
}

.slider-item {
    width: 100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slider-item img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#top .top-logo {
position: absolute;
z-index: 3;
height: 100%;
display: flex;
-js-display: flex;
flex-direction: column;
align-items: center;
writing-mode: vertical-rl;
-ms-writing-mode:tb-rl;
letter-spacing: 0.3em;
font-size: 2.8vw;
font-family: 'Kiwi Maru', serif;
color: #CE863C;
top: 2%;
left: 50%;
transform: translateX(-50%);
text-align: center;
}

#top .top-logo p:first-child {
  background: rgba(255,255,255,0.8);
  padding: 15px 3px;
  box-shadow:  0 0 3px   rgba(255,255,255,0.8);
  opacity: 0;
  animation: pfadein 2s ease-in-out  forwards;
}

#top .top-logo p:nth-child(2) {
  background: rgba(255,255,255,0.8);
  box-shadow:  0 0 3px   rgba(255,255,255,0.8);
  padding: 15px 3px;
  margin-right: 20px;
  margin-top: 3em;
  opacity: 0;
  animation: pfadein 2s ease-in-out 1s forwards;
}

@keyframes pfadein {
  100%{opacity: 1;}
}

/*----scroll down-----*/
.scrolldown2 {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
}

.scrolldown2 span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
	font-size: 1rem;
	letter-spacing: 0.1em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5px;
  height: 50px;
  background: #eee;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation: circlemove 1.6s ease-in-out infinite,
cirlemovehide 1.6s ease-out infinite;
}


@keyframes  circlemove{
  0%{bottom: 45px;}
  100%{bottom: -5px;}
}

@keyframes  cirlemovehide{
  0%{opacity: 0;}
  50%{opacity: 1;}
  80%{opacity: 0.9;}
  100%{opacity: 0;}
}
/*---------------you----------*/

#you {
  display: flex;
  -js-display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
 height: 700px;
  background: url(../img/top-about.jpg) no-repeat center center ;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

#you::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.3);
}

#you .you-blk {
  position: relative;
  border: 2px solid #fff;
  padding: 5% 9% 4%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

#you .you-blk::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 70px;
  background: #fff;
  left: 50%;
  top: -40px;
  transform: translateY(-60%);
  transform: scale(1,0);
  transform-origin: left top;
  animation: aboutborder 2s ease-in-out infinite;
}

@keyframes aboutborder {
  100%{transform: scale(1,1);}
}

.you-blk .sec-title{
  color: #fff;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.you-blk .you-text {
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}

/*------menu-------*/

#menu {
padding-top: 120px;
padding-bottom: 120px;
position: relative;
}

#menu::before {
  position: absolute;
  content: "";
  border: 430px solid #fff;
  border-bottom: 430px solid transparent;
  border-right:  430px solid transparent;
  top: 0;
  left: 0;
}

#menu .wrapper .sec-title {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

#menu .menu-toptext {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 2;
  margin-bottom: 90px;
}

#menu .menu-blk {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 80px;
  background-color: rgba(0,0,0,0,);
}

.menu-blk .menu-photo{
  position: absolute;
  width: 70%;
  height: 500px;
  right: 0;
  transform: translateY(100px);
  opacity: 0;
  background: url(../img/top-menu-coffee4.jpg) no-repeat center center;
  background-size: cover;
  transition: all 0.8s ease;
}

.menu-blk .menu-text {
  position: absolute;
  z-index: 100;
  line-height: 2;
  left: 4%;
  top: 120px;
  width:550px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 1s 0.2s ease;
}

.menu-blk .ossme {
  display: flex;
  -js-display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1.3;
  letter-spacing: -0.1em;
  color: #fff;
  font-family: 'Kiwi Maru', serif;
  text-align: center;
  background: #121A0B;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  transform: translateX(-15px);
  transform: translateY(5px);
}

.menu-blk .price {
  font-size: 3.4rem;
  text-shadow: 0 0 3px #fff;
   font-family: 'Kiwi Maru', serif;
   font-weight: 500;
   padding: 3px 5px;
   border-bottom: 2px solid #000;
   position: relative;
}

.menu-blk .price-yen{
  font-size: 2.2rem;
  text-shadow: 0 0 3px #fff;
  text-align: right;
   font-family: 'Kiwi Maru', serif;
   letter-spacing: 0.1em;
  font-weight: bold;
  margin-right: 20px;
  margin-bottom: 20px;
}

.menu-blk .text {
  text-shadow: 0 0 4px #ffffff;
  padding-right: 5rem;
  line-height: 2.2;
}

@media screen and (max-width: 1024px) {
  .menu-blk .text {
    padding-right: 2rem;
  }
}

/*--------menu slider---------*/
.menu-slider {
  background: #fff;
  margin-bottom: 60px;
}

.menu-slider img {
  width: 100%;
  height: auto;
}

.menu-slider .slick-slide {
  margin: 40px 20px;
}

/*-----------news---------------*/
#news {
  margin-bottom: 140px;
}
#news .news-blk {
  background-color: #fff;
  padding: 80px 0;
}

#news .sec-title {
  margin-bottom: 80px;
}

#news .news-ul {
  width: 80%;
  margin: 0 auto 60px;
}

.news-blk .news-ul>li {
display: flex;
-js-display: flex;
align-items: center;
padding: 30px 0;
border-bottom: 2px solid #000;
}

.news-blk .news-ul>li:first-child {
  padding: 0 0 30px 0;
}

.news-blk .news-ul>li:last-child {
  padding: 30px 0 0 0;
  border-bottom: none;
}

.news-ul .icon-news {
  width: 15%;
  font-size: 7rem;
  text-align: right;
}

.news-ul .news-text {
  width: 85%;
  padding-left: 5%;
  box-sizing: border-box;
}

.news-ul .news-text li:nth-child(2) {
  font-size: 1.7rem;
}

/*--------shop info------------*/
#shop-info {
  width: 100%;
  height: 600px;
  display: flex;
  -js-display: flex;
  position: relative;
}

#shop-info .info-blk {
  width: 40%;
  color: #000;
  font-size: 1.7rem;
  box-sizing: border-box;
  padding: 5% 2% 0 0;
}

#shop-info .sec-title .ja {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing:2em;
  margin-left: 1em;
}

#shop-info .sec-title .en {
  font-size: 5.7rem;
  letter-spacing: 0.1em;
}

#shop-info .sec-title {
  display: inline-block;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

#shop-info .sec-title::before {
  position: absolute;
  content: "";
  height: 1.5px;
  width: 250%;
  background-color: #000;
  left: 0;
  bottom: -20px;
}

.info-blk .info-text {
  width: 100%;
  display: flex;
  -js-display: flex;
  flex-wrap: wrap;
}

.info-blk .info-text dt {
  width: 40%;
  text-align: justify;/*横幅いっぱいにする*/
    text-align-last: justify;
    text-justify: inter-character;
margin-bottom: 30px;
box-sizing: border-box;
position: relative;
}

.info-blk .info-text dt::before {
position: absolute;
content: "";
width: 1.5px;
height: 1.5em;
background: #000;
right: 0;
top: 0.1em;
transform: rotate(45deg);
}

.info-blk .info-text dd {
  width: 60%;
 padding-left: 10%;
 box-sizing: border-box;
 margin-bottom: 25px;
 letter-spacing: 0.2em;
}

.info-blk .info-text dd a {
  position: relative;
  display: inline-block;
border-bottom: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

.info-blk .info-text dd a:hover {
opacity: 0.5
}

.info-blk .info-text dd:last-child {
  margin-bottom: 0;
}

#shop-info .info-map {
  width: 60%;
  height: 80%;
  object-fit: cover;
  position: relative;
  box-sizing: border-box;
}


/*---------------footer-------------------*/
#footer {
  padding: 80px 20% 40px;
  box-sizing: border-box;
  background: url(../img/footer1.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  -js-display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 2rem;
}

#footer a {
  position: relative;
  color: #fff;
  transition: all 0.3s ease;
}

#footer a:hover {
  color: #F1D8AF;
}

#footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

#footer .footer-logo {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
}

#footer .footer-logo a {
  width: 15%;
  height: auto;
  margin: 0 auto;
}

#footer .footer-ul {
  position: relative;
  width: 100%;
  display: flex;
  -js-display: flex;
  justify-content: center;
  border-bottom: 1.5px solid #fff;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#footer .footer-ul li{
  display: flex;
  -js-display: flex;
  align-items: center;
}

#footer .footer-ul li:first-child {
  padding-left: 60px;
}


#footer .footer-ul li:last-child {
  padding-left: 100px;
}

#footer .footer-ul li i {
  margin-right: 10px;
}

#footer .footer-nav {
  position: relative;
  display: flex;
  -js-display: flex;
}

#footer .footer-nav {
margin-bottom: 15px;
}

#footer .footer-nav li a {
  padding: 0 30px;
  border-left: 2px solid #fff;
}

#footer .footer-nav li:first-child a {
  border-left: none;
}

#footer .footer-sns {
  position: relative;
display: flex;
-js-display: flex;
margin-bottom: 80px;
}

#footer .footer-sns p {
  letter-spacing: 0.15em;
  margin-right: 20px;
}

#footer .footer-sns ul {
  display: flex;
  -js-display: flex;
}

#footer .footer-sns ul li {
  margin-right: 12px;
}

#footer .copyright {
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

/*------backtotop---------*/
#backToTop {
  position: fixed;
  z-index: 100;
  background: #121A0B;
  font-family: 'Kiwi Maru', serif;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  right: 15px;
  bottom: -70px;
  cursor: pointer;
  transition: all 0.5s ease;
}

#backToTop::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  left: calc(50% - 8px);
 top:35%;
  transform: rotate(45deg);
}

#backToTop.action {
  bottom: 15px;
}

#backToTop p {
  position: absolute;
  color: #fff;
  letter-spacing: 0.1em;
  bottom: 17%;
  left: 50%;
  transform: translateX(-47%);
}

#backToTop.open {
  display: none;
}
