/*
Template:story_tcd041
Theme Name:story_tcd041_child
*/

.page .signage-content { animation: none; }


/* FAQセクション全体のレイアウト */
.faq-section {
  padding: 60px 20px;
  background-color: #f7f9fa; /* 背景色：薄いグレー */
  font-family: sans-serif;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 0.05em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* アコーディオンの各アイテム */
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* 質問部分（クリック領域） */
.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  list-style: none; /* デフォルトの三角形を消去 */
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fcfcfc;
}

/* Safari向けのデフォルト三角形消去 */
.faq-question::-webkit-details-marker {
  display: none; 
}

/* Qのアイコン */
.faq-q-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #005bb5; /* サイトのテーマカラーに合わせて調整してください */
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  flex-shrink: 0;
}

/* 開閉用の＋－アイコン */
.faq-toggle-icon {
  margin-left: auto;
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #005bb5; /* アイコンの色 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle-icon::before {
  width: 14px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 14px;
}

/* アコーディオンが開いている時の－アイコンへのアニメーション */
details[open] .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* 回答部分 */
.faq-answer {
  padding: 0 20px 20px 67px; /* アイコンの幅に合わせてインデント */
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.faq-answer p {
  margin: 0;
  padding-top: 15px;
  border-top: 1px dashed #e0e0e0; /* 質問と回答の間の点線 */
  display: flex;
}

/* Aの文字色 */
.faq-a-icon {
  color: #e3342f; /* アクセントカラーの赤 */
  font-weight: bold;
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  margin-right: 10px;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 600px) {
  .faq-question {
    font-size: 15px;
    padding: 15px;
  }
  .faq-answer {
    padding: 0 15px 15px 62px;
    font-size: 14px;
  }
}

/* 紹介セクション全体のレイアウト */
.about-section {
  padding: 60px 20px;
  background-color: #ffffff; /* 背景色：白（FAQのグレー背景とメリハリをつけます） */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 見出しのデザイン */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

/* 見出しの下にアクセントの線を引く */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5; /* サイトのメインカラーに合わせて調整してください */
  border-radius: 2px;
}

/* 本文テキストのデザイン */
.about-content {
  color: #444;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

/* キャンペーン用の目立つボックス */
.campaign-box {
  background-color: #fff9e6; /* 薄いイエローで目立たせる */
  border: 2px solid #ffcc00; /* イエローの枠線 */
  border-radius: 8px;
  padding: 25px 20px;
  margin-top: 35px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.campaign-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.campaign-text .highlight {
  color: #e3342f; /* 赤色で強調 */
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 600px) {
  .about-section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 15px;
  }

  .campaign-box {
    padding: 20px 15px;
  }

  .campaign-text {
    font-size: 15px;
  }
  
  .campaign-text .highlight {
    font-size: 16px;
  }
}

/* 代表挨拶セクション全体のレイアウト */
.greeting-section {
  padding: 80px 20px;
  background-color: #f4f8fa; /* 信頼感と温かみのある淡いブルーグレー */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

/* 写真がないため、1行が長くなりすぎないよう幅を少し絞ります */
.greeting-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 見出しのデザイン */
.greeting-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.4;
}

/* スマホ用改行（PCでは非表示） */
.sp-br {
  display: none;
}

/* お手紙のような白抜きカードデザイン */
.greeting-content {
  background: #ffffff;
  padding: 50px 60px; /* 内側の余白を広めにとって上品に */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.greeting-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

/* 冒頭のテキストを中央寄せにして印象付ける */
.lead-text {
  font-weight: bold;
  color: #005bb5; /* サイトのメインカラーに合わせて調整してください */
  font-size: 18px;
  margin-bottom: 35px;
  text-align: center;
}

/* 署名部分 */
.greeting-signature {
  margin-top: 40px;
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .greeting-section {
    padding: 50px 15px;
  }
  
  .greeting-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .sp-br {
    display: block; /* スマホでは見出しを改行させる */
  }

  .greeting-content {
    padding: 30px 20px; /* スマホでは余白を少し狭める */
  }

  .greeting-text {
    font-size: 15px;
  }
  
  .lead-text {
    font-size: 16px;
    text-align: left; /* スマホの画面幅では左寄せの方が読みやすいため戻す */
    margin-bottom: 25px;
  }

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

/* 処分方法セクション全体のレイアウト */
.disposal-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
}

.disposal-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 見出しとリード文 */
.disposal-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.disposal-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5;
  border-radius: 2px;
}

.disposal-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #444;
}

/* 各方法のカードデザイン */
.method-card {
  background: #f7f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

/* 方法3（ホワイトロック）をハイライト */
.method-card--highlight {
  background: #f0f7ff; /* 薄いブルー背景 */
  border: 2px solid #005bb5; /* 青い枠線で目立たせる */
  box-shadow: 0 4px 15px rgba(0, 91, 181, 0.1);
}

.method-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333;
}

.method-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #005bb5;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
}

.method-card--highlight .method-num {
  background-color: #e3342f; /* ホワイトロックの部分は赤色アイコンにして目立たせる */
}

.method-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

/* 定義リスト（方法1,2の詳細） */
.method-list dt {
  font-weight: bold;
  color: #005bb5;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 16px;
}

.method-list dd {
  margin: 0 0 15px 0;
  padding-left: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  border-left: 3px solid #ccc;
}

.text-alert {
  color: #e3342f; /* 【重要】の赤文字 */
}

/* ホワイトロックのアピールポイント */
.point-box {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #b3d4f5;
}

.point-title {
  font-size: 17px;
  font-weight: bold;
  color: #e3342f;
  margin: 20px 0 10px 0;
  padding-left: 15px;
  position: relative;
}

.point-title::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e3342f;
}

.point-text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 15px 0;
  padding-left: 15px;
  color: #333;
}

/* --- 比較表セクション --- */
.comparison-section {
  margin-top: 60px;
}

.comparison-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto; /* スマホで横スクロール可能にする */
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 600px; /* PC/タブレット向けの最小幅 */
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ddd;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

/* テーブルヘッダー */
.comparison-table thead th {
  text-align: center;
  font-weight: bold;
}

.col-item {
  background-color: #f7f9fa;
  width: 20%;
}

.col-gov {
  background-color: #f7f9fa;
  width: 40%;
}

.col-wr {
  background-color: #005bb5;
  color: #fff;
  width: 40%;
  font-size: 16px;
}

/* テーブルボディ */
.comparison-table tbody th {
  background-color: #f7f9fa;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.comparison-table tbody td {
  color: #444;
}

/* ホワイトロックの列を強調 */
.comparison-table .cell-wr {
  background-color: #f0f7ff;
  font-weight: bold;
  color: #005bb5;
}


/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .disposal-section {
    padding: 50px 15px;
  }
  
  .disposal-title {
    font-size: 22px;
  }
  
  .method-title {
    font-size: 18px;
  }
  
  .method-card {
    padding: 20px 15px;
  }
  
  .method-list dd {
    padding-left: 10px;
    font-size: 14px;
  }
  
  .point-title {
    font-size: 16px;
  }
  
  .point-text {
    font-size: 14px;
  }
  
  .comparison-title {
    font-size: 20px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px;
    font-size: 14px;
  }
}


/* 「こんな時に」セクション全体のレイアウト */
.use-cases-section {
  padding: 80px 20px;
  background-color: #f7f9fa; /* 背景を薄いグレーにしてカードを目立たせる */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.use-cases-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出しとリード文 */
.use-cases-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.use-cases-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5; /* テーマカラー */
  border-radius: 2px;
}

.use-cases-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* グリッドレイアウト（PCでは2〜3列、スマホでは1列に自動調整） */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* 各カードのデザイン */
.case-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border-top: 4px solid #005bb5; /* カード上部のアクセントカラー */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px); /* マウスホバーで少し浮き上がる */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* 背景の大きな数字（透かし風） */
.case-number {
  font-size: 80px;
  font-weight: 900;
  color: #f0f4f8; /* 非常に薄いブルーグレー */
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
  z-index: 1;
  user-select: none;
}

/* カードのタイトル */
.case-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 2; /* 背景数字より手前に表示 */
}

/* カードの本文 */
.case-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  position: relative;
  z-index: 2; /* 背景数字より手前に表示 */
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .use-cases-section {
    padding: 50px 15px;
  }
  
  .use-cases-title {
    font-size: 24px;
  }
  
  .use-cases-intro {
    text-align: left; /* スマホでは左寄せの方が読みやすい */
    font-size: 15px;
  }
  
  .cases-grid {
    grid-template-columns: 1fr; /* スマホでは完全に縦1列 */
    gap: 20px;
  }
  
  .case-card {
    padding: 25px 20px;
  }
  
  .case-number {
    font-size: 60px;
  }
  
  .case-title {
    font-size: 17px;
  }
  
  .case-desc {
    font-size: 14px;
  }
}

/* お客様の声セクション全体のレイアウト */
.voice-section {
  padding: 80px 20px;
  background-color: #eef6fc; /* さわやかな極薄いブルー */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.voice-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出しとリード文 */
.voice-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.voice-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5;
  border-radius: 2px;
}

.voice-intro {
  text-align: center;
  font-size: 16px;
  color: #444;
  margin-bottom: 50px;
}

/* グリッドレイアウト（PCでは2列、スマホでは1列） */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* 各口コミカードのデザイン */
.voice-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
}

.voice-card:hover {
  transform: translateY(-5px);
}

/* 背景に配置するクォーテーションマーク（“） */
.voice-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 100px;
  font-family: serif;
  color: #f0f4f8; /* 極めて薄いグレーで透かしのように */
  line-height: 1;
  z-index: -1;
}

/* ヘッダー部分（事例番号とカテゴリ） */
.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.voice-badge {
  background-color: #005bb5;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.voice-category {
  font-size: 15px;
  font-weight: bold;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* お客様の言葉（キャッチコピー） */
.voice-catch {
  font-size: 18px;
  font-weight: bold;
  color: #005bb5;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* 口コミ本文 */
.voice-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .voice-section {
    padding: 50px 15px;
  }
  
  .voice-section-title {
    font-size: 24px;
  }
  
  .voice-grid {
    grid-template-columns: 1fr; /* スマホは縦1列 */
    gap: 20px;
  }
  
  .voice-card {
    padding: 25px 20px;
  }
  
  .voice-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .voice-category {
    font-size: 14px;
  }
  
  .voice-catch {
    font-size: 16px;
  }
  
  .voice-text {
    font-size: 14px;
  }
}
/* 料金セクション全体のレイアウト */
.pricing-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 大見出しとリード文 */
.pricing-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.pricing-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5; /* テーマカラー */
  border-radius: 2px;
}

.pricing-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 中見出し（H3） */
.pricing-sub-title {
  font-size: 22px;
  font-weight: bold;
  color: #005bb5;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 5px solid #005bb5; /* 左側にアクセント線 */
}

/* --- 料金表エリア --- */
.pricing-plan-area {
  margin-bottom: 60px;
}

.pricing-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto; /* スマホで横スクロール可能にする */
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.pricing-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #e0e0e0;
  padding: 18px 15px;
  text-align: left;
  font-size: 16px;
}

/* テーブルヘッダー */
.pricing-table thead th {
  background-color: #005bb5;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}

.col-plan { width: 30%; }
.col-volume { width: 45%; }
.col-price { width: 25%; }

/* テーブルボディ（左端の列） */
.pricing-table tbody th {
  background-color: #f4f8fa;
  font-weight: bold;
  color: #333;
}

/* 料金セルを強調（赤太字） */
.price-cell {
  color: #e3342f;
  font-weight: bold;
  font-size: 18px !important;
  text-align: right !important; /* 金額は右寄せの方が見やすい */
}

/* --- 安さのポイントエリア --- */
.pricing-points-area {
  margin-top: 40px;
}

.point-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ポイントのカードデザイン */
.point-card {
  background: #f7f9fa;
  border-radius: 8px;
  padding: 25px;
  border-top: 4px solid #005bb5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.point-header {
  margin-bottom: 15px;
}

.point-num {
  display: inline-block;
  background-color: #e3342f; /* アクセントの赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.point-title {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.point-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .pricing-section {
    padding: 50px 15px;
  }
  
  .pricing-title {
    font-size: 24px;
  }
  
  .pricing-intro {
    text-align: left; /* スマホでは左寄せに */
    font-size: 15px;
    margin-bottom: 40px;
  }

  .pricing-sub-title {
    font-size: 20px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  
  .price-cell {
    font-size: 16px !important;
  }
  
  .point-cards {
    grid-template-columns: 1fr; /* スマホは縦1列 */
    gap: 20px;
  }
  
  .point-card {
    padding: 20px;
  }
  
  .point-title {
    font-size: 16px;
  }
  
  .point-text {
    font-size: 14px;
  }
}

/* 流れセクション全体のレイアウト */
.flow-section {
  padding: 80px 20px;
  background-color: #f4f8fa; /* 薄いブルーグレーの背景で清潔感を出す */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.flow-inner {
  max-width: 850px;
  margin: 0 auto;
}

/* 見出しとリード文 */
.flow-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.flow-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5; /* テーマカラー */
  border-radius: 2px;
}

.flow-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
  text-align: center;
}

/* タイムラインのコンテナ */
.step-container {
  position: relative;
  padding-left: 20px;
}

/* 縦の繋ぎ線 */
.step-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px; /* バッジの中心を通るように配置 */
  width: 4px;
  background-color: #005bb5;
  border-radius: 2px;
}

/* 各ステップのアイテム */
.step-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  z-index: 1; /* 縦線より手前に表示 */
}

.step-item:last-child {
  margin-bottom: 0; /* 最後の余白を消す */
}

/* 丸いSTEPバッジ */
.step-badge {
  flex: 0 0 80px;
  height: 80px;
  background-color: #005bb5;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 4px solid #f4f8fa; /* 背景色と同じボーダーで縦線を切り抜く効果 */
  margin-right: 30px;
  box-sizing: border-box;
}

.step-en {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}

.step-num {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
}

/* コンテンツのカード部分 */
.step-box {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border-top: 4px solid transparent;
  transition: border-top-color 0.3s ease;
}

.step-item:hover .step-box {
  border-top-color: #005bb5; /* ホバー時に上部にテーマカラーの線が出る */
}

/* 左側の小さな三角形（吹き出し風） */
.step-box::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid #ffffff;
}

/* タイトルと本文 */
.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px dashed #eee;
  padding-bottom: 15px;
}

