@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
}
html {
  font-family: "Raleway", "Open Sans", sans-serif;

  min-height: 100%;
  scroll-behavior: smooth;
}

section {
  width: 100%;
}

.about {
  background-image: url(../img/beige-plain-textured-background-fabric-block-prints.jpg);
  width: 100%;
  height: 130%;
}

.menu {
  background-image: url(../img/beige-plain-textured-background-fabric-block-prints.jpg);
  width: 100%;
  height: 100vh;
}

footer {
  position: relative;
  bottom: 0px;
}

.location {
  width: 100%;
  background-color: #9c683b95;
}
.first {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  background-image: url(/img/beige-plain-textured-background-fabric-block-prints.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 3.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    background-image: url(/img/beige-plain-textured-background-fabric-block-prints.jpg);
  }

  60% {
    opacity: 1;
    background-image: url(/img/beige-plain-textured-background-fabric-block-prints.jpg);
  }

  100% {
    opacity: 1;
    position: absolute;
    background-image: none;
    z-index: 4;
  }
}

/* 
.loading_box {
  background-color: orange;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9992;
  background-color: orange;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;

  opacity: 0;

  animation-delay: 2s;

  animation: fadeIn_later 2s forwards;
}

@keyframes fadeIn_later {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }

  100% {
    opacity: 0.3;
    transform: scale(50);
  }
} */

.loading__logo {
  opacity: 1;
  animation: logo_fade 3s forwards;
  width: 30%;
  z-index: 999;
}

@keyframes logo_fade {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }

  60% {
    opacity: 1;

    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1.5);
  }
}

header {
  height: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 4;
}

h1 a img {
  width: 100px;
}
h1 {
  padding: 10px;
}

a {
  color: #222222;
  text-decoration: none;
}

.content {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 70%;
  transform: translateY(-50%);
}
.content h1,
.content h4 {
  color: #1f2822;
}
.content h1 {
  font-size: 6vmin;
}
.content h4 {
  font-size: 3vmin;
}
.content a {
  color: #1f2822;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5vw;
  background-color: #fff;
  transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: width;
  z-index: 3;
}

.sns_in_nav01 img {
  width: 48px;
  height: 50px;
  position: absolute;
  bottom: -10%;
  right: 5%;
}
.sns_in_nav02 img {
  width: 58px;
  height: 58px;
  position: absolute;
  bottom: -23%;
  right: 4.4%;
}
.nav.is-active {
  width: 45%;
}

.nav__trigger {
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -10px;
  padding: 8px 0;
  transition: 0.2s ease-in-out;
  z-index: 1;
}
.nav__trigger .bars {
  position: relative;
}
.nav__trigger .bars,
.nav__trigger .bars:before,
.nav__trigger .bars:after {
  width: 28px;
  height: 4px;
  background-color: rgb(255, 165, 0);
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}
.nav__trigger .bars:before,
.nav__trigger .bars:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
.nav__trigger .bars:before {
  transform: translateY(-8px);
}
.nav__trigger .bars:after {
  transform: translateY(8px);
}
.nav__trigger.is-active {
  transform: rotate(-45deg);
}
.nav__trigger.is-active .bars:before,
.nav__trigger.is-active .bars:after {
  transform: translateX(0) rotate(-90deg);
}

.nav__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 3.75rem 1rem 2.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: 0s linear 0.25s;
}
.nav__content.is-active {
  visibility: visible;
  opacity: 1;
  transition: 0s linear;
}
.nav__content.is-active .nav__item a {
  opacity: 1;
  transform: translateY(0);
  transition-property: transform, opacity, color;
  transition-duration: 0.55s, 0.55s, 0.3s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out,
    ease-in-out;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
  transition-delay: 0s, 0s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
  transition-delay: 0.05s, 0.05s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
  transition-delay: 0.1s, 0.1s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
  transition-delay: 0.15s, 0.15s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
  transition-delay: 0.2s, 0.2s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
  transition-delay: 0.25s, 0.25s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
  transition-delay: 0.3s, 0.3s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
  transition-delay: 0.35s, 0.35s, 0s;
}
.nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
  transition-delay: 0.4s, 0.4s, 0s;
}

.nav__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  overflow: hidden;
}
.nav__item a {
  display: inline-block;
  padding: 1rem;
  color: #653838;
  text-decoration: none;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 3.5vw;

  font-weight: 300;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform, opacity;
}
.nav__item a:hover {
  color: white;
}

