/* reset.css - ブラウザのデフォルトスタイルをリセット */

/* ボックスサイズを全て border-box に */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディングをリセット */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素のデフォルト表示設定 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* 基本行の高さを設定 */
body {
  line-height: 1.6;
}

/* リストスタイルの削除 */
ol,
ul {
  list-style: none;
}

/* 引用符の削除 */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* テーブルのボーダーを削除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* リンクのデフォルトスタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の最大幅を設定 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* フォームのリセット */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* テキストエリアのリサイズを無効化 */
textarea {
  resize: vertical;
}

/* フォームのスタイルを無効化 */
button,
input {
  overflow: visible;
}

/* iOSのデフォルトスタイルを削除 */
button,
input,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* 電話番号リンクのスタイルを無効化 */
[href^="tel"] {
  text-decoration: none;
  color: inherit;
}
/* common.css - サイト全体で共通のスタイル */

:root {
  /* カラー定義 */
  --main-color: #4b8e70; /* メインカラー - 信頼感のあるグリーン */
  --main-light: #6ba58a;
  --main-dark: #346554;

  --accent-color: #d89c59; /* アクセントカラー - 温かみのある金色 */
  --accent-light: #e8b87c;
  --accent-dark: #b67d3e;

  --base-color: #fcfbf6; /* ベースカラー - クリーム色 */
  --base-light: #ffffff;
  --base-dark: #f2eee4;

  --text-color: #43392f; /* テキストカラー - ダークブラウン */
  --text-light: #5a5252;
  --text-muted: #888888;

  --cta-color: #e05c3d; /* CTAカラー - 目立つオレンジ */
  --cta-hover: #c54d32;

  --border-color: #dfd2b0; /* ボーダーカラー */
  --shadow-color: rgba(0, 0, 0, 0.08); /* 影の色 */
  --error-color: #e31a1a; /* エラーカラー */

  /* その他の変数 */
  --content-maxw: 1200px; /* コンテンツの最大幅 */
  --header-height: 80px; /* ヘッダーの高さ */
}

/* 基本スタイル */
body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  color: var(--text-color);
  background-color: var(--base-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PCとSP表示の切り替え */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* コンテナ幅の設定 */
.container {
  width: 100%;
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* 全幅コンテンツ */
.widecontent {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 768px) {
  .widecontent {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* セクション共通スタイル */
section {
  padding: 50px 0;
  margin-bottom: 50px;
}

section:last-child {
  margin-bottom: 0;
}

/* 背景色クラス */
.bg-light {
  background-color: var(--base-dark);
}

.bg-accent {
  background-color: var(--accent-light);
}

.bg-main {
  background-color: var(--main-color);
  color: #fff;
}

/* 見出しスタイル */
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-weight: bold;
  line-height: 1.4;
}

h2 {
  position: relative;
  margin-bottom: 30px;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin-top: 15px;
}

/* センタリング */
.center {
  text-align: center;
}

/* フォントサイズクラス */
.fsz11 {
  font-size: 11px;
}
.fsz13 {
  font-size: 13px;
}
.fsz16 {
  font-size: 16px;
}
.fsz20 {
  font-size: 20px;
}
.fsz25 {
  font-size: 25px;
}
.fsz28 {
  font-size: 28px;
}
.fsz30 {
  font-size: 30px;
}
.fsz35 {
  font-size: 35px;
}
.fsz45 {
  font-size: 45px;
}

/* PCデバイス用のフォントサイズ調整 */
@media (min-width: 768px) {
  .xfsz13 {
    font-size: 13px;
  }
  .xfsz16 {
    font-size: 16px;
  }
  .xfsz20 {
    font-size: 20px;
  }
  .xfsz25 {
    font-size: 25px;
  }
  .xfsz30 {
    font-size: 30px;
  }
}

/* ボタン共通スタイル */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* メインボタン */
.btn-main {
  background-color: var(--main-color);
  color: white;
  box-shadow: 0 3px 10px rgba(75, 142, 112, 0.3);
}

.btn-main:hover {
  background-color: var(--main-dark);
}

/* CTAボタン */
.btn-contact {
  background-color: var(--cta-color);
  color: white;
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-contact:hover {
  background-color: var(--cta-hover);
}

/* もっと見るボタン */
.btn-more {
  display: block;
  width: 300px;
  margin: 30px auto 0;
  padding: 15px 0;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  color: var(--accent-dark);
  font-weight: bold;
  text-align: center;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.btn-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent-dark);
  border-right: 2px solid var(--accent-dark);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  transition: all 0.3s ease;
}

.btn-more:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-more:hover::after {
  border-color: white;
  right: 15px;
}

/* インデント付きテキスト */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* 無効化された要素 */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* トップに戻るボタン */
#to_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#to_top.visible {
  opacity: 1;
  visibility: visible;
}

#to_top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#to_top a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  left: 19px;
}

/* フェードイン アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
/* ==================== ヘッダー ==================== */
header {
  position: relative;
  z-index: 10;
}

.header__inner {
  background-color: var(--base-light);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.header__top {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .header__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-maxw);
    margin: 0 auto;
    padding: 20px;
  }
}

/* ロゴエリア */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .logo-area {
    flex-direction: row;
    margin-bottom: 0;
    gap: 20px;
  }
}

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

@media (min-width: 768px) {
  .logo {
    width: 180px;
    margin-bottom: 0;
  }
}

.logo img {
  width: 100%;
  height: auto;
}

/* 電話・問い合わせエリア */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .header-contact {
    flex-direction: row;
    gap: 20px;
  }
}

.tel-area {
  text-align: center;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .tel-area {
    text-align: right;
    margin-bottom: 0;
  }
}

.tel-number {
  color: var(--main-color);
  font-weight: bold;
  line-height: 1;
  background: url("../images/icon-tel.svg") no-repeat left center;
  background-size: 25px;
  padding-left: 30px;
  display: inline-block;
}

.tel-hours {
  color: var(--text-muted);
  line-height: 1.2;
}

.contact-btn-area {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-btn-area {
    width: auto;
  }
}

.contact-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: var(--cta-color);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .contact-btn {
    width: auto;
    padding: 12px 30px;
  }
}

.contact-btn:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 92, 61, 0.4);
}

/* グローバルナビゲーション */
.global-nav {
  background-color: var(--main-color);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-list {
    max-width: var(--content-maxw);
    margin: 0 auto;
    flex-wrap: nowrap;
  }
}

