@charset "UTF-8";
/*
Theme Name: Emanon Pro child
Theme URI: https://wp-emanon.jp
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Pro の子テーマです。
Template: emanon-pro
Version: 1.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options

Emanon Pro 子テーマ用のスタイルを以下に記述 
カスタマイズ機能のCSS圧縮をオンにしている場合、オフに切り替えてからスタイルを追加し、その後、再度CSS圧縮を
オンにしてください。
*/
/* Contact Form 7 カスタムスタイル */
.cf7-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.cf7-form-wrapper .form-field {
    margin-bottom: 25px;
}

.cf7-form-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #4A4A4A;
}

.cf7-form-wrapper .required {
    display: inline-block;
    background-color: #C62828;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

.cf7-form-wrapper .optional {
    display: inline-block;
    background-color: #6B6B6B;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper textarea,
.cf7-form-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E8E4DE;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cf7-form-wrapper input[type="text"]:focus,
.cf7-form-wrapper input[type="email"]:focus,
.cf7-form-wrapper textarea:focus,
.cf7-form-wrapper select:focus {
    outline: none;
    border-color: #8B7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.cf7-form-wrapper textarea {
    min-height: 200px;
    resize: vertical;
}

.cf7-form-wrapper .form-note {
    display: block;
    font-size: 0.85rem;
    color: #6B6B6B;
    margin-top: 5px;
}

.cf7-form-wrapper .privacy-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background-color: #F9F7F4;
    border-radius: 5px;
}

.cf7-form-wrapper .privacy-agreement a {
    color: #8B7355;
}

.cf7-form-wrapper .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background-color: #8B7355;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cf7-form-wrapper .wpcf7-submit:hover {
    background-color: #6B5344;
}

.cf7-form-wrapper .wpcf7-spinner {
    margin-left: 10px;
}

.cf7-form-wrapper .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
}

.cf7-form-wrapper .wpcf7-mail-sent-ok {
    background-color: #E8F5E9;
    border-color: #4CAF50;
}

.cf7-form-wrapper .wpcf7-validation-errors {
    background-color: #FFEBEE;
    border-color: #F44336;
}
/* FAQ セクション */
.faq-item {
  background-color: #faf8f5;
  border-left: 4px solid #8b7355;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.faq-item h4 {
  color: #5a4a3a;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  padding-left: 0.5rem;
  border-bottom: 1px dashed #d4c4b0;
  padding-bottom: 0.5rem;
}

.faq-item p {
  margin: 0.8rem 0;
  line-height: 1.8;
  color: #333;
}

.faq-item ul {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
}

.faq-item li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #444;
}

.faq-item strong {
  color: #6b5344;
}

/* Q: マーカー用（オプション） */
.faq-item h4::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #8b7355;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ========================================
   記事本文 リスト（ul / li）
   ※ 目次（.toc-box）、アーカイブ（.archive-list, .post-meta）には影響しない
   ======================================== */

article:not(.archive-list) ul:not(.toc-box ul):not(.contents-outline__ol):not(.post-meta),
.article-content ul:not(.toc-box ul):not(.contents-outline__ol):not(.post-meta) {
  margin: 1.2rem 0;
  padding-left: 0;
  list-style: none;
}

article:not(.archive-list) li:not(.toc-box li):not(.contents-outline__item):not(.post-meta__item),
.article-content li:not(.toc-box li):not(.contents-outline__item):not(.post-meta__item) {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
  color: #333;
}

article:not(.archive-list) li:not(.toc-box li):not(.contents-outline__item):not(.post-meta__item)::before,
.article-content li:not(.toc-box li):not(.contents-outline__item):not(.post-meta__item)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background-color: #8b7355;
  border-radius: 50%;
}

/* ネストしたリスト */
article:not(.archive-list) ul ul:not(.toc-box ul ul),
.article-content ul ul:not(.toc-box ul ul) {
  margin: 0.5rem 0;
}

article:not(.archive-list) ul ul li:not(.toc-box li)::before,
.article-content ul ul li:not(.toc-box li)::before {
  background-color: transparent;
  border: 2px solid #8b7355;
  width: 6px;
  height: 6px;
}

