html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

sup {
  vertical-align:text-top;
  font-size: x-small;
  line-height: 1;
}

sub {
  vertical-align:text-bottom;
  font-size: x-small;
  line-height: 1;
}

i {
  font-style: italic;
}

bi {
  font-weight: bolder;
  font-style: italic;
}

b {
  font-weight: bolder;
}

/* ----------------------div id--------------------------- */

#content {
	width: 95%;
	max-width: 1200px;
	margin:0 auto;
}

#content2 {
	width: 95%;
	max-width: 1200px;
	margin:0 auto;
	display: flex;
	background-color: #ededed
}

#content3 {
	width: 95%;
	max-width: 900px;
	margin:0 auto;
	padding-top: 30px;
}

#content4 {
	width: 95%;
	max-width: 1050px;
	margin:0 auto;
}

#footer1 {		
	clear:both;
	background-color: #292f52;
	width: 100%;
	height: 140px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	justify-content: center;
	align-items: center;
	}

	.footer1_div {
		display:  inline-block;
		padding-right:  30px;
		vertical-align:  middle;
		text-align: center;
		color: #ffffff;
		}

	.footer1_content1 {
		padding-bottom: 4px;
		font-size: 18px;
		}

	.footer1_content2 {
		padding-bottom: 2px;
		font-size: 14px;
		}

@media screen and (min-width: 770px){
.br-sp {display: none; }
}

#footer2 {		
	clear:both;
	background-color: #ffffff;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding-bottom: 50px;
	}
	
	#footer2 p {
		font-size: 12px;
		padding-top: 5px;
		margin-bottom: 2px;
		margin-left: 20px;
	}

/* ----------------------Header--------------------------- */

a {
  display: inline-block;
  text-decoration: none;
}

a:link {color:#163ec4;} /*未訪問のリンクの色*/
a:visited {color:#163ec4;} /*訪問済みのリンクの色*/

a.button {
  padding: 0.5rem 1rem;
  background: #48539c;
  color: #ffffff;
  text-align: center;
}/* ---蛋白研リンク---- */

a.button.primary {
  background: #212980;
  color: #ffffff;
}/* ---阪大リンク---- */

a.button2 {
  padding: 0.2rem 0.2rem;
  color: #36c9c7;
  text-align: center;
}/* ---JP_EN---- */

header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
  height: 3.5rem;
  width: 100%;
  background: #FAFAFA;
}

header .container {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
  border-bottom: 1px solid #e0e5eb;
  background: #FAFAFA;
}

header .container > .logo {
  height: 1main;
  padding-top: 0.35rem;
  padding-left: 0.3rem;
  font-family: "Sylfaen", "Times New Roman",  "Century", serif;
  font-size: 20px;
  font-weight: bold;
  text-align:center;
}

input.hamburger-button {
  display: none;
}

input.hamburger-button ~ label {
  position: relative;
  padding: 0.25rem;
  width: 1.5rem;
  height: 1.25rem;
}

input.hamburger-button ~ label > div,
input.hamburger-button ~ label > div::before,
input.hamburger-button ~ label > div::after {
  content: "";
  position: absolute;
  top: 0.825rem;
  height: 0.125rem;
  width: 1.5rem;
  opacity: 1;
  background: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

input.hamburger-button ~ label > div::before {
  top: -0.5rem;
}

input.hamburger-button ~ label > div::after {
  top: 0.5rem;
}

header .container .hamburger-button:checked ~ label > div {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

header .container .hamburger-button:checked ~ label > div::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ label > div::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ .menu {
  left: 0;
}

header .container .menu {
  position: absolute;
  z-index: -1;
  top: 3.5rem;
  left: calc(-100vw - 3rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (max-content)[2];
      grid-template-rows: repeat(2, -webkit-max-content);
      grid-template-rows: repeat(2, max-content);
  width: 100%;
  background: #FAFAFA;
  -webkit-transition: 0.22s ease-in-out;
  transition: 0.22s ease-in-out;
}

header .container .menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background: #FAFAFA;
}

header .container .menu nav {
  grid-area: auto;
}

header .container .menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .container .menu nav ul > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

header .container .menu nav ul > li > a:hover {
  color: #c856f5;
  background: #dfe7ed;
}

header .container .menu div.buttons {
  grid-area: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e5eb;
  background: #FAFAFA;
}

header .container .menu div.buttons > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  margin: 0.5rem;
}

/* Media queries */
@media only screen and (min-width: 770px) {
  header {
    height: 6.5rem;
    border-bottom: 1px solid #e0e5eb;
  }
  header .container {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: none;
  }
  input.hamburger-button ~ label {
    display: none;
  }
  header .container .menu {
    z-index: unset;
    top: 0;
    left: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto max-content;
        grid-template-columns: auto -webkit-max-content;
        grid-template-columns: auto max-content;
    -ms-grid-rows: 3.5rem 3rem;
        grid-template-rows: 3.5rem 3rem;
    background: none;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu::after {
    display: none;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
  }
  header .container .menu nav {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
  header .container .menu nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .container .menu nav ul > li > a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 1100px) {
  header {
    height: 3.5rem;
  }
  header .container .menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-grid-columns: 4rem auto max-content;
        grid-template-columns: 4rem auto -webkit-max-content;
        grid-template-columns: 4rem auto max-content;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    height: 3.5rem;
    padding: 0 1.5rem;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu nav {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
  header .container .menu div.buttons > * {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  header .container .menu nav ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    width: 100%;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  header .container .menu nav ul > li > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 1.25rem 1.5rem;
  }
}


/* ----------------------content--------------------------- */

.image-vw_main { 
	text-align: center;
}

.image-vw_main img { 
	width: 100%; 
	max-width: 1200px;
}

.image-vw { 
	text-align: center;
}

.image-vw img { 
	width: 100%; 
	max-width: 750px;
}

.sele_color {
	border-bottom: 3px solid #f30af7;
}

.topics_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: normal;
	font-weight: bolder;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 10px;
	color: #936;
}

.topics {
	width: 90%;
	max-width: 850px;
	height: 330px;
	overflow: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	border-top-color: #CCCCCC;
	border-top-style: solid;
	border-top-width: 1px;
	border-left-color: #CCCCCC;
	border-left-style: solid;
	border-left-width: 1px;
	border-bottom-color: #CCCCCC;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-right-color: #CCCCCC;
	border-right-style: solid;
	border-right-width: 1px;
}

.topics_date {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: bolder;
	list-style: none;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 0px;
	color: #595959;
}	

.topics_cont {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.2;
	list-style: none;
	margin-left: 80px;
	margin-top: 15px;
	margin-bottom: 35px;
	padding-right: 10px;
}	

@media only screen and (max-width: 770px) {
.topics_date {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bolder;
	list-style: none;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 0px;
	color: #595959;
}

.topics_cont {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.2;
	list-style: none;
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 30px;
	padding-right: 10px;
	}	
}


.section_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: bolder;
	margin-top: 30px;
	margin-left: 15px;
	margin-bottom: 15px;
}

.sub_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 30px;
	margin-bottom: 15px;
}

.sub_title2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 30px;
	margin-bottom: 0px;
}

.sub_title3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	display: inline-block;
	margin-top: 10px;
	margin-left: 30px;
	margin-bottom: 10px;
	border-bottom: 1px solid;
}