.nav-item {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:nth-child(even) {
  border-right: none;
}

@media (min-width: 768px) {
  .nav-item {
    width: auto;
    flex-grow: 1;
    border-bottom: none;
    border-right: none;
    position: relative;
  }
}

.nav-item a {
  display: block;
  padding: 15px 10px;
  color: white;
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .nav-item a {
    padding: 15px;
  }
}

.nav-item a:hover,
.nav-item.active a {
  background-color: var(--main-dark);
}

.nav-item--has-dropdown {
  position: relative;
}

.nav-item--has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-top: 5px solid white;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-item--has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 12px 15px;
  color: var(--text-color);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li a:hover {
  background-color: var(--base-dark);
}
/* ヘッダーお知らせ - リンクなしバージョン */
.header-notice {
  background-color: var(--base-color);
  padding: 0 20px;
  margin-bottom: 20px;
}

/* aタグの代わりに直接コンテナに適用 */
.header-notice > div:first-child {
  display: flex;
  flex-direction: column;
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .header-notice > div:first-child {
    flex-direction: row;
    align-items: center;
  }
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .notice-title {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.notice-title img {
  width: 16px;
  height: 16px;
}

.notice-content p {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* メインビジュアルの基本スタイル */
.main-visual {
  width: 100%;
  height: calc(100vw * 800 / 1920); /* 元画像の比率を維持 */
  min-height: 350px; /* 最小高さを設定 */
  max-height: 600px; /* 最大高さを設定 */
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.mv-inner {
  width: 100%;
  height: 100%;
}
.mv-inner {
  position: relative; /* 子要素の絶対配置の基準点 */
}

.mv-message-overlay {
  position: absolute;
  top: 25%; /* 上から25%の位置 */
  left: 5%;
  z-index: 2; /* 画像より前面に */
  width: 70%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の背景 */
  border-radius: 5px;
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(20px); /* 少し下からフェードイン */
  transition: opacity 1s ease, transform 1s ease; /* フェードインのトランジション */
}

.mv-message-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-main-message {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* 視認性向上のためのシャドウ */
}

.mv-main-message .highlight {
  color: #ff6b00; /* オレンジ色で「高価買取」を強調 */
  font-size: 110%; /* 少し大きく */
}

.mv-sub-message {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.mv-detail-message {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .mv-message-overlay {
    width: 90%;
    padding: 15px;
    top: 25%;
  }

  .mv-main-message {
    font-size: 24px;
  }

  .mv-sub-message {
    font-size: 20px;
  }

  .mv-detail-message {
    font-size: 15px;
  }
}

/* PC用画像とスマホ用画像の切り替え設定 */
.pc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* 初期状態では非表示 */
}

/* 店主からのメッセージ */
.owner-message {
  background-color: #f8f8f8;
  padding: 30px 0;
  margin-bottom: 30px;
}

.message-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

@media (min-width: 768px) {
  .message-inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
  }
}

.message-photo {
  width: 120px;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .message-photo {
    margin-right: 30px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.message-photo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--main-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.owner-name {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  color: var(--main-color);
}

.message-text h3 {
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.message-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* 近江屋からのお約束 */
.promise-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .promise-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promise-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 10px var(--shadow-color);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.promise-item:hover {
  transform: translateY(-5px);
}

.promise-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-icon span {
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.promise-item h3 {
  color: var(--main-color);
  margin-bottom: 15px;
}

.promise-item p {
  color: var(--text-color);
  line-height: 1.6;
}

.message-box {
  background-color: var(--main-color);
  color: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.message-box p {
  line-height: 1.8;
}

/* 初めてでも安心セクション */
.first-time-section {
  padding: 50px 0;
}

.first-time-box {
  background-color: #f4f8fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.first-time-box h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 25px;
  line-height: 1.4;
}

.first-time-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .first-time-content {
    flex-direction: row;
    align-items: center;
  }
}

.first-time-image {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .first-time-image {
    width: 35%;
    margin-right: 30px;
    margin-bottom: 0;
  }

  .first-time-text {
    width: 65%;
  }
}

.first-time-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.first-time-text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.first-time-text .highlight {
  color: var(--cta-color);
  font-weight: bold;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact-btns {
    flex-direction: row;
    justify-content: center;
  }
}

.tel-btn,
.line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease;
}

.tel-btn {
  background-color: var(--main-color);
  color: white;
  box-shadow: 0 3px 8px rgba(75, 142, 112, 0.25);
}

.tel-btn:hover {
  background-color: var(--main-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 142, 112, 0.3);
}

.line-btn {
  background-color: #06c755;
  color: white;
  box-shadow: 0 3px 8px rgba(6, 199, 85, 0.25);
}

.line-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 199, 85, 0.35);
}

.tel-icon,
.line-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tel-icon {
  background-image: url("../images/icon-tel-white.svg");
}

.line-icon {
  background-image: url("../images/icon-line-white.svg");
}

/* お客様のストーリー */
.story-section {
  padding: 60px 0;
  background-color: #f0f4f7;
}

.story-box {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.story-header {
  text-align: center;
  margin-bottom: 40px;
}

.story-header h2 {
  color: var(--main-color);
  margin-bottom: 15px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.story-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .story-item {
    flex-direction: row;
    align-items: stretch;
  }
}

.story-photo {
  width: 100%;
}

@media (min-width: 768px) {
  .story-photo {
    width: 40%;
    min-width: 40%;
    flex-shrink: 0;
  }

  .story-text {
    width: 60%;
    flex-grow: 1;
  }
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text {
  padding: 25px;
}

.story-text h3 {
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.story-text p {
  line-height: 1.7;
}

.customer-info {
  display: block;
  margin-top: 15px;
  text-align: right;
  font-style: italic;
  color: var(--text-muted);
}

/* スマホ向け調整 */
@media (max-width: 767px) {
  .story-photo {
    height: 250px; /* モバイルでの画像の高さを固定 */
  }

  .story-item {
    margin-bottom: 20px;
  }
}

/* お問い合わせセクション - calc()を使用して柔軟な余白調整 */
.contact-section {
  background-color: var(--main-color);
  padding: 30px 0;
  margin-top: 10px; /* 基本値を正の値に修正 */
  position: relative;
  z-index: 10; /* 重なり順を制御 */
}

.contact-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: bold;
  font-size: 20px;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 電話番号エリア */
.contact-tel {
  text-align: center;
}

.tel-number {
  font-size: 35px;
  font-weight: bold;
  color: var(--cta-color);
  line-height: 1.2;
  margin-bottom: 5px;
}

.tel-hours {
  font-size: 13px;
  color: var(--text-muted);
}

/* お申込みボタン */
.contact-form a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--cta-color);
  color: white;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.contact-form a:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 92, 61, 0.4);
}

.icon-form {
  width: 20px;
  height: 20px;
  background: url("../images/icon-mail.svg") no-repeat center;
  background-size: contain;
}

/* コンテナの調整 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* メインコンテンツエリア */
main {
  padding-top: 40px;
}

/* レスポンシブ対応 - PC */
@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-section {
    margin-top: 0; /* タブレットでは余白なし */
  }
}

/* スマホ表示の設定 */
@media (max-width: 767px) {
  .main-visual {
    height: auto; /* 高さを自動調整に変更 */
    min-height: unset; /* 最小高さの制限を解除 */
    max-height: unset; /* 最大高さの制限を解除 */
    padding-bottom: 25px;
  }

  .pc-image {
    display: none; /* PC用画像を非表示 */
  }

  .sp-image {
    width: 100%;
    height: auto; /* 高さを自動調整に */
    object-fit: unset; /* object-fit をリセット */
    display: block;
  }

  .contact-section {
    margin-top: -30px; /* スマホでは適度な重なり */
  }

  .tel-number {
    font-size: 28px; /* モバイルでは電話番号を少し小さく */
  }

  .contact-form a {
    padding: 12px 20px; /* モバイルではボタンを少しコンパクトに */
  }
}
.contact-section {
  margin-top: -25px;
}
/* おすすめポイントセクション */
.recommend-features {
  padding: 60px 0;
  background-color: #f8f8f8;
  margin: 40px 0;
}

.recommend-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recommend-features__heading {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recommend-features__heading span {
  display: block;
  line-height: 1.4;
}

.recommend-features__heading span:last-child {
  font-weight: bold;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.recommend-features__heading span:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--main-color, #1a5fb4);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: rgba(26, 95, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 35px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-card__icon--appraisal {
  background-image: url("../images/icon-price.svg");
}

.feature-card__icon--support {
  background-image: url("../images/icon-staff.svg");
}

.feature-card__icon--trust {
  background-image: url("../images/icon-privacy.svg");
}

.feature-card__title {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
  font-weight: bold;
}

.feature-card__title .highlight {
  color: var(--main-color, #1a5fb4);
}

.feature-card__text {
  line-height: 1.6;
  color: #666;
  margin: 0;
}
/* ==================== 会社紹介 ==================== */
.about {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .about {
    flex-direction: row;
    gap: 50px;
    max-width: var(--content-maxw);
    margin: 0 auto;
    padding: 80px 20px;
  }
}
.about-left {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about-left {
    width: 55%;
    margin-bottom: 0;
  }
  .about-right {
    width: 45%;
  }
}
.about h2 {
  margin-bottom: 30px;
  color: var(--main-color);
}

/* スマホ表示用の画像スタイル */
.about-image-sp {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.about p {
  margin-bottom: 20px;
}
.about-href {
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}
.about-href:hover {
  transform: translateY(-5px);
}
.about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

/* スマホ・PC表示の切り替え用クラス */
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* ==================== 買取実績 ==================== */
.results {
  padding: 20px 0; /* 左右のパディングを0にする */
}

.results h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.results .lead {
  text-align: center;
  margin-bottom: 40px;
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 30px;
  max-width: var(--content-maxw);
}

@media (min-width: 768px) {
  .results-container {
    flex-direction: row;
    justify-content: center; /* 横並びのときは中央揃え */
    margin: 0 auto 40px;
    padding: 0 20px;
  }
}

.results__list {
  flex: 1;
  max-width: 450px; /* カードの最大幅を制限 */
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.results-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.results-title {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.results-price {
  padding: 15px;
  background-color: var(--main-color);
  color: white;
}

.results-price-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.results-price-yen {
  font-weight: bold;
}

.results-price-yen .en {
  font-weight: normal;
}

.results-info {
  padding: 15px;
  background-color: var(--base-dark);
}

.results-info-upper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.results-info-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.results-areaname {
  color: var(--text-muted);
}

.results-info-item {
  color: var(--main-color);
}

.results-howto {
  color: var(--text-muted);
}

.results-attention {
  max-width: var(--content-maxw);
  margin: 0 auto 30px;
  padding: 20px;
  background-color: var(--base-dark);
  border-radius: 5px;
}

.results-attention p {
  margin-bottom: 5px;
  color: var(--text-muted);
}

.results-attention p:last-child {
  margin-bottom: 0;
}

.btn-more {
  display: block;
  width: 250px;
  margin: 0 auto;
  padding: 15px;
  background-color: var(--main-color);
  color: white;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background-color: var(--main-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 142, 112, 0.3);
}

/* ==================== 買取アイテム一覧 ==================== */
.items {
  padding: 50px 0;
}

.items-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.items h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.items .lead {
  text-align: center;
  margin-bottom: 40px;
}

.itemlists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .itemlists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.itemlist {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}

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

.itemlist a {
  display: flex;
  align-items: center;
}

.item-left {
  width: 40%;
}

.item-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-right {
  width: 60%;
  padding: 20px;
}

.item-right .title {
  text-align: center;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 10px;
}

/* ==================== 買取方法 ==================== */
.howto {
  padding: 50px 0;
}

.howto-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.howto h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.howto .lead {
  text-align: center;
  margin-bottom: 40px;
}

.howtolists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .howtolists {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .howtolists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.howtolist {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}

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

.howtolist a {
  display: block;
}

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

.howtolist-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.howtolist-text.visit {
  border-bottom: 5px solid #ff9800;
}

.howtolist-text.store {
  border-bottom: 5px solid #2196f3;
}

.howtolist-text.delivery {
  border-bottom: 5px solid #4caf50;
}

.howtolist-text .title {
  font-weight: bold;
  margin-bottom: 5px;
}

.howto-guide {
  text-align: center;
}

.howto-guide p {
  margin-bottom: 20px;
  font-weight: bold;
}

.howto-guide a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main-color);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.howto-guide a:hover {
  background-color: var(--main-dark);
}

/* ==================== CTAエリア ==================== */
.cta-area {
  padding: 35px 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-box .title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--main-color);
  font-weight: bold;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
  }
}

.cta-tel,
.cta-form {
  flex: 1;
  text-align: center;
}

.cta-tel {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .cta-tel {
    padding-bottom: 0;
    padding-right: 30px;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
  }
}

.cta-tel .title,
.cta-form .title {
  margin-bottom: 20px;
}

.cta-tel p:nth-child(2) {
  color: var(--cta-color);
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 10px;
}

.cta-tel p:nth-child(2) span {
  background: url("../images/icon-tel.svg") no-repeat left center;
  background-size: 30px;
  padding-left: 35px;
  display: inline-block;
}

.cta-tel p:nth-child(3) {
  color: var(--text-muted);
}

.btn-contact {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--cta-color);
  color: white;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 92, 61, 0.4);
}

/* ==================== 安心ポイント ==================== */
.reliability {
  padding: 50px 20px;
  max-width: var(--content-maxw);
  margin: 0 auto;
}

.reliability h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.reliability .lead {
  text-align: center;
  margin-bottom: 40px;
}

.reliability-lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .reliability-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reliability-list {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.reliability-list h3 {
  color: var(--main-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

/* ==================== お客様の声 ==================== */
.voice {
  padding: 50px 0;
}

.voice-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.voice h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.voice .lead {
  text-align: center;
  margin-bottom: 40px;
}

.voice-lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .voice-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.voice-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
  position: relative;
}

.voice-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 10px 10px 0 0;
}

.voice-text {
  margin-bottom: 20px;
}

.voice-text .title {
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.voice-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.voice-pref,
.voice-gender,
.voice-method {
  position: relative;
  padding-left: 15px;
}

.voice-pref::before,
.voice-gender::before,
.voice-method::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.voice-pref::before {
  background-image: url("../images/icon-map.svg");
}

.voice-gender::before {
  background-image: url("../images/icon-user.svg");
}

.voice-method::before {
  background-image: url("../images/icon-method.svg");
}

.voice-attention {
  margin-bottom: 30px;
}

.voice-attention li {
  margin-bottom: 5px;
}

.voice-attention li:last-child {
  margin-bottom: 0;
}

/* ==================== フッター ==================== */
footer {
  background-color: var(--main-color);
  color: white;
  padding-top: 50px;
}

.footer-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
  }
}

.footer-menu-item {
  flex: 1;
}

.footer-btn {
  margin-bottom: 40px;
}

.footer-btn .title {
  display: block;
  padding: 15px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background-color 0.3s;
}

.footer-btn .title:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-contact {
  padding: 20px;
  background-color: white;
  color: var(--text-color);
  border-radius: 10px;
}

.footer-contact .title {
  color: var(--main-color);
  margin-bottom: 15px;
}

.footer-contact p:nth-child(2) {
  font-weight: bold;
  color: var(--cta-color);
  line-height: 1.1;
  margin-bottom: 10px;
  background: url("../images/icon-tel.svg") no-repeat left center;
  background-size: 25px;
  padding-left: 30px;
}

.footer-contact small {
  display: block;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-contact .btn-contact {
  display: block;
  width: 100%;
}

.footer-link-lists {
  margin-bottom: 30px;
}

.footer-link-list {
  margin-bottom: 15px;
}

.footer-link-list:last-child {
  margin-bottom: 0;
}

.footer-link-list .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-link-list a {
  display: block;
  color: white;
  transition: opacity 0.3s;
}

.footer-link-list a:not(.disabled):hover {
  opacity: 0.7;
}

.footer-link-list a.disabled {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .company-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-etc {
  padding: 20px 0;
  text-align: center;
}

/* ==================== トップへ戻るボタン ==================== */
#to_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#to_top.visible {
  opacity: 1;
  visibility: visible;
}

#to_top a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: white;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#to_top a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}

#to_top a:hover {
  background-color: var(--main-dark);
  transform: translateY(-5px);
}

/* ==================== ユーティリティクラス ==================== */
.container {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.widecontent {
  width: 100%;
}

.bg-light {
  background-color: var(--base-dark);
}

.center {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.header__inner {
  background-color: var(--base-light);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.header__top {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .header__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-maxw);
    margin: 0 auto;
    padding: 20px;
  }
}

/* ロゴエリア */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .logo-area {
    flex-direction: row;
    margin-bottom: 0;
    gap: 20px;
  }
}

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

@media (min-width: 768px) {
  .logo {
    width: 180px;
    margin-bottom: 0;
  }
}

.logo img {
  width: 100%;
  height: auto;
}

/* 電話・問い合わせエリア */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .header-contact {
    flex-direction: row;
    gap: 20px;
  }
}

.tel-area {
  text-align: center;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .tel-area {
    text-align: right;
    margin-bottom: 0;
  }
}

.tel-number {
  color: var(--main-color);
  font-weight: bold;
  line-height: 1;
  background: url("../images/icon-tel.svg") no-repeat left center;
  background-size: 25px;
  padding-left: 30px;
  display: inline-block;
}

.tel-hours {
  color: var(--text-muted);
  line-height: 1.2;
}

.contact-btn-area {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-btn-area {
    width: auto;
  }
}

.contact-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: var(--cta-color);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .contact-btn {
    width: auto;
    padding: 12px 30px;
  }
}

.contact-btn:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 92, 61, 0.4);
}

/* グローバルナビゲーション */
.global-nav {
  background-color: var(--main-color);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-list {
    max-width: var(--content-maxw);
    margin: 0 auto;
    flex-wrap: nowrap;
  }
}

.nav-item {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:nth-child(even) {
  border-right: none;
}

@media (min-width: 768px) {
  .nav-item {
    width: auto;
    flex-grow: 1;
    border-bottom: none;
    border-right: none;
    position: relative;
  }
}

.nav-item a {
  display: block;
  padding: 15px 10px;
  color: white;
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .nav-item a {
    padding: 15px;
  }
}

.nav-item a:hover,
.nav-item.active a {
  background-color: var(--main-dark);
}

.nav-item--has-dropdown {
  position: relative;
}

.nav-item--has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-top: 5px solid white;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-item--has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 12px 15px;
  color: var(--text-color);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li a:hover {
  background-color: var(--base-dark);
}

/* ヘッダーお知らせ */
.header-notice {
  background-color: var(--base-color);
  padding: 0 20px;
  margin-bottom: 20px;
}

.header-notice a {
  display: flex;
  flex-direction: column;
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .header-notice a {
    flex-direction: row;
    align-items: center;
  }
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .notice-title {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .mv-inner img {
    max-height: none; /* PCサイズでは高さ制限を解除 */
    object-fit: contain; /* 画像全体が見えるように調整 */
  }
}

.notice-title img {
  width: 16px;
  height: 16px;
}

.notice-content p {
  color: var(--accent-dark);
  text-decoration: underline;
}

.notice-content p:hover {
  text-decoration: none;
}

/* メインビジュアル */
.main-visual {
  position: relative;
  overflow: hidden;
}

.mv-inner {
  position: relative;
}

.mv-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.mv-cta-container {
  background-color: var(--main-color);
  padding: 20px;
}

@media (min-width: 768px) {
  .mv-cta-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(75, 142, 112, 0.9);
    padding: 0;
  }
}

.mv-cta {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mv-cta {
    max-width: 700px;
    margin: 0 auto;
    transform: translateY(30px);
  }
}

.mv-cta .title {
  text-align: center;
  margin-bottom: 15px;
  color: var(--main-color);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-tel p:first-child {
  font-weight: bold;
  color: var(--cta-color);
  line-height: 1.1;
  margin-bottom: 5px;
  text-align: center;
}

.cta-tel p:last-child {
  text-align: center;
  color: var(--text-muted);
}

.cta-form a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--cta-color);
  color: white;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
}

.cta-form a:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 92, 61, 0.4);
}

