@charset "UTF-8";
/* =========================================================
   コンテンツページ用 共通スタイル（記事本文）
   既存ページの <h1>〜<p> などを .ozk-content の中に
   そのまま貼り付けるだけで、サイトのデザインに揃います。

   ★この版は色を直接指定しているため style-2.css の変数に
     依存しません。旧 style.css が残っていても本文が崩れないよう
     主要な競合を上書きしています。
     （※ナビ・フッター・ピンクバナーは style-2.css が必要です）
   ========================================================= */

body { background: #fff; }


/* strongの要素の太字を解除 */
strong{
  font-weight: normal !important;
}


.ozk-content {
  max-width: 820px;
  margin: 0 auto;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.95;
  background-color: #fff;
}

/* ---- 見出し ---- */
.ozk-content h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.55;
  color: #0a0a0a;
  background: none;
  margin: 0 0 32px;
  padding: 0 0 20px;
  border-bottom: 2px solid #de3187;
  border-radius: 0;
}
.ozk-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 64px 0 24px;
  padding: 16px 20px;
  background: #f3f4f6;
  border-left: 4px solid #de3187;
  border-radius: 0;
}
.ozk-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 48px 0 18px;
  padding: 0 0 10px;
  background: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
}
.ozk-content h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #de3187;
  margin: 36px 0 14px;
  padding: 0;
  background: none;
  border-radius: 0;
}

/* ---- 本文 ---- */
.ozk-content p {
  font-size: 0.92rem;
  line-height: 1.95;
  margin: 0 0 0.8em;
  padding: 0;
  color: #333;
}

/* ---- リンク ---- */
.ozk-content a {
  color: #de3187;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.ozk-content a:hover { color: #de3187; opacity: 0.65; }

/* ---- 強調（旧cssの font-weight:normal!important を上書き） ---- */
.ozk-content strong { font-weight: 700 !important; color: #0a0a0a; }

/* ---- 画像（<p>で囲まれていても中央寄せ・はみ出し防止） ---- */
.ozk-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px auto;
  float: none;
}

/* ---- YouTube等の埋め込み（レスポンシブ） ---- */
.ozk-content iframe {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 0;
}

/* ---- 箇条書き（旧cssの li{margin-left:30px} を上書き） ---- */
.ozk-content ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.ozk-content ul li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 22px;
  font-size: 0.9rem;
  line-height: 1.8;
  border-bottom: 1px solid #f0f0f0;
}
.ozk-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 18px;
  width: 6px; height: 6px;
  background: #de3187;
  border-radius: 50%;
}

/* ---- 定義リスト（6つの必須要素など） ---- */
.ozk-content dl { margin: 28px 0; }
.ozk-content dt {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fce7f3;
}
.ozk-content dd {
  margin: 10px 0 0;
  padding-left: 4px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
}





/* ---- スマホ ---- */
@media (max-width: 900px) {
  .ozk-content h2 { margin-top: 48px; }
  .ozk-content h3 { margin-top: 36px; }
}




/*下のボタン*/
 div.sg-float-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3) !important;
    box-sizing: border-box !important;
}
 
div.sg-float-bar a.sg-float-btn {
    flex: 1 1 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 4px !important;
    margin: 0 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
    gap: 5px !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    border-right: 1px solid rgba(255,255,255,0.12) !important;
}
 
div.sg-float-bar a.sg-float-btn:last-child {
    border-right: none !important;
}
 
/* LINE：緑 */
div.sg-float-bar a.sg-float-btn--line {
    background: #06C755 !important;
    color: #fff !important;
}
 
/* 体験：チャコール */
div.sg-float-bar a.sg-float-btn--trial {
    background: #2a2a2a !important;
    color: #fff !important;
}
 
/* 問い合わせ：ダークグレー */
div.sg-float-bar a.sg-float-btn--contact {
    background: #3a3a3a !important;
    color: #fff !important;
}
 
div.sg-float-bar a.sg-float-btn:hover {
    background: #de3187 !important;
    color: #fff !important;
    text-decoration: none !important;
}
 
div.sg-float-bar .sg-float-icon {
    display: block !important;
    font-size: 1.3rem !important;
    line-height: 1 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
 
div.sg-float-bar .sg-float-text {
    display: block !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    text-align: center !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.03em !important;
}
 
div.sg-float-bar .sg-line-logo {
    width: 22px !important;
    height: 22px !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
    margin: 0 auto !important;
}
 
@media screen and (max-width: 550px) {
    div.sg-float-bar a.sg-float-btn {
        min-height: 58px !important;
        padding: 10px 2px !important;
    }
    div.sg-float-bar .sg-float-text {
        font-size: 1.1rem !important;
    }
}





/* モバイル対応：縦並びにした時も余白を維持 */
@media (max-width: 768px) {
    .occ-grid {
        flex-direction: column;
        gap: 20px;
    }
    .occ-card {
        padding: 30px 20px;
    }
}

