@charset "utf-8";
/*========= レイアウトのためのCSS ===============*/

h1 {
  font-size: 0.5rem;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 2px;
  color: #606060;
}


h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
  white-space: nowrap;
  font-family: 'Shippori Mincho B1', serif;
}

h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
}

span {
  font-size: 0.8rem;
}

p,
li {
  margin-top: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.5rem;
  letter-spacing: 0.2rem;
  color: #666;
  font-size: 0.8rem;
}

a {
  border-style: none;
  color: #333;
  font-family: 'Zen Maru Gothic', sans-serif;
}

h2 a {
  text-decoration: none;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 30px 0;
  white-space: nowrap;
  font-family: 'Shippori Mincho B1', serif;
  color: #666;
}

h3 a {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
  color: #666;
  text-decoration: none;
}

small {
  background: #333;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

#wrapper {
  overflow: hidden;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #666;
  padding: 10px;
  transition: all 0.3s;
}

nav ul li.current a,
nav ul li a:hover,
nav ul li a:active {
  color: #fff;
}

main {
  padding-top: 70px;
}

section {
  padding: 30px;
}

section:nth-child(2n) {
  background: #c3c0b20f;
}

/* loader */
.loader-bg {
  background-color: #333;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #333;
}

.loader-bg-s {
  display: none;
}

video {
  width: 100vw;
}


@media screen and (max-width:768px) {
  .loader-bg {
    display: none;
  }

  .loader-bg-s {
    background-color: #333;
    position: fixed;
    z-index: 9999;
    height: 100vh;
    /* width: 100vw; */
    box-sizing: border-box;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  video {
    height: 100vh;
  }

}



img {
  width: 100%;
}


.area {
  background: #fafafa;
  background: -webkit-linear-gradient(to left, #c2c2c2, #858585);
  width: 100%;
  height: 120vh;
  position: fixed;
  z-index: -999;

}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgb(195 192 178 / 35%);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}



@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 20%;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 100%;
  }

}


/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header {
  /*fixedで上部固定*/
  position: fixed;
  height: 110px;
  width: 100%;
  z-index: 999;
  /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 20px;
  padding-right: 100px;
}

/*　上に上がる動き　*/

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh;
  /*ナビの高さ*/
  background: #99999988;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 999;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: #606060 solid 1px;
  border-radius: 1000px;
  margin: 20px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #66666676;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}







/* 
main_v
*/
#main_v {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
  margin-left: 5%;
  margin-bottom: 100px;
  align-items: center;
  /* background-color: #C3C0B2; */
  border-radius: 500px 0 0 0;
  position: relative;
}

#main_v img {
  /* border-radius: 50px 0 0 10px; */
  box-shadow: #666;
  height: 100%;
  /* object-fit: none; */
}

#main_v h2 {
  font-size: 1.5rem;
  font-family: 'Shippori Mincho B1', serif;
  color: #666;
  font-weight: lighter;
  line-height: 80px;
  letter-spacing: 5px;
}

.title {
  margin: 40px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  text-shadow: #66666683 5px 5px 10px;
}

.title_pic {
  border-radius: 50px 0 0 10px;
  height: 700px;
  margin-left: 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

#main_v::before {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0091EA;
}


/* 
scrolldown
*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 40px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #666;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #666;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/* 
intro
*/
#intro {
  background-image: url(../images/concept.webp);
  background-position: center;
  background-size: cover;
  line-height: 1.5rem;
  margin-bottom: 100px;
}

#intro h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
}

#intro h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  top: 2rem;
  border-bottom: solid 0.5px #efefef;
  animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

#intro h3,
#intro p {
  text-align: center;

}

.intro_inner {
  background-color: #ffffffee;
  box-shadow: #666 0px 0px 10px;
  padding: 50px;
}

/* 
intro_list
*/

