#mv {
  padding-top: 0;
}
#reassurance{
    padding-top: 8vw;
    padding-bottom: 10vw;
}

.reassurance_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* 各アイテム間の間隔 */
    padding: 20px;
  }
  
  .reassurance_item {
    background: #fff;
  }
  
  .reassurance_item-head {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #222222;
    padding: 1vw;    font-weight: bold;
    color: #fff;
    background-color: #222222;
  }
  
  .reassurance_item img {
    width: 100%; /* 画像をコンテナの幅に合わせる */
    height: auto;
  }
  
  .reassurance_item-content {
    font-size: 1.2vw;
    position: relative;
    line-height: 1.5;
    padding: 1vw;
    color: #555;
    height: 54%;
  }
  .reassurance_item-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width:60px; /* 線の長さ */
    height: 1px; /* 線の太さ */
    background: #f50313; /* 線の色 */
  }
  
  .reassurance_item-content::before {
    content: '';
    position: absolute;
    bottom: -21px;
    right: 0;
    width: 1px;
    height: 173px;
    background: #f50313;
  }

  .feature-list {
    list-style: none; /* デフォルトの箇条書きマーカーを削除 */
    margin: 0;
    padding: 0;
  }
  
  .feature-list li {
    position: relative;
    padding: 15px 20px;
    background-color: #fff;
  }
  
  .feature-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 1px;
    background-color: red;
  }
  
  .feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 1px;
    background-color: black;
  }
  
  .list-head {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .list-content {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
  }
  

  #price{
    background-color: #222;
    padding: 4vw 0;
  }

#feature{
  padding-bottom: 4vw;
}
#feature .sub1{
  padding-top: 3vw;
}
.table-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 5vw;
  background-color: #fff;
  border-radius: 100px 0 100px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  
  .table-title {
    background-color: red;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    border-radius: 5px;
  }
  
  .price-table {
    border-collapse: collapse;
    margin-top: 20px;
    display: block; /* テーブル全体をブロック要素にする */
    overflow-x: auto; /* 横スクロールを有効にする */
    white-space: nowrap; /* テーブルの内容が折り返さないようにする */
    margin-bottom: 20px; /* テーブル間のスペースを調整 */
    border-spacing: 0;
    width: 100%;
    table-layout: fixed; /* 列幅を固定 */
  }
  
  .price-table thead th {
    background-color: #f4f4f4;
    color: #000;
    font-weight: bold;
    font-size: 1vw;
    text-align: center;
    padding: 10px;
    min-width: 200px;
  }
  
  .price-table tbody td {
    text-align: center;
    padding: 10px;
  }
  
  
  .price-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  
  .price-table tbody tr:nth-child(even) {
    background-color: #eee;
  }
  
  .price-table tbody td:first-child {
    text-align: left;
    padding-left: 15px;
  }
  
  .table-container .table-title:first-child {
    margin-top: 0;
  }
  .table-container p{
    font-size: 13px;
  }
  
  #other_content{
    padding-top: 4vw;
    padding-bottom:2vw;
  }
  .sub_3{
    color:#F50313;
    font-weight: bold;
    font-size: 1.2vw;
    margin-top: 4vw;
  }
  .title3{
    font-weight: bold;
    font-size: 3vw;
  }

  #voice{
    background-image: url(../images/tire_replacement/voice_bg.webp);
    background-size: cover;
    padding: 7vw 0;
  }
  .voice_item{
    border-radius: 50px 0 50px 0;
    box-shadow: 3px 3px 3px #dcdcdc;
    width: 100%;
    padding: 2vw;
    background-color: #fff;
  }
  .star{
    color: #C2AF1F;
    font-size: 1.2vw;
  }
  .voice_title{
    font-size: 1.5vw;
    font-weight: bold;
  }

  .voice_detail{
    font-size: 1.1vw;
  }

  .voice_gap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* 各アイテム間の間隔 */
    padding: 20px;
  }
  .flex-left{
    width: 28%;
  }
  .flex-right{
    width: 60%;
  }
  .voice_detail{
    margin-top: 10px;
    text-align: center;
  }
  .faq_q dd{
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  #faq img{
    width: 83px;
  }
  #faq dl{
    display: flex;
  }
  #faq dt{
    width: 10%;
  }
  #faq dd{
    width: 80%;
  }
  #faq li{
    margin-bottom: 2vw;
  }
  .check-mark{
    position: relative;
    padding-left: 3vw;
    font-size: 1.7rem;
  }

.check-mark::before {
  position: absolute;
  left: 0;
  top: -11px;
  content: "\2611"; /* ☑ チェックされたボックス */
  font-size: 40px;
  color: red;
  margin-right: 5px;
}
#mobile_repair{
  padding: 4vw 0;
}
#mobile_repair .flex-left,#mobile_repair .flex-right{ 
  width: 50%;
}
#mobile_repair .flex-left{
  padding-right: 13%;
}
.tel a{
  color: #000;
  font-size: 2rem;
  font-weight: bold;
}

.attention_price{
  color: red;
  margin-bottom: 10px;
  font-size: 14px;
}
#mobile_repair table {
  width: 100%;
}
#mobile_repair table th{
  background: #f5f5f5;
}
#mobile_repair table th,#mobile_repair table td{
  padding: 1em;
  border: 1px solid #dedede;
  text-align: left;
}
#mobile_repair .-flex {
  margin-top: 50px;
}
#mobile_repair h3{
  margin-top: 30px;
  font-size: 2rem;
  margin-bottom: 10px;
}