.step-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
  .flow-section {
    padding: 50px 15px;
  }
  
  .flow-title {
    font-size: 24px;
  }
  
  .flow-intro {
    font-size: 15px;
    text-align: left;
  }
  
  .step-container {
    padding-left: 0;
  }

  /* スマホでの縦線位置調整 */
  .step-container::before {
    left: 30px; 
    width: 3px;
  }
  
  .step-badge {
    flex: 0 0 60px;
    height: 60px;
    margin-right: 15px;
    border-width: 3px;
  }
  
  .step-en {
    font-size: 10px;
  }
  
  .step-num {
    font-size: 24px;
  }
  
  .step-box {
    padding: 20px;
  }
  
  /* スマホでの吹き出し三角形調整 */
  .step-box::before {
    top: 20px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
  }
  
  .step-title {
    font-size: 18px;
    padding-bottom: 10px;
  }
  
  .step-desc {
    font-size: 14px;
  }
}

/* =========================================================
   サービス一覧セクション（業務内容）のCSS【センタリング見出し完全版】
========================================================= */

/* 大枠のレイアウト */
.services-section {
  padding: 80px 20px;
  background-color: #f7f9fa; /* 薄いグレー背景 */
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 上部のキャッチコピー（他社より1円でも〜） */
.price-guarantee-box {
  background-color: #fff9e6;
  border: 3px solid #ffcc00;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.guarantee-text {
  color: #e3342f; /* 赤色で強調 */
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

/* セクションタイトル */
.services-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.services-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #005bb5;
  border-radius: 2px;
}

/* グリッドレイアウト（PC: 2列以上、スマホ: 1列） */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

/* --- カード本体 --- */
.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* --- 見出し（3Dリボン風装飾 ＋ 文字中央揃え） --- */
.service-title {
  position: relative;
  padding: 15px 20px; /* 左右の余白を均等にする */
  margin: 0 -30px 25px -40px; /* 右側もカードの端まで伸ばし、左側ははみ出させる */
  background: linear-gradient(90deg, #005bb5, #0077d9);
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  text-align: center; /* ★文字を中央揃え */
  border-radius: 0; /* 右側の角丸を解除し、カード幅いっぱいに広げる */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* はみ出した部分の「折り返し（影）」を作る三角形 */
.service-title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border-top: 10px solid #003366; 
  border-left: 10px solid transparent;
}

/* --- 写真部分 --- */
.service-image {
  margin: 0 0 25px 0;
  width: 100%;
  aspect-ratio: 16 / 9; /* アスペクト比を16:9に固定 */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: #eee;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 文章部分 --- */
.service-content {
  flex-grow: 1; /* 余白を自動で埋めてボタンの高さを揃える */
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-content p {
  margin-bottom: 15px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

/* --- 強調テキストの装飾 --- */
.highlight-text {
  font-weight: bold;
  color: #e3342f; /* 赤色 */
  background: linear-gradient(transparent 60%, #ffff99 60%); /* 黄色い蛍光ペンのような下線 */
  padding: 0 2px;
}

.service-content strong {
  color: #222;
  font-weight: bold;
  border-bottom: 1px solid #ccc; /* 軽く下線を入れて強調 */
}

/* --- 「詳しく見る」ボタン --- */
.service-btn {
  display: block;
  text-align: center;
  background-color: #005bb5;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.service-btn::after {
  content: '▶';
  position: absolute;
  right: 20px;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.service-btn:hover {
  background-color: #004488;
}

/* =========================================================
   スマホ表示向けの調整（レスポンシブ）
========================================================= */
@media screen and (max-width: 768px) {
  .services-section {
    padding: 50px 15px;
  }
  
  .price-guarantee-box {
    padding: 15px;
  }
  
  .guarantee-text {
    font-size: 18px;
  }
  
  .services-section-title {
    font-size: 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  /* スマホでのリボン見出しの調整（文字中央揃え版） */
  .service-title {
    margin: 0 -20px 20px -30px; /* スマホのカード余白に合わせて右端も調整 */
    padding: 12px 15px;
    font-size: 19px;
  }
  
  /* スマホでの画像の余白・比率調整 */
  .service-image {
    margin: 0 0 15px 0;
    aspect-ratio: 4 / 3;
  }
  
  .service-content {
    font-size: 14px;
  }

  /* スマホでの強調テキストの調整 */
  .highlight-text {
    background: linear-gradient(transparent 70%, #ffff99 70%); /* 線を少し細く */
  }
  
  .service-btn {
    font-size: 15px;
    padding: 12px 15px;
  }
	
 }
	
/* =========================================================
   「選ばれる4つの理由」全デバイス共通デザイン（装飾・色）
   ※PC/SP両方で効かせたいデザインはここに書きます
========================================================= */

/* セクション全体の背景（薄い水色） */
body .wr-reasons-container {
  background-color: #f0f8ff !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding: 80px 0 !important;
  margin: 40px 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* 理由ラベル（赤いバッジ）をSPでも絶対出す */
body .wr-reason-badge {
  display: inline-block !important;
  background-color: #e3342f !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: bold !important;
  padding: 6px 18px !important;
  border-radius: 30px !important;
  margin-bottom: 15px !important;
  letter-spacing: 0.05em !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 青いタイトル */
body .wr-reason-title {
  font-size: 26px !important;
  font-weight: bold !important;
  color: #005bb5 !important;
  margin-bottom: 20px !important;
  line-height: 1.4 !important;
}

/* メインタイトルの装飾（赤い線） */
body .wr-reasons-main-title {
  text-align: center !important;
  font-size: 32px !important;
  color: #333 !important;
  margin-bottom: 60px !important;
}

body .wr-title-accent {
  color: #005bb5 !important;
  font-size: 40px !important;
  display: inline-block !important;
  position: relative !important;
}

body .wr-title-accent::after {
  content: '' !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 4px !important;
  background-color: #e3342f !important;
}

/* =========================================================
   デバイスごとのレイアウト切り替え
========================================================= */

/* --- PC版のレイアウト --- */
@media screen and (min-width: 769px) {
  body .wr-reasons-inner {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
  body .wr-reason-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 50px !important;
  }
  body .wr-reason-item:nth-child(even) {
    flex-direction: row-reverse !important;
  }
  body .wr-reason-image { flex: 0 0 45% !important; }
  body .wr-reason-content { flex: 0 0 50% !important; }
  body .wr-sp-br { display: none !important; }
}

/* --- スマホ版（SP）のレイアウト --- */
@media screen and (max-width: 768px) {
  body .wr-reasons-container {
    padding: 50px 0 !important;
  }
  body .wr-reasons-inner {
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  body .wr-reasons-main-title {
    font-size: 24px !important;
    margin-bottom: 40px !important;
  }
  body .wr-title-accent {
    font-size: 30px !important;
  }
  /* スマホでは縦1列に強制リセット */
  body .wr-reason-item,
  body .wr-reason-item:nth-child(even) {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 50px !important;
  }
  body .wr-reason-image,
  body .wr-reason-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
  body .wr-reason-title {
    font-size: 20px !important;
  }
  body .wr-sp-br {
    display: block !important;
  }
}

/* =========================================================
   「4つの理由」画像サイズ適正化（巨大化防止）
========================================================= */

/* 画像コンテナのサイズを制限 */
body .wr-reason-image {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  height: 300px !important; /* PC版での高さを固定（お好みで調整してください） */
  overflow: hidden !important;
  border-radius: 12px !important;
}

/* 画像自体の表示方法を調整 */
body .wr-reason-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 枠に合わせて画像を切り抜く（引き伸ばさない） */
  object-position: center !important; /* 画像の中央を表示 */
}

/* =========================================================
   スマホ用の画像サイズ調整
========================================================= */
@media screen and (max-width: 768px) {
  body .wr-reason-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important; /* スマホ版での高さを少し抑える */
    flex: none !important;
    margin-bottom: 15px !important;
  }
}



/* =========================================================
   トップページ：ブログ一覧（.top-blog）のカード型デザイン化
========================================================= */

/* 1. リスト全体をグリッド化（TCDの横並び設定を上書き） */
.top-blog {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important; /* PCは3〜4列 */
  gap: 30px !important;
  margin-bottom: 50px !important;
  width: 100% !important;
}

/* 2. 記事カード本体（白背景・角丸・影） */
.top-blog .article03 {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  margin: 0 !important;
  width: 100% !important; /* TCDの横幅指定をリセット */
  padding: 0 !important;
}

/* ホバーでカードがフワッと浮く */
.top-blog .article03:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* aタグをカード全体に広げる */
.top-blog .article03 > a {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-decoration: none !important;
}

/* 3. サムネイル画像（16:9に固定） */
.top-blog .article03-thumbnail {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important; /* 写真の比率を統一 */
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important; /* 画像の角丸は親要素に任せる */
}

.top-blog .article03-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 写真が歪まないように切り抜き */
  transition: transform 0.5s ease !important;
}

/* ホバーで写真が少しズーム */
.top-blog .article03:hover .article03-thumbnail img {
  transform: scale(1.05) !important;
}

/* 4. コンテンツエリア（余白と配置） */
.top-blog .article03-content {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

/* ★裏技：HTMLの順序を無視して「日付＋カテゴリ」をタイトルの上に移動 */
.top-blog .article03-meta {
  order: 1 !important; /* 1番目に表示 */
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  border: none !important;
}

.top-blog .article03-title {
  order: 2 !important; /* 2番目に表示 */
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  /* タイトルが長い場合は3行で「…」に省略 */
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  transition: color 0.3s ease !important;
}

/* ホバーでタイトルを青文字に */
.top-blog .article03:hover .article03-title {
  color: #005bb5 !important;
}

/* 5. 日付とカテゴリの装飾 */
.top-blog .article03-date {
  color: #888 !important;
  font-size: 13px !important;
  font-family: Arial, sans-serif !important;
}

.top-blog .article03-category-item {
  background-color: #eef6fc !important; /* 薄い青背景 */
  color: #005bb5 !important; /* 青文字 */
  font-size: 11px !important;
  font-weight: bold !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

/* =========================================================
   スマホ用（レスポンシブ）
========================================================= */
@media screen and (max-width: 768px) {
  .top-blog {
    grid-template-columns: 1fr !important; /* スマホでは縦1列に強制 */
    gap: 20px !important;
  }
}

/* =========================================================
   【強制修正】ブログタイトルの文字切れ・隠れを完全に防ぐ
========================================================= */

/* 1. カード全体の高さ制限を解除 */
body .top-blog .article03 {
  height: auto !important;
  min-height: 0 !important;
}

/* 2. コンテンツエリアの高さ制限と「隠す」設定を解除 */
body .top-blog .article03-content {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding-bottom: 25px !important; /* 下部の余白をしっかり確保 */
}

/* 3. タイトル文字の高さ制限と省略設定を完全に無効化し、全文字表示させる */
body .top-blog .article03-title {
  height: auto !important;
  max-height: none !important;
  white-space: normal !important; /* 1行に無理やり収める設定を解除 */
  overflow: visible !important; /* 文字が下半分でスライスされるのを防ぐ */
  word-wrap: break-word !important; /* 長い単語で枠がはみ出すのを防ぐ */
  display: block !important; /* 「…」で省略する設定が悪さをしているため解除 */
  line-height: 1.6 !important; /* 行間を少し広げて読みやすく */
  margin-top: 10px !important;
  padding: 0 !important;
}

/* =========================================================
   ブログ記事本文内のリンク（Aタグ）装飾
========================================================= */

/* 段落(p)やリスト(li)の中にあるテキストリンクの基本スタイル */
body .post_content p a,
body .entry-content p a,
body .post_content li a,
body .entry-content li a {
  color: #005bb5 !important; /* ホワイトロックのメインカラー（青） */
  text-decoration: none !important; /* デフォルトの線を消す */
  border-bottom: 2px solid #005bb5 !important; /* 少し太めで綺麗な下線を引く */
  font-weight: bold !important; /* 文字を少し太くして目立たせる */
  padding-bottom: 1px !important; /* 文字と下線の間に少し隙間を作る */
  transition: all 0.3s ease !important; /* アニメーションを滑らかにする */
}

/* リンクにマウスを乗せた時（ホバー時）のアクション */
body .post_content p a:hover,
body .entry-content p a:hover,
body .post_content li a:hover,
body .entry-content li a:hover {
  color: #e3342f !important; /* アクセントカラーの赤に変化 */
  border-bottom-color: #e3342f !important; /* 下線の色も赤に変化 */
  background-color: #fdf2f2 !important; /* 背景をうっすら赤くしてボタンっぽく */
}

/* ※注意：画像にリンクが貼られている場合は下線を出さないようにする */
body .post_content p a img,
body .entry-content p a img {
  border-bottom: none !important;
}
body .post_content p a:has(img),
body .entry-content p a:has(img) {
  border-bottom: none !important;
  background-color: transparent !important;
}

/* =========================================================
   【視認性特化 ＋ スマホ同サイズ整列】MV下：5つの写真メニュー
========================================================= */

/* 1. メニュー全体の親要素（横揺れ防止） */
body .menuImg {
  background-color: #f7f9fa !important;
  padding: 50px 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important; 
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* 2. メニューを並べる内側の枠 */
body .menuImg .inner02 {
  width: 100% !important; 
  max-width: 1100px !important; 
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  justify-content: flex-start !important; /* 左詰めに変更 */
  gap: 20px !important; 
  box-sizing: border-box !important;
}

/* 3. 各メニューボックス（白背景のカード型） */
body .menuImgBox {
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important; 
  text-decoration: none !important;
  border-radius: 12px !important; 
  overflow: hidden !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important; 
  background-color: #ffffff !important; 
  border: 2px solid transparent !important; 
  transition: all 0.3s ease !important;
  margin: 0 !important; 
}

/* マウスホバーでカードが浮き上がり、青い枠線が出る */
body .menuImgBox:hover {
  transform: translateY(-8px) !important; 
  box-shadow: 0 12px 30px rgba(0, 91, 181, 0.15) !important; 
  border-color: #005bb5 !important; 
}

/* 4. 画像エリア（上部） */
body .menuImgBox img.img100 {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important; 
  object-fit: cover !important;
  display: block !important;
  border-bottom: 1px solid #eeeeee !important; 
  transition: transform 0.5s ease !important;
}

/* 画像のズーム */
body .menuImgBox:hover img.img100 {
  transform: scale(1.05)
	}  
	  
/* =========================================================
   特別キャンペーンバナーのデザイン一新（.campaign）
========================================================= */

/* 1. バナー全体の位置・幅調整 */
body .campaign {
  max-width: 800px !important; /* PCで横に広がりすぎるのを防ぐ */
  margin: 60px auto !important; /* 上下の余白をしっかり取る */
  padding: 0 15px !important;
}

body .campaignBnr {
  display: block !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* 2. バナー本体（背景グラデ・金枠・影） */
body .campaignWrap {
  background: linear-gradient(135deg, #005bb5 0%, #002255 100%) !important; /* 深みのある青グラデーション */
  border: 3px solid #ffd700 !important; /* ゴールドの枠線 */
  border-radius: 16px !important; /* 角を大きめに丸く */
  padding: 25px 20px !important;
  box-shadow: 0 10px 25px rgba(0, 91, 181, 0.3) !important; /* 青い影で浮き上がらせる */
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* マウスホバーでバナー全体がフワッと浮く */
body .campaignBnr:hover .campaignWrap {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0, 91, 181, 0.5) !important;
  border-color: #ffea00 !important; /* 枠線が少し明るく光る */
}

/* 3. キャンペーン画像 */
body .campaignWrap img {
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 20px !important;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)) !important; /* 画像自体に少し影をつけて立体的に */
}

/* 4. テキストエリア */
body .campaignTxt {
  width: 100% !important;
}

/* タイトル（トリプルキャンペーン大好評実施中!!） */
body .campaignTxt h3 {
  color: #ffd700 !important; /* ゴールド文字 */
  font-size: 26px !important;
  font-weight: bold !important;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.5) !important; /* 文字をクッキリさせる影 */
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
}

/* 5. 「先着10名様限定」の赤い目立つバッジ化＆アニメーション */
body .campaignTxt .limit {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff4b4b 0%, #e3342f 100%) !important; /* 赤いグラデーション */
  color: #ffffff !important; /* 白文字 */
  font-weight: bold !important;
  font-size: 18px !important;
  padding: 8px 30px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(227, 52, 47, 0.5) !important;
  letter-spacing: 0.1em !important;
  margin: 5px 0 20px 0 !important;
  border: 2px solid #ffffff !important; /* 白い内枠をつける */
  
  /* ドクンドクンと動かすアニメーション */
  animation: badge-pulse 2s infinite !important; 
}

@keyframes badge-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* サブテキスト（ご予約の際にお申し付けください等） */
body .campaignTxt p.white {
  font-size: 15px !important;
  color: #ffffff !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  opacity: 0.9 !important;
}

/* 6. 下部の矢印（∨）アニメーション */
body .campaignArrow {
  margin-top: 15px !important;
  padding: 0 !important;
}

body .campaignArrow i {
  color: #ffd700 !important; /* 矢印もゴールドに */
  font-size: 32px !important;
  /* 上下にフワフワ動かすアニメーション */
  animation: arrow-bounce 2s infinite !important; 
}

@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* =========================================================
   スマートフォン用サイズ調整
========================================================= */
@media screen and (max-width: 768px) {
  body .campaign {
    margin: 40px auto !important;
  }
  
  body .campaignWrap {
    padding: 20px 15px !important;
  }
  
  body .campaignTxt h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  
  body .campaignTxt .limit {
    font-size: 16px !important;
    padding: 6px 20px !important;
  }
  
  body .campaignTxt p.white {
    font-size: 13px !important;
  }
}	  

/* =========================================================
   特別キャンペーンバナーを超目立たせるCSS
========================================================= */

/* 1. バナー全体の位置・幅調整 */
body .campaign {
  max-width: 800px !important;
  margin: 60px auto !important;
  padding: 0 15px !important;
}

body .campaignBnr {
  display: block !important;
  text-decoration: none !important;
}

/* 2. バナー本体（背景グラデ・金枠・光る影） */
body .campaignWrap {
  background: linear-gradient(135deg, #004bb5 0%, #001f55 100%) !important; /* 深い青のグラデーション */
  border: 4px solid #ffd700 !important; /* 目立つゴールドの太枠 */
  border-radius: 16px !important;
  padding: 30px 20px !important;
  /* 外側の青い影 ＋ 内側のゴールド発光 */
  box-shadow: 0 10px 30px rgba(0, 91, 181, 0.4), inset 0 0 15px rgba(255, 215, 0, 0.3) !important; 
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

/* マウスホバー（スマホでタップ）でバナーが浮き上がり光る */
body .campaignBnr:hover .campaignWrap {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 91, 181, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.5) !important;
  border-color: #ffea00 !important; /* 枠線が少し明るく光る */
}

/* 3. 画像の調整（立体感を出す） */
body .campaignWrap img {
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 25px !important;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.4)) !important; /* 画像に影をつけて浮き出させる */
}

/* 4. タイトル「トリプルキャンペーン大好評実施中!!」 */
body .campaignTxt h3 {
  color: #ffd700 !important; /* 鮮やかなゴールド */
  font-size: 28px !important;
  font-weight: bold !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6) !important; /* 黒い影で文字をクッキリ */
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
}

/* 5. 「先着10名様限定」バッジ（赤グラデーション＋鼓動アニメーション） */
body .campaignTxt .limit {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff3b3b 0%, #cc0000 100%) !important; /* 強い赤のグラデーション */
  color: #ffffff !important;
  font-weight: bold !important;
  font-size: 20px !important;
  padding: 10px 35px !important;
  border-radius: 50px !important;
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.6) !important;
  letter-spacing: 0.1em !important;
  margin: 10px 0 25px 0 !important;
  border: 2px solid #ffffff !important; /* 白い縁取りで強調 */
  animation: badge-pulse 1.5s infinite !important; /* ドクンドクンと動かす */
}

/* 鼓動アニメーションの定義 */
@keyframes badge-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* サブテキスト */
body .campaignTxt p.white {
  font-size: 15px !important;
  color: #ffffff !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  opacity: 0.9 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

/* 6. 下部の矢印（∨）アニメーション */
body .campaignArrow {
  margin-top: 15px !important;
  padding: 0 !important;
}

body .campaignArrow i {
  color: #ffd700 !important; /* ゴールド */
  font-size: 35px !important;
  animation: arrow-bounce 1.5s infinite !important; /* フワフワ動かす */
}

/* フワフワアニメーションの定義 */
@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

/* =========================================================
   スマートフォン用サイズ調整
========================================================= */
@media screen and (max-width: 768px) {
  body .campaign {
    margin: 40px auto !important;
  }
  body .campaignWrap {
    padding: 20px 15px !important;
  }
  body .campaignTxt h3 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }
  body .campaignTxt .limit {
    font-size: 16px !important;
    padding: 8px 25px !important;
  }
  body .campaignTxt p.white {
    font-size: 13px !important;
  }
}



/* CTAラッパーの固定設定 */
.mobile-cta-wrapper {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px; /* さらに高さを確保 */
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.25); /* シャドウをより濃く */
}

/* ボタン共通設定 */
.cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.cta-btn:active {
    transform: scale(0.95); /* タップ時のへこみを大きく */
    filter: brightness(0.9);
}

/* --- 電話ボタン（さらに鮮やかなオレンジレッド系） --- */
.cta-tel {
    /* 鮮やかなグラデーション */
    background: linear-gradient(180deg, #ff6b00 0%, #ff4500 100%);
    /* 立体感を出すインナーシャドウ */
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    /* 白いボーダー */
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-right: none; /* 真ん中の境界線が重ならないように */
}

/* --- メールボタン（より明るいグリーン） --- */
.cta-mail {
    /* 鮮やかなグラデーション */
    background: linear-gradient(180deg, #32cd32 0%, #228b22 100%);
    /* 立体感を出すインナーシャドウ */
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    /* 白いボーダー */
    border: 2px solid rgba(255, 255, 255, 0.7);
}

/* アイコン設定 */
.cta-icon {
    font-size: 26px; /* 少し大きく */
    margin-right: 8px;
}

/* テキストレイアウト */
.cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* サブテキスト（マイクロコピー） */
.cta-sub {
    font-size: 11px; /* 少し大きく */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2px;
    background: rgba(255, 255, 255, 0.3); /* 背景を明るくして目立たせる */
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

/* メインテキスト */
.cta-main {
    font-size: 15px; /* 少し大きく */
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

/* 「無料」の強調 */
.highlight {
    color: #ffeb3b; /* 鮮やかなイエローゴールド */
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

/* --- アニメーション --- */

/* 電話ボタン全体のパルスアニメーション（超目立つ） */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255, 69, 0, 0), inset 0 2px 0 rgba(255, 255, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0), inset 0 2px 0 rgba(255, 255, 255, 0.2); }
}

/* 電話アイコンの揺れ（前回より少し速く） */
.tel-shake {
    animation: shake 2.5s infinite;
}

@keyframes shake {
    0%, 8%, 100% { transform: rotate(0deg); }
    1.6% { transform: rotate(15deg); }
    3.2% { transform: rotate(-15deg); }
    4.8% { transform: rotate(15deg); }
    6.4% { transform: rotate(-15deg); }
}

/* PC等で非表示にする場合 */
@media screen and (min-width: 769px) {
    .mobile-cta-wrapper {
        display: none;
    }
}


/* ====================================================
   浦和区　White Rock - Ward Page Style (High-End & Professional)
   ==================================================== */

.wr-ward-page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333333;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 900px;
  margin: 0 auto;
}

.wr-ward-page p {
  margin-bottom: 1.5em;
}

/* --- 見出しデザイン --- */
.wr-h3-title {
  font-size: 1.5rem;
  color: #003366; /* プロフェッショナルな深いブルー */
  border-bottom: 2px solid #003366;
  padding-bottom: 0.5em;
  margin: 2.5em 0 1em;
  position: relative;
}
.wr-h3-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  background-color: #0055aa; 
}

.wr-h4-title {
  font-size: 1.25rem;
  color: #1a1a1a;
  border-left: 5px solid #003366;
  padding-left: 0.8em;
  margin: 2em 0 1em;
  font-weight: 700;
}

/* --- リスト・ボックス装飾 --- */
.wr-worry-list,
.wr-bullet-list,
.wr-step-list,
.wr-reason-list {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1.5em 1.5em 1.5em 2.5em;
  margin-bottom: 2em;
}

.wr-worry-list li {
  color: #cc0000; /* 悩み部分は少し目立たせる */
  font-weight: 500;
  margin-bottom: 0.5em;
}

.wr-area-box {
  background-color: #ffffff;
  border: 2px solid #003366;
  padding: 1.5em;
  margin: 2em 0;
  border-radius: 4px;
}
.wr-box-title {
  font-weight: bold;
  color: #003366;
  margin-bottom: 1em;
  text-align: center;
}

/* --- 【追加】写真配置デザイン --- */
.wr-image-container {
  max-width: 300px;
  margin-bottom: 1.5em;
}
.wr-image-float-right {
  float: right;
  margin-left: 1.5em;
}
.wr-image-float-left {
  float: left;
  margin-right: 1.5em;
}
.wr-image-inline {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.wr-image-caption {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 0.5em;
  text-align: center;
}

/* 現場レポートセクション */
#wr-report-section .wr-report-case {
  margin-bottom: 3em;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2em;
}
#wr-report-section .wr-report-case:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#wr-report-section .wr-report-images {
  display: flex;
  gap: 1.5em;
  margin-top: 1.5em;
}
#wr-report-section .wr-report-images figure {
  margin: 0;
  flex: 1;
}
#wr-report-section .wr-report-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
#wr-report-section figcaption {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 0.5em;
  text-align: center;
}

/* --- 比較表デザイン（強力版） --- */
.wr-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2em;
}
.wr-ward-page table.wr-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
/* 見出しのスタイルを強制適用 */
.wr-ward-page table.wr-comparison-table th {
  background-color: #003366 !important;
  color: #ffffff !important;
  font-weight: normal !important;
  border: 1px solid #dcdcdc !important;
  padding: 1em !important;
  text-align: left !important;
}
.wr-ward-page table.wr-comparison-table td {
  border: 1px solid #dcdcdc;
  padding: 1em;
  text-align: left;
}
.wr-ward-page table.wr-comparison-table tr:nth-child(even) td {
  background-color: #f2f7fb; /* 薄いブルーで視認性を上げる */
}

/* --- お客様の声ボックス --- */
.wr-voice-box {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-top: 4px solid #0055aa;
  padding: 1.5em;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.wr-voice-title {
  margin-top: 0;
  color: #003366;
  font-size: 1.1rem;
}
.wr-voice-text {
  margin-bottom: 0;
  font-style: italic;
}

/* --- CTA（コンタクト）エリア --- */
.wr-cta-box {
  background-color: #f0f5fa;
  padding: 2.5em;
  text-align: center;
  border-radius: 8px;
  margin-top: 3em;
}
.wr-cta-title {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 1em;
  font-weight: bold;
}
.wr-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
  flex-wrap: wrap;
}
.wr-btn {
  display: inline-block;
  padding: 1em 3em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.wr-btn-contact {
  background-color: #d32f2f; /* 目を引く赤系でコンバージョンを誘導 */
  color: #ffffff;
}
.wr-btn-contact:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}
.wr-btn-tel {
  background-color: #ffffff;
  color: #003366;
  border: 2px solid #003366;
}
.wr-btn-tel:hover {
  background-color: #003366;
  color: #ffffff;
}

/* --- モバイル対応 --- */
@media screen and (max-width: 600px) {
  .wr-h3-title {
    font-size: 1.3rem;
  }
  .wr-image-float-right,
  .wr-image-float-left {
    float: none;
    max-width: 100%;
    margin: 0 auto 1.5em;
  }
  .wr-image-container {
    text-align: center;
  }
  #wr-report-section .wr-report-images {
    flex-direction: column;
  }
  .wr-btn {
    padding: 1em 2em;
    width: 100%;
    box-sizing: border-box;
  }
}

/* --- 大宮区・浦和区 共通スタイル --- */
:root {
  --wr-blue: #4CBADC;
  --wr-green: #AAD372;
  --wr-cta: #FF6B6B;
  --wr-dark-blue: #003366;
}

.wr-ward-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto;
  padding: 20px;
}

/* --- 見出し --- */
.wr-h3-title {
  font-size: 1.6rem;
  color: var(--wr-dark-blue);
  border-bottom: 3px solid var(--wr-blue);
  padding-bottom: 10px;
  margin: 40px 0 20px;
  position: relative;
}

.wr-h4-title {
  font-size: 1.3rem;
  color: #1a1a1a;
  border-left: 6px solid var(--wr-green);
  padding-left: 15px;
  margin: 30px 0 15px;
}

/* --- ボックス装飾 --- */
.wr-worry-list {
  background: #fff8f8;
  border: 1px solid #ffcccc;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.wr-worry-list li {
  color: #d32f2f;
  margin-bottom: 10px;
  font-weight: bold;
}

.wr-feature-box {
  background: #f0f7ff;
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
}

.wr-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}
.wr-area-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
}

