@charset "UTF-8";


.heading {
    padding: .5em .7em;
    border-left: 5px solid #006400;
    background-color: #f2f2f2;
    color: #333333;
    font-size: 1.5rem;
    margin: 1em 0;
}



#sub-nav {
  display: flex;
  align-items: center;
  gap: 1em;
      padding: 2em 0 2em 2.5em;
border-top: 1px solid #006400;
    background-color: #e5efe3;
	justify-content: center;
}

@media screen and (max-width: 750px) {
#sub-nav {
display:none;
}
}



/* h2 のデザイン */
#sub-nav h2 {
  font-size: 1.6rem;
  white-space: nowrap; /* 折り返し防止 */
  color: #006400;
  margin: 0 1.5em 0 0;
}

/* ul 横並び用 */
#sub-nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* li 共通スタイル */
#sub-nav li {
  position: relative;
  background-repeat: no-repeat;
  background-size: 1.3em 1.3em;
  background-position: 0.5em center;
  background-color: #006400;
  width: 150px;
  transition: opacity 0.3s;
  cursor: pointer;
}

#sub-nav li:hover {
  opacity: 0.7;
}

#sub-nav li a {
 display: flex;
  align-items: center;
  padding: 0.5em 0 0.5em 2.5em;  /* ← ここに移動 */
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  height: 100%;
  width: 100%;
}

/* 各アイコン指定 */
#sub-nav .icon-price {
  background-image: url(../../img/unpenji/common/price.png);
}

#sub-nav .icon-timetable {
  background-image: url(../../img/unpenji/common/timetable.png);
}

#sub-nav .icon-access {
  background-image: url(../../img/unpenji/common/access.png);
}

#sub-nav .icon-outline {
  background-image: url(../../img/unpenji/common/outline.png);
}

#sub-nav .icon-gallery {
  background-image: url(../../img/unpenji/common/gallery.png);
}



#contact {
  background-color: #f9f9f9;
  padding: 2em;
  color: #333;
      margin: 3em 0 0 0;
}

/* 2カラム化 */
#contact .contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  gap: 2em;
}

/* 左側：テキスト全体 */
#contact .contact-text {
  flex: 1 1 300px; /* 最小300px、必要に応じて広がる */
}

/* 見出し */
#contact .contact-title h3 {
  font-size: 2.2rem;
  color: #006400;
  margin: 0 0 0.5em 0;
  line-height: 1.5;
  text-align: left;
}

/* 住所など */
#contact .contact-info address {
  font-style: normal;
  line-height: 1.5;
  font-size: 1.1rem;
  text-align: left;
}

/* 右側：マップ */
#contact .contact-map {
  flex: 1 1 300px;
  min-width: 300px;
  height: auto;
}

/* iframeのサイズ制御 */
#contact .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* レスポンシブ：縦並びに切り替え */
@media screen and (max-width: 768px) {
  #contact .contact-inner {
    flex-direction: column;
    align-items: center;
  }

  #contact .contact-text,
  #contact .contact-map {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  #contact .contact-title h3,
  #contact .contact-info address {
    text-align: center;
  }

  #contact .contact-map iframe {
    height: 250px;
  }
}



