@charset "UTF-8";
body {
  /*        font-family: Arial, sans-serif;*/
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

header {
  height: 200px;
  background: url(../img/header-title.png);
  background-size: 100%;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
  /* ヘッダーのテキスト色は白のまま */
}

h1 {
  margin: 50px 0 0 0;
  font-size: 2.5em;
  color: #000;
}

.subtitle {
  color: #333;
  font-size: 18px;
  margin-top: 10px;
}

.warning {
  color: #000;
}

.section {
  background-color: #fff;
  width: 85%;
  margin: auto;
  /* セクションの背景色を白に変更 */
  border: 2px solid #7fff00;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  /* 影を追加して立体感を出す */
}

h2 {
  color: #0a4e0a;
  /* 見出しの色を濃い緑に変更 */
  margin-top: 0;
  margin-bottom: 45px;
}

.options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.option {
  flex-basis: 100%;
  background-color: #f0f0f0;
  /* オプションの背景色を薄いグレーに変更 */
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 10px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .option {
    flex-basis: 45%;
  }
}
.option .nav_panel {
  display: flex;
}
.option .nav_panel .icon {
  padding-top: 20px;
  font-size: 3em;
  margin-right: 15px;
  width: 20%;
  text-align: center;
}
.option .nav_panel .option-text {
  flex-grow: 1;
  width: 80%;
}
.option .label_ttl {
  background: #fff;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  margin-top: -50px;
  border-radius: 7px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .option .label_ttl {
    width: 60%;
  }
}
.option .label_ttl.express {
  border: 2px #7fff00 solid;
  color: #0a4e0a;
}
.option .label_ttl.complete {
  border: 2px solid #0a4e0a;
  color: #c00000;
}

button {
  background-color: #0a4e0a;
  /* ボタンの色を濃い緑に変更 */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 20px;
}
button:hover {
  background-color: #7fff00;
  color: #000;
  /* ホバー時の色を少し明るく */
}

.news_list li {
  list-style: none;
  width: 100%;
}
.news_list li::before {
  content: "★";
  float: left;
  color: #0a4e0a;
}
.news_list li img {
  width: 100%;
  height: auto;
}
.news_list li h4 {
  color: #0a4e0a;
  font-size: 20px;
  font-weight: bold;
}

#footer {
  background: #0a4e0a;
  color: #fff;
  width: 100%;
  padding: 20px;
  text-align: center;
}/*# sourceMappingURL=k2bot.css.map */