/* --- プランカード --- */
.wr-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wr-plan-card {
  border: 2px solid var(--wr-blue);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
.wr-plan-header {
  background: var(--wr-blue);
  color: white;
  padding: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* --- 比較表（強力版） --- */
.wr-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.wr-comparison-table th {
  background-color: var(--wr-dark-blue) !important;
  color: white !important;
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}
.wr-comparison-table td {
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
}
.wr-comparison-table tr:nth-child(even) td {
  background-color: #f9f9f9;
}

/* --- CTA エリア --- */
.wr-cta-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}
.wr-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.wr-btn-tel, .wr-btn-contact {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s;
  display: block;
}
.wr-btn-tel {
  background: var(--wr-dark-blue);
  color: white;
}
.wr-btn-contact {
  background: var(--wr-cta);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.wr-btn-sub { font-size: 0.8rem; font-weight: normal; }

@media (max-width: 768px) {
  .wr-area-grid, .wr-plan-grid, .wr-cta-buttons {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}


/* --- 中央区用追加スタイル（裏ワザ・ステップ） --- */

.wr-step-box {
  background-color: #f9fbff;
  border: 1px solid #cce0ff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.wr-step-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.wr-step-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
  line-height: 1.6;
}
.wr-step-list li::before {
  content: "▶";
  color: var(--wr-blue, #4CBADC);
  position: absolute;
  left: 0;
  top: 0;
}

/* 裏ワザボックスの装飾 */
.wr-trick-box {
  background: #ffffff;
  border: 2px solid var(--wr-green, #AAD372);
  border-radius: 8px;
  padding: 30px 20px 20px;
  margin: 40px 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.wr-trick-badge {
  background: var(--wr-green, #AAD372);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 5px 20px;
  border-radius: 50px;
  position: absolute;
  top: -18px;
  left: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.wr-trick-title {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 1px dashed #cccccc;
  padding-bottom: 10px;
}

/* --- 見沼区用追加スタイル（料金プランカード） --- */

.wr-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 25px 0;
}
.wr-price-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.wr-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.wr-price-header {
  background: var(--wr-blue, #4CBADC);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px;
}
.wr-price-desc {
  background: #f4f8fc;
  color: #555555;
  font-size: 0.85rem;
  padding: 8px;
  border-bottom: 1px solid #eeeeee;
}
.wr-price-amount {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .wr-price-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 桜区用追加スタイル --- */

/* 桜環境センターの料金リスト */
.wr-fee-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  max-width: 400px;
}
.wr-fee-list li {
  padding: 10px 20px;
  border-bottom: 1px dashed #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wr-fee-list li:last-child {
  border-bottom: none;
}
.wr-fee-list li span {
  font-weight: bold;
  color: var(--wr-dark-blue, #003366);
}

/* お悩みボックス */
.wr-worry-box {
  background-color: #fff8f8;
  border-left: 5px solid #d32f2f;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}
.wr-worry-box p {
  margin: 0;
  color: #333333;
}

/* 積み放題プラン（桜区版） */
.wr-plan-price {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px;
  margin: 0;
}

/* =======================================================================
   Merged from responsive.css
   ======================================================================= */

@charset "UTF-8";
/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  .trim {
    height: auto;
  }
  .trim img {
    position: static;
  }
}
@media only screen and (max-width: 1199px) {
  .inner {
    width: 89.84375%;
  }
}
@media only screen and (max-width: 991px) {
  .inner {
    width: 100%;
  }
  .breadcrumb-wrapper .inner, .main > .inner, .footer .inner {
    box-sizing: border-box;
    padding: 0 6.11111%;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .primary,
  .secondary {
    float: none;
    max-width: 100%;
    width: 100%;
  }

  p {
    font-size: 12px;
    line-height: 2;
  }
}
/* ----------------------------------------------------------------------
 カラムレイアウト
---------------------------------------------------------------------- */
/* column-layout01 */
@media only screen and (max-width: 767px) {
  .column-layout01-title {
    font-size: 22px;
    margin: 24px 0 18px;
  }

  .column-layout01 {
    margin: 30px 0;
  }

  .column-layout01-item {
    float: none;
    margin-bottom: 1em;
    width: 100%;
  }
  .column-layout01-item:nth-of-type(even) {
    margin-left: 0;
  }
  .column-layout01-item:nth-of-type(odd) {
    margin-right: 0;
  }
  .column-layout01-item:last-child {
    margin-bottom: 0;
  }
}
/* column-layout02 */
@media only screen and (max-width: 1199px) {
  .column-layout02-inner {
    padding: 100px 5.07813%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column-layout02-title {
    font-size: 22px;
  }

  .column-layout02-inner {
    padding: 30px 20px;
  }

  .column-layout02-item {
    float: none;
    margin-left: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .column-layout02-item:first-of-type {
    margin-bottom: 30px;
  }
  .column-layout02-item:last-child {
    margin-bottom: 0;
  }
}
/* column-layout03 */
@media only screen and (max-width: 991px) {
  .column-layout03 {
    padding: 0 5.07813%;
  }

  .column-layout03-item {
    width: auto;
  }
  .column-layout03-item:first-child {
    margin-right: 5.07813%;
  }

  .column-layout03-content {
    padding: 6.89655% 0;
  }

  .column-layout03-title {
    width: 100%;
  }

  .column-layout03-text {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column-layout03-wrapper {
    background: #f6f6f6;
    padding: 6.89655% 6.11111% 0;
  }

  .column-layout03 {
    background: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
  .column-layout03:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .column-layout03-item:first-child {
    margin-right: 0;
  }

  .column-layout03-content {
    background: #f6f6f6;
    padding: 30px 6.11111%;
  }
  .column-layout03-wrapper .column-layout03-content {
    padding-left: 0;
    padding-right: 0;
  }

  .column-layout03-title {
    font-size: 18px;
    margin-bottom: 0.77778em;
  }
}
/* column-layout04 */
@media only screen and (max-width: 767px) {
  .column-layout04 {
    margin: 30px 0;
  }

  .column-layout04-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .column-layout04-item:nth-of-type(even), .column-layout04-item:nth-of-type(odd) {
    float: none;
  }
  .column-layout04-item:last-child {
    margin-bottom: 0;
  }

  .column-layout04-title {
    font-size: 22px;
  }
}
/* column-layout05 */
@media only screen and (max-width: 1199px) {
  .column-layout05 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .column-layout05 {
    margin: 20px 0;
  }
  .headline-primary + .column-layout05 {
    margin-top: -14px;
  }

  .column-layout05-item {
    float: none;
    margin-bottom: 14px;
    width: 100%;
  }
  .column-layout05-item:nth-of-type(even) {
    margin-left: 0;
    margin-bottom: 0;
  }
  .column-layout05-item:nth-of-type(odd) {
    margin-right: 0;
  }
}
/* ----------------------------------------------------------------------
 記事一覧
---------------------------------------------------------------------- */
/* article01 */
@media only screen and (max-width: 991px) {
  .article01 {
    width: 31.45833%;
  }
  .article01:nth-of-type(4n) {
    margin-right: 1.875%;
  }
  .article01:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .article01 {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .article01:nth-of-type(3n), .article01:nth-of-type(4n) {
    margin-right: 0;
  }
  .article01:last-child {
    margin-bottom: 0;
  }

  .article01-thumbnail {
    float: left;
    margin-right: 12px;
    margin-bottom: 0;
    width: 100px;
    height: 100px;
  }

  .article01-title {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* article02 */
@media only screen and (max-width: 767px) {
  .article02 {
    margin-bottom: 15px;
    width: 100%;
  }
  .article02:nth-of-type(even) {
    margin-left: 0;
  }
  .article02:nth-of-type(odd) {
    margin-right: 0;
  }

  .article02-thumbnail {
    margin-right: 12px;
    margin-bottom: 0;
    width: 100px;
    height: 100px;
  }

  .article02-content {
    float: none;
    width: auto;
  }

  .article02-title {
    font-size: 12px;
  }

  .article02-date {
    font-size: 10px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 8.4px;
  }
}
/* article03 */
@media only screen and (max-width: 991px) {
  .article03 {
    width: calc((100% - 20px) / 3);
  }
  .article03:nth-of-type(4n) {
    margin-right: 10px;
  }
  .article03:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .article03 {
    background: transparent;
    margin-bottom: 20px;
    width: calc((100% - 15px) / 2);
    margin-right: 0;
    margin-bottom: 30px;
  }
  .article03:nth-of-type(odd) {
    margin-right: 15px;
  }
  .article03:nth-of-type(4n) {
    margin-right: 0;
  }

  .article03-content {
    padding: 0;
  }

  .article03-title {
    font-size: 12px;
    height: 38px;
    margin: 1em 0 0.16667em;
  }

  .article03-date {
    font-size: 10px;
  }

  .article03-category-item {
    font-size: 10px;
  }
}
/* article04 */
@media only screen and (max-width: 1199px) {
  .article04-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 991px) {
  .article04-text {
    display: none;
  }

  .article04-title {
    font-size: 18px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .article04 {
    margin-bottom: 30px;
  }

  .article04-inner {
    display: block;
  }

  .article04-thumbnail {
    float: none;
    width: 100%;
  }

  .article04-content {
    float: none;
    padding: 20px 20px 16px;
    width: 100%;
  }

  .article04-date {
    font-size: 10px;
  }

  .article04-title {
    font-size: 16px;
  }
}
/* article05 */
@media only screen and (max-width: 991px) {
  .article05 {
    width: 33.33333%;
  }

  /*
  .article05-thumbnail {
  	height: calc((100vw - 9px) / 3 * 252 / 364);
  	height: calc((100vw - 6px) / 3 * 252 / 364);
  }
  */
}
@media only screen and (max-width: 767px) {
  .archive-gallery {
    background: transparent;
    padding-bottom: 50px;
  }

  .article05 {
    border: none;
    margin: 0 6.11111% 30px;
    width: 100%;
  }
  .article05:hover {
    background: none;
  }

  .article05-content {
    padding: 0;
  }

  .article05-title {
    font-size: 18px;
    height: auto;
    margin: 0.5em 0 0.11111em;
  }

  .article05-meta {
    font-size: 10px;
  }

  .article05-date {
    font-size: 10px;
  }

  .article05-category {
    font-size: 10px;
  }
}
/* article06 */
@media only screen and (max-width: 991px) {
  .article06 a:hover::before {
    background: transparent !important;
  }
  .article06:hover .article06-content {
    opacity: 0;
    transform: none;
  }
}
/* article07 */
@media only screen and (max-width: 767px) {
  .article07 {
    display: block;
  }

  .article07-thumbnail {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
  }

  .article07-content {
    display: block;
    padding: 0;
  }
}
/* デザインされた記事一覧 */
@media only screen and (max-width: 767px) {
  .styled-post-list1 li {
    margin-bottom: 15px;
  }

  .styled-post-list1-thumbnail {
    margin-right: 12px;
    width: 100px;
    height: 100px;
  }

  .styled-post-list1-date {
    font-size: 10px;
    line-height: 1;
    margin-bottom: 8.4px;
  }

  .styled-post-list1-title {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ----------------------------------------------------------------------
 コンテンツ
---------------------------------------------------------------------- */
/* content01 */
@media only screen and (max-width: 767px) {
  .content01 {
    margin: 34.5px 0 33px;
  }

  .content01-title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 3px;
  }
}
/* content02 */
@media only screen and (max-width: 1199px) {
  .content02-inner {
    padding: 100px 5.07813% 100px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .content02-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .content02-item {
    margin-left: 0;
    padding-bottom: 0;
    width: 100%;
  }

  .content02-title {
    font-size: 24px;
    line-height: 1.5;
  }

  .content02-button {
    font-size: 13px;
    margin: 20px auto 30px;
    line-height: 40px;
    position: relative;
    width: 160px;
    height: 40px;
  }
}
/* content03 */
@media only screen and (max-width: 1199px) {
  .content03-text {
    width: 60.86957%;
  }
}
@media only screen and (max-width: 991px) {
  .content03 {
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .content03 {
    margin: 30px 0;
  }

  .content03-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0.66667em;
  }

  .content03-text {
    width: 100%;
  }
}
/* content04 */
@media only screen and (max-width: 1199px) {
  .content04 {
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .content04-item {
    width: 46.66667%;
  }
  .content04-item:nth-of-type(odd) {
    margin-right: 3.33333%;
  }
  .content04-item:nth-of-type(even) {
    margin-left: 3.33333%;
  }
}
@media only screen and (max-width: 767px) {
  .content04 {
    margin: 0;
    padding: 30px 6.96203%;
    width: 100%;
  }

  .content04-item {
    float: none;
    width: 100%;
  }
  .content04-item:nth-of-type(even) {
    margin-left: 0;
  }
  .content04-item:nth-of-type(odd) {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .content04-item dt {
    display: block;
  }

  .content04-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0.66667em;
  }

  .content04-text {
    font-size: 12px;
    line-height: 2;
  }
}
/* ----------------------------------------------------------------------
 検索
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .search-form {
    margin: 0;
  }
}
/* ----------------------------------------------------------------------
 セレクトボックス
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .select {
    margin: 0;
  }
  .select:after {
    width: 12px;
    height: 12px;
  }
  .select select {
    border-radius: 0;
  }
}
/* ----------------------------------------------------------------------
 タブ
---------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  .tab {
    width: 928px;
  }
  .tab li:nth-child(5n+1) {
    border-left: none;
  }
  .tab li:nth-child(4n) ~ li {
    border-top: none;
  }
  .tab li:nth-child(4n+1) {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (max-width: 991px) {
  .tab {
    width: 696px;
  }
  .tab li:nth-child(5n+1), .tab li:nth-child(4n+1) {
    border-left: none;
  }
  .tab li:nth-child(3n) ~ li {
    border-top: none;
  }
  .tab li:nth-child(3n+1) {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (max-width: 767px) {
  .tab {
    box-sizing: border-box;
    padding: 30px 6.11111%;
    width: 100%;
  }
  .tab li {
    box-sizing: border-box;
    line-height: 48px;
    width: 50%;
    border-top: none;
    border-left: 1px solid #ddd;
  }
  .tab li:nth-child(odd) {
    border-right: none;
  }
  .tab li:nth-child(5n+1), .tab li:nth-child(4n+1) {
    border-left: 1px solid #ddd;
  }
  .tab li:nth-child(1), .tab li:nth-child(2) {
    border-top: 1px solid #ddd;
  }
  .tab li:last-child {
    border-right: 1px solid #ddd;
  }
}
/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .button {
    font-size: 13px;
    margin: 30px 0;
  }
  .button a {
    height: 40px;
    line-height: 40px;
    width: 160px;
  }
}
/* ----------------------------------------------------------------------
 見出し
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .headline-primary {
    font-size: 24px;
    line-height: 1.5;
    margin: 24px 0;
  }

  .headline-bar {
    font-size: 14px;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    margin: 30px 0 20px;
    padding: 0;
    text-align: center;
  }

  .headline-link {
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-top: 0;
    top: 0;
    right: 15px;
    vertical-align: middle;
  }
  .headline-link:after {
    font-size: 12px;
    vertical-align: inherit;
  }
}
/* ----------------------------------------------------------------------
 ページネーション
---------------------------------------------------------------------- */
/* nav-links01 */
@media only screen and (max-width: 767px) {
  .nav-links01 {
    border: 1px solid #ddd;
    display: block;
    margin-bottom: 30px;
  }

  .nav-links01-previous,
  .nav-links01-next {
    display: block;
    float: left;
    text-align: center;
    width: 50%;
  }
  .nav-links01-previous a,
  .nav-links01-next a {
    line-height: 50px;
    height: 50px;
    padding: 0;
  }

  .nav-links01-previous a::before {
    color: #aeaeae;
    font-size: inherit;
    margin-top: 0;
    top: 0;
    left: 17px;
  }

  .nav-links01-next a::after {
    color: #aeaeae;
    font-size: inherit;
    margin-top: 0;
    top: 0;
    right: 17px;
  }
}
/* nav-links02 */
@media only screen and (max-width: 767px) {
  .nav-links02 {
    margin: 30px 0;
  }

  .nav-links02-previous,
  .nav-links02-next {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    width: 49.05063%;
  }

  .nav-links02-previous {
    float: left;
  }
  .nav-links02-previous a::before {
    font-size: 13px;
    position: relative;
    left: 0;
    margin-right: 0.31646px;
  }

  .nav-links02-next {
    float: right;
  }
  .nav-links02-next a::after {
    font-size: 13px;
    position: relative;
    right: 0;
    margin-left: 0.31646px;
  }
}
/* ----------------------------------------------------------------------
 リスト
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .list-group li {
    font-size: 12px;
  }
  .side_widget .list-group li {
    font-size: 12px;
  }
  .side_widget .list-group li:first-child {
    border-top: none;
  }
  .list-group a {
    padding: 10px 20px;
  }
}
/* ----------------------------------------------------------------------
 記事
---------------------------------------------------------------------- */
@media only screen and (max-width: 991px) {
  .post-header {
    box-sizing: border-box;
  }

  .post-meta-box {
    margin: 26.4px 0;
    padding: 0;
  }
  #single_share_bottom + .post-meta-box {
    margin-top: 20px;
  }

  .post-meta-box-item {
    border: none;
    display: block;
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
  }
  .post-meta-box-item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .post-header {
    margin: 30px auto;
  }

  .post-title {
    font-size: 18px;
    line-height: 1.5;
  }

  .post-date {
    font-size: 10px;
  }

  .post-category {
    font-size: 10px;
  }

  .post-thumbnail {
    margin-bottom: 30px;
  }

  .post-content p {
    margin-bottom: 23px;
  }

  .post-meta-box {
    background: none;
  }

  .single_share + .nav-links01 {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 991px) {
  #single_banner_area .single_banner_left,
  #single_banner_area .single_banner_right,
  #single_banner_area_bottom .single_banner_left,
  #single_banner_area_bottom .single_banner_right,
  #single_banner_area2 .single_banner_left,
  #single_banner_area2 .single_banner_right {
    display: block;
  }

  /* 広告 */
  #single_banner_area {
    margin: 0 0 15px 0;
    text-align: center;
  }

  #single_banner_area .single_banner_left {
    float: none;
    padding: 0 0 15px 0;
    margin: 0 auto;
  }

  #single_banner_area .single_banner_right {
    float: none;
    padding: 0 0 15px 0;
    margin: 0 auto;
  }

  #single_banner_area img {
    max-width: 100%;
    height: auto;
    display: inline;
  }

  /* 広告2 */
  #single_banner_area_bottom {
    /*margin: -20px 0 15px;*/
    margin: 0 0 15px;
    text-align: center;
  }

  #single_banner_area_bottom .single_banner_left {
    float: none;
    padding: 0 0 15px 0;
    margin: 0 auto;
  }

  #single_banner_area_bottom .single_banner_right {
    float: none;
    padding: 0;
    margin: 0 auto;
  }

  #single_banner_area_bottom img {
    max-width: 100%;
    height: auto;
    display: inline;
  }

  /* 広告（ショートコードver） */
  #single_banner_area2 {
    margin: 0 0 15px 0;
    text-align: center;
  }

  #single_banner_area2 .single_banner_left {
    float: none;
    padding: 0 0 15px 0;
    margin: 0 auto;
  }

  #single_banner_area2 .single_banner_right {
    float: none;
    padding: 0 0 5px 0;
    margin: 0 auto;
  }

  #single_banner_area2 img {
    max-width: 100%;
    height: auto;
    display: inline;
  }
}
/* ----------------------------------------------------------------------
 ギャラリー
---------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  .gallery02 .gallery02-item {
    height: 650px;
  }
}
@media only screen and (max-width: 991px) {
  .gallery02 .gallery02-item {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .gallery-category {
    background: transparent;
  }

  .gallery {
    background: #eaeaea;
    padding: 0;
    position: relative;
  }

  .gallery01 {
    width: 215px;
    width: 162px;
    margin: 0 50px;
    width: calc(100% - 100px);
    box-sizing: border-box;
  }
  .gallery01.slick-slider {
    position: static;
  }
  .gallery01 .slick-arrow {
    border: none;
    width: 50px;
    height: 48px;
  }
  .gallery01 .slick-prev {
    top: 0;
    left: 0;
    transform: translate(0px, 0px);
  }
  .gallery01 .slick-next {
    top: 0;
    right: 0;
    transform: translate(0px, 0px);
  }

  .gallery01-item {
    background: transparent;
    box-sizing: border-box;
    margin: 0;
    height: 48px;
  }
  .gallery01-item:hover {
    opacity: 1;
  }

  /*
  .gallery01-item-inner {
  	background: transparent;
  	border: none;
  	margin: 0 3px;
  	box-sizing: border-box;
  	width: 100%;
  	height: 100%;
  }
  */
  .gallery02 {
    height: 220px;
    /*
    .slick-arrow, .slick-arrow:hover {
    	background: rgba(0,0,0,.5);
    	border: none;
    	width: 50px;
    	height: 48px;
    	z-index: 9;
    	&::before {
    		color: #fff;
    	}
    }
    .slick-prev {
    	left: 0;
    }
    .slick-next {
    	right: 0;
    }
    */
  }
  .gallery02 .gallery02-item {
    height: 220px;
  }
}
/* ----------------------------------------------------------------------
 ニュース
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .archive-news {
    margin: 30px 0;
  }

  .headline-news-list {
    padding-left: 15px;
    margin-bottom: 0;
    text-align: left;
  }
}
/* ----------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------- */
@media only screen and (max-width: 991px) {
  .top-slider {
    height: calc(100vh - 55px);
  }

  .header-youtube,
  .header-video {
    height: calc(100vh - 55px);
  }
}
@media only screen and (max-width: 767px) {
  .top-blog + .button {
    margin-bottom: 50px;
  }

  .top-slider-content-inner:after {
    bottom: 30px;
  }

  .top-slider-text {
    font-size: 10px;
  }

  .top-news {
    margin-bottom: -15px;
  }

  .top-blog {
    margin-bottom: -30px;
  }
}
/* ----------------------------------------------------------------------
 ブログアーカイブ
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .archive-header {
    margin: 30px 0;
  }

  .archive-title {
    font-size: 22px;
    margin-bottom: .5em;
  }
}
/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
  .header-bar {
    background: #fff;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    margin: 0;
    position: relative;
    top: 0px;
    left: 0px;
    height: 55px;
    width: 100%;
    z-index: 100;
  }
	.header-bar-inner {
		width: 100%;
	}
}
@media only screen and (max-width: 1200px) {
  .logo {
    float: left;
    font-size: 18px;
    height: auto;
    line-height: 55px;
    margin-left: 15px;
    position: relative;
    top: 0;
    width: calc(100% - 90px);
  }
  .logo a {
    display: block;
    height: 100%;
  }
  .logo img {
    vertical-align: middle;
  }

  .logo-image {
    font-size: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .global-nav-button {
    border-left: 1px solid #ddd;
    display: inline-block;
    font-size: 11px;
    line-height: 56px;
    position: absolute;
    right: 0px;
    width: 56px;
    height: 56px;
    z-index: 9;
  }
  .global-nav-button:before {
    color: #000;
    content: "\f0c9";
    display: block;
    font-family: "design_plus";
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 24px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    width: 24px;
    height: 24px;
  }
  .global-nav-button.active:before {
    content: "\e91a";
    font-size: 24px;
  }
}
@media only screen and (max-width: 1200px) {
  .global-nav {
    display: none;
    -moz-box-shadow: 1px 2px 1.5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 2px 1.5px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 1.5px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .header-bar-fixed .global-nav {
    position: absolute;
    top: 56px;
    z-index: 9;
  }
  .global-nav .sub-menu {
    display: none;
    opacity: 1;
    position: relative;
    transform: none;
    transition: none;
    visibility: visible;
  }
  .global-nav .sub-menu .menu-item-has-children:after {
    border: none;
  }
  .global-nav .sub-menu a {
    line-height: 50px;
    padding: 0 15px;
    padding-left: 28px;
    width: 100%;
  }
  .global-nav .sub-menu ul {
    top: 100%;
    left: 0;
  }
  .global-nav > ul > li {
    float: none;
  }
  .global-nav > ul > li > a {
    line-height: 50px;
    padding: 0 15px;
  }
  .global-nav > ul > li > a:before {
    content: "\e910";
    display: inline-block;
    font-size: 13px;
    font-family: "design_plus";
    position: absolute;
    top: 0;
    right: 20px;
  }
  .global-nav .menu-item-has-children > a span::before {
    color: #fff;
    content: "\e90e";
    display: inline-block;
    font-size: 13px;
    font-family: "design_plus";
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    width: 50px;
    height: 50px;
  }
  .global-nav .menu-item-has-children > a span::before:hover {
    cursor: pointer;
  }
  .global-nav .menu-item-has-children.active > a span::before {
    content: "\e911";
  }
  .global-nav .menu-item-has-children > a:before {
    content: "";
  }
  .global-nav .current-menu-item > a {
    color: #fff;
  }
  .global-nav a {
    color: #fff !important;
    font-size: 13px;
    height: 50px;
    overflow: hidden;
  }
  .global-nav a:hover {
    color: #fff;
  }
}
@media only screen and (max-width: 1200px) {
  .header-bar-fixed ~ .top-slider-wrapper,
  .header-bar-fixed ~ .signage {
    margin-top: 55px;
  }
  .admin-bar .header-bar-fixed ~ .top-slider-wrapper, .admin-bar
  .header-bar-fixed ~ .signage {
    margin-top: 23px;
  }

  .signage {
    height: 260px;
  }
}
@media only screen and (max-width: 782px) {
  .admin-bar .header-bar-fixed ~ .top-slider-wrapper, .admin-bar
  .header-bar-fixed ~ .signage {
    margin-top: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .signage-title {
    font-size: 30px;
  }

  .signage-sub-title {
    font-size: 12px;
  }

  .breadcrumb {
    font-size: 10px;
    height: 44px;
    line-height: 44px;
  }
}
/* ----------------------------------------------------------------------
 サイドコンテンツ
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .side_widget {
    margin: 30px 0;
  }
  .side_widget:first-child {
    margin-top: 30px;
  }
  .side_widget .headline-bar {
    margin-bottom: 20px;
  }

  .ad_widget {
    text-align: center;
  }

  .widget_archive select, .widget_categories select, .tcdw_archive_list_widget select {
    font-size: 12px;
  }
}
/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  .footer-bar01-inner {
    width: 89.84375%;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: 40px;
  }

  .footer-gallery-title {
    font-size: 24px;
    height: 50px;
    line-height: 50px;
  }

  .footer-nav-wrapper {
    height: auto;
    overflow: visible;
  }

  .footer-nav {
    display: block;
  }

  .footer-nav-inner {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 0;
    width: 100%;
  }

  .footer-widget {
    font-size: 10px;
    margin: 0 0 30px;
    width: 100%;
  }
  .footer-widget.widget_nav_menu {
    float: none;
    width: calc(50% - 5px);
  }
  .footer-widget:nth-of-type(even) {
    margin-left: 10px;
  }

  .footer-content {
    margin: 30px 0;
  }

  .footer-bar01 {
    background: none !important;
  }

  .footer-bar01-inner {
    width: 100%;
  }

  .social-nav {
    left: 0;
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .social-nav li {
    display: inline-block;
    float: none;
    margin: 0 10px;
  }
  .social-nav li:before {
    color: #ccc;
  }

  .social-nav-item a::before {
    color: #666;
  }

  .copyright {
    font-size: 10px;
    height: 50px;
    line-height: 50px;
  }

  .pagetop a {
    width: 50px;
    height: 50px;
  }
  .pagetop a:before {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }

  img.f_logo { max-width: 80%!important ; height: auto; }
}
/* ----------------------------------------------------------------------
 コメント
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .headline-comment {
    font-size: 12px;
    padding: 0 20px;
    text-align: left;
  }

  #comments {
    margin-bottom: 30px;
  }

  #comment_header ul li a,
  #comment_header ul li p {
    border: none;
    line-height: 160%;
    padding: 0;
    text-align: left;
  }

  #comment_header ul li#trackback_closed {
    width: 80%;
  }

  #comment_header ul li#comment_closed {
    width: 20%;
    text-align: right;
  }

  #comment_header ul li.comment_switch_active a, #comment_header #comment_closed p {
    background: none;
    color: #666;
  }

  #comment_header ul li.comment_switch_active a::after, #comment_header #comment_closed p::after {
    border: none;
  }

  .comment {
    padding: 10px 20px;
  }

  .comment .comment-meta-left {
    float: none;
    width: auto;
  }

  .no_comment {
    padding-bottom: 0;
  }

  .comment_form_wrapper {
    padding: 20px 15px;
  }

  #guest_info div {
    margin-bottom: 20px;
  }
  #guest_info input {
    background: #f5f5f5;
    border-color: #eee;
    height: 30px;
  }
  #guest_info label {
    margin-bottom: 10px;
  }

  #comment_textarea textarea {
    background: #f5f5f5;
    border-color: #eee;
  }

  #submit_comment {
    background: #ccc;
    font-size: 12px;
    margin-top: 15px;
    width: 145px;
    height: 40px;
  }
}
/* ----------------------------------------------------------------------
 シェアボタン
---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .share-top {
    margin-bottom: 24px;
  }

  .share-btm {
    margin-bottom: 0;
  }
  .share-btm .type2 {
    margin-bottom: 0;
  }
}


/* パスワード保護 */
@media only screen and (max-width:991px) {
.post-password-form { width: 100%; padding: 20px; display:block; text-align: center; }
.post-password-form input[type="password"] { display:block; margin: 1em auto; }
.post-password-form input[type="submit"] { display:block; margin: 0 auto; }
}
@media only screen and (max-width:767px) {
}

/* =======================================================================
   Merged from add.css
   ======================================================================= */

/* ----------------------------------------------------------------------
 電話番号リンクをスマホのみ有効
---------------------------------------------------------------------- */
@media (min-width: 621px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}

/* ----------------------------------------------------------------------
 スマホ・PC画像振り分け
---------------------------------------------------------------------- */

@media screen and (min-width: 768px) ,print{
	.sp_only{
	display:none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc_only{
	display:none !important;
	}
}

/* ----------------------------------------------------------------------
 破線hr
---------------------------------------------------------------------- */

hr.hasen{
border:none;
border-top:dashed 1px #999;
height:1px;
color:#FFFFFF;
margin:15px 0 !important;
}

/* ----------------------------------------------------------------------
 画像リンク
---------------------------------------------------------------------- */
a:hover img{
filter:alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
}

/* ----------------------------------------------------------------------
 フォントファミリー
---------------------------------------------------------------------- */
.yu_font{
font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif !important;
}

/* ----------------------------------------------------------------------
 AdobeFont
---------------------------------------------------------------------- */
.ud_fontR{
font-family: fot-udkakugo-large-pr6n,sans-serif;
font-weight: 500;
font-style: normal;
}
.ud_fontB{
font-family: fot-udkakugo-large-pr6n,sans-serif;
font-weight: 600;
font-style: normal;
}
.cent_fontR{
font-family: century-gothic,sans-serif;
font-weight: 400;
font-style: normal;
}
.cent_fontB{
font-family: century-gothic,sans-serif;
font-weight: 700;
font-style: normal;
}
.din_fontR{
	font-family: din-2014,sans-serif;
	font-weight: 400;
	font-style: normal;
}
.din_fontB{
	font-family: din-2014,sans-serif;
	font-weight: 700;
	font-style: normal;
}


/* =================================
font（weight）
================================= */
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal !important;
}


/* =================================
font（size %）
================================= */
.font50 {
	font-size: 50% !important;
}
.font60 {
	font-size: 60% !important;
}
.font70 {
	font-size: 70% !important;
}
.font80 {
	font-size: 80% !important;
}
.font90 {
	font-size: 90% !important;
}
.font100 {
	font-size: 100% !important;
}
.font110 {
	font-size: 110% !important;
}
.font120 {
	font-size: 120% !important;
}
.font130 {
	font-size: 130% !important;
}
.font150 {
	font-size: 150% !important;
}

/* =================================
font（size px）
================================= */
.font10px{
	font-size: 10px;
}
.font12px{
	font-size: 12px;
}
.font14px{
	font-size: 14px;
}
.font16px{
	font-size: 16px;
}
.font18px{
	font-size: 18px;
}
.font20px{
	font-size: 20px;
}
.font25px{
	font-size: 25px;
}
.font30px{
	font-size: 30px;
}
.font32px{
	font-size: 32px;
}
.font35px{
	font-size: 35px;
}
@media screen and (min-width: 768px) ,print{
	.font10-12px{
		font-size: 12px;
	}
	.font12-14px{
		font-size: 14px;
	}
	.font14-16px{
		font-size: 16px;
	}
	.font16-18px{
		font-size: 18px;
	}
	.font16-20px{
		font-size: 20px;
	}
	.font18-20px{
		font-size: 20px;
	}
	.font18-25px{
		font-size: 25px;
	}
	.font20-25px{
		font-size: 25px;
	}
	.font20-30px{
		font-size: 30px;
	}
	.font23-30px{
		font-size: 30px;
	}
	.font25-30px{
		font-size: 30px;
	}
	.font30-35px{
		font-size: 35px;
	}
	.font30-40px{
		font-size: 40px;
	}
}
@media screen and (max-width: 767px) {
	.font10-12px{
		font-size: 10px;
	}
    .font12-14px{
		font-size: 12px;
	}
	.font14-16px{
		font-size: 14px;
	}
	.font16-18px{
		font-size: 16px;
	}
	.font16-20px{
		font-size: 16px;
	}
	.font18-20px{
		font-size: 18px;
	}
	.font18-25px{
		font-size: 18px;
	}
	.font20-25px{
		font-size: 20px;
	}
	.font20-30px{
		font-size: 20px;
	}
	.font23-30px{
		font-size: 23px;
	}
	.font25-30px{
		font-size: 25px;
	}
	.font30-35px{
		font-size: 30px;
	}
	.font30-40px{
		font-size: 30px;
	}
}

/* =================================
font（color）
================================= */

.white{
	color:#fff;
}
.yellow{
	color:#ffff00;
}
.sky{
	color:#2D9BE1;
}
.gray{
	color:#999;
}
.black{
	color: #333;
}
.pink{
	color:#ff8787;
}

/* =================================
テキスト揃え
================================= */
.txtJustify{
	text-align:justify;
}
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}

/* =================================
テキスト行間
================================= */
.lh10{
	line-height:1em;
}
.lh15{
	line-height:1.5em;
}
.lh18{
	line-height:1.8em;
}
.lh20{
	line-height:2.0em;
}
.lh25{
	line-height:2.5em;
}

/* =================================
文字間
================================= */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}

/* =================================
改行
================================= */

/*スマホのみ改行*/
@media screen and (min-width: 768px) ,print{
    .kaigyouSp {
     display: none;
    }
}
/*PCのみ改行*/
@media screen and (max-width: 767px) {
    .kaigyouPc {
        display: none;
    }
}

/* =================================
見出し
================================= */
/*真ん中揃え　アンダーライン（ブルー）*/
.midashi01 {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.midashi01:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #2D9BE1;
  border-radius: 2px;
}

/*真ん中揃え　アンダーライン（イエロー）*/
.midashi02 {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
	color:#FFF1AC;
}
.midashi02:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFF1AC;
  border-radius: 2px;
}

/*アンダーライン（色分け）*/
.midashi03 {
  border-bottom: solid 3px #a0caec;
  position: relative;
}
.midashi03:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffff00;
  bottom: -3px;
  width: 30%;
}


/* =================================
背景色
================================= */
.bgWhite{
	background: #fff;
}
.bgGray{
	background: #F2F2F2;
}
.bgSky{
	background:#2D9BE1;
}
.bgWhiteSky{
	background:#2a9dff26;
}
.bgLiteSky{
	background:#A0CAEC;
}
.bgYellow{
	background:#ffff00;
}


/* =================================
角丸
================================= */
.radius10{
	border-radius:10px;
}
.radius15{
	border-radius:15px;
}
.radius20{
	border-radius:20px;
}

/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
/*ボタンサイズ（100%）*/
.button100{
  width: 100%;	
}
/*ボタンサイズ（250px）*/
.button250{
  width: 250px;	
}
/*ボタンサイズ（300px）*/
.button300{
  width: 300px;	
}
/*ボタンサイズ（350px）*/
.button350{
  width: 350px;	
  max-width:100%;
}

/*ボタン（真ん中揃え）*/
.buttonCenter{
	margin-left:auto;
	margin-right:auto;
}

/*ボタン矢印*/
.buttonBase span{
	display:block;
	position:relative;
}
.buttonBase span::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f054";
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/*ボタン（ベース）*/
.buttonBase {
  display: block;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.buttonBase::before,
.buttonBase::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.buttonBase,
.buttonBase::before,
.buttonBase::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*ボタン０１*/
.btn01 {
  position: relative;
  z-index: 2;
  border: 2px solid #2D9BE1;
  background:#2D9BE1;
  color: #fff !important;
  line-height: 50px;
  -webkit-perspective: 300px;
  perspective: 300px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.btn01:hover {
  color: #2D9BE1 !important;
}
.btn01::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}
.btn01:hover::after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 1;
}

/*ボタン０2*/
.btn02 {
  position: relative;
  z-index: 2;
  border: 2px solid #2D9BE1;
  background:#FFF1AC;
  color: #2D9BE1 !important;
  line-height: 50px;
  -webkit-perspective: 300px;
  perspective: 300px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.btn02:hover {
  color: #FFF1AC !important;
}
.btn02::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2D9BE1;
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}
.btn02:hover::after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 1;
}


/* ----------------------------------------------------------------------
 マーカーアニメーション
---------------------------------------------------------------------- */
 
.marker-animation.active{
    background-position: -100% .5em;
}
.marker-animation {
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}
.marker-animation01{/*黄色*/
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,255,100) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,255,100) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,255,100) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,255,100) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,255,100) 50%);
}

