@charset "UTF-8";
:root {
  --text-dark: #4d4d4d;
  --text-gray: #555;
  --text-light: #666;
  --accent-orange: #F5AF7D;
  --hover-orange: #FF8000;
  --link-blue: #389EF2;
  --link-dark-blue: #1a0dab;
  --error-red: #cc0000;
  --border-light: #ddd;
}

/* 投稿メタ情報など非表示 */
.single .entry-meta,
.single .post-meta,
.single .author-info,
.single .entry-footer,
.single .posted-on,
.single .byline,
.single .cat-links,
.single .tags-links,
.single .post-navigation,
.single .adjacent-posts,
.single #comments {
  display: none !important;
}

/* ナビゲーション（前後記事）非表示 */
.nav-links {
  display: none !important;
}

/* ページネーション前後余白リセット */
.ast-pagination {
  margin: 40px 0;
}

/* Pace.js（画面遷移） */
body:not(.pace-done) {
  opacity: 0;
}

body.pace-done {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.pace .pace-progress {
  background: #385185 !important;
  height: 3px !important;
}

/* SP改行制御 */
br.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp-only {
    display: inline;
  }
}
/* FAQ詳細タイトル */
.single-faq .entry-title {
  font-size: 1.4em !important;
  color: #4d4d4d !important;
  font-weight: bold !important;
  border-bottom: 2px solid #4d4d4d;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 404ページ */
.error-404 {
  text-align: center;
  padding: 60px 20px;
}

.error-404 .page-title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.error-404 .back-home-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F5AF7D;
  color: #4d4d4d;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.error-404 .back-home-btn:hover {
  background-color: #FF8000;
  transform: translateY(-2px);
}

/* 共通本文余白調整（安全範囲のみ） */
.entry-content {
  line-height: 1.8;
}

/* スマホ余白（※ site-mainは触らない） */
@media screen and (max-width: 768px) {
  .error-404 {
    padding: 40px 16px;
  }
}
/* メインコンテンツ最大幅制御（安全版） */
.ast-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* コンテンツエリア余白調整 */
.content-area {
  padding-top: 20px;
}

/* ページネーション余白 */
.ast-pagination {
  margin: 40px 0;
}

/* ページタイトル下余白 */
.entry-header {
  margin-bottom: 20px;
}

/* 記事本文余白 */
.entry-content {
  margin-bottom: 40px;
}

/* スマホ調整（container触らない） */
@media screen and (max-width: 768px) {
  .content-area {
    padding-top: 10px;
  }
}
/* ==============================================
   Footer
============================================== */
.my-custom-footer {
  padding: 60px 20px;
  font-size: 14px;
  color: #4d4d4d;
}

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

.my-footer-divider {
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

/* ——— 上段——— */
.my-footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.my-footer-logo img {
  display: block;
  max-width: 300px;
  height: auto;
}

/* ナビ */
.my-footer-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.my-footer-nav a {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.my-footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.my-footer-nav a:hover {
  color: #FF8000;
}
.my-footer-nav a:hover::after {
  width: 100%;
}

/* ——— 下段 ——— */
.my-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #666;
}

/* 規約リンク */
.my-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-legal-links a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.my-legal-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.my-legal-links a:hover {
  color: #FF8000;
}
.my-legal-links a:hover::after {
  width: 100%;
}

/* コピーライト */
.my-copyright {
  color: #666;
}

/* ==============================
   Responsive（768px 以下）
============================== */
@media screen and (max-width: 768px) {
  .my-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .my-footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .my-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .my-legal-links {
    flex-direction: column;
    gap: 8px;
  }
  .my-footer-logo img {
    max-width: 150px;
  }
}
/* 共通ボタン */
.btn,
.button,
.notice-back-btn,
.notice-more-btn,
.back-home-btn,
.wp-block-button__link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #FF8000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--hover-orange) !important;
  box-sizing: border-box;
  cursor: pointer;
}

.post-back-button-container {
  display: block;
  width: 100%;
  margin-top: 50px !important;
  margin-bottom: 20px;
  text-align: center;
  clear: both;
}

.post-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-weight: bold;
  background-color: #4d4d4d;
  color: #fff !important;
  width: 100px;
  height: 50px;
  border-radius: 50px;
  margin: 0 auto;
}

