@charset "utf-8";

/* 新デザイン用CSS */
/* ここから下に、リニューアル用のデザインを追加していきます */

body {
  background: #faf7ef;
}

/* ==============================
   ヘッダー
============================== */

#header {
  background: #ffffff;
  border-bottom: 1px solid #e6dfd4;
  box-shadow: 0 2px 12px rgba(60, 45, 30, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#top_logo {
  margin: 0;
}

#top_logo img {
  width: 220px;
  height: auto;
  display: block;
}

#menu {
  margin-left: auto;
}

#nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

#nav li {
  margin: 0;
  padding: 0;
}

#nav li a {
  color: #3f3428;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

#nav li.select a,
#nav li a:hover {
  color: #5f7f32;
}

#nav li.select a::after,
#nav li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #6b8e3d;
  border-radius: 2px;
}

/* ==============================
   メインビジュアル
============================== */

#mainimg {
  background: linear-gradient(180deg, #f7f2e8 0%, #faf7ef 100%);
  padding: 32px 24px 48px;
}

#mainimg .inner {
  max-width: 900px;
  margin: 0 auto;
}

#mainimg img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(60, 45, 30, 0.14);
}

/* ==============================
お知らせ欄
============================== */

#top_news {
background: #faf7ef;
padding: 56px 24px;
}

#top_news .inner02 {
max-width: 1080px;
margin: 0 auto;
background: #ffffff;
border: 1px solid #eadfce;
border-radius: 22px;
padding: 32px 36px;
box-shadow: 0 10px 28px rgba(60, 45, 30, 0.08);
}

#top_news h2 {
margin: 0 0 24px;
color: #3f3428;
font-size: 24px;
letter-spacing: 0.08em;
position: relative;
padding-left: 18px;
}

#top_news h2::before {
content: "";
position: absolute;
left: 0;
top: 0.25em;
width: 5px;
height: 1.1em;
background: #6b8e3d;
border-radius: 4px;
}

#top_news ul.news {
margin: 0;
padding: 0;
list-style: none;
}

#top_news ul.news li {
display: grid;
grid-template-columns: 90px 130px 1fr;
align-items: center;
gap: 18px;
margin-bottom: 14px;
padding: 18px 20px;
background: #fffdf8;
border: 1px solid #eee4d6;
border-radius: 14px;
transition: 0.2s ease;
}

#top_news ul.news li {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(60, 45, 30, 0.1);
}

#top_news .news_kind {
display: inline-block;
padding: 5px 12px;
background: #6b8e3d;
color: #ffffff;
font-size: 13px;
font-weight: bold;
text-align: center;
border-radius: 999px;
}

#top_news .news_date {
color: #7b6a58;
font-size: 14px;
font-weight: bold;
}

#top_news ul.news a {
color: #3f3428;
font-size: 15px;
font-weight: bold;
text-decoration: none;
}

#top_news ul.news a {
color: #6b8e3d;
}

#top_news .detail_btn {
display: block;
width: fit-content;
margin: 24px 0 0 auto;
padding: 10px 22px;
background: #7a5a35;
color: #ffffff;
border-radius: 999px;
text-decoration: none;
font-weight: bold;
font-size: 14px;
}

#top_news .detail_btn {
background: #6b8e3d;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
#top_news {
padding: 36px 16px;
}

#top_news .inner02 {
padding: 24px 18px;
}

#top_news ul.news li {
grid-template-columns: 1fr;
gap: 8px;
}

#top_news .detail_btn {
margin: 20px auto 0;
}
}

#top_news .detail_btn::before {
  display: none;
}

#top_news .detail_btn {
  display: inline-block;
  width: auto;
  min-width: 120px;
  margin: 28px 0 0 auto;
  padding: 12px 24px;
  background: #6b8e3d;
  color: #ffffff;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(60, 45, 30, 0.12);
}

#top_news .detail_btn:hover {
  background: #7a5a35;
}

/* ==============================
サービス内容
============================== */

#top_service {
background: #faf7ef;
padding: 56px 24px;
}

#top_service .inner02 {
max-width: 1080px;
margin: 0 auto;
background: #ffffff;
border: 1px solid #eadfce;
border-radius: 22px;
padding: 36px;
box-shadow: 0 10px 28px rgba(60, 45, 30, 0.08);
}

#top_service h2 {
margin: 0 0 24px;
color: #3f3428;
font-size: 24px;
letter-spacing: 0.08em;
text-align: center;
position: relative;
}

#top_service .w500_pc {
max-width: 780px;
margin: 0 auto 32px;
color: #5f5144;
font-size: 15px;
line-height: 1.9;
text-align: center;
}

#top_service .service_box {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 28px;
}

#top_service .service_box > div {
background: #fffdf8;
border: 1px solid #eee4d6;
border-radius: 18px;
padding: 18px;
text-align: center;
box-shadow: 0 8px 20px rgba(60, 45, 30, 0.08);
transition: 0.2s ease;
}

#top_service .service_box > div {
transform: translateY(-3px);
box-shadow: 0 12px 26px rgba(60, 45, 30, 0.12);
}

#top_service .service_box p {
margin: 0 0 14px;
color: #3f3428;
font-size: 17px;
font-weight: bold;
letter-spacing: 0.08em;
}

#top_service .service_box img {
width: 100%;
height: auto;
display: block;
border-radius: 14px;
}

#top_service .detail_btn::before {
display: none;
}

#top_service .detail_btn {
display: block;
width: fit-content;
min-width: 140px;
margin: 32px auto 0;
padding: 12px 26px;
background: #6b8e3d;
color: #ffffff;
border-radius: 999px;
text-align: center;
text-decoration: none;
font-weight: bold;
font-size: 14px;
box-shadow: 0 6px 14px rgba(60, 45, 30, 0.12);
}

#top_service .detail_btn {
background: #7a5a35;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
#top_service {
padding: 36px 16px;
}

#top_service .inner02 {
padding: 24px 18px;
}

#top_service .service_box {
grid-template-columns: 1fr;
gap: 18px;
}

#top_service .w500_pc {
text-align: left;
}
}

/* ==============================
   サービス内容：レイアウト調整
============================== */

#top_service .service_box,
#top_service .service_box.clearfix {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 32px auto 0 !important;
  padding: 0 !important;
  max-width: 960px;
}

#top_service .service_box::after {
  content: none !important;
}

#top_service .service_box > div {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 24px 20px !important;
  box-sizing: border-box;
}

#top_service .service_box > div p {
  margin: 0 0 18px !important;
}

#top_service .service_box > div img {
  width: 100% !important;
  max-width: 260px;
  height: auto !important;
  margin: 0 auto;
  display: block;
}

#top_service .detail_btn {
  clear: both;
  margin-top: 36px !important;
}

/* ==============================
   サービス内容：clearfix対策
============================== */

#top_service .service_box::before,
#top_service .service_box::after {
  content: none !important;
  display: none !important;
}

#top_service .service_box,
#top_service .service_box.clearfix {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 32px auto 0 !important;
  padding: 0 !important;
  max-width: 960px;
}

#top_service .service_box > div {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 24px 20px !important;
  box-sizing: border-box;
}

#top_service .service_box > div img {
  width: 100% !important;
  max-width: 260px;
  height: auto !important;
  margin: 0 auto;
  display: block;
}

/* ==============================
   アクセス
============================== */

#top_access {
  background: #faf7ef;
  padding: 56px 24px 72px;
}

#top_access .inner02 {
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eadfce;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 10px 28px rgba(60, 45, 30, 0.08);
}

#top_access h2 {
  margin: 0 0 28px;
  color: #3f3428;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
}

#top_access .w500_pc {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  background: #fffdf8;
  border: 1px solid #eee4d6;
  border-radius: 16px;
  color: #5f5144;
  line-height: 1.9;
  box-shadow: 0 8px 20px rgba(60, 45, 30, 0.06);
}

#top_access .w500_pc p {
  margin: 0 0 10px;
}

#top_access .w500_pc p:first-child {
  color: #3f3428;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

#top_access .detail {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  background: #fffdf8;
  border: 1px solid #eee4d6;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(60, 45, 30, 0.06);
}

#top_access .detail dl {
  margin: 0;
}

#top_access .detail dt {
  float: left;
  clear: both;
  width: 150px;
  color: #6b8e3d;
  font-weight: bold;
  padding: 8px 0;
}

#top_access .detail dd {
  margin-left: 160px;
  padding: 8px 0;
  color: #5f5144;
  border-bottom: 1px solid #eee4d6;
}

#top_access .detail dd:last-child {
  border-bottom: none;
}

