/* CSS Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'メイリオ', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display: block;
}
.notxt{
	display: none!important;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
p, dl, ol, ul, pre, blockquote {
  margin: 0;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
a:hover, a:focus {
  text-decoration: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
  resize: vertical;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol, ul {
  list-style: none;
}
/* 日本語フォント設定 */
body {
  font-family:
    "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", "Meiryo", "メイリオ", "Noto Sans Japanese", "NotoSansCJK", "Droid Sans Japanese", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  word-break: break-all;
  overflow-wrap: break-word;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* メインビジュアル */
.hero {
  position: relative;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
/* 説明セクション */
.description {
  padding: 40px 0;
  background: #f0f0f0;
  text-align: center;
}
.description h2 {
  font-size: 28px;
  color: #2c5aa0;
  margin-bottom: 30px;
  font-weight: bold;
}
.description p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.highlight {
  color: #e74c3c;
  font-weight: bold;
}
/* 料金テーブル */
.pricing {
  padding: 60px 0;
  background: white;
}
.pricing h2 {
  text-align: center;
  font-size: 28px;
  color: #2c5aa0;
  margin-bottom: 40px;
}
.pricing-table {
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pricing-table th {
  background: #2c5aa0;
  color: white;
  padding: 15px;
  font-size: 18px;
}
.pricing-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.pricing-table tr:nth-child(even) {
  background: #f8f9fa;
}
.pricing-table tr:hover {
  background: #e3f2fd;
}
/* サービス特徴 */
.features {
  padding: 60px 0;
  background: #f8f9fa;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.feature-item {
  text-align: center;
  background: white;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-icon {
  width: 110px;
  height: 110px;
  background: #e3f2fd;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
/* アイコンのデフォルトスタイル */
.feature-icon img {
  height: auto; /* 縦横比を維持 */
  object-fit: contain; /* 画像がコンテナに収まるようにする */
}
/* 各アイコンの個別サイズ設定 */
.icon-pc {
  width: 90px; /* お申し込みアイコン */
}
.icon-op {
  width: 90px; /* 無料見積もりアイコン */
}
.icon-da {
  width: 110px; /* ご成約アイコン */
}
.icon-de {
  width: 110px; /* 運搬アイコン */
}
.icon-key {
  width: 90px; /* 返却アイコン */
}
.feature-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  padding: 0 0 5px 0;
  border-bottom: 2px solid #1778b0;
}
.feature-item p {
  font-size: 14px;
  line-height: 1.6;
}
/* FAQ */
.faq {
  padding: 60px 0;
  background: white;
}
h2 {
  text-align: center;
  font-size: 28px;
  color: #2c5aa0;
  margin-bottom: 40px;
  font-weight: bold;
}
.faq-item {
  max-width: 900px;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #e3f2fd;
}
.faq-question {
  background: #e3f2fd;
  padding: 15px 20px;
  font-weight: bold;
  color: #2c5aa0;
  border-left: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  border-bottom: 1px solid #333;
}
.faq-question::before {
  content: "Q";
  background: #2c5aa0;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.faq-answer {
  background: #fff;
  margin: 15px 10px;
  padding: 10px 10px;
  border-left: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-answer::before {
  content: "A";
  background: #e74c3c;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: -2px;
}
/* メールフォームエリア */
.contact-form {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.contact-form p {
  font-size: 16px;
  color: #666;
}
/* フォームスタイル */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.required {
  color: #ff4d4d;
  margin-left: 5px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
#date1, #date2, #date3 {
  width: 100%;
  max-width: 300px;
}
.form-group textarea {
  resize: vertical;
}
.submit-group {
  text-align: center;
  margin-top: 30px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #ffb700;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
  width: auto;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #e6a500;
}
/* フッター */
.footer {
  background: #2c5aa0;
  color: white;
  text-align: center;
  padding: 40px 0;
}
.footer p {
  margin-bottom: 10px;
}
/* レスポンシブ */
body {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  #bottom-bar {
    flex-direction: column;
    text-align: center;
  }
  .bottom-right {
    text-align: center;
  }
  body {
    padding-bottom: 80px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-table {
    font-size: 14px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px;
  }
  .bottom-right a {
    font-size: 2.5vw !important;
  }
  .footer {
    padding: 20px 0 10px;
  }
  .footer p {
    font-size: 3vw;
  }
  /* スマホ表示でのフォームスタイル */
  .form-container {
    padding: 10px;
  }
  .form-group input, .form-group textarea {
    font-size: 14px;
  }
  .input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 10px;
  }
  .description h2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .pricing, .features, .faq, .description, .contact-form {
    padding: 40px 0;
  }
  .faq-question, .faq-answer {
    padding: 15px;
  }
}
/* 下部固定エリア */
#bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 背景を半透明に設定 */
  display: flex;
  justify-content: center;
  align-items: stretch; /* 子要素の高さを揃える */
  padding: 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  height: 60px;
}
/* 下部固定エリアの内部コンテナ */
.bottom-bar-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  align-items: stretch;
}
.bottom-left {
  color: #333;
  font-size: 13px;
  line-height: 1.3;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  align-items: center;
}
.site-name {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-top: 2px;
}
.bottom-right a {
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: bold;
  font-size: 14px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.bottom-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  width: 50%;
  box-sizing: border-box;
  background-color: #ffb700;
  text-align: center;
  line-height: 1.2;
}
.phone-icon {
  background-color: #12A73B; /* 緑色のアイコン背景 */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px; /* 間隔を少し広げる */
}
.phone-info {
  color: #333;
  text-align: left;
  line-height: 1.3;
}
.reception-time {
  font-size: 12px;
  margin-bottom: 2px;
}
.phone-number {
  font-weight: bold;
  font-size: 18px;
}
/* 電話番号リンクのスタイル */
.tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none; /* PCではタップできないようにする */
}
/* スマホ・タブレットでのみタップできるようにする */
@media (max-width: 768px) {
  .tel-link {
    pointer-events: auto; /* スマホではタップできるようにする */
    color: #12A73B; /* スマホでは色を変えて、タップ可能なことを示す */
    text-decoration: none;
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  #bottom-bar {
    height: 60px;
  }
  .bottom-bar-container {
    flex-direction: row;
    height: 100%;
  }
  .bottom-left {
    width: 50%;
    justify-content: center;
    padding: 0;
    height: 100%;
  }
  .bottom-right {
    width: 50%;
    height: 100%;
    padding: 0;
  }
  /* 右側のリンクは既にグローバルで定義済み */
  .phone-info {
    text-align: left; /* 左寄せにする */
  }
  .phone-icon {
    width: 30px; /* スマホではアイコンを少し小さく */
    height: 30px;
    margin-right: 10px;
  }
  .phone-number {
    font-size: 16px; /* スマホではフォントサイズを少し小さく */
  }
  .reception-time {
    font-size: 10px; /* 受付時間のフォントサイズを小さく */
  }
  .site-name {
    font-size: 14px; /* サイト名のフォントサイズを小さく */
  }
}