/*------料金表３つボタン-------*/
.button{
  display: inline-block;
  margin: 0 1%;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 180px;
	padding: 0.6em;
	font-weight: bold;
	color: #000000;
	border-bottom: 2px solid #6eb92b;
	border-radius: 100vh;
	box-shadow: 0 2px 7px #6eb92b;
	-webkit-box-shadow: 0 2px 7px #6eb92b;
	transition: 0.5s;
}


.button:hover {
	color: #fff;
	background: #6eb92b;
	border-bottom: 2px solid #fff;
	transform: translateY(3px);
}

/* 並びの基本レイアウト */
.two-column-area {
  display: flex;
  align-items: flex-start;
//  gap: 32px;         /* 左右の余白 */
  gap: 30px;         /* 左右の余白 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* 左側のテキスト */
.main-text {
  flex: 1;           /* 幅いっぱい使う */
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

/* 右側カード */
.profile-card {
  width: 400px;
  background: #f3f3f3;
//  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.profile-card img {
  width: 100%;
  display: block;
}

.profile-text {
  padding: 14px 16px;
font-size: 14px;
}

.profile-label {
  font-size: 14px;
  color: #777;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

/* スマホ：縦並びに変更 */
@media (max-width: 768px) {
  .two-column-area {
    flex-direction: column;
  }
  .profile-card {
    width: 100%;
    margin-top: 12px;
  }
}

/*-------------------黄色下線、数値が低いほど太くなる---------------*/
    .under1 {
      background: linear-gradient(transparent  50%, #ffff00  50%);
    }