/* =================================
 margin・padding
================================= */

/*margin right*/
.mr05 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr45 {
  margin-right: 45px;
}
.mr50 {
  margin-right: 50px;
}
/*margin left*/
.ml05 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml35 {
  margin-left: 35px;
}
.ml40 {
  margin-left: 40px;
}
.ml45 {
  margin-left: 45px;
}
.ml50 {
  margin-left: 50px;
}
/*margin top*/
.mt00 {
  margin-top: 0px !important;
}
.mt05 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt80 {
  margin-top: 80px;
}
.mt100 {
  margin-top: 100px;
}
/*margin bottom*/
.mb00 {
  margin-bottom: 0px !important;
}
.mb05 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}
/*padding right*/
.pr05 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pr35 {
  padding-right: 35px;
}
.pr40 {
  padding-right: 40px;
}
.pr45 {
  padding-right: 45px;
}
.pr50 {
  padding-right: 50px;
}
/*padding left*/
.pl05 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pl35 {
  padding-left: 35px;
}
.pl40 {
  padding-left: 40px;
}
.pl45 {
  padding-left: 45px;
}
.pl50 {
  padding-left: 50px;
}
/*padding top*/
.pt05 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt80 {
  padding-top: 80px;
}
@media screen and (min-width: 1200px) {
	.pcpt80 {
	  padding-top: 80px;
	}
}
.pt100 {
  padding-top: 100px;
}
/*padding bottom*/
.pb05 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb100 {
  padding-bottom: 100px;
}
  