#top_access iframe {
  display: block;
  width: 100%;
  max-width: 900px;
  height: 360px;
  margin: 32px auto 0;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(60, 45, 30, 0.12);
}

#top_access .detail_btn::before {
  display: none;
}

#top_access .detail_btn {
  display: block;
  width: fit-content;
  min-width: 140px;
  margin: 32px auto 0;
  padding: 12px 26px;
  background: #6b8e3d;
  color: #ffffff;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(60, 45, 30, 0.12);
}

#top_access .detail_btn:hover {
  background: #7a5a35;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #top_access {
    padding: 36px 16px 48px;
  }

  #top_access .inner02 {
    padding: 24px 18px;
  }

  #top_access .w500_pc,
  #top_access .detail {
    padding: 20px 18px;
  }

  #top_access .detail dt {
    float: none;
    width: auto;
    padding-bottom: 2px;
  }

  #top_access .detail dd {
    margin-left: 0;
    padding-top: 2px;
  }

  #top_access iframe {
    height: 300px;
  }
}

/* ==============================
   アクセス：トップページでは詳細情報を省略
============================== */

#top_access .detail {
  display: none;
}

#top_access .w500_pc {
  max-width: 760px;
  margin: 0 auto 32px;
}

#top_access iframe {
  margin-top: 0;
}

/* ==============================
   アクセス：仕上げ調整
============================== */

#top_access .inner02 {
  padding-bottom: 56px;
}

#top_access .w500_pc {
  margin-bottom: 30px;
}

#top_access iframe {
  max-width: 860px;
  margin-top: 0;
  margin-bottom: 28px;
}

#top_access .detail_btn {
  margin-top: 0;
}

/* ==============================
   フッター
============================== */

#footer {
  background: #3f3428;
  color: #ffffff;
  padding: 40px 24px;
}

#footer .inner02 {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

#footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

#footer li {
  margin: 0;
  padding: 0;
}

#footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

#footer a:hover {
  color: #d9c6a5;
}

#footer .footer_res {
  display: inline-block;
  margin: 18px auto 20px;
  padding: 12px 28px;
  background: #6b8e3d;
  color: #ffffff;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

#footer .footer_res:hover {
  background: #7a5a35;
  color: #ffffff;
}

#footer .footer_logo {
  display: block;
  margin-top: 12px;
}

#footer .footer_logo img {
  max-width: 260px;
  height: auto;
}

#copyright {
  background: #2f271f;
  color: #d9c6a5;
  text-align: center;
  padding: 14px 24px;
  font-size: 13px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #footer {
    padding: 32px 18px;
  }

  #footer ul {
    gap: 10px 16px;
  }

  #footer a {
    font-size: 13px;
  }

  #footer .footer_logo img {
    max-width: 220px;
  }
}

/* ==============================
   アクセス：最終微調整
============================== */

#top_access .inner02 {
  padding-bottom: 64px !important;
}

#top_access iframe {
  margin-bottom: 32px !important;
}

#top_access .detail_btn {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ==============================
   フッター：視認性アップ
============================== */

#footer {
  background: #3a2d22 !important;
  padding: 44px 24px 38px !important;
}

#footer a,
#footer li a {
  color: #f7f2e8 !important;
  opacity: 1 !important;
  font-weight: bold;
  letter-spacing: 0.04em;
}

#footer a:hover,
#footer li a:hover {
  color: #d9c6a5 !important;
}

#footer ul {
  margin-bottom: 18px !important;
}

#footer .footer_res {
  margin: 22px auto 24px !important;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

#footer .footer_logo {
  color: #d9c6a5 !important;
}

#copyright {
  background: #2b2119 !important;
  color: #eadfce !important;
  padding: 16px 24px !important;
}

/* ==============================
   フッター：最終仕上げ
============================== */

#footer .footer_logo {
  color: #d9c6a5 !important;
  font-weight: bold;
  letter-spacing: 0.04em;
}

#footer .footer_logo img {
  filter: brightness(1.15);
  vertical-align: middle;
}

#footer .footer_logo,
#footer .footer_logo a {
  color: #d9c6a5 !important;
}

#footer .footer_logo::after {
  color: #d9c6a5;
}

#footer a[href^="tel"] {
  color: #d9c6a5 !important;
  font-weight: bold;
}

/* ==============================
   スマホ表示：最終調整
============================== */

@media screen and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  #header .inner {
    padding: 10px 18px;
  }

  #top_logo img {
    width: 210px;
    max-width: 70vw;
  }

  #mainimg {
    padding: 28px 16px 36px !important;
  }

  #mainimg .inner {
    padding: 18px 12px !important;
    border-radius: 18px !important;
  }

  #mainimg img {
    width: 100% !important;
    max-width: 360px !important;
    max-height: none !important;
  }

  #top_service {
    padding: 36px 16px !important;
  }

  #top_service .inner02 {
    padding: 28px 18px !important;
  }

  #top_service .w500_pc {
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.9 !important;
  }

  #top_service .service_box,
  #top_service .service_box.clearfix {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    gap: 18px !important;
  }

  #top_service .service_box > div {
    padding: 24px 18px !important;
  }

  #top_service .service_box > div img {
    max-width: 220px !important;
  }

  #top_news {
    padding: 36px 16px !important;
  }

  #top_news .inner02 {
    padding: 28px 18px !important;
  }

  #top_news ul.news li {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: left !important;
  }

  #top_news .news_kind {
    width: fit-content;
  }

  #top_access {
    padding: 36px 16px 48px !important;
  }

  #top_access .inner02 {
    padding: 32px 18px 44px !important;
  }

  #top_access .w500_pc {
    padding: 22px 18px !important;
    text-align: left !important;
  }

  #top_access .w500_pc p:first-child {
    text-align: center !important;
    margin-bottom: 14px !important;
  }

  #top_access .w500_pc p {
    font-size: 13.5px !important;
    line-height: 1.8 !important;
  }

  #top_access iframe {
    width: 100% !important;
    height: 280px !important;
  }

  #footer {
    padding: 36px 20px 32px !important;
  }

  #footer ul {
    gap: 12px 18px !important;
  }

  #footer .footer_res {
    width: calc(100% - 32px);
    max-width: 280px;
  }

  #footer .footer_logo img {
    max-width: 190px;
  }

  #copyright {
    font-size: 12px !important;
  }
}

/* ==============================
   スマホ表示：読みやすさ微調整
============================== */

@media screen and (max-width: 768px) {

  #top_service h2,
  #top_news h2,
  #top_access h2 {
    font-size: 22px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
  }

  #top_service .w500_pc p {
    line-height: 2 !important;
    text-align: left !important;
  }

  #top_service .service_box > div p {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  #top_news ul.news li {
    padding: 20px 18px !important;
  }

  #top_news .news_date {
    font-size: 14px !important;
  }

  #top_news ul.news li a {
    line-height: 1.7 !important;
  }

  #top_access .w500_pc {
    max-width: 100% !important;
  }

  #top_access .w500_pc p {
    text-align: center !important;
  }

  #top_access .w500_pc p:last-child {
    text-align: left !important;
  }

  #footer .footer_logo {
    line-height: 1.8 !important;
  }
}

/* ==============================
   スマホ：フッター情報の視認性
============================== */

@media screen and (max-width: 768px) {
  #footer .footer_logo,
  #footer .footer_logo a,
  #footer a[href^="tel"] {
    color: #d9c6a5 !important;
    opacity: 1 !important;
  }

  #footer .footer_logo img {
    filter: brightness(1.2);
  }
}

/* ==============================
   トップ：メイン画像を一本化
============================== */

#mainimg {
  display: none !important;
}

#top_message {
  margin-top: 0 !important;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}

#top_message .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 34, 26, 0.45);
}

#top_message .inner02 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#top_message h2 {
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

#top_message p {
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

#top_message .top_btn_area {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 18px;
}

#top_message .top_btn {
	display: inline-block;
	min-width: 190px;
	padding: 14px 28px;
	border-radius: 999px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.06em;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
	transition: 0.25s;
}

#top_message .top_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

#top_message .top_btn_green {
	background: #6b8e3d;
}

#top_message .top_btn_brown {
	background: #8a6238;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_message {
    min-height: 520px;
    padding: 64px 20px;
  }

  #top_message h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  #top_message p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

#top_message .top_btn_area {
		margin-top: 22px;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	#top_message .top_btn {
		width: 82%;
		min-width: 0;
		padding: 13px 18px;
		font-size: 14px;
	}
}

/* ==============================
   トップメッセージ：見出し改行調整
============================== */

#top_message .w500_pc {
  max-width: 900px !important;
  width: auto !important;
}

#top_message h2 {
  white-space: nowrap;
  font-size: 38px !important;
  letter-spacing: 0.08em !important;
}

