body {
	width: 100%;
  font-size: 15px;
	-webkit-text-size-adjust: 100%;//iphone文字サイズバグフィックス
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
}

.sanin-header {
  margin-bottom: 30px;
}

/* ナビ */
.sanin-header-nav-list {
  display: flex;
}
.sanin-header-nav-list__item {
  flex: 1;
  text-align: center;
  border-right: 1px solid #6e8fb1;
}
.sanin-header-nav-list__item:last-child {
  border-right: none;
}
.sanin-header-nav-list__itemInner {
  display: block;
  padding: 10px 0;
  background: #1c4977;
  color: #fff;
}
span.sanin-header-nav-list__itemInner {
  background: #172F45;
}
a.sanin-header-nav-list__itemInner:hover {
  background: #2061a2;
}
/* 無効 */
.sanin-header-nav-list__item .is-disabled {
  background: #53779c;
  color: #d2cfcf;
  pointer-events: none;
}

/* ページ内リンク */
.sanin-header-pageLinks {
  margin-top: 20px;
}
.sanin-header-pageLinks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sanin-header-pageLinks-list__item {
  margin: 5px 10px;
}
.sanin-header-pageLinks-list__item a {
  display: block;
  color: #1e4976;
  text-decoration: none;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #1c4977;
  padding: 8px;
  width: 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
	.sanin-header-pageLinks-list__item a {
	  width: 80px;
	}
}
.sanin-header-pageLinks-list__item a:hover {
  background: #1c4977;
  color: #fff;

}

/* セクション */
.sanin-main-section + .sanin-main-section {
  margin-top: 45px;
}
@media only screen and (max-width: 768px) {
	.sanin-main-section + .sanin-main-section {
	  margin-top: 30px;
	}
}
.sanin-main-section-heading {
  /* border-left: solid 5px #1c4977; */
  background: #1c4977;
  padding: 15px 20px;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}


/* リスト */
.sanin-list-item + .sanin-list-item {
  margin-top: 25px;
}
.sanin-list-item-header {
  display: flex;
  align-items: center;
  border-left: solid 3px #1c4977;
  border-bottom: 1px solid #1c4977;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-header {
	  padding: 5px 0;
	}
}
.sanin-list-item-header__name {
  font-size: 20px;
  font-weight: bold;
  flex: 1;
  padding-left: 15px;
}
.sanin-list-item-header__name small {
  font-size: 14px;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-header__name small {
	  display: block;
		font-size: 12px;
		margin-top: 7px;
	}
}

.sanin-list-item-header__meta {
  display: flex;
}
.sanin-list-item-header__age {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-header__age {
	  font-size: 14px;
		margin-right: 10px;
	}
}
.sanin-list-item-header__category {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1c4977;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 15px;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-header__category {
	  background: none;
	  color: #1c4977;
	  font-size: 13px;
	  padding: 8px 5px;
	}
}

.sanin-list-item-body {
  display: flex;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-body {
	  display: block;
	}
}
.sanin-list-item-body__image {
  width: 200px;
  margin-right: 25px;
}
@media only screen and (max-width: 768px) {
	.sanin-list-item-body__image {
	  width: 150px;
		margin: 0 auto;
		margin-bottom: 15px;
	}
}
.sanin-list-item-body__content {
  flex: 1;
}

.sanin-list-item-body__item + .sanin-list-item-body__item {
  margin-top: 25px;
}
.sanin-list-item-body__itemHeading {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #1c4977;
  padding-left: 1em;
  margin-bottom: 12px;
}
.sanin-list-item-body__itemHeading:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid 2px #1c4977;
  position: absolute;
  top: 0.5em;
  left: 0;
  margin-top: -4.5px;
  border-radius: 4px;
}
.sanin-list-item-body__itemText {
  line-height: 1.5;
}
