@charset "UTF-8";
body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ヘッダー */
header {
  background: #fff;
  border-bottom: 3px solid #00a497;
}

#menu-toggle {
  display: none;
}

/* ヘッダー全体を縦方向に配置 */
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 縦並び */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  text-align: center;
}

.header-logo img {
  display: block;
  margin: 0 auto;
  margin-bottom: 0.8rem;
  width: 30%;
  text-align: center;
}

/* ナビゲーションを中央揃え */
.nav-center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-center ul li {
  margin: 0 1.5rem;
  /* 左右に1.5remずつ余白 */
}

.nav-center ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.nav-center ul li a:hover {
  color: #00a497;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .nav-center ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

/* ハンバーガーメニュー */
.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #00a497;
}

/* スマホ用メニュー */
@media (max-width: 640px) {
  nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.5rem 0;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  nav.open ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-btn {
    display: block;
  }
}

.about-section {
  padding: 4rem 1rem;
  background: #fff;
}

.about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}

.about-text {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #00a497;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 380px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ヒーロー */
.hero {
  position: relative;
  height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  background: #00a497;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover {
  background: #00a497;
}

.goal-section {
  background: #fff;
  color: #333;
  padding: 4rem 1rem;
  padding-bottom: 6rem;
}

.goal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.goal-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40%;
  background-color: white;
  padding: 2vw;
  border-radius: 2vw;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.goal-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.goal-subtitle {
  display: block;
  font-size: 1rem;
  color: #00a497;
  font-weight: bold;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.goal-description {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.goal-image {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  max-width: 100%;
}

.goal-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.goal-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.accent-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  background: #00a497;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  margin-top: 1vw;
}

.accent-btn:hover {
  background: #00a497;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .goal-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .goal-title {
    font-size: 1.8rem;
  }
}

.total {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  margin-bottom: 10vh;
  padding: 2vh 0;
  color: black;
  position: relative;
}

.total h2 {
  margin-left: 10vw;
  color: black;
  margin-bottom: 5vh;
  margin-top: 5vh;
  font-size: 25px;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total h2 span {
  color: #00a497;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .newtitle {
  padding-bottom: 0;
  font-size: 13px;
  text-align: left;
  color: white;
  letter-spacing: 10px;
  margin-bottom: 0;
  margin-left: 10%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  font-weight: lighter;
}

.total .post-categories {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .post-categories li {
  width: 90%;
  margin: 0 auto;
  list-style: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .post-categories li a {
  color: black;
  text-decoration: none;
  background-color: #00a497;
  width: 50%;
  display: none;
  padding: 5px 0;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  z-index: 5;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  text-align: center;
  border-radius: 0;
}

.total .blog_link {
  display: block;
  text-align: center;
  color: black;
  padding: 15px 0;
  text-decoration: none;
}

.total .blog_link_last {
  display: block;
  text-align: center;
  color: black;
  padding: 15px 0;
  width: 22%;
  margin: 0 auto;
  margin-bottom: 7vh;
  margin-top: 5vh;
  text-decoration: none;
  background-color: #00a497;
  color: white;
  border-radius: 2vw;
  position: absolute;
  top: 16.5vw;
  right: 5vw;
}

.total .mainarticle {
  width: 60%;
  display: -ms-grid;
  display: grid;
  margin-left: 10vw;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .mainarticle .wp-post-image {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .mainarticle .article {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .mainarticle img {
  display: block;
  height: auto;
  width: 97%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.total .mainarticle div .desc p {
  margin: 0;
}

.total .mainarticle div .desc p a {
  color: black;
  font-size: 1vw;
  display: block;
  padding: 10px 0;
  -webkit-appearance: none;
  margin-top: 0;
  width: 100%;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}

.total .message {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.5fr 1fr;
      grid-template-columns: 2.5fr 1fr;
  gap: 10px;
}

.total .message .smf_p {
  display: none;
}

.total .message p {
  letter-spacing: 2px;
  font-size: 15px;
}

.total .message_second {
  letter-spacing: 2px;
  font-size: 15px;
}

/* セクション */
.section {
  padding: 3rem 1rem;
}

.section h3 {
  text-align: center;
  color: #00a497;
  margin-bottom: 1.5rem;
}

.gray {
  background: #f5fafa;
}

/* 新着ニュース */
.news-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ddd;
}

.news-list li .date {
  color: #00a497;
  font-weight: bold;
  width: 120px;
}

.news-list li a {
  color: #333;
  text-decoration: none;
}

.news-list li a:hover {
  text-decoration: underline;
}

/* 特徴カード */
.features .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 50%;
  display: block;
  margin: 0 auto;
}

/* 代表理事メッセージ */
.message-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.message-photo img {
  width: 200px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.message-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}

.message-text h3 {
  color: #00a497;
  margin-bottom: 1rem;
}

.director-name {
  font-weight: bold;
  margin-top: 1rem;
}

/* サービス */
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 40px;
  display: block;
  margin: 0 auto 0.5rem;
}

/* 会員料金表 */
.membership-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto;
}

.membership-table th,
.membership-table td {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: center;
}

.membership-table th {
  background: #e0f7fa;
  color: #00a497;
}

.union-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  padding: 4rem 1rem;
}

.union-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #00a497;
  margin-top: 0;
  margin-bottom: 1rem;
  position: relative;
}

.union-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00a497;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

.union-description {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.union-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(220px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 950px;
  margin: 0 auto;
}

.union-card {
  background: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-weight: bold;
  color: #333;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  cursor: default;
}

.union-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.union-card span {
  display: block;
  font-size: 1rem;
  color: #222;
}

/* フッター */
footer {
  background: #00a497;
  color: white;
  text-align: center;
  padding: 1rem;
}

footer img.logo {
  height: 40px;
  display: block;
  margin: 0 auto 0.5rem;
}

@media (max-width: 768px) {
  /* スマホ用 */
}

@media (max-width: 768px) and (max-width: 640px) {
  .menu-btn {
    display: block;
  }
  .nav-center ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.5rem 0;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  /* チェックボックスがONの時だけ表示 */
  #menu-toggle:checked + .menu-btn + .nav-center ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 768px) {
  /* ヘッダー */
  .header-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.5rem 1rem;
  }
  nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.5rem 0;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  nav.open ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  /* ヒーロー */
  .hero {
    height: 40vh;
    padding: 1rem;
  }
  .hero-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  /* aboutセクション */
  .about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 220px;
  }
  /* 特徴カード */
  .features .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* サービス */
  .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* 代表理事メッセージ */
  .message-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .message-photo img {
    width: 150px;
    margin-bottom: 1rem;
  }
  /* 目標300社セクション */
  .goal-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .goal-content {
    padding: 1rem;
  }
  .goal-title {
    font-size: 1.5rem;
  }
  /* 会員募集テーブル */
  .membership-table th,
  .membership-table td {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
  /* 加入連合セクション */
  .union-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .union-card {
    font-size: 0.95rem;
  }
  /* ブログ記事 */
  .total .mainarticle {
    width: 90%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }
  .total .blog_link_last {
    width: 60%;
    font-size: 0.9rem;
    position: static;
    margin-top: 1.5rem;
  }
  /* ボタン */
  .btn,
  .accent-btn {
    width: auto;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  /* フッター */
  footer img.footer-logo {
    height: 30px;
  }
}
/*# sourceMappingURL=top.css.map */