@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
  --fontSize: 16px;
  --linkColor: #3892B7;
  --textColor: #333;
  /* color preset */
  --mainColor: #34465e;
  --mainDarkColor: #2E4C5B;
  --mainLightColor: #B2CCE1;
  --subColor: #e6a3a1;
  --subDarkColor: ;
  --subLightColor: #ffded4;
  /* width preset */
  --gutter: 1.3rem;
  --gap: 3rem;
  --contentWidth: 1000px;
}

/* OVERWRITE RADIX */

body {
  min-width: var(--contentWidth)
}

.centering {
  width: var(--contentWidth);
  max-width: var(--contentWidth)
}

/* OVERWRITE end */
/*************************************
* START header
*************************************/
header .head-bar {
  background: var(--mainDarkColor);
}

header .head-bar .head-bar-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .head-bar p {
  color: #fff;
}

header .head-bar .site-info {
  display: flex;
  gap: .5rem;
}

header .head-bar .site-info a {
  display: inline-block;
  position: relative;
  padding: .5rem 1.5rem;
  color: #fff;
  line-height: 1;
}

header .head-bar .site-info a::before {
  content: "";
  display: inline-block;
  width: 8px;
  /*height: 1.5rem;*/
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--subLightColor);
}

header h1 {
  height: 110px;
  background: url(../img/theme/header_logo.png) no-repeat left center;
}

.head-bar-body a {
  color: #fff;
}

#gnav {
  padding: .5rem;
  background: var(--subLightColor);
  border-bottom: 1px solid #fff;
}

#gnav ul.gnav-body {
  display: flex;
  justify-content: space-evenly;
}

#gnav ul.gnav-body li {
  width: 100%;
}

#gnav ul.gnav-body a {
  display: block;
  text-align: center;
  color: #000;
  font-family: 'Noto Serif JP';
  font-weight: 700;
}

#gnav ul.gnav-body a.active {
  background: var(--subColor);
  color: #fff;
  text-decoration: none;
}

/*************************************
* END header START main
*************************************/
/* title-area */
.title-area {
  padding: .5rem 0;
  background: #34465e repeat center center;
  background-image: linear-gradient(135deg, transparent 17.4%, var(--mainColor) 17.5%, var(--mainColor) 37.5%, transparent 37.6%, transparent 67.4%, var(--mainColor) 67.5%, var(--mainColor) 87.5%, transparent 87.6%);
  background-repeat: repeat;
  background-size: 10px 10px;
}

.title-area .eyecatch {
  display: block;
  width: var(--contentWidth);
  margin: 0 auto;
}

.title-area .sub-pagetitle {
  padding: 1.5rem 0;
}

.title-area h1 {
  display: inline-block;
  min-width: 400px;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, .8);
  font-size: 1.8rem;
  font-family: 'Noto Serif JP';
  font-weight: 700;
  line-height: 1.4;
  text-shadow: -2px -2px 1px #fff, 0px -2px 1px #fff, 2px -2px 1px #fff,
    -2px 0px 1px #fff, 0px 0px 1px #fff, 2px 0px 1px #fff,
    -2px 2px 1px #fff, 0px 2px 1px #fff, 2px 2px 1px #fff;
}

/* main wrapper */
main {
  display: grid;
  grid-template-columns: 1fr calc(var(--contentWidth) - 280px) 50px 230px 1fr;
  grid-template-rows: auto auto;
  padding: 2rem 1rem;
}

main > ol.breadcrumb {
  grid-row: 1;
  grid-column: 2/5;
  list-style: none;
  padding-left: 0;
  margin-top: -1rem;
}

main > ol.breadcrumb li {
  display: inline-block;
}

main > ol.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0 .5rem;
}

main > ol.breadcrumb a {
  color: #597C5E;
}

main > article {
  grid-row: 2;
  grid-column: 2;
}


/* headings */
article h1 {
  display: grid;
  grid-template-columns: auto auto 1fr;
  padding: 4px 0 4px 1.5rem;
  background: var(--mainColor);
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Noto Serif JP';
  line-height: 1.4;
}

article h1::before {
  content: "";
  display: block;
  width: 8px;
  height: calc(100% + 8px);
  grid-row: 1;
  grid-column: 2/3;
  transform: translateY(-4px);
  margin-left: 1.5rem;
  background: var(--mainLightColor) repeat center center;
  background-image: linear-gradient(135deg, transparent 17.4%, var(--mainColor) 17.5%, var(--mainColor) 37.5%, transparent 37.6%, transparent 67.4%, var(--mainColor) 67.5%, var(--mainColor) 87.5%, transparent 87.6%);
  background-repeat: repeat;
  background-size: 8px 8px;
}

article h1::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 8px);
  grid-row: 1;
  grid-column: 3/4;
  transform: translateY(-4px);
  background: var(--subLightColor);
}