/* スマホでは自然に折り返す */
@media screen and (max-width: 768px) {
  #top_message h2 {
    white-space: normal;
    font-size: 25px !important;
    line-height: 1.6 !important;
  }
}

/* ==============================
   トップ見出し：PC/SP改行調整
============================== */

#top_message h2 .sp_br {
	display: none;
}

@media screen and (max-width: 768px) {
	#top_message h2 {
		white-space: normal !important;
		font-size: 25px !important;
		line-height: 1.6 !important;
		letter-spacing: 0.08em !important;
	}

	#top_message h2 .sp_br {
		display: block;
	}
}

/* ==============================
   トップ見出し：読点と改行調整
============================== */

#top_message h2 .sp_br {
	display: none;
}

#top_message h2 .pc_comma {
	display: inline;
}

@media screen and (max-width: 768px) {
	#top_message h2 .sp_br {
		display: block;
	}

	#top_message h2 .pc_comma {
		display: none;
	}
}

/* ==============================
   フッター
============================== */

#footer {
	background: #3b2a1f !important;
	padding: 56px 24px 48px !important;
	color: #ffffff;
	text-align: center;
}

#footer .inner02 {
	max-width: 1080px;
	margin: 0 auto;
}

#footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px 28px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

#footer li {
	margin: 0;
	padding: 0;
}

#footer a {
	color: #ffffff !important;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 0.08em;
	transition: opacity 0.2s ease;
}

#footer a:hover {
	opacity: 0.7;
}

#footer .footer_res {
	display: inline-block;
	min-width: 260px;
	margin: 18px auto 28px;
	padding: 15px 34px;
	background: #6b8e3d;
	border: 2px solid #ffffff;
	border-radius: 999px;
	color: #ffffff !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

#footer .footer_logo {
	display: inline-block;
	margin-top: 8px;
	color: #8fb36a !important;
}

#footer .footer_logo img {
	max-width: 220px;
	height: auto;
	opacity: 0.9;
}

#copyright {
	background: #2a1f18 !important;
	color: #f5ead8 !important;
	padding: 18px 16px !important;
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.05em;
}

/* スマホ */
@media screen and (max-width: 768px) {
	#footer {
		padding: 44px 18px 40px !important;
	}

	#footer ul {
		gap: 14px 20px;
		margin-bottom: 22px;
	}

	#footer a {
		font-size: 13px;
	}

	#footer .footer_res {
		width: 100%;
		max-width: 280px;
		min-width: 0;
		padding: 14px 24px;
	}

	#copyright {
		font-size: 12px;
		line-height: 1.6;
	}
}

/* ==============================
   フッター：中央寄せ仕上げ
============================== */

#footer .inner02 {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 22px !important;
}

#footer ul {
	margin: 0 !important;
}

#footer .footer_res {
	margin: 8px auto 4px !important;
}

#footer .footer_logo {
	margin: 0 auto !important;
	text-align: center !important;
}

#footer .footer_logo img {
	display: inline-block;
	vertical-align: middle;
}

#copyright {
	font-weight: bold;
}

/* ==============================
   フッター：最終微調整
============================== */

#footer .footer_logo {
	color: #9fbd72 !important;
	font-weight: bold;
	opacity: 1 !important;
}

#footer .footer_logo img {
	opacity: 1 !important;
	filter: brightness(1.15);
}

#footer .footer_res:hover {
	background: #7fa542 !important;
	transform: translateY(-2px);
}

#footer .footer_res {
	transition: background 0.2s ease, transform 0.2s ease;
}

#copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==============================
   旧メイン画像を非表示
============================== */

#mainimg {
	display: none !important;
}

/* ==============================
   下層ページ：メインビジュアル
============================== */

#page_title {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#page_title .overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 34, 26, 0.48);
    z-index: 0;
}

#page_title .inner02 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#page_title h2 {
    color: #ffffff;
    font-size: 38px;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

#page_title p {
    color: #ffffff;
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* スマホ */
@media screen and (max-width: 768px) {
    #page_title {
        min-height: 300px;
        padding: 60px 20px;
    }

    #page_title h2 {
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: 0.12em;
    }

    #page_title p {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }
}

/* ==============================
   下層ページ：本文エリア共通
============================== */

#page_container {
    background: linear-gradient(180deg, #faf7ef 0%, #f7f1e8 100%);
    padding: 56px 24px 72px;
}

#page_container .inner02 {
    max-width: 1080px;
    margin: 0 auto;
}

.service_area {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #eadfce;
    border-radius: 22px;
    padding: 42px 48px;
    margin-bottom: 56px;
    box-shadow: 0 12px 30px rgba(60, 45, 30, 0.08);
}

.service_area h3 {
    color: #3f3428;
    font-size: 28px;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.service_area p {
    color: #4b3a2b;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.04em;
}

.service_area .clearfix {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.service_area .clearfix img {
    width: 240px;
    max-width: 28%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(60, 45, 30, 0.16));
}

@media screen and (max-width: 768px) {
    #page_container {
        padding: 36px 16px 56px;
    }

    .service_area {
        padding: 28px 20px;
        margin-bottom: 36px;
        border-radius: 18px;
    }

    .service_area h3 {
        font-size: 23px;
        margin-bottom: 22px;
    }

    .service_area p {
        font-size: 14px;
        line-height: 1.9;
    }

    .service_area .clearfix {
        gap: 14px;
        margin-top: 24px;
    }

    .service_area .clearfix img {
        width: 30%;
        max-width: 30%;
    }
}

/* ==============================
   サービスページ：イベント情報調整
============================== */

.service_area h4 {
    color: #3f3428;
    font-size: 18px;
    line-height: 1.7;
    border-left: 5px solid #6b8e3d;
    padding: 8px 0 8px 16px;
    margin: 28px 0 12px;
    background: linear-gradient(90deg, rgba(107,142,61,0.08), rgba(255,255,255,0));
}

.service_area .event_stop {
    color: #d60000;
    font-weight: bold;
    font-size: 15px;
    margin-left: 12px;
}

.service_area .note_text {
    color: #7a5b3a;
    font-size: 14px;
    line-height: 1.8;
    background: #fbf7ef;
    border-left: 4px solid #6b8e3d;
    padding: 12px 16px;
    margin: 24px 0 12px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
    .service_area h4 {
        font-size: 16px;
        line-height: 1.8;
        padding: 8px 0 8px 12px;
    }

    .service_area .event_stop {
        display: block;
        margin: 6px 0 0 0;
        font-size: 14px;
    }

    .service_area .note_text {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* ==============================
サービス内容ページ：イベント案内調整
============================== */

#page_container .service_area h4 {
  margin: 28px 0 12px;
  padding: 14px 18px 14px 20px;
  border-left: 5px solid #6b8e3d;
  background: rgba(107, 142, 61, 0.06);
  color: #3f3428;
  font-size: 17px;
  line-height: 1.7;
  font-weight: bold;
}

#page_container .service_area .event_stop {
  display: inline-block;
  margin-left: 16px;
  color: #c9302c;
  font-size: 14px;
  font-weight: bold;
}

#page_container .service_area .note_text {
  margin: 28px 0 32px;
  padding: 16px 18px;
  background: #fff8f4;
  border: 1px solid #f0d4c8;
  border-radius: 14px;
  color: #6b4a3a;
  line-height: 1.9;
  font-weight: bold;
}

#page_container .service_area .note_text a {
  color: #5f8f35;
  text-decoration: none;
  border-bottom: 1px solid rgba(95, 143, 53, 0.45);
}

#page_container .service_area .note_text a:hover {
  color: #456f28;
}

/* スマホ：イベント案内 */
@media screen and (max-width: 768px) {
  #page_container .service_area h4 {
    margin: 24px 0 12px;
    padding: 13px 14px 13px 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  #page_container .service_area .event_stop {
    display: block;
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.7;
  }

  #page_container .service_area .note_text {
    margin: 24px 0 28px;
    padding: 14px 15px;
    font-size: 13px;
    line-height: 1.8;
  }
}

#page_container .service_area .event_stop {
  color: #b53a32;
}

#page_container .service_area .note_text {
  color: #5f4639;
}

/* =====================================
   サービスページ：六角形画像の整列
===================================== */

#page_container .service_photo_grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 820px;
  margin: 40px auto 0;
  align-items: center;
  justify-items: center;
}

#page_container .service_photo_grid img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(60, 45, 30, 0.14));
}

/* イベント案内の見出し */
#page_container .service_area .event_head {
  margin: 26px 0 14px;
  padding: 16px 20px;
  border-left: 5px solid #6b8e3d;
  background: rgba(107, 142, 61, 0.06);
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
  color: #3b2a1f;
}

