/* リンクの色の変更なし */
a{
  color:darkgreen;
}

/* 会員登録ボタン */
.cute-green-button {
  background-color: #a3d9a5;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.cute-green-button:hover {
  background-color: #81c784;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


/* 勉強方法で利用 */
/*左に緑の見出し*/
.leftGreen {
  position: relative;
  padding: .25em 0 .5em .75em;
  border-left: 6px solid green;
}
.leftGreen::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 40%;
  height: 0;
  border-bottom: 1px solid #7d997c;
}

.leftGray {
  position: relative;
  padding: .25em 0 .5em .75em;
  border-left: 6px solid Gray;
}
.leftGray::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 40%;
  height: 0;
  border-bottom: 1px solid #99907c;
}

/* Overview */
.hukidashi1 {
  position: relative;/*相対位置*/
  padding-left: 1.2em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
}

.hukidashi1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f075";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  top: 0;/*アイコンの位置*/
  color: green; /*アイコン色*/
}

/* 商品紹介用のボタン */
.amazon-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: orange; /* ボタンの背景色 */
  color: #ffffff; /* ボタンのテキスト色 */
  border: 1px solid orange; /* ボーダーの色（同じ色に設定） */
  border-radius: 10px; /* 角の丸みを設定 */
  cursor: pointer;
  text-align: center;
  
}

.amazon-button:hover {
  background-color: rgb(243, 158, 0); /* マウスホバー時の背景色 */
  border: 1px solid rgb(243, 158, 0); /* マウスホバー時のボーダー色 */
}

.rakuten-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: tomato; /* ボタンの背景色 */
  color: #ffffff; /* ボタンのテキスト色 */
  border: 1px solid tomato; /* ボーダーの色（同じ色に設定） */
  border-radius: 10px; /* 角の丸みを設定 */
  cursor: pointer;
  text-align: center;
}

.rakuten-button:hover {
  background-color: rgb(252, 87, 58); /* マウスホバー時の背景色 */
  border: 1px solid rgb(252, 87, 58); /* マウスホバー時のボーダー色 */
}

.yahoo-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0074d9; /* ボタンの背景色 */
  color: #ffffff; /* ボタンのテキスト色 */
  border: 1px solid #0074d9; /* ボーダーの色（同じ色に設定） */
  border-radius: 10px; /* 角の丸みを設定 */
  cursor: pointer;
  text-align: center;
}

.yahoo-button:hover {
  background-color: #0056b3; /* マウスホバー時の背景色 */
  border: 1px solid #0056b3; /* マウスホバー時のボーダー色 */
}

.card2 {
  position: relative;
  /* left: 50%;
  transform: translateX(-50%); */
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 20px 10px;
  width: 95%;
  background-color: white;
  margin: 30px 0;
  font-size:20px;
}