/*
Theme Name: PickPC Theme
Theme URI: https://Pick-PC.com
Description: PickPCオリジナルテーマ
Author: あなたの名前
Version: 1.0
*/

/* ========================
   ベースフォント指定（Interベース）
=========================== */
body,
h1, h2, h3, h4, h5, h6,
p, a, li, span, div,
input, textarea, button {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
               'Meiryo', sans-serif !important;
  font-weight: 400;
  color: #111;
  line-height: 1.7;
}

html, body { overflow-x: hidden; }

/* PickPCセクションだけフォント継承で強制適用 */
.pickpc-section,
.pickpc-section * {
  font-family: inherit !important;
}

@media (max-width: 768px) {
  .pickpc-section {
    position: relative;
    overflow-x: hidden; /* 横スクロール防止 */
  }

  .section-label {
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
  }
}

/* ブログ個別ページ用フォント（Inter優先） */
.blog-article,
.blog-article * {
  font-family: 'Inter', sans-serif;
}


/* ▼ 固定ヘッダー */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;               /* 横並び */
  justify-content: space-between; /* 両端に分ける */
  align-items: center;         /* 垂直中央揃え */
  flex-wrap: wrap;             /* 折り返し許可（スマホ対策） */
  box-sizing: border-box;
}

/* ▼ 固定ヘッダーに押し潰されないように、bodyに余白を */
body {
  padding-top: 80px; /* ヘッダーの高さに合わせて調整（高さが違う場合はこの値を変更） */
}