/* 休止中などを入れる場合 */
#page_container .service_area .event_status {
  margin-left: 24px;
  color: #b53a32;
  font-weight: bold;
}

/* 注意書き */
#page_container .service_notice {
  margin: 30px 0 38px;
  padding: 18px 22px;
  border: 1px solid rgba(181, 58, 50, 0.25);
  border-radius: 12px;
  background: rgba(181, 58, 50, 0.04);
}

#page_container .service_notice p {
  margin: 0 0 6px;
  color: #5f4639;
  font-weight: bold;
}

#page_container .service_notice p:last-child {
  margin-bottom: 0;
}

#page_container .service_notice a {
  color: #5f8136;
  text-decoration: underline;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #page_container .service_photo_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
  }

  #page_container .service_photo_grid img {
    max-width: 110px;
  }

  #page_container .service_area .event_head {
    font-size: 16px;
    padding: 14px 14px;
  }

  #page_container .service_area .event_status {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  #page_container .service_notice {
    padding: 16px 14px;
  }
}

/* ==============================
   サービスページ調整
============================== */

.service_area {
    margin-bottom: 80px;
}

.service_area p {
    line-height: 2;
    letter-spacing: 0.04em;
}

/* 六角形画像：indexと同じ雰囲気 */
.service_photo_grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 860px;
    margin: 44px auto 0;
    align-items: center;
    justify-items: center;
}

.service_photo_grid img {
    float: none !important;
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(60, 45, 30, 0.16));
}

/* イベント情報の見せ方 */
.service_event_list {
    margin-top: 36px;
}

.service_event_item {
    margin: 0 0 28px;
    padding: 20px 24px;
    background: #f7f8f3;
    border-left: 5px solid #6a963b;
}

.service_event_item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #3b2a20;
    letter-spacing: 0.06em;
}

.service_event_item .event_time {
    margin: 0 0 10px;
    font-weight: bold;
    color: #5f7f35;
}

.service_notice {
    margin: 36px 0 0;
    padding: 20px 24px;
    border: 1px solid #e8d6c7;
    border-radius: 14px;
    background: #fffaf6;
}

.service_notice p {
    margin: 0 0 6px;
    line-height: 1.8;
}

.service_notice p:last-child {
    margin-bottom: 0;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .service_area {
        margin-bottom: 56px;
    }

    .service_photo_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
        max-width: 340px;
        margin-top: 32px;
    }

    .service_photo_grid img {
        max-width: 145px;
    }

    .service_photo_grid img:nth-child(3) {
        grid-column: 1 / 3;
    }

    .service_event_item {
        padding: 18px 18px;
    }

    .service_event_item h4 {
        font-size: 16px;
    }
}

/* ==============================
   service.html 六角形画像の並び調整
   2枚上・1枚下中央
============================== */

.service_photo_grid {
    clear: both;
    display: grid !important;
    grid-template-columns: repeat(2, 260px);
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 58px 90px;
    max-width: 720px;
    margin: 54px auto 0;
}

.service_photo_grid img {
    float: none !important;
    display: block !important;
    width: 260px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    filter: drop-shadow(0 14px 26px rgba(60, 45, 30, 0.16));
}

/* 3枚目だけ下段中央 */
.service_photo_grid img:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .service_photo_grid {
        grid-template-columns: repeat(2, 140px);
        gap: 28px 22px;
        max-width: 320px;
        margin-top: 34px;
    }

    .service_photo_grid img {
        width: 140px !important;
    }

    .service_photo_grid img:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* ==============================
   service.html 六角形画像 横3列
============================== */

.service_photo_grid {
    clear: both;
    display: grid !important;
    grid-template-columns: repeat(3, 240px) !important;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 46px;
    max-width: 900px;
    margin: 54px auto 0;
}

.service_photo_grid img {
    float: none !important;
    display: block !important;
    width: 240px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    filter: drop-shadow(0 14px 26px rgba(60, 45, 30, 0.16));
}

/* 前回の「3枚目だけ下段中央」を無効化 */
.service_photo_grid img:nth-child(3) {
    grid-column: auto !important;
    justify-self: center !important;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .service_photo_grid {
        grid-template-columns: repeat(3, 96px) !important;
        gap: 16px;
        max-width: 330px;
        margin-top: 32px;
    }

    .service_photo_grid img {
        width: 96px !important;
    }
}

/* ==============================
   service.html 六角形画像 横3列・最終調整
============================== */

#page_container .service_photo_grid {
    clear: both;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 46px !important;
    max-width: 900px;
    margin: 54px auto 0 !important;
    flex-wrap: nowrap !important;
}

#page_container .service_photo_grid img {
    float: none !important;
    display: block !important;
    width: 230px !important;
    max-width: 230px !important;
    height: auto !important;
    margin: 0 !important;
    filter: drop-shadow(0 14px 26px rgba(60, 45, 30, 0.16));
}

/* 3枚目を下段中央にする古い指定を完全に無効化 */
#page_container .service_photo_grid img:nth-child(3) {
    grid-column: auto !important;
    justify-self: auto !important;
}

/* スマホは横3列のまま小さく */
@media screen and (max-width: 768px) {
    #page_container .service_photo_grid {
        gap: 14px !important;
        max-width: 330px;
        margin-top: 32px !important;
    }

    #page_container .service_photo_grid img {
        width: 94px !important;
        max-width: 94px !important;
    }
}

/* ==============================
   トップページ サービスカード
   ============================== */

#top_service .top_service_cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 44px auto 0;
}

#top_service .top_service_card {
  display: block;
  padding: 28px 24px 26px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: #3b2f1f;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#top_service .top_service_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(60, 45, 30, 0.16);
}

#top_service .top_service_card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #3b2f1f;
}

#top_service .top_service_card img {
  width: 190px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 20px !important;
  display: block !important;
  filter: drop-shadow(0 12px 22px rgba(60, 45, 30, 0.14));
}

#top_service .top_service_card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

#top_service .top_service_card span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #6b8e3d;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_service .top_service_cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 320px !important;
    margin-top: 28px !important;
  }

  #top_service .top_service_card {
    padding: 24px 22px 24px !important;
  }

  #top_service .top_service_card img {
    width: 180px !important;
  }

  #top_service .top_service_card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==============================
   トップページ サービス案内カード
   ============================== */

#top_service .top_service_cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 960px !important;
  margin: 44px auto 0 !important;
  padding: 0 !important;
  clear: both;
}

#top_service .top_service_card {
  display: block !important;
  width: auto !important;
  float: none !important;
  padding: 28px 22px 26px !important;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: #3b2f1f;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

#top_service .top_service_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(60, 45, 30, 0.16);
}

#top_service .top_service_card h3 {
  margin: 0 0 18px !important;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #3b2f1f;
}

#top_service .top_service_card img {
  display: block !important;
  float: none !important;
  width: 190px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 18px !important;
  filter: drop-shadow(0 12px 22px rgba(60, 45, 30, 0.14));
}

#top_service .top_service_card p {
  margin: 0 0 18px !important;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

#top_service .top_service_card span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #6b8e3d;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_service .top_service_cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 320px !important;
    margin-top: 28px !important;
  }

  #top_service .top_service_card {
    padding: 24px 22px !important;
  }

  #top_service .top_service_card img {
    width: 180px !important;
  }

  #top_service .top_service_card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==============================
   トップページ サービスカード調整
   ============================== */

#top_service .top_service_cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 960px !important;
  margin: 44px auto 0 !important;
  padding: 0 !important;
  clear: both !important;
}

#top_service .top_service_card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
  float: none !important;
  padding: 26px 22px 24px !important;
  background: #fffdf8 !important;
  border: 1px solid #eadcc8 !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  text-decoration: none !important;
  color: #3b2f1f !important;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.10) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#top_service .top_service_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(60, 45, 30, 0.16) !important;
}

#top_service .top_service_card h3 {
  margin: 0 0 18px !important;
  font-size: 22px !important;
  letter-spacing: 0.12em !important;
  color: #3b2f1f !important;
}

#top_service .top_service_card img {
  display: block !important;
  width: 180px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 18px !important;
  float: none !important;
  filter: drop-shadow(0 12px 22px rgba(60, 45, 30, 0.14)) !important;
}

#top_service .top_service_card p {
  margin: 0 0 18px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  text-align: left !important;
}

#top_service .top_service_card span {
  display: inline-block !important;
  margin-top: auto !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #6b8e3d !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: bold !important;
  letter-spacing: 0.08em !important;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_service .top_service_cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 320px !important;
    margin-top: 28px !important;
  }

  #top_service .top_service_card {
    padding: 24px 22px !important;
  }

  #top_service .top_service_card img {
    width: 170px !important;
  }
}

