/* 共通処理 */
body {
  /*font-family: "Noto Sans JP", sans-serif;*/
  color: #515151;
  overflow-y: auto;
}

/* メインコンテナ */
#main {
  width: 100%;
  min-width: 100%;
  overflow-y: auto;
}

/* オレンジボタン */
.orange-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  background-image: linear-gradient(145deg, #f3b541, #ff8d8d 70%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease-out;
  font-size: 16px;
}

.orange-btn:hover {
  transform: scale(1.05);
  /*ボックスの影*/
  box-shadow: 0 15px 15px rgba(250, 137, 57, 0.4);
}

/* グラデーション青線 */
.blue-line {
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #00c6ff, #0072ff) 1;
}

/* 緑のグラデーションテキスト */
.green-text {
  background-image: linear-gradient(145deg, #55a86b, #02e6ffbb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}