/* 共通 */
body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    background-color: #FFEBD2;
    color: #333;
    line-height: 1.6;
}

img {
	max-width: 100%;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

/* テキスト */
.txt-style-m{
	color: #333;
	text-indent: 1px;
}

.txt-style-s{
	color: #333;
	text-indent: 1px;
	font-size: 90%;
}

.txt-style-s a{
	color: #333;
	text-indent: 1px;
	text-decoration: none;
}

.txt-style-s a:hover{
	color: #a68b5b;
	text-indent: 1px;
	text-decoration: underline;
}

/* マージン */
.m-top200{
	margin-top: 200px;
}

/* ヘッダー */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#main-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;}

.logo img {
  max-height: 60px;
  width: auto;
}

/* 共通ナビスタイル */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1000px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ハンバーガーボタン（スマホ用） */
.menu-toggle {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* リンクリスト */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #a68b5b;
}

/* ▼ スマホ対応 ▼ */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-links.open {
    max-height: 300px; /* 適宜調整 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links li {
    text-align: center;
    padding: 12px 0;
  }
}

/* ヒーローセクション */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-size: 2em;
  font-family: 'Georgia', serif;
  text-align: center;
}

/* セクション */
.section {
  padding: 60px 0;
}

.section h3 {
  font-family: 'Georgia', serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* メニュー */
/* メニューセクション */
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* タブレット：2列 */
@media screen and (min-width: 600px) {
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* デスクトップ：3列 */
@media screen and (min-width: 900px) {
  .menu-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.menu-item h4 {
  margin: 15px;
  font-size: 20px;
  font-family: 'Georgia', serif;
  text-align: center;
}

.menu-item p {
  margin: 0 15px 15px;
  font-size: 14px;
  color: #666;
}

.menu-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* or 3/2 */
  object-fit: cover;
  display: block;
}

/* スライダー共通 */
.slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* MAP */
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* お問い合わせ */
.contact-container {
  max-width: 800px;
	margin-left: auto;
	margin-left: auto;
  padding: 0 20px;
}
.contact-box {
  display: grid;
  max-width: 450px;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* デスクトップ・タブレット：2列 */
@media screen and (min-width: 600px) {
  .contact-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* お問い合わせボタン */

.form {
	max-width:800px;
	height:100%;
	margin-right: auto;
	margin-left: auto;
	padding:0px 20px;
}

.form p{
	font-size:110%;
	line-height:1.5em;
	color:#666;
	text-align:left;
	margin-top:15px;
	margin-bottom:15px;
}

.form .txt_thank{
	font-size:110%;
	line-height:1.5em;
	color:#666;
	text-align:center;
	margin-top:15px;
	margin-bottom:15px;
}

.btn-contact{
  width:200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  display: inline-block;
  background-color: #a68b5b;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s;
	}

.btn-contact:hover {
  background-color: #8b6f43;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* 電話ボタン（スマホ専用） */
.call-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #a68b5b;
  text-align: center;
  padding: 15px;
  display: none; /* デフォルト非表示 */
  z-index: 2000;
}
.call-btn a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 768px) {
  .call-btn {
    display: block;
  }
}

/* フッター */
footer {
  background-color: #f5f0e8;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 768px) {
  footer {
	  margin-bottom: 50px;
  }
}