.icon-form {
  width: 20px;
  height: 20px;
  background: url("../images/icon-mail.svg") no-repeat center;
  background-size: contain;
}

/* ==================== 信頼ポイント ==================== */
.relief-point {
  padding: 30px 0;
}

.relief-point__container {
  background-color: var(--main-color);
  color: white;
  border-radius: 10px;
  overflow: hidden;
}

.relief-point__content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

@media (min-width: 768px) {
  .relief-point__content {
    flex-direction: row;
    align-items: center;
    padding: 30px;
  }
}

.relief-point__content .title {
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .relief-point__content .title {
    width: 200px;
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.relief-point__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .relief-point__lists {
    grid-template-columns: repeat(4, 1fr);
  }
}

.relief-point__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.imageicon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relief-point__list:nth-child(1) .imageicon {
  background: white url("../images/icon-staff.svg") no-repeat center;
  background-size: 30px;
}

.relief-point__list:nth-child(2) .imageicon {
  background: white url("../images/icon-achievement.svg") no-repeat center;
  background-size: 30px;
}

.relief-point__list:nth-child(3) .imageicon {
  background: white url("../images/icon-privacy.svg") no-repeat center;
  background-size: 30px;
}

.relief-point__list:nth-child(4) .imageicon {
  background: white url("../images/icon-price.svg") no-repeat center;
  background-size: 30px;
}

/* ==================== 会社紹介 ==================== */
.about {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
}

@media (min-width: 768px) {
  .about {
    flex-direction: row;
    gap: 50px;
    max-width: var(--content-maxw);
    margin: 0 auto;
    padding: 80px 20px;
  }
}

.about-left {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .about-left {
    width: 55%;
    margin-bottom: 0;
  }

  .about-right {
    width: 45%;
  }
}

.about h2 {
  margin-bottom: 30px;
  color: var(--main-color);
}

.about p {
  margin-bottom: 20px;
}

.about-href {
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}

.about-href:hover {
  transform: translateY(-5px);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

/* ==================== 買取実績 ==================== */
.results {
  padding: 50px 20px;
}

.results h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.results .lead {
  text-align: center;
  margin-bottom: 40px;
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .results-container {
    flex-direction: row;
    max-width: var(--content-maxw);
    margin: 0 auto 40px;
    padding: 0 20px;
  }
}

.results__list {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.results-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.results-title {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.results-price {
  padding: 15px;
  background-color: var(--main-color);
  color: white;
}

.results-price-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.results-price-yen {
  font-weight: bold;
}

.results-price-yen .en {
  font-weight: normal;
}

.results-info {
  padding: 15px;
  background-color: var(--base-dark);
}

.results-info-upper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.results-info-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.results-areaname {
  color: var(--text-muted);
}

.results-info-item {
  color: var(--main-color);
}

.results-howto {
  color: var(--text-muted);
}

.results-attention {
  max-width: var(--content-maxw);
  margin: 0 auto 30px;
  padding: 20px;
  background-color: var(--base-dark);
  border-radius: 5px;
}

.results-attention p {
  margin-bottom: 5px;
  color: var(--text-muted);
}

.results-attention p:last-child {
  margin-bottom: 0;
}

.btn-more {
  display: block;
  width: 250px;
  margin: 0 auto;
  padding: 15px;
  background-color: var(--main-color);
  color: white;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background-color: var(--main-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 142, 112, 0.3);
}

/* ==================== 買取アイテム一覧 ==================== */
.items {
  padding: 50px 0;
}

.items-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.items h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.items .lead {
  text-align: center;
  margin-bottom: 40px;
}

.itemlists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .itemlists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.itemlist {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}

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

.itemlist a {
  display: flex;
  align-items: center;
}

.item-left {
  width: 40%;
}

.item-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-right {
  width: 60%;
  padding: 20px;
}

.item-right .title {
  text-align: center;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 10px;
}

/* ==================== 買取方法 ==================== */
.howto {
  padding: 50px 0;
}

.howto-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.howto h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.howto .lead {
  text-align: center;
  margin-bottom: 40px;
}

.howtolists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .howtolists {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .howtolists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.howtolist {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s;
}

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

.howtolist a {
  display: block;
}

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

.howtolist-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.howtolist-text.visit {
  border-bottom: 5px solid #ff9800;
}

.howtolist-text.store {
  border-bottom: 5px solid #2196f3;
}

.howtolist-text.delivery {
  border-bottom: 5px solid #4caf50;
}

.howtolist-text .title {
  font-weight: bold;
  margin-bottom: 5px;
}

.howto-guide {
  text-align: center;
}

.howto-guide p {
  margin-bottom: 20px;
  font-weight: bold;
}

.howto-guide a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main-color);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.howto-guide a:hover {
  background-color: var(--main-dark);
}

/* ==================== CTAエリア改良版 ==================== */
/* ==================== CTAエリア改良版 ==================== */
.cta-area {
  padding: 30px 0;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-box .title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: bold;
}

/* 3カラムレイアウト */
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* 各CTA要素 */
.cta-tel,
.cta-form,
.cta-line {
  flex: 1;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-tel:hover,
.cta-form:hover,
.cta-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* スマホ表示時の区切り線 */
@media (max-width: 767px) {
  .cta-tel,
  .cta-form {
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
  }

  .cta-line {
    border-bottom: none;
    margin-bottom: 0;
  }
}

/* PC表示時の区切り線 */
@media (min-width: 768px) {
  .cta-tel,
  .cta-form {
    border-right: 1px solid var(--border-color);
    padding-right: 15px;
    margin-right: 15px;
  }

  .cta-line {
    border-right: none;
    margin-right: 0;
  }
}

/* 各セクションのタイトル */
.cta-tel .title,
.cta-form .title,
.cta-line .title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* タイトル前のアイコン */
.cta-tel .title::before,
.cta-form .title::before,
.cta-line .title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-tel .title::before {
  background-image: url("../images/icon-tel.svg");
}

.cta-form .title::before {
  background-image: url("../images/icon-mail.svg");
}

.cta-line .title::before {
  background-image: url("../images/icon-line.svg");
}

/* 電話番号スタイル */
.cta-tel a {
  color: var(--cta-color);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  display: inline-block;
}

.cta-tel a:hover {
  opacity: 0.8;
}

.cta-tel p:nth-child(2) {
  font-size: 40px;
  color: var(--cta-color);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}

.cta-tel p:nth-child(3) {
  color: var(--text-muted);
  font-size: 13px;
}

/* ボタン共通スタイル（ボタン中央配置の修正） */
.btn-contact,
.btn-line {
  display: inline-flex; /* inline-flexに変更 */
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 15px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
}

/* メールフォームボタン */
.btn-contact {
  background-color: var(--cta-color);
  color: white;
  box-shadow: 0 3px 8px rgba(224, 92, 61, 0.25);
}

.btn-contact:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 92, 61, 0.35);
}

/* LINEボタン */
.btn-line {
  background-color: #06c755;
  color: white;
  box-shadow: 0 3px 8px rgba(6, 199, 85, 0.25);
}

.btn-line:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

/* ボタンアイコン */
.mail-icon,
.line-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0; /* アイコンが縮まないように */
}

.mail-icon {
  background-image: url("../images/icon-mail-white.svg");
}

.line-icon {
  background-image: url("../images/icon-line-white.svg");
}

/* 補足テキスト */
.cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.3;
}

/* ==================== 安心ポイント ==================== */
.reliability {
  padding: 50px 20px;
  max-width: var(--content-maxw);
  margin: 0 auto;
}

.reliability h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.reliability .lead {
  text-align: center;
  margin-bottom: 40px;
}

.reliability-lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .reliability-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reliability-list {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.reliability-list h3 {
  color: var(--main-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

/* ==================== お客様の声 ==================== */
.voice {
  padding: 50px 0;
}

.voice-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.voice h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}

.voice .lead {
  text-align: center;
  margin-bottom: 40px;
}

.voice-lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .voice-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.voice-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
  position: relative;
}

.voice-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 10px 10px 0 0;
}

.voice-text {
  margin-bottom: 20px;
}

.voice-text .title {
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.voice-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.voice-pref,
.voice-gender,
.voice-method {
  position: relative;
  padding-left: 15px;
}

.voice-pref::before,
.voice-gender::before,
.voice-method::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.voice-pref::before {
  background-image: url("../images/icon-map.svg");
}

.voice-gender::before {
  background-image: url("../images/icon-user.svg");
}

.voice-method::before {
  background-image: url("../images/icon-method.svg");
}

.voice-attention {
  margin-bottom: 30px;
}

.voice-attention li {
  margin-bottom: 5px;
}

.voice-attention li:last-child {
  margin-bottom: 0;
}

/* ==================== フッター ==================== */
footer {
  background-color: var(--main-color);
  color: white;
  padding-top: 50px;
}

.footer-inner {
  max-width: var(--content-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
  }
}

.footer-menu-item {
  flex: 1;
}

.footer-btn {
  margin-bottom: 40px;
}

.footer-btn .title {
  display: block;
  padding: 15px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background-color 0.3s;
}

.footer-btn .title:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* スマホ表示時のwidecontent要素を中央寄せする修正 */

/* スマホサイズでの中央寄せ修正 */
@media (max-width: 767px) {
  /* results.widecontent クラスを持つ要素の中央寄せ */
  .results.widecontent {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  /* 他の同様のwidecontent要素にも適用 */
  .widecontent.bg-light,
  .cta-area.widecontent,
  .widecontent.kaitori,
  .voice.widecontent {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
}
/* 買取の考え方セクション */
.philosophy-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.philosophy-section .lead {
  text-align: center;
  margin-bottom: 40px;
}

.philosophy-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: var(--content-maxw);
  margin: 0 auto;
}

@media (min-width: 992px) {
  .philosophy-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.philosophy-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .philosophy-image {
    width: 35%;
    position: sticky;
    top: 20px;
  }

  .philosophy-content {
    width: 65%;
    padding-left: 40px;
  }
}

.philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
}

.philosophy-item {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.philosophy-item h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--main-color);
}

.philosophy-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(75, 142, 112, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.philosophy-icon img {
  width: 20px;
  height: 20px;
}

.philosophy-item p {
  line-height: 1.7;
}

.customer-quote {
  background-color: var(--main-color);
  color: white;
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.customer-quote blockquote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.customer-quote blockquote::before {
  content: "\201D"; /* Unicode エスケープシーケンスを使用 */
  font-size: 60px;
  position: absolute;
  left: -10px;
  top: -15px;
  opacity: 0.3;
}

.quote-author {
  display: block;
  margin-top: 15px;
  text-align: right;
  font-size: 14px;
  opacity: 0.8;
}
/* ==================== 初めての方へページ ==================== */

/* ページヘッダー */
.page-header {
  background-color: #f5f5f5;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 0;
}

.page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-color);
}

.page-description {
  font-size: 18px;
  color: #666;
}

/* パンくずリスト */
.breadcrumb {
  background: #f9f9f9;
  padding: 10px 0;
  margin-bottom: 30px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
}

.breadcrumb li {
  position: relative;
  font-size: 14px;
  color: #666;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #ccc;
}

.breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* イントロセクション */
/* パターン1: モダンカード型 */
.first-intro {
  margin-bottom: 60px;
  padding: 30px 0;
}

.intro-message h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--main-color);
  font-weight: 700;
  position: relative;
}

