@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
  --fontSize: 16px;
  --linkColor: #048D44;
  --textColor: #333;
  /* color preset */
  --mainColor: #2665C0;
  --mainDarkColor: #0d3b7e;
  --mainLightColor: #9ec6ff;
  --subColor: #048D44;
  /* width preset */
  --gutter: 1.3rem;
  --gap: 3rem;
  --contentWidth: 1080px;
}

/* OVERWRITE RADIX */

body {
  min-width: var(--contentWidth);
  background: #eee;
}

.centering {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: var(--contentWidth);
  max-width: var(--contentWidth);
  padding: 0 30px;
  background: #fff;
  box-shadow: 0 0 3px #ccc;
}

/* OVERWRITE end */
/*************************************
* START header
*************************************/
header {
  height: 280px;
  position: relative;
  padding: 37px 30px 0;
  margin-bottom: 40px;
  background: url(../img/theme/header1.png) no-repeat center center;
  background-size: contain;
}

header .head {
  display: flex;
  justify-content: space-between;
  background: rgba(84, 128, 177, 0.3);
  color: #fff;
  text-shadow: 0 0 5px #5480B1, 0 0 5px #5480B1, 0 0 5px #5480B1;
  line-height: 1.2;
}

header .head .logo {
  display: grid;
  height: 50px;
  place-items: center;
  padding-left: 220px;
  background: url(../img/theme/banner1.png) no-repeat left center;
}

header .head .site-root {
  display: flex;
}

header .head .site-root a {
  display: flex;
  place-items: center;
  padding: 0 1rem;
  color: #fff;
}

header .head .site-root a::before {
  content: "";
  display: block;
  margin-right: .5rem;
  border: 4px solid transparent;
  border-right-width: 0;
  border-left: 6px solid currentColor;
}

header h1 {
  padding: 25px 33px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 0 5px #5480B1, 0 0 5px #5480B1, 0 0 5px #5480B1;
  letter-spacing: 3px;
  line-height: 1.6;
}

header nav {
  display: flex;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 20px;
  transform: translateY(50%);
  box-shadow: 0 0 10px rgba(85, 85, 85, 0.6);
}

header nav a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 60px;
  border-bottom: 2px solid var(--mainColor);
  background: #fff;
  color: var(--textColor);
}

header nav a:not(:last-child) {
  border-right: 1px solid #ccc;
}

header nav a:hover {
  border-bottom-color: var(--mainLightColor);
  text-decoration: none;
}


/*************************************
* END header START main
*************************************/
main {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 20px;
}

main .breadcrumb {
  display: flex;
  position: absolute;
  top: 0;
  left: 20px;
  list-style: none;
  padding-left: 0;
}

main .breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 .8rem;
}

main > article {
  width: 710px;
}

main section {
  display: flow-root;
  margin-bottom: 3rem;
}

article h1 {
  display: flex;
  padding: .5rem;
  border: 1px solid #ccc;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

article h1::before {
  content: "";
  display: block;
  margin-right: .5rem;
  border-left: 4px solid var(--mainColor);
}

article h1 a.more {
  align-self: center;
  display: flex;
  align-items: center;
  margin-left: auto;
  color: var(--textColor);
  font-size: 1rem;
  font-weight: 400;
}

article h1 a.more::before {
  content: "";
  display: inline-block;
  margin-right: .5rem;
  border: 4px solid transparent;
  border-right-width: 0;
  border-left: 6px solid currentColor;
}

article h2 {
  border-bottom: 1px solid currentColor;
  color: var(--subColor);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

article h3 {
  padding-left: 5px;
  border-left: 5px solid var(--subColor);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2rem;
}

article h2 + h3 {
  margin-top: 0;
}

.float-right {
  float: right;
  margin: 0 0 .5rem .5rem;
}

dl.news {
  margin-bottom: var(--gutter);
}

dl.news dt {
  display: flex;
  align-items: center;
  color: #aaa;
}

dl.news dt:before {
  content: "";
  display: inline-block;
  margin-right: .5rem;
  border: 4px solid transparent;
  border-right-width: 0;
  border-left: 6px solid currentColor;
}

dl.news dt .tag {
  display: inline-block;
  padding: 0 .5rem;
  margin-left: 1em;
  color: #fff;
}

dl.news dt .tag.report {
  background: var(--subColor);
}

dl.news dd {
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid #ccc;
}

main > aside {
  width: 220px;
}

aside .banner a {
  display: block;
  width: 220px;
  height: 60px;
  margin-bottom: 5px;
  background: #e5e5e5 no-repeat center center;
  background-size: contain;
}

aside .banner a:nth-child(1) {
  background-image: url(../img/theme/banner1.png);
}

aside .banner a:nth-child(2) {
  background-image: url(../img/theme/banner2.png);
}

aside .banner a:nth-child(3) {
  background-image: url(../img/theme/banner_3.png);
}

aside .banner a:nth-child(4) {
  background-image: url(../img/theme/banner_jaccn19th.png);
}

.img-right {
  float: right;
}

.img-right img {
  height: 180px;
  width: auto;
  margin: 10px;
}

.img-left {
  float: left;
}

.img-left img {
  height: 180px;
  width: auto;
  margin: 10px;
}

.attention {
  border: 2px solid var(--mainColor);
  padding: 20px;
}

ol.br {
  list-style-type: none;
  counter-reset: cnt-br;
  padding-left: 0.5em;
}

ol.br li {
  counter-increment: cnt-br;
}

ol.br li::before {
  content: "（"counter(cnt-br)"）";
}

.facebook-wrapper {
  width: 500px;
  /* Facebook Page Plugin の最大幅 */
  margin: 0 auto;
}

.facebook-wrapper > .fb-page {
  width: 100%;
}

.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
  width: 100% !important;
}

/*************************************
* END main START footer
*************************************/
footer {
  padding-top: 2rem;
  margin: 0 20px;
  border-top: 1px solid #ccc;
}

footer nav {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

footer nav a {
  padding: 0 1rem;
  color: var(--textColor);
  line-height: 1;
}

footer nav a:not(:last-child) {
  border-right: 1px solid currentColor;
}

footer .copyright {
  margin-bottom: 2rem;
  color: #aaa;
  text-align: center;
}

/*************************************
* END footer
*************************************/