/* PC時：header-bar を横並び固定 */
@media (min-width: 769px) {
  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* 折り返さない */
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-wrap {
    flex: 0 0 auto;
  }

  .header-links {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.contact-btn {
  background-color: #e60033;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
}

/* ▼ ヘッダー下にあるお知らせバーを目立たせる（任意） */
.notice-bar {
  background-color: #f5f5f5;
  color: #444;
  font-size: 14px;
  padding: 8px 0;
  white-space: nowrap;
  overflow: hidden;
}
.marquee {
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
 
/* ヘッダー全体 */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

/* ロゴ左寄せ */
.logo {
  height: 30px;
  object-fit: contain;
  margin-right: auto;
}

/* よくある質問＆お問い合わせ */
.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* 通常リンク */
.header-links a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.header-links a:hover {
  text-decoration: underline;
}

/* お問い合わせボタン */
.contact-btn {
  background-color: red;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 999px; /* 完全な丸み */
  transition: background-color 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.line-btn {
  background-color: #00c300; /* LINEの緑色 */
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.line-btn:hover {
  background-color: #00a000;
}


.contact-btn:hover {
  background-color: #b30000;
}


.logo {
  margin-left: 0 !important;
  margin-right: auto !important;
  display: inline-block;
}


.logo {
  height: 40px;
  margin-right: auto;  /* ← これで左寄せになります */
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 35px; /* ロゴと送料無料の隙間 */
}

.logo {
  height: 42px;
}

.free-shipping {
  height: 40px;   /* お好みで調整可能 */
  object-fit: contain;
}


.menu {
  font-size: 30px;
  cursor: pointer;
}

.notice-bar {
  background-color: #ffe600;
  overflow: hidden;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  min-width: 100%;
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* SP時：ヘッダーは横一列、ハンバーガーは右端に */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: row !important;
    align-items: center !important;
    padding: 8px 12px;
  }
  .header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  /* 既存の width:100% / margin-bottom の影響を打ち消す */
  .logo-wrap {
    width: auto !important;
    margin-bottom: 0 !important;
    gap: 10px;
  }
  /* ロゴ＆送料無料のサイズをやや小さめに揃える */
  .logo { height: 32px !important; }
  .free-shipping { height: 24px !important; object-fit: contain; }

  /* ハンバーガーを右端に・タップしやすいサイズに */
  .mobile-only {
    display: inline-flex !important;
    margin-left: auto;
  }
  .hamburger {
    padding: 6px;
    width: 44px; height: 44px;      /* タップ領域 */
    align-items: center; justify-content: center;
  }
  .hamburger-bar {
    width: 24px; height: 2px;       /* アイコンの見た目 */
  }

  /* 既存のSPで表示していたヘッダーリンクは非表示 */
  .header-links { display: none !important; }
}


/* ====== 追加: ハンバーガー＆SPメニュー 最小差分 ====== */

/* 背景スクロール固定（JSでhtmlに付与） */
.menu-open { overflow: hidden; }

/* ハンバーガー（デフォはPCで非表示） */
.mobile-only { display: none; }
.hamburger{
  appearance:none; border:0; background:transparent; padding:8px;
  display:inline-flex; flex-direction:column; gap:4px; cursor:pointer;
}
.hamburger-bar{ width:26px; height:2px; background:#333; border-radius:2px; display:block; }

/* オフキャンバス */
.mobile-menu{ position:fixed; inset:0; display:flex; z-index:10010; }
.mobile-menu[aria-hidden="true"]{ display:none; }
.mobile-menu__backdrop{
  position:absolute; inset:0; background: transparent !important;
  border:0; padding:0; margin:0; pointer-events:auto; cursor:pointer; z-index: 1; 
}
.mobile-menu__panel{
  position:relative; margin-left:auto; height:100%; width:min(100%,420px);
  background:#fff; transform:translateX(100%); transition:transform .28s ease;
  outline:0; box-shadow:-8px 0 24px rgba(0,0,0,.12);
  display:flex; flex-direction:column; padding:20px 20px 96px;
	pointer-events:auto; z-index: 2;
}
.mobile-menu[aria-hidden="false"] .mobile-menu__panel{ transform:none; }
.mobile-menu__close{
  position:absolute; top:10px; right:10px; width:44px; height:44px;
  font-size:28px; line-height:1; background:#fff; border:none; cursor:pointer;
}

/* メニュー中身 */
.mobile-nav{ overflow:auto; -webkit-overflow-scrolling:touch; padding-top:20px; }
.mobile-nav__section + .mobile-nav__section{ margin-top:28px; }
.mobile-nav__title{
  font-size:18px; font-weight:800; color:#d71920; padding:6px 0 10px; border-bottom:3px solid #d71920;
}
.mobile-nav__list{ list-style:none; margin:0; padding:0; }
.mobile-nav__list li{ border-bottom:1px solid #eee; }
.mobile-nav__list a{ display:block; padding:12px 4px; font-weight:700; color:#333; }

/* LINE縦長CTA（スクショ寄せ） */
.mobile-line-cta{
  position:absolute; right:16px; bottom:16px;
  display:flex; align-items:center; justify-content:center;
  width:96px; height:160px; border-radius:24px;
  background:#00c300; color:#fff; font-weight:800; text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
}

/* SPでハンバーガー表示＆既存ヘッダーリンクを隠す */
@media (max-width: 768px){
  .mobile-only{ display:inline-flex; }
  .header-links{ display:none !important; }
}

/* PCではハンバーガーを隠す（保険） */
@media (min-width: 769px){
  .mobile-only{ display:none !important; }
}

/* パンくずリスト */
.breadcrumb {
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #555;
}

.breadcrumb li a {
  text-decoration: none;
  color: #0078d4;
  font-weight: bold;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 6px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}


.fv {
  width: 100%;
  overflow: hidden;
}

.fv-image {
  width: 100%;       /* 画面全体に広げる */
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.contact-banner {
  text-align: center;
  margin: 60px 0;
}

.contact-caption-button {
	display: flex;
    justify-content: center;
}

.contact-caption {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.contact-button {
  display: inline-block;
  background-color: #00c300;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 25px 80px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

/* スマホ表示時の調整 */
@media screen and (max-width: 768px) {
  .contact-button {
    font-size: 16px;       /* 文字サイズを少し小さく */
    padding: 12px 24px;    /* ボタン内余白を小さく */
  }

  .contact-banner {
    margin: 20px 0;        /* 上下の余白を統一 */
  }

  .contact-caption {
    margin-bottom: 10px;   /* キャプションとの距離を詰める */
    font-size: 14px;       /* 見出しも少し小さく */
  }
}


/* ===== ブログセクション ===== */
.blog-section {
  background-color: #fdfbe8; /* Pastec風ベージュ */
  padding: 50px 20px;
}

.blog-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.blog-subtitle {
  font-size: 16px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
	.blog-subtitle {
  font-size: 12px;
	}	
}

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

.blog-list li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.blog-date {
  font-size: 14px;
  color: #333;
  width: 120px;
  flex-shrink: 0;
}

.blog-label {
  background-color: #e60012;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  margin-right: 12px;
  border-radius: 3px;
  white-space: nowrap;
}

.blog-summary {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-summary:hover {
  color: #e60012;
}
.blog-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-icon {
  font-size: 32px;
}


.blog-subtext {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.blog-list li {
  position: relative;
  padding-right: 20px; /* ← 矢印用スペース */
}

.blog-list li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;
  box-sizing: border-box;
}

/* ========== 個別ブログページ ========== */
.single-blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

.single-blog-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.single-blog-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-blog-date {
  color: #999;
}

.single-blog-label {
  background-color: #e60012;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 3px;
}

.single-blog-content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* ========== PickPCとは？紹介セクション========== */
.pickpc-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.section-label {
  display: block;
  width: 100%;
  background: #e60012;
  color: #fff;
  padding: 20px 0;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.section-label::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #e60012;
}
.pickpc-catch {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 30px 0;
}

.pickpc-catch span {
  display: inline-block;
  font-size: 42px;
  color: #e60012;
  margin-top: 10px;
}
	
}

.pickpc-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
}
.pickpc-image {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
/* ▼ スマホ用の相談セクション調整（h2・pサイズ、余白調整） */
@media screen and (max-width: 768px) {
  .consult-title h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .consult-title p {
    font-size: 18px;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  .consult-catch {
    font-size: 32px !important;
    margin-bottom: 32px;
  }

  .consult-section {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 768px) {
  .consult-icons .icon-box img {
    max-width: 140px;
    margin-bottom: 12px;
  }

  .consult-icons .icon-box p {
    font-size: 28px;
    line-height: 1.4;
  }

  .consult-icons {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .btn-red, .btn-yellow {
    font-size: 16px;
    padding: 16px 24px;
  }

  .btn-red .arrow,
  .btn-yellow .arrow {
    font-size: 18px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .form-box {
    padding: 30px 20px;
    max-width: 100%;
  }

  .form-box p {
    font-size: 16px;
    line-height: 1.4;
  }
}


/* ▼ 「PickPCとは」タイトル */
.pickpc-title {
  font-size: 48px; 
  font-weight: bold;
  margin-top: 100px;
  color: #222;
}
.pickpc-lead {
  font-size: 26px;
  line-height: 1.6;
  margin: 40px 0;
  color: #111;
}

.pickpc-desc {
  font-size: 18px;
  line-height: 2;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pickpc-callout {
  position: relative;
  background: #ffe600;
  padding: 25px 20px 35px;
  display: block;
  text-align: center !important;
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* コーナー装飾 */
.callout-corner {
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  position: absolute;
}

.top-left {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: 36px;
  left: 16px;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: 36px;
  right: 16px;
  border-left: none;
  border-top: none;
}

/* 三角の吹き出し下部 */
.callout-arrow {
  bottom: -20px; 
  width: 0;
  height: 0;
  border-left: 20px solid transparent;  
  border-right: 20px solid transparent; 
  border-top: 20px solid #ffe600;       
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.callout-note {
  font-size: 28px;  
  font-weight: bold;
  margin-bottom: 12px; 
}

.callout-main {
  font-size: 36px;  
  font-weight: bold;
  margin: 0;
}

.highlight-red {
  background-color: #e60012;
  color: #fff;
  padding: 4px 16px; 
  margin-right: 8px; 
  display: inline-block;
  font-weight: bold;
}

.bold-text {
  font-weight: bold;
  font-size: 32px; 
  display: block;  
}
@media screen and (max-width: 768px) {
  /* ▼ セクションラベル中央 */
  .section-label {
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
  }

  /* ▼ キャッチコピー調整 */
  .pickpc-catch {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    padding: 0 16px;
  }

  .pickpc-catch span {
    display: inline;
    white-space: normal;
  }

  /* ▼ タイトル・説明文 */
  .pickpc-title {
    font-size: 24px;
    margin-top: 40px;
    text-align: center;
    padding: 0 16px;
  }

  .pickpc-lead {
    font-size: 18px;
    line-height: 1.6;
    margin: 24px 0;
    text-align: center;
    padding: 0 16px;
  }
@media (max-width: 768px) {
	.pickpc-lead {
  font-size: 16px;
}
	
}

  .pickpc-desc {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    padding: 0 16px;
    max-width: 100%;
    margin-bottom: 32px;
  }

	@media (max-width: 768px) {
		 .pickpc-desc {
   font-size: 12px;
  }
  .pickpc-desc br {
    display: none;
  }
}

  /* ▼ 吹き出しスタイル調整 */
  .pickpc-callout {
    padding: 20px 16px 30px;
    font-size: 14px;
    max-width: 100%;
    margin: 0 16px 40px;
  }

  .callout-note {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .callout-main {
    font-size: 22px;
  }

  .highlight-red {
    font-size: 14px;
    padding: 4px 12px;
    margin-right: 4px;
  }

  .bold-text {
    font-size: 20px;
  }

  .callout-corner {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .callout-arrow {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #ffe600;
    bottom: -14px;
  }
  @media screen and (max-width: 768px) {
  br.sp-none {
    display: none;
  }
}
}

/* ▼ 相談セクション 背景をベージュ系に */
.consult-title h2 {
  font-size: 42px;
  font-weight: bold;
  color: #e60012;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 768px) {
	.consult-title h2 {
  font-size: 24px;
}
}

.consult-title p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0 auto 40px;
  text-align: center;
  max-width: 600px; /* 横幅制限で読みやすく */
}

@media (max-width: 768px) {
	.consult-title p {
  font-size: 16px;
}
}

.consult-catch {
  font-size: 48px !important;  
  font-weight: bold;
  color: #e60012;
  margin-bottom: 40px;
  text-align: center;
}


.consult-section {
  background: #fff7e6; /* 明るいベージュ */
  padding: 60px 20px;
  text-align: center;
}
/* ▼ アイコン群 横並び＆折り返し */
.consult-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* ▼ アイコンボックス 囲みベタ＋縦長調整 */
.consult-icons .icon-box {
  flex: 1 1 200px;
  max-width: 220px;
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.consult-icons .icon-box:hover {
  transform: translateY(-4px);
}

/* ▼ 画像サイズそのまま（内側にフィット） */
.consult-icons .icon-box img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 10px;
}

/* ▼ テキスト大きめ、中央揃え */
.consult-icons .icon-box p {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
}
/* ▼ スマホ対応：縦1列、幅100% */
@media screen and (max-width: 768px) {
  .consult-icons .icon-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* 赤ボタン（改良版） */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  padding: 20px 50px;
  font-size: 20px;
  border-radius: 9999px; /* 完全な丸み */
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-red span {
  margin-left: 12px;
  font-size: 22px;
}



.btn-red .arrow {
  margin-left: 16px;       /* ← 矢印との余白もゆったり */
  font-size: 22px;
}

.btn-red:hover {
  opacity: 0.9;
  transform: translateY(-2px);  /* ← ちょっと浮く */
}

.btn-red .arrow {
  margin-left: 12px;
  font-size: 20px;
}

.btn-red:hover {
  opacity: 0.9;
}



/* 白いボックス */
.form-box {
  margin-top: 30px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

/* テキスト */
.form-box p {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}

/* 黄色ボタン */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe600;
  color: #000;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.btn-yellow .arrow {
  margin-left: 12px;
  font-size: 20px;
}

.btn-yellow:hover {
  opacity: 0.9;
}

/* ====== 追加CSS ====== */
.about-section {
  text-align: center;
}

.about-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}



.reason-section {
  padding: 20px 20px;
  background-color: #fff !important;
  color: #333;
}

.reason-title {
  text-align: center;
  font-size: 48px; 
  font-weight: 900;
  margin: 40px 0 60px;
  letter-spacing: 0.05em;
  color: #e60012;
  position: relative;
}

@media (max-width: 768px) {
	.reason-title {
  font-size: 24px;
}
}

.reason-title .reason-subtitle {
  display: block;
  font-size: 16px; 
  font-weight: 500;
  color: #666;
  margin-top: 6px;
  font-style: italic;
}

.reason-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.reason-item.reverse {
  flex-direction: row-reverse;
}

.reason-image img {
  width: 100%;
  max-width: 320px; 
  border-radius: 6px;
}

@media (max-width: 768px) {
  /* 縦並びのときは中央に揃える */
  .reason-item {
    align-items: center !important;   /* ← 左寄せを打ち消し */
  }

  /* 画像ラッパー自体を中央寄せにしておくと確実 */
  .reason-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .reason-image img {
    display: block;   /* 既に入れてある指定でもOK */
    margin: 0;        /* 親で中央寄せするので余白は0でOK */
  }
}

.reason-text {
  max-width: 600px; 
  text-align: left;
}

.reason-number {
  color: #e60012;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 12px;
}

.reason-number span {
  font-size: 28px;
  color: #000;
  font-weight: bold;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .reason-number {
  font-size: 24px;
}
	  .reason-number span {
  font-size: 24px;
}
}

.reason-text h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.reason-text p {
  font-size: 18px;
  line-height: 1.8;
}

/* スマホ用（最大幅768px） */
@media screen and (max-width: 768px) {
  .reason-text {
    text-align: left;
    padding: 0 10px;
  }

  .reason-text p,
  .reason-text h3 {
    font-size: 18px;
    line-height: 1.8;
  }

  .reason-text p br {
    display: none; /* スマホでは不自然な改行を消す */
  }

  .reason-item {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  .reason-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .reason-text {
    width: 100%;
  }
}

/* ▼ 整備済みパソコン紹介 */
.product-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.product-heading {
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  font-size:36px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .product-heading {
    font-size:30px;
  }
}

.product-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.product-text {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 768px) {
  .product-text p br {
    display: none;
  }
}

.product-image img {
  max-width: 350px;
  height: auto;
}

/* ▼ 相談から購入までの流れ（画像） */
.flow-section {
  padding: 60px 20px 130px;
  background: linear-gradient(to right, #d3eaf6, #b6e4eb);
  text-align: center;
}


@media (max-width: 768px) {
  .flow-section {
    padding: 20px 20px;
  }
}

.flow-section h2 {
  font-size: 28px;
   letter-spacing: 0.1em; /* 例: 文字間をやや広げる */
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.flow-img-wrapper {
  display: flex;
  justify-content: center;
}

.flow-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
body {
  margin: 0;
  background: #fff;
}
/* ▼ 販売実績） */
.sales-section {
  background-color: #fffaf0;  /* ← ベージュ背景 */
  padding: 80px 20px 60px;
text-align: center;
}

@media (max-width: 768px) {
  .sales-section {
    padding: 20px 20px;
  }
}

.sales-section h2 {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
}
.sales-section h2 span {
  color: #333;
}
.sales-section h2 strong {
  color: #e60012;
}
.sales-section .sub {
  font-weight: bold;
  margin-bottom: 30px;
}

/* Swiper */
.sales-slider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
overflow: hidden !important;
  position: relative; /* 念のため */
}

/* ボタンを最前面にして確実にクリックできるように */
.sales-slider .swiper-button-prev,
.sales-slider .swiper-button-next {
  z-index: 50 !important;
  pointer-events: auto;
}

/* スライドは背面でOK */
.sales-slider .swiper-slide {
  z-index: 1;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  position: relative;
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
  line-height: 1.6;
}

.price-area {
  margin-top: 10px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
  display: block;
}
.new-price {
  color: #ff4a00;
  font-weight: bold;
  font-size: 1.2em;
}

.web-price {
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9em;
  margin-top: 10px;
}


/* メーカーバッジ */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8em;
  padding: 10px;
  font-weight: bold;
}

/* 矢印スタイルはSwiperJSが付与するので調整不要だが必要なら以下追加可 */
.swiper-button-prev,
.swiper-button-next {
  color: #e60012;
}

/* ボタン */
.btn-area {
  margin-top: 40px;
}
.btn-red {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-red:hover {
  background: #cc0010;
}


.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  height: 100%;
  user-select: none;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.swiper-button-prev,
.swiper-button-next {
  background: #e60012;
  width: 15px;
  height: 15px;
  color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
font-size: 12px !important;
color: #fff !important;
outline: none;
}

.btn-area {
  margin-top: 40px;
}

.btn-red {
  background-color: #e60012;
  color: #fff;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-red:hover {
  opacity: 0.8;
}


.swiper {
  max-width: 1100px;  /* ★ 最大幅を指定して中央に */
  margin: 0 auto;      /* ★ 中央揃え */
  position: relative;  /* ★ 矢印配置のため */
}



.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: 25%;
  min-width: 250px;
  box-sizing: border-box;
  padding: 10px;
  height: auto !important;
  display: flex;
  align-items: stretch;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 50%; /* ← タブレットでは2枚表示 */
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    width: 100%; /* ← スマホでは1枚表示 */
  }
}


.product-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  text-align: left;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.swiper-slide {
  height: auto !important;
  display: flex;
  align-items: stretch;  /* 高さを揃える */
}
.swiper {
  position: relative;
 overflow: hidden;  /* ← ここが重要 */
}
/* ★ 矢印スタイルを調整（中央に重ねて表示） */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;     /* ✅ 追加 */
  top: 50%;               /* ✅ 中央に配置 */
  transform: translateY(-50%);
  background: red;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  z-index: 10;
}
/* 販売実績セクションの画像をスライド幅内に収める */
.top-sales .sales-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}



.review-section {
    padding: 80px 20px 60px;
  text-align: center;
  background-color: #f9f9f9; /
}

@media (max-width: 768px) {
  .review-section {
    padding: 20px 20px;
  }
}


.review-section h2 {
  font-size: 1.8em;
  font-weight: bold;
}

.review-section h2 span {
  color: #333;
}

.review-section h2 strong {
  color: #e60012;
}

.review-section .sub {
  font-weight: bold;
  margin-bottom: 30px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* 必須 */
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

.review-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.review-meta {
  font-size: 0.9em;
  margin-bottom: 10px;
  color: #666;
}

.review-rating {
  font-size: 0.95em;
  margin-bottom: 10px;
}

.stars {
  color: #f5b301;
}

.review-text {
  font-size: 1em;
  margin-bottom: 10px;
}

.review-name {
  font-size: 0.9em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.admin-reply {
  background: #f0f0f0;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9em;
  margin-top: 10px;
}

.review-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

.review-button-prev,
.review-button-next {
  color: #333;
}

/* ★ レビューカードの高さをスライドで統一 */
.review-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.review-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
/* ★ スライドの中のカードを全て同じ高さにする */
.swiper-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.review-rating.with-icon-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}

.review-scores {
  flex: 1;
}

.review-icon img {
  width: 70px;
  height: auto;
  display: block;
}



.payment-section {
  text-align: center;
  padding: 80px 20px;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .payment-section {
    padding: 20px 20px;
  }
}

.section-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #e60012;
  margin-bottom: 30px;
}

.payment-block {
  margin-bottom: 30px;
  border: 2px solid #e60012;
  border-radius: 10px;
  overflow: hidden;
}

.payment-header {
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  padding: 12px 0;
  font-size: 1.1em;
}

.payment-body {
  padding: 20px 10px;
}

.card-icons img,
.bank-icons img {
  height: 36px;
  margin: 0 8px;
  vertical-align: middle;
}

.shipping-body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  font-weight: normal;
  color: #333;
}

.shipping-body span {
  line-height: 1.5;
  max-width: 400px;
  text-align: left;
}

.truck-icon {
  height: 40px;
}


/* ▼ コンタクトセクション全体 */
.contact-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact-section .contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffe600;
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

/* ▼ テキスト部分 */
.contact-section .contact-text {
  flex: 1 1 350px;
  text-align: left;
}

.contact-section .contact-text h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000;
}

.contact-section .contact-text p {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  margin-bottom: 12px; /* ボタンとの間隔縮小 */
}

/* ▼ ボタン部分：縦並び */
.contact-section .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 300px;
  align-items: center;
}

.contact-section .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 240px;
  box-sizing: border-box;
}

.contact-section .contact-btn img {
  height: 28px;
  margin-right: 15px;
}

.contact-section .contact-btn:hover {
  opacity: 0.85;
}

.contact-section .line-btn {
  background-color: #00c300;
}

.contact-section .mail-btn {
  background-color: #e60012;
}

/* ▼ レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-section .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px; /* gap: 12px → 20pxに */
  }

  .contact-section .contact-text {
    flex: unset;
    width: 100%;
    text-align: center; /* スマホは中央寄せでも見やすい */
  }

  .contact-section .contact-text h2 {
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .contact-section .contact-text p {
    margin-bottom: 12px;
    font-size: 1em;
    line-height: 1.6;
  }

  .contact-section .contact-buttons {
    flex: unset;
    width: 100%;
    gap: 12px;
    align-items: center;
  }

  .contact-section .contact-btn {
    padding: 12px 20px;
    font-size: 1.05em;
    max-width: 260px;
    height: auto;
    border-radius: 999px;
  }

  .contact-section .contact-btn img {
    height: 22px;
    margin-right: 12px;
  }
}


.form-section {
  width: 100%; margin-left: 0; margin-right: 0; 
  padding: 50px 20px;
  background: linear-gradient(to right, #0052a4, #00c0d1);
  color: #fff;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.form-container {
  max-width: 700px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 16px;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}
.form-container h2 {
  font-size: 2.8em;   /* お好きな大きさに調整、例: 2.2em */
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .form-container h2 {
    font-size: 24px; 
  }
}

.logo {
  max-width: 400px;
  margin: 10px auto;
}
.form-container h2,
.form-container .form-desc {
  color: #fff;
}

.form-desc {
  margin-bottom: 30px;
  font-size: 1.3em;
}

/* フォーム全体 */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* ラベルと入力を横並び */
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  text-align: left;
}

/* ラベル */
.form-row label {
  width: 220px;
  font-weight: normal;
  color: #fff;
}

@media (max-width: 768px) {
	.form-row label{
   width: 100%;
  }
}

/* テキスト・URL・Email */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="url"] {
  width: 300px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 1em;
  color: #000;
  box-sizing: border-box;
}

/* テキストエリア */
.form-message {
  flex-direction: column;
  align-items: flex-start;
}

.form-message textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 1em;
  color: #000;
  box-sizing: border-box;
  resize: vertical;
}

/* プライバシー関連 */
.privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  color: #fff;
}

.privacy-link {
  text-align: center;
}

.privacy-link a {
  font-size: 0.85em;
  color: #fff;
  text-decoration: underline;
}

/* 必須バッジ */
.required-badge {
  background-color: #e60012;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}

/* 送信ボタン */
.submit-btn {
  background-color: #e60012;
  color: #fff;
  padding: 10px 60px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  max-width: 260px;
  margin: 0 auto;
  transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background-color: #c60010;
  transform: translateY(-1px);
}


.site-footer {
  background-color: #f5f5f5;
  color: #003366;
  padding: 40px 20px;
  border-top: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
  margin-left: 0;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1 1 220px;
  max-width: 240px;
  margin: 0 auto;
  text-align: left;
}

.footer-column strong {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #003366;
  border-bottom: 1px solid #ccc;
}

.footer-column ul li a:hover {
  border-bottom: 1px solid #003366;
}

.footer-links {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links a {
  color: #003366;
  text-decoration: underline;
}

/* ▼ 会社情報カラム調整 */
.company-info {
  font-size: 12px;              /* 小さめに調整 */
  line-height: 1.4;
  color: #333;
  max-width: 260px;
}

.company-info p {
  margin: 4px 0;
  word-break: break-word;       /* 折り返し対応 */
}

.company-info a {
  color: #003366;
  text-decoration: underline;
}

.logo-small {
  width: 100px;
  margin-bottom: 10px;
}

.logo-k2 {
  width: 100px;
  margin-top: 10px;
}




/* プライバシーポリシーページ専用スタイル */
.privacy-policy {
  padding: 60px 20px;
  font-size: 15px;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-policy h1 {
  font-size: 28px;
  margin-bottom: 40px;
}

.privacy-policy h2 {
  margin-top: 30px;
  font-size: 20px;
  color: #e60012;
}

/* LINE 固定バナー */
.line-fixed-banner {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #fff;
  border: 2px solid #06c755;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}

.line-fixed-banner img.line-qr {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.line-text {
  flex: 1;
}

.line-title {
  font-weight: bold;
  color: #06c755;
  margin: 0;
  font-size: 14px;
}

.line-desc {
  font-size: 12px;
  color: #333;
  margin: 2px 0 0;
}

.line-add-btn {
  background: #06c755;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.3s;
}

.line-add-btn:hover {
  background: #04a84c;
}

.line-floating-banner:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.line-floating-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

.line-floating-text {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
}

/* モバイル調整 */
@media (max-width: 600px) {
  .line-floating-banner {
    width: 60px;
    height: 150px;
    bottom: 80px;
  }

  .line-floating-icon {
    width: 30px;
    height: 30px;
  }

  .line-floating-text {
    font-size: 13px;
  }
}
/* PickPCセクションだけフォント強制適用 */
.pickpc-section,
.pickpc-section * {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Segoe UI", "Meiryo", sans-serif !important;
}

@media (max-width: 768px) {
	.pickpc-catch {
  font-size: 16px;
}
	.pickpc-catch span {
  font-size: 24px;
}

/* ブログ個別ページスタイル */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.8;
  background: #f9f9f9;
  color: #333;
}

.site-header {
  background: #e60012;
  color: #fff;
  padding: 20px;
  text-align: center;
}


.blog-article {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.blog-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.blog-meta {
  font-size: 14px;
  color: #666;
  margin: 10px 0 30px;
}

.blog-content h3 {
  font-size: 20px;
  color: #333;
  margin-top: 30px;
}

.blog-content p {
  margin-bottom: 20px;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

.back-link a {
  color: #e60012;
  text-decoration: none;
  font-weight: bold;
}
.blog-card {
  display: block;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.blog-card h3 {
  font-size: 20px;
  margin-top: 10px;
}
.blog-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
	.single-blog-thumb img{
		width: 100%;
    height: 340px;
	}
}

.top-floating-banner {
  position: fixed;
  bottom: 20px; /* LINEボタンの上に出す場合、調整可能 */
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 6px 8px;
  z-index: 999;
  transition: opacity 0.3s;
}

.top-floating-banner:hover {
  background: #f0f0f0;
}

.top-floating-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.top-floating-text {
  font-size: 10px;
  color: #333;
  text-align: center;
  line-height: 1.2;
}

html {
  scroll-behavior: smooth;
}