/*All padding*/
.pd10{
	padding:10px;
	box-sizing:border-box;
}
.pd15{
	padding:15px;
	box-sizing:border-box;
}
.pd20{
	padding:20px;
	box-sizing:border-box;
}
.pd25{
	padding:25px;
	box-sizing:border-box;
}
.pd30{
	padding:30px;
	box-sizing:border-box;
}


/* =================================
 画像サイズ（レスポンシブ仕様）
================================= */
img.img100{
	width:100%;
	max-width: 100%;
	line-height: 0;
	vertical-align: bottom;
	display: block;
}
img.imgCenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width:100%;
}
img.imgLeft{
	display: block;
	margin-right: auto;
	max-width:100%;
}
img.imgRight{
	display: block;
	margin-left: auto;
	max-width:100%;
}

img.imgNew01{
width:45px;
}

/* ----------------------------------------------------------------------
 inner
---------------------------------------------------------------------- */
.inner01{
	width:100%;
	max-width:100%;
	margin-left:auto;
	margin-right:auto;
}
.inner02{
	width:1150px;
	max-width: calc(100% - 30px);
	margin-left:auto;
	margin-right:auto;
}
.inner03{
	width:768px;
	max-width: calc(100% - 30px);
	margin-left:auto;
	margin-right:auto;
}
.inner04{
	width:90%;
	max-width: calc(100% - 30px);
	margin-left:auto;
	margin-right:auto;
}