/* 順序付きリスト（ol） */
article:not(.archive-list) ol:not(.toc-box ol):not(.contents-outline__ol),
.article-content ol:not(.toc-box ol):not(.contents-outline__ol) {
  margin: 1.2rem 0;
  padding-left: 1.5rem;
  counter-reset: list-counter;
  list-style: none;
}

article:not(.archive-list) ol:not(.toc-box ol):not(.contents-outline__ol) li:not(.contents-outline__item),
.article-content ol:not(.toc-box ol):not(.contents-outline__ol) li:not(.contents-outline__item) {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
  color: #333;
  counter-increment: list-counter;
}

article:not(.archive-list) ol:not(.toc-box ol):not(.contents-outline__ol) li:not(.contents-outline__item)::before,
.article-content ol:not(.toc-box ol):not(.contents-outline__ol) li:not(.contents-outline__item)::before {
  content: counter(list-counter);
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #8b7355;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
}

/* ========================================
   警告・注意ボックス（warning-box）
   ======================================== */

.warning-box {
  background-color: #fff9e6;
  border: 1px solid #e6c84a;
  border-left: 4px solid #d4a017;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.warning-box h4 {
  color: #8b6914;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
}

.warning-box h4::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #d4a017;
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.warning-box p {
  margin: 0.5rem 0;
  line-height: 1.8;
  color: #5a4a2a;
}

.warning-box p:last-child {
  margin-bottom: 0;
}

.warning-box p:empty {
  display: none;
}

/* ========================================
   ポイントボックス（point-box）
   ======================================== */

.point-box {
  background-color: #f0f7f0;
  border: 1px solid #a8d4a8;
  border-left: 4px solid #5a9a5a;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.point-box h4 {
  color: #3d6b3d;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
}

.point-box h4::before {
  content: "\2714";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #5a9a5a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.point-box p {
  margin: 0.5rem 0;
  line-height: 1.8;
  color: #3a4a3a;
}

.point-box p:last-child {
  margin-bottom: 0;
}

.point-box p:empty {
  display: none;
}

.point-box ul {
  margin: 0.8rem 0;
  padding-left: 0;
  list-style: none;
}

.point-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
  color: #3a4a3a;
}

.point-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background-color: #5a9a5a;
  border-radius: 50%;
}

.point-box strong {
  color: #2d5a2d;
}

/* ========================================
   まとめボックス（summary-box）
   ======================================== */

.summary-box {
  background-color: #f5f5f5;
  border: 2px solid #8b7355;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.summary-box h2 {
  color: #5a4a3a;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #8b7355;
  text-align: center;
}

.summary-box h4 {
  color: #6b5344;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 1.2rem 0 0.8rem 0;
}

.summary-box p {
  margin: 0.8rem 0;
  line-height: 1.8;
  color: #333;
}

.summary-box p:last-child {
  margin-bottom: 0;
}

.summary-box p:empty {
  display: none;
}

.summary-box ul {
  margin: 0.8rem 0;
  padding-left: 0;
  list-style: none;
  background-color: #fff;
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 6px;
}

.summary-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
  color: #444;
}

.summary-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b7355;
  font-weight: bold;
}

.summary-box li:last-child {
  margin-bottom: 0;
}

/* ========================================
   ハイライトボックス（highlight-box）
   ======================================== */

.highlight-box {
  background-color: #f8f6f2;
  border: 1px solid #d4c4b0;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.highlight-box h4 {
  color: #5a4a3a;
  font-size: 1.05rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed #c4b4a0;
}

.highlight-box h4:not(:first-child) {
  margin-top: 1.2rem;
}

.highlight-box p {
  margin: 0.5rem 0;
  line-height: 1.8;
  color: #444;
}

.highlight-box p:empty {
  display: none;
}

.highlight-box ul {
  margin: 0.5rem 0;
  padding-left: 0;
  list-style: none;
}

.highlight-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  line-height: 1.7;
  color: #444;
}

.highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background-color: #8b7355;
  border-radius: 50%;
}