/* ヘッダー */
.l-header {
  background-color: #f6f7f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ヘッダー内レイアウト */
.l-header__inner {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 40px;
  transition: all 0.3s ease;
  position: relative;
}

.p-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222; /* 必要に応じてブランドカラーに */
}

.p-header__logo img {
  height: 40px; /* ロゴの高さ調整 */
  margin-right: 10px;
}

.p-header__logo__text {
  font-size: 1.1rem;
  font-weight: bold;
  white-space: nowrap;
}


/* ナビゲーションメニュー */
.p-header__nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.p-header__nav__menu__item {
  height: 80px;
}

.p-header__nav__menu__item > a.p-header__link {
  display: flex;
  align-items: center;
  height: 100%; 
  padding: 0 20px;
  cursor: pointer;
}

.p-header__nav__menu__item a[href="contact.html"] {
  background-color: #6fb92c;
  color: #fff;
}

.p-header__nav__menu__item a[href="contact.html"] i {
  color: #fff;
}

.p-header__nav__menu__item.is-instagram {
  background-color: #009245;
}

.p-header__nav__menu__item.is-instagram .p-header__link,
.p-header__nav__menu__item.is-instagram .p-header__link i {
  color: #fff;
}


/* 通常リンク */
.p-header__link {
  text-decoration: none;
  color: #222;
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}


.p-header__link:hover {
  color: #6fb92c;
}

/* アイコン */
.p-header__link i {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.p-header__link:hover i {
  color: #6fb92c;
}

/* お問い合わせリンクだけ少し強調 */
.p-header__link--contact {
  font-weight: 600;
}

/* ハンバーガーボタン（スマホ用） */
.p-header__hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.p-header__hamburger span {
  display: block;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .p-header__nav {
    display: none; /* 必要に応じて開閉スクリプトで制御 */
  }

  .p-header__hamburger {
    display: flex;
  }

  .l-header__inner {
    padding: 12px 20px;
  }
}


/* フッター */
.footer-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #6fb92c;
  padding: 15px 0;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav-links a:hover {
  color: #222;
}

.footer-nav-links i {
  font-size: 1.2rem;
  color: #fff;
}

.footer-nav-links a:hover i {
  color: #222;
}


.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
  }
  
  .footer-logo img {
    width: 150px;
    height: auto;
  }
  
  .footer-info {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    max-width: 600px;
  }
  
  .company-name {
    font-size: 18px;  /* 大きめに */
    font-weight: bold;  /* 太字 */
  }
  

  .footer-info p {
    margin-bottom: 6px;
  }
  
  /*インスタグラム*/
.instagram{
  padding: 60px 20px;
}

.instagram .l-container{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.instagram img{
  width: 15%;
  display: block;
  margin: 0 auto;

}

.instagram h3{
font-size: 36px;
padding: 20px 0;
color: #6fb92c;
}
.instagram-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
}



  /*マップ*/
  .map {
    width: 100%;
  }
  
  .map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
  }
  
  /* プリフッターエリア */
  .pre-footer-banner {
    display: flex;
    gap: 3px;
    background-color: #f0f0f0;
    flex-wrap: wrap;
  }

  .pre-footer-banner-container{
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;  
  }
  
  .pre-footer-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
  }
  
  .pre-footer-box {
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .pre-footer-box img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
  }
  
  .pre-footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0073aa;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .pre-footer-right img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .pre-footer-right p:first-child {
    font-size: 20px;
    font-weight: bold;
  }
  
  .pre-footer-right p:last-child {
    font-size: 14px;
  }
 
  /* 共通 */
.l-container {
  max-width: 1120px;
  margin: 0 auto;
}

.l-button {
  display: inline-flex; /* 横並びで中央寄せ */
  align-items: center;
  justify-content: center;
  background-color: #6fb92c;
  color: #fff;
  border: none;
  padding: 14px 50px;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 18px;
  letter-spacing: 1.6px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.l-button i {
  margin-left: 8px;
}

.l-button:hover {
  background-color: #b2d98c;
  transform: scale(1.05);
}


h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #6fb92c;
}

h3{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 52px;
}

/*サブページタイトル*/
.l-subpage-title {
  background-color: #6fb92c;
  width: 100%;
}

.subpage-title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.subpage-title-text {
  flex: 1;
  margin-left: 100px;
  padding-left: 50px;
}

.subpage-title-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #f4f4f4;
}

.subpage-title-text p {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #f4f4f4;
}

.subpage-title-image {
  text-align: right;
  margin-right: 0; 
}

.subpage-title-image img {
  width: 100%;
  max-width: 500px; /* 必要に応じて調整 */
  height: auto;
  display: block;
}


/* ブレッドクラムナビゲーション */
.breadcrumb{
  padding: 20px 0;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "＞";
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb a {
  text-decoration: none;
  color: #009245;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