/* ==============================
   トップページ：サービスカードの見出し装飾を消す
   蜂アイコン・破線を非表示
============================== */

#top_service .top_service_card h3 {
  background: none !important;
  background-image: none !important;
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 22px !important;
  text-align: center !important;
}

#top_service .top_service_card h3::before,
#top_service .top_service_card h3::after,
#top_service .top_service_card::before,
#top_service .top_service_card::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* ==============================
   トップページ：ニュース行全体をリンク化
============================== */

#top_news .news li {
  padding: 0 !important;
}

#top_news .news li a {
  display: grid;
  grid-template-columns: 120px 110px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

#top_news .news li a:hover {
  background: rgba(111, 146, 61, 0.08);
}

#top_news .news li a:hover .news_title {
  color: #6b8e3d;
  text-decoration: underline;
}

#top_news .news_cat {
  display: inline-block;
  background: #6b8e3d;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 6px 18px;
  font-weight: bold;
}

#top_news .news_date {
  color: #604c3f;
  font-weight: bold;
}

#top_news .news_title {
  color: #6b8e3d;
  font-weight: bold;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_news .news li a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  #top_news .news_cat {
    width: fit-content;
    min-width: 100px;
  }
}

/* ==============================
   トップページ：ニュース＆イベント情報
   カード全体リンク・文字並び調整
============================== */

#top_news ul.news {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

#top_news ul.news li {
  margin: 0 0 16px;
  padding: 0 !important;
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(60, 45, 30, 0.06);
  overflow: hidden;
  transition: 0.25s;
}

#top_news ul.news li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.12);
}

/* カード全体をリンク化 */
#top_news ul.news li > a {
  display: flex !important;
  align-items: center;
  gap: 22px;
  width: 100% !important;
  min-height: 76px;
  padding: 18px 22px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

/* 既存CSSのfloatや幅指定をリセット */
#top_news ul.news li > a span {
  float: none !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

/* カテゴリ */
#top_news .news_cat {
  flex: 0 0 120px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 999px;
  background: #6b963d;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

/* 日付 */
#top_news .news_date {
  flex: 0 0 100px;
  color: #5c4638;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

/* タイトル */
#top_news .news_title {
  flex: 1 1 auto;
  min-width: 0;
  color: #5f8f35;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: normal !important;
  word-break: keep-all;
}

#top_news ul.news li:hover .news_title {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #top_news ul.news {
    margin-top: 24px;
  }

  #top_news ul.news li > a {
    display: block !important;
    min-height: auto;
    padding: 18px;
  }

  #top_news .news_cat {
    width: 110px !important;
    margin-bottom: 10px;
  }

  #top_news .news_date {
    margin-bottom: 8px;
    font-size: 13px;
  }

  #top_news .news_title {
    font-size: 16px;
    line-height: 1.7;
    word-break: normal;
  }
}
/* ==============================
   トップページ：ニュース＆イベント情報
   最終整理版
============================== */

/* 左端の緑線を非表示 */
#top_news .inner02::before,
#top_news .inner02:before,
#top_news h2::before,
#top_news h2:before {
  content: none !important;
  display: none !important;
}

/* ニュース一覧 */
#top_news ul.news {
  max-width: 760px !important;
  margin: 36px auto 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* liは余白管理だけ */
#top_news ul.news li {
  display: block !important;
  grid-template-columns: none !important;
  align-items: initial !important;
  gap: 0 !important;

  list-style: none !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* カード全体をリンクにする */
#top_news ul.news li a {
  display: grid !important;
  grid-template-columns: 130px 110px 1fr !important;
  align-items: center !important;
  gap: 24px !important;

  width: 100% !important;
  min-height: 76px !important;
  padding: 18px 22px !important;
  box-sizing: border-box !important;

  background: #fffdf8 !important;
  border: 1px solid #eadcc8 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 24px rgba(60, 45, 30, 0.06) !important;

  color: #604c3f !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: 0.25s !important;
}

#top_news ul.news li a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.12) !important;
}

/* spanの古い指定を完全リセット */
#top_news ul.news li a span {
  position: static !important;
  float: none !important;
  clear: none !important;

  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;

  text-decoration: none !important;
  transform: none !important;
}

/* カテゴリ */
#top_news ul.news li a .news_cat {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 120px !important;
  height: 34px !important;
  border-radius: 999px !important;

  background: #6b983d !important;
  color: #fff !important;

  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1 !important;
  letter-spacing: 0.05em !important;
  text-align: center !important;
}

/* 日付 */
#top_news ul.news li a .news_date {
  color: #604c3f !important;
  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1.6 !important;
  white-space: nowrap !important;
  text-align: left !important;
}

/* タイトル */
#top_news ul.news li a .news_title {
  color: #5f8f35 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  text-align: left !important;

  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

#top_news ul.news li a:hover .news_title {
  text-decoration: underline !important;
}

/* 一覧を見るボタン */
#top_news .detail_btn {
  float: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 220px !important;
  margin: 34px auto 0 !important;
  text-align: center !important;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #top_news ul.news {
    max-width: 340px !important;
    margin-top: 28px !important;
  }

  #top_news ul.news li a {
    display: block !important;
    min-height: auto !important;
    padding: 18px 16px !important;
    text-align: center !important;
  }

  #top_news ul.news li a .news_cat {
    width: 120px !important;
    height: 34px !important;
    margin: 0 auto 10px !important;
  }

  #top_news ul.news li a .news_date {
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  #top_news ul.news li a .news_title {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    word-break: normal !important;
  }

  #top_news .detail_btn {
    width: 180px !important;
  }
}
/* ==============================
   event.html ニュース＆イベントページ
============================== */

#container.event #page_container {
  padding: 72px 0 88px;
}

#container.event #page_container .inner02 {
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
  padding: 56px 64px;
  box-sizing: border-box;
}

.event_intro_new {
  text-align: center;
  margin-bottom: 42px;
}

.event_intro_new h3 {
  color: #3f2b1d;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.event_intro_new p {
  color: #604c3f;
  font-size: 15px;
  line-height: 2;
}

.event_list_new {
  max-width: 860px;
  margin: 0 auto;
}

.event_card_new {
  background: #fffaf2;
  border: 1px solid #eadcc8;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(60, 45, 30, 0.06);
  padding: 30px 34px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.event_card_head {
  display: grid;
  grid-template-columns: 110px 120px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.event_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 999px;
  background: #6b983d;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.event_date {
  color: #604c3f;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.event_card_head h4 {
  color: #5f8f35;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}

.event_card_body p {
  color: #604c3f;
  font-size: 15px;
  line-height: 2;
  margin: 0 0 12px;
}

.event_card_body .event_note {
  color: #8a663a;
  font-size: 14px;
  font-weight: bold;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #container.event #page_container {
    padding: 36px 0 56px;
  }

  #container.event #page_container .inner02 {
    width: calc(100% - 32px);
    padding: 34px 22px;
    border-radius: 16px;
  }

  .event_intro_new h3 {
    font-size: 22px;
    line-height: 1.6;
  }

  .event_intro_new p {
    text-align: left;
    font-size: 14px;
  }

  .event_card_new {
    padding: 24px 20px;
    margin-bottom: 22px;
  }

  .event_card_head {
    display: block;
    margin-bottom: 16px;
  }

  .event_label {
    width: 110px;
    margin-bottom: 12px;
  }

  .event_date {
    display: block;
    margin-bottom: 10px;
  }

  .event_card_head h4 {
    font-size: 17px;
  }

  .event_card_body p {
    font-size: 14px;
  }
}

/* ==============================
   event.html ニュース＆イベントページ
============================== */

#container.event #page_container .inner02 {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 56px 72px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
}

/* 導入文 */
#container.event .event_intro_new {
  text-align: center;
  margin-bottom: 44px;
}

#container.event .event_intro_new h3 {
  margin: 0 0 22px;
  padding: 0;
  background: none !important;
  color: #3b2d22;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

#container.event .event_intro_new h3::before,
#container.event .event_intro_new h3::after {
  content: none !important;
  display: none !important;
}

#container.event .event_intro_new p {
  margin: 0;
  color: #3b2d22;
  font-size: 15px;
  line-height: 2;
}

/* 一覧 */
#container.event .event_list_new {
  display: grid;
  gap: 28px;
}

/* カード */
#container.event .event_card_new {
  padding: 32px;
  background: #fffaf2;
  border: 1px solid #eadcc8;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(60, 45, 30, 0.05);
}

#container.event .event_card_head {
  display: grid;
  grid-template-columns: 100px 100px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