.list_check {
  padding: 0px;
  display: flex;
  margin: 60px;
  list-style: none;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.list_check>li {
  position: relative;
  padding: 0px 0px 0px 2em;
  margin: 0px;
}

.list_check>li::before,
.list_check>li::after {
  position: absolute;
  top: 50%;
  height: 1em;
  content: "";
}

.list_check>li::before {
  left: 0px;
  transform: translateY(-50%);
  width: 1em;
  border: 1px solid #3388dd;
}

.list_check>li::after {
  left: 0.5em;
  transform: translateY(-75%) rotate(45deg);
  width: 0.5em;
  border-bottom: 3px solid #3388dd;
  border-right: 3px solid #3388dd;
}

.list_check>li+li {
  margin: 1em 0px 0px;
}



/* 
slideshow
*/
@keyframes slideshow {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  28% {
    opacity: 1
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.item1,
.item2,
.item3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;

  display: flex;
  align-items: center;
}

.item1 {
  animation: slide1 20s infinite;
}

.item2 {
  animation: slide2 20s infinite;
  width: 100%;
}

.item3 {
  animation: slide3 20s infinite;
  width: 100%;
}

@keyframes slide1 {
  0% {
    opacity: 1;
    transform: scale(1.0);
  }

  20% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: scale(1.1);
  }

  90% {
    opacity: 0
  }

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

@keyframes slide2 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
    transform: scale(1.1);
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  60% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 0;
  }
}

@keyframes slide3 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: scale(1.0);
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  90% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}


/* 
motion
 */
/* 読み込み時フェードイン用 */
body {
  display: none;
}

/* 
fadeIn 
*/

.fadeIn {
  opacity: 0;
  transition: 1000ms;
  animation-direction: alternate;
}

.fadeIn_first {
  opacity: 0;
  transition: 1000ms;
  animation-direction: alternate;
}

.fadeIn_b {
  position: absolute;
  transform: scale(1.3);
  top: 3%;
  opacity: 0;
  transition: ease-in-out 2000ms;
  z-index: -1;
  left: 0%;
  filter: blur(4px) grayscale(70%);
}


.pic_box {
  position: relative;
}

.on {
  opacity: 1;
  transform: scale(1.0);
}

.fade_UD {

  opacity: 0;
  transition: 1000ms;
  transform: translateY(80px);
  /* animation-direction: alternate; */
}

.fade_UD_b {
  position: absolute;
  transform: translateX(80px);
  top: 3%;
  opacity: 0;
  transition: ease-in-out 500ms;
  z-index: -1;
  left: 3%;
  filter: blur(4px) grayscale(70%);
}

.on_UD {
  opacity: 1;
  transform: translate(0, 0);
}

.fade_LR {
  opacity: 0;
  transition: 1000ms;
  transform: translateX(100px);
  /* animation-direction: alternate; */
}

.fade_LR_b {
  position: absolute;
  transform: translateX(-100px) skewX(5deg);
  top: 3%;
  opacity: 0;
  transition: ease-in-out 500ms;
  z-index: -1;
  left: 3%;
  filter: blur(4px) grayscale(70%);
}

.on_LR {
  opacity: 1;
  transform: translateX(0);
}


/* 
slideIn
*/

.slideIn_LR {
  overflow: hidden;
  width: 0%;
  height: 100%;
  white-space: nowrap;
  transition: 2000ms;
  display: block;
}

.s_LR_on {
  width: 100%;
}

.slideIn_UD {
  overflow: hidden;
  height: 0%;
  white-space: nowrap;
  transition: 1000ms;
  display: block;
}

.s_UD_on {
  height: 100%;
}

.circle1 {
  position: absolute;
  display: inline-block;
  border-radius: 100%;
  border: 0px solid #00000014;
  transform: scale(0, 0);
  transition: 1000ms ease;
  opacity: 1;
  width: 50px;
  height: 50px;
}

.circle1_after {
  border: 10px solid #00000014;
  transform: scale(10);
  opacity: 0;
  overflow: hidden;
}

.circle2 {
  position: absolute;
  display: inline-block;
  border-radius: 100%;
  border: 0px solid #00000014;
  width: 0;
  height: 0;
  transition: 1000ms ease;
  opacity: 1;
  left: 30%;
  writing-mode: vertical-rl;
}