.sub_title4 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 40px;
	margin-bottom: 15px;
	text-decoration: underline;
}

.map1 {
	width: 100%; 
	max-width: 507px;
}

.map2 {
	width: 100%; 
	max-width: 427px;
}

.map3 {
	width: 100%; 
	max-width: 680px;
}

.sub_title_blue {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 30px;
	margin-bottom: 15px;
	color: #00F;
}

.main_contents {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 2px;
	margin-left: 40px;
	margin-right: 50px;
}

.main_contents2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 60px;
	margin-right: 60px;
}

.main_contents_blue {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	color: #00F;
}

.link_imgs {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: small;
	font-weight: bold;
	line-height:100%;
	margin-left: 50px;
}

.sub_contents {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 50px;
	margin-right: 50px;
}

.list_pub_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: bolder;
	list-style: none;
	margin-left: 20px;
	color: #1374a1;
}	

.list_pub_title_TA {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bolder;
	line-height: 1.3;
	list-style: none;
	margin-left: 20px;
	color: #1d3157;
}	

.list_pub {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin-left: 20px;
	margin-right: 10px;
	margin-bottom: 20px;
}

.list_pub_TA {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	line-height: 1.6;
	padding-top: 4px;	
	margin-left: 20px;
	margin-right: 10px;
	margin-bottom: 25px;
}

.pos_pubL {
	float: left;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
}

.pos_pubR {
	float: right;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
}

.pos_takagi {
	float: left;
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 0px;
}

.pub_color {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 17px;
	font-weight: bolder;
	color: #936;
	margin-left: 15px;
}

@media only screen and (max-width: 770px) {

.section_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 30px;
	margin-left: 0px;
	margin-bottom: 15px;
	}

.sub_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 15px;
	margin-bottom: 15px;
	}

.sub_title2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 5px;
	margin-bottom: 0px;
	}

