/*==================================================
スライダーのためのcss
===================================*/
.top_slider{

 #main_img {
    width: 100%;
    height: 50vh;/*70  スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*========= レイアウトのためのCSS ===============*/

 a{
  color: #fff;
}

 a:hover,
 a:active{
  text-decoration: none;
}

 .h1{
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:  2px  2px 5px #aaaaaa ,
  -2px  2px 5px #aaaaaa ,
   2px -2px 5px #aaaaaa ,
  -2px -2px 5px #aaaaaa;
}


 .wrapper{
  position: relative;
}

 .container{
  background:#555;
}

 .container p{
  padding: 300px 0; 
  text-align: center;
  color: #fff;
}
}

/*==================================================
ニュースティッカーのためのcss
===================================*/

.news_box{  position: absolute;
    z-index: 2;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
   /* text-align: center;*/
   text-align: left;
    /*width: 882px;*/
    width: 45%;
    min-width: 500px;
    padding: .5rem 2rem 0;
    background: #ffffff;
    letter-spacing: 0.1em;
  /*  text-transform: uppercase;*/ /*すべての文字を大文字に変換させる*/
    border-radius: 30px;
    color: #000000;
  }


.news_box li{ list-style:none;
margin: .5rem 0;}


/*==================================================
indexバナーのスライダーのためのcss
===================================*/
.index_banner{
  button {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 50px 0;
    outline: none;
    border-radius: 0;
  }
  .banner {
    width: 200px;
/*    height: 150px;*/
  }
  
  .banner:nth-child(1),
  .banner:nth-child(5),
  .banner:nth-child(9)
   {
    background-color: #ffcccc;
  }
  
  .banner:nth-child(2),
  .banner:nth-child(6),
  .banner:nth-child(10) {
    background-color: #ffffcc
  }
  
  .banner:nth-child(3),
  .banner:nth-child(7),
  .banner:nth-child(11) {
    background-color: #ccccff;
  
  }
  
  .banner:nth-child(4),
  .banner:nth-child(8),
  .banner:nth-child(12) {
    background-color: #ccffcc;
  }
  .wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
/*    height: 250px;*/
    margin-bottom: 10px;
  }
  /* banner4つをまとめたスライドブロック */
  .wrap .slideshow {
    display: flex;
    -webkit-animation: loop-slide 20s infinite linear 1s both;
    animation: loop-slide 20s infinite linear 1s both;
  }
  /**************
  animation-name: loop-slide;   /* アニメーション名 
animation-duration: 20s;        /* 開始から終了までの所要時間 
animation-iteration-count: infinite;  /* アニメーションのループ回数 
animation-timing-function: linear;  /* 動きの加減速 
animation-delay: 1s;            /* アニメーションが開始するまでの遅延時間 
animation-fill-mode: both;            /* アニメーション開始前・終了後の挙動 
  *********************/


/* hover 動きを止める*/
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* hover 装飾 */
.banner-hover {
  transition: all 0.2s;
  margin-right: 20px;
}