.circle2_after {
  border: 10px solid #00000014;
  width: 500px;
  height: 500px;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  left: 0%;
}

.delay1 {
  transition-delay: 250ms;
}

.delay2 {
  transition-delay: 500ms;
}

.right {
  left: 50%
}

/* 
menu
*/

#menu h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
  border-style: none;
}

.menu_list {
  display: flex;
  flex-wrap: wrap;
}

.flex {
  display: flex;
  margin-bottom: 100px;
}

.flex2 {
  display: flex;
  margin-bottom: 100px;
  width: 100%;
}

.flex_img {
  width: 50%;
  background-color: #50505026;
  padding: 30px;
  border-radius: 0 50px 10px 0;
  position: relative;
  z-index: 1;
}

.flex_img2 {
  width: 50%;
  background-color: #50505026;
  padding: 30px;
  border-radius: 0 50px 10px 0;
  position: relative;
  z-index: 1;
  left: 5%;
}

.flex_img img {
  position: relative;
  right: 10%;
  box-shadow: 10px 10px 10px #aaa;
  border-radius: 0 50px 10px 0;
}

.flex_img2 img {
  position: relative;
  right: 10%;
  box-shadow: 10px 10px 10px #aaa;
  border-radius: 0 50px 10px 0;
}

.flex_text {
  width: 50%;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.flex_text h3 {
  background-color: #f5f5dc5e;
  display: block;
  width: 200%;
  position: relative;
  z-index: -999;
  letter-spacing: 5px;
}

figure {
  margin: 10px;
}

figure img {
  border-radius: 50px 10px;
  box-shadow: 10px 10px 10px #aaa;
}

figcaption h3 {
  font-size: 1.2rem;
  letter-spacing: 2px;
}



/* 
slider
*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 60vw;
  /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

#recommend h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
}

/* 
map
*/
#map h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
}

.en {
  font-weight: bold;
}

.map_flex {
  display: flex;
  flex-direction: row;
}

.shop_content {
  position: relative;
}

.shop_img {
  width: 50%;
}

.shop_info {
  width: 50%;
}

.shop_data {
  display: flex;
  justify-content: center;
}

.shop_data {
  display: flex;
  margin: 5px;
  align-items: center;
}

th {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  align-items: center;
}

tbody p {
  margin-top: 0;
}

.map_img {
  transition: 1s;
  width: 99%;

}

.map_zoom {
  position: absolute;
  width: 100%;
  left: 0%;
  top: 0%;

}

.en {
  font-size: 0.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 

menu
*/
.menu_table {
  display: flex;
  justify-content: center;
}

#menu1 th {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  font-size: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

#menu1 tr {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 40px 20px 40px;
  flex-direction: column;
  border-bottom: 1px solid #e0e0e0;
}

#menu1 tr div {
  margin: 10px;
}

#menu1 td {
  text-align: center;
  margin: 0 10px;
  font-size: 1rem;
  font-family: 'Shippori Mincho B1', serif;
  letter-spacing: 2px;
}

#menu1 small {
  padding: 5px;
  font-size: 0.8rem;
  background: inherit;
  color: inherit;
}

#menu1 h3 {
  color: #fff;
  background-color: #9e8145;
}

#menu1 tr .menu_price {
  display: flex;
  flex-direction: row;
}

#menu1 h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
}


/* 
staff
*/
#staff h2 {
  position: relative;
  font-size: 2rem;
  color: #666;
  font-weight: 100;
  letter-spacing: 5px;
}


.staff_list {
  display: flex;
}

.staff_list li {
  width: calc(100% / 3);
  list-style-type: none;
  padding: 10px;
}

.staff_list img {
  border-radius: 30px 10px;
  box-shadow: 10px 10px 10px #aaa;
}

.staff_name_en {
  text-align: center;
  margin-top: 0;
}

.sns_icon {
  width: 50px;
}

.sns_icon img {
  border-radius: 0;
  box-shadow: none;
  width: 40px;
}


/* 
about
*/
.about_slide {
  height: 300px;
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}

