body {
  background-image: url("IMG_5450.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gradient-box {
  background: linear-gradient(to bottom, #ffffff, #3970B2);
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  font-size:15px;
  color: #000;
  text-align: center;
  border:2px solid:#000000;
}

body {
  display: flex;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

/* 左のサイドメニュー */
.sidebar {
  width: 280px;
  height:840px;
  background: #E9DDCD;
  padding: 0px;
  margin: 0px;
  border-radius: 8px;
}

/* 右のメインエリア */
.main {
  flex: 1;
  width:600px;
  height:800px;
  padding: 15px;
  margin: 0px;
  background: #fff;
  border-radius: 8px;
}

/* ボタン */
.buttons {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.tab-btn {
  flex: 1;
  background: linear-gradient(to bottom, #ffffff, #3970B2);
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  font-family: 'font', cursive;
  font-size:20px;
  color: #000;
  transition: 0.3s;
}

/* アクティブ状態（押してる方） */
.tab-btn.active {
  background-color: #007BFF;
  color: white;
}

/* hoverで少し濃く */
.tab-btn:hover {
  background-color: #999;
  color: white;
}

/* C部分 */
.content {
  border: 1px solid #aaa;
  padding: 20px;
  min-height: 200px;
  background: #f9f9f9;
  border-radius: 4px;
}

@font-face {
  font-family: 'font'; /* 好きな名前でOK */
  src: url('KAWAIITEGAKIMOJI.woff2') format('woff2'),
       url('KAWAIITEGAKIMOJI.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* フォントを使いたい場所に指定 */
body {
  font-family: 'Font', sans-serif;
}