/* =================================
 float
================================= */
.left{
	float: left;
}
.right{
	float: right;
}

/* ----------------------------------------------------------------------
 flexbox
---------------------------------------------------------------------- */
.flexOrigin{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.flex-wrap{
	flex-wrap:wrap; 	/*要素を折り返して繰り返す*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.row-reverse{
	flex-flow: row-reverse; /*並び順を逆にする*/
}
.border-box{
	box-sizing:border-box;
}
@media(max-width:767px)  {
	.flex_block{
		display: block;
	}
}

@media screen and (min-width: 768px) ,print{
	.flexBox2{
	width:48%;
	}
	.flexBox3{
	width:31%;
	}
	.flexBox4{
	width:23%;
	}
}
@media screen and (max-width: 767px) {
	.flexBox2{
		width:100%;
		margin-bottom:30px;
	}
	.flexBox3{
		width:100%;
		margin-bottom:30px;
	}
	.flexBox4{
		width:48%;
		margin-bottom:30px;
	}
}

/* =================================
 ページ内リンク
================================= */
 @media screen and (min-width: 1200px){
	a.scroll_point {
	 height: 0;
	 margin-top: -160px;
	 padding-top: 160px;
	 display: block;
	}
}
 @media screen and (max-width: 1200px){
	 a.scroll_point {
	 height: 0;
	 display: block;
	 margin-top: -55px;
	 padding-top: 55px;
	}
}

/* =================================
 ページ全体
================================= */
body{
	color:#333;
}

/* ----------------------------------------------------------------------
 デフォルトCSSの解除
---------------------------------------------------------------------- */
@media screen and (min-width: 1200px) ,print {
	/*ヘッダー部分*/
	.header-bar{
		height:160px;
		background:rgba(255,255,255,0.8);
	}
	.header-bar-fixed ~ .signage{
		margin-top:160px;
	}
	/*ロゴ*/
	.logo-image{
		top:20px;
	}
	.logo{
		height:50px;
	}
	/*グローバルメニュー */
	.global-nav{
		margin-left:auto;
		margin-right:auto;
		float:none;
		max-width:1150px;
		width:calc(100% - 30px);
	}
	.global-nav ul.menu{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
	}
	.global-nav > ul > li{
		font-weight: bold;
		float:none;
		display:inline-block;
	}
	.global-nav > ul > li > a{
		line-height:63px;
		padding:0 20px;
	}
	/*キービジュアル*/
	.mv{
		margin-top:160px;
	}
}
@media screen and (max-width: 1200px) {
	/*ヘッダー部分*/
	.header-bar{
		background:rgba(255,255,255,0.8);
	}
	/*ロゴ*/
	.logo{
		top:15px;
	}
	.logo img{
		display:block;
		width:150px;
	}
	/*キービジュアル*/
	.mv{
		margin-top:55px;
	}
}

.head_top{
	position:relative;
}
@media screen and (min-width: 1200px) {
	.head_top{
		max-width:1150px;
		width:calc(100% - 30px);
		height:95px;
		margin:0 auto;
	}
}

/* ----------------------------------------------------------------------
ヘッダーインフォメーション
---------------------------------------------------------------------- */
.head_info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
	justify-content: space-between; 
}
@media screen and (min-width: 1200px) {
	.head_info{
		float:right;
		width:450px;
		padding-top:20px;
	}
	.head_info_sp{
		display:none;
	}
	.head_info01{
		width:250px;
	}
	.head_info02,.head_info03{
		width:150px;
	}
}
@media screen and (max-width: 1200px) {
	.head_info_pc{
		display:none;
	}
	.head_info{
		width:100px;
		position:absolute;
		top:5px;
		right:60px;
	}
	.head_info01{
		width:45px;
	}
	.head_info02{
		width:45px;
	}
	.head_info03{
		width:45px;
	}
}

/* ----------------------------------------------------------------------
 メインビジュアル
---------------------------------------------------------------------- */
.mv{
	background:#2D9BE1;
	padding-top:30px;
}
.mv_balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 12px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #2D9BE1;
  font-size: 16px;
  background: #FFFF00;
	border-radius:5px;
}
.mv_balloon p {
	color: #2D9BE1;
}
.mv_balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #FFFF00;
}
@media screen and (max-width: 768px) {
.mv_balloon p{
	font-size: 14px !important;
}
}

