@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*ヘッダー非表示*/
.page .logo-header {
  display: none;
}

/* 上の白いヘッダーバーを非表示 */
.header-container,
#header-container,
.header,
.l-header-title,
#header {
  display: none !important;
}

/* 投稿日・更新日を非表示 */
.entry-meta,
.post-date,
.post-update {
  display: none !important;
}

/* LPページ全体を完全に全幅化 */
.page .entry-content {
  width: 100vw !important;      /* ブラウザ幅いっぱい */
  max-width: 100vw !important;  /* 最大幅を固定解除 */
  margin: 0 !important;         /* 中央寄せ解除 */
  padding: 0 !important;        /* 内側余白も削除 */
}

/* コンテンツラッパー（Cocoon特有のwrapなど）も全幅化 */
#main, .main, .wrap, .content, #content, #content-in {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-sizing: border-box;
}

/* サイドバーを完全非表示（LPに不要） */
#sidebar, .sidebar {
  display: none !important;
}

:root {
  --accent: #f15b2a;      /* バッジ＆矢印の色（橙） */
  --panel:  #f3f3f3;      /* 右側ボックスの背景 */
  --border: #e5e5e5;      /* 枠線色 */
  --text:   #111;
}

/* フッター全体を非表示 */
#footer, .footer, .site-footer {
  display: none !important;
}

/* -------------------------------------------------
   ①ファーストビュー(PC版)
------------------------------------------------- */
.lp-fv {
  padding: 80px 0;
  background-color: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}

  .sp-only {
    display: inline;
  }

.lp-fv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-fv-logo img {
  height: auto;
  margin-bottom: 40px;
  max-width: 1600px;
}
.PC{
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

/* 背景画像エリア */
.lp-fv-visual {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-image: url("https://shilo-whitening.com/wp-content/uploads/2025/11/ファーストビュー画像.png");
  background-size: cover;
  background-position: center;
}

/* 左側を薄くするオーバーレイ */
.lp-fv-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 35%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

/* オーバーレイ全体 */
.lp-fv-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

/* コンテンツ（左側に寄せて配置） */
.lp-fv-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 60%;
  color: #111;
}

/* タイトル */
.lp-fv-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #010066;
  font-weight: 800;
}

/* テキスト */
.lp-fv-copy {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
}

/* ボタン */
.lp-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
}

.lp-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* -------------------------------------------------
   ②ホワイトニングとは？(PC版)
------------------------------------------------- */
/* セクション全体 */
.lp-feature {
  background: #fafafa;
}

/* 内包コンテナ：常に90%幅で中央寄せ */
.lp-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================
   各特徴ブロック（カード風）
============================= */
.lp-feature-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  border: 1px solid #010066;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 60px;
}

  .lp-feature-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    background: #010066;
    color: #fff;
    text-align: center;
    border-radius: 30px;
  }

/* hover時の浮き上がりアニメーション */
.lp-feature-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* 2個目（reverse）だけ左右反転 */
.lp-feature-row.reverse {
  flex-direction: row-reverse;
}

/* =============================
   テキストエリア
============================= */
.lp-feature-text {
  flex: 1;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-feature-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.lp-feature-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-weight: 700;
}

/* =============================
   画像エリア
============================= */
.lp-feature-image {
  flex: 1;
  background: #fdfdfd;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lp-feature-image img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.lp-feature-image img:hover {
  transform: scale(1.03);
}