.shop_content {
  text-align: center;
  padding: 10px;
}

/* 
blog
*/
.blog_thumb img {
  width: 300px;
}

.category-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}



/* 
reserve
*/
.container-calendar {
  background: #ffffff;
  padding: 15px;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}
.button-container-calendar button {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
  background: #00a2b7;
  color: #fff;
  border: 1px solid #0aa2b5;
  border-radius: 4px;
  padding: 5px 10px;
}
.table-calendar {
  border-collapse: collapse;
  width: 100%;
}
.table-calendar th,
.table-calendar td{
  padding: 10px;
  border: 1px solid #e2e2e2;
  text-align: center;
  vertical-align: top;
  display: revert;
}
.date-picker.selected {
  font-weight: bold;
  color: #fff;
  background: #cc0000;
}
.date-picker.selected span {
  border-bottom: 2px solid currentColor;
}
/* 日曜 */
.date-picker:nth-child(1) {
color: red;
}
/* 土曜 */
.date-picker:nth-child(7) {
color: blue;
}
#monthAndYear {
  text-align: center;
  margin-top: 0;
}
.button-container-calendar {
  position: relative;
  margin-bottom: 1em;
  overflow: hidden;
  clear: both;
}
#previous {
  float: left;
}
#next {
  float: right;
}
.footer-container-calendar {
  margin-top: 1em;
  border-top: 1px solid #dadada;
  padding: 10px 0;
}
.footer-container-calendar select {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
  background: #ffffff;
  color: #454545;
  border: 1px solid #bfc5c5;
  border-radius: 3px;
  padding: 5px 1em;
}

/* 
footer
*/
#footer{
  background-color: #333;
}

.footer_flex{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}

.footer_flex img{
width: 200px;
margin: 10px;
}

.footer_menu{
  width: 50%;
  margin: 10px;
  max-width: 700px;
}

.footer_list{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.footer_list a{
  color: white;
  text-decoration: none;
}


/* 
media screen 767px
*/
@media screen and (max-width:767px) {
  .flex {
    flex-direction: column;
  }

  .flex_img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    padding: 0;
  }

  .flex_text {
    width: 100%;
  }

  .flex2 {
    flex-direction: column-reverse;
  }

  .flex_img2 {
    width: 100%;
    height: 220px;
    overflow: hidden;
    padding: 0;
  }

  .flex_text2 {
    width: 100%;
  }

  #g-nav {
    width: 100%;
  }

  #g-nav ul {
    left: 50%;
  }

  #g-nav li {
    margin-top: 0;
    font-size: 2rem;
  }

  .map_flex {
    flex-direction: column;
  }

  .shop_img,
  .shop_info {
    width: 100%;
  }

  .shop_data {
    margin: 20px;
  }

  #map tr {
    margin: 10px 0;
  }

  #menu1 tr {
    margin: 0px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  #menu1 th {
    width: 100%;
  }

  #menu1 section {
    padding: 0;
  }

  #about #menu h2 {
    letter-spacing: 0;
    font-size: 1rem;
  }

  #about #menu h2 a {
    font-size: 1.2rem;
  }

  #about p {
    font-size: 0.8rem;
  }

  .staff_list {
    flex-direction: column;
  }

  .staff_list li {
    width: 100%;
  }

  .footer_flex{
    flex-direction: column;
    }

    .footer_menu{
      width: 80%;
    }

    #main_v {
      flex-direction: column-reverse;
    }
    
    .scrolldown1 {
      bottom: 0px;
      height: 0px;
    }
}


@media screen and (max-width:480px) {
  #g-nav li {
    font-size: 1.5rem;
}

.about main{
  padding-top: 0;
}

.about_slide {
  height: 220px;
}

#main_v {
  flex-direction: column-reverse;
}

.scrolldown1 {
  bottom: 0px;
  height: 0px;
}

.intro_inner {
  padding: 20px;
}

.list_check {
  margin: 10px;
}

.index section{
padding: 0;
}

.footer_menu{
  width: 100%;
}


}