@charset "UTF-8";
/* CSS Document */
@media screen and (min-width:768px) {
  .left-box {
    width: calc(50% - 80px);
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    border-right: 1px solid #333;
  } 
  .center-box {
    width: calc(50% - 80px);
    position: relative;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0 40px;
  } 
}
/* ---------- main ---------- */
.main{
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
.slideshow-fade{
  position: relative;
  width: 100%;
  height: 100vh;
  li{
      list-style: none;
      width: 100%;
      height: 100%;
      img{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
      }
  }
}
.main-img-back {
  position: relative;
}
.main-img-back img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.main-img-logo {
  position: absolute;
  top: 25%;
}
.main-img-logo img {
  width: 40%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width:768px){
  .main-img-logo {
    display: none;
  }
}
/*=== 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scroll-down-2 {
  /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10px;
  left:50%;
}
/*Scrollテキストの描写*/
.scroll-down-2 span{
/*描画位置*/
position: absolute;
left:10px;
bottom:10px;
/*テキストの形状*/
color: #eee;
font-size: 0.7rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
}
/* 丸の描写 */
.scroll-down-2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#808080;
  /*丸の動き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;}
}
/* 線の描写 */
.scroll-down-2:after {
content:"";
/*描画位置*/
position: absolute;
bottom:0;
left:0;
/*線の形状*/
width:2px;
height: 50px;
background:#eee;
}
@media screen and (min-width:768px){
  .scroll-down-2 {
    display: none;
  }
}

/* ---------- main-text ---------- */
.main-text {
  width: 78%;
  margin: 40px auto;
}
.main-pc-img {
  display: none;
}
.main-selection {
  text-align: left;
}
.main-selection h1 {
  text-align: right;
  margin-top: -40px;
  margin-right: -30px;
  font-size: 1.4rem;
  font-weight: 300;
  padding-bottom: 40px;
}
.main-selection h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 2.8rem;
  padding-bottom: 40px;
  text-shadow: 1px 1px 5px #808080;
}
.main-selection p {
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.main-news {
  background: #FAFAFA;
  margin: 70px auto 0;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  max-width: 295px;
}
.main-news h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.main-news-item {
  text-align: left;
}
@media screen and (min-width:768px) {
  .main-text {
    width: 100%;
  }
  .main-pc-img {
    display: block;
    width: 100%;
  }
  .main-pc-img img {
    width: 100%;
    object-fit: contain;
  }
}
/* ---------- THEME ---------- */
.theme {
  width: 100%;
  margin: 100px auto;
}
.theme-img {
  width: 100%;
  position: relative;
}
.theme-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.theme-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
.theme-text {
  width: 78%;
  margin: 40px auto;
  text-align: left;
}
.theme-text p {
  font-size: 1.4rem;
  line-height: 1.8em;
}

@media screen and (min-width:768px){
  .theme-img img {
    height: 70vh;
  }
}

/* ---------- DRINK ---------- */
.drink {
  width: 100%;
  margin: 100px auto;
}
.drink-img {
  width: 100%;
  position: relative;
}
.drink-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.drink-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
.drink-text {
  width: 78%;
  margin: 40px auto;
  text-align: left;
}
.drink-text p {
  font-size: 1.4rem;
  line-height: 1.8em;
}

@media screen and (min-width:768px){
  .drink-img img {
    height: 70vh;
  }
}

/* ---------- SPACE ---------- */
.space {
  width: 100%;
  margin: 100px auto;
}
.space-img {
  width: 100%;
  position: relative;
}
.space-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.space-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
.space-text {
  width: 78%;
  margin: 40px auto;
  text-align: left;
}
.space-text p {
  font-size: 1.4rem;
  line-height: 1.8em;
}

@media screen and (min-width:768px){
  .space-img img {
    height: 70vh;
  }
}

/* ---------- COFFEE ---------- */
.coffee {
  width: 100%;
  margin: 100px auto;
}
.coffee-img {
  width: 100%;
  position: relative;
}
.coffee-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.coffee-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
.coffee-text {
  width: 78%;
  margin: 40px auto;
  text-align: left;
}
.coffee-text p {
  font-size: 1.4rem;
  line-height: 1.8em;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-svg {
  font-weight: 700;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}
a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #000;
  stroke-width: 1;
  stroke-dasharray: 210px, 20px;
  stroke-dashoffset: 70px;
}
a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}
a.btn-svg span {
  color: #000;
}

@media screen and (min-width:768px){
  .coffee-img img {
    height: 70vh;
  }
}

/* ---------- Online Shop ---------- */
.shop {
  width: 100%;
  margin: 100px auto;
}
.shop-img {
  width: 100%;
  position: relative;
}
.shop-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.shop-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
.shop-text {
  width: 78%;
  margin: 40px auto;
  text-align: left;
}
.shop-text p {
  font-size: 1.4rem;
  line-height: 1.8em;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-svg {
  font-weight: 700;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}
a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #000;
  stroke-width: 1;
  stroke-dasharray: 210px, 20px;
  stroke-dashoffset: 70px;
}
a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}
a.btn-svg span {
  color: #000;
}

@media screen and (min-width:768px){
  .shop-img img {
    height: 70vh;
  }
}

/* ---------- IMAGE ---------- */
.image {
  width: 73%;
  margin: 60px auto;
}
/* app */
.app-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.app-img img {
  width: 78%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.app-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
/* instagram */
.instagram-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.instagram-img img {
  width: 78%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.instagram-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
/* online */
.online-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.online-img img {
  width: 78%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.online-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
@media screen and (min-width:768px){
  .image {
    width: 100%;
  }
}

/* ---------- footer ---------- */
.footer {
  height: auto;
  padding-top: 20px;
  font-size: 1.4rem;
  position: relative;
}
.footer-logo {
  text-align: left;
  width: 89%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo-img {
  width: 100px;
}
.footer-logo-img img{
  width: 100%;
  object-fit: cover;
}
.footer-logo-instagram img {
  width: 40px;
  padding-right: 40px;
}
.footer p {
  font-size: 1rem;
  padding-bottom: 20px;
}
/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5vw;
  bottom: 5vw;
  height: 50px;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  color: #333333;
  padding: 0 0 0 30px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/