@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  line-height: 1.428571429;
  font-weight: 500;
}

/* 自動クリアフィックス */
header:after, section:after, article:after, footer:after, .clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
}

@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  .mobile {
    display: inline-block;
  }
}

.center {
  text-align: center;
}

/*!
layout > container
------------------------------
*/
.contentsWrap {
  min-height: 1200px;
}

/*!
layout > header
------------------------------
*/
#header {
  background-color: #0071BC;
}
#header .innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}
#header .logo {
  width: 190px;
  display: block;
  padding-top: 3px;
}
#header .logo img {
  width: 190px;
}

/*!
layout > footer
------------------------------
*/
#footer {
  text-align: center;
}
#footer .footerBar {
  background-color: #273036;
}

#wrapper.sub #footer {
  background-color: #273036;
  color: #fff;
}
#wrapper.sub #footer .copyright {
  margin: 0;
  padding: 16px 0;
}

.copyright {
  padding: 20px 0;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
}

/* サブページ共通 */
#contents-base {
  margin-top: 100px;
  margin-bottom: 60px;
}

.sub .innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}

.subpageTitle {
  text-align: center;
}

/*!
component > title
------------------------------
*/
.h2Wrap {
  text-align: center;
}

.naviTitle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: inline-block;
  font-size: 36px;
  font-size: 3.6rem;
  margin: 0 auto 50px;
}
.naviTitle.long {
  line-height: 1.2;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0;
}
.naviTitle.long::after {
  margin-top: 10px;
}
.naviTitle:after {
  background-color: #0071BC; /* 線色 */
  transform: skewX(-30deg);
  width: 100%;
  height: 8px; /* 線幅 */
  margin: 0 auto;
  content: "";
  display: block;
}
@media only screen and (max-width: 600px) {
  .naviTitle:after {
    height: 6px;
  }
}
@media only screen and (max-width: 600px) {
  .naviTitle {
    font-size: 30px;
    font-size: 3rem;
  }
}

.secTitle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
  margin-top: 50px;
  padding-bottom: 5px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .secTitle {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/*!
component > common
------------------------------
*/
a {
  color: #0071BC;
  text-decoration: none;
}

.marker {
  text-align: left;
  font-family: inherit !important;
  margin-bottom: 0 !important;
  background: linear-gradient(transparent 0%, #ffff66 0%);
}

.red {
  color: #ed1c29;
}

.center {
  text-align: center;
}

.caution {
  color: #ed1c29;
}

.bold {
  font-weight: bold;
}

.transition-common {
  transition: all 0.2s;
}

.shadow-common {
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

#toTop {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 10px;
  background-color: #0A0C07;
  border-radius: 5px 5px 0 0;
  width: 60px;
  height: 60px;
  padding: 5px;
  box-sizing: border-box;
}
@media only screen and (max-width: 600px) {
  #toTop {
    width: 50px;
    height: 50px;
  }
}
#toTop a {
  color: #fff;
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#toTop img {
  width: 50%;
}
#toTop .toTop__text {
  display: block;
  text-align: center;
}

/*!
component > btn
------------------------------
*/
.btnArea {
  text-align: center;
}

.btn {
  display: block;
  text-align: center;
  border: none;
  padding: 16px 1em 12px;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.btn.std {
  max-width: 280px;
  margin: 10px auto;
  color: #fff;
  background-color: #0071BC;
}
.btn.std.black {
  background-color: #0A0C07;
}
.btn.large {
  max-width: 360px;
}
.btn.disable {
  background-color: #808080;
}

a.btn {
  text-decoration: none;
  display: block;
}

a:hover {
  transition: 0.2s;
  opacity: 0.8;
}

.disable:hover {
  cursor: default;
}

.btn-line {
  display: block;
  border-width: 2px;
  border-style: solid;
  margin: 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  color: #0071BC;
  border-color: #0071BC;
}

a {
  color: #0071BC;
}

.innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}

#contents-base > .innerWrap {
  min-height: 70vh;
}

.intro-text {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  margin: 30px auto 20px;
}

.block {
  margin-top: 40px;
  margin-bottom: 40px;
}
.block > h3 {
  border-bottom: 4px solid #0071BC;
  margin-bottom: 20px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  font-size: 3.6rem;
  color: #3a3a3a;
}
.block .year-title {
  font-size: 36px;
  font-size: 3.6rem;
}
.block .honoree {
  margin-top: 40px;
}
.block .honoree .honoree__head--title {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
.block .honoree .honoree__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "first second third";
  grid-gap: 20px;
}
@media only screen and (max-width: 600px) {
  .block .honoree .honoree__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "first" "second" "auto";
  }
}
.block .honoree .honoree__body .first {
  grid-area: first;
}
.block .honoree .honoree__body .second {
  grid-area: second;
}
.block .honoree .honoree__body .third {
  grid-area: third;
}
.block .honoree .award .award__head {
  padding-left: 60px;
  background-size: 50px;
  height: 50px;
  margin-top: 10px;
}
.block .honoree .award .award__head.first {
  background: url(../images/award/icon_1st.png) left/50px no-repeat;
}
.block .honoree .award .award__head.second {
  background: url(../images/award/icon_2nd.png) left/50px no-repeat;
}
.block .honoree .award .award__head.third {
  background: url(../images/award/icon_3rd.png) left/50px no-repeat;
}
.block .honoree .award .award__head h5 {
  line-height: 50px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
.block .honoree .award .award__body {
  text-align: center;
}
.block .honoree .award .award__body img {
  max-width: 60%;
}
.block .honoree .award .award__body .name {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.block .honoree .award .award__body .record dt {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
}
.block .honoree .award .award__body .record dd {
  font-family: oswald, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
/*# sourceMappingURL=award_archive.css.map */