@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.container {
  max-width: 100%;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

h1 {
  text-align: center;
  color: #555;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* タブ風のボタンスタイル */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 30px;
  margin: 0 10px;
  background-color: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 10px 10px 0 0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  outline: none;
}

.tab-button:hover {
  background-color: #c0c0c0;
}

.tab-button.active {
  background-color: #333;
  color: #fff;
  font-weight: bold;
}

/* ページコンテンツの表示切替 */
.page-content {
  display: none;
  padding: 5px;
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.page-content.active {
  display: block;
}

/* 各セクションのスタイル */
section {
  background-color: #d9d9d9; /* 濃い灰色の背景 */
  padding: 25px;
  margin-bottom: 20px; /* セクション間にマージンを追加 */
  border-radius: 10px;
}

/* フォームのスタイル */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 5px;
}

input[type=text],
input[type=date],
input[type=number],
select,
textarea {
  font-size: 1.1rem;
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

/* 問い合わせ日、連絡方法、返答を横並びに配置 */
.form-row-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.form-row-horizontal .form-group {
  flex: 1;
}

.form-row-horizontal label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.form-row-horizontal input,
.form-row-horizontal select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
}

/* 検索結果を表示するテーブル */
.results-table {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.results-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.results-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* ボタンのスタイル */
button {
  grid-column: span 2;
  padding: 15px;
  background-color: #888;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #666;
}

@media (max-width: 768px) {
  form {
    grid-template-columns: 1fr;
  }
  .tab-button {
    padding: 8px 16px;
    font-size: 1rem;
  }
  button {
    padding: 12px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=daikoku-cm.css.map */