@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

/* ----- Base ----- */
* { box-sizing: border-box;}
html { font-family: "Futura", "Century Gothic", "Noto Sans JP","sans-serif","Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO", sans-serif; font-size: 16px; line-height: 1.5; color: rgba(100, 100, 100, 1); }
h1, h2, h3, h4, h5, p, ul { margin: 0; }
ul { padding-left: 0; }
ul li { list-style-type: none; }
a { color: inherit; text-decoration: none; }
img { vertical-align: middle; }
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

h1 {
  font-size: 2vw;
  text-align: center;
  letter-spacing: 0.2vw;
  cursor: default;
}
button {
  border: none;
}

footer {
  font-size: 0.6em;
  text-align: center;
  margin: 12vh 0 3vh 0;
  color: rgb(148, 148, 148);
}

/* -------------------------------- sp size -------------------------------- */
/* ------------------------- sp home ------------------------- */
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.4em;
    margin-top: 4em;
    margin-bottom: 2em;
    text-align: center;
  }
  .pc {
    display: none;
  }
  body {
    margin: 0;
  }

/* sp header */
  .sp {
    width: 100%;
  }
  #nav-toggle {
    position: fixed;
    top: 2em;
    right: 2em;
    height: 32px;
    cursor: pointer;
    width: 3em;
    height: 3em;

    border-radius: 10%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  #nav-toggle > div {
    width: 20px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-\ transform: translateY(-50%) translateX(-50%);
  }
  #nav-toggle > div > span.toggle {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: rgba(240, 240, 240, 1);
    position: absolute;
    transition: top .5s ease, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .5s ease;
    transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  }
  header.deteal_header #nav-toggle > div > span.toggle {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: rgba(240, 240, 240, 1);
    position: absolute;
    transition: top .5s ease, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .5s ease;
    transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  }
  #nav-toggle span.toggle:nth-child(1) {
    top: 0;
  }
  #nav-toggle span.toggle:nth-child(2) {
  }
  #nav-toggle span.toggle:nth-child(3) {
    top: 10px;
  }
  .open #nav-toggle span.toggle {
    background: #fff;
  }
  .open #nav-toggle span.toggle:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span.toggle:nth-child(2) {
    top: 10px;
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span.toggle:nth-child(3) {
    top: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* sp z-index */
  #nav-toggle {
    z-index: 1000;
  }
  #container {
    z-index: 900;
  }
  #gloval-nav {
    background-color: rgba(20, 20, 20, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
  }
  #gloval-nav a {
    display: block;
    color: rgb(245, 245, 245);
    text-decoration: none;
    padding: 10px 0;
    transition: color .3s ease;
    font-size: .55em;
    font-weight: 300;
    letter-spacing: .5em;
  }
  #gloval-nav a:hover {
    color: #666;
  }
  #gloval-nav ul {
    list-style: none;
    padding: 0;
  }
  #gloval-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    transition: opacity .2s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .2s ease;
    transition: transform .3s ease, opacity .2s ease, -webkit-transform .3s ease;
  }
  #gloval-nav ul li:nth-child(2) {
    transition-delay: .03s;
  }
  #gloval-nav ul li:nth-child(3) {
    transition-delay: .06s;
  }
  #gloval-nav ul li:nth-child(4) {
    transition-delay: .09s;
  }
  #gloval-nav ul li:nth-child(5) {
    transition-delay: .12s;
  }
/* sp open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity .9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity .9s ease;
    transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
  }
  #nav-toggle {
    right: 20px;
    top: 20px;
  }
  #gloval-nav a {
    padding: 10px 0;
    font-size: .5em;
  }
 
/* sp main visual */
  .main .main-visual, .attachment-full {
    height: 50vh; /* 半画面表示 */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/shikumo-main-day.png);
  }
/* sp overlay */
  .overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    content: "";
    background: rgba(0, 0, 0, 0.3);
  }