/* ラベル */
#container.event .event_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

#container.event .event_label--event {
  background: #6b983d;
}

#container.event .event_label--news {
  background: #8a663a;
}

/* 日付 */
#container.event .event_date {
  color: #604c3f;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

/* タイトル */
#container.event .event_card_head h4 {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 5px solid #5f8f35;
  background: none !important;
  color: #5f8f35;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}

#container.event .event_card_head h4::before,
#container.event .event_card_head h4::after {
  content: none !important;
  display: none !important;
}

/* 本文 */
#container.event .event_card_body p {
  margin: 0 0 12px;
  color: #3b2d22;
  font-size: 15px;
  line-height: 2;
}

#container.event .event_card_body p:last-child {
  margin-bottom: 0;
}

#container.event .event_note {
  margin-top: 16px !important;
  color: #604c3f !important;
  font-size: 14px !important;
  font-weight: bold;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #container.event #page_container .inner02 {
    width: auto;
    margin: 0 16px 56px;
    padding: 34px 22px;
    border-radius: 16px;
  }

  #container.event .event_intro_new {
    margin-bottom: 32px;
    text-align: left;
  }

  #container.event .event_intro_new h3 {
    text-align: center;
    font-size: 23px;
  }

  #container.event .event_card_new {
    padding: 24px 20px;
  }

  #container.event .event_card_head {
    display: block;
    margin-bottom: 16px;
  }

  #container.event .event_label {
    margin-bottom: 12px;
  }

  #container.event .event_date {
    display: block;
    margin-bottom: 12px;
  }

  #container.event .event_card_head h4 {
    font-size: 18px;
  }
}

/* ==============================
   event.html：ニュースカード見出しの縦線を消す
============================== */

.event_card_new h4,
.event_card_new .event_card_head h4 {
    border-left: none !important;
    padding-left: 0 !important;
}

.event_card_new h4::before,
.event_card_new .event_card_head h4::before {
    content: none !important;
    display: none !important;
}

/* ==============================
   service.html
   見出しの蜂・破線を非表示
============================== */

#container.service .service_area h3 {
  background: none !important;
  background-image: none !important;
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 32px !important;
  color: #3a2a1f !important;
  font-size: 28px !important;
  line-height: 1.4 !important;
}

#container.service .service_area h3::before,
#container.service .service_area h3::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* ==============================
   access.html アクセスページ
============================== */

.access_intro_new {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.access_intro_new h3 {
  color: #3b2a20;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.access_intro_new p {
  color: #3b2a20;
  font-size: 15px;
  line-height: 2;
  font-weight: bold;
}

.access_info_new {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 34px 38px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(60, 45, 30, 0.08);
}

.access_info_new h4 {
  color: #3b2a20;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 5px solid #6b983d;
}

.access_info_new dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px 22px;
  margin: 0;
}

.access_info_new dt {
  color: #6b983d;
  font-weight: bold;
}

.access_info_new dd {
  color: #3b2a20;
  margin: 0;
  line-height: 1.8;
  font-weight: bold;
}

.access_map_new {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.access_map_new h4 {
  color: #3b2a20;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
}

.access_google_map {
  width: 100%;
  margin-bottom: 28px;
}

.access_google_map iframe {
  width: 100% !important;
  height: 420px !important;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(60, 45, 30, 0.08);
}

.access_map_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 46px;
  background: #6b983d;
  color: #fff !important;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(60, 45, 30, 0.16);
  transition: 0.25s;
}

.access_map_btn:hover {
  transform: translateY(-2px);
  background: #5f8f35;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .access_intro_new {
    margin-bottom: 32px;
    text-align: left;
  }

  .access_intro_new h3 {
    text-align: center;
    font-size: 24px;
  }

  .access_intro_new p {
    font-size: 14px;
    line-height: 1.9;
  }

  .access_info_new {
    padding: 26px 20px;
    margin-bottom: 36px;
  }

  .access_info_new dl {
    display: block;
  }

  .access_info_new dt {
    margin-top: 16px;
  }

  .access_info_new dt:first-child {
    margin-top: 0;
  }

  .access_info_new dd {
    margin-top: 4px;
    font-size: 14px;
  }

  .access_google_map iframe {
    height: 320px !important;
  }

  .access_map_btn {
    width: 100%;
    max-width: 260px;
  }
}

/* ==============================
   access.html 旧見出し装飾を無効化
============================== */

#container.access #page_container h3::before,
#container.access #page_container h3::after,
#container.access #page_container h4::before,
#container.access #page_container h4::after {
  content: none !important;
  display: none !important;
}

#container.access #page_container h3 {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

/* ==============================
   access.html 仕上げ調整
   所在地・アクセス
============================== */

/* 旧見出し装飾を非表示 */
#container.access #page_container h3,
#container.access #page_container h4 {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

#container.access #page_container h3::before,
#container.access #page_container h3::after,
#container.access #page_container h4::before,
#container.access #page_container h4::after {
  content: none !important;
  display: none !important;
}

/* 全体カード */
#container.access #page_container .inner02 {
  max-width: 960px;
  margin: 0 auto 72px;
  padding: 56px 72px 64px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
  box-sizing: border-box;
}

/* メイン見出し */
#container.access #page_container h3 {
  margin: 0 0 28px !important;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #3b2a1f;
}

/* 説明文 */
#container.access #page_container .mb30 {
  margin-bottom: 28px !important;
  line-height: 1.9;
}

/* 施設名 */
#container.access #page_container h4 {
  margin: 24px 0 18px !important;
  padding-left: 14px !important;
  border-left: 5px solid #6b983d !important;
  font-size: 20px;
  color: #3b2a1f;
}

/* Googleマップ見出し */
#container.access #page_container h4:last-of-type {
  margin-top: 36px !important;
}

/* 地図画像は非表示 */
#container.access #page_container img[src*="map.png"] {
  display: none !important;
}

/* Googleマップ */
#container.access #page_container iframe {
  display: block;
  width: 100% !important;
  height: 420px !important;
  margin-top: 16px;
  border: 0 !important;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.12);
}

/* スマホ */
@media screen and (max-width: 768px) {
  #container.access #page_container .inner02 {
    width: calc(100% - 32px);
    padding: 36px 22px 44px;
    margin-bottom: 48px;
  }

  #container.access #page_container h3 {
    font-size: 23px;
  }

  #container.access #page_container h4 {
    font-size: 18px;
  }

  #container.access #page_container iframe {
    height: 320px !important;
  }
}

/* Googleマップ見出しだけ、縦線なし・中央寄せ */
#container.access #page_container h4:last-of-type {
  border-left: none !important;
  padding-left: 0 !important;
  text-align: center !important;
  margin: 40px 0 22px !important;
}

/* ==============================
   contact.html お問い合わせページ
   仕上げ調整
============================== */

/* 旧見出し装飾を非表示 */
#container.contact #page_container h3:before,
#container.contact #page_container h3:after {
  content: none !important;
  display: none !important;
}

/* 全体カード */
#container.contact #page_container .inner02 {
  max-width: 960px;
  margin: 0 auto 72px;
  padding: 56px 72px 64px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
  box-sizing: border-box;
}

/* 冒頭説明 */
#container.contact #page_container .mb20 {
  line-height: 1.9;
  font-weight: bold;
  color: #3b2a1f;
}

/* メイン見出し */
#container.contact #page_container h3 {
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #3b2a1f;
}

/* 連絡先ボックス */
#container.contact #page_container .mb50 {
  max-width: 760px;
  margin: 0 auto 56px !important;
  padding: 34px 38px;
  background: #fffdf8;
  border: 1px solid #eadcc8;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(60, 45, 30, 0.08);
  box-sizing: border-box;
  color: #3b2a1f;
  font-weight: bold;
  line-height: 1.9;
}

/* 電話ボタン */
#container.contact .tel_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  margin-bottom: 16px;
  padding: 0 24px;
  background: #6b983d;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(60, 45, 30, 0.16);
}

#container.contact .tel_btn span {
  font-size: 28px;
  letter-spacing: 0.04em;
}

/* 注意書き */
#container.contact .fcRed01,
#container.contact font[color="red"] {
  color: #b84a3a !important;
  font-weight: bold;
}

/* フォーム全体 */
#container.contact form {
  max-width: 860px;
  margin: 32px auto 0;
}

/* フォーム背景 */
#container.contact .entry_form {
  background: #fffdf8 !important;
  border: 1px solid #eadcc8;
  border-radius: 18px;
  padding: 36px 42px;
  box-shadow: 0 14px 30px rgba(60, 45, 30, 0.08);
  box-sizing: border-box;
}

