@charset "UTF-8";
.assurance {
  font-family: sans-serif;
  font-size: 16px;
}
.assurance .pagettl {
  background: url('../img/assurance/bg_mv.jpg') no-repeat center / cover;
}
.assurance .pagettl .inr {
  background: rgba(255,255,255,0.7);
}
.assurance__wrap {
  background-color: #f0f3f4;
  max-width: 900px;
  margin: 100px auto;
  border: 1px solid #fbfafa;
  padding: 20px;
}
h2.midashi {
  border: 1px solid #eef0e9;
  background: linear-gradient(to right, #b5c8d6, #dfe4e6);
  border-radius: 1em;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family:'メイリオ', メイリオ;
}
h2.midashi2 {
  text-decoration: underline;
  border-radius: 1em;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family:'メイリオ', メイリオ;
}
.modeittle-s {
  margin: 20px 0 10px;
  font-size: 18px;
  color: black;
}
p {
  margin: 10px 0;
  color:#474a4d;
  font-size: 15px;
  font-family: 'メイリオ', メイリオ;
}
.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 1em;
  margin: 10px 0;
}
#cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  padding: 10px;
  flex-direction: column;
}
.card02 {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: calc(50% - 20px);
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.picture img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.description {
  padding: 10px;
}
.description span {
  font-weight: bold;
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: black;
  font-family: 'メイリオ', メイリオ;
}
.description p {
  font-size: 14px;
  color: #474a4d;
  line-height: 1.5;
  font-family: 'メイリオ', メイリオ;
}
.sample-img {
  max-width: 100%;
  overflow: hidden;
}
.sample-img img {
  width: 100%;
  height: auto;
  transition: transform .6s ease;
}
.sample-img:hover img {
  transform: scale(1.1);
}
table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
td {
  padding: 10px;
  vertical-align: top;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  h1 {
    font-size:15px;
    padding: 15px;
  }
  .card, .card02 {
    width: 100%;
  }
  .cards-container {
    grid-template-columns: 1fr;
  }
  table, tr, td {
    display: block;
    width: 100%;
  }
  td {
    padding: 5px;
  }
  .midashi {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family:'メイリオ', メイリオ;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