/* sp text */
  .main-visual .text-box {
    position: absolute;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 50;
  }
  .main-visual .text-box > img {
    display: flex;
    width: 50%;
    margin: 0 auto;
  }
  .main-visual .title {
    font-family: Roboto;
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 50px;
    margin-top: 3vw;
    text-align: center;
    color: #fff;
  }
  .main-visual .description {
    color: white;
    text-align: center;
    margin-top: 2em;
  }
/* ----- sp coffeemug ----- */
  .main-visual  a {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -14vw;
    left: 0.2vw;
    padding-top: 5.4vw;
    text-align: center;
    color: rgba(230, 230, 230, 0.8);
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    cursor: auto;
  }
  .main-visual  a .coffee-mug {
    background-color: white;
    position: absolute;
    top: 15%;
    left: 52%;
    width: 14px;
    height: 20px;
    margin-left: -15px;
    border: 1px solid white;
    border-radius: 2px;
    box-sizing: border-box;
  }
  .main-visual  a .handle {
    position: absolute;
    width: 8.5px;
    height: 7.5px;
    right: -6px;
    top: 5px;
    border: 2px solid white;
    border-radius: 50%;
  }
  .main-visual  a .coffee-mug::before {
    position: absolute;
    top: -12px;
    left: 65%;
    content: '';
    width: 3px;
    height: 3px;
    margin-left: -3px;
    background-color: white;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
  }
  @-webkit-keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 1.5em);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      transform: translate(0, 1.5em);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

/* sp text */
  .main-visual .text-box {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .main-visual .text-box {
    font-size: 0.6em;
  }
  .main-visual .text-box .title {
    margin-bottom: 5vw;
  }

  /* sp buttom */
  button {
    background: transparent; 
    position: relative;
    margin-top: 2em;
    color: rgb(255, 255, 255, 0.8);
  }
  button div {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.7em;
  }

/* ----- sp info ----- */
  .info .info-wrap {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-top: 1.6em;
  }
  .info .info-content {
    padding-bottom: 0.8em;
  }
  .info .info-wrap .info-right {
    margin-top: 0.4em;
    font-size: 0.8em;
  }
  .info .info-wrap .info-date {
    margin-top: 0.8em;
    color: rgb(175, 156, 70);
  }

/* ------------------------- sp shop ------------------------- */
  .shop {
    width: 100%;
    margin: auto;
  }
  .swiper-container {
    width: 80%;
    margin-top: 2em;
  }
  .swiper-container .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
  :root {
    --swiper-navigation-color: rgba(250, 250, 250, 0.8);
    --swiper-pagination-color: rgba(250, 250, 250, 0.8);
  }
  .shop .shop-wrap {
    text-align: center;
    margin: 0 auto;
  }
  .shop-logo > img {
    width: 6em;
    height: auto;
    margin-top: 2em;
  }
  .shop .shop-desc {
    margin-top: 2em;
  }
  .shop .shop-desc p {
    font-size: 0.9em;
    line-height: 1.6em;

  }
  .shop .shop-desc a {
    font-size: 0.8em;
    line-height: 1.5em;
  }
  .shop .shop-desc .shop-small {
    margin-top: 3em;
    font-size: 0.6em;
    line-height: 0.8em;
  }.shop .shop-desc .shop-small br {
    margin-bottom: 1em;
  }
  .shop .shop-map {
    text-align: center;
  }
  .shop .shop-map iframe {
    width: 80%;
    height: 15em;
    margin-top: 3em;
  }

/* ------------------------- sp about ------------------------- */
  .about {
    text-align: center;
  }
  .about p {
    font-size: 0.8em;
    margin-top: 3em;
  }
  .about h4{
    margin-top: 4em;
  }

/* ------------------------- sp items ------------------------- */
  .items {
    width: 100%;
    height: auto;
    margin-top: 0.5em;
    display: flex;
    position: relative
  }
  .beans-item {
    width: 100%;
    text-align: center;
    position: absolute;
    color: rgb(255, 255, 255, 1.0);
  }
  .beans-item:first-child {
    width: 100%;
    margin-top: 2em;
  }
  .beans-content {
    margin-top: 118vw;
  }
  .beans-content h4 {
    font-size: 0.8em;
  }
  .beans-content small {
    font-size: 0.9em;
  }
  .beans-content p {
    font-size: 0.7em;
  }
  .beans-desc {
    margin-top: 3vw;
    line-height: 3.4vw;
  }

  /* ------------------------- sp drink ------------------------- */
  .drink-menu {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 0.8em;
    letter-spacing: 0.4em;
  }
  .drink-menu h4 {
    margin-top: 3em;
    margin-bottom: 1em;
  }
  .drink-menu p {
    line-height: 2em;
  }
  }/* -------------------------------- sp fin -------------------------------- */