.nav__divider {
  margin: 1.75rem 0 1.5rem;
  width: 100%;
  height: 2px;
  background-color: #9ac6ac;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.list {
  display: block;
  flex-wrap: wrap;
}
.item {
  position: relative;
  width: auto;
  height: 200px;
  padding-top: 80px;
  text-align: center;
  box-sizing: border-box;
  counter-increment: item;
}
.item:after {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  content: counter(item);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
}
main {
  width: 100%;
  position: relative;
}

/* ul li {
  list-style: none;
  font-size: 0.5em;
  align-items: center;
} */

/* li a {
  text-decoration: none;
  width: 4%;
}

/* .reserve a {
  width: 100%;
  position: absolute;
  writing-mode: vertical-rl;
  bottom: -100px;
  font-size: 3.5em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: inline-block;
  margin: 0 auto;
} */
/* 
.hero_all {
  display: flex;
  justify-content: space-between;
} */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.logo {
  z-index: 5;
  /* width: 300px;
  height: 300px; */

  position: relative;
}

.logo img {
  width: 300px;
  position: absolute;
  margin: 0 auto;
  right: 0px;
  left: 0px;
  top: 200px;
  color: white;
  z-index: 999;
}

.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: -1.8%;
  left: 98%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: -7px;
  bottom: 80px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  z-index: 1;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 10px;
  left: -2px;
  /*丸の形状*/
  width: 7px;
  height: 5px;
  border-radius: 50%;
  background: #eee;

  animation: circlemove 2s ease infinite;
}

@keyframes circlemove {
  0% {
    transform: translate(0%, -45px);
    opacity: 1;
  }
  100% {
    transform: translate(0%, 0px);
    opacity: 1;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 77px;
  background: #eee;
}

.hero_img01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url(../img/pexels-haley-black-3968061.jpg);
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

.hero_img02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url(../img/pexels-lawrence-suzara-1581554.jpg);
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-delay: 4s;
}

.hero_img03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url(../img/c.jpg);
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-delay: 8s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
.neeews {
  display: flex;
}
.neeews p {
  position: absolute;
  width: 50%;
  top: 93%;
  left: 28%;
  background-color: white;
  z-index: 1;
  text-align: center;
  padding: 0.5%;
  border-radius: 99999px;
  font-size: 0.7em;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue";
}

.news {
  font-size: 1.1em;
  font-weight: bold;
  color: #ffa500;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.border {
  width: 5%;
  border: 0.8px solid black;
  writing-mode: vertical-rl;
  vertical-align: middle;
}

.arrow img {
  width: 2.6%;
  position: absolute;
  right: 2%;
}
h2 {
  width: 100%;
}