/* -------------------------------------------------
   ③アイコンで流れを説明(PC版)
------------------------------------------------- */
.lp-steps{
  background:#fff;
  padding:80px 0;
}
.lp-inner{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

/* 見出し */
.lp-steps-heading{
  text-align:center;
  font-size:36px;
  font-weight:800;
  letter-spacing:.06em;
  color:var(--text);
  margin:0 0 40px;
}
.lp-steps-heading::after{
  content:"";
  display:block;
  width:250px;height:3px;
  background:#000;
  margin:12px auto 0;
  border-radius:2px;
}

.lp-steps-number {
    font-size: 42px;
    color: #fff;
    color: #fff;
    font-weight: 800;
    background: #f15b2a;
    /* width: 60px; */
    display: inline-block;
    width: 80px;
    border-radius: 200px;
}

/* ============ 1ステップ ============ */
.lp-step{ margin-bottom:36px; }

.lp-step-row{
  display:grid;
  grid-template-columns:120px 1fr; /* 左バッジ / 右ボディ */
  align-items:stretch;
  gap:20px;
}

/* 左のSTEPバッジ */
.lp-step-badge{
  background:var(--accent);
  color:#fff;
  border-radius:4px;
  padding:16px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.lp-step-badge .step-label{
  font-size:20px;
  letter-spacing:.12em;
  opacity:.95;
  font-weight: 700;
}
.lp-step-badge .step-num{
  font-size:32px;
  font-weight:800;
  line-height:1;
  margin-top:6px;
}

/* 右の説明パネル（中を2カラム化） */
.lp-step-body{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:4px;
  padding:20px 24px;
  color:#333;
}

/* テキスト50%・画像50% */
.lp-step-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.lp-step-text{
  flex:0 0 50%;
  width:50%;
}
.lp-step-text{
  font-size:18px;
  font-weight:700;
  margin:0 0 8px;
  color:var(--text);
}
.lp-step-text {
  font-size:14px;
  line-height:1.9;
  margin:0;
  color:#333;
}

.lp-step-title{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #010066;
  font-weight: 800;
}

.lp-text{
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-weight: 700;			
}

.lp-step-image{
  flex:0 0 50%;
  width:50%;
  text-align:right;
}
.lp-step-image img{
  width:100%;
  height:auto;
  border-radius:6px;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  object-fit:cover;
}

/* 下向き矢印（区切り） */
.lp-step-arrow{
  width:0;height:0;
  margin:16px auto 0;
  border-left:26px solid transparent;
  border-right:26px solid transparent;
  border-top:30px solid var(--accent);
  opacity:.9;
}
/* 最後は矢印を非表示にする */
.lp-step:last-of-type .lp-step-arrow{ display:none; }

/* -------------------------------------------------
   ④歯科衛生士常駐の強み(PC版)
------------------------------------------------- */
.lp-hygienist {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.lp-hygienist-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #010066;
}

.lp-hygienist-lead {
  font-size: 24px;
  color: #333;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 60px;
}

.lp-hygienist-points {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.lp-hygienist-item {
  flex: 1;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 36px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.lp-hygienist-item:hover {
  transform: translateY(-4px);
}

.lp-hygienist-icon {
  width: 300px;
  height: 300px;
  margin: 0 auto 20px;
}

.lp-hygienist-title{
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  background: #010066;
  color: #fff;
  text-align: center;
  border-radius: 30px;	
}
.lp-hygienist-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-hygienist-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.lp-hygienist-item {
font-size: 18px;
    line-height: 1.8;
    text-align: left;
    font-weight: 600;
    color: #444;
}

/* -------------------------------------------------
   ⑤メニュー(PC版)
------------------------------------------------- */
.lp-menu {
  background: #fff;
  padding: 80px 0;
}

.lp-menu-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #010066;
  position: relative;
}

.lp-menu-heading::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: #010066;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ==============================
   単品メニュー（5つ縦並び）
============================== */
.lp-menu-single {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.lp-menu-single-block {
  background: #fafafa;
  border: 1px solid #010066;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  overflow: hidden;
}

/* 上段：タイトル＋価格を同じブロックで横並び */
.lp-menu-single-header {
  background: #010066;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.lp-menu-single-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.lp-menu-single-price {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* 下段：左テキスト＋右画像（50:50） */
.lp-menu-single-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 18px 20px;
}

.lp-menu-single-text {
  flex: 0 0 50%;
  width: 50%;
}

.lp-menu-single-desc {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

.lp-menu-single-image {
  flex: 0 0 50%;
  width: 50%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-menu-single-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* ==============================
   回数券＆サブスクブロック
============================== */
.lp-menu-block {
  background: #fafafa;
  border: 1px solid #010066;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 40px;
  overflow: hidden;
}

/* 上段：タイトル（フル幅） */
.lp-menu-block-title {
  background: #010066;
  padding: 14px 18px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

/* 下段：左テキスト＋右画像（50:50） */
.lp-menu-block-content {
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px 24px;
}

/* 左（説明＋メニューリスト） */
.lp-menu-block-left {
  flex: 0 0 50%;
}

.lp-menu-lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #ccc;
}

/* リスト */
.lp-menu-list {
  flex-direction: column;
  gap: 12px;
}

.lp-menu-item {
  padding-bottom: 12px;
  border-bottom: 1px dotted #ccc;
}

.lp-menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-menu-item-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  color: #f15b2a;
}

.lp-menu-name {
  font-size: 18px;
  font-weight: 600;
}

.lp-menu-price {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.lp-menu-item-desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #555;
}

/* 右（画像） */
.lp-menu-block-right {
  flex: 0 0 50%;
  width: 50%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-menu-block-right img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* -------------------------------------------------
   ⑥会社概要(PC版)
------------------------------------------------- */
.lp-company {
  background: #fff;
  padding: 80px 0;
}

.lp-company-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #010066;
    position: relative;
}

.lp-company-heading::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: #010066;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* カード全体 */
.lp-company-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #010066;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* 各行（ラベル＋値） */
.lp-company-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #e5e5e5;
}

.lp-company-row:last-child {
  border-bottom: none;
}

.lp-company-label {
  background: #010066;
  padding: 14px 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-right: 1px solid #e5e5e5;
  display: grid;
    place-items: center;
}

.lp-company-value {
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #333;
}

/* -------------------------------------------------
   ⑦お問い合わせ(PC版)
------------------------------------------------- */
.lp-contact-method {
  padding: 80px 0;
  background: #fff;
}

.lp-contact-method-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #010066;
    position: relative;
}

.lp-contact-method-heading::after {
    content: "";
    display: block;
    width: 200px;
    height: 3px;
    background: #010066;
    margin: 12px auto 0;
    border-radius: 2px;
}

.lp-contact-method-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==============================
   ① お問い合わせフォームブロック
============================== */

.contact-form-block {
  background: #fafafa;
  border: 3px solid #010066;
  border-radius: 12px;
  padding: 24px 22px 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #010066;
}

.contact-form-lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.contact-form-inner {
  /* CF7のフォームが中で100%使えるように */
}

.contact-form-inner form {
  width: 100%;
}

/* もし前に作った .cf7-whitening-form のCSSがあればそれが効きます */
/* ここでは追加のスタイルは省略 */


/* ==============================
   ② 電話ボックス（番号表示＋タップで発信）
============================== */

.tel-btn {
  background: #4ba3ff; /* 電話は青系で視認性UP */
  border-radius: 50px;
}

/* 電話アイコン（白抜きでCSS作成） */
.tel-icon {
  width: 26px;
  height: 26px;
  position: relative;
}

/* ==============================
   ③④ LINE & Instagram ボタン
============================== */

.sns-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.sns-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* LINEボタン（背景色はLINEカラー） */
.line-btn {
  background: #06C755;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.line-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ============================================
   CSSだけで作る「LINE公式風ロゴ」
============================================ */

.line-css-logo {
  width: 32px;
  height: 32px;
  background: #06C755;    /* 緑の背景 */
  border-radius: 8px;      /* 四隅を丸く */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 白い吹き出し（LINEの形状） */
.line-css-logo::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 40% 40% 35% 40%;
  transform: translateY(-2px);
}

/* 「LINE」テキスト（白吹き出しの上に乗せる） */
.line-css-logo::after {
  content: "LINE";
  position: absolute;
  font-size: 12px;
  font-weight: 800;
  color: #06C755;
}

/* Instagramボタン */
/* Instagramボタン本体 */
.insta-btn {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* CSSだけで作るInstagramアイコン */
.insta-css-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, #feda77, #dd2a7b, #8134af, #515bd4);
  position: relative;
}

.insta-css-logo2 {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, #feda77, #dd2a7b, #8134af, #515bd4);
    position: relative;
}

/* カメラ枠 */
.insta-css-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.insta-css-logo2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 6px;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}

/* レンズ丸＆右上の小丸をまとめて描くために追加要素をひとつ使う */
.insta-css-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.insta-css-logo2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

/* ==============================
   CF7フォームのデザイン
============================== */

.cf7-whitening-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf7-field label {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #010066;
}

.cf7-required {
  display: inline-block;
  margin-left: 6px;
  font-size: 18px;
  color: #c00;
}

/* 入力要素の共通スタイル */
.cf7-whitening-form input[type="text"],
.cf7-whitening-form input[type="email"],
.cf7-whitening-form input[type="tel"],
.cf7-whitening-form select,
.cf7-whitening-form textarea {
  width: 100%;
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}

.cf7-whitening-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cf7-whitening-form input[type="text"]:focus,
.cf7-whitening-form input[type="email"]:focus,
.cf7-whitening-form input[type="tel"]:focus,
.cf7-whitening-form select:focus,
.cf7-whitening-form textarea:focus {
  outline: none;
  border-color: #111;
}

/* プライバシーチェック */
.cf7-privacy-check label {
  font-weight: 400;
  font-size: 12.5px;
  color: #444;
}

/* 送信ボタン */
.cf7-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.cf7-submit-wrap input[type="submit"] {
  display: inline-block;
  padding: 25px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #010066;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.cf7-submit-wrap input[type="submit"]:hover {
  opacity: 0.9;
}

.cf7-submit-wrap input[type="submit"]:active {
  transform: translateY(1px);
}

/* -------------------------------------------------
   ⑩追従バナー(PC版)
------------------------------------------------- */
.lp-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 0 !important;
}

/* 各ボタン共通 */
.lp-fixed-item {
  flex: 1;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.lp-fixed-item:hover {
  opacity: 0.85;
}

/* アイコン共通 */
.lp-fixed-item .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  position: relative;
}

/* ラベル（テキスト） */
.lp-fixed-item span:last-child {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* 色設定（ベース背景） */
.lp-fixed-item.phone {
  background-color: #4b9ce2; /* 薄い青：電話 */
}

.lp-fixed-item.mail {
  background-color: #f8a5b5; /* 薄いピンク：メール */
}

.lp-fixed-item.line {
  background-color: #06c755; /* LINE公式カラー */
}

.lp-fixed-item.insta {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  ); /* Instagramグラデーション */
}

.line-css-logo2 {
  width: 32px;
  height: 32px;
  background: #06C755;    /* 緑の背景 */
  border-radius: 8px;      /* 四隅を丸く */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 9px;
}

/* 白い吹き出し（LINEの形状） */
.line-css-logo2::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 40% 40% 35% 40%;
  transform: translateY(2px);
}

/* 「LINE」テキスト（白吹き出しの上に乗せる） */
.line-css-logo2::after {
  content: "LINE";
  position: absolute;
  font-size: 12px;
  font-weight: 800;
  color: #06C755;
}

.insta-icon {
  position: relative;
  border-radius: 5px;
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.insta-icon::before {
  /* カメラ枠 */
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.insta-icon::after {
  /* レンズ＋右上の小さな丸（box-shadowで表現） */
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 6px -6px 0 -4px #fff;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
/* -------------------------------------------------
   ①ファーストビュー(タブレット版)
------------------------------------------------- */
  .lp-fv {
    padding: 100px 16px 80px;
  }

  .lp-fv-logo img {
    width: 200px;
    margin-bottom: 28px;
  }

  .lp-fv-title {
    font-size: 32px;
    margin-bottom: 20px;
  }


	
  .lp-fv-visual {
    min-height: 240px;
  }

  .lp-fv-visual-inner {
    max-width: 70%;
    padding: 20px;
  }

  .lp-fv-copy {
    font-size: 13px;
  }

  .lp-btn {
    padding: 14px 36px;
    font-size: 14px;
  }
	
/* -------------------------------------------------
   ②ホワイトニングとは？(タブレット版)
------------------------------------------------- */

  .lp-feature {
    padding: 70px 0;
  }

  .lp-feature-row {
    flex-direction: column;
  }

  .lp-feature-row.reverse {
    flex-direction: column;
  }

  .lp-feature-text {
    padding: 28px;
  }

  .lp-feature-text h3 {
    font-size: 20px;
  }

  .lp-feature-text p {
    font-size: 13px;
  }

  .lp-feature-image {
    padding: 20px;
  }

  .lp-feature-image img {
    width: 100%;
  }

	
/* -------------------------------------------------
   ③アイコンで流れを説明(タブレット版)
------------------------------------------------- */
  .lp-steps{ padding:70px 0; }
  .lp-step-row{ grid-template-columns:110px 1fr; gap:16px; }
  .lp-step-body{ padding:18px 20px; }

  .lp-step-content{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .lp-step-text,
  .lp-step-image{
    width:100%;
    flex:none;
  }
  .lp-step-image{
    text-align:center;
  }


	
  .lp-step-image img{
    max-width:260px;
  }

  .lp-step-text h3{ font-size:17px; }
  .lp-step-text p{ font-size:13.5px; }

/* -------------------------------------------------
   ④歯科衛生士常駐の強み(タブレット版)
------------------------------------------------- */
  .lp-hygienist-points {
    gap: 24px;
  }
  .lp-hygienist-item {
    padding: 28px 20px;
  }

/* -------------------------------------------------
   ⑤メニュー(タブレット版)
------------------------------------------------- */
  .lp-menu {
    padding: 70px 0;
  }

  .lp-menu-single-content,
  .lp-menu-block-content {
    flex-direction: column;
    gap: 16px;
  }

  .lp-menu-single-text,
  .lp-menu-single-image,
  .lp-menu-block-left,
  .lp-menu-block-right {
    width: 100%;
    flex: none;
  }

  .lp-menu-single-image img,
  .lp-menu-block-right img {
    max-width: 260px;
  }

  .lp-menu-item-main {
    flex-direction: column;
    align-items: flex-start;
  }
	
/* -------------------------------------------------
   ⑥会社概要(タブレット版)
------------------------------------------------- */
  .lp-company {
    padding: 70px 0;
  }
  .lp-company-heading {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .lp-company-card {
    margin: 0 10px;
  }
  .lp-company-row {
    grid-template-columns: 160px 1fr;
  }
  .lp-company-label {
    font-size: 13px;
    padding: 12px 14px;
  }
  .lp-company-value {
    font-size: 13px;
    padding: 12px 16px;
  }	
	
/* -------------------------------------------------
   ⑦お問い合わせ(タブレット版)
------------------------------------------------- */
   .lp-contact-method {
    padding: 70px 0;
  }
	
/* -------------------------------------------------
   ⑩追従バナー(タブレット版)
------------------------------------------------- */
  .lp-fixed-banner {
    padding: 8px 0;
  }

  .lp-fixed-label {
    font-size: 12px;
  }
}



/*834px以下*/
@media screen and (max-width: 834px){
/* -------------------------------------------------
   ①ファーストビュー(小型タブレット版)
------------------------------------------------- */
  .lp-fv {
    padding: 60px 0;
  }

  .lp-fv-logo img {
    width: 180px;
    margin-bottom: 24px;
  }

  .lp-fv-visual {
    height: 340px;
  }

  .lp-fv-content {
    left: 6%;
    max-width: 80%;
  }

  .lp-fv-title {
    font-size: 28px;
  }

  .lp-fv-copy {
    font-size: 13px;
  }

  .lp-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}
/* -------------------------------------------------
   ②ホワイトニングとは？(小型タブレット版)
------------------------------------------------- */
@media screen and (max-width: 834px) {
  .lp-feature-card {
    padding: 28px;
    margin-bottom: 48px;
  }

  .lp-feature-row {
    flex-direction: column;
    text-align: center;
  }

  .lp-feature-row.reverse {
    flex-direction: column;
  }
  .lp-feature-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    background: #010066;
    color: #fff;
    text-align: center;
    border-radius: 30px;
  }
	
  .lp-feature-text h3 {
    font-size: 20px;
  }

  .lp-feature-text p {
    font-size: 13px;
  }

  .lp-feature-image img {
    width: 100%;
  }
}	

/* -------------------------------------------------
   ③アイコンで流れを説明(小型タブレット版)
------------------------------------------------- */
@media screen and (max-width:834px){
  .lp-step-row{
    grid-template-columns:1fr;
  }
  .lp-step-badge{
    flex-direction:row;
    gap:8px;
    justify-content:center;
    padding:12px 10px;
    border-radius:6px;
  }
  .lp-step-badge .step-num{ font-size:24px; margin-top:0; }
}

/* -------------------------------------------------
   ⑤メニュー(小型タブレット版)
------------------------------------------------- */


/* -------------------------------------------------
   ⑥会社概要(小型タブレット版)
------------------------------------------------- */

/* -------------------------------------------------
   ⑦お問い合わせ(小型タブレット版)
------------------------------------------------- */


/* -------------------------------------------------
   ⑩追従バナー(小型タブレット版)
------------------------------------------------- */
@media screen and (max-width: 834px) {
  .lp-fixed-item {
    padding: 8px 0;
  }

  .lp-fixed-item .icon {
    width: 22px;
    height: 22px;
  }

  .lp-fixed-item span:last-child {
    font-size: 11px;
  }
}




/*480px以下*/
@media screen and (max-width: 480px){
/* -------------------------------------------------
   ①ファーストビュー(スマホ版)
------------------------------------------------- */
  .lp-fv {
    padding: 40px 0;
  }
	

	
  .lp-fv-logo img {
    width: 150px;
    margin-bottom: 20px;
  }

  .lp-fv-visual {
    height: 300px;
  }

  /* スマホでは全体をやや白くして文字が見やすく */
  .lp-fv-visual::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.3) 100%
    );
  }

  .lp-fv-content {
    text-align: left;
    max-width: 90%;
  }

  .lp-fv-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .lp-fv-copy {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .lp-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
	
/* -------------------------------------------------
   ②ホワイトニングとは？(スマホ版)
------------------------------------------------- */

  .lp-feature {
    padding: 60px 0;
  }

  .lp-feature-row {
    margin-bottom: 40px;
    border-radius: 10px;
  }

  .lp-feature-text {
    padding: 20px;
	text-align: left;
  }

  .lp-feature-text h3 {
    font-size: 18px;
  }

  .lp-feature-text p {
    font-size: 14px;
    line-height: 1.7;
  }
	
.lp-feature-title {
        font-size: 22px;
    }
	
  .lp-feature-image {
    padding: 16px;
  }

  .lp-feature-image img {
    width: 100%;
  }

/* -------------------------------------------------
   ③アイコンで流れを説明(スマホ版)
------------------------------------------------- */
  .lp-steps{ padding:56px 0; }
  .lp-steps-heading{ font-size:22px; margin-bottom:28px; }
  .lp-steps-number{font-size:28px;}
  .lp-step-body{ padding:16px; }
  .lp-step-text { font-size:16px; }
  .lp-step-text p{ font-size:16px; line-height:1.7; }
	.lp-step-title{font-size: 22px;}
  .lp-step-arrow{
    margin-top:12px;
    border-left-width:10px;
    border-right-width:10px;
    border-top-width:12px;
  }
	
/* -------------------------------------------------
   ④歯科衛生士常駐の強み(スマホ版)
------------------------------------------------- */
  .lp-hygienist {
    padding: 60px 0;
  }
  .lp-hygienist-heading {
    font-size: 22px;
  }
  .lp-hygienist-lead {
    font-size: 16px;
    margin-bottom: 40px;
	text-align: left;
  }
  .lp-hygienist-points {
    flex-direction: column;
    gap: 20px;
  }	
  .lp-hygienist-title{
	font-size: 22px;
  }
  .lp-hygienist-text{
	font-size: 16px;
  }
/* -------------------------------------------------
   ⑤メニュー(スマホ版)
------------------------------------------------- */
  .lp-menu {
    padding: 60px 0;
  }

  .lp-menu-heading {
    font-size: 22px;
    margin-bottom: 36px;
  }

  .lp-menu-single-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 14px;
  }

  .lp-menu-single-title {
    font-size: 20px;
  }

  .lp-menu-single-price {
    font-size: 18px;
  }

  .lp-menu-single-content,
  .lp-menu-block-content {
    padding: 16px 14px 18px;
  }

  .lp-menu-single-desc,
  .lp-menu-lead {
    font-size: 16px;
  }

  .lp-menu-price {
    font-size: 18px;
  }

  .lp-menu-item-desc{
	font-size: 16px;
  }
  .lp-menu-block-title {
    font-size: 20px;
    padding: 12px 14px;
  }
	
/* -------------------------------------------------
   ⑥会社概要(スマホ版)
------------------------------------------------- */
  .lp-company {
    padding: 60px 0;
  }

  .lp-company-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .lp-company-card {
    margin: 0 8px;
  }

  .lp-company-row {
    grid-template-columns: 1fr;
  }

  .lp-company-label {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 12px;
    font-size: 18px;
  }

  .lp-company-value {
    padding: 10px 12px 14px;
    font-size: 14px;
  }

/* -------------------------------------------------
   ⑦お問い合わせ(スマホ版)
------------------------------------------------- */
  .lp-contact-method {
    padding: 60px 0;
  }

  .lp-contact-method-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .contact-form-block {
    padding: 20px 16px 22px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-form-lead {
    font-size: 16px;
  }

  .contact-box {
    padding: 14px 16px;
    font-size: 14px;
  }

  .sns-btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .sns-icon {
    width: 22px;
    height: 22px;
  }
	
/* -------------------------------------------------
   ⑩追従バナー(スマホ版)
------------------------------------------------- */
   .lp-fixed-item {
    padding: 6px 0;
  }

  .lp-fixed-item .icon {
    width: 20px;
    height: 20px;
  }

  .lp-fixed-item span:last-child {
    font-size: 10px;
  }

.line-css-logo2::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 40% 40% 40% 40%;
    transform: translateY(2px);
}

.line-css-logo2::after {
    content: "LINE";
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    color: #06C755;
}
	
	.insta-css-logo2{
		width: 0px
	}
}