/* dlを整える */
#container.contact .entry_form dl {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px 24px;
  margin: 0 !important;
}

/* dt/ddの旧floatを解除 */
#container.contact .entry_form dt,
#container.contact .entry_form dd {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* ラベル */
#container.contact .entry_form dt {
  color: #3b2a1f;
  font-weight: bold;
  line-height: 42px;
}

/* 入力欄 */
#container.contact .entry_form input[type="text"],
#container.contact .entry_form select,
#container.contact .entry_form textarea {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid #d8c7b0;
  border-radius: 8px;
  background: #fff;
  color: #3b2a1f;
  font-size: 15px;
  padding: 10px 12px;
  outline: none;
}

#container.contact .entry_form input[type="text"],
#container.contact .entry_form select {
  height: 42px;
}

#container.contact .entry_form textarea {
  min-height: 160px;
  resize: vertical;
}

/* フォーカス時 */
#container.contact .entry_form input[type="text"]:focus,
#container.contact .entry_form select:focus,
#container.contact .entry_form textarea:focus {
  border-color: #6b983d;
  box-shadow: 0 0 0 3px rgba(107, 152, 61, 0.16);
}

/* ラジオボタン周り */
#container.contact .entry_form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
  font-weight: bold;
  color: #3b2a1f;
}

/* 送信ボタン */
#container.contact .form_button01 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  margin: 34px auto 0 !important;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: #6b983d;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(60, 45, 30, 0.16);
  transition: 0.25s;
}

#container.contact .form_button01:hover {
  transform: translateY(-2px);
  background: #5f8f35;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #container.contact #page_container .inner02 {
    width: calc(100% - 32px);
    padding: 36px 20px 44px;
    margin-bottom: 48px;
  }

  #container.contact #page_container h3 {
    font-size: 24px;
  }

  #container.contact #page_container .mb50 {
    padding: 26px 20px;
  }

  #container.contact .tel_btn {
    width: 100%;
    min-width: 0;
  }

  #container.contact .tel_btn span {
    font-size: 24px;
  }

  #container.contact .entry_form {
    padding: 26px 18px;
  }

  #container.contact .entry_form dl {
    display: block;
  }

  #container.contact .entry_form dt {
    margin-top: 18px !important;
    line-height: 1.6;
  }

  #container.contact .entry_form dd {
    margin-top: 8px !important;
  }

  #container.contact .entry_form label {
    display: flex;
    margin: 8px 0;
  }
}

/* ==============================
   contact.html フォーム項目の旧アイコン除去
============================== */

/* dt左の古い四角アイコン・背景を完全に消す */
#container.contact .entry_form dt,
#container.contact .entry_form dt *,
#container.contact .entry_form dt:before,
#container.contact .entry_form dt:after {
  background: none !important;
  background-image: none !important;
}

#container.contact .entry_form dt:before,
#container.contact .entry_form dt:after {
  content: none !important;
  display: none !important;
}

/* 項目名の見た目を整える */
#container.contact .entry_form dt {
  display: flex !important;
  align-items: center;
  min-height: 42px;
  padding-left: 0 !important;
  color: #3b2a1f;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5 !important;
  white-space: normal;
}

/* 必須マーク */
#container.contact .entry_form dt .fcRed01 {
  margin-left: 2px;
  color: #b84a3a !important;
}

/* フォームの左右幅を少し整える */
#container.contact .entry_form dl {
  grid-template-columns: 170px 1fr !important;
  column-gap: 28px !important;
}

/* ==============================
   contact.html 連絡先カード調整
============================== */

.contact_info_new {
    max-width: 760px;
    margin: 36px auto 64px;
    padding: 40px 48px;
    background: #fffdf8;
    border: 1px solid #eadcc8;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(60, 45, 30, 0.08);
    box-sizing: border-box;
}

.contact_info_new h3 {
    margin: 0 0 30px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    color: #3b2a1f;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.12em;
}

.contact_info_new h3::before,
.contact_info_new h3::after {
    content: none !important;
    display: none !important;
}

.contact_tel_area {
    text-align: center;
    margin-bottom: 34px;
}

.contact_tel_label {
    margin: 0 0 12px;
    color: #6b983d;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.contact_tel_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 14px 32px;
    background: #6b983d;
    color: #fff !important;
    border-radius: 999px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none !important;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 22px rgba(60, 45, 30, 0.16);
    transition: 0.25s;
}

.contact_tel_btn span {
    font-size: 28px;
    letter-spacing: 0.08em;
}

.contact_tel_btn:hover {
    background: #5f8f35;
    transform: translateY(-2px);
}

.contact_detail_list {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px 24px;
    max-width: 520px;
    margin: 0 auto;
}

.contact_detail_list dt {
    color: #6b983d;
    font-weight: bold;
}

.contact_detail_list dd {
    margin: 0;
    color: #3b2a1f;
    font-weight: bold;
    line-height: 1.7;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .contact_info_new {
        width: calc(100% - 32px);
        padding: 32px 22px;
        margin: 32px auto 48px;
    }

    .contact_info_new h3 {
        font-size: 24px;
    }

    .contact_tel_btn {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        font-size: 17px;
    }

    .contact_tel_btn span {
        font-size: 23px;
    }

    .contact_detail_list {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .contact_detail_list dt {
        margin-top: 12px;
    }
}

/* ==============================
   contact.html 電話ボタン 最終版
============================== */

#container.contact .contact_tel_area {
  text-align: center !important;
  margin: 24px auto 32px !important;
}

#container.contact .contact_tel_area a.tel_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  width: auto !important;
  min-width: 320px !important;
  min-height: 58px !important;
  padding: 0 28px !important;

  box-sizing: border-box !important;
  background: #6b983d !important;
  color: #fff !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(60, 45, 30, 0.18) !important;

  overflow: visible !important;
  white-space: nowrap !important;
  text-indent: 0 !important;
}

#container.contact .contact_tel_area a.tel_btn .tel_label,
#container.contact .contact_tel_area a.tel_btn .tel_number {
  display: inline-block !important;
  color: #fff !important;
  font-weight: bold !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#container.contact .contact_tel_area a.tel_btn .tel_label {
  font-size: 18px !important;
}

#container.contact .contact_tel_area a.tel_btn .tel_number {
  font-size: 28px !important;
  letter-spacing: 0.06em !important;
}

/* スマホ */
@media screen and (max-width: 768px) {

  #container.contact .contact_tel_area {
    margin: 18px auto 30px !important;
  }

  #container.contact .contact_tel_area a.tel_btn {
    width: calc(100% - 20px) !important;
    max-width: 220px !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 0 12px !important;
    gap: 0 !important;
  }

  #container.contact .contact_tel_area a.tel_btn .tel_label {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
  }

  #container.contact .contact_tel_area a.tel_btn .tel_number {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    font-size: 18px !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

}

/* ==============================
   privacy.html プライバシーポリシー
============================== */

#container.privacy #page_container .inner02 {
    max-width: 960px;
    margin: 0 auto 72px;
    padding: 56px 72px 64px;
    background: #fffdf8;
    border: 1px solid #eadcc8;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
    box-sizing: border-box;
}

.privacy_intro_new {
    max-width: 800px;
    margin: 0 auto 40px;
}

.privacy_intro_new h3 {
    margin: 0 0 24px;
    color: #3b2a1f;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-align: center;
}

.privacy_intro_new p {
    margin: 0 0 14px;
    color: #3b2a1f;
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
}

.privacy_card_new {
    max-width: 820px;
    margin: 0 auto;
}

.privacy_section_new {
    padding: 26px 0;
    border-bottom: 1px solid #eadcc8;
}

.privacy_section_new:first-child {
    border-top: 1px solid #eadcc8;
}

.privacy_section_new h4 {
    margin: 0 0 14px;
    padding-left: 14px;
    border-left: 5px solid #6b983d;
    color: #3b2a1f;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

.privacy_section_new p {
    margin: 0;
    color: #3b2a1f;
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
}

/* スマホ */
@media screen and (max-width: 768px) {
    #container.privacy #page_container .inner02 {
        width: calc(100% - 32px);
        padding: 36px 24px 44px;
        margin-bottom: 48px;
    }

    .privacy_intro_new {
        margin-bottom: 28px;
    }

    .privacy_intro_new h3 {
        font-size: 23px;
        letter-spacing: 0.08em;
    }

    .privacy_intro_new p,
    .privacy_section_new p {
        font-size: 14px;
        line-height: 1.9;
    }

    .privacy_section_new {
        padding: 22px 0;
    }

    .privacy_section_new h4 {
        font-size: 18px;
    }
}

/* ========================================
   privacy.html 既存デザインの上書き
======================================== */

