@charset "UTF-8";

/* すべてのページに適応 */
html{
    font-size: 16px;
}

*{
    box-sizing: border-box;   
}

body{
    margin: 0;
    background-color: #4cb4f580;
}
a:link{
    color: #34675C;
    text-decoration: none;
}

a:visited{
    color: #34675C;
    text-decoration: none;
}

a:hover{
    color: #34675C;
    text-decoration: none;
}

a:active{
    color: #34675C;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: 400px;
}

main{
    text-align: center;
    padding-top: 15px;
    padding-bottom: 25px;
    margin: 100px auto;
    max-width: 1100px;
    background-color: #ffffff;
}


header{
    height: 150px;
    text-align: center;
    background-size: cover;
    background-image: url(./img/hedda-１.jpg);
    background-repeat: no-repeat;
}

nav ul{
    margin-top: 0;
    padding: 50px;
    font: size 20px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero{
    text-align: center; 
   
}

.hero video{
    width: 100%;
    height: 100vh;
    text-align: center;
    border-radius: 30px;
}

h2{
    margin: 150px 300px 20px 300px;
    text-align: center;
    font-weight: bold;
    border-bottom:3px solid#B3C100 ;
}

.shop{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;}



.restaurant{
    padding-top: 20px;
    text-align: center;
}

.access{
    padding-top: 20px;
    text-align: center;
}
.map img{
    text-align: right;
}

.gotop{
    text-align: left;
}
footer img{
    width: 150px;
    height: 150px;
    position: fixed; /* 追従させる為にfixedの値を記述します */
    z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
    top:300px; /* 上から150pxのところにバナーを配置します */
    left: 10px;
}
.copyright{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(./img/hedda-１.jpg);
    background-repeat: no-repeat;
    background-size: cover ;
    color:#B3C100;
    text-align: center;
}

footer iframe{
    margin-top: 10px;
    margin-bottom: 10pxS;
}
/* itemページ */

.items{
  padding-right: 20px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}


/* menuページ */
.menus{
    padding-left: 20px;
    padding-right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.menu img{
    height: 300px;
}
.carousel {
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slides {
  display: flex;
  width: 400%; /* スライドの数 × 100% */
  animation: slide 12s infinite;
}

.slide {
  width: 800px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  display: block;
}

/* スライドアニメーション */
@keyframes slide {
  0%    { transform: translateX(0); }
  20%   { transform: translateX(0); }
  25%   { transform: translateX(-100%); }
  45%   { transform: translateX(-100%); }
  50%   { transform: translateX(-200%); }
  70%   { transform: translateX(-200%); }
  75%   { transform: translateX(-300%); }
  95%   { transform: translateX(-300%); }
  100%  { transform: translateX(0); }
}
@media (max-width: 767px){
    nav ul {
        flex-wrap: wrap;
    }
    h2{
        margin: 0;
    }
    .shop{
        display: grid;
        grid-template-columns: 1fr;
    }

}

/* メイン(水色#4CB5F5)文字(濃い緑#34675C)ポイントからー(黄緑#B3C100)*/