@charset "utf-8";

/****** 共通基本設定
******************************************************/
body {
  font-family: "M PLUS 1p", sans-serif;
  background-color: #3e4e2a;
  margin: 0;
}


* {
  box-sizing: border-box;
}

/* 外枠・コンテンツ中央設定  */
.wrapper {
  width: 960px;
  margin: 0 auto;
  /* background-color: #ffffff; */
}

/* ヘッダー */
.header {
  margin: 40px;
}
.header img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.header h1 {
  margin: 0 0 0 10px;
  height: 20px;
  font-size: 12px;
  color: #f2d873;
}
/* ナビゲーション */
navigation__main {
  width: 100%;
}
.navigation__main ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  /* 前の点を消す */
  list-style-type: none;
}
.navigation__main li {
  font-size: 14px;
  font-weight: bold;
  color: #f2d873;
}
.navigation__main a:link {
  color: #f2d873;
  text-decoration: none;
}
.navigation__main a:visited {
  color: #f2d873;
}
.navigation__main a:hover {
  color: #968d69;
}
/* コンテンツエリア設定 */
.main__content {
  width: 960px;
}
.main__content h2 {
  font-size: 42px;
  color: #f2d873;
  font-weight: normal;
  text-align: center;
}


.main__content p {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
}
/* フッター */
.footer {
  width: 960px;
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: dotted 1px #f2d873;
}
.footer .footer__info {
  width: 30%;
  color: #f2d873;
}
.footer .footer__info h3 {
  font-size: 20px;
  font-weight: bold;
  
}
.footer .footer__info ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.footer .footer__navigation {
  width: 30%;
}
/* .footer .footer__navigation small {
  position: relative;
  top: 40%;
  color: #3e3e3e;
} */
.footer .footer__navigation ul {
  list-style: none;
}
.footer .footer__navigation ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #f2d873;
  font-weight: bold;
  text-align: right;
}
.footer .footer__navigation ul li a {
  color: #f2d873;
  text-decoration: none;
}
.footer .footer__navigation ul li a:hover {
  color: #968d69;
}
/****** index.html用
******************************************************/
/* メインコンテンツエリア */
.feature-area {
  width: 960px;
  margin: auto;
}
.feature-area .item {
  display: flex;
  justify-content: space-between;
  margin: 100px 0 100px 0;
}
.feature-area .item:nth-child(odd) {
  flex-direction: row-reverse;
}
.feature-area .item__img {
  width: 48%;
}
.feature-area .item__img img {
  width: 100%;
  border-radius: 10px;
}
.feature-area .item__body {
  width: 48%;
}

/* ニュースエリア */
.news {
  margin: 0 auto 100px auto;
  width: 800px;
}
.news h2 {
  font-size: 28px;
  font-weight: bold;
  color: #f2d873;
}
.news ul {
  list-style-type: none;
}
.news ul li {
  font-size: 20px;
  color: #f2d873;
}
/****** menu.html用
******************************************************/
.menu {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.menu__img {
  width: 50%;
  height: auto;
}
.menu__img img {
  width: 100%;
}
.menu__navigation {
  width: 100%;
  text-align: center;
}
.menu__navigation ul{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 auto;
}
.menu__navigation ul li{
  position: relative;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.menu__navigation ul li::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffdb6d;
  transition: width 0.3s ease;
}
.menu__navigation ul li:hover {
  color: #ffdb6d;
}

.menu__navigation ul li:hover::after {
  width: 100%;
}
.menu__navigation a:link{
  color: #fff;
  text-decoration: none;
}
.menu__navigation a:visited{
  color: #fff;
}
.menu__navigation a:hover{
  color: #7b7b7b;
}
.menu__main {
  margin: 60px auto;
  max-width: 900px;
  color: #333;
}
.menu__sub {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}
.menu__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin: 0 auto;
}

.menu__table th,
.menu__table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px dotted #666;
  color: #fff;
}

.menu__table td:first-child {
  text-align: left;
  min-width: 200px; /* 控制饮品名列宽度 */
}

.menu__table .jp {
  font-size: 12px;
  color: #aaa;
}

.menu__note {
  margin-top: 20px;
  text-align: right;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.menu__flexbox {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.menu__card {
  text-align: center;
  color: #fff;
  max-width: 200px;
}
.menu__main ul{
  padding-left: 0;
  list-style-type: none;
}
.menu__main ul li{
  margin-bottom: 20px;
  font-size: 20px;
}
/****** アクセスページ
******************************************************/
.map {
  margin-bottom: 40px;
}
.tablestyle iframe {
  margin-bottom: 40px;
}
.tablestyle {
  color: #f2d873;
}
.tablestyle a {
  color: inherit;
}


/****** コンタクトページ
******************************************************/
.contact-form {
  margin-bottom: 50px;
}

/* お問い合わせフォーム */
form {
  width: 100%;
}
form ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 600px;
}
form li {
  padding: 6px;
  margin-bottom: 1px;
  display: flex;
  justify-content: space-between;
}
form li#send {
  background: none;
  margin-top: 6px;
}
form label {
  width: 20%;
  color: #f2d873;
}
form input,
form textarea {
  width: 70%;
  padding: 20px;
  border: 1px solid #f2d873;
  border-radius: 4px;
  font-size: 16px;
  background-color: #7a8c63;
}
form input:focus,
form textarea:focus {
  border: 1px solid #f2d873;
  background: #d8ccc6;
}
form li#send button{
  width: 20%;
  padding: 10px 0;
  background: #f2d873;
  border: none;
  border-radius: 4px;
  color: #3e4e2a;
  cursor: pointer;
}
form li#send button:hover {
  background-color: #7c6a62;
}