.headline_title {
  padding-bottom: 3%;
  display: flex;
  padding-top: 3%;
  width: fit-content;

  letter-spacing: 0.03em;
  font-size: 3em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-align: center;
  margin: 0 auto;
}
.headline_title_inner {
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
}
.headline_title_inner span {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.headline_title_single {
  min-height: min-content;
}
/* .headline_title::before {
  width: 5%;
  content: "=";
  font-family: serif;
  padding: 3%;
}
h2::after {
  width: 5%;
  content: "=";
  font-family: serif;
  padding: 3%;
} */

/* .hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 24s linear infinite;
} */
/* 
@keyframes slideshow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
} */

.about {
  width: 100%;
  height: 100vh;
  position: relative;
}

.fade {
  width: 50%;
  height: 430px;
  margin: 0 auto;
  position: absolute;
  top: 35%;
  right: 40%;
  object-fit: cover;
}
.slick-track img {
  border-radius: 40px;
  padding: 30px;
  width: 10%;
  height: 430px;
  object-fit: cover;
}

.about p {
  /* position: absolute; */
  width: 30vw;
  /* top: 45%;
  left: 10%; */
  background-color: #fff;

  line-height: 1.9em;
  margin-left: 10%;
  padding-top: 0.5%;
}

p.what_about {
  /* position: absolute;
  top: 10%;
  left: 20%; */
  width: fit-content;
  padding-top: 2%;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: orange;
}
p.about_us {
  width: fit-content;
  margin-left: 10%;
  /* position:absolute; */
  /* top: 20%;
  left: 10%; */
  font-size: 2.3em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.message {
  position: absolute;
  background-color: #fff;

  border-radius: 9px;
  width: 38%;
  height: 40vh;
  top: 25%;
  left: 55%;
}

p.text {
  line-height: 2.5em;
  font-size: 0.8em;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.k_car_buttom {
  z-index: 4;
  position: fixed;
  top: 150px;
  right: 0px;
  display: inline-block;
  width: 130px;
  height: 100px;
  border: 3px solid black;
  border-radius: 30% 0 0 30%/60%;
  background-color: #fff;
  overflow: hidden;
}

.k_car_buttom img {
  z-index: 99999999999999999999999999999999999999999;
  position: relative;
  top: 6px;
  left: 40px;
  width: 50px;
  height: 40px;
  animation: car ease 5s 1s infinite;
}
@keyframes car {
  0% {
    transform: translateX(200px);
  }
  50% {
    transform: translatex(0px);
  }
  100% {
    transform: translatex(-200px);
  }
}

.k_car_buttom p {
  width: 50px;
  font-size: 1.2em;
  position: relative;
  top: 2px;
  right: -13px;
  text-align: left;
  font-weight: bold;
  line-height: 0.9em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.menu {
  position: relative;
}

.menu_info p {
  width: 500px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 0.9em;
}
/* .more {
  position: absolute;
  width: 140px;
  height: 50px;
  top: 25%;
  left: 45%;
  border: 3px solid orange;
  border-radius: 999px;
  background-color: #fff;
} */
.more a {
  position: absolute;
  margin: 0 auto;
  font-size: 1.5em;
  width: 140px;
  top: 240px;
  left: 45%;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  border-radius: 99px;
  border: 3px solid orange;
  color: orange;
  font-weight: bold;
  z-index: 4;
}

.more a:hover {
  background-color: orange;
  color: white;

  transition: 0.1s;
}

.sb_name01 {
  width: 10%;
  position: absolute;
  top: 9%;
  left: 52%;
  transform: rotate(-12deg);
  z-index: 3;
}
.sb_name02 {
  width: 10%;
  position: absolute;
  top: 9%;
  left: 52%;
  transform: rotate(-12deg);
  z-index: 3;
}
.sb_name03 {
  width: 10%;
  position: absolute;
  top: 11%;
  left: 53%;
  transform: rotate(-12deg);
  z-index: 3;
}

.sb_name04 {
  width: 10%;
  position: absolute;
  top: 75%;
  left: 54%;
  transform: rotate(-12deg);
  z-index: 3;
}
.menu_info p {
  width: 40vw;

  text-align: center;
  z-index: 3;
}
/* パスタ */

.menu .item01 {
  position: absolute;
  width: 30%;
  top: 25%;
  left: 60%;
}
/* オムレツ */

.menu .item02 {
  position: absolute;
  width: 20%;
  top: 55%;
  left: 50%;
}

/* ミント */

.menu .item03 {
  position: absolute;
  width: 10%;
  top: 30%;
  left: 50%;
}

/* パンケーキ */

.menu .item04 {
  position: absolute;
  width: 50%;
  top: 25%;
  left: 10%;
}

/* サラダ */
.menu .item05 {
  position: absolute;
  width: 17%;
  top: 55%;
  left: 65%;
}

/* オレンジ */

.menu .item06 {
  position: absolute;
  width: 12%;
  top: 30%;
  left: 35%;
}

/* コーヒー豆 */
.menu .item07 {
  position: absolute;
  width: 8%;
  top: 75%;
  left: 45%;
}
/* トースト */
.menu .item08 {
  position: absolute;
  width: 25%;
  top: 25%;
  left: 10%;
}

/* ラテアート */
.menu .item09 {
  position: absolute;
  width: 25%;
  top: 40%;
  left: 40%;
}
.k_car_container {
  position: relative;
}
.k_car_container {
  width: 100%;
  height: 100vh;
  background-image: url(../img/abstract-textured-backgound.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.car {
  width: 60%;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 40%;
}
.car img {
  width: 55%;
  height: 40%;
  margin: 0 auto;
  border-radius: 13px;
}
.k_car_detail {
  position: absolute;
  width: 40%;
  height: 40%;
  top: 50%;
  left: 18%;
  background-color: #fff;
  margin: 0 auto;
  border: 3px solid black;
  border-radius: 9px;
}
.k_car_detail p {
  width: 100%;
  height: 55%;
  margin: 0 auto;
  font-size: 0.9em;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
.k_car_schedule {
  width: 100%;
  height: 10%;
  display: flex;

  margin: 0 auto;
}

.spot {
  text-decoration: underline;
  color: orange;
}

.intro {
  width: 100%;
  height: 100%;
  padding: 5%;
  font-size: 0.5em;
  line-height: 1.3em;
}
/* .area::before {
  content: "";
  flex-grow: 2;
  height: 2px;
  background: #000;
  margin: 0 2em;
} */
.event_container {
  width: 85%;
  height: 100%;
  margin: 0 auto;
}
.event_container li {
  font-size: 1.1em;
  width: 100%;

  border-bottom: 2px solid grey;
  margin: 0 auto;
  padding: 1%;
  list-style: none;
}
p.date {
  font-size: 0.8em;
  width: 100%;
  text-align: justify;
}
p.area {
  font-size: 0.8em;
  width: 100%;
  text-align: justify;
}

iframe {
  width: 100%;
  height: 50vh;
  margin: 0 auto;
  text-align: center;
}
.map_box {
  width: 90%;
  bottom: 6%;
}

.map_box {
  width: 90%;
  margin: 0 auto;
}

.to_map a {
  width: 13%;

  border: 4px solid orange;
  border-radius: 999px;
  top: 140px;
  right: 370px;
  background-color: #fff;
  text-align: center;
}

.to_map a:hover {
  transition: 0.1s;
  color: #fff;
}

.to_map a:hover {
  background-color: orange;
  border: 4px solid #653838;

  transition: 0.3s;
}
dt {
  color: orange;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding-top: 3%;
}

.to_reserve {
  display: block;
  width: 160px;
  height: 40px;
  background-color: orange;
  border-radius: 99px;
  text-decoration: none;
  align-items: center;
  padding: 7px;
  color: #fff;
  text-align: center;
}
.to_reserve a span {
  padding-left: 0.5em;
}

.to_reserve a:hover {
  color: orange;
  background-color: #fff;
  border: 4px solid orange;
  transition: 0.1s;
  align-items: center;
}
a.space01 {
  letter-spacing: 5em;
}
.footer_box01 {
  background-image: url(../img/23379.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;

  width: 100%;
  height: 50vh;
  object-fit: cover;
  position: relative;
  margin: 0 auto;
  text-align: center;

  align-items: center;
}
.footer_box01 p {
  width: 40%;
  color: #fff;
  font-weight: bold;
  font-size: 3em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  z-index: 1;

  /*   
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%);
  margin: 0 auto; */
}

.footer_item {
  height: 50vh;
  margin: 0 auto;
  width: 95%;
  text-align: center;
  padding-top: 5%;
}
p.welcome {
  width: 50%;

  margin: 0 auto;
  text-align: center;

  -webkit-text-stroke: 1.5px black;
  /* background-color: orange; */
  border-radius: 20px;
}

.attention {
  width: 100%;
  text-align: center;
}
.attention p {
  width: fit-content;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.8em;
  color: white;
  background-color: orange;
  border-radius: 9999px;
  font-size: 0.8em;
  margin: 0 auto;
  margin-top: 2%;
}

.buttom_box {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 auto;

  margin-top: 3%;
}

.howto {
  width: 200px;
}

.yoyaku {
  width: 200px;
}

.howto a {
  border: white 2px solid;

  font-size: 1.1em;

  align-items: baseline;
  text-decoration: none;
  background-color: #fff;
  color: orange;
  text-align: center;
  border-radius: 9999px;
  padding: 0px 15px;
}
.yoyaku a {
  border: white 2px solid;

  font-size: 1.1em;

  align-items: baseline;

  text-decoration: none;
  background-color: #fff;
  color: orange;
  text-align: center;
  border-radius: 9999px;
  padding: 0px 15px;
}

.footer_bgc {
  width: 100%;
  height: 25vh;
  object-fit: cover;
  margin: 0 0 0 auto;
  z-index: 9999999999999;
  background-image: url(../img/abstract-textured-backgound.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.to_top p {
  width: fit-content;
  margin: 0 auto;
  padding-top: 3%;
  padding: 3% 10% 0% 15%;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
}

.tab img {
  width: 500px;
}

p.cafe_name {
  font-size: 2em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #513535;
  font-weight: bold;
}
.cafe_where {
  color: #513535;
}
.question {
  padding-top: 13px;
}
.question a {
  text-decoration: none;
  color: #fff;
  border: #fff 2px solid;
  border-radius: 99px;
  padding: 8px;
}
.question a:hover {
  background-color: #fff;
  color: black;
  transition: 0.1s;
}

.to_top img {
  position: absolute;
  width: 15%;
  left: 45%;
  top: 50%;
}

img.top_arrow {
  position: absolute;
  width: 2%;
  top: 60%;
  left: 51.5%;
}

.cafe_detail {
  width: 80%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.sns_box {
  width: 20%;
  display: flex;

  padding: 5px;
  justify-content: space-evenly;
  align-items: baseline;
}

.sns01 img {
  width: 20px;
}
.sns02 img {
  width: 25px;
}
@keyframes gotopHover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(
      calc(-100% - (calc(100vw * 80 / 1920) - 100%) / 2)
    );
    transform: translateY(calc(-100% - (calc(100vw * 80 / 1920) - 100%) / 2));
  }
  51% {
    -webkit-transform: translateY(
      calc(100% + (calc(100vw * 80 / 1920) - 100%) / 2)
    );
    transform: translateY(calc(100% + (calc(100vw * 80 / 1920) - 100%) / 2));
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*リセットcss↓*/

/*----リセットcss*----/

/*デザインcss↓*/
.box_con07 {
  max-width: 900px;
  margin: 0 auto;
}

/* =========
reserve(予約)
========= */

.rs_title {
  width: fit-content;
  margin: 3% auto;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 3em;
}
.rs {
  background-image: url(../img/beige-plain-textured-background-fabric-block-prints.jpg);
}

.rstop img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  z-index: 0;
}

.rs_describe_box {
  /* position: absolute;
  top: 55%;
  left: 20%; */
  width: 60%;
  height: 40%;
  background-color: #fff;

  z-index: 3;
  border-radius: 9px;
  overflow: hidden;

  margin: 5% auto;
  display: flex;
}
.rs_describe_box img {
  width: 30%;

  transform: rotate(-20deg);
  opacity: 0.5;
}
.describe_text {
  justify-content: center;
  align-items: flex-start;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;

  margin-left: -80%;
  z-index: 5;
}
.describe_text h3 {
  font-size: 3em;
}

.rs_btn {
  display: flex;
  justify-content: space-around;
}
.rs_btn a {
  width: 30%;
  background-color: orange;
  border-radius: 100px;
  text-align: center;
  padding: 1%;
  color: #fff;
}
.rs_btn a:hover {
  transition: 0.3s;
  border: orange 2px solid;
  background-color: white;
  color: orange;
}
.rs_ts {
  /* position: absolute;
  top: 105%;
  left: 15%; */
  color: orange;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 10%;
}

.rs_en {
  font-size: 3em;

  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  margin-left: 10%;
}

/* .sb_name01 {
  position: absolute;
  top: 1%;
  left: 50%;
  z-index: 9999;
} */

li.reserve_schedule_list {
  display: flex;
}
.time-table-all {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2%;
  z-index: 3;
  position: relative;
}
table {
  width: 100%;

  border: 1px solid black;
  border-collapse: collapse;
}
tbody {
  width: 80%;
}
th {
  text-align: center;
  background-color: orange;
  color: white;
  padding: 2% 0%;
}
.time-table {
  width: 100;
  display: flex;
  margin: 0 auto;
  gap: 2%;
}

ul.time-table li {
  list-style: none;
}

td {
  text-align: center;
  border: 1px solid;
  background-color: #fff;
  color: black;
  padding: 2% 0%;
}

.icon {
  width: 100%;

  z-index: 0;
}
.icon img {
  width: 35%;
  top: 100%;
  left: 60%;
  position: absolute;

  transform: rotate(-12deg);
}
.reserve_schedule_list01 {
  width: 90%;
  margin: 0 auto;
}
.reserve_schedule_list02 {
  width: 90%;
  margin: 0 auto;
}

.note {
  width: 80%;
  margin: 2% auto;
}

/* ====================
フォーム
=================== */

/*リセットcss↓*/
html {
  overflow-y: scroll;
}
.form {
  background-image: url(/cafe/img/beige-plain-textured-background-fabric-block-prints.jpg);
}

.form_title {
  width: fit-content;
  margin: 5% auto;
  font-size: 3em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
}
q:before,
q:after {
  content: "";
}
object,
embed {
  vertical-align: top;
}
hr,
legend {
  display: none;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}
li {
  list-style-type: none;
}
sup {
  vertical-align: super;
  font-size: 0.5em;
}
img {
  vertical-align: top;
}
i {
  font-style: normal;
}
/*----リセットcss*----/

/*デザインcss↓*/
.box_con04 {
  max-width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .box_con04 {
    width: 95%;
  }
}
.box_con04 form {
  width: 100%;
}
.box_con04 form ul {
  width: 100%;
}
.box_con04 form ul li {
  position: relative;
  overflow: hidden;
  border: 1px solid #1c2e53;
  margin: 0.5em 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .box_con04 form ul li {
    display: -webkit-flex;
    display: flex;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }
}
@media print {
  .box_con04 form ul li {
    display: -webkit-flex;
    display: flex;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }
}
.ie8 .box_con04 form ul li {
  display: -webkit-flex;
  display: flex;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.box_con04 form ul li .title {
  position: relative;
  width: 30%;
  font-weight: normal;
  padding: 1em;
  position: relative;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .box_con04 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media print {
  .box_con04 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
.ie8 .box_con04 form ul li .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.box_con04 form ul li .title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: orange;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .box_con04 form ul li .title {
    text-align: center;
    width: 100%;
    display: block;
    background: orange;
    padding: 0.8em 0.2em;
  }
}
.box_con04 form ul li .title em {
  position: relative;
  z-index: 1;
}
.box_con04 form ul li .title span {
  background: #cd6f55;
  padding: 0 0.3em;
  color: #fff;
  margin-left: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con04 form ul li .box_det {
  width: 70%;
  position: relative;
  padding: 1em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con04 form ul li .box_det {
    padding: 1.5em 0.5em;
    display: block;
    width: 100%;
  }
}
.box_con04 form ul li .box_br {
  display: block;
}
.box_con04 form ul li select,
.box_con04 form ul li textarea,
.box_con04 form ul li .wide {
  width: 100%;
  height: 3em;
  padding: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con04 form ul li textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: 0.3em;
}

.btn {
  text-align: center;
  margin: 5%;
}
.btn input {
  display: inline-block;
  background: orange;
  padding: 0.5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  border: 1px solid orange;
  transition: 0.3s;
  color: #000;
  background-color: #fff;

  opacity: 0.7;
}

@media screen and (max-width: 400px) {
  h1 {
    position: absolute;
    bottom: 0px;
  }
  .headline_title {
    padding: 5% 5%;
  }
  .about {
    height: 100vh;
    overflow: hidden;
  }
  .menu {
    height: 100vh;
    overflow: hidden;
  }

  .location {
    overflow: hidden;
  }

  .k_car_container {
    overflow: hidden;
  }

  .menu_info p {
    line-height: 2.3em;
    width: 90%;
  }

  .more a {
    position: absolute;
    top: 40%;
    left: 35%;
    z-index: 1;
  }
  /* .nav {
    position: fixed;
    width: 100%;
    height: 17vh;
    bottom: 0px;
  } */
  .scrolldown2 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 10%;
    left: 50%;
  }
  .loading__logo {
    width: 50%;
    position: absolute;
    right: 24%;
  }
  /* span.headline_title_single {
    font-size: 2.8em;
    text-align: center;
  } */
  .fade {
    width: 80%;
    height: 40%;
    position: absolute;
    top: 15%;
    left: 10%;
  }

  .slick_track {
    width: 20%;
    height: 30%;
  }

  .slick-initialized {
    width: 300px;
    height: 10px;
    object-fit: contain;
  }
  .message {
    width: 80%;
    height: 25%;
    position: absolute;
    top: 75%;
    left: 13%;
  }

  p.about_us {
    width: 80%;
    font-size: 1.6em;

    margin-left: 10%;
    padding: 0%;
  }

  p.to_you {
    width: 88%;
    font-size: 0.7em;
    margin: 0 auto;
  }
  .attention p {
    width: 70%;
  }

  /* パスタ */

  .menu .item01 {
    position: absolute;
    width: 49%;
    top: 45%;
    left: 60%;
  }
  /* オムレツ */

  .menu .item02 {
    position: absolute;
    width: 50%;
    top: 60%;
    left: 40%;
  }

  /* ミント */

  .menu .item03 {
    position: absolute;
    width: 40%;
    top: 82%;
    left: 25%;
  }

  /* パンケーキ */

  .menu .item04 {
    position: absolute;
    width: 100%;
    top: 60%;
    left: -35%;
  }

  /* サラダ */
  .menu .item05 {
    position: absolute;
    width: 50%;
    top: 75%;
    left: 70%;
  }

  /* オレンジ */

  .menu .item06 {
    position: absolute;
    width: 22%;
    top: 70%;
    left: 80%;
  }

  /* コーヒー豆 */
  .menu .item07 {
    position: absolute;
    width: 21%;
    top: 65%;
    left: 15%;
  }
  /* トースト */
  .menu .item08 {
    position: absolute;
    width: 50%;
    top: 42%;
    left: -10%;
  }

  /* ラテアート */
  .menu .item09 {
    position: absolute;
    width: 50%;
    top: 60%;
    left: 17%;
  }
  .sb_name01 {
    width: 35%;
    position: absolute;
    top: 7%;
    left: 60%;
    transform: rotate(-12deg);
    z-index: 3;
  }
  .sb_name02 {
    width: 35%;
    position: absolute;
    top: 7%;
    left: 60%;
    transform: rotate(-12deg);
    z-index: 3;
  }
  .sb_name03 {
    width: 35%;
    position: absolute;
    top: 7%;
    left: 65%;
    transform: rotate(-12deg);
    z-index: 3;
  }

  .sb_name04 {
    width: 35%;
    position: absolute;
    top: 82%;
    left: 60%;
    transform: rotate(-12deg);
    z-index: 3;
  }

  .car {
    width: 80%;
    position: absolute;
    top: 18%;
    left: 10%;
  }
  .car img {
    width: 100%;
  }
  .k_car_detail {
    width: 80%;
    height: 87vh;
    position: absolute;
    top: 42%;
    left: 10%;
  }
  .k_car_container {
    height: 155vh;
  }
  .k_car_detail .intro {
    line-height: 2.3em;
    height: fit-content;
  }
  .k_car_schedule {
    display: flex;
    flex-direction: column;
  }

  .k_car_buttom {
    position: fixed;
    right: 0px;
  }
  p.date {
    padding-bottom: 7%;
    letter-spacing: 0.08em;
  }
  p.area {
    font-size: 1em;
  }
  .event_container li {
    padding: 10% 0%;
  }

  iframe.map_box {
    width: 90%;
    height: 30vh;
    margin: 0 auto;
  }

  .adress {
    width: 100%;
    top: 70%;
    left: 10%;
    height: 30vh;
  }
  .adress dl {
    width: 80%;
    height: 35vh;
    top: 310%;
    left: 0%;
  }

  .footer_box01 {
    height: 80vh;
  }
  .footer_item {
    width: 95%;
    position: absolute;
    top: 20%;
    left: 2%;
  }
  p.welcome {
    width: 100%;
  }

  .attention {
    height: 10vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
  .footer_bgc {
    height: 60vh;
  }

  .to_map a {
    width: 60%;
    padding: 2%;

    border: 4px solid orange;
    border-radius: 999px;
    top: 620px;
    right: 120px;
    background-color: #fff;
    text-align: center;
  }

  .attention_box {
    display: flex;
    flex-direction: column;
  }

  .attention_box span {
    overflow: hidden;
  }

  .buttom_box {
    width: fit-content;
    display: flex;
    flex-direction: column;
  }
  .yoyaku {
    margin-top: 10%;
  }
  .howto {
    margin-top: 10%;
  }

  a img.top_arrow {
    width: 7%;
    left: 46.5%;
    top: 55.5%;
  }
  .to_top img {
    position: absolute;
    top: 52.5%;
    left: 35%;
    width: 30%;
  }
  .cafe_detail {
    width: 100%;
    height: 35vh;
    padding: 0%;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .to_top p {
    width: fit-content;
    margin: 0 auto;
    padding-top: 10%;
  }
  p.cafe_name {
    width: fit-content;
    margin: 0 auto;
  }
  p.cafe_where {
    padding-top: 5%;
  }
  .question {
    width: fit-content;
    margin: 0 auto;
    margin-top: 5%;
  }
  .question a {
    width: fit-content;
  }

  .sns_box {
    width: fit-content;
    margin-top: 20%;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: baseline;
  }
  .detail_container {
    height: 50vh;
  }
  .nav {
    position: fixed;

    left: 0;
    top: 91vh;
    width: 100%;
    height: 10%;
    background-color: #fff;
    transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);

    z-index: 1;
  }

  .sns_in_nav01 img {
    width: 10%;

    position: absolute;
    bottom: -10%;
    right: 5%;
  }
  .sns_in_nav02 img {
    width: 12%;

    position: absolute;
    bottom: -32%;
    right: 4.4%;
  }
  .nav.is-active {
    top: 0;
    width: 100.1%;
    height: 100%;
  }

  .nav__trigger {
    display: block;
    position: absolute;
    bottom: 0%;
    right: 1rem;
    margin-top: -10px;
    padding: 8px 0;
    transition: 0.2s ease-in-out;
    z-index: 1;
  }
  .nav__trigger .bars {
    position: relative;
  }
  .nav__trigger .bars,
  .nav__trigger .bars:before,
  .nav__trigger .bars:after {
    width: 28px;
    height: 4px;
    background-color: rgb(255, 165, 0);
    border-radius: 4px;
    transition: 0.2s ease-in-out;
  }
  .nav__trigger .bars:before,
  .nav__trigger .bars:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
  }
  .nav__trigger .bars:before {
    transform: translateY(-8px);
  }
  .nav__trigger .bars:after {
    transform: translateY(8px);
  }
  .nav__trigger.is-active {
    transform: rotate(-45deg);
  }
  .nav__trigger.is-active .bars:before,
  .nav__trigger.is-active .bars:after {
    transform: translateX(0) rotate(-90deg);
  }

  .nav__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    padding: 1rem 3.75rem 1rem 2.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    transition: 0s linear 0.25s;
  }
  .nav__content.is-active {
    visibility: visible;
    opacity: 1;
    transition: 0s linear;
  }
  .nav__content.is-active .nav__item a {
    opacity: 1;
    transform: translateY(0);
    transition-property: transform, opacity, color;
    transition-duration: 0.55s, 0.55s, 0.3s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1),
      ease-in-out, ease-in-out;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
    transition-delay: 0s, 0s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
    transition-delay: 0.05s, 0.05s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
    transition-delay: 0.1s, 0.1s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
    transition-delay: 0.15s, 0.15s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
    transition-delay: 0.2s, 0.2s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
    transition-delay: 0.25s, 0.25s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
    transition-delay: 0.3s, 0.3s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
    transition-delay: 0.35s, 0.35s, 0s;
  }
  .nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
    transition-delay: 0.4s, 0.4s, 0s;
  }

  .nav__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav__item {
    overflow: hidden;
  }
  .nav__item a {
    display: inline-block;
    padding: 1rem;
    color: #653838;
    text-decoration: none;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 3.5vw;

    font-weight: 300;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform, opacity;
  }
  .nav__item a:hover {
    color: white;
  }

  .nav__divider {
    margin: 1.75rem 0 1.5rem;
    width: 100%;
    height: 2px;
    background-color: #9ac6ac;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .neeews p {
    position: absolute;
    width: 87%;
    height: 5%;
    top: 93%;
    left: 8%;
    background-color: white;
    z-index: 1;
    text-align: center;
    padding-top: 2%;
    padding-right: 2%;

    border-radius: 99999px;
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont,
      "Helvetica Neue";
  }

  .arrow img {
    width: 5%;
  }
  .rs_btn {
    display: flex;
    flex-direction: column;
  }

  .rs_btn a {
    width: 80%;
    background-color: orange;
    border-radius: 100px;
    text-align: center;
    padding: 1%;
    color: #fff;
    margin: 2% auto;
  }
  .rs_describe_box {
    /* position: absolute;
    top: 55%;
    left: 20%; */
    width: 95%;

    background-color: #fff;

    z-index: 3;
    border-radius: 9px;
    overflow: hidden;

    margin: 2% auto;
    display: flex;
    flex-direction: column;
  }
  .describe_icon img {
    width: 100%;
  }
  .describe_text {
    width: 90%;
    margin: auto;
  }

  .icon img {
    display: none;
  }
  .time-table-all {
    margin-bottom: 30%;
  }

  .time-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 3%;
  }
  .reserve_schedule_list01 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10%;
  }
  .reserve_schedule_list02 {
    width: 100%;
    margin: 0 auto;
  }
}

.cafe_name {
  width: 200px;
}
/* ***************************** */
.address {
  position: relative;
  background-color: #fff;
  width: 80%;
  margin: 5px auto 0px;
  text-align: center;
  border: rgb(0, 0, 0) solid 5px;
  border-radius: 10px;
}
.address .to_map {
  margin: -20px auto 20px;
}
.address .to_reserve {
  display: block;
  margin: 40px auto 20px;
}
@media screen and (max-width: 400px) {
  .address {
    position: relative;
    top: -20vh;
    left: 20%;
    width: 40%;

    margin: 5px auto 0px;
    text-align: center;
    border: rgb(0, 0, 0) solid 5px;
    border-radius: 10px;
  }
  .address .to_map {
    margin: -20px auto 20px;
  }
  .address .to_reserve {
    display: block;
    margin: 40px auto 20px;
  }
}