/* =================================
 ヘッダーイメージ
================================= */
.headImg{
  /* padding: 30px 0 0; */
	background: #2D9BE1;
	background-size: cover;
}
.headImg img{
	display: block;
	width:100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
  .headImg{
    /* padding: 20px 0 0; */
  }

}

/* =================================
 スマホ・PC画像振り分け
================================= */

@media screen and (min-width: 768px) {
.sp_only{
display:none !important;
}
}

@media screen and (max-width: 768px) {
.pc_only{
display:none !important;
}
}

/* =================================
 ページ内容（トップページ）
================================= */

/*メニューイメージ*/
.menuImg{
	background: #fff;
	padding-top:40px;
	padding-bottom: 20px;
}
.menuImgBox{
	width:23%;
	margin-left:1%; 
	margin-right:1%; 
}
.menuImgBox p{
	/* margin-top: 10px; */
	text-align: center;
	font-size:100%;
}
@media(max-width:600px)  {
	.menuImgBox p{
	font-size:65%;
	}
}

/* ----------------------------------------------------------------------
 signage
---------------------------------------------------------------------- */
.signage-content{
	animation:none;
}

/* ----------------------------------------------------------------------
 footer
---------------------------------------------------------------------- */
img.footcar{
	display:block;
	margin-left:auto;
}
.footSitemapLink{
	background:#fff;
	border-radius:10px;
	padding:20px;
	box-sizing:border-box;
}
@media screen and (max-width: 768px) {
	img.footcar{
		width:65px;
	}
}
.footSitemap .footSitemapWrap{
	background:#2D9BE1;
	padding:30px 0;
}

.footer-bar01,.copyright,.pagetop a{
	background:#A0CAEC;
}

@media screen and (min-width: 769px),print {
	.footSitemapInfo{
		width:370px;
	}
	.footSitemapLink{
		width:calc(100% - 400px);
	}
}
@media screen and (max-width: 768px){
	.footSitemapBox{
		display:block;
	}
	.footSitemapInfo{
		margin-bottom:20px;
	}
	.footSitemapInfo,.footSitemapLink{
		width:100%;
	}
}
a.footTel::before{
	content: url(images/ico_freedial.png);
	margin-right: 10px;
	position: relative;
	top: 3px;
}
a.footTel:hover{
	color:#fff;
}
ul.footsitemapUl01 li,ul.footsitemapUl02 li{
	line-height:2.3em;
	font-weight:bold;
}
ul.footsitemapUl01 li a,ul.footsitemapUl02 li a{
	color:#333;
}
ul.footsitemapUl01 > li > a::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	color:#2D9BE1;
	margin-right:0.5em;
}
ul.footsitemapUl02 {
	margin-left:0.5em;
}
ul.footsitemapUl02 > li > a::before{
	content:"・";
	margin-right:0.1em;
}
@media screen and (max-width: 768px){
	.footSitemapLink .flexBox3{
		margin-bottom:0;
	}
}

/* ----------------------------------------------------------------------
 共通パーツ
---------------------------------------------------------------------- */
/*キャンペーン*/
a.campaignBnr{
	display:block;
	width:calc(100% - 30px);
	max-width:768px;
	margin-left:auto;
	margin-right:auto;
}
.campaignWrap{
	background:#FFFF00;
	border:3px solid #2D9BE1;
}
.campaignTxt{
	background:#2D9BE1;
	padding:20px;
	box-sizing:border-box;
}
p.limit{
	background:#fff;
	border-radius:100px;
	padding:10px 70px;
	box-sizing:border-box;
	display:inline-block;
	font-weight:bold;
}

/* ----------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------- */
/*業務案内*/
.top_works{
	background:url(images/bg_dot.png) repeat;
}
.top_works_wrap{
	background:#fff;
	border:3px #2D9BE1 solid;
	padding:20px;
	box-sizing:border-box;
	border-radius:15px;
}
h4.top_works_tit{
	background:#2D9BE1;
	padding:10px;
	box-sizing:border-box;
}
@media screen and (max-width: 767px){
	img.top_works_img{
		width:60%;
	}
}

/*４つの理由*/
.top_reason_box{
	width:49%;
}
.top_reason_box:nth-child(1),.top_reason_box:nth-child(2){
	margin-bottom:30px;
}
@media screen and (max-width: 768px){
	.top_reason_box{
		width:100%;
		margin-bottom:30px;
	}
	.top_reason_box:last-child{
		margin-bottom:0px;
	}
}
.top_reason_tag{
	border-radius: 10px 10px 0px 0px;
	background:#fff;
	border:2px #2D9BE1 solid;
	padding:10px;
	box-sizing:border-box;
	width:150px;
}
.top_reason_tag p::before{
	content: url(images/ico_top_reason.png);
	margin-right: 0.5em;
	position: relative;
	top: 2px;
}
.top_reason_box_inner{
	background:#FFF1AC;
	border:2px #2D9BE1 solid;
	padding:20px;
	box-sizing:border-box;
	border-radius:10px;
}
.top_reason_tit_ico{
	width:80px;
	margin-right:20px;
}
.top_reason_tit_ico img{
	display:block;
	width:100%;
}
.top_reason_tit_txt{
	width:calc(100% - 100px);
}
@media screen and (min-width: 767px),print{
	.top_reason_box_inner{
		height: calc(100% - 30px);
	}
}
@media screen and (max-width: 767px){
	.top_reason_tit_ico{
	width:55px;
	margin-right:5px;
}
.top_reason_tit_txt{
	width:calc(100% - 60px);
}
}

/*お知らせ投稿*/
.newsTxt{
	width:55%;
}
.newsImg{
	width:40%;
}
@media screen and (max-width: 767px){
	.newsTxt{
		margin-bottom:20px;
	}
	.newsTxt,.newsImg{
		width:100%;
	}
}
ul.top_postlist{
	margin-bottom:20px;
}
ul.top_postlist li{
	line-height:2em;
	border-bottom:1px #A0CAEC solid;
	padding-bottom:10px;
	margin-bottom:10px;
}

/*ブログ投稿*/
.article03{
	background:#fff;
}

/*対応エリア*/
.topAreaTit{
	background:#FFF1AC;
	border-top:3px #2D9BE1 solid;
	border-bottom:3px #2D9BE1 solid;
}
.areaBox{
	background:#FFF1AC;
	border-radius:10px;
	padding:20px;
	box-sizing:border-box;
}
h4.areaBoxTit{
	background:#2D9BE1;
	color:#FFF1AC;
	padding:10px;
	box-sizing:border-box;
	border-radius:10px;
	margin-bottom:15px;
}

/* ----------------------------------------------------------------------
 業務内容
---------------------------------------------------------------------- */
.works_content{
	background:url(images/bg_dot.png) repeat;
}
.worksWrap{
	position:relative;
	background:#fff;
	border-radius:10px;
	border:3px #2d9be1 solid;
}
.worksTag{
	position:absolute;
	top:30px;
	left:-10px;
	background:#ffff00;
	padding:15px 10px 10px;
	box-sizing:border-box;
	border:3px #288ceb solid;
}
.worksBoxImg{
	width:320px;
}
.worksBoxTxt{
	width:calc(100% - 350px);
}
@media screen and (max-width: 767px){
	.worksBoxImg{
		margin-bottom:30px;
	}
	.worksBoxImg,.worksBoxTxt{
		width:100%;
	}
}

/* ----------------------------------------------------------------------
 よくある質問
---------------------------------------------------------------------- */
.faq_bg{
	border-radius: 10px;
}

.faqQ{
  	position: relative;
	padding: 16px 0px 10px 65px;
}
.faqQ:before {
  	content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_faq_q.png');
	position: absolute;
	top: 15px;
	left: 0;
	margin: 0 10px 0 0;
}
.faqA{
  	position: relative;
    padding: 16px 0px 10px 65px;
}
.faqA:before {
  	content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_faq_a.png');
	position: absolute;
	top: 15px;
	left: 0;
	margin: 0 10px 0 0;
}

/* ----------------------------------------------------------------------
 お客様の声
---------------------------------------------------------------------- */
.voBox{
	box-sizing: border-box;           /* 罫線も含む長さ       */
	max-width: 100%;                /* BOXの最大幅          */
	border-radius : 10px;
	background-color: #fff;
}
.voBox_Sk{
	border: 3px solid #a0caec;
}

.voTit{
	display:inline-block;
	padding:5px 15px;
}

/* ----------------------------------------------------------------------
 会社概要
---------------------------------------------------------------------- */
table.cpTb{
	width:100%;
	box-sizing:border-box;
}
table.cpTb th,table.cpTb td{
	padding:20px 15px;
	box-sizing:border-box;
	text-align:left;
}
table.cpTb th{
	color: #2D9BE1;
	width:150px;
	padding-left:40px;

}
table.cpTb td{
	letter-spacing: 0.1em;
}

table.cpTb tr:nth-child(odd){	
	background: #e2f0ff;
}
table.cpTb tr:nth-child(even){
	background:#fff;
}
table.cpTb tr{
	line-height:1.8em;
}

@media screen and (max-width: 767px){
	table.cpTb th,table.cpTb td{
		padding:15px 10px;
		box-sizing:border-box;
		text-align:left;
	}
		table.cpTb th{
		color: #2D9BE1;
		width:110px;
		padding-left:30px;
	}
}

/* ----------------------------------------------------------------------
 スタッフ紹介
---------------------------------------------------------------------- */
.sta_bg{
	border-radius: 10px;
}

@media screen and (min-width: 768px) ,print{
		.staTex_01{
		width:75%;
	}
	.staTB td{
		padding: 10px 0;
		border-bottom: 1px solid black;
	}
	.staTd_01{
		width:25%;
	}
	.staTd_02{
		width:75%;
	}
}
@media screen and (max-width: 767px){
	.staImg{
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom:20px;
		max-width:100%;
	}
	.staName_01{
		text-align: center;
	}
		table.staTB{
			width: 320px !important;
			margin: auto;
			max-width: 100%;
	}
	.staTB td{
		padding: 10px;
    border-bottom: 1px solid black;
	}
	.staTd_01{
		width:50px;
	}
	.staTd_02{
		width:100px;
	}
}

/* ----------------------------------------------------------------------
 出張買取
---------------------------------------------------------------------- */

	
.dtdWrap{
	position:relative;
	background:#fff;
	border-radius:10px;
	border:3px #2d9be1 solid;
}
.dtd_content_01{
	background:url(images/bg_dot.png) repeat;
}
.dtd_content_02{
	border-radius:10px;
}

@media screen and (min-width: 768px) ,print{
	.dtdPoint{
		position: relative;
		padding: 16px 0px 25px 40px;
	}
	.dtdPoint:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_visit.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.dtdImg{
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top:-20px;
	}
	
	.priTex_02{
		text-align:center;
	}
}
@media screen and (max-width: 767px){
	.dtdPoint{
		position: relative;
		padding: 16px 0px 25px 40px;
	}
	.dtdPoint:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_visit.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.dtdImg{
		display: block;
		text-align:center;
		padding-top:10px;
	}
	
	.priTex_02{
		text-align:left;
	}
}

/* ----------------------------------------------------------------------
 料金表
---------------------------------------------------------------------- */
.priWrap{
	position:relative;
	background:#fff;
	border-radius:10px;
	border:3px #2d9be1 solid;
}
.priPlan{
	width:600px;
	max-width:calc(100% - 20px);
	background:#ffff00;
	margin:auto;
	position: relative;
	box-sizing: border-box;
	padding-top: 10px!important;
	padding-bottom: 10px!important;
}
.priPlan:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffff00 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}


@media screen and (min-width: 768px) ,print{
	.pri_content_01{
		position: relative;
		padding: 10px 0px 15px 80px;
		border-bottom: 1px solid #2d9be1;
	}
	.pri_content_01:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price01.png');
		position: absolute;
		top: -5px;
		left: 0;
		margin: 0 10px 0 0;
	}
.pri_content_02{
		position: relative;
		padding: 10px 0px 15px 80px;
		border-bottom: 1px solid #2d9be1;
	}
	.pri_content_02:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price02.png');
		position: absolute;
		top: -5px;
		left: 0;
		margin: 0 10px 0 0;
	}
.pri_content_03{
		position: relative;
		padding: 10px 0px 15px 80px;
		border-bottom: 1px solid #2d9be1;
	}
	.pri_content_03:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price03.png');
		position: absolute;
		top: -5px;
		left: 0;
		margin: 0 10px 0 0;
	}
.pri_content_04{
		position: relative;
		padding: 10px 0px 15px 80px;
		border-bottom: 1px solid #2d9be1;
	}
	.pri_content_04:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price04.png');
		position: absolute;
		top: -5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.priflexBox{
		width:55%;
	}
	.priTd_01{
		border-right: 1px solid #000;
		border-left: 1px solid #000;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		padding-top:5px;
		padding-bottom:5px;
		text-decoration: line-through;
		width:90px;
		vertical-align: middle;
	}
	.priTd_02{
		padding-left:10px;
		text-decoration: line-through;
		vertical-align: middle;
	}
	.priImg{
		width:40%;
		display: block;
		margin-left: auto;
	}
}
@media screen and (max-width: 767px){
	.pri_content_01{
		position: relative;
		padding: 0px 0px 5px 80px;
		border-bottom: 1px solid #2d9be1;
		line-height:1.5em;
	}
	.pri_content_01:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price01.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.pri_content_02{
		position: relative;
		padding: 0px 0px 5px 80px;
		border-bottom: 1px solid #2d9be1;
		line-height:1.5em;
	}
	.pri_content_02:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price02.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.pri_content_03{
		position: relative;
		padding: 0px 0px 5px 80px;
		border-bottom: 1px solid #2d9be1;
		line-height:1.5em;
		}
	.pri_content_03:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price03.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.pri_content_04{
		position: relative;
		padding: 0px 0px 5px 80px;
		border-bottom: 1px solid #2d9be1;
		line-height:1.5em;
	}
	.pri_content_04:before {
		content: url('https://white-rock.jp/wp/wp-content/uploads/2021/07/ico_price04.png');
		position: absolute;
		top: 5px;
		left: 0;
		margin: 0 10px 0 0;
	}
	.priflexBox{
		
	}
	.priTd_01{
		border-right: 1px solid #000;
		border-left: 1px solid #000;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		padding-top:5px;
		padding-bottom:5px;
		text-decoration: line-through;
		width:78px;
		vertical-align: middle;
	}
	.priTd_02{
		padding-left:10px;
		text-decoration: line-through;
		vertical-align: middle;
	}
	.priFlex{
		flex-direction: column-reverse;
	}
	.priImg{
		display: block;
		text-align:center;
	}
}
/* ----------------------------------------------------------------------
 お問い合わせ
---------------------------------------------------------------------- */
.contact .wpcf7{
	border:none;
	background:none;
}
.wpcf7 form{
	margin-left:0;
	margin-right:0;
}
.contact .wpcf7 input,.contact .wpcf7 textarea,.contact .wpcf7 select{
	border:none;
	background:#f2f2f2;
}
.contact table.formTable{
	border-collapse: collapse;
	width:100%;
}
.contact .formTable th,.contact .formTable td{
	padding: 10px;
	border:none;
	background:none;
	line-height:1.5em;
}
.contact .formTable th{
	vertical-align: top;
	text-align:left;
	color:#33475a;
	padding-left:1em;
	text-indent:-1em;
}
.contact .formTable th::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-right:0.5em;
}
.contact input[type=text],textarea {
  width:100% !important;
}