.intro-message h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-text {
  flex: 1;
}

/* コメントカードスタイル */
.intro-text p:nth-child(-n + 3) {
  background-color: white;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  font-size: 17px;
  position: relative;
  padding-left: 35px;
}

.intro-text p:nth-child(-n + 3):before {
  content: '"';
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 40px;
  color: #2d5e7b;
  line-height: 1;
  opacity: 0.5;
}

.intro-text p:last-child {
  padding: 10px;
  line-height: 1.8;
}

.intro-text .highlight {
  color: #2d5e7b;
  font-weight: 700;
}

.intro-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .intro-content {
    flex-direction: column;
  }

  .intro-text p:nth-child(-n + 3) {
    font-size: 15px;
    padding: 15px 15px 15px 30px;
  }

  .intro-text p:nth-child(-n + 3):before {
    left: 10px;
    font-size: 30px;
  }
}
/* 買取の流れセクション */
.process-section {
  padding: 60px 0;
  margin-bottom: 70px;
  background-color: #f9fbfc;
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--main-color), var(--cta-color));
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.section-lead {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

/* タイムライン全体 */
.process-timeline {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}

/* タイムラインの中央線 */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  width: 3px;
  background-color: #e0e0e0;
  z-index: 1;
}

@media (min-width: 768px) {
  .process-timeline::before {
    left: 50px;
  }
}

