/* すべてのページに適用される設定 */
html {
    font-size: 16px;
    font-family: sans-serif;
}

h2{
    font-size: 50px;
    font-family: なぎの Medium;
}

input{
    font-size: 50px;
    font-family: なぎの Medium;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 0 0 0;
}

p,
li,
td {
    line-height: 1.7;
}

a:link {
    color: #F07D34;
    text-decoration: none;
}



a:visited {
    color: #F07D34;
    text-decoration: none;
}

a:hover {
    color: #f07d34;
    text-decoration: underline;
}

a:active {
    color: #F07D34;
    text-decoration:underline;
}

img {
    max-width: 100%;
}

/* すべてのページに適用 - ヘッダー */
/*PC表示のナビメニュー*/
nav.navi-sp {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.navi01 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.navi01 a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  margin: 0 10px;
  transition: 0.3s;
}

.navi01 a:hover {
  background: #ccc;
}


/* ハンバーガーメニューの設定 */
@media (max-width: 600px) {

  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 110;
    right: 15px;
    top: 17px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    border-radius: 5px;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #BBBBBB;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビメニュー展開時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    background: #bbbbbb;
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    background: #bbbbbb;
    transform: rotate(45deg);
  }

  /* メニュー展開時　*/
  nav.navi-sp {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    padding: 20px 0;
    transition: 0.3s;
  }

  nav.navi-sp ul {
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
  }

  nav.navi-sp ul li a {
    display: block;
    color: #fff;
    padding: 10px 0;
    margin: 5px 0;
    text-decoration: none;
  }



  /* クリックでナビメニュー開閉 */
  nav.navi-sp.active {
    opacity: 100;
    visibility: visible;
  }
}
.logo img {
    width: 1000px; 
    height: auto;
}
.header {
    padding-top: 40px;
    background-color: #dbeff3;
}

.logo {
    text-align: center;
}

.nav ul {
    margin: 20px 0 30px 0;
    padding-bottom: 10px;
    list-style-type: none;

    display: flex;
    justify-content: center;
    gap: 70px;
}

.nav a:link {
    color: #604c3f;

}

.nav a:visited {
    color: #604c3f;
}

.nav a:active {
    text-decoration: none;
}

/* すべてのページに適用 - ヒーロー  */
.hero {
    text-align: center;
    margin: 0 auto;
    max-width: 700px; /* 画像の最大横幅 */
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* すべてのページに適用 - メイン */
main {
    margin: 90px auto 90px auto;
    max-width: 1000px;
}

main h2 {
    margin: 60px 0 20px 0;
    border-bottom: 2px solid #253958;
    padding: 0 0 5px 0;
    color: #253958;
    font-size: 1.3rem;
}

/* すべてのページに適用 - フッター */
.gotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.gotop img {
    width: 150px;
    height: auto;
    display: block;
}

.copyright {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #dbeff3;
    color: #604c3f;
    text-align: center;
}

/* 個別のスタイルタイル  */
/* index.html */
.logo-whale {
    text-align: center;
}

.shop-info {
    border-collapse: collapse;
}

.shop-info th,.shop-info td {
    border: 1px solid #DBDBDB;
    padding: 20px;
}

.shop-info th {
    width: 112px;
    text-align: left;
    vertical-align: top;
}

/*menu.html*/
.items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px;
}

/* contact.html */
form{
    margin: 0 auto;
    max-width: 640px;
}
input[type=text],textarea{
    padding: 6px;
    width: 100%;
    font-size: 1rem;
}
textarea {
    height: 140px;
}
.submit{
    text-align: center;
}
input[type=submit]{
    border: none;
    padding: 20px;
    width:200px;
    background-color: #253958;
    color: #FFF;
    font-size: 1rem;
}
/*　モバイル対応 */
@media(max-width: 767px){
    .nav ul{
        flex-wrap: wrap;
        gap: 20px;
    }
    main{
        padding: 0 4%;
    }
    /* index.htlm */
    .hero.index{
        padding: 28vh 0;
    }
}

/* menu.htlm */
.items{
    grid-template-columns: 1fr 1fr;
}
/* 雪 */
.snow {
  /*雪の色*/
  color: #c6e3e3;
  /*雪の大きさ*/
  font-size: 10px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 2px,
  10vw  -400px 3px,
  20vw  -500px 4px,
  30vw  -580px 1px,
  39vw  -250px 2px,
  42vw  -340px 5px,
  56vw  -150px 2px,
  63vw  -180px 0,
  78vw  -220px 4px,
  86vw  -320px 9px,
  94vw  -170px 7px;
  /*雪アニメーション1*/
  animation: roll 5s linear infinite;
/* ★ここを 9999 から -1 に変更します★ */
  z-index: -1; 
  
  /* 雪が邪魔でクリックできないのを防ぐ */
  pointer-events: none; 
}
  /*2つめの雪アニメーション*/
.snow2nd{animation: anim 8s linear infinite;}

@keyframes roll {
    0% {transform:rotate(0deg);}
   90% {opacity:1;}
   100% {transform:rotate(20deg);top:100%;opacity:0;}
}
@keyframes anim {
  100% {color:transparent;top:150%;}
}