table.formTable input[type=text],
table.formTable textarea{
	border: none;
	padding:10px 10px;
	background: #f2f2f2;
	border: none;
}
table.formTable td.hissu,table.formTable td.nini{
	vertical-align: top;
}
table.formTable td.hissu div,table.formTable td.nini div{
	font-size:14px;
	font-weight:bold;
}
table.formTable td.hissu div,table.formTable td.nini div{
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}
table.formTable td.hissu div{
	background: #2D9BE1;
	border:1px #2D9BE1 solid;
	color: #fff;
}
table.formTable td.nini div{
	background: #fff;
	border:1px #2D9BE1 solid;
	color: #2D9BE1;
}
.contact .wpcf7 input.wpcf7-submit{
	background:#0077c2;
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}
.contact-form-btn-wrap{
	text-align: center;
	margin-bottom: 1em;
    font-size: 12px;
}
.contact-form-btn{
	background:#0077c2;
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
	position: relative;
    display: block;
    width: 225px;
    height: 48px;
    margin: 30px auto 0;
    /*  background-color: #333333; */
    cursor: pointer;
    border: none !important;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.contact .formTable td.answer .horizontal-item{
	display: block;
}
.contact .formTable td.answer .horizontal-item:first-child {
    margin-left: 10px;
}
.contact .answer select{
	border:none;
	background:#f2f2f2;
	width: 70px;
}
.contact-form-select{
	margin-bottom: 10px;
}


@media screen and (min-width: 768px) {
	table.formTable th{
		width:25%;
		line-height: 44px;
		font-size:16px;
	}
	table.formTable td,.contact .wpcf7 select,.contact .wpcf7 .wpcf7-list-item-label{
		font-size:16px;
	}
	.contact .formTable td.answer{
		font-size:16px;
	}
	table.formTable td.hissu,table.formTable td.nini{
		width:15%;
		text-align: center;
	}
	table.formTable td.hissu div,table.formTable td.nini div{
		height: 44px;
		line-height: 44px;
	}
	table.formTable .radio label{
		font-size:14px;
		line-height: 20px;
		margin-bottom: 0;
		margin-right: 20px;
	}
	.wpcf7 select{
		width:70px;
	}
}
@media screen and (max-width: 768px) {
	table.formTable,table.formTable tbody,
	table.formTable tr,table.formTable th,
	table.formTable td{
		display: block;
	}
	table.formTable tr{
		margin-bottom: 15px;
	}
	table.formTable th{
		border: none !important;
		padding-bottom: 0px;
		margin-bottom: 0;
		width:100% !important;
		font-size:14px;
	}
	table.formTable td,.contact .formTable td.answer{
		padding-top: 0px;
		font-size:14px;
	}
	.contact .wpcf7 input,.contact .wpcf7 select,.contact .wpcf7 .wpcf7-list-item-label{
		font-size:14px;
	}
	table.formTable td.hissu div,table.formTable td.nini div{
		padding:5px 10px;
		display: inline;
	}
	table.formTable .radio label{
		font-size:14px;
		line-height: 20px;
		margin-bottom: 0;
		margin-right: 20px;
		display: block;
	}
	.wpcf7 select{
		width:60px;
	}
}

table.formTable .address{
	margin-bottom:10px;
}
table.formTable input[type=text].hope{
	width:200px !important;
}
table.formTable span.wpcf7-list-item{
	margin-left:0;
}
.checkbox-naiyou span.wpcf7-list-item{
	display:block;
}

/*==============================
コラム事業者テーブル
==============================*/
.margin-top-g {
    margin-bottom: 2em;
}

.column-app-table {
    width: 98% !important;
    margin: 0 !important;
    font-size: 15px !important;
    display: table !important;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.column-app-table,
.column-app-table th,
.column-app-table td {
    border: 1px solid black !important;
    border-collapse: collapse !important;
    padding: .5em .75em !important;
}

.column-app-table th {
    background-color: #f5f5f5 !important;
    font-weight: bold !important;
}

.column-app-table a {
    color: #093bc9 !important;
    text-decoration: underline !important;
}

.com-name-col {
    width: 35% !important;
}

.scrollable-table {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
}

.scrollable-upper-subs {
    display: none !important;
}

@media (max-width: 768px) {
    .scrollable-upper-subs {
        display: block !important;
        text-align: right !important;
        font-size: 12px !important;
        font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    }
}

/*==============================
入金テーブル
==============================*/

.payment-table {
    width: 98% !important;
    font-size: 15px !important;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    margin-bottom: 2em !important;
    display: table !important;
}

.payment-table,
.payment-table th,
.payment-table td {
    border: 1px solid black !important;
    border-collapse: collapse !important;
    padding: .5em .75em !important;
    line-height: 1.5em !important;
}

.payment-table th {
    background-color: #f5f5f5 !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}

.payment-table td {
    white-space: normal !important;
}

/*==============================
ボックス
==============================*/

.box01-container {
    /* max-width: 800px; */
    width: 98% !important;
    border: 1px solid #000 !important;
    /* padding: 20px; */
    /* margin: 20px; */
    margin-top: 35px !important;
    margin-bottom: 35px !important;
    font-family: sans-serif !important;
    position: relative !important;
}

.box01-title {
    background: #000 !important;
    color: #fff !important;
    padding: 5px 10px !important;
    display: inline-block !important;
    font-size: 15px !important;
    position: absolute !important;
    top: -15px !important;
    left: 20px !important;
}

.box01-checklist {
    padding: 20px !important;
    padding-bottom: 5px !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    font-size: 15px;
    /* letter-spacing: 0.5em !important;
    line-height: 1.5em !important; */
}

.box01-checklist li {
    margin-bottom: 20px;
}

 /* 固定ボタンコンテナ */
        .fixed-buttons {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .header-image {
            padding: 10px 10px;
            background: white;
            text-align: center;
        }

        .header-image img {
            max-width: 90%;
            height: auto;
        }

        .buttons-container {
            display: flex;
            gap: 0;
            margin-bottom:10px;
        }

        .phone-button {
            flex: 1;
            border: none;
            padding: 0 10px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .phone-button:active {
            opacity: 0.8;
        }

        .phone-button img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .mail-button {
            flex: 1;
            border: none;
            padding: 0 10px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .mail-button:active {
            opacity: 0.8;
        }

        .mail-button img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* スマホサイズでのみ表示 */
        @media (max-width: 768px) {
            .fixed-buttons {
                display: block;
            }
        }

        /* タブレット以上では非表示 */
        @media (min-width: 769px) {
            .fixed-buttons {
                display: none;
            }
        }

/* =========================================================
   【矢印2つ表示修正版】ブログ記事本文・テーブル内のリンク装飾
========================================================= */

/* 段落(p)、リスト(li)、セル(td/th)の中にあるテキストリンク */
body .post-content p a,
body .post-content li a,
body .post-content td a,
body .post-content th a {
  color: #005bb5 !important; /* 青色 */
  text-decoration: none !important; 
  border-bottom: 2px solid #005bb5 !important; /* 青い下線 */
  font-weight: bold !important; 
  
  /* --- スマホで「押せる」と直感的にわかるボタン風の装飾 --- */
  background-color: #f0f8ff !important; /* 薄い水色の背景をつけてハイライト */
  padding: 4px 24px 4px 8px !important; /* 右側に矢印を入れるスペース（24px）を確保 */
  border-radius: 4px !important; /* 角を少し丸める */
  
  /* --- ★矢印が2つ出る問題を修正★ --- */
  -webkit-box-decoration-break: slice !important; /* cloneからsliceに変更 */
  box-decoration-break: slice !important; /* cloneからsliceに変更 */
  
  /* 矢印（SVGアイコン）を右側に表示 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23005bb5'%3E%3Cpath d='M9.707 18.707l6-6c.391-.391.391-1.023 0-1.414l-6-6c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414L13.586 12l-5.293 5.293c-.391.391-.391 1.023 0 1.414.391.391 1.023.391 1.414 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  background-size: 16px !important;
  
  transition: all 0.3s ease !important; 
}

/* マウスホバー時（スマホでタップした瞬間）のアクション */
body .post-content p a:hover,
body .post-content li a:hover,
body .post-content td a:hover,
body .post-content th a:hover {
  color: #e3342f !important; /* 赤色に変化 */
  border-bottom-color: #e3342f !important; /* 下線も赤色に変化 */
  background-color: #fdf2f2 !important; /* 薄い赤の背景 */
  
  /* ホバー時は右側の矢印も赤色に変更 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e3342f'%3E%3Cpath d='M9.707 18.707l6-6c.391-.391.391-1.023 0-1.414l-6-6c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414L13.586 12l-5.293 5.293c-.391.391-.391 1.023 0 1.414.391.391 1.023.391 1.414 0z'/%3E%3C/svg%3E") !important;
}

/* 画像リンクの場合は下線や矢印などの装飾を完全に無効化 */
body .post-content a img {
  border-bottom: none !important;
}
body .post-content a:has(img) {
  border-bottom: none !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
}

/* テーブル内のリンク特有の微調整 */
body .post-content td a {
  word-break: break-all !important; 
  display: inline-block !important; /* セル内でタップ領域を安定させる */
  margin: 4px 0 !important;
}

/* =======================================================================
   Migrated from WordPress Additional CSS (wp-custom-css)
   ======================================================================= */
.pfont16px {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* 記事ページ見出し */
@media screen and (max-width: 767px) {
  .pageH2 {
    padding: 0.4em 0.5em !important;
    color: #494949 !important;
    background: #f4f4f4 !important;
    border-left: solid 5px #7db4e6 !important;
    border-bottom: solid 3px #d7d7d7 !important;
    letter-spacing: 0.1em;
    font-size: 20px !important;
  }

  .pageH3 {
    padding: 0.25em 0.5em !important;
    color: #494949 !important;
    background: transparent !important;
    border-left: solid 5px #7db4e6 !important;
    font-size: 18px !important;
  }
}

@media screen and (min-width: 768px), print {
  .pageH2 {
    padding: 0.4em 0.5em !important;
    color: #494949 !important;
    background: #f4f4f4 !important;
    border-left: solid 5px #7db4e6 !important;
    border-bottom: solid 3px #d7d7d7 !important;
    letter-spacing: 0.1em;
    font-size: 25px !important;
  }

  .pageH3 {
    padding: 0.25em 0.5em !important;
    color: #494949 !important;
    background: transparent !important;
    border-left: solid 5px #7db4e6 !important;
    font-size: 20px !important;
  }
}

/* マーカー */
.marker1b-red {
  background-color: #FADBDA;
  text-shadow: 1px 1px 0 #fff, 0 1px 0 #fff;
  font-weight: bold;
}
.marker1b-yellow {
  background-color: #FFF9C9;
  text-shadow: 1px 1px 0 #fff, 0 1px 0 #fff;
  font-weight: bold;
}
.marker1b-blue {
  background-color: #D3EDFB;
  text-shadow: 1px 1px 0 #fff, 0 1px 0 #fff;
  font-weight: bold;
}

/* カスタムコンテンツ用スタイル */
.wr-custom-content {
  font-family: inherit;
  line-height: 1.8;
  color: #333;
}
.wr-custom-content section {
  margin-bottom: 60px;
}
.wr-custom-content h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  background: #f4f8ff;
  padding: 15px 20px;
  border-left: 5px solid #23527c;
  margin-bottom: 25px;
  margin-top: 40px;
  line-height: 1.4;
}
.wr-custom-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #23527c;
  border-bottom: 2px solid #23527c;
  padding-bottom: 8px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.wr-custom-content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.wr-custom-content p {
  margin-bottom: 1.5em;
  font-size: 1rem;
}
.wr-custom-content ul {
  margin-bottom: 20px;
  padding-left: 1.5em;
  list-style-type: disc;
}
.wr-custom-content li {
  margin-bottom: 10px;
}
.wr-custom-content strong {
  font-weight: bold;
  color: #d32f2f;
}
.wr-custom-content .table-wrap {
  overflow-x: auto;
}
.wr-custom-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  min-width: 600px;
}
.wr-custom-content th,
.wr-custom-content td {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: left;
}
.wr-custom-content th {
  background-color: #f7f7f7;
  font-weight: bold;
}
.wr-custom-content dl {
  margin-bottom: 30px;
}
.wr-custom-content dt {
  font-weight: bold;
  background: #f0f4f8;
  padding: 12px 15px;
  margin-top: 15px;
  border-radius: 4px;
  color: #1a1a1a;
}
.wr-custom-content dd {
  margin: 0;
  padding: 15px;
  border-bottom: 1px dotted #ccc;
}
.wr-custom-content .area-box {
  background: #fff;
  border: 2px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .wr-custom-content h2 {
    font-size: 1.2rem;
    padding: 12px 15px;
  }
  .wr-custom-content h3 {
    font-size: 1.1rem;
  }
}

/* 遺品整理ページ用カスタムCSS */
.works_intro h4 {
  position: relative;
  padding: 12px 15px 12px 20px;
  background-color: #f4f8fb;
  border-left: 5px solid #00a0e9;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}
.works_intro h4 + p.yugo_font {
  margin-bottom: 35px;
  padding-left: 10px;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 15px;
}
.works_intro p:has(strong:contains("【基本料金に含まれる安心サービス】")) {
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  line-height: 2.2;
}
.works_intro h4:has(+ p:contains("（さいたま市")) + p {
  background: #fff;
  border: 2px solid #f2e7d5;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 40px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
}
.works_intro h4:has(+ p:contains("（さいたま市")) + p::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 30px;
  border-width: 0 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  z-index: 2;
}
.works_intro h4:has(+ p:contains("（さいたま市")) + p::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 30px;
  border-width: 0 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #f2e7d5 transparent;
  z-index: 1;
}
.works_intro span[style*="color:#d32f2f;"] {
  display: block;
  background-color: #fff5f5;
  padding: 10px 15px;
  border-radius: 4px;
  margin-top: 15px;
  border: 1px solid #ffcccc;
  line-height: 1.6;
}

/* =======================================================================
   Merged from css/aos.css
   ======================================================================= */

[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
