@charset "UTF-8";
/* ===============================================
# カラー
=============================================== */
/* ===============================================
# リンク
=============================================== */
/* ===============================================
# ボーダー
=============================================== */
/* ===============================================
# タイポグラフィー
=============================================== */
/* ===============================================
# スペーシング
=============================================== */
/* ===============================================
# パス
=============================================== */
/* ===============================================
# Mixins
=============================================== */
/* ===============================================
# ベース設定
=============================================== */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  color: #333333;
}

a {
  text-decoration: none;
  color: #333333;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ===============================================
# レイアウト／スペーシング
=============================================== */
.l-section {
  padding: 4rem 0;
}

.l-section-bg {
  padding: 8rem 0;
}

/* ===============================================
# レスポンシブで出現 / 削除
=============================================== */
/*PC版ブロックで出る*/
.pc-up-xl {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-up-xl {
    display: block;
  }
}

.pc-up-lg {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-up-lg {
    display: block;
  }
}

.pc-up-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-up-md {
    display: block;
  }
}

.pc-up-sm {
  display: none;
}
@media screen and (min-width: 576px) {
  .pc-up-sm {
    display: block;
  }
}

/*PC版インラインで出る*/
.pc-up-xl-in {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-up-xl-in {
    display: inline;
  }
}

.pc-up-lg-in {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-up-lg-in {
    display: inline;
  }
}

.pc-up-md-in {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-up-md-in {
    display: inline;
  }
}

/*SP版ブロックで出る*/
.sp-up-xl {
  display: block;
}
@media screen and (min-width: 1200px) {
  .sp-up-xl {
    display: none;
  }
}

.sp-up-lg {
  display: block;
}
@media screen and (min-width: 992px) {
  .sp-up-lg {
    display: none;
  }
}

.sp-up-md {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-up-md {
    display: none;
  }
}

.sp-up-sm {
  display: block;
}
@media screen and (min-width: 576px) {
  .sp-up-sm {
    display: none;
  }
}

/*SP版インラインで出る*/
.sp-up-xl-in {
  display: inline;
}
@media screen and (min-width: 1200px) {
  .sp-up-xl-in {
    display: none;
  }
}

.sp-up-lg-in {
  display: inline;
}
@media screen and (min-width: 992px) {
  .sp-up-lg-in {
    display: none;
  }
}

.sp-up-md-in {
  display: inline;
}
@media screen and (min-width: 768px) {
  .sp-up-md-in {
    display: none;
  }
}

.sp-up-sm-in {
  display: inline;
}
@media screen and (min-width: 576px) {
  .sp-up-sm-in {
    display: none;
  }
}

.sp-up-xs-in {
  display: inline;
}
@media screen and (min-width: 376px) {
  .sp-up-xs-in {
    display: none;
  }
}

/* ===============================================
# 外枠
=============================================== */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
/* ===============================================
# パンくずリスト
=============================================== */
.breadcrumbs {
  width: 100%;
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  white-space: nowrap;
  color: #808080;
  padding: 10px 0;
  margin-bottom: 40px;
  list-style-type: ">";
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs li {
  padding-left: 8px;
  padding-right: 8px;
}
.breadcrumbs li:first-child {
  list-style-type: none;
  padding-left: 0;
}

/* リンクのスタイル */
.breadcrumbs a {
  color: #808080;
  text-decoration: none;
}

/* ===============================================
# 記事一覧ナビゲーション
=============================================== */
.wp-pagenavi {
  display: flex;
  margin-top: 48px;
}
.wp-pagenavi a {
  color: #666666;
}

.wp-pagenavi span, .wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.wp-pagenavi span:hover, .wp-pagenavi a:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}

.wp-pagenavi span.current {
  background-color: #808080;
  color: #FFFFFF;
}

.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  width: 40px;
  height: 40px;
}

.wp-pagenavi a.nextpostslink {
  border-radius: 0 4px 4px 0;
}

.wp-pagenavi a.previouspostslink {
  border-radius: 4px 0 0 4px;
}