/* タイムラインの各ステップ */
.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* ステップ番号と線の領域 */
.timeline-step {
  flex-shrink: 0;
  width: 70px;
  position: relative;
  z-index: 3;
}

/* ステップ番号の円 */
.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: white;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  z-index: 3;
}

/* 縦線 */
.step-line {
  height: calc(100% + 40px);
  position: absolute;
  top: 70px;
  left: 35px;
  z-index: 1;
}

/* タイムラインのコンテンツ領域 */
.timeline-content {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-left: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ヘッダー部分 */
.timeline-header {
  padding: 15px 20px;
  background-color: var(--main-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.timeline-title {
  margin: 0;
  font-weight: bold;
}

/* タグ */
.timeline-tag {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: bold;
}

/* コンテンツの本体 */
.timeline-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .timeline-body {
    flex-direction: row;
    align-items: center;
  }
}

/* テキスト部分 */
.timeline-text {
  flex: 1;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .timeline-text {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.timeline-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* 画像部分 */
.timeline-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .timeline-image {
    width: 40%;
    flex-shrink: 0;
  }
}

.timeline-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

/* 連絡方法リスト */
.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-methods li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.contact-methods li:last-child {
  margin-bottom: 0;
}

.contact-methods li i {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.icon-phone {
  background-image: url("../images/icon-tel.svg");
}

.icon-mail {
  background-image: url("../images/icon-mail.svg");
}

.icon-line {
  background-image: url("../images/icon-line.svg");
}

.icon-check {
  background-image: url("../images/icon-check.svg");
}

.icon-cash {
  background-image: url("../images/icon-cash.svg");
}

.icon-bank {
  background-image: url("../images/icon-bank.svg");
}

.icon-info {
  background-image: url("../images/icon-info.svg");
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

/* 査定方法の特徴 */
.method-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

@media (min-width: 576px) {
  .method-features {
    flex-direction: row;
    justify-content: space-between;
  }
}

.method-feature {
  display: flex;
  align-items: center;
  background-color: #f5f8fa;
  padding: 10px;
  border-radius: 8px;
  flex: 1;
}

.method-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.method-icon.visit {
  background-color: rgba(255, 152, 0, 0.1);
  background-image: url("../images/hsvisit.svg");
}

.method-icon.store {
  background-color: rgba(33, 150, 243, 0.1);
  background-image: url("../images/hsstore.svg");
}

.method-icon.takuhai {
  background-color: rgba(76, 175, 80, 0.1);
  background-image: url("../images/hsdelivery.svg");
}

.method-feature p {
  margin: 0;
  color: #444;
}

/* 価格の特徴 */
.price-features {
  margin-top: 15px;
}

.price-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.price-feature:last-child {
  margin-bottom: 0;
}

.price-feature i {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.price-feature p {
  margin: 0;
  color: #444;
}

/* 支払い方法 */
.payment-methods {
  margin-top: 15px;
}

.payment-method {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f8fa;
  border-radius: 8px;
}

.payment-method:last-child {
  margin-bottom: 0;
}

.payment-method i {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.payment-method .method-title {
  margin: 0 0 5px;
  font-weight: bold;
  color: #333;
}

.payment-method .method-desc {
  margin: 0;
  color: #666;
  line-height: 1.4;
}

/* 注釈 */
.process-note {
  background-color: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  border-radius: 5px;
  margin: 0 auto 30px;
  max-width: 900px;
  display: flex;
  align-items: center;
}

.process-note p {
  margin: 0;
  line-height: 1.5;
}

.process-note .highlight {
  color: #ff6600;
  font-weight: bold;
}

/* CTA部分 */
.process-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .process-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cta-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(224, 92, 61, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.btn-contact:hover {
  background-color: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(224, 92, 61, 0.4);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--main-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--main-color);
  text-align: center;
}

.btn-tel:hover {
  background-color: var(--main-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-tel::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/icon-tel.svg") no-repeat center;
  background-size: contain;
  margin-right: 8px;
}

/* タブレット・モバイル調整 */
@media (max-width: 767px) {
  .process-section {
    padding: 40px 0;
  }

  .timeline-step {
    width: 50px;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-line {
    left: 25px;
  }

  .process-timeline::before {
    left: 25px;
  }

  .timeline-header {
    padding: 12px 15px;
  }

  .timeline-body {
    padding: 15px;
  }

  .timeline-tag {
    font-size: 12px;
    padding: 3px 10px;
  }

  .method-features {
    flex-direction: column;
  }
}

/* 買取方法の比較セクション */
.comparison-section {
  padding: 60px 0;
  background-color: #f5f5f5;
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.section-lead {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

/* 比較表 */
.comparison-table-container {
  overflow-x: auto;
  margin-bottom: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  background-color: #f9f9f9;
  font-weight: bold;
  padding: 25px 20px;
}

.comparison-table tbody th {
  text-align: left;
  font-weight: bold;
  background-color: #f9f9f9;
  width: 20%;
}

.method-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.visit-icon {
  background-image: url("../images/hsvisit.svg");
}

.store-icon {
  background-image: url("../images/hsstore.svg");
}

.delivery-icon {
  background-image: url("../images/hsdelivery.svg");
}

.table-column-visit {
  background-color: rgba(255, 152, 0, 0.05);
}

.table-column-store {
  background-color: rgba(33, 150, 243, 0.05);
}

.table-column-delivery {
  background-color: rgba(76, 175, 80, 0.05);
}

/* 買取方法詳細リンクエリア */
.method-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.method-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.15s ease;
  text-align: center;
  min-width: 200px;
}

.visit-link {
  background-color: #ff9800;
  color: white;
}

.store-link {
  background-color: #2196f3;
  color: white;
}

.delivery-link {
  background-color: #4caf50;
  color: white;
}

.method-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* 方法の名前 */
.method-name {
  position: relative;
  padding-right: 20px;
}

.method-name::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}

/* 注釈 */
.comparison-note {
  text-align: center;
  padding: 15px;
  background-color: #fff9e6;
  border-radius: 5px;
  max-width: 800px;
  margin: 0 auto;
  border-left: 3px solid #ffc107;
}

.comparison-note p {
  margin: 0;
}

.highlight {
  color: #ff6600;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .comparison-section {
    padding: 40px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }

  .method-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .method-link {
    width: 100%;
    max-width: 280px;
  }
}

/* 注釈 */
.comparison-note {
  text-align: center;
  padding: 15px;
  background-color: #fff9e6;
  border-radius: 5px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-note p {
  margin: 0;
}

.highlight {
  color: #ff6600;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .comparison-section {
    padding: 40px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }

  .method-button {
    padding: 12px 15px;
  }

  .button-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-size: 24px;
  }
}

/* FAQ セクション */
.faq-section {
  margin-bottom: 80px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.q-mark,
.a-mark {
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
  width: 30px;
  flex-shrink: 0;
}

.q-mark {
  color: var(--main-color);
}

.a-mark {
  color: var(--cta-color);
}

.faq-question h3 {
  margin: 0;
  flex: 1;
  font-weight: bold;
}

.faq-answer {
  display: flex;
  padding: 20px;
  background-color: white;
}

.answer-content {
  flex: 1;
}

.packing-guide {
  margin-top: 20px;
  text-align: center;
}

.packing-guide img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.more-faq {
  text-align: center;
  margin-top: 40px;
}

.more-faq-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.more-faq-button:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

/* お客様体験談セクション */
.experience-section {
  margin-bottom: 80px;
  background-color: #f9f9f9;
  padding: 60px 0;
}

.experience-boxes {
  max-width: 900px;
  margin: 0 auto;
}

.experience-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.experience-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  flex-shrink: 0;
}

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

.experience-content {
  flex: 1;
}

.experience-content h3 {
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--main-color);
}

.experience-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.customer-info {
  color: #666;
  font-style: italic;
}

/* 初めての方へのメッセージセクション */
.message-info {
  margin-bottom: 80px;
}

.message-infobox {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.message-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--main-color);
}

.message-content {
  display: flex;
  align-items: flex-start;
}

.owner-photo {
  width: 180px;
  margin-right: 30px;
  flex-shrink: 0;
  text-align: center;
}

.owner-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid var(--main-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.owner-name {
  font-weight: bold;
  color: var(--main-color);
}

.message-text {
  flex: 1;
}

.message-text p {
  line-height: 1.7;
}

/* ナビゲーションの現在のページ表示 */
.nav-item a.current {
  background-color: var(--main-dark);
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 26px;
  }

  .page-description {
    font-size: 16px;
  }

  .intro-content {
    flex-direction: column;
    gap: 20px;
  }

  .intro-image {
    order: -1;
  }

  .process-step {
    flex-direction: column;
  }

  .process-step:not(:last-child)::after {
    left: 25px;
    top: 60px;
    height: calc(100% - 80px);
  }

  .step-number {
    margin-bottom: 15px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }

  .table-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .experience-box {
    flex-direction: column;
    padding: 20px;
  }

  .experience-image {
    margin: 0 auto 20px;
  }

  .message-content {
    flex-direction: column;
  }

  .owner-photo {
    margin: 0 auto 20px;
  }
}
/* なぜ近江屋が選ばれるのかセクション */
.why-choose-us {
  padding: 70px 0;
  background-color: #f8f9fa;
  margin-bottom: 60px;
  position: relative;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--main-color), var(--cta-color));
}

.why-choose-us .section-title {
  text-align: center;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: bold;
  position: relative;
}

.why-choose-us .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.why-choose-us .section-lead {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.strength-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .strength-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strength-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.strength-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strength-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.strength-box:nth-child(1)::before {
  background-color: var(--main-color);
}

.strength-box:nth-child(2)::before {
  background-color: #ff9800;
}

.strength-box:nth-child(3)::before {
  background-color: var(--cta-color);
}

.strength-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 50%;
}

.strength-icon img {
  width: 30px;
  height: 30px;
}

.strength-box h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.strength-box p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
}

.strength-box .highlight {
  color: var(--cta-color);
  font-weight: bold;
}

.comparison {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  margin-top: auto;
}

.compare-head {
  font-size: 14px;
  font-weight: bold;
  color: #777;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.compare-head::before {
  content: "";
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.compare-head.accent {
  color: var(--main-color);
}

.compare-body {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  padding-left: 20px;
  font-style: italic;
  position: relative;
}

.compare-body::before {
  content: "\201C"; /* 左引用符の Unicode エスケープシーケンス */
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 20px;
  color: #aaa;
}

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

/* レスポンシブ対応 */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .strength-box {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .strength-box {
    padding: 20px;
  }

  .strength-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .strength-icon img {
    width: 25px;
    height: 25px;
  }
}

/* 出張買取ページ用追加CSS */

/* 対応エリアセクション */
.area-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.area-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.area-box {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.area-title {
  background-color: var(--main-color);
  color: white;
  padding: 15px;
  text-align: center;
}

.area-title h3 {
  margin: 0;
}

.area-content {
  padding: 20px;
}

.area-list p {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.area-list p:last-child {
  margin-bottom: 0;
}

.area-list p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

.area-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px 20px;
  background-color: #fff9e6;
  border-radius: 5px;
  border-left: 3px solid #ffc107;
}

.area-note p {
  margin-bottom: 5px;
}

.area-note p:last-child {
  margin-bottom: 0;
}

/* おすすめセクション */
.recommend-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.recommend-boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recommend-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recommend-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.recommend-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  background-color: rgba(75, 142, 112, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-icon img {
  width: 25px;
  height: 25px;
}

.recommend-box h3 {
  margin-bottom: 15px;
  color: var(--main-color);
}

.recommend-box p {
  margin: 0;
  line-height: 1.6;
}

/* 利用者の声 */
.voice-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  margin-bottom: 60px;
}

.voice-boxes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.voice-box {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.voice-content {
  padding: 25px;
}

.voice-header {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.voice-header h3 {
  color: var(--main-color);
  margin-bottom: 10px;
}

.customer-info {
  display: flex;
  align-items: center;
  color: #777;
}

.voice-content p {
  line-height: 1.7;
  margin: 0;
}

/* 特徴と安心ポイント */
.features-section {
  padding: 60px 0;
  margin-bottom: 70px;
}

.features-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.features-box {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.features-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  background-color: rgba(75, 142, 112, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-icon img {
  width: 25px;
  height: 25px;
}

.features-box h3 {
  margin-bottom: 15px;
  color: var(--main-color);
}

.features-box p {
  margin: 0;
  line-height: 1.6;
}

.features-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: center;
}

.features-note p {
  margin: 0;
  line-height: 1.7;
}

.center {
  text-align: center;
}

/* アイコン画像用CSS */
.icon-volume {
  background-image: url("../images/icon-volume.svg");
}
.icon-senior {
  background-image: url("../images/icon-senior.svg");
}
.icon-house {
  background-image: url("../images/icon-house.svg");
}
.icon-time {
  background-image: url("../images/icon-time.svg");
}
.icon-fee {
  background-image: url("../images/icon-fee.svg");
}
.icon-cash {
  background-image: url("../images/icon-cash.svg");
}
.icon-money {
  background-image: url("../images/icon-money.svg");
}
.icon-safe {
  background-image: url("../images/icon-safe.svg");
}

/* タブレット・スマホ対応 */
@media (max-width: 767px) {
  .area-boxes {
    flex-direction: column;
  }

  .features-boxes {
    flex-direction: column;
  }

  .voice-header h3 {
    font-size: 18px;
  }
}
/* 宅配買取ページ用追加CSS */

/* 全国対応エリアのスタイル調整 */
.nationwide-box {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.area-nationwide-message {
  text-align: center;
  margin-bottom: 30px;
}

.area-nationwide-image {
  max-width: 450px;
  margin: 0 auto;
}

.japan-map {
  width: 100%;
  height: auto;
  display: block;
}

/* 宅配買取用アイコン */
.icon-location {
  background-image: url("../images/icon-location.svg");
}

.icon-compare {
  background-image: url("../images/icon-compare.svg");
}

.icon-single {
  background-image: url("../images/icon-single.svg");
}

.icon-store {
  background-image: url("../images/icon-store.svg");
}

/* 宅配買取用強調スタイル */
.takuhai-highlight {
  display: inline-block;
  background-color: rgba(76, 175, 80, 0.1);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
  color: #4caf50;
}

/* 梱包手順項目 */
.packing-steps {
  margin-top: 20px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.packing-steps h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-color);
}

.packing-steps ol {
  margin-left: 20px;
  list-style-type: decimal;
}

.packing-steps li {
  margin-bottom: 8px;
}

.packing-steps li:last-child {
  margin-bottom: 0;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .area-nationwide-message {
    margin-bottom: 20px;
  }

  .area-nationwide-image {
    max-width: 300px;
  }
}
/* 店舗一覧のカスタマイズ用 */
.area-box .area-title {
  background-color: var(--main-color);
  color: white;
  padding: 15px;
  text-align: center;
}

.area-box .area-content {
  padding: 20px;
}

.area-list p {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.area-list p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

/* ステップのアイコン調整 */
.icon-phone,
.icon-mail,
.icon-line {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

/* 店舗画像ホバーエフェクト */
.area-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 店舗一覧セクション用スタイル */
.store-section {
  padding: 50px 0;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

/* タブナビゲーション */
.store-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 5px;
}

.store-tab {
  padding: 12px 25px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.store-tab:hover {
  background-color: #e0e0e0;
}

.store-tab.active {
  background-color: var(--main-color);
  color: white;
}

/* 店舗パネル */
.store-panel-container {
  margin-bottom: 30px;
}

.store-panel {
  display: none;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.store-panel.active {
  display: block;
}

.store-info-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .store-info-container {
    flex-direction: row;
    height: 350px;
  }
}

.store-info {
  padding: 25px;
  flex: 1;
}

.store-map {
  width: 100%;
  height: 250px;
}

@media (min-width: 768px) {
  .store-info {
    width: 50%;
  }

  .store-map {
    width: 50%;
    height: auto;
  }
}

.store-name {
  color: var(--main-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}

.store-detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.store-address,
.store-hours,
.store-closed {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.store-address > div {
  flex: 1;
}

.access-line {
  margin-top: 5px;
  color: #666;
  font-size: 14px;
  padding-left: 15px;
}

/* アイコン */
.icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.icon-location {
  background-image: url("../images/icon-location.svg");
}

.icon-time {
  background-image: url("../images/icon-time.svg");
}

.icon-calendar {
  background-image: url("../images/icon-calendar.svg");
}

/* 注釈 */
.store-notes {
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-top: 20px;
}

.store-notes p {
  margin-bottom: 10px;
  color: #666;
}

.store-notes p:last-child {
  margin-bottom: 0;
}
/* FAQページ用タブスタイル */
.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-tab {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-tab.active {
  background-color: #2d5e7b;
  color: white;
  border-color: #2d5e7b;
}

.faq-page {
  display: none;
}

.faq-page.active {
  display: block;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .faq-category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .faq-tab {
    width: 80%;
    text-align: center;
  }
}
/* お問い合わせセクション用スタイル */
.contact-question-section {
  background-color: #f8f8f8;
  padding: 10px 0;
  margin: 50px 0;
}

.contact-question-box {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

.contact-question-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-question-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-question-content .highlight {
  font-weight: bold;
  color: #2d5e7b;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .contact-question-box {
    padding: 20px 15px;
  }
}

/* カメラ買取ページ用 */
.voice-quote {
  background-color: #f8f8f8;
  border-left: 4px solid var(--main-color);
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 5px 5px 0;
}

.quote-text {
  font-style: italic;
  margin-bottom: 5px;
}

.quote-author {
  text-align: right;
  color: #666;
}

/* 強調テキスト */
.muted-text {
  color: #777;
  font-style: italic;
  font-size: 14px;
  margin-top: 8px;
}

.highlight-text {
  color: var(--main-color);
  font-weight: bold;
  font-size: 14px;
  margin-top: 8px;
}

/* 価格表 */
.price-table-container {
  overflow-x: auto;
  margin-bottom: 30px;
}

.price-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.price-comparison-table th,
.price-comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.price-comparison-table th {
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
}

.price-comparison-table td:first-child {
  text-align: left;
}

.highlight-cell {
  font-weight: bold;
  color: var(--main-color);
}

.difference-cell {
  font-weight: bold;
  color: #e74c3c;
}

/* スマホ表示時のスタイル */
@media (max-width: 767px) {
  .price-comparison-table {
    border: none;
    box-shadow: none;
  }

  .price-comparison-table thead {
    display: none; /* ヘッダーを非表示 */
  }

  .price-comparison-table,
  .price-comparison-table tbody,
  .price-comparison-table tr,
  .price-comparison-table td {
    display: block;
    width: 100%;
  }

  .price-comparison-table tr {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .price-comparison-table td {
    text-align: right;
    padding: 10px 15px;
    position: relative;
    padding-left: 50%;
  }

  .price-comparison-table td:first-child {
    background-color: var(--main-color);
    color: white;
    text-align: center;
    padding-left: 15px;
    font-weight: bold;
  }

  .price-comparison-table td:not(:first-child)::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    text-align: left;
    font-weight: bold;
  }

  .price-comparison-table td:nth-child(2)::before {
    content: "他店査定額";
  }

  .price-comparison-table td:nth-child(3)::before {
    content: "近江屋査定額";
  }

  .price-comparison-table td:nth-child(4)::before {
    content: "差額";
  }
}

/* 証言エリア */
.comparison-testimonial {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}

.comparison-testimonial .quote-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 40px;
  color: #ddd;
}

.comparison-testimonial .quote-text {
  margin-left: 30px;
  font-style: italic;
}

.comparison-testimonial .quote-author {
  text-align: right;
  color: #666;
  margin-top: 10px;
}

/* 遺品整理セクション */
.estate-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-bottom: 60px;
}

.bad-case-box,
.good-case-box {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.bad-case-box {
  border-left: 5px solid #e74c3c;
}

.good-case-box {
  border-left: 5px solid var(--main-color);
}

.bad-case-title,
.good-case-title {
  margin-bottom: 15px;
  font-weight: bold;
}

.bad-case-title {
  color: #e74c3c;
}

.good-case-title {
  color: var(--main-color);
}

.quotation {
  position: relative;
  padding-left: 30px;
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  color: #ddd;
}
.estate-message {
  margin-top: 30px;
}

.estate-message p {
  margin-bottom: 15px;
}

.estate-message p:last-child {
  margin-bottom: 0;
}

.strong-warning {
  color: #e74c3c;
  font-weight: bold;
}

/* カメラジャンル一覧 */
.camera-types-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.camera-types-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.camera-types-subtitle {
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--main-color);
}

.camera-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .camera-brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.camera-brand {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
}

.brand-name {
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--main-dark);
}

.camera-extra-info {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.extra-info-box {
  margin-bottom: 20px;
}

.extra-info-box:last-child {
  margin-bottom: 0;
}

.extra-info-box h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-color);
}

/* 価格交渉セクション */
.price-negotiation-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.negotiation-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.negotiation-quote {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 50px;
}

/* 事例紹介セクション */
.case-study-section {
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #f5f5f5;
}

.case-boxes {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.case-title {
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--main-color);
}

/* 最終CTA強化 */
.final-message {
  margin-bottom: 20px;
  text-align: center;
}

.highlight-message {
  font-weight: bold;
  color: var(--main-color);
  margin: 15px 0;
}

.cta-final-note {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}
/* ========================================
   最新情報カードセクション
   ======================================== */

.latest-updates {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ヘッダー部分 */
.updates-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}

.updates-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.view-all-link {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #004499;
  text-decoration: underline;
}

/* カードコンテナ */
.updates-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 個別カード */
.update-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.update-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* カード画像部分 */
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.update-card:hover .card-image img {
  transform: scale(1.05);
}

/* カードコンテンツ部分 */
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-content .date {
  display: inline-block;
  font-size: 12px;
  color: #999;
  padding: 4px 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .updates-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .updates-header h2 {
    font-size: 24px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .latest-updates {
    margin: 40px auto;
    padding: 0 15px;
  }

  .updates-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .updates-header h2 {
    font-size: 22px;
  }

  .updates-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-image {
    height: 180px;
  }

  .card-content h3 {
    font-size: 16px;
  }
}
/* ハンバーガーメニュースタイル - 改良版 */

/* ハンバーガーボタン */
.header-drawrBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: none; /* PC表示時は非表示 */
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1001; /* 最前面に表示 */
}

/* ハンバーガーアイコン（三本線） */
.hamburger-icon {
  position: absolute;
  width: 24px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #004831;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger-icon span:nth-child(1) {
  top: 0;
}

.hamburger-icon span:nth-child(2) {
  top: 8px;
}

.hamburger-icon span:nth-child(3) {
  top: 16px;
}
/* ハンバーガーメニュー展開時のアイコン変化（×印） */
.header-drawrBtn.active .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-drawrBtn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.header-drawrBtn.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* オーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ドロワーメニュー本体 */
#drawr-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #f2eee4;
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1000;
  visibility: hidden;
}

#drawr-area.active {
  height: 100%;
  visibility: visible;
  animation: slideUp 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ドロワーメニューヘッダー */
.drawr-menu-content {
  padding: 0 20px;
}

.drawr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 72, 49, 0.1);
  margin-bottom: 10px;
}

.drawr-title {
  font-weight: bold;
  font-size: 20px;
  color: #004831;
}

.drawr-close-btn {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.drawr-close-btn::before,
.drawr-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #004831;
}

.drawr-close-btn::before {
  transform: rotate(45deg);
}

.drawr-close-btn::after {
  transform: rotate(-45deg);
}

/* メニューリンク（直接リンク） */
.drawr-menu-link {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #004831;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 72, 49, 0.1);
  transition: color 0.2s;
}

.drawr-menu-link:hover {
  color: #00704a;
}

/* メニューグループ */
.drawr-menu-group {
  margin-bottom: 0;
}

.drawr-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 18px;
  color: #004831;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 72, 49, 0.1);
  position: relative;
}

.drawr-menu-title.has-submenu::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #004831;
  border-bottom: 2px solid #004831;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.drawr-menu-group.active .drawr-menu-title.has-submenu::after {
  transform: translateY(-50%) rotate(-135deg);
}

.drawr-menu-items {
  display: none;
  padding: 0;
  background: #f9f9f9;
}

.drawr-menu-group.active .drawr-menu-items {
  display: block;
}

.drawr-menu-item {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(0, 72, 49, 0.05);
}

.drawr-menu-item:last-child {
  border-bottom: none;
}
.drawr-menu-items {
  display: none;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.drawr-menu-group.active .drawr-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

.drawr-menu-item {
  padding: 0;
  border: none;
  margin-bottom: 8px; /* 項目間の余白 */
}

.drawr-menu-item:last-child {
  margin-bottom: 0; /* 最後の項目には下マージンなし */
}

.drawr-menu-item a {
  display: block;
  padding: 14px 16px;
  color: #004831;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
  font-weight: 500;
  transition: all 0.2s;
}

.drawr-menu-item a:hover {
  background-color: #f0f8f4;
  color: #004831;
  transform: translateX(5px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
/* よくある質問エリア */
.drawr-faq {
  margin: 10px 0 0; /* 上部の余白を20pxに増やす */
  padding: 20px 20px 30px; /* 上部のパディングも調整 */
  background-color: #f2eee4;
  text-align: center;
}

.drawr-faq-link {
  display: inline-block;
  width: 80%;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 8px;
  color: #004831;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid rgba(0, 72, 49, 0.1);
  position: relative;
}

.drawr-faq-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  background-color: #f9f9f9;
}

.drawr-faq-link:before {
  content: "?";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #004831;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

/* CTAエリア */
.drawr-cta {
  margin: 0;
  padding: 30px 20px;
  background-color: #4b8e70;
  position: relative;
}
.cta-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: 16px;
  font-weight: bold;
  color: #004831;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.cta-title:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fa8200;
  margin: 10px auto 0;
  border-radius: 3px;
}
.drawr-cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.drawr-cta-btn:last-child {
  margin-bottom: 0;
}
.drawr-cta-btn.primary {
  background: #004831;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 72, 49, 0.2);
}
.drawr-cta-btn.primary:hover {
  background: #00593c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 72, 49, 0.3);
}
.drawr-cta-btn.line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 4px 8px rgba(6, 199, 85, 0.2);
}
.drawr-cta-btn.line:hover {
  background: #05b54c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(6, 199, 85, 0.3);
}
.drawr-cta-btn.line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}
.drawr-cta-btn.secondary {
  background: #fa8200;
  color: #fff;
  box-shadow: 0 4px 8px rgba(250, 130, 0, 0.2);
}
.drawr-cta-btn.secondary:hover {
  background: #e57700;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(250, 130, 0, 0.3);
}
.drawr-cta-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* モバイル表示設定 */
@media screen and (max-width: 767px) {
  .header-drawrBtn {
    display: block;
  }

  .global-nav {
    display: none;
  }
}

/* PC表示時の設定 */
@media screen and (min-width: 768px) {
  .header-drawrBtn {
    display: none;
  }
}
.drawr-shop {
  margin: 2px 0 0;
  padding: 5px 10px 20px;
  background-color: #f2eee4;
  text-align: center;
}

.drawr-shop-link {
  display: inline-block;
  width: 80%;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 8px;
  color: #004831;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid rgba(0, 72, 49, 0.1);
  position: relative;
}

.drawr-shop-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  background-color: #f9f9f9;
}

.drawr-shop-link:before {
  content: "🏠"; /* 店舗アイコン（絵文字）、またはFont Awesome等のアイコンフォントを使用 */
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
}