article h2 {
  display: grid;
  grid-template-columns: auto auto 1fr;
  padding: 4px 0 4px 1.5rem;
  background: var(--mainColor);
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Noto Serif JP';
  line-height: 1.4;
}

article h2::before {
  content: "";
  display: block;
  width: 8px;
  height: calc(100% + 8px);
  grid-row: 1;
  grid-column: 2/3;
  transform: translateY(-4px);
  margin-left: 1.5rem;
  background: var(--mainLightColor) repeat center center;
  background-image: linear-gradient(135deg, transparent 17.4%, var(--mainColor) 17.5%, var(--mainColor) 37.5%, transparent 37.6%, transparent 67.4%, var(--mainColor) 67.5%, var(--mainColor) 87.5%, transparent 87.6%);
  background-repeat: repeat;
  background-size: 8px 8px;
}

article h2::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 8px);
  grid-row: 1;
  grid-column: 3/4;
  transform: translateY(-4px);
  background: #d7e4f7;
}

article h1 a,
article h2 a {
  color: #FFD9C0;
  text-decoration: underline;
}

main section p,
ol.news-list li p {
  text-align: justify;
}

/* content items */
.float-right {
  float: right;
  margin: 0 0 .5rem 1rem;
}

.float-left {
  float: left;
  margin: 0 1rem .5rem 0;
}

.news-list {
  list-style: none;
  padding-left: 0;
}

.news-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.news-list li::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  top: .3rem;
  left: 0;
  z-index: 2;
  background: var(--linkColor);
}

.news-list li::after {
  content: "";
  display: block;
  position: absolute;
  top: .55rem;
  left: .3rem;
  z-index: 3;
  border: .35rem solid transparent;
  border-right-width: 0;
  border-left: .6rem solid #fff;
}

.news-list p {
  margin-bottom: 0;
}

.news-list li a {
  font-weight: 700;
  text-decoration: underline;
}

a.more-list {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 700;
  text-decoration: underline;
}

a.more-list::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  top: .3rem;
  left: 0;
  z-index: 2;
  background: var(--linkColor);
}

a.more-list::after {
  content: "";
  display: block;
  position: absolute;
  top: .55rem;
  left: .3rem;
  z-index: 3;
  border: .35rem solid transparent;
  border-right-width: 0;
  border-left: .6rem solid #fff;
}

.publication-covers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 10px 10px 0 10px;
  border: 5px solid var(--mainLightColor);
}

.publication-covers img {
  width: calc((100% - 50px) / 5);
  margin-bottom: 10px;
}

.publication-list li {
  margin-bottom: 1rem;
}

.member-image {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #f5f5f5;
  padding: 20px;
}

.member-image .info {
  margin-right: 1rem;
  width: calc(100% - 180px - 2rem);
}

.member-image .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.member-image .info .title .name {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
}

.member-image .info .title .degrees {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #636363;
}

.member-image .info table {
  display: block;
  margin-bottom: 0;
  width: 100%;
}

.member-image .info table th {
  text-align: left;
}

.member-image .info table tr > * {
  padding: 0.3rem 1rem;
  background-color: #f5f5f5;
  background-color: #eeeeee;
}

.member-image img {
  width: 180px;
  height: 240px;
  bottom: 0;
}

.member-table table {
  width: 100%;
}

.member-table th {
  color: #fff;
  background: var(--mainColor);
  border: 2px #e0e0e0 solid;
  vertical-align: middle;
}

.member-table td {
  border: 2px #e0e0e0 solid;
  padding: 10px 10px 10px 10px;
}

.member-table tr:nth-child(2n-1) {
  background: #f0f0f0;
  padding: 10px 10px 10px 10px;
}

/* aside */
main > aside {
  grid-row: 2;
  grid-column: 4;
}

aside .banners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

aside .banners img {
  display: block;
}

.flex-box {
  display: flex;
}

.flex-img {
  margin-left: 2rem;
}

/*************************************
* END main START footer
*************************************/
footer {
  background: var(--mainColor);
}

footer ul.fnav {
  display: flex;
  justify-content: center;
  background: var(--mainDarkColor);
  padding: .8rem;
}

footer ul.fnav li:not(:last-child) {
  border-right: 1px solid #fff;
}

footer ul.fnav a {
  display: block;
  padding: 0 1.5rem;
  color: #fff;
  line-height: 1;
}

footer p.copyright {
  padding: 2rem;
  color: #fff;
  text-align: center;
}

/*Safari対策*/
_::-webkit-full-page-media,
_:future,
:root .publication-covers img {
  object-fit: contain;
  max-height: 10rem;
}

/*↑これはiOSのChromeにも適用されてしまうので、Chromeのみ元に戻す*/
_::content,
_:future,
.publication-covers img:not(*:root) {
  object-fit: cover;
  max-height: none;
}