/* ===============================================
# 汎用ユーティリティ
=============================================== */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.overflow-width {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.overflow-right {
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.overflow-left {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* ===============================================
# スクロールエフェクト
=============================================== */
.load-fade {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ===============================================
# 見出し
=============================================== */
.heading {
  font-size: 2rem;
  color: #333333;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 2.75rem;
  }
}

/* ===============================================
# ボタン
=============================================== */
.button-b {
  padding: 15px 12px;
  border: 1px solid #D9D9D9;
  color: #FFFFFF;
  font-weight: 600;
}
.button-b:hover {
  background-color: #FFFFFF;
  color: #2E7D32;
}

.button-g {
  padding: 15px 12px;
  background-color: #2E7D32;
  color: #FFFFFF;
  font-weight: 600;
}

.button-w {
  padding: 15px 12px;
  border: 1px solid #2E7D32;
  background-color: #FFFFFF;
  color: #2E7D32;
  font-weight: 600;
}

/* =======================================================================================
# トップ
======================================================================================= */
.fv {
  height: 680px;
  color: #FFFFFF;
  text-align: left;
  text-shadow: 2.26px 2.26px 2.26px rgba(34, 90, 37, 0.25);
}
@media screen and (min-width: 768px) {
  .fv {
    text-align: center;
  }
}
.fv .swiper {
  width: 100%;
  position: relative;
}
.fv .swiper img {
  width: 100%;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__body {
  padding: 180px 24px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}
.fv h2 {
  font-size: 3.5rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .fv h2 {
    font-size: 5rem;
  }
}
.fv h2 span {
  font-size: 2.75rem;
}
@media screen and (min-width: 768px) {
  .fv h2 span {
    font-size: 4rem;
  }
}
.fv .sub-copy {
  font-size: 1.5rem;
  line-height: 1.75;
}

/* ===============================================
# ピックアップ
=============================================== */
.pickup {
  padding: 24px;
  background-color: #225A25;
  color: #FFFFFF;
}
.pickup__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  line-height: 1;
}
.pickup__body h2, .pickup__body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .pickup__body {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.pickup__body h2, .pickup__body p {
  white-space: nowrap;
}
.pickup__body h3 {
  line-height: 1.25;
}
.pickup__title {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ===============================================
# TOPの自由入力エリア
=============================================== */
.free-input {
  padding: 100px 24px 0;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (min-width: 576px) {
  .free-input {
    padding: 100px 0 0;
  }
}
.free-input b, .free-input strong {
  font-weight: 600;
  color: #2E7D32;
}

/* ===============================================
# ニュース
=============================================== */
.news {
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 576px) {
  .news {
    padding: 100px 0;
  }
}
.news .heading {
  font-size: 2.75rem;
}
.news__list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.news__item {
  width: 100%;
  color: #333333;
}
@media screen and (min-width: 576px) {
  .news__item {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .news__item {
    width: 267px;
  }
}
.news__item img {
  width: 100%;
}
.news__item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
  max-height: 3em;
}
.news__item-foot {
  display: flex;
  justify-content: space-between;
}
.news__item-foot .date {
  color: #808080;
  font-size: 1rem;
  font-weight: 300;
}
.news__item-foot .tag {
  padding: 6px;
  background-color: #C8E6C9;
  color: #2E7D32;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}
.news .button-w {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.news .button-w:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}
.news .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}
.news__latest {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
}
.news__latest .sns {
  max-width: 70px;
}
.news__latest img {
  width: 50px;
  height: 50px;
}

/* ===============================================
# 静岡県清水支部について
=============================================== */
.about {
  background-image: url("img/about.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
}
.about__body {
  padding: 100px 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 48px;
}
.about__body .heading {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about__body .supplement {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .about__body {
    flex-direction: row;
    padding: 100px 0;
  }
}
.about__buttons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__buttons .button-b {
  width: 100%;
  text-align: center;
}
.about__buttons .button-b::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 19px;
  height: 19px;
  background-image: url("img/arrow-b.svg");
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .about__buttons .button-b {
    width: 344px;
    gap: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .about__buttons .button-b {
    width: 535px;
  }
}

/* ===============================================
# お問い合わせCTA
=============================================== */
.cta {
  padding: 100px 24px;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 100px 0px;
  }
}
.cta .heading {
  font-size: 2.75rem;
}
.cta__content {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta__content {
    flex-direction: row;
  }
}
.cta__item {
  width: 100%;
  text-align: center;
  background-color: #2E7D32;
  padding: 32px 24px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .cta__item {
    width: 364px;
  }
}
.cta__item h3 {
  font-weight: 500;
  margin-bottom: 18px;
}
.cta__item .phone-title::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 18px;
  height: 18px;
  background-image: url(/img/phone.png);
  margin-right: 4px;
}
.cta__item .mail-title::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 18px;
  height: 18px;
  background-image: url(/img/mail.png);
  margin-right: 4px;
}
.cta__item .phone-number {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
}
.cta__item .phone-number::before {
  content: "tel.";
  font-weight: 300;
}
.cta__item .reception-hours {
  font-size: 0.75rem;
  font-weight: 300;
}
.cta__item .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}

/* ===============================================
# バナーリンク集
=============================================== */
.banner {
  background-color: #FAFAF0;
  padding: 40px 0;
}
.banner__lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .banner__lists {
    flex-direction: row;
  }
}
.banner__item img {
  width: 240px;
  height: auto;
}
@media screen and (min-width: 576px) {
  .banner__item img {
    width: auto;
    height: 45px;
  }
}
@media screen and (min-width: 768px) {
  .banner__item img {
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .banner__item img {
    height: 80px;
  }
}

/* ===============================================
# フッター
=============================================== */
.footer {
  background-color: #C8E6C9;
}
.footer__body {
  padding: 40px 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
}
.footer__body ul {
  list-style-type: none;
}
.footer__body .logo {
  white-space: nowrap;
}
.footer__body .jimin-logo {
  margin-right: 2px;
  width: 120px;
}
@media screen and (min-width: 576px) {
  .footer__body .jimin-logo {
    width: 148px;
  }
}
.footer__body .shibu-logo {
  width: 134px;
}
@media screen and (min-width: 576px) {
  .footer__body .shibu-logo {
    width: 168px;
  }
}
@media screen and (min-width: 576px) {
  .footer__body {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__body {
    flex-direction: row;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
}
.footer__nav-item {
  width: 50%;
  margin-bottom: 16px;
  line-height: 1;
}
.footer__nav .button-g {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.footer__nav .button-g::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 16px;
  height: 18px;
  background-image: url("img/arrow-w.png");
  margin-right: 8px;
}
.footer__copy {
  background-color: #2E7D32;
  padding: 8px;
  text-align: center;
}
.footer__copy-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .footer__copy-list {
    flex-direction: row;
  }
}
.footer__copy-list li {
  padding: 0 16px;
}
.footer__copy-list li + li {
  border-left: none;
}
@media screen and (min-width: 576px) {
  .footer__copy-list li + li {
    border-left: 1px solid #FFFFFF;
  }
}
.footer__copy small, .footer__copy a {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1;
}

/* =======================================================================================
# ニュース一覧ページ
======================================================================================= */
.arch {
  padding: 120px 24px 100px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .arch {
    padding: 120px 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .arch {
    flex-direction: row;
  }
}
.arch__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .arch__body {
    max-width: 424px;
  }
}
@media screen and (min-width: 992px) {
  .arch__body {
    max-width: 660px;
  }
}
@media screen and (min-width: 1200px) {
  .arch__body {
    max-width: 849px;
  }
}
.arch .cat .cat-item {
  border: 2px solid #D9D9D9;
  padding: 8px 20px;
  border-radius: 65px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.arch .heading {
  margin-bottom: 24px;
}
.arch__list {
  margin-top: 18px;
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .arch__list {
    justify-content: flex-start;
  }
}
.arch__item {
  width: 100%;
  color: #333333;
}
@media screen and (min-width: 576px) {
  .arch__item {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .arch__item {
    width: 267px;
  }
}
.arch__item .thumbnail {
  width: 100%;
  height: 176px;
}
.arch__item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}
.arch__item-title {
  height: 72px;
  margin-bottom: 16px;
}
.arch__item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
  max-height: 3em;
}
.arch__item-foot {
  display: flex;
  justify-content: space-between;
}
.arch__item-foot .date {
  color: #808080;
  font-size: 1rem;
  font-weight: 300;
}
.arch__item-foot .tag {
  display: flex;
  gap: 4px;
}
.arch__item-foot .tag li {
  padding: 6px;
  background-color: #C8E6C9;
  color: #2E7D32;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  list-style-type: none;
}

/* =======================================================================================
# ニュース記事個別ページ
======================================================================================= */
.single {
  padding: 120px 24px 100px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .single {
    padding: 120px 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .single {
    flex-direction: row;
  }
}
.single .cat {
  margin-bottom: 18px;
}
.single__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .single__body {
    max-width: 424px;
  }
}
@media screen and (min-width: 992px) {
  .single__body {
    max-width: 660px;
  }
}
@media screen and (min-width: 1200px) {
  .single__body {
    max-width: 849px;
  }
}
.single__body img {
  width: 100%;
  height: auto;
}
.single h2 {
  font-size: 1.875rem;
  color: #333333;
}
.single .date {
  color: #2E7D32;
  font-size: 1rem;
}
.single .date::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 16px;
  height: 18px;
  background-image: url("img/time-g.png");
  margin-right: 8px;
}
.single figure {
  margin-top: 24px;
}
.single__text {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 32px;
  border-bottom: 1px solid #D9D9D9;
}
.single__text p {
  margin-bottom: 16px;
}
.single .post-navi {
  display: flex;
  gap: 32px;
  list-style-type: none;
}
.single .post-navi .prev {
  border: 1px solid #2E7D32;
  background-color: #FFFFFF;
  color: #2E7D32;
  line-height: 1;
  border-radius: 4px;
  padding: 8px 12px;
}
.single .post-navi .prev::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 18px;
  height: 18px;
  background-image: url("img/arrow-g.png");
  transform: rotate(-180deg);
  margin-right: 8px;
}
.single .post-navi .prev a {
  color: #2E7D32;
}
.single .post-navi .next {
  background-color: #2E7D32;
  color: #FFFFFF;
  line-height: 1;
  border-radius: 4px;
  padding: 8px 12px;
}
.single .post-navi .next::after {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 18px;
  height: 19px;
  background-image: url("img/arrow-w.png");
  margin-left: 8px;
}
.single .post-navi .next a {
  color: #FFFFFF;
}

.cat {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cat-tag {
  border: 2px solid #D9D9D9;
  padding: 8px 20px;
  border-radius: 65px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* =======================================================================================
# サイドバー
======================================================================================= */
.sidebar {
  background-color: #2E7D32;
  color: #FFFFFF;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar {
    width: 260px;
  }
}
.sidebar h3 {
  font-size: 1.125rem;
  line-height: 1;
  padding: 16px;
  border-bottom: 1px solid #FFFFFF;
}
.sidebar h3::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 22px;
  background-image: url("img/time.png");
  margin-right: 8px;
}
.sidebar ul {
  padding: 0 16px;
  list-style-type: none;
  color: #FFFFFF;
}
.sidebar li {
  border-bottom: 1px solid #FFFFFF;
  padding: 18px 0;
}
.sidebar li:last-child {
  border-bottom: 0px solid #FFFFFF;
}
.sidebar a {
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
  max-height: 3em;
  color: #FFFFFF;
}
.sidebar p {
  font-size: 0.75rem;
}

/* =======================================================================================
# 議員紹介ページ
======================================================================================= */
.members {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .members {
    padding: 120px 0 100px;
  }
}
.members .heading {
  margin-bottom: 48px;
}
.members__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 64px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  list-style-type: none;
}
@media screen and (min-width: 1400px) {
  .members__list {
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
.members__item {
  max-width: 267px;
}
.members__position {
  font-size: 1.125rem;
  background-color: #808080;
  color: #FFFFFF;
  line-height: 1;
  font-weight: 600;
  padding: 8px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
}
.members__name {
  font-size: 1.5rem;
  color: #333333;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 12px;
}
.members__kana {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  color: #808080;
  margin-bottom: 12px;
}
.members__link {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  height: 48px;
  padding: 12px 0;
}
.members__link img {
  width: 24px;
  height: 24px;
}
.members__info {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.members__info th, .members__info td {
  border-top: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  line-height: 1;
  padding: 12px 0;
  font-weight: 500;
}
.members__info th {
  color: #2E7D32;
  width: 36%;
}
.members__info td {
  width: 64%;
  color: #808080;
}
.members__info a {
  color: #808080;
}

/* =======================================================================================
# 支部構成ページ
======================================================================================= */
.structure {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .structure {
    padding: 120px 0 100px;
  }
}
.structure .heading {
  margin-bottom: 48px;
}
.structure__content {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
@media screen and (min-width: 576px) {
  .structure__content {
    width: 420px;
  }
}
.structure__content th, .structure__content td {
  padding: 18px 12px;
  line-height: 1.75;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 576px) {
  .structure__content th, .structure__content td {
    display: table-cell;
  }
}
.structure__content th {
  border-width: 0 1px 0 1px;
  background-color: #2E7D32;
  color: #FFFFFF;
}
@media screen and (min-width: 576px) {
  .structure__content th {
    border: 1px solid #BFBFBF;
  }
}
.structure__content td {
  border: 1px solid #BFBFBF;
  color: #808080;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .structure__content td {
    border-width: 1px;
    width: 250px;
  }
}

/* =======================================================================================
# 入党のご案内
======================================================================================= */
.join {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .join {
    padding: 120px 0 100px;
  }
}
.join__head .heading {
  margin-bottom: 24px;
}
.join__head p {
  margin-bottom: 48px;
  font-size: 1.25rem;
}
.join .button-w {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
  margin-bottom: 48px;
}
.join .button-w:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}
.join .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}
.join h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  line-height: 1;
  font-weight: 600;
}
.join h3::before {
  content: "■";
  margin-right: 4px;
}
@media screen and (min-width: 576px) {
  .join h3 {
    font-size: 1.5rem;
  }
}
.join__qualification {
  margin-bottom: 48px;
}
.join__qualification ul {
  list-style-position: inside;
  color: #2E7D32;
  font-weight: 600;
}
.join__benefits {
  margin-bottom: 48px;
}
.join__benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.join__benefits-item {
  border: 1px solid #2E7D32;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__benefits-item {
    width: 315px;
  }
}
.join__benefits-item .title {
  display: flex;
  padding: 14px;
  background-color: #2E7D32;
  align-items: center;
  gap: 8px;
}
.join__benefits-item .title h4 {
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}
.join__benefits-item p {
  padding: 16px;
  color: #808080;
}
.join__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.join__dues-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.join__dues-item {
  width: 100%;
  background-color: #C8E6C9;
  padding: 24px;
  text-align: center;
  color: #2E7D32;
}
@media screen and (min-width: 768px) {
  .join__dues-item {
    width: 364px;
  }
}
.join__dues-item h4 {
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 12px;
}
.join__dues-item .guide {
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.join__dues-item .annual-fee {
  font-weight: 600;
}
.join__dues-item .annual-fee .price {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
}
.join__contact-area {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .join__contact-area {
    flex-direction: row;
  }
}
.join__contact-map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__contact-map {
    width: auto;
  }
}
.join__contact-map iframe {
  vertical-align: top;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__contact-map iframe {
    width: 400px;
  }
}
.join__contact-info {
  background-color: #FAFAF0;
  padding: 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__contact-info {
    width: 228px;
  }
}
.join__contact-info ul {
  list-style-type: none;
}

/* =======================================================================================
# お問い合わせ
======================================================================================= */
.contact {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .contact {
    padding: 120px 0 100px;
  }
}
.contact .heading {
  margin-bottom: 48px;
}
.contact__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 992px) {
  .contact__body {
    flex-direction: row;
  }
}
.contact__form {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contact__form {
    width: 558px;
  }
}
.contact__form .button-w {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.contact__form .button-w:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}
.contact__form .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}
.contact__item dt {
  font-size: 1rem;
  margin-bottom: 4px;
  width: 100%;
}
.contact__item dt .required::after {
  content: "必須";
  font-size: 0.75rem;
  background-color: #2E7D32;
  color: #FFFFFF;
  line-height: 1;
  padding: 4px;
  margin-left: 8px;
}
.contact__item .input-field {
  width: 100%;
  padding: 16px 8px;
  background-color: #f5f5f5;
  color: #8c8c8c;
  line-height: 1;
  margin-bottom: 24px;
}
.contact__item .input-field input, .contact__item .input-field textarea {
  width: 100%;
}
.contact__map h3 {
  color: #2E7D32;
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1;
  font-weight: 600;
}
.contact__map h3::before {
  content: "■";
  margin-right: 4px;
}
.contact__map iframe {
  vertical-align: top;
  width: 100%;
}
.contact__map-info {
  background-color: #FAFAF0;
  padding: 18px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contact__map-info {
    width: 400px;
  }
}
.contact__map-info ul {
  list-style-type: none;
}