#container.privacy #page_container > .inner02 {
    max-width: 960px;
    margin: 0 auto 72px;
    padding: 56px 72px 64px;
    background: #fffdf8;
    border: 1px solid #eadcc8;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
    box-sizing: border-box;
}

/* 冒頭タイトル */
#container.privacy #page_container .privacy_intro_new h3 {
    margin: 0 0 24px;
    padding: 0;
    color: #3b2a1f;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-align: center;
    background: none;
    border: none;
}

/* 古い蜂・波線を消す */
#container.privacy #page_container .privacy_intro_new h3::before,
#container.privacy #page_container .privacy_intro_new h3::after {
    content: none;
    display: none;
    background: none;
}

/* 冒頭文章 */
#container.privacy #page_container .privacy_intro_new {
    max-width: 800px;
    margin: 0 auto 40px;
}

#container.privacy #page_container .privacy_intro_new p {
    margin: 0 0 14px;
    padding: 0;
    color: #3b2a1f;
    font-size: 15px;
    font-weight: normal;
    line-height: 2;
}

/* 各項目 */
#container.privacy #page_container .privacy_section_new {
    padding: 26px 0;
    border-bottom: 1px solid #eadcc8;
}

#container.privacy #page_container .privacy_section_new:first-child {
    border-top: 1px solid #eadcc8;
}

#container.privacy #page_container .privacy_section_new h4 {
    margin: 0 0 14px;
    padding: 0 0 0 14px;
    color: #3b2a1f;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    background: none;
    border: none;
    border-left: 5px solid #6b983d;
}

#container.privacy #page_container .privacy_section_new p {
    margin: 0;
    padding: 0;
    color: #3b2a1f;
    font-size: 15px;
    font-weight: normal;
    line-height: 2;
    background: none;
}

/* スマートフォン */
@media screen and (max-width: 768px) {

    #container.privacy #page_container > .inner02 {
        width: calc(100% - 32px);
        margin: 0 auto 48px;
        padding: 36px 24px 44px;
        border-radius: 14px;
    }

    #container.privacy #page_container .privacy_intro_new h3 {
        font-size: 23px;
        letter-spacing: 0.08em;
    }

    #container.privacy #page_container .privacy_intro_new p,
    #container.privacy #page_container .privacy_section_new p {
        font-size: 14px;
        line-height: 1.9;
    }

    #container.privacy #page_container .privacy_section_new {
        padding: 22px 0;
    }

    #container.privacy #page_container .privacy_section_new h4 {
        font-size: 18px;
    }
}

/* ========================================
   policy.html 基本理念・活動方針
======================================== */

#container.policy #page_container {
    padding: 48px 0 72px;
    background: #f8f5ef;
}

/* 本文カード */
#container.policy #page_container > .inner02.policy_panel_new {
    width: calc(100% - 40px);
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 72px 64px;
    background: #fffdf8;
    border: 1px solid #eadcc8;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(60, 45, 30, 0.08);
    box-sizing: border-box;
}

/* 各セクション */
#container.policy #page_container .policy_section_new {
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid #eadcc8;
}

/* 見出し */
#container.policy #page_container .policy_section_new h3,
#container.policy #page_container .policy_disclosure_new h3 {
    width: auto;
    min-height: 0;
    margin: 0 0 24px !important;
    padding: 0 0 0 14px !important;
    color: #3b2a1f;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-indent: 0;
    background: none !important;
    background-image: none !important;
    border: none;
    border-left: 5px solid #6b983d;
}

/* 旧デザインの蜂・波線を消す */
#container.policy #page_container .policy_section_new h3::before,
#container.policy #page_container .policy_section_new h3::after,
#container.policy #page_container .policy_disclosure_new h3::before,
#container.policy #page_container .policy_disclosure_new h3::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* 基本理念本文 */
#container.policy #page_container .policy_text_new p {
    margin: 0 0 22px;
    padding: 0;
    color: #3b2a1f;
    font-size: 15px;
    font-weight: normal;
    line-height: 2;
}

#container.policy #page_container .policy_text_new p:last-child {
    margin-bottom: 0;
}

#container.policy #page_container .policy_signature_new {
    margin-top: 26px !important;
    text-align: right;
    font-weight: bold !important;
}

/* 活動方針 */
#container.policy #page_container .policy_list_new {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: policy-item;
}

#container.policy #page_container .policy_list_new li {
    position: relative;
    margin: 0 0 14px;
    padding: 18px 20px 18px 58px;
    color: #3b2a1f;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.9;
    background: #f7f4ec;
    border: 1px solid #eadcc8;
    border-radius: 12px;
    box-sizing: border-box;
    counter-increment: policy-item;
}

#container.policy #page_container .policy_list_new li:last-child {
    margin-bottom: 0;
}

#container.policy #page_container .policy_list_new li::before {
    content: counter(policy-item);
    position: absolute;
    top: 50%;
    left: 18px;
    width: 26px;
    height: 26px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    text-align: center;
    background: #6b983d;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 情報公開 */
#container.policy #page_container .policy_disclosure_new {
    padding: 28px 30px;
    background: #f2f6ec;
    border: 1px solid #d7e2c8;
    border-radius: 14px;
}

#container.policy #page_container .policy_disclosure_new h3 {
    margin-bottom: 20px !important;
    font-size: 21px;
}

#container.policy #page_container .policy_links_new {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#container.policy #page_container .policy_links_new a {
    display: inline-block;
    padding: 12px 18px;
    color: #365d28;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #b9cda7;
    border-radius: 8px;
    transition: 0.2s;
}

#container.policy #page_container .policy_links_new a:hover {
    color: #ffffff;
    background: #6b983d;
    border-color: #6b983d;
}

/* スマートフォン */
@media screen and (max-width: 768px) {

    #container.policy #page_container {
        padding: 32px 0 48px;
    }

    #container.policy #page_container > .inner02.policy_panel_new {
        width: calc(100% - 32px);
        padding: 36px 24px 44px;
        border-radius: 14px;
    }

    #container.policy #page_container .policy_section_new {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    #container.policy #page_container .policy_section_new h3,
    #container.policy #page_container .policy_disclosure_new h3 {
        margin-bottom: 20px !important;
        font-size: 21px;
        letter-spacing: 0.05em;
    }

    #container.policy #page_container .policy_text_new p {
        font-size: 14px;
        line-height: 1.9;
    }

    #container.policy #page_container .policy_signature_new {
        text-align: left;
    }

    #container.policy #page_container .policy_list_new li {
        padding: 16px 16px 16px 50px;
        font-size: 14px;
        line-height: 1.8;
    }

    #container.policy #page_container .policy_list_new li::before {
        left: 14px;
    }

    #container.policy #page_container .policy_disclosure_new {
        padding: 24px 20px;
    }

    #container.policy #page_container .policy_links_new {
        display: block;
    }

    #container.policy #page_container .policy_links_new a {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }

    #container.policy #page_container .policy_links_new a:last-child {
        margin-bottom: 0;
    }
}

/* ========================================
   event.html 最新・過去のお知らせ
======================================== */

#container.event .event_group_new {
    margin-top: 48px;
}

#container.event .event_group_new:first-of-type {
    margin-top: 36px;
}

#container.event .event_group_title_new {
    margin: 0 0 24px;
    padding: 0 0 0 14px;
    color: #3b2a1f;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.08em;
    background: none;
    border: none;
    border-left: 5px solid #6b983d;
}

#container.event .event_archive_new {
    padding-top: 40px;
    border-top: 1px solid #eadcc8;
}

@media screen and (max-width: 768px) {

    #container.event .event_group_new {
        margin-top: 36px;
    }

    #container.event .event_group_title_new {
        margin-bottom: 20px;
        font-size: 20px;
        letter-spacing: 0.05em;
    }

    #container.event .event_archive_new {
        padding-top: 30px;
    }
}

/* ========================================
   event.html 見出し装飾を完全に解除
======================================== */

#container.event #page_container h3.event_group_title_new {
    width: auto !important;
    min-height: 0 !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    color: #3b2a1f;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-indent: 0 !important;
    background: none !important;
    background-image: none !important;
    border: none !important;
}

/* 蜂・波線などの疑似要素も解除 */
#container.event #page_container h3.event_group_title_new::before,
#container.event #page_container h3.event_group_title_new::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* スマートフォン */
@media screen and (max-width: 768px) {

    #container.event #page_container h3.event_group_title_new {
        margin-bottom: 20px !important;
        font-size: 20px;
        letter-spacing: 0.05em;
    }
}

/* アクセスページの補足文 */
#container.access .access_note_new {
    display: inline-block;
    margin-top: 6px;
    color: #6f6258;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.7;
}