@charset "UTF-8";
/* ==========================================================================
   いきいきの郷 暫定サイト スタイルシート
   実在の福祉法人サイトを意識し、単色・フラット・実直なトーンに統一。
   装飾過多（多色グラデーション／ピル型ボタン／カード浮遊アニメーション等）は避ける。
   ========================================================================== */
:root {
  --color-primary: #2f7d4f;
  --color-primary-dark: #1f5a37;
  --color-primary-light: #eaf3ec;
  --color-text: #222222;
  --color-muted: #545454;
  --color-border: #dddddd;
  --color-banner-bg: #fdf6e3;
  --color-banner-border: #e8d9a0;
  --max-width: 1080px;
  --radius: 6px;
  --radius-sm: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: #ffffff;
}

h1,
h2,
h3 {
  color: var(--color-primary-dark);
  line-height: 1.4;
  font-weight: 700;
}

h2 {
  font-size: 1.4rem;
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 3px solid var(--color-primary);
}

h3 {
  font-size: 1.1rem;
}

a {
  color: var(--color-primary-dark);
}

a:hover {
  text-decoration: none;
}

/* 暫定サイト通知バナー */
.notice-banner {
  background: var(--color-banner-bg);
  border-bottom: 1px solid var(--color-banner-border);
  color: #6a4d00;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.notice-banner a {
  color: #6a4d00;
  font-weight: bold;
}

.sp_non {
  display: inline;
}

/* ヘッダー */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link {
  display: inline-block;
}

.logo {
  height: 54px;
  width: auto;
  display: block;
}

.header-contact {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-align: right;
}
.header-contact .tel_text {
  font-size: 1rem;
  font-weight: 700;
}

.header-contact p {
  margin: 2px 0;
}

.header-contact a {
  font-weight: bold;
  color: var(--color-primary-dark);
}

.main-nav {
  background: var(--color-primary);
  height: 48px;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  line-height: 48px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-primary-dark);
}

/* メインコンテンツ共通 */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 100px;
}

/* ヒーローエリア（背景写真＋ロゴ） */
.hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 60, 40, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 36px 24px;
  max-width: 640px;
}

.hero-logo {
  width: 320px;
  height: auto;
  margin-bottom: 14px;
}

.hero-content h1 {
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  color: #ffffff;
}

.hero-content p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

/* 募集中のお知らせ枠 */
.cta-banner {
  margin: 24px 0;
  padding: 24px 28px;
  text-align: center;
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
}

.cta-banner h2 {
  border: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.cta-banner p {
  margin: 0 0 16px 0;
  color: var(--color-muted);
}

.cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
}

.cta-button:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
}

/* 事業一覧ナビ */
.service-nav {
  padding: 32px 0;
}

.service-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.service-links a {
  display: block;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-decoration: none;
  font-weight: bold;
  color: var(--color-primary-dark);
}

.service-links a:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* お知らせプレビュー */
.news-preview {
  padding: 24px 0;
}

.news-list {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}

.news-list li {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list time {
  color: var(--color-primary-dark);
  font-weight: bold;
  min-width: 100px;
}

.more-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* テーブル */
.info-table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}

.info-table th,
.info-table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: var(--color-primary-light);
  width: 30%;
  white-space: nowrap;
  color: var(--color-primary-dark);
}

.table-scroll {
  overflow-x: auto;
}

/* シンボルマーク */
.symbol-block {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.symbol-block img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

.symbol-block blockquote {
  margin: 0;
  color: var(--color-muted);
}

.symbol-block .credit {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
}

.legal-links {
  padding-left: 1.2em;
}

/* 事業内容カード */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 100px;
}

.card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card h3,
.card p {
  padding: 0 16px;
}

.card h3 {
  margin: 16px 0 8px 0;
}

.card p {
  margin: 0 0 12px 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.card .tel,
.card .hours {
  font-weight: bold;
  color: var(--color-primary-dark);
}

.card .tel:last-child,
.card .hours:last-child {
  margin-bottom: 16px;
}

/* 注意書き */
.notice-inline {
  background: var(--color-banner-bg);
  border: 1px solid var(--color-banner-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #6a4d00;
}

.tel-big {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-primary-dark);
}

/* Googleマップ */
.map-wrap {
  position: relative;
  width: 100%;
  height: 640px;
  margin-top: 20px;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* フッター */
.site-footer {
  background: var(--color-primary-dark);
  margin-top: 24px;
  padding: 32px 16px;
  color: #ffffff;
}

.footer-links {
  max-width: var(--max-width);
  margin: 0 auto 24px auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.legal-block {
  max-width: var(--max-width);
  margin: 0 auto 24px auto;
  scroll-margin-top: 100px;
}

.legal-block h3 {
  color: #ffffff;
}

.legal-block p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 24px 0 0 0;
}

/*-------------------------
common/ページネーション
-------------------------*/
.pagination {
  padding-bottom: 24px;
  max-width: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px auto;
}
.pagination a {
  display: inline-block;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  margin: 0 4px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #1f5a37;
  background-color: rgba(75, 206, 35, 0);
  transition: 0.5s;
}
.pagination a:hover {
  color: #fff;
  background-color: #1f5a37;
}
.pagination .current {
  text-align: center;
  font-size: 1.2rem;
  line-height: 30px;
  width: 30px;
  height: 30px;
  background-color: #1f5a37;
  color: #fff;
}

.back_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
}
.back_button a {
  text-align: center;
  height: 32px;
  line-height: 32px;
  width: 160px;
  color: #fff;
  background: #1f5a37;
  transition: 0.5s;
}
.back_button a:hover {
  background-color: #1f5a37;
  transition: 0.5s;
}

.single-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 24px auto 24px;
}
.single-navigation a {
  color: #1f5a37;
  font-weight: 700;
}

