@charset "UTF-8";
/*****************************************************************************
CSS only for classes 2025 page
*****************************************************************************/

.Page__category {
  font-family: "Hiragino kaku Gothic ProN", Meiryo, Verdana, arial, helvetica, sans-serif;
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .Page__category {
    font-size: max(5.3vw, 24px);
  }
}
.CategoryNav {
  border-bottom: 1px solid #D6D6D6;
}

/* Billboard
-----------------------------------------*/
.Billboard {
  text-align: center;
  max-width: 1600px;
  margin: 40px auto 0;
}
.Billboard img {
  max-width: 100%;
  height: auto;
}

/* Classes
-----------------------------------------*/
.Classes {
  padding-top: 88px;
}
.Classes__inner {
  max-width: 976px;
  margin: 0 auto;
}
@media screen and (max-width: 976px) {
  .Classes__inner {
    margin: 0 20px;
  }
}

/* .Record
-----------------------------------------*/
.Record {
  /* margin-top: 40px; */
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.Record__inner {
  position: relative;
  width: 100%;
  max-width: 976px;
  margin: 40px 80px 0;
}
@media screen and (max-width: 767px) {
  .Record__inner {
    margin: 40px 46px 0;
  }
}
.Record__borderBox {
  position: relative;
  border: 5px solid #FCDC3B;
  background-color: #fff;
  border-radius: 10px;
  padding: 33px 0 30px 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .Record__borderBox {
    padding: 15px;
  }
}
.Record p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .Record p {
    font-size: 20px;
  }
}
.Record__table {
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
}
.Record__table th {
  text-align: right;
  padding: 2px 2px;
}
.Record__table td {
  text-align: right;
  padding-left: 7px;
}

/* .MascotImg
-----------------------------------------*/
.MascotImg {
  position: absolute;
  bottom: 9px;
  right: -78px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .MascotImg{
  bottom: 9px;
  right: -78px;
  }
}
.MascotImg img{
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .MascotImg img{
    width: 74%;
  }
}

/* Card
-----------------------------------------*/
.Card {
  overflow: hidden;
}
.Card__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -36.5px;
}
@media screen and (max-width: 767px) {
  .Card__list {
    margin-bottom: -25px;
  }
}
.Card__item {
  width: 31%;
  margin: 0 3.5% 36.5px 0;
}
@media screen and (max-width: 767px) {
  .Card__item {
    width: 48.5%;
    margin: 0 3% 25px 0;
  }
}
.Card__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .Card__item:nth-child(3n) {
    margin-right: 3%;
  }
  .Card__item:nth-child(2n) {
    margin-right: 0;
  }
}

.Card__item a:link    { color: #000; text-decoration: none; }
.Card__item a:visited { color: #000; text-decoration: none; }
.Card__item a:hover   { color: #000; text-decoration: none; opacity: .8; }
.Card__item a:focus   { color: #000; text-decoration: none; }
.Card__item a:active  { color: #000; text-decoration: none; }

.Card__item img {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.Card__text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: inline-block;
  margin-top: 11px;
}
.Card__date {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .Card__date {
    font-size: 10px;
  }
}

/* Breadcrumb
-----------------------------------------*/
.Breadcrumb {
  border-bottom: 1px solid #d6d6d6;
}
.Breadcrumb__inner {
  max-width: 976px;
  margin: 0 auto;
  overflow-x: auto;
}
@media screen and (max-width: 976px) {
  .Breadcrumb__inner {
    margin: 0 20px;
  }
}
.Breadcrumb__list {
  white-space: nowrap;
  padding: 14.5px 0;
}
.Breadcrumb__item {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding-right: 42px;
}
@media screen and (max-width: 767px) {
  .Breadcrumb__item {
    padding-right: 30px;
  }
}
.Breadcrumb__item:last-child {
  padding-right: 0;
}
.Breadcrumb__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .Breadcrumb__item::after {
    right: 15px;
    width: 5px;
    height: 5px;
  }
}
.Breadcrumb__item:last-child::after {
  content: none;
}

.Breadcrumb__list a:link    { color: #666; text-decoration: none; }
.Breadcrumb__list a:visited { color: #666; text-decoration: none; }
.Breadcrumb__list a:hover   { color: #666; text-decoration: none; }
.Breadcrumb__list a:focus   { color: #666; text-decoration: none; }
.Breadcrumb__list a:active  { color: #666; text-decoration: none; }

/* Article
-----------------------------------------*/
.Article {
  max-width: 976px;
  padding: 80px 80px 80px 80px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .Article {
    padding: 50px 20px 50px 20px;
  }
}
.Article > p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 2.2em;
}
@media screen and (max-width: 767px) {
  .Article > p {
    margin-bottom: 1.2em;
  }
}
.Article__header {
  margin-bottom: 55px;
}
.Article__title {
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: #004ea2;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .Article__title {
    font-size: 22px;
  }
}
.Article__date {
  font-size: 14px;
  line-height: 1;
  color: #666666;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .Article__date {
    font-weight: bold;
  }
}
.Article__subTitle {
  font-size: 20px;
  position: relative;
  padding: 2px 0 2px 19px;
  margin: 3em 0 1.4em 0;
}
.Article__subTitle::before {
  content: "";
  background-color: #004ea2;
  width: 3px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

/* ImgBox
-----------------------------------------*/
.ImgBox {
  overflow: hidden;
  margin: 2.2em 0;
}
@media screen and (max-width: 767px) {
  .ImgBox {
    margin: 1.2em 0;
  }
}
.ImgBox__inner {
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  .ImgBox__inner {
    margin-bottom: -1.2em;
  }
}
.ImgGroup {
  display: flex;
  flex-wrap: wrap;
}
.ImgGroup li {
  text-align: center;
}
.ImgGroup img {
  max-width: 100%;
  height: auto;
}
.ImgGroup--col2 {
  margin-right: -2.5%
}
@media screen and (max-width: 767px) {
  .ImgGroup--col2 {
    margin-right: 0;
  }
}
.ImgGroup--col2 li {
  width: 47.5%;
  margin: 0 2.5% 20px 0;
}
@media screen and (max-width: 767px) {
  .ImgGroup--col2 li {
    width: 100%;
    margin: 0 0 1.2em 0;
  }
}

/* .Content
-----------------------------------------*/
.Content > *:last-child {
  margin-bottom: 0;
}
.Content > p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.2em;
}
.ContentList {
  margin-bottom: 1.2em;
}
.ContentList > li {
  font-size: 16px;
  line-height: 1.9;
  text-indent: -1em;
  padding-left: 1em;
}
.ContentList--noindent > li {
  text-indent: 0;
  padding-left: 0;
}
.Content > .Memolist {
  margin-bottom: 1.6em;
}
