@charset "UTF-8";
/** pxからvwへ変換関数 **/
html {
  font-size: 10px;
}

body {
  width: 100%;
  color: #0F1C28;
  font-size: 1.5rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  /* 親と同じフォント */
  color: inherit;
  /* 親と同じ色 */
  line-height: inherit;
}

ul {
  list-style: none;
}

a {
  color: #202020;
  -webkit-transition: all .4s 0s ease;
  transition: all .4s 0s ease;
}

a:hover {
  color: #1D98C4;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2 {
  font-size: 4rem;
  line-height: 1.5;
}

h3 {
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

table {
  width: 100%;
  text-align: left;
}

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

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

.font-bold {
  font-weight: bold;
}

.mt-03 {
  margin-top: 3rem;
}

.mb-04 {
  margin-bottom: 4rem;
}

.mb-05 {
  margin-bottom: 5rem;
}

.mb-06 {
  margin-bottom: 6rem;
}

.mb-02 {
  margin-bottom: 2rem;
}

.mb-01 {
  margin-bottom: 1rem;
}

.pl-01 {
  padding-left: 1rem;
}

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

.text-right {
  text-align: right;
  margin-top: 8rem;
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.main {
  background-color: #F7F7F7;
  height: 100vh;
}

.bg-gray {
  background-color: #F7F7F7;
}

/*===========
main contents
=============*/
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-direction-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col-01 {
  width: 100%;
}

.col-02 {
  width: 48%;
  margin-bottom: 3rem;
}

.col-03 {
  width: 31%;
}

.col-04 {
  width: 23%;
}

.login {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.w1000.flex {
  background-color: #fff;
  margin-top: 7%;
  padding: 4rem 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login h2, .login h3 {
  font-size: 2.4rem;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.header {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumbs {
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

.breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs li {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
  color: #444;
  position: relative;
  margin-right: 10px;
}

.breadcrumbs li:after {
  display: block;
  content: '';
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 1px solid #574B9C;
  border-right: 1px solid #574B9C;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s 
 ease-in-out;
  transition: all .3s 
 ease-in-out;
}

.breadcrumbs li:last-child:after {
  content: none;
}

.facility-login-left {
  width: 45%;
}

.facility-login-right {
  width: 45%;
}

/* フォーム */
.facility-login-form {
  max-width: 340px;
}

.facility-login-row {
  margin-bottom: 18px;
}

.facility-login-row label {
  display: block;
  margin-bottom: 6px;
}

/* 入力欄（丸いボックス） */
.facility-login-row input[type="text"],
.facility-login-row input[type="password"] {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* チェックボックス */
.remember-row label {
  font-size: 1.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

/* ログインボタン */
.facility-login-btn {
  width: 180px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #11a37f;
  /* 緑系。テーマカラーに合わせて変更可 */
  color: #ffffff;
  cursor: pointer;
}

.facility-login-btn:hover {
  opacity: 0.9;
}

/* 右側の説明 */
.facility-login-note-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.facility-login-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-login-note-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 15px;
}

/* チェックマーク風 */
.facility-login-note-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
}

/* フッター */
.login-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  padding: 16px 8px 24px;
}

.bg-green {
  color: #fff;
  background-color: #117a62;
}

footer {
  text-align: center;
}

.new-article-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 10px;
}

.new-article-btn a {
  font-size: 14px;
  color: #fff;
  background-color: #023893;
  padding: 1.2rem 4.5rem;
  border-radius: 999px;
  position: relative;
}

.new-article-btn a svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.new-article-btn a:hover {
  opacity: 0.8;
}

.new-article-btn a.primary-button {
  background-color: #117a62;
  justify-content: center; 
}

.article-card {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 24px 32px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ヘッダー部分 */
.article-header {
  border-bottom: 1px solid #edf1f4;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.article-meta-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* NEWバッジなどは一覧のクラスを再利用 */
/* タイトル */
.article-title {
  color: #207161;
  font-size: 2.2rem;
  line-height: 1.6;
  margin: 4px 0 12px;
}

/* タグ的なラベル */
.article-meta-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.article-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2f5f0;
  color: #116a60;
  font-size: 0.75rem;
}

/* ========= 本文セクション ========= */
.article-section {
  margin-bottom: 24px;
}

.article-section p {
  margin-bottom: 14px;
  padding-left: 12px;
}

.article-section table {
  margin-top: 30px;
}

/* 緑背景のセクション */
.article-section--primary {
  background: #0f7a63;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
}

.article-section--primary p {
  color: #ffffff;
}

/* セクション見出し */
.article-section h2 {
  font-size: 2rem;
  color: #fff;
  background-color: #207161;
  margin-bottom: 20px;
  padding: 1rem 2rem;
  border-radius: 6px;
  margin-top: 30px;
}

.article-section h3 {
  color: #207161;
  font-size: 1.8rem;
  margin-top: 30px;
  border-bottom: 1px solid #EEEEEE;
  margin-left: 10px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.article-section-title--primary {
  border-left-color: #ffffff;
}

/* 箇条書き */
.article-section ul {
  list-style: disc;
  margin-top: 2rem;
  padding-left: 3.2rem;
}

.article-section ul li {
  margin-bottom: 4px;
}

.article-attachments-list {
  list-style: none !important;
  padding-left: 1rem !important;
}

.article-attachments-list li a {
  color: #023893;
  text-decoration: underline;
}

/* ========= 開催情報テーブル ========= */
.article-section table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 10px;
}

.article-section th,
.article-section td {
  border: 1px solid #dfe6eb;
  padding: 8px 10px;
}

.article-section th {
  width: 120px;
  font-weight: 400;
}

.no-posts {
  margin-top: 20px;
}

.header-private nav ul li.author-name {
	color: #fff !important;
	font-size: 14px;
	border-left: 0;
}

/* レスポンシブ（スマホ用） */
@media (max-width: 750px) {
  .main {
    height: auto;
  }
  .facility-login-inner {
    padding: 24px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .facility-login-form {
    max-width: 100%;
  }
  .login-header-inner,
  .login-breadcrumb {
    padding-inline: 12px;
  }
  .login-main {
    padding-inline: 12px;
  }
  .login {
    padding: 0 2rem;
  }
  .facility-login-left,
  .facility-login-right {
    width: 100%;
  }
  .facility-login-left {
    margin-bottom: 6rem;
  }
  .w1000.flex {
    padding: 3rem 1.5rem;
  }
  .article-card {
    padding: 24px 14px 32px;
  }
}

.community-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 左カラム */
.community-sidebar {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 右カラム */
.community-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

/* サイドバー共通カード */
.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 20px 18px;
  margin-bottom: 16px;
}

/* 検索ボックス */
.sidebar-search-input {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #d3d9df;
  padding: 0 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* サイドバー見出し */
.sidebar-title {
  font-size: 1.8rem;
  margin-bottom: 22px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 1rem;
}

/* サイドバーリスト */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li + li {
  margin-top: 8px;
}

.sidebar-list a {
  text-decoration: none;
  color: #116a60;
}

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

/* 左側のアイコン付きリスト（▶ の丸アイコンっぽく） */
.icon-list li {
  position: relative;
  padding-left: 18px;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #11a37f;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 右側のカード共通 */
.section-card {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 0 0 20px;
}

/* カードヘッダー */
.section-card-header {
  background: #e4f4f0;
  border-radius: 16px 16px 0 0;
  padding: 14px 24px;
}

.section-card-header-sub {
  background: #f0faf8;
}

.section-card-title {
  font-size: 1.8rem;
}

/* カード内本文 */
.section-subheading {
  padding: 12px 24px 0;
  color: #8E8E8E;
}

/* ニュースリスト */
.news-list {
  padding: 4px 24px 8px;
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid #edf1f4;
}

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

/* メタ情報行 */
.news-meta {
  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;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 14px;
}

/* NEWバッジ */
.news-badge-new {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff6b6b;
  color: #ffffff;
  font-size: 1.2rem;
}

.badge-warning {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #003277;
  color: #ffffff;
  font-size: 1.2rem;
}

/* 日付 */
.news-date {
  margin-right: 2rem;
}

/* タグピル */
.news-tag {
  display: inline-block;
  padding: 2px 22px;
  border-radius: 999px;
  color: #0c8a6b;
  border: 1px solid #0c8a6b;
  font-size: 1.2rem;
}

/* 投稿者など */
.news-category {
  color: #888;
}

/* タイトルリンク */
.news-title {
  display: block;
  color: #333;
  text-decoration: none;
  padding-right: 16px;
}

.news-title:hover {
  text-decoration: underline;
}

/* カードフッターのボタン */
.section-card-footer {
  padding: 35px 24px 4px;
  text-align: center;
}

.primary-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 220px;
  padding: 10px 32px;
  border-radius: 999px;
  background: #117a62;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.8rem;
}

.primary-button:hover {
  opacity: 0.8;
  color: #ffffff;
}

/* テキストは中央寄せ */
.primary-button__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

/* 矢印コンテナ */
.primary-button__arrow {
  position: relative;
  width: 26px;
  /* 横幅調整 */
  height: 12px;
  /* 縦幅調整 */
}

/* 横線部分 */
.primary-button__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  /* 先端少し余白 */
  top: 50%;
  height: 2px;
  /* 線の太さ */
  background: #ffffff;
  /* 線の色 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 先端の折れた部分 */
.primary-button__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  /* 先端の長さ */
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* アウトラインボタン用（色だけ変更） */
.primary-button--outline {
  background: #ffffff;
  color: #117a62;
  border: 1px solid #117a62;
}

.primary-button--outline .primary-button__arrow::before,
.primary-button--outline .primary-button__arrow::after {
  background: none;
  border-color: #117a62;
}

.primary-button--outline .primary-button__arrow::before {
  background: #117a62;
}

.org-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  padding: 24px 24px 10px 13px;
}

/* タブボタン */
.org-tab {
  font-size: 1.8rem;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  outline: none;
  color: #8E8E8E;
}

.org-tab.is-active {
  color: #116a60;
}

.header-private {
  padding: 0;
  background-color: #207161;
  border-bottom: 0;
}

.header .header-container {
  max-width: 100%;
  padding: 0;
}

.header-private .logo {
  display: inline-block;
  background-color: #fff;
  padding: 1rem 2rem;
}

.header-private .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-private nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.header-private nav ul li {
  padding: 0 2rem;
  border-left: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-private nav ul li a {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.header-private nav ul li svg {
  height: 30px;
}

/* =========================================
  Form (c-*)
========================================= */
.new-post-card h1 {
  color: #023893;
}

/* 親コンテナ */
.new-post-area {
  background: #fff;
  border: 1px solid #e2e7e5;
  border-radius: 12px;
  padding: 24px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

/* フォームタイトル */
.c-form__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2a27;
}

/* 各フィールドブロック */
.c-field {
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.c-label {
  display: block;
  font-weight: 700;
  color: #1c2a27;
  margin-bottom: 8px;
}

.c-req {
  display: inline-block;
  margin-left: 8px;
  background: #e2583e;
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* テキスト入力・テキストエリア・セレクト */
.c-input,
.c-textarea,
.c-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #e2e7e5;
  border-radius: 8px;
  background: #fff;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-input:focus,
.c-textarea:focus,
.c-select:focus {
  border-color: #0b6b57;
  -webkit-box-shadow: 0 0 0 3px rgba(11, 107, 87, 0.1);
          box-shadow: 0 0 0 3px rgba(11, 107, 87, 0.1);
}

.c-textarea {
  min-height: 160px;
  line-height: 1.7;
  resize: vertical;
}

/* セレクトボックス */
.c-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 24px) 18px, calc(100% - 18px) 18px, 100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

/* チップ（タグ選択） */
.c-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.c-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-chip:hover {
  background: #e7f2ef;
}

.c-chip input {
  accent-color: #023893;
}

/* ラジオボタン（ステータス） */
.c-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.c-radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
}

.c-radio input {
  accent-color: #023893;
}

/* 掲載期間 */
.c-dates {
  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;
  gap: 8px;
}

.c-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.c-inline__label {
  font-size: 14px;
  color: #6f7c79;
  width: 80px;
}

.c-inline__sep {
  color: #6f7c79;
}

.c-help {
  margin-top: 4px;
  font-size: 13px;
  color: #6f7c79;
}

/* スイッチ（一般公開） */
.c-switch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.c-switch input {
  display: none;
}

.c-switch__slider {
  position: relative;
  width: 46px;
  height: 26px;
  background: #dfe7e5;
  border-radius: 999px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-switch__slider::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.c-switch input:checked + .c-switch__slider {
  background: #023893;
}

.c-switch input:checked + .c-switch__slider::after {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.c-switch__label {
  font-weight: 600;
  color: #1c2a27;
}

/* 添付ファイル */
#attachments {
  padding: 10px;
  border: 1px solid #e2e7e5;
  border-radius: 8px;
  background: #fff;
}

#attachments:focus {
  border-color: #0b6b57;
  -webkit-box-shadow: 0 0 0 3px rgba(11, 107, 87, 0.1);
          box-shadow: 0 0 0 3px rgba(11, 107, 87, 0.1);
}

/* ボタン */
.c-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #e2e7e5;
  background: #fff;
  color: #1c2a27;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.c-btn--primary {
  background: #023893;
  color: #fff;
  border-color: transparent;
}

.c-btn--primary:hover {
  background: #094f40;
}

.c-btn--ghost {
  background: #eeeeee;
}

/* アラートメッセージ */
.c-alert {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}

[hidden].c-alert {
  display: none !important;
}

.c-alert--success {
  background: #ecf8f2;
  color: #1b8f5a;
  border: 1px solid #cfeadb;
}

.c-alert--error {
  background: #fdecea;
  color: #c62828;
  border: 1px solid #f6c8c3;
}

/* レスポンシブ */
@media (max-width: 750px) {
  .community-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .community-sidebar {
    width: 100%;
  }
  .community-sidebar {
    order: 2;
  }
}

/* セクション全体 */
.article-section.article-comments {
  margin-top: 40px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
}

/* タイトル */
.article-comments-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  border-left: 4px solid #005bac;
  padding-left: 10px;
}

/* コメントリスト */
.comment-list {
  display: flex;
  flex-direction: column;
}

/* 各コメントブロック */
.comment-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f8f8f8;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
}

/* 左側（名前 + 本文） */
.comment-main {
  flex: 1;
  margin-right: 10px;
}

/* 投稿者名 */
.comment-author {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
}

/* コメント本文 */
.comment-body {
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line; /* 改行をそのまま表示 */
}

/* 右側（日時 + ボタン） */
.comment-side {
  text-align: right;
  min-width: 110px;
}

/* 日付 */
.comment-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

/* コメントするボタン */
.comment-button {
  display: inline-block;
  background: #005bac;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.comment-button:hover {
  opacity: 0.8;
}

.comment-delete-button {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid #aaa;
  text-decoration: none;
  color: #fff;
  background: #333333;
}

.comment-delete-button:hover {
  opacity: 0.8;
}

/* ==== コメントフォーム ==== */

#comment-form {
  margin-top: 30px;
}

#reply-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* テキストエリア */
.comment-form-comment textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: vertical;
}

/* 送信ボタン */
.comment-submit-button {
  margin-top: 15px;
  background: #005bac;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.comment-submit-button:hover {
  opacity: 0.85;
}

/* コメントフォームの不要な説明消す */
.comment-form p.logged-in-as,
.comment-form p.comment-notes {
  display: none;
}

.community-delete-form {
  margin-top: 8px;
  text-align: right;
}

.community-delete-button {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #c0392b;
  background: #fff;
  color: #c0392b;
  cursor: pointer;
}

.community-delete-button:hover {
  background: #c0392b;
  color: #fff;
}

/* スマホ対応 */
@media (max-width: 750px) {
  .comment-item {
    flex-direction: column;
    gap: 12px;
  }

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

  .comment-button {
    margin-top: 5px;
  }
  .header-private nav ul li a span {
    display: none;
  }
  .new-article-btn {
    flex-direction: column;
  }
}

/* 規約全体のブロック */
.post-terms-wrapper {
  margin-top: 24px;
}

/* 見出し */
.post-terms-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* 外枠（グレーのボックス） */
.post-terms-box {
  background: #f8f8f8;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 12px 14px;
}

/* スクロール領域 */
.post-terms-scroll {
  max-height: 160px;       /* 画像に近い高さ */
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.7;
  color: #333333;
}

/* 中の段落 */
.post-terms-scroll p {
  margin: 0 0 8px;
}

/* 箇条書き */
.post-terms-scroll ul {
  margin: 0 0 8px 18px;
  padding: 0;
}

.post-terms-scroll li {
  margin-bottom: 4px;
}

/* 最後の文を少し余白 */
.post-terms-end {
  margin-top: 10px;
}

/* 同意チェック（使う場合） */
.post-terms-agree {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
}

.post-terms-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* ===== ページネーション全体 ===== */
.pagination-nav {
  margin-top: 32px;
  text-align: center;
}

/* ul.page-numbers を横並び＆中央寄せ */
.pagination-nav .page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 各 li のリセット */
.pagination-nav .page-numbers li {
  margin: 0;
}

/* 通常のページ番号リンク */
.pagination-nav .page-numbers a.page-numbers,
.pagination-nav .page-numbers span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 18px;           /* pill風 */
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* ホバー時（リンクのみ） */
.pagination-nav .page-numbers a.page-numbers:hover {
  border-color: #0073aa;         /* お好みでテーマカラーに */
  background-color: #0073aa;
  color: #fff;
}

/* 現在のページ */
.pagination-nav .page-numbers .current {
  border-color: #0073aa;
  background-color: #0073aa;
  color: #fff;
  cursor: default;
}

/* 「前へ」「次へ」 */
.pagination-nav .page-numbers .prev,
.pagination-nav .page-numbers .next {
  padding: 0 14px;
}

/* 省略の「…」部分 */
.pagination-nav .page-numbers .dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* スマホで少し余白を増やすイメージ */
@media (max-width: 600px) {
  .pagination-nav {
    margin-top: 24px;
  }

  .pagination-nav .page-numbers {
    gap: 6px;
  }

  .pagination-nav .page-numbers a.page-numbers,
  .pagination-nav .page-numbers span.page-numbers {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
/*# sourceMappingURL=style.css.map */