/* =======================================================================================
# プライバシーポリシー
======================================================================================= */
.privacy {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .privacy {
    padding: 120px 0 100px;
  }
}
.privacy .heading {
  margin-bottom: 24px;
}
.privacy__body {
  font-size: 1.125rem;
  line-height: 2;
}
.privacy__body ol {
  padding-left: 28px;
  margin-bottom: 40px;
}
.privacy__foot {
  background-color: #FAFAF0;
  padding: 18px;
}
.privacy__foot ul {
  list-style-type: none;
}

/* =======================================================================================
# サイトマップ
======================================================================================= */
.sitemap {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .sitemap {
    padding: 120px 0 100px;
  }
}
.sitemap__body {
  margin-bottom: 40px;
}
.sitemap__body a {
  color: #2E7D32;
  font-size: 1.125rem;
  font-weight: 600;
}
.sitemap__body li {
  list-style-type: none;
  margin-bottom: 8px;
  background-image: url(img/arrow-g.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 28px;
}
.sitemap .heading {
  margin-bottom: 48px;
}
.sitemap .button-w {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.sitemap .button-w:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}
.sitemap .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}

/* =======================================================================================
# 404エラー
======================================================================================= */
.error {
  padding: 120px 24px 100px;
}
@media screen and (min-width: 576px) {
  .error {
    padding: 120px 0 100px;
  }
}
.error__text {
  margin-bottom: 40px;
}
.error__text .heading {
  margin-bottom: 24px;
}
.error .button-w {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.error .button-w:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
}
.error .button-w::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  background-image: url("img/arrow-g.png");
  margin-right: 8px;
}