/*もっと見るボタン個別設定*/
.notice-buttons {
  display: flex;
  justify-content: center;
}

.btn:hover,
.button:hover,
.notice-back-btn:hover,
.post-back-button:hover,
.notice-more-btn:hover,
.back-home-btn:hover,
.wp-block-button__link:hover {
  background-color: #fff !important;
  color: var(--hover-orange) !important;
  border-color: var(--hover-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-back-button:hover {
  background-color: #FF8000 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ページネーション */
.pagination {
  margin-top: 60px;
  text-align: center; /* 横方向に中心配置 */
}

.pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 50px;
  background: #f3f3f3;
  color: #4d4d4d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background: #4d4d4d;
}

.page-numbers.current {
  background: var(--text-dark) !important;
  color: #fff;
}

.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 50px;
  background: #f3f3f3;
  color: #4d4d4d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background: #ddd;
}

.page-numbers.current {
  background: #4d4d4d !important;
  color: #fff;
}

/* 検索ボタン */
.search-submit {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #FF8000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--hover-orange) !important;
  box-sizing: border-box;
  cursor: pointer;
}

.search-submit:hover {
  background-color: #fff !important;
  color: var(--hover-orange) !important;
  border-color: var(--hover-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==============================
   ラッパー（カウンター管理）
============================== */
.faq-list-container,
.entry-content {
  counter-reset: faq-count;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* ==============================
   FAQ一覧（カードUI）
============================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* 質問 */
.faq-question {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4d4d4d;
}

/* 回答 */
.faq-answer {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 詳細リンク */
.faq-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #389EF2;
  transition: all 0.3s ease;
}
.faq-link:hover {
  color: #FF8000;
}

/* ==============================
   リスト形式（Q付き）
============================== */
.faq-list-item,
.faq-accordion-link {
  counter-increment: faq-count;
  display: block;
  position: relative;
  padding: 12px 20px 12px 4.5em;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}
.faq-list-item::before,
.faq-accordion-link::before {
  content: "Q" counter(faq-count) ".";
  position: absolute;
  left: 0.8em;
  top: 14px;
  color: #cc0000;
  font-weight: bold;
  font-size: 1.1rem;
}
.faq-list-item:hover,
.faq-accordion-link:hover {
  background-color: rgba(245, 175, 125, 0.08);
  transform: translateX(8px);
}
.faq-list-item .faq-title,
.faq-accordion-link .faq-title {
  color: #4d4d4d;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-list-item a,
.faq-accordion-link a {
  color: #4d4d4d;
}
.faq-list-item a:hover,
.faq-accordion-link a:hover {
  color: #FF8000;
}

/* ==============================
   アコーディオン（details）
============================== */
.details.faq-accordion {
  counter-increment: faq-count;
  margin: 0;
  border-bottom: 1px solid #ddd;
  transition: all 0.25s ease;
  /* 質問 */
}
.details.faq-accordion > summary {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px 20px 12px 4em;
  font-weight: bold;
  color: #4d4d4d;
  cursor: pointer;
  list-style: none;
}
.details.faq-accordion > summary::-webkit-details-marker {
  display: none;
}
.details.faq-accordion > summary::before {
  content: "Q" counter(faq-count) ".";
  position: absolute;
  left: 0.8em;
  top: 12px;
  color: #cc0000;
  font-weight: bold;
  font-size: 1.1rem;
}
.details.faq-accordion > summary {
  /* 開閉アイコン */
}
.details.faq-accordion > summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #999;
  transition: transform 0.4s ease;
}
.details.faq-accordion {
  /* 開いた時 */
}
.details.faq-accordion[open] > summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  color: #cc0000;
}
.details.faq-accordion {
  /* 回答 */
}
.details.faq-accordion > summary + * {
  margin-top: 8px;
  position: relative;
  padding: 0 20px 20px 4em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}
.details.faq-accordion > summary + *::before {
  content: "A" counter(faq-count) ".";
  position: absolute;
  left: 0.8em;
  top: 0;
  color: #1a0dab;
  font-weight: bold;
  font-size: 1.1rem;
}
.details.faq-accordion[open] > summary + * {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   その他
============================== */
.faq-title {
  line-height: 1.5;
  flex: 1;
}

.faq-tag-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 50px 0 20px;
  display: block;
}

/* FAQ詳細ページ */
.single-faq .entry-content {
  line-height: 1.9;
}

/* ==============================
   Responsive
============================== */
@media screen and (max-width: 768px) {
  .faq-item {
    padding: 16px;
  }
}
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */
.notice-item {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* タイトル */
.notice-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.notice-title a {
  text-decoration: none;
  color: #4d4d4d;
  transition: all 0.3s ease;
}

.notice-title a:hover {
  color: #FF8000;
}

/* 日付 */
.notice-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  min-width: 100px;
  flex-shrink: 0;
}

/* 抜粋 */
.notice-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.system-notice-title {
  font-size: 1.4em;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--text-dark);
}

.system-notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.system-notice-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.system-notice-item:hover {
  background-color: rgba(245, 175, 125, 0.05);
  transform: translateX(5px);
}

.notice-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 28px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 15px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.system-notice-item:hover .notice-label {
  transform: scale(1.05);
}

.label-release {
  background-color: #F0795A;
}

.label-bug {
  background-color: #004FA1;
}

.label-important {
  background-color: #E74C3C;
}

.label-other {
  background-color: #7F8C8D;
}

.notice-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  min-width: 100px;
  flex-shrink: 0;
}

.notice-title {
  color: var(--link-blue);
  text-decoration: none;
  flex: 1;
  transition: color 0.2s ease;
}

.notice-title:hover {
  color: var(--hover-orange);
  text-decoration: underline;
}

.hidden-item {
  display: none;
}

/* ==============================
   Responsive
============================== */
@media screen and (max-width: 768px) {
  .system-notice-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.search-page-container {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.search-form-wrapper {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: #fff;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-field {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.faq-search-wrapper {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  margin: 50px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-search-main {
  position: relative;
  display: flex;
  margin-bottom: 25px;
}
.faq-search-main .search-field {
  height: 56px;
  padding: 0 120px 0 54px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1.1rem;
  background-color: #f9f9f9;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff8000"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 22px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}
.faq-search-main .search-field:focus {
  outline: none;
  border-color: rgba(255, 128, 0, 0.5);
  background-color: #fff;
}
.faq-search-main .search-field::placeholder {
  color: #bbb;
  transition: opacity 0.3s ease;
}
.faq-search-main .search-field:focus::placeholder {
  opacity: 0;
  transform: translateX(10px);
}
.faq-search-main .search-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  padding: 0 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  border: 2px solid #FF8000;
  background-color: #FF8000;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-search-main .search-submit:hover {
  background-color: #fff;
  color: #FF8000;
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.faq-search-main .search-submit:active {
  transform: translateY(-50%) scale(0.95);
}

.faq-search-options {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.faq-search-options input {
  display: none;
}
.faq-search-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  color: #4d4d4d;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.faq-search-options label:hover {
  border-color: #FF8000;
}
.faq-search-options input:checked + label {
  background: #FF8000;
  border-color: #FF8000;
  color: #fff;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-results-item {
  width: 100%; /* 横幅をコンテナいっぱいに広げる */
  display: block; /* ブロック要素として占有 */
  min-height: 80px; /* 高さを少し低めに調整（お好みで70-90px程度） */
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease forwards;
  transition: transform 0.2s ease;
}
.search-results-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.search-item {
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light) !important;
}

.search-header-divider {
  height: 1px;
  background: #4d4d4d;
  margin: 15px 0 40px;
}

/* タイトル */
.search-results-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.search-results-title a {
  text-decoration: none;
  color: #389EF2;
}
.search-results-title a:hover {
  text-decoration: underline;
}

.search-page-title {
  margin-bottom: 20px;
  color: #4d4d4d !important;
}

/* 抜粋 */
.search-results-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ヒット強調 */
.search-highlight {
  background: #fff3cd;
  font-weight: bold;
}

/* ==============================
   Responsive
============================== */
@media screen and (max-width: 768px) {
  .search-form {
    flex-direction: column;
  }
  .search-page-container {
    padding: 0 16px;
  }
  .search-item-excerpt {
    font-size: 13px;
    line-height: 1.6;
    display: search-results-list -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
  }
  .site-main {
    max-width: 100%; /* モバイル画面では幅を100%に */
    padding: 10px; /* モバイル画面では余白を調整 */
  }
}/*# sourceMappingURL=style.css.map */