@charset "UTF-8";

html {
    font-size: 16px;
    font-family: "Klee One", cursive;
    color: white;
}
* {
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
}
body {
    background-color: #124f55;
    margin: 0 0;
}

main {
    margin: 0 auto;
    width: 100%;
}
main p {
    text-align: justify;
}

/* ナビ */
nav {
  margin: 0; /* ナビゲーション上の余白も削除 */
}
nav ul {
    text-align: center;
    background-color: #27AEB9;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
}
nav li {
    border-left: 1px solid white;
    list-style-type: none;
    padding-top: 5px;
}
nav img {
    width: 70px;
    margin: 0 auto;
}
@media(max-width:767px) {
    nav ul {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* gotop */
.gotop {
    text-align: right;
    width: 100px;
    margin-left:auto;
    margin-right: 40px;
    margin-top: 40px;
}
.gotop {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

/* フッター */
footer {
    background-color: #27AEB9;
    font-size: 0.8rem;
    padding: 1rem;
    margin-top: 100px;
}
.footeryoko {
    display: flex;
    justify-content: space-between;
}
.footerlogo {
    width: 150px;
}
.suisui {
    text-align: left;
}

.SNS {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.SNS img {
    height: 50px;
}
.copy {
    margin-top: 10px;
    text-align: center;
}

/* 背景動画 */
main {
  position: relative;
}
.movie_blk {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 動画を縦横比保って拡大 */
    z-index: -1; /* コンテンツの下に配置 */
}

.item {
    margin: 0 auto;
    padding: 0 4%;
}
@media(min-width:767px) {
    .item {
        max-width: 1000px;
    }
}

/* index.html */
header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
h1 {
    font-size: 1.5rem;
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translateY(-80%) translateX(-20%);
    color: black;
    margin: 0; /* デフォルト余白を削除 */
    padding: 0;
}

h2 {
    font-size: 1.6rem;
    margin: 60px 0 30px 0;
}

#news td {
    padding: 10px;
    border-top: 1px solid gray
}

#price h3 {
    font-size: 1.2rem;
    font-weight: lighter;
    /* text-decoration: underline; */
    border-bottom: 1px solid white;
    width: 50%;
    margin-top: 40px;
}
.enn {
    text-align: right;
}


/* fishes.html */
.logozone {
    padding: 10px;
    background-color: #124f55;
}
.logozone img {
    width: 300px;

}
.wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
@media(max-width:767px) {
    .wrap {
        grid-template-columns: 1fr 1fr;
    }
}

.sakuhin {
    overflow:hidden;
}
.sakuhin img {
    transition:1s all;
}
.sakuhin img:hover {
    transform:scale(1.2,1.2);
    transition:1s all;
}

/* contact.html */
.contact {
    margin: 0 auto;
}
.contact div {
    margin: 20px 0;
}
input[type="text"] ,[type="email"] ,[type="tel"] ,[type="yubin"] ,[type="jyusho"] ,textarea{
    border: 1px solid #333333;
    width: 80%;
}

.item h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: "Klee One", cursive;
}

form p {
    padding-top: 10px;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

input {
    padding: 5px 0;
}

input[type="submit"] {
    border: none;
    padding: 10px 0;
    width: 150px;
    background-color: #27AEB9;
    color: white;
    font-size: 1rem;
    margin-top: 30px;
}

/* fishアニメーション用の記述 */
.scene {
  position: relative;
  width: 100vw;
  height: 100px;
  overflow: hidden;
  align-items: center;
}

.fish {
  width: 80px;
  height: 80px;
  background-image: url("images/fish1.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: -100px;
  animation:
  moveRight 8s linear forwards,
  runCycle 0.7s steps(2) infinite;
}

@keyframes moveRight {
  0% {
    left: -100px;
  }
  100% {
    left: calc(100vw - 200px);
  }
}

@keyframes runCycle {
  0% {
    background-image: url("images/fish1.png");
  }
  50% {
    background-image: url("images/fish2.png");
  }
  100% {
    background-image: url("images/fish1.png");
  }
}

.ue {
    display: flex;
    background-color: #124f55;
    justify-content: flex-end;
}
