@charset "utf-8";
/* CSS Document */

/* メインビジュアル（キービジュアル） */
.firstview-slide {
  width: 100%; /* 画面幅いっぱい */
  height: 100vh; /* 画面高さいっぱい */
}

/*==================================================
スライダーのためのcss
===================================*/
#slider {
  width: 100%;
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  z-index: 100;
}

@media(max-width:960px){ /* 960px以下の指定 */
  .firstview-slide{
    display: none;
  }
  .firstview-slide img{
    display: none;
  }
}

@media(min-width:960px){ /* 960px以下の指定 */
  .firstview-slide{
    width:  calc(100% - 375px - 210px);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* お店の情報 */
.gallery{
  width: 315px;
  margin: 0 auto;
  padding-top: 50px;
  background-color: #eae2d6;
  font-size: 1.6rem;
}
.top-image{
  text-align: center;
}
.section-access img{
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}
.section-access img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
.section-access h2{
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
  color: #321e00;
  padding-top: 10px;
}
.top-h2__name{
  text-align: center;
  color: #321e00;
  margin-bottom: 50px;
}
.section-access__top a{
  text-decoration: none;
}
.section-access__top a,:hover{
  opacity: 1;
}
.section-access address{
  font-style: normal;
  margin: 0 auto;
}
.section-access__map{
  text-align: right;
  margin-bottom: 20px;
}
.section-access__map a{
  text-decoration: none;
  color: #321e00;
  border-bottom: solid 1px #321e00;
}
.section-access__tel a{
  text-decoration: none;
  color: #321e00;
  border-bottom: solid 1px #321e00;
}
.section-access__tel{
  margin-bottom: 20px;
}
/*
.section-access table {
  display: block;
  text-align: left;
  margin: 0 auto;
}
.section-access table tr{
  padding: 30px auto;
}
.section-information table td {
  padding-left: 10px;
}*/

@media(min-width:960px){
  .gallery{
    margin-top: 0;
    z-index: 1000;
  }
}
/* ギャラリー */
.section-gallery ul{
  list-style: none;
}
.section-gallery ul li{
  margin-bottom: 40px;
}
.section-gallery h2{
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px; 
}
.gallery-picture{
  width: 315px;
  height: 240px;
  background-color: #d5c3aa;
}
.gallery-picture img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position: center;
}
.gallery-text{
  width: 315px;
  padding: 20px;
  background-color: #fff;
}
.gallery-text h3{
  font-size: 2.0rem;
  text-shadow: 0 0 0.5px #d0b947;
  color: #d0b947;
  margin-bottom: 10px;
}
/* ギャラリースライダー */
.gallery-slider__p{
  width:315px;
  height:200px;
  position: relative;
  overflow:hidden;
  padding:0;
  margin:0 auto;
}
.gallery-slider__p li{
  display:block;
  float:left;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform:translateX(100%);
  position: absolute;
}
.gallery-slider__p li:nth-of-type(1){
  background-image:url("../images/gallery/maternity-paint02.jpg");
  transform:translateX(0);
  animation:slide 15s 0s infinite;
}
.gallery-slider__p li:nth-of-type(2){
  background-image:url("../images/gallery/appearance_coffee.jpg");
  animation:slide 15s 3s infinite;
}
.gallery-slider__p li:nth-of-type(3){
  background-image:url("../images/gallery/sweets.jpg");
  animation:slide 15s 6s infinite;
}
.gallery-slider__p li:nth-of-type(4){
  background-image:url("../images/gallery/kids-event02.jpg");
  animation:slide 15s 9s infinite;
}
.gallery-slider__p li:nth-of-type(5){
  background-image:url("../images/gallery/bakery02.jpg");
  animation:slide 15s 12s infinite;
}

@keyframes slide{
  0%{
    transform:translateX(100%);
    opacity:1;
  }
  3%{
    transform:translateX(0%);
    opacity:1;
  }
  20%{
    transform:translateX(0%);
    opacity:1;
  }
  23%{
    transform:translateX(-100%);
    opacity:0;
  }
  99.999%{
    transform:translateX(-100%);
    opacity:0;
  }
  100%{
    transform:translateX(100%);
    opacity:1;
  }
  
}

/* 縦線 */
.wrap {
  display: flex;
  text-align: center;
  margin: 10px 0;
}
.A {
  height: 100px;
  flex: 1;
  margin-right: 1rem;
  position: relative;
}
.A:after {
  margin: 0 1rem;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #d0b947;
  position: absolute;
  left: 100%;
}

.B {
  height: 100px;
  flex: 1;
  margin-left: 1rem;
}

/*スクロールダウン全体の場所*/
/* 線の描写 */
.A::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 80px;
  background: #d0b947;
    /*線の動き3.0秒かけて動く。永遠にループ*/
  animation: pathmove 3.0s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:80px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/* ニュース */
.section-news{
  width: 315px;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: #eae2d6;
  font-size: 1.6rem;
}

.news-img{
  background-image: url("../images/event/news.png");
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-3px);
  height: 210px;
}