/* ―――――――――――――――――――――――――――――――――――――――――――――――
# navi
――――――――――――――――――――――――――――――――――――――――――――――― */
.header {
  background-color: #FFFFFF;
  padding: 24px;
  border-bottom: 1px solid #2E7D32;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .header {
    padding: 24px 0;
  }
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__body .logo {
  white-space: nowrap;
}
.header__body .jimin-logo {
  margin-right: 0;
  width: 96px;
}
@media screen and (min-width: 376px) {
  .header__body .jimin-logo {
    width: 120px;
  }
}
@media screen and (min-width: 576px) {
  .header__body .jimin-logo {
    width: 148px;
    margin-right: 2px;
  }
}
.header__body .shibu-logo {
  width: 110px;
}
@media screen and (min-width: 376px) {
  .header__body .shibu-logo {
    width: 134px;
  }
}
@media screen and (min-width: 576px) {
  .header__body .shibu-logo {
    width: 168px;
  }
}
.header__nav {
  position: absolute;
  top: 94px;
  left: 0;
  width: 100%;
  padding: 40px 24px;
  background: #C8E6C9;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .header__nav {
    top: 96px;
  }
}
@media screen and (min-width: 992px) {
  .header__nav {
    background-color: transparent;
    position: static;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}
.header__nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.header__nav-list {
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  list-style-type: none;
}
@media screen and (min-width: 992px) {
  .header__nav-list {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.header__nav-list a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .header__nav-list a {
    padding: 0;
  }
}
.header__nav-list a:hover {
  color: #2E7D32;
}
.header__nav-list li:last-child {
  background-color: #2E7D32;
  text-align: center;
  padding: 12px;
}
@media screen and (min-width: 992px) {
  .header__nav-list li:last-child {
    background-color: transparent;
    padding: 0;
  }
}
.header__nav-toggler {
  display: block;
  width: 46px;
  height: 46px;
  position: relative;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .header__nav-toggler {
    display: none;
  }
}
.header__cta {
  color: #FFFFFF;
}
@media screen and (min-width: 992px) {
  .header__cta {
    color: #333333;
  }
}
.header__cta::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  width: 20px;
  height: 22px;
  background-image: url("img/arrow-w.png");
  margin-right: 8px;
}
@media screen and (min-width: 992px) {
  .header__cta::before {
    display: none;
  }
}
.header__cta:hover {
  color: #FFFFFF !important;
}
@media screen and (min-width: 992px) {
  .header__cta:hover {
    color: #2E7D32 !important;
  }
}

.header__nav-toggler span,
.header__nav-toggler span::before,
.header__nav-toggler span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: #2E7D32;
  transition: 0.3s ease;
  content: "";
}

.header__nav-toggler span {
  top: 50%;
  transform: translateY(-50%);
}

.header__nav-toggler span::before {
  top: -14px;
}

.header__nav-toggler span::after {
  top: 14px;
}

/* --- 開いたときのアニメーション --- */
.header__nav-toggler.toggler-open span {
  background: transparent;
}

.header__nav-toggler.toggler-open span::before {
  transform: rotate(45deg) translate(9px, 9px);
}

.header__nav-toggler.toggler-open span::after {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* --- ナビゲーションの現在位置表示 --- */
.current {
  color: #2E7D32;
}

/* ===============================================
# ラベル Labels
=============================================== */
/*# sourceMappingURL=style.css.map */