.banner-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}

}

  /*アニメーション*/
  @-webkit-keyframes loop-slide {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop-slide {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
  }

/**************/
h2 img{
  width: 50px;
}
/******index_main *******/
p.card-text{
    margin: 20px 0;
  }
  
  .index_main img,
  .featurette_img
  {
max-height: 250px;
height: auto;
width: 100%;
object-fit: cover;/*画像の中心から切り取り*/
  }
/****************featurette*************/
  .featurette .bg-img-l {
    object-fit: cover;/*画像の中心から切り取り*/
    background-size:contain;
    background-position: left; 
    background-repeat: no-repeat;
   background-size: 50% auto; /* 1 つ目の値は画像の幅、2番目の値は高さ */
  }
  .featurette .bg-img-r {
    object-fit: cover;/*画像の中心から切り取り*/
    background-size:contain;
    background-position: right; 
    background-repeat: no-repeat;
   background-size: 50% auto; /* 1 つ目の値は画像の幅、2番目の値は高さ */
  }

  .featurette .wedding {
    background-image: url(../img/wedding.png);
  }
  .featurette .gift {
    background-image: url(../img/gift.png);
  }
  .featurette .celebration {
    background-image: url(../img/celebration.png);
  }

  
/*smサイズでの背景の扱い*/
    @media (max-width: 768px) {
    .featurette .wedding,
    .featurette .gift,
    .featurette .celebration
     {
/*      background-image: none;*/
background-size: 100% auto; /* 1 つ目の値は画像の幅、2番目の値は高さ */
background-color:rgba(255,255,255,0.9);
background-blend-mode:lighten;
    }
  
  }




  .shadow-01{
    text-shadow: 2px 2px 1px #fff;/*文字の影　右に、下に、ぼかす範囲　影の色*/
  }



/*****************/
/*　枠線＋テキストが出現 　*/

.lineText{
  position: relative;/*テキストの基点となる位置を定義*/

}

/*線の設定*/
.lineText span.mask{
  position: relative;
  display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow:hidden;/*拡大してはみ出る要素を隠す*/
  }

.lineText span.mask::before,
.lineText span.mask::after{
    position: absolute;
    top: 4%;
    right: 2.5%;
    bottom: 4%;
    left: 2.5%;
    z-index: 3;
    content:"";
    opacity: 0;
    transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    background:#ffffffe4;/*背景色*/
}

.lineText span.mask::before {
    border-top: 1px solid #fff;/*枠線の色と太さを変更したい場合はこの数値を変更*/
    border-bottom: 1px solid #fff;/*枠線の色と太さを変更したい場合はこの数値を変更*/
    transform: scale(0,1);
}

.lineText span.mask::after{
    border-right: 1px solid #fff;/*枠線の色と太さを変更したい場合はこの数値を変更*/
    border-left: 1px solid #fff;/*枠線の色と太さを変更したい場合はこの数値を変更*/
    transform: scale(1,0);
}

.lineText:hover span.mask::before,
.lineText:hover span.mask::after{/*hoverした時の変化*/
  opacity: 1;
    transform: scale(1);
}

/*中央テキスト*/
.lineText .cap
{
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
 left: 50%;
  transform: translate(-50%,-50%);
  color: #000000;/*テキストの色を変えたい場合はここを修正*/
    line-height: 2.5;/*行の高さを1.5にする*/
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 1px #000000;/*文字の影　右に、下に、ぼかす範囲　影の色*/
    width: 80%;
}

.lineText:hover .cap{/*hoverした時の変化*/
  opacity:1;
}

/* 横幅*/
.lineText{
/*  width: 70%;*/
    margin: 0 auto;/*中央揃え*/

}
.lineText img{
  height: auto;
  width: 100%;
  object-fit: cover;/*画像の中心から切り取り*/
  transform: scale(1);
  filter: blur(0);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.lineText:hover img{/*hoverした時の変化*/
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
  filter: blur(2px);/*ぼかし具合を変更したい場合はこの数値を変更*/

}







/**/
/* 横幅*/
.card .lineText{
  /*  width: 70%;*/
      margin: 0;/*中央揃え*/
  }
.card .lineText:hover .cap-card{/*hoverした時の変化*/
  opacity:1;
}
/*中央テキスト*/
.card .lineText .cap-card
{
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index:10;/*テキストを前面に出す*/
  top: 50%;
 left: 50%;
  transform: translate(-50%,-50%);
  color: #000000;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
    font-weight: 700;
    font-size: 1rem;
   /* text-shadow: 1px 1px 1px #ffffff;/*文字の影　右に、下に、ぼかす範囲　影の色*/
    width: 80%;
}
/*********************/

#menu .border{
  border-radius:0.375rem;
  margin: 1rem 0;
  padding: 1rem;
}

table.menu tr{
border-style: none;
border-color: #ffffff;}

table.menu th {
 /* display      : inline-block;*/
  /*width        : 70%;   */            /*枠のサイズ   */
  background   : #ffffff;            /* 背景色       */
/*  border       : 1px solid #999;     /* 枠線         */
  font-size    : 1rem;               /* 文字のサイズ */
 /* text-align   : left;               /* 文字位置     */
 /* padding      : 10px 5px;                /* 枠の余白     */
/*  line-height  : 1.2;                /* 1行の高さ    */
 /* display       : inline-block;*/

}
 /*--- 先頭文字の定義 ------------------------------ */
 table.menu th:first-letter {
  font-size    : 1.5rem;                /* 文字サイズ   */
  padding      : 0px;                /* 余白         */
  color        : #ff0000;            /* 文字の色     */
 /* float        : left;               /* 2文字目の位置合わせ */

}
table.menu tr td:last-child{
  width: 25%;

}
/*************************************/

.map {
min-height: 250px;
margin-bottom: 3rem;
}

/**************/



ul.select {
  border: 0px solid #8d8d8d;
  background-color: #bebebe;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: .5rem;
  width: 80%;
  margin: 0 auto;
}

ul.select{

 li {
  border: 1px solid #aaa;
  background-color: #f1f1f1;
  line-height: 110%;
  margin:1.5em 0.5em;
  padding:1em 0.8em;
  text-align: center;
  max-width: 200px;
  font-size: 85%;
}
h5{
  font-weight: 500;
  font-size: 1rem;
  padding-top: .5rem;
}
li img{
  max-height: 250px;
  height: auto;
  width: 100%;
  object-fit: cover;/*画像の中心から切り取り*/

}


}
ul.select_sns {
  border: 0px solid #8d8d8d;
 /* background-color: #bebebe;*/
  display: flex;
  flex-wrap: wrap;
/*  justify-content: center;*/
  list-style-type: none;
  padding: .5rem;
  width: 80%;
  margin: 0 auto;
}
ul.select_sns {
  li {
    margin:5px;
    padding:0;
    max-width: 180px;
  }
  li img{
    height: auto;
    width: 100%;

   /* object-fit: cover;/*画像の中心から切り取り*/
  
  }
}
/******************/


  /*******footer********/

  footer .table>:not(caption)>*>*{
    background-color: #eeeeee;
  }
  footer small{
    font-size: x-small;
    font-weight: 700;
  padding-left: 5px;}



/*==================================================
左から右に線が伸びる（下部）
===================================*/
.gnavi li a{
  /*線の基点とするためrelativeを指定*/
position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
color:#063542;
}

.gnavi li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background:#063542;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}


/*********ページトップへ**************/
#page_top{
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: 10px;
  background: hsl(0, 0%, 86%);
  opacity: 0.6;
  border-radius: 70%;
  z-index: 2010;
}

#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 50px;
}
#page_top a::before {
  display: inline-block;
  content: "";