/* -------------------------------- pc size -------------------------------- */
/* ------------------------- pc home ------------------------- */
/* ----- pc index ----- */
@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
  h1 {
    text-align: center;
    margin: 6vw 0 0 0;
  }

/* ----- pc header ----- */
  .header {
    width: 100%;
    height: 5em;
    position: fixed;
    z-index: 500;
  }
  .header ul {
    width: 100%;
    height: 5em;
    text-align: right;
    font-size: 0.9em;
    line-height: 5em;
  }
  .header li  {
    font-size: 1em;
    display: inline-block;
    padding: 0 1.2em;
    justify-content: center;
    color: rgb(250, 250, 250);
    transition: .5s;
  }
  .header li a > span {
    margin-top: 0;
    transition: .5s;
  }
  .header li a > span:hover {
    color: rgb(175, 156, 70);
    transform: rotateX(360deg);
  }
  .header span {
    margin-top: 1.4em;
    float: left;
  }
  .header img {
    margin-left: 2em;
    width: 2em;
  }
  .black {
    display: none;
  }
/* ----- pc sticy header ----- */
  .is-animation  {
    background-color: rgba(250, 250, 250, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .is-animation li {
    color: rgba(40, 40, 40, 1);
  }

/* ----- pc main ----- */
/* pc main visual */
  .main .main-visual, .attachment-full {
    height: 100vh; /* 全画面表示 */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* 画像はchange_visualで設定 */
  }
/* pc overlay */
  .overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height:100%;
    content: "";
    background-size: 3px 3px;
    background-image: linear-gradient(45deg, rgba(30, 30, 30, 0.3) 50%, rgba(60, 60, 60, 0.6) 50%);
  }
/* pc text */
  .main-visual .text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 80%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
  }
  .main-visual .text-box > img {
    display: flex;
    width: 40%;
    margin: 0 auto;
  }
  .main-visual .title {
    font-family: Roboto;
    font-size: 3vw;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    margin-bottom: 1.8vw;
  }
  .main-visual .description {
    font-size: 1.2vw;
    margin-top: 5vh;
    color: white;
    text-align: center;
  }
/* ----- pc coffeemug ----- */
  .main-visual  a {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -14vw;
    left: 0.2vw;
    padding-top: 5.4vw;
    text-align: center;
    color: rgba(230, 230, 230, 0.8);
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    cursor: auto;
  }
  .main-visual  a .coffee-mug {
    background-color: white;
    position: absolute;
    top: 15%;
    left: 50%;
    width: 28px;
    height: 40px;
    margin-left: -15px;
    border: 1px solid white;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .main-visual  a .handle {
    position: absolute;
    width: 17px;
    height: 15px;
    right: -12px;
    top: 12px;
    border: 5px solid white;
    border-radius: 50%;
  }
  .main-visual  a .coffee-mug::before {
    position: absolute;
    top: -22px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: white;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
  }
  @-webkit-keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 1.5em);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      transform: translate(0, 1.5em);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }


/* ------------------------- pc infomation ------------------------- */
/* ----- pc info ----- */
  .info .info-wrap {
    width: 60%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2em auto;
    margin-bottom: 4em;
  }
  .info .info-wrap .info-content {
    width: 100%;
    margin-top: 1.8em;
    padding-bottom: 0.6em;
    flex-grow: 1;
    border-bottom: 1px solid rgba(200, 200, 200, 0.6);
  }
  .info .info-wrap .info-left {
    width: 30%;
    height: auto;
    text-align: center;
    float: left;
  }
  .info .info-wrap .info-right {
    width: 70%;
    height: auto;
    float: right;
  }
  .info .info-wrap .info-date {
    font-size: 1em;
  }
  .info .info-wrap .info-right p {
    font-size: 1em;
    float: left;
    text-align: left
  }
  .info .info-wrap .info-date {
    color: rgb(175, 156, 70); 
  }

/* ----- pc shop ----- */
  .shop {
    width: 70%;
    margin: auto;
  }
  .swiper-container {
    width: 100%;
    margin-top: 4vw;
  }
  .swiper-container .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
  :root {
    --swiper-navigation-color: rgba(250, 250, 250, 0.8);
    --swiper-pagination-color: rgba(250, 250, 250, 0.8);
  }
  .shop .shop-wrap {
    width: 100%;
    margin-top: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .shop .shop-wrap .shop-logo {
    width: 20%;
    margin-left: 10%;
    text-align: center;
  }
  .shop-logo img {
    width: 20vw;
  }
  .shop .shop-desc {
    width: 60%;
    margin-left: 10%;
    text-align: center;
  }
  .shop .shop-desc p {
    font-size: 1.2vw;
    line-height: 2em;
  }
  .shop .shop-desc .shop-small {
    margin-top: 0.8vw;
    font-size: 0.7em;
    line-height: 1.4vh;
  }
  .shop .shop-map iframe {
    width: 100%;
    height: 30em;
    margin-top: 4vw;
  }
/* ----- pc about ----- */ 
  .about {
    text-align: center;
  }
  .about p {
    font-size: 0.9em;
    margin-top: 3em;
  }
  .about h4{
    margin-top: 4em;
  }



/* ------------------------- pc beans ------------------------- */
  .matrix {
    margin-top: 10vw;
  }
/* ----- pc beans main ----- */
  .items {
    display: flex;
    margin: 0 auto;
  }
/* ----- pc beans items ----- */
  .beans-items {
    width: 70%;
    margin-top: 4vw;
    position: relative;
  }
  .beans-item {
    width: 100%;
    position: absolute;
  }
  .items .beans-menu {
    width: 48%;
  }
  .items .beans-menu p {
    font-size: 1vw;
    line-height: 2vw;
  }
  .items > img {
    width: 100%;
    height: auto;
  }
  .beans-item h4 {
    font-weight: lighter;
    font-size: 1.2vw;
    padding-top: 1vw;
    font-weight: bold;
  }
  .beans-desc {
    margin-top: 1.2vw;
  }
  .beans-desc p {
    font-size: 0.8vw;
    line-height: 0.9vw;
    letter-spacing: 0.2vw;
  }
  .beans-content {
    color: rgb(255, 255, 255, 1.0);
    text-align: left;
    margin-top: 13vw;
    margin-left: 6vw;
  }
  .beans-content > button {
    color: rgb(255, 255, 255, 1.0);
    font-size: 1.4vw;
    text-align: left;
    margin-top: 2.5vw;
    transition-duration: 0.5s;
  }
  .beans-content > button:hover {
    color: rgb(175, 156, 70);
    cursor: pointer;
    font-size: 1.4vw;
    text-align: left;
    margin-top: 2.5vw;
  }
  /* buttom */
  button {
    background: transparent;;
  }
  button div {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.8em;
  }

  /* ------------------------- pc drink ------------------------- */
  #Area5 h1 {
    margin-bottom: 2em;
  }
  .drink {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .drink img {
    width: 100%;
    text-align:center;
  }
  .drink-menu {
    text-align: center;
  }
  .drink-menu h4 {
    margin-top: 4em;
    margin-bottom: 1em;
  }
  .drink-menu p {
    line-height: 2em;
  }