/* カスタムスタイルをここに追加 */
/* 例: */
:root {
  /* カスタムカラー変数 */
  --primary-color: #2154cf;
  --secondary-color: #666;
  --header-color: #334F96;
}

/* フッター背景にオーバーレイを追加 */
.footer {
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* ヘッダーの背景色を設定 */
.header {
  background-color: var(--header-color) !important;
  will-change: transform;
}

.header.header-solid {
  background-color: var(--header-color) !important;
}

.header.animated.fadeInDown {
  animation: none !important;
}

/* バナーエリアをヘッダーの下に表示する設定 */
#banner-area {
  padding-top: 67px; /* ヘッダーの高さに合わせて調整 */
  position: relative;
}

/* portfolioセクションのスタイル */
section.portfolio .heading .title {
  border-left: none !important;
  padding-left: 0 !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* testimonialセクションのスタイル */
.testimonial .testimonial-content p,
.testimonial .testimonial-content .testimonial-text,
.testimonial .testimonial-content .name,
.testimonial .testimonial-content h3,
.testimonial .testimonial-content h3 span {
  color: #323232 !important;
}

.testimonial .heading {
  padding-bottom: 25px !important;
}

.testimonial .heading .title,
.testimonial .heading .title-desc,
.testimonial .heading .title-icon i {
  color: #323232 !important;
}

.testimonial .heading h2.title {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 100% !important;
  font-family: 'Montserrat', sans-serif !important;
  border-left: none !important;
  padding-left: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

.testimonial .heading .title .title-desc {
  font-size: 32px !important;
  font-weight: 500 !important;
  display: block;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif !important;
}

/* testimonialのページネーション */
.testimonial-slide.owl-theme .owl-controls .owl-page span {
  background: #d8d8d8 !important;
}

.testimonial-slide.owl-theme .owl-controls .owl-page.active span {
  background: #323232 !important;
}

/* ヘッダースタイルは JavaScript で動的に設定しています */

/* ナビゲーションのスタイル */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* ロゴサイズの調整 */
.navbar-brand img {
  width: 200px;
}

/* スマホサイズでのロゴ調整 */
@media (max-width: 768px) {
  .navbar-brand img {
    width: 165px;
  }
}

/* その他のカスタマイズ */ 
.cd-hero-slider li:nth-child(2) .overlay2::before {
  background-image: none;
}

/* スライダーのアニメーション設定 */
.cd-hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  height: 100vh;
}

.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 1s ease-in-out;
  visibility: hidden;
  display: flex;
  align-items: center;
}

.cd-hero-slider li.selected {
  position: relative;
  transform: translateX(0);
  visibility: visible;
}

.cd-hero-slider li.prev {
  transform: translateX(-100%);
  visibility: visible;
}

/* スライド時の画像設定 */
.cd-hero-slider .overlay2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cd-hero-slider .overlay2 img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* スマホ表示時の画像設定 */
@media (max-width: 768px) {
  .cd-hero-slider .overlay2 img {
    height: 100vh;  /* スマホ時の高さ調整が必要な場合は変更してください */
  }
}

/* スライダーのコンテンツ配置 */
.cd-hero-slider .cd-full-width,
.cd-hero-slider .cd-half-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* スライダーのテキストスタイル */
.cd-hero-slider .cd-full-width h2,
.cd-hero-slider .cd-full-width h3,
.cd-hero-slider .cd-half-width h2,
.cd-hero-slider .cd-half-width h3 {
  color: #fff;
  text-align: center;
}