/*  vertical-align: -.125em;*/
  background-image: url(../img/arrow-up-circle-svg.png);
  background-repeat: no-repeat;
  text-align: center;
  background-size: 2rem 2rem;
  width: 50px;
  height: 50px;
  /*color: #fff;*/
  position: absolute;
  right: 35px;
  top: 5px;

}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 90%;
 /* max-width: 900px;*/
  margin:0 auto;
}

.accordion-area li{
  margin: 10px 0;
}

.accordion-area section {
border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
  
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
margin:0 3% 3% 3%;
  padding: 3%;
}

/************予約画面へ******************/

#reserve{
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  position: fixed;
  right: 0px;
  bottom: 40%;
 /* background: hsl(0, 0%, 86%);
  opacity: 0.6;*/
  border-radius: 70%;
  z-index: 2010;
}

#reserve a{
  position: relative;
  display: block;
  width: 100%;
  max-width: 100px;
  max-height: 100px;
}
#reserve a::before {
  display: inline-block;
  content: "";
/*  vertical-align: -.125em;*/
  background-image: url(../img/reserve.png);
  opacity: 0.7;
  background-repeat: no-repeat;
  text-align: center;
  background-size: 8rem;/*10rem*/
  width: 8rem;
  height:  8rem;
  /*color: #fff;*/
  position: absolute;
  right: 5px;
  top: 5px;
}

#reserve a:hover{
  transform-origin: right;
  transform: scale(1.2, 1.2);
  /*画像の拡大率*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}
#reserve a:hover::before
 {
  opacity: 1;}

  
#reserve_mo{
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 15%;
  z-index: 2010;
}
#reserve_mo a{
  margin: 0 auto;
  position: relative;
  display: block;
  width: 100%;

}
#reserve_mo a::before {
  display: inline-block;
  content: "";
/*  vertical-align: -.125em;*/
  background-image: url(../img/reserve_mo.png);
  background-repeat: no-repeat;
  text-align: center;
  background-size: 25rem;/*10rem*/
  width: 25rem;
  height:  5rem;
  position: absolute;
  margin: 0 auto;

}


