@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  color: #24292e;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto 130px auto;
  padding: 0 4%;
  font-size: 0.9rem;
  text-align: center;
}
.site-title {
  width: 180px;
  line-height: 1px;
  padding: 10px 0;
}
.site-title a {
  display: block;
}
.sec-title {
  font-size: 1.5rem;
  margin-bottom: 65px;
  text-align: center;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}
#header li a {
  font-size: 0.9rem;
  color: #24292e;
}
#header li a:hover {
  opacity: 0.7;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  margin-bottom: 80px;
  overflow: hidden;
}

#mainvisual video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}


/*-------------------------------------------
About
-------------------------------------------*/
#about ul {
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
}
#about p {
  text-align: center;
  line-height: 1.8;
}

/*-------------------------------------------
Goods
-------------------------------------------*/
#goods ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  padding: 0;
}
#goods li {
  width: 30%;
  text-align: center;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="number"],
form input[type="password"],
form textarea {
  border: 1px solid #ccc; /* 枠線の色 */
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box; /* はみ出し防止 */
  border-radius: 0; /* 角丸をなくす場合 */
  background-color: #fff; /* 背景色 */
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border-color: #333; /* フォーカス時の色 */
  outline: none; /* デフォルトの青枠を消す */
}

form button[type="submit"] {
  display: inline-block;
  background-color: #333; /* 背景色 */
  color: #fff;            /* 文字色 */
  padding: 10px 20px;     /* 内側余白 */
  border: none;           /* 枠線なし */
  border-radius: 0;       /* 角丸なしで四角に */
  font-size: 16px;
  cursor: pointer;        /* マウスを乗せたら指アイコン */
  transition: background-color 0.3s ease; /* ホバー時のアニメ */
}

form button[type="submit"]:hover {
  background-color: #555; /* ホバー時の色 */
}


/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  background-color: #ffffff;
  color: #000000;
  font-size: 0.7rem;
  padding: 20px 0;
  text-align: center;
}
#footer a {
  color: #000000;
  text-decoration: underline;
}
.footer-logo {
  margin: 0 auto 10px;
  display: block;
  width: 180px;
}

/*-------------------------------------------
SP対応
-------------------------------------------*/
@media screen and (max-width: 600px) {
  .wrapper {
    margin-bottom: 70px;
  }
  .site-title {
    margin-top: 20px;
  }
  .sec-title {
    margin-bottom: 40px;
  }

  #header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  #header ul {
    flex-direction: column;
    gap: 10px;
  }

  #goods ul {
    flex-direction: column;
    align-items: center;
  }
  #goods li {
    width: 100%;
  }
}
