@charset "utf-8";

body {
  background-color: #fefefe;
  font-family: Helvetica,'Meiryo','メイリオ',sans-serif;
  font-size: 16px;
  color: #152197;
}
#container {
  width: 100%;
  max-width: 848px;
  margin: 0 auto;
  border: 1px solid #b19582;
  box-shadow: 1px 1px 10px #aaa;
}

/* ============================ */
/* ===== ■■ nav ■■ ===== */
/* ============================ */
.nav {
  width: 100%;
  height: fit-content;
  margin: 10px auto 5px;
  padding: 5px;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
}
.tile_menu {  /* 複数のボタンを包含 */
  padding: 5px;
  display: flex;
  background-color: #f3f3f3;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 10px;
}
.menu1 {
  width: 104px;
}
.menu2 {
  width: 140px;
}
.menu_btn {
  height: 34px;
  font-size: 16px;
  background-color: lavenderblush;
  border: 1px solid #000;
  border-radius: 4px;
  padding-top: 2px; /* text-decorationによる縦ずれ補正 */
  font-family: sans-serif;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_btn:hover {
  font-weight: bold;
  text-decoration: none;
  background-color: mistyrose;
  border: 2px solid #777;
}
a.tile:link,a.tile:visited {
  color: #000;
  text-decoration: none;
}

.box-info{
  width: 550px;
  margin: 30px auto 25px;
  padding: 20px 10px 20px 30px ;
  line-height: 22px;
  border: 1px solid #aaa;
  border-radius: 15px;
  background-color: #fffcf0;
}
.text1,.text2,.text3 {
  margin-left: 22px;
  text-indent: -21px;
}
.text1::before {
  content: "●";
  font-size: 15px;
  color: #ff7474;
  font-family: "MS Gothic";
}
.text2::before {
  content: "●";
  font-size: 15px;
  color: #0fcf14;
  font-family: "MS Gothic";
}
.text3::before {
  content: "●";
  font-size: 15px;
  color: #aa7843;
  font-family: "MS Gothic";
}
.c_set {
  font-size: 30px;
  font-weight: bold;
  vertical-align: bottom;
}
/* ===== 年度単位BOX ===== */
.year_box {
  padding: 10px 0;
  border-top: 6px solid #ccc;
}
h2{
  width: 100%;
  font-size: 24px;
  margin-top: 5px;
  text-align: center;
  letter-spacing: 0.1em;
}
.box-photo {
  width: calc(100% - 40px);
  margin: 0 auto 10px;
/*  border: 1px solid #0f0;*/
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.p_box {
  flex: 0 0 126px;
  margin-top: 15px;
/*  border: 1px solid #f00;*/
}
.photo {
  width: fit-content;
  max-width: 126px;
  height: fit-content;
  border: 3px solid #999;
  margin: 0 auto;
/*  border-radius:8px;*/
  color: blue;
  font-size: 14px;
  text-align: center;
}
.photo-text {
  width: 126px;
  color: black;
  font-size: 14px;
  text-align: center;
}

/* ====================================== */
/* ====== ■■    footer    ■■ ======== */
/* ====================================== */
footer {
  width: 100%;
  height: 58px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  margin : 0 auto;
  padding-top: 22px;
  background-color: rgba(128,0,0,0.7);
}