.single_box {
  padding: 24px 32px 0;
}
.single_box .title_box .day {
  font-family: "Oswald", sans-serif;
  color: #14301f;
  font-weight: 900;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.single_box .title_box .day span {
  margin-right: 16px;
  width: 80px;
  height: 24px;
  font-size: 1rem;
  background-color: #1f5a37;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.single_box .title_box h3 {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 28px;
}
.single_box .img_box {
  max-width: 800px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  text-align: center;
}
.single_box .img_box img {
  height: auto;
}
.single_box .main {
  margin-top: 32px;
  color: #000;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.single_box .main h1,
.single_box .main h2,
.single_box .main h3,
.single_box .main h4,
.single_box .main h5,
.single_box .main h6 {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 700;
  line-height: 220%;
}
.single_box .main p,
.single_box .main li {
  line-height: 200%;
}
.single_box .main h1 {
  font-size: 3.2rem;
}
.single_box .main h2 {
  font-size: 2.4rem;
}
.single_box .main h3 {
  font-size: 1.8rem;
}
.single_box .main h4 {
  font-size: 1.6rem;
}
.single_box .main h5 {
  font-size: 1.3rem;
}
.single_box .main h6 {
  font-size: 1rem;
}
.single_box .main strong {
  font-weight: 700;
}
.single_box .main ul li::before {
  content: "・ ";
}
.single_box .main ol {
  counter-reset: number 0;
}
.single_box .main ol li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}
.single_box .main blockquote {
  quotes: "“" "”";
}
.single_box .main blockquote p::before {
  content: open-quote;
}
.single_box .main blockquote p::after {
  content: close-quote;
}

.blog_info .widget .wp-calendar-table tbody tr #today {
  background-color: #8fb528;
}

.blog_info .archive li a:before {
  content: url("../img/common/icon3.png");
}

/* レスポンシブ（スマホ幅） */
@media (max-width: 600px) {
  .sp_non {
    display: none !important;
  }
  /* ハンバーガー */
  .menu-btn {
    display: block;
    position: fixed;
    z-index: 102;
    right: 16px;
    top: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    text-align: center;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 6px;
    background: #1f5a37;
    transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 15px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 20px;
  }
  /*メニューボタン　展開後*/
  .menu-btn.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #1f5a37;
    transform: rotate(-45deg);
  }
  .menu-btn.active span:nth-child(2),
  .menu-btn.active span:nth-child(3) {
    top: 16px;
    background: #1f5a37;
    transform: rotate(45deg);
  }
  /*スマホ用のメニュー*/
  .gnavi_menu {
    position: fixed;
    z-index: 2;
    left: -100vw;
    bottom: 0;
    background: #1f5a37;
    text-align: center;
    width: 100vw;
    height: calc(100vh - 54px);
    transition: 0.6s ease;
    display: flex;
    padding-top: 32px;
    overflow-y: scroll;
    opacity: 0;
  }
  .gnavi_menu .header-dropmenu {
    margin: 24px auto 100px !important;
    padding: 0;
    height: auto !important;
    width: calc(100% - 48px) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding-left: 24px;
  }
  .gnavi_menu .header-dropmenu .menu_text {
    list-style-type: none;
    margin: 0 0;
    transition: 0.4s all;
    max-width: 200px;
    width: 100%;
    height: auto;
    border-left: solid #1f5a37 8px;
  }
  .gnavi_menu .header-dropmenu .menu_text a {
    line-height: 40px !important;
    background: none;
    text-align: left;
    padding: 8px 0;
    font-size: 1.4rem !important;
    justify-content: start;
    width: 150px;
    padding-left: 35px;
    color: #fff;
  }
  .gnavi_menu .header-dropmenu .credit {
    width: 100%;
    text-align: center;
  }
  .gnavi_menu .header-dropmenu .credit a {
    width: 100%;
    border-bottom: none;
    font-size: 1.2rem;
    margin-bottom: 80px;
  }
  .gnavi__sp-style > ul > li:last-of-type {
    padding-bottom: 0;
  }
  .gnavi__sp-style > ul > li > a {
    display: block;
    width: 155px;
    display: flex;
    justify-content: center;
    font-size: 1.6em;
    font-weight: 700;
    padding: 0.8em 0;
  }
  .gnavi__sp-style.active {
    left: 0;
    opacity: 1;
  }
  .menu_text_in {
    width: 180px;
  }
  /*メイン */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-contact {
    text-align: left;
  }
  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .hero {
    min-height: 240px;
  }
  .hero-logo {
    width: 64px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .cta-banner {
    padding: 20px 16px;
  }
  .tel-big {
    font-size: 1.3rem;
  }
  .symbol-block {
    flex-direction: column;
    text-align: center;
  }
}
/* タップ領域を大きめに（アクセシビリティ配慮） */
.main-nav a,
.service-links a {
  min-height: 44px;
}/*# sourceMappingURL=style.css.map */