/* ------------------------------------------
            キャッチ
------------------------------------------ */
.point {
  text-align: center;
  font-size : 30px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 50px;
}

.under {
  text-decoration: underline;
  text-decoration-color: #e50b85;       /* 下線の色 */
  text-decoration-thickness: 5px;   /* 下線の太さ */
  text-underline-offset: 2px;       /* 文字との距離 */
}

/* ------------------------------------------
           見出し飾り
------------------------------------------ */
h3.kazari {
  position: relative;
  padding: 0.6em;
  background: #efefef;
}

h3.kazari :after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #efefef;
  width: 0;
  height: 0;
}


/* ------------------------------------------
            5つのメリット
------------------------------------------ */

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #d0f0ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 250px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* ふんわり影！ */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-divider {
  border: none;
  border-top: 2px solid #4F81BD;
  margin: 12px 0;
}



@media (max-width: 768px) {
  .card-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%; /* 画面幅に合わせて広げる */
  }
}

/* ------------------------------------------
            問合せボタン
------------------------------------------ */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn-c {
  font-size: 1.8rem;
  position: relative;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-radius: 100vh;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - .8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------
            ３つの特徴
------------------------------------------ */

.table_design13 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
}

.table_design13  img:hover{
  transform:scale(1.2,1.2);
}

.table_design13 thead th {
  background: #4F81BD;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 15px 15px 0 0;
  padding: 0.5em;
}
.table_design13 thead th:not(:first-child) {
  background: ##e50b85;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 15px 15px 0 0;
  padding: 0.5em;
}
.table_design13 thead th span {
  font-size: .8rem;
}
.table_design13 thead th:nth-child(3) {
  background-color: #4F81BD;
  position: relative;
}
.table_design13 tbody {
  border: 2px solid #d2e8f1;
}
.table_design13 tbody tr {
  background-color: #e6f1f6;
}
.table_design13 tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table_design13 td {
  border-left: 2px solid #d2e8f1;
}
.table_design13 td {
  color: #4d9bc1;
  padding: 1em;
}
.table_design13 td:nth-child(3) {
  color: #4d9bc1;
  padding: 1em;
}

.table_design13 strong {
  color: ##e50b85;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
}