@charset "UTF-8";
html{
    font-size: 100%;
    
}

body{
    color: #2b2a27;
    font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Meiryo", sans-serif;
}

img{
    max-width: 100%;
}

ul{
    list-style: none;
}

a{
    color: #2b2a27;
}
/* ヘッダー */
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  padding: 5px 30px;
  background:rgba(255, 248, 240, 0.8);
  position: absolute;
  width: 100%;
  z-index: 10;
}


/* ナビゲーションのレイアウト */

#nav ul {
  display: flex;
  padding-left: 0;
  margin-left: 30px;
}
#nav li{
  margin-left: 30px;
}
#nav a {
  text-decoration: none;
    color: #413f3a;
     position: relative;
     transition: 0.3s;
}
#nav a:hover {
  color:#a67c52;
}
#nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #a67c52;
  transition: width 0.3s ease;
}

#nav a:hover::after {
  width: 100%;
}

.site-title {
  color: #fff;
  height: 60px;
  width: auto;
}


/*-------------------------------------------
Mainvisual
-------------------------------------------*/

#mainvisual img{
  display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 80px;
}
#mainvisual {
  position: relative;
}
#mainvisual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.main-text {
  position: absolute;
  top: 45%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
  
}

.main-text h2 {
  font-size: 3.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho', serif;
}

.main-text p {
  line-height: 1.8;
  font-family: 'Noto Serif JP', serif;
}
/*-------------------------------------------
ABOUT
-------------------------------------------*/

.wrapper {
  margin: 0 auto;
  padding: 0 40px;
}

#about {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 80px;
  font-family: 'Shippori Mincho', serif;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
    margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Shippori Mincho', serif;
  line-height: 1.6;
}

.about-text p {
  line-height: 2;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
/*-------------------------------------------
MENU
-------------------------------------------*/

#menu {
  padding: 120px 0;
  text-align: center;
}

.menu-text {
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 2;
}

.menu-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.menu-normal,
.menu-hover {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
}

.menu-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.menu-link:hover .menu-hover {
  opacity: 1;
}

.menu-link:hover .menu-normal {
  opacity: 0;
}

.menu-btn {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
/*-------------------------------------------
NEWS
-------------------------------------------*/
#news {
  text-align: center;
}

.news-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.news-list li {
  text-align: left;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #eee;
}

.news-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.news-list time {
  font-size: 13px;
  color: #999;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.news-tag {
  display: inline-block;
  font-size: 12px;
  color: #c89b5e;
  background: #faf6ef;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.news-list li a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.news-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.news-list p br {
  content: "";
  margin-bottom: 6px;
  display: block;
}
.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-single {
  padding: 120px 0 60px;
}
.news-single__content .wp-block-image img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  margin-bottom: 60px;
}
.news-single__content {
  max-width: 800px;
  margin: 0 auto;
}
.news-single__content p {
  margin: 0 0 1.2em;
  font-size: 18px;
  line-height: 2;
}
.news-single__title {
  text-indent: 3em;
}

@media screen and (max-width: 767px) {
  .news-single__title {
    text-indent: 0;
  }
}
/*-------------------------------------------
ACCESS
-------------------------------------------*/
#access {
  padding: 120px 0;
}

.access-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
   margin-top: 110px;
}

.access-address {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.access-tel {
  font-size: 15px;
  margin-bottom: 16px;
  color: #a67c52;
}

.access-text {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-top: 30px;
}

.access-map-full {
  margin-top: 60px;
  margin-bottom: 30px;
}

.access-map-full iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
/*-------------------------------------------
FOOTER
-------------------------------------------*/

.footer {
  padding: 80px 20px 30px;
  background: #f8f4ee;
  text-align: center;
  
}

.footer__logo img {
  width: 160px;
}

.footer__nav {
  margin-top: 32px;
  
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  
}
.footer__list a {
  text-decoration: none;
   color: #413f3a;
    position: relative;
     transition: 0.3s;

  }
 
.footer__list a:hover {
  color: #a67c52;

}

.footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #a67c52;
  transition: width 0.3s ease;
}
.footer__list a:hover::after {
  width: 100%;
}
.footer__copyright {
  margin-top: 48px;
  font-size: 1.2rem;
  color: #777;
}

/* ハンバーガーメニュー */

.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: #413f3a;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  

  #nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #fff8f0;
  padding-top: 100px;
  transition: 0.3s; 
  z-index: 100;
}

#nav ul {
  flex-direction: column;
  margin-left: 0;
  text-align: center;
}

#nav li {
  margin: 20px 0;
}
#nav.open {
  right: 0;
}
.header_inner {
  padding: 5px 10px;
}
  .hamburger {
    display: block;
    z-index: 101;
    position: relative;
  }

  .wrapper {
    padding: 0 20px;
  }

  /* メインビジュアル */
  .main-text {
    left: 5%;
    right: 5%;
  }

  .main-text h2 {
    font-size: 2rem;
  }

  .main-text p {
    font-size: 0.9rem;
  }

  /* ABOUT */
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  /* MENU */
  #menu {
    padding: 80px 0;
  }

 .menu-normal,
.menu-hover {
  width: auto;
  max-width: 100%;
}


.menu-link {
  display: inline-block;
}
.menu-link img {
  display: block;
}

  /* NEWS */
  .news-list li {
    padding: 16px;
  }

  /* ACCESS */
  #access {
    padding: 80px 0;
  }

  .access-content {
    padding: 0 20px;
  }


  .access-map-full iframe {
    height: 300px;
  }

  /* FOOTER */
  .footer {
    padding: 60px 20px 30px;
  }

  .footer__list {
    gap: 16px;
  }

  .footer__logo img {
    width: 130px;
  }
}
/*-------------------------------------------
MENU PAGE
-------------------------------------------*/

#menu-page {
  padding: 120px 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;

}

.menu-item {
  overflow: hidden;
}

.menu-item img {
  transition: 0.3s;
}

.menu-item:hover img {
  transform: scale(1.05);
}

.menu-item h3 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
  text-align: center;
}

.menu-item p {
  padding: 0 20px 20px;
  line-height: 1.8;
  font-size: 0.9rem;
}
.back-home {
  display: inline-block;
  margin: 20px 0 10px;
  font-size: 16px;
  color: #a67c52;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.back-home:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------------*
 * CONTACT PAGE（Contact Form 7対応版）
*-------------------------------------------*/

#contact-page {
  padding: 120px 0;
}

.contact-text {
  text-align: center;
  line-height: 2;
  margin-bottom: 50px;
}

/* フォーム全体 */
.wpcf7 form {
  max-width: 700px;
  margin: 0 auto;
}

/* ラベル */
.wpcf7 label {
  display: block;
  margin-bottom: 16px;
}

/* 入力欄 */
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  margin-top: 6px;
}

/* テキストエリア */
.wpcf7 textarea {
  height: 160px;
  resize: vertical;
}

/* 送信ボタン */
.wpcf7-submit {
  display: block;
  margin: 40px auto 0;
  padding: 12px 40px;
  border: none;
  background: #a67c52;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

/* ホバー */
.wpcf7-submit:hover {
  opacity: 0.8;
}