.cd-hero-slider .cd-full-width h2,
.cd-hero-slider .cd-half-width h2 {
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cd-hero-slider .cd-full-width h3,
.cd-hero-slider .cd-half-width h3 {
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ナビゲーションのカスタマイズ */
.cd-slider-nav {
  display: none !important;
}

.cd-slider-nav li {
  width: 60px;
  height: 4px;
  margin: 0 5px;
  display: inline-block;
}

.cd-slider-nav li a {
  padding: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.cd-slider-nav li.selected a {
  background: #fff;
}

.cd-slider-nav li:hover a {
  background: rgba(255, 255, 255, 0.5);
}

/* アイコンと文字を非表示 */
.cd-slider-nav li a i,
.cd-slider-nav li a span {
  display: none;
}

.about-item {
  padding: 30px 0;
}

.about-item .icon-xl {
  font-size: 48px;
  color: var(--primary-color);
}

.about-item h3 {
  margin: 20px 0;
  font-weight: 700;
}

.about-item p {
  color: var(--secondary-color);
  line-height: 1.8;
}

/* 共通のカード型スタイリング */
.profile-card {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.profile-card .section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.profile-card .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.profile-card .icon-xl {
  font-size: 48px;
  color: var(--primary-color);
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-card .content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* 各セクション固有のスタイル */
.about-valuse {
  border-left: 4px solid #2154cf;
}

.company-name {
  border-left: 4px solid #ffc107;
}

/* 代表挨拶のスタイリング */
.message-from-ceo {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #dc3545;
}

.message-from-ceo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.message-from-ceo .section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.message-from-ceo .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.message-from-ceo .ceo-message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.message-from-ceo .ceo-signature {
  margin-top: 2rem;
  text-align: right;
  padding-top: 1.5rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.message-from-ceo .ceo-signature p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  color: #333;
}

/* トータルサポート */
.total-support {
  border-left: 4px solid #17a2b8;
}

/* キャッチコピーのスタイリング */
.catchcopy-wrapper {
  text-align: center;
  padding: 2rem 0 4rem;
  position: relative;
}

.catchcopy {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 2rem;
}

.catchcopy::before,
.catchcopy::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.catchcopy::before {
  left: -20px;
  transform: translateY(-50%);
}

.catchcopy::after {
  right: -20px;
  transform: translateY(-50%);
}

.catchcopy br {
  display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .catchcopy {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .catchcopy br {
    display: inline;
  }
  
  .catchcopy::before,
  .catchcopy::after {
    width: 20px;
  }
}

/* プロフィールセクションのスタイリング */
.profile-section {
  margin-bottom: 4rem;
}

.profile-section .icon-xl {
  font-size: 48px;
  color: var(--primary-color);
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-section .section-title {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.profile-section .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.profile-section .content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* 代表挨拶の追加スタイル */
.profile-section .ceo-signature {
  margin-top: 2rem;
  text-align: right;
  padding-top: 1.5rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.profile-section .ceo-signature p {
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
  color: #333;
}

/* プロフィールセクションのサブタイトル */
.profile-section .section-title .subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #666;
  margin-top: 0.5rem;
}

/* サービスコンテンツのスタイル調整 */
.profile-section .service-content {
  margin-top: 2rem;
}

.profile-section .service-content h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: #333;
  font-weight: 600;
}

.profile-section .service-content p {
  font-size: 1rem;
  color: #555;
}

/* パララックスセクションのスタイリング */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  margin: 60px 0;
}

/* Call to actionセクションのみにオーバーレイを適用 */
.call_to_action.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.parallax-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.parallax-content p {
  font-size: 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 60px 0;
  }
  
  .parallax-content h3 {
    font-size: 2rem;
  }
  
  .parallax-content p {
    font-size: 1.1rem;
  }
}

/* 買取ステップのスタイル */
/* .purchase-steps {
  padding-top: 20px;
} */

.purchase-steps .step-item {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  padding: 30px;
  border: 1px solid #ddd;
  /* border-radius: 8px; */
}

.purchase-steps .step-item:last-child {
  margin-bottom: 0;
}

.purchase-steps .step-content {
  flex: 1;
  padding-right: 30px;
}

.purchase-steps .step-number {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.purchase-steps .step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 33px;
}

.purchase-steps .step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.purchase-steps .step-image {
  flex: 1;
}

.purchase-steps .step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* box-shadow: 0 2px 15px rgba(0,0,0,0.1); */
}

.purchase-steps .step-arrow {
  position: absolute;
  bottom: -62px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 24px;
  z-index: 1;
}

.purchase-steps .step-arrow i {
  display: inline-block;
}

@media (max-width: 768px) {
  .purchase-steps .step-item {
    flex-direction: column;
    padding: 40px 20px 20px;
  }
  
  .purchase-steps .step-content {
    padding-right: 0;
    padding-bottom: 20px;
    text-align: center;
  }
  
  .purchase-steps .step-image {
    width: 100%;
  }
}

/* ページタイトルのスペース調整 */
.page-title {
  /* padding: 60px 0; */
  /* background: #f5f5f5; */
  /* margin-bottom: 60px; */
}

.page-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.page-title p {
  margin: 15px 0 0;
  color: #666;
}

/* フォームセクションのスタイル */
.form-section {
  padding: 25px 0;
}

.form-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 5px;
}

/* .form-group label span {
  color: var(--primary-color);
} */

@media (max-width: 768px) {
  .form-section {
    padding: 15px 0;
  }
  
  .col-md-6 {
    margin-bottom: 15px;
  }
}

/* フォームセクションのスタイル */
.contact-form.section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.form-section {
  padding: 25px 0;
}

/* Aboutページのスタイル */
.about-item {
  margin-bottom: 40px;
}

.about-item .content {
  padding-right: 30px;
}

.about-item .content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-item .content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .about-item .row {
    flex-direction: column-reverse;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
}

/* Aboutページのスタイル */
.profile-section .section-title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

.profile-section .section-subtitle {
  margin-bottom: 30px;
  font-size: 20px;
  color: #666;
  text-align: center;
  font-weight: 500;
}

.about-item .ceo-signature {
  margin-top: 2rem;
  text-align: right;
  padding-top: 1.5rem;
  line-height: 1.5;
}

.about-item .ceo-signature p {
  margin: 0 0 0.2rem 0;
  padding: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.about-item.ceo-message {
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.about-item.ceo-message .section-title,
.about-item.ceo-message .section-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.about-item.ceo-message .section-title {
  /* font-size: 28px; */
  /* font-weight: 700; */
}

.about-item.ceo-message .section-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 500;
}

.about-item.ceo-message .content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.about-item.ceo-message .content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-item.ceo-message .ceo-signature {
  margin-top: 2rem;
  text-align: right;
  padding-top: 1.5rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-item.ceo-message .ceo-signature p {
  margin: 0 0 0.2rem 0;
  padding: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

#main-container .heading .title {
  border-left: none;
  padding-left: 0;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 28px;
  font-weight: 700;
}

#main-container .heading .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

#main-container .heading .title-desc {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin: 0 auto !important;
  font-size: 20px !important;
  color: #666 !important;
  font-weight: 500 !important;
  font-family: inherit !important;
}

#main-container .heading .title-icon {
  display: none;
}

.heading .title {
  border-left: none !important;
  padding-left: 0 !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.heading .title-icon {
  display: none !important;
}

.heading .title-desc {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin: 0 auto !important;
  /* font-size: 20px !important; */
  color: #666 !important;
  font-weight: 500 !important;
  font-family: inherit !important;
}

/* トップページのサービスセクション */
.service-section .heading .title {
  text-align: center !important;
  border-left: none !important;
  padding-left: 0 !important;
  line-height: 40px !important;
  color: #333 !important;
}

.service-section .heading .title-desc {
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.service-section .heading .title-icon {
  display: none !important;
}

/* 代表挨拶セクション全体のスタイル */
.profile-section.ceo-greeting {
  margin: 4rem -100vw;
  padding: 4rem calc(50vw - 50%);
  background-color: #f8f9fa;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.profile-section.ceo-greeting .icon-xl,
.profile-section .icon-xl {
  display: none;
}

.profile-section.ceo-greeting .section-title,
.profile-section.ceo-greeting .section-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.profile-section.ceo-greeting .section-title {
}

.profile-section.ceo-greeting .section-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 500;
}

/* 会社概要テーブルのスタイル */
.company-info-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.company-info-table .info-row {
  display: flex;
  margin-bottom: 15px;
  gap: 15px;
}

.company-info-table .info-row:last-child {
  margin-bottom: 0;
}

.company-info-table .info-label {
  width: 20%;
  padding: 15px 20px;
  font-weight: 600;
  color: #333;
  position: relative;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  min-height: 100%;
}

.company-info-table .info-value {
  width: 80%;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .company-info-table .info-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }
  
  .company-info-table .info-label,
  .company-info-table .info-value {
    width: 100%;
  }
  
  .company-info-table .info-value {
    border-bottom: 1px solid #ddd;
  }
}

/* パンくずリストを非表示 */
.breadcrumb {
  display: none !important;
}

/* トップページのサービスセクション */
.service-section .heading .title {
  text-align: center !important;
  border-left: none !important;
  padding-left: 0 !important;
}

/* スライダーのテキストスタイル */
.cd-hero-slider .selected .cd-full-width h2 {
  line-height: 1.5;
}

.service-section .service-content h3 {
  color: #333 !important;
  font-weight: 600 !important;
}

.service-section .service-content p {
  color: #333 !important;
}

.image-block-content .feature-content h3 {
  color: #333 !important;
  font-weight: 600 !important;
}

.img-block-head h3 {
  font-size: 32px !important;
}

/* スマートフォン表示時のコンテナパディング調整 */
@media (max-width: 768px) {
  .container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  /* Aboutページのサービスセクション */
  .container.about-service-section {
    padding-bottom: 0 !important;
  }

  .container.about-service-section .profile-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .img-block-right.ts-padding {
    padding-left: 25px !important;
    padding-right: 25px !important;
    padding-bottom: 0 !important;
  }

  .img-block-right .feature-content {
    padding-right: 0 !important;
  }

  section.portfolio {
    padding-top: 40px !important;
  }
}

/* スマートフォン表示時のスタイル調整 */
@media (max-width: 768px) {
  .profile-section {
    /* margin-bottom: 0 !important; */
  }
  .profile-section .about-item {
    margin-bottom: 40px !important;
    padding-bottom: 0 !important;
  }
  /* 経営理念セクションのみmargin-bottom: 0 */
  .profile-section.philosophy {
    margin-bottom: 0 !important;
    border-left: none !important;
  }
  /* 代表挨拶セクションのマージン削除 */
  .profile-section.ceo-greeting {
    margin-top: 0 !important;
  }
}

@media (min-width: 900px) {
  #banner-area {
    position: relative;
    overflow: hidden;
  }

  #banner-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #banner-area .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 768px) {
  #banner-area img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: -100vw;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* プライバシーポリシーページのスタイル */
.privacy-policy .profile-section {
  margin-bottom: 0;
}

.privacy-policy .profile-section .section-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.privacy-policy .profile-section .section-title:after {
  display: none;
}

.privacy-policy .profile-section .content {
  text-align: left;
  margin: 0;
  margin-bottom: 2rem;
  max-width: 100%;
}

.privacy-policy .profile-section:last-child .content {
  margin-bottom: 0;
}

.btn-line {
  background-color: #00B900;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  width: 280px;
  margin: 0 auto;
}

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

.btn-line i {
  margin-right: 8px;
  font-size: 16px;
}

/* 既存の買取ボタンも角丸に */
.parallax .btn-primary {
  border-radius: 25px;
  width: 280px;
  margin: 0 auto;
}

/* Valuseについてのセクションのスタイル調整 */
.valuse-about-section .img-block-right {
  padding: 60px;
}

@media (max-width: 1200px) {
  .valuse-about-section .img-block-right {
    padding: 40px;
  }
  
  .valuse-about-section .image-block-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .valuse-about-section .img-block-right {
    padding: 25px;
  }
}