.sub_title3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-weight: bolder;
	display: inline-block;
	margin-top: 10px;
	margin-left: 15px;
	margin-bottom: 10px;
	border-bottom: 1px solid;
	}

.sub_title4 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: bolder;
	margin-top: 10px;
	margin-left: 10px;
	margin-bottom: 15px;
	text-decoration: underline;
	}

.main_contents {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	line-height: 1.2;
	margin-top: 0px;
	margin-bottom: 2px;
	margin-left: 15px;
	margin-right: 30px;
	}

.main_contents2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	margin-right: 35px;
	}

.main_contents_blue {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: bolder;
	color: #00F;
	}
	
.sub_contents {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	text-align: justify;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	margin-right: 25px;
	}

.link_imgs {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height:100%;
	margin-left: 15px;
	}

.list_pub {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	line-height: 1.3;
	margin-left: 10px;
	margin-right: 5px;
	margin-bottom: 20px;
	}

.list_pub_TA {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	line-height: 1.2;
	margin-left: 10px;
	margin-right: 5px;
	margin-bottom: 14px;
	}

.pub_color {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-weight: bolder;
	color: #936;
	margin-left: 0px;
	}

.list_pub_title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bolder;
	list-style: none;
	margin-left: 5px;
	color: #1374a1;
	}

.list_pub_title_TA {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: bolder;
	line-height: 1.2;
	list-style: none;
	margin-left: 5px;
	color: #09223d;
	}
}


/* ----------------------member--------------------------- */

.mem_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 0.8em;
  border: 1px solid #ddd;
  padding: 0.8em;
  margin: 0 0 2em;
  background: #f2f6fa;
}

.mem_grid div {
  background: #ffffff;
  overflow: auto;
  box-shadow: 10px 10px 15px -10px;
  min-width: 0;
  padding: 1em;
}

.member p{
	display: inline-block;
	vertical-align: middle;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin-left: 20px;
	padding-bottom: 10px;
	font-size: 120%;
	font-style: normal;
	font-weight: bold;
	color: #2f3399;
}

.member th{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
	font-style: normal;
	font-weight: bolder;
	padding-left: 10px;
	text-align: right;
	color: #c25da6;
}

.member td{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
	font-style: normal;
	font-weight: bolder;
	padding-left: 25px;
	color: #000000;
}


/* ----------------------link--------------------------- */

.tbl_link {
  margin-left: 30px;
  margin-bottom: 30px;
}

.tbl_link th {
  padding: 0px;
  font-weight: bolder;
  text-align: left;
}

.tbl_link li {
  padding-left: 10px;
  padding-top: 5px;
  list-style: none;
}


/* ----------------------tab--------------------------- */

ul.resp-tabs-list,
p {
  margin-left: 10px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  padding: 13px 15px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  float: left;
}

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border: 1px solid #c1c1c1;
  border-bottom: none;
  margin-bottom: -1px !important;
  padding: 12px 14px 14px 14px !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active,
.resp-accordion-active { display: block; }

.resp-tab-content { border: 1px solid #c1c1c1; }

h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/

.resp-vtabs ul.resp-tabs-list {
  margin-top: 60px;
  float: left;
  width: 180px;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none;
  color: #8e8e99;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #2f3170;
  float: left;
  width : -webkit-calc(95% - 170px) ;
  width : calc(95% - 170px) ;
  min-height: 250px;
  margin-top: 20px;
  margin-bottom: 40px;
  border-radius: 4px;
  clear: none;
}

.resp-vtabs .resp-tab-content { border: none; }

.resp-vtabs li.resp-tab-active {
  border: 2px solid #fff;
  background-color: #2f3170;
  position: relative;
  z-index: 1;
  margin-right: 7px !important;
  padding: 14px 15px 12px 14px !important;
  color: #fff;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/

h2.resp-tab-active { background: #DBDBDB !important; }

.resp-easy-accordion h2.resp-accordion { display: block; }

.resp-easy-accordion .resp-tab-content { border: 1px solid #c1c1c1; }

.resp-easy-accordion .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active { display: block; }

h2.resp-accordion:first-child { border-top: 1px solid #c1c1c1 !important; }


@media only screen and (max-width: 770px) {

ul.resp-tabs-list { display: none; }

h2.resp-accordion { display: block; }

.resp-vtabs .resp-tab-content { border: 1px solid #C1C1C1; }

.resp-vtabs .resp-tabs-container {
  border: none;
  float: none;
  width: 100%;
  min-height: initial;
  clear: none;
}

.resp-accordion-closed { display: none !important; }

.resp-vtabs .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
}