.news-img p{
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 10px;
  text-align: center;
}

.shere-on__line p{
  position: relative;
  color: #fff;
  padding-top: 30px;
}

.shere-on__line{
  margin-bottom: 40px;
}

.shere-on__line span, .shere-on__line span:before, .shere-on__line span:after {
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;/*線の色*/
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.shere-on__line span:before{
  width: 15px;
  bottom: -8px;
}

.shere-on__line span:after{
  width: 5px;
  bottom: -16px;
}

.news-img img{
  width: 30px;
  height: auto;
}

.news-img:hover img {
  transform: scale(1.1); /* 拡大 */
}

.shere-on__sns{
  text-align: center;
}

.shere-on__sns a{
  padding: 10px;
}

/* アクセス */
.section-access__2{
  width: 315px;
  margin: 0px auto;
  padding: 40px 0;
  background-color: #eae2d6;
  font-size: 1.6rem;
}

.section-access__2 h2{
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.access__map{
  width: 100%;
  height: 200px;
  border-top: solid 1px #321e00;
  border-bottom:  solid 1px #321e00;
}

.section-access__2 p{
  padding: 0 20px;
}

.section-access__2 address{
  font-style: normal;
  padding: 10px 20px 0;
}

/* 駐車場 */
.section-parking{
  width: 315px;
  margin: 0 auto 230px;
  background-color: #eae2d6;
  font-size: 1.6rem;
}

.section-parking h2{
  font-size: 3.0rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #321e00;
}
/* 七戸方面 */
.parking-seven p{
  font-weight: 600;
  text-shadow: 0 0 0.5px #321e00;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: solid 1px #321e00;
  text-align: center;
  line-height: 60px;
}

.parking-seven img{
  height: 158px;
  width: 158px;
  border: solid 1px #321e00;
  object-fit: cover; /* 要素いっぱいに画像を表示（はみ出た部分は削除） */
  object-position: center; /* 位置を上に合わせる */
  display: block;
}
/* 五戸方面 */
.parking-five p{
  font-weight: 600;
  text-shadow: 0 0 0.5px #321e00;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: solid 1px #321e00;
  text-align: center;
  line-height: 60px;
}

.parking-five img{
  height: 158px;
  width: 100%;
  border: solid 1px #321e00;
  object-fit: cover; /* 要素いっぱいに画像を表示（はみ出た部分は削除） */
  object-position: center; /* 位置を上に合わせる */
  display: block;
}

.section-parking__wrapper{
  display: flex;
  justify-content: center;
}

.parking-goal{
  position: relative;
}

.parking-goal img{
  object-fit: cover; /* 要素いっぱいに画像を表示（はみ出た部分は削除） */
  object-position: center; /* 位置を上に合わせる */
  border: solid 1px #321e00;
}
.parking-goal p{
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50px;
  animation: flash 1.5s linear infinite;
}
@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}
/* Ligthbox.js */
a.zoom{
  position: relative;
  display: block;
  cursor: zoom-in;
}
a.zoom::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: rgba(0,0,0,0.5);
  background-image: url("../images/access/zoom.png");
  background-size: 1em 1em;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Ligthbox.jsからclassをコピペ */
.lum-lightbox-inner img { /* 画像の縦横比を崩さずに並びを揃える指定 */
  object-fit: contain;
  /* position: relative; *//* 他のポジションが親になってる？ */
}

.lum-gallery-button { /* 左右のbuttonを見えなくする */
  display: none !important;
}
.lum-lightbox.lum-open{ /* 拡大画像を最前面に */
  z-index: 1000;
  background: rgba(0,0,0,0.8) !important;
}
.lum-close-button{ /* 閉じるボタンの位置調整 */
  opacity: 1 !important;
  /* background: rgba(0,0,0,0.5); */
  border-radius: 20%;
}

.section-parking h3{
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
  padding: 30px 20px 20px;
}

.parking-care{
  padding: 0px 20px 40px;
}
@media(min-width:960px){
  .section-parking{
  margin: 0 auto 40px;
  }
}