@charset "UTF-8";

/*---------------------------------
  COMMON
---------------------------------*/
.border_box {
  padding: 10px 10px 7px;
  border: #ddd solid 1px;
}
.border_box li {
  margin-bottom: 10px;
  margin-left: 0;
}
.border_box li:last-child {
  margin-bottom: 0;
}
.border_box_ttl {
  width: 25%;
  max-width: 120px;
  min-width: 115px;
  font-weight: 700;
}
.border_box_ttl span {
  display: inline-block;
  margin-left: 5px;
  font-weight: 400;
}
.border_box_txt {
  width: 75%;
}
/* flexbox */
.d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.d-flex-space-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.d-flex-space-center {
  -ms-flex-pack: center;
  justify-content: center;
}
.d-flex-item-center {
  -ms-flex-align: center;
  align-items: center;
}
.d-flex-justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and ( max-width : 991px ) {
  /* flexbox */
  .d-flex_sp {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .d-flex-space-between_sp {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .d-flex-justify-content-center_sp {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .d-flex-item-center_sp {
    -ms-flex-align: center;
    align-items: center;
  }
  .d-flex-justify-content-center_sp {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and ( max-width : 768px ) {
}
@media only screen and ( max-width : 640px ) {
  .border_box_ttl {
    width: 100%;
  }
  .border_box_txt {
    width: 100%;
  }
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
  /* flexbox */
  .d-flex_pc {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .d-flex-space-between_pc {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .d-flex-justify-content-center_pc {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .d-flex-item-center_pc {
    -ms-flex-align: center;
    align-items: center;
  }
  .d-flex-justify-content-center_pc {
    -ms-flex-pack: center;
    justify-content: center;
  }
}


/*---------------------------------
  TEMPLATE LAYOUT
---------------------------------*/
#container {
  border: 1px solid #ddd;
  -moz-box-shadow: 0 0 10px #bfbfbf; /* Firefox用 */
  -webkit-box-shadow: 0 0 10px #bfbfbf; /* Safari,Google Chrome用 */
  box-shadow: 0 0 10px #bfbfbf;
  background: #fff;
}
#contents {
  background: #fff;
}
@media only screen and ( max-width : 991px ) {
  .main {
    margin-top: 85px;
  }
  .sp_inner {
    margin: 0 15px;
  }
  #conR {
    max-width: 300px;
    margin: 40px auto 40px;
  }
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
  #container {
    width: 940px;
    margin: 30px auto;
    padding: 20px;
  }
  #icatch {
    width: 940px;
  }
  #contents {
    float: left;
    width: 940px;
  }
  #conL {
    float: left;
    width: 620px;
  }
  #conR {
    float: right;
    width: 300px;
  }
}

/*---------------------------------
  TITLE
---------------------------------*/
h1,h2,h3,h4,h5,h6 {
  margin: 0;
}
h2 {
  clear: both;
  color: #fff;
  font-weight: normal;
  background: #770000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.85, #700), color-stop(0.00, #aa2323));
  background: -webkit-linear-gradient(top, #aa2323 0%, #700 85%);
  background: -moz-linear-gradient(top, #aa2323 0%, #700 85%);
  background: -o-linear-gradient(top, #aa2323 0%, #700 85%);
  background: -ms-linear-gradient(top, #aa2323 0%, #700 85%);
  background: linear-gradient(to bottom, #aa2323 0%, #700 85%);
}
h3 {
  clear: both;
  font-weight: normal;
  margin: 0;
  color: #000;
  border: 1px solid #ddd;
  background: #ccc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.85, #ccc), color-stop(0.00, #f3f3f3));
  background: -webkit-linear-gradient(top, #f3f3f3 0%, #ccc 85%);
  background: -moz-linear-gradient(top, #f3f3f3 0%, #ccc 85%);
  background: -o-linear-gradient(top, #f3f3f3 0%, #ccc 85%);
  background: -ms-linear-gradient(top, #f3f3f3 0%, #ccc 85%);
  background: linear-gradient(to bottom, #f3f3f3 0%, #ccc 85%);
}
h4 {
  color: #000;
  font-weight: normal;
  border: 0;
  background: #f1f1f1;
}
h5 {
  font-weight: normal;
  border-left: 5px solid #000;
}
h6 {
  font-size: 13px;
  color: #770000;
}
@media only screen and ( max-width : 991px ) {
  h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
  }
  h2 {
    padding: 10px;
    font-size: 16px;
  }
  h2 span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
  }
  h3,h4,h5 {
    padding: 5px 10px 3px;
    font-size: 14px;
  }
}
@media only screen and ( max-width : 768px ) {
  h2 span {
    display: inline-block;
    margin-left: 1rem;
  }
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
  h2 {
    padding: 5px 10px;
    font-size: 15px;
  }
  h2 span {
    margin-left: 1rem;
  }
  h3,h4,h5 {
    padding: 5px 10px;
  }
  h3 {
    font-size: 15px;
  }
  h4,h5 {
    font-size: 13px;
  }
}


/*---------------------------------
  TABLE
---------------------------------*/
table {
  font-size: 12px;
}
table {
  margin: 10px;
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  line-height: 1.8;
}
table th {
  padding: 5px;
  border: 0px solid #999;
  border-width: 0 0 0px 0px;
  background: #EFEBEF;
  font-weight: bold;
  text-align: left;
}
table.th_normal th {
  font-weight: 400;
}
table.table th {
  background: none;
}
table td {
  padding: 5px;
  border: 0px solid #999;
  border-width: 0 0 0px 0px;
  text-align: left;
}
table td ol {
  margin: 0;
  padding: 0 0 0 30px;
}
table td li {
  margin: 0;
  padding: 0;
}
@media only screen and ( max-width : 991px ) {
  table {
    width: 100%;
    margin: 10px 0 0;
  }
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
  table {
    width: 600px;
  }
}


/*---------------------------------
  SUBMENU CUSTOMIZE
---------------------------------*/
.submenu {
  border: 1px solid #ddd;
}
.submenu h3 {
  border: none;
}
.submenu ul {
  margin: 10px;
  padding: 0;
}
.submenu li {
  margin: 0;
  padding: 0 0 0 7px;
  list-style: none;
  background: url("../images/bg_arrow.gif") no-repeat left 50%;
}
.submenu p {
  margin: 10px;
}
@media only screen and ( max-width : 991px ) {
  #sp_submenu h2 {
    background: #a7a7a7;
    color: #000;
  }
}
@media only screen and ( max-width : 768px ) {
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
}


/*---------------------------------
  BANNER CUSTOMIZE
---------------------------------*/
.bnrL {
  margin: 20px 0;
}
.bnrL ul {
  width: 630px;/* for IE7 */
  margin: 0 -10px 0 0;
  padding: 0;
}
.bnrL li {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.bnrR {
  width: 278px;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ddd;
}
.bnrR ul {
  margin: 0 0 -10px 0;
  padding: 0;
}
.bnrR li {
  margin: 0;
  padding: 10px;
  list-style: none;
  margin-bottom: 10px;
  background: #eee;
}


/*---------------------------------
  ABOUT CUSTOMIZE
---------------------------------*/
#faq_box img {
  vertical-align: middle;
}
#faq_box dl {
  margin: 0 0 10px 0;
}
#faq_box dt {
  /* display: block; */
  margin-bottom: 0;
  padding: 10px 40px 10px 50px;
  vertical-align: middle !important;
  position: relative;
  background: #EFEBEF;
}
#faq_box dd {
  margin-left: 0;
  padding: 10px 40px 10px 50px;
  position: relative;
  background: #efefef;
}
.faq_img {
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
}
@media only screen and ( max-width : 768px ) {
  #member th,#member td {
    display: block;
    width: 100%;
  }
  #member th {
    padding-bottom: 0;
  }
  #member td {
    padding-top: 0;
  }
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
}

/*---------------------------------
  MEMBER
---------------------------------*/
@media only screen and ( max-width : 991px ) {
  #member .li_head {
    margin-left: 20px;
  }
}


/*---------------------------------
  ARCHIVE CUSTOMIZE
---------------------------------*/
#achieve table th {
  border-bottom: #ddd dashed 1px;
}
#achieve table td {
  border-bottom: #ddd dashed 1px;
}
@media only screen and ( max-width : 991px ) {
  #achieve table th {
    width: 30%;
    border-bottom: #ddd dashed 1px;
  }
  #achieve table td {
    border-bottom: #ddd dashed 1px;
  }
}
@media only screen and ( max-width : 787px ) {
  #achieve table th {
    padding-bottom: 0;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  #achieve table td {
    display: block;
    padding-top: 0;
    width: 100%;
  }
  #achieve table th br.sp {
    display: none
  }
}
@media print, screen and ( min-width : 992px ) {
  #achieve table th {
    width: 35%;
  }
}

@media print, screen and ( min-width : 1200px ) {
}

/*---------------------------------
  PUBLICCATIONS CUSTOMIZE
---------------------------------*/
#Publications li {
  margin: 0;
}


/*---------------------------------
  CONTACT CUSTOMIZE
---------------------------------*/
.map_btn a {
  display: block;
  padding: 15px 10px;
  background: #2a2a2a;
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 120%;
  line-height: 1;
  color: #fff;
}
@media only screen and ( max-width : 991px ) {
}
@media only screen and ( max-width : 768px ) {
}
@media only screen and ( max-width : 320px ) {
}
@media print, screen and ( min-width : 992px ) {
}


/*---------------------------------
  SUBMENU ACCORDION CUSTOMIZE
---------------------------------*/
.submenu_ac-parent {
  padding: 10px 15px;
  position: relative;
  font-weight: normal;
  cursor: pointer;
  border-bottom: #ddd solid 1px;
}
.submenu_ac-parent.last {
  border-bottom: none;
}
.submenu_ac-parent::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 1px;
  transform: rotate(90deg);
  background: #000;
  transition: all .3s ease-in-out;
}
.submenu_ac-parent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 1px;
  background: #000;
  transition: all .2s ease-in-out;
}
.submenu_ac-parent.open::before {
  transform: rotate(180deg);
}
.submenu_ac-parent.open::after {
  opacity: 0;
}
.submenu_ac-child {
  display: none;
}


/*---------------------------------
  ACCORDION CUSTOMIZE
---------------------------------*/
.ac-ttl,.ac-ttl02,.ac-ttl03 {
	position: relative;
  padding: 10px 15px;
}
.ac-box .ac-ttl,.ac-box .ac-ttl02,.ac-box .ac-ttl03 {
	cursor: pointer;
}
.ac-box .ac-content,.ac-box .ac-content02,.ac-box .ac-content03 {
		display: none;
	}
.ac-icon,
.ac-icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.ac-icon {
	position: absolute;
	right: -10px;
	top: calc(50% - 10px);
	width: 30px;
	height: 30px;
}
.ac-icon span {
	position: absolute;
  left: 0;
  width: 50%;
	height: 1px;
  background-color: #000;
}
.ac-icon span:nth-of-type(1) {
  top: 0;
	transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.ac-icon span:nth-of-type(2) {
    top: 0;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*　＋－切り替え　*/
.ac-icon.active span:nth-of-type(1) {
	display:none;
}
.ac-icon.active span:nth-of-type(2) {
	top: 0;
	transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
@media only screen and ( max-width : 991px ) {
  .ac-icon {
    right: 0;
  }
}


/*---------------------------------
  MORE BUTTON CUSTOMIZE
---------------------------------*/
.text_wrapper,.text_wrapper02,.text_wrapper03 {
	position: relative;
}
.text,.text02,.text03 {
	height: 220px;
	overflow: hidden;
  position: relative;
}
.text:before,.text02:before,.text03:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.open.text:before,.open02.text02:before,.open03.text03:before {
  display: none;
}
.show_more,.show_more02,.show_more03 {
	position: absolute;
	bottom: 0;
	left: 0px;
  right: 0;
  display: block;
	width: 100%;
  max-width: 150px;
  margin: 0 auto;
  padding: 8px 0;
	text-align: center;
  background: #363636;
  color: #fff;
  border-radius: 20px;
	cursor: pointer;
	transition: bottom 0.2s;
}
.show_more.active,.show_more02.active02,.show_more03.active03 {
  bottom: -30px;
}
/* .active {
	background: none;
	bottom: -30px;
} */



/*---------------------------------
  MORE BUTTON  CUSTOMIZE
---------------------------------*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
	transition: all 0.5s;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 100px;
	cursor: pointer;
	text-align: center;
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 1) 100%);
}
.cp_box input:checked + label {
	background: inherit;
}
.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	width: 100%;
  max-width: 150px;
	content: '＋'' 続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: #363636;
  vertical-align: middle;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 200px;
	transition: all 0.5s;
}
.cp_box input:checked + label:after {
	content: '－'' 閉じる';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 40px;
	transition: all 0.5s;
}


/*---------------------------------
  TITLE
---------------------------------*/
@media only screen and ( max-width : 991px ) {
  /* 画面サイズが小さいPC・画面サイズが大きいタブレットの記述 */
}
@media only screen and ( max-width : 768px ) {
  /* タブレット～スマホの記述 */
}
@media only screen and ( max-width : 320px ) {
  /* 画面サイズが小さいスマホの記述 */
}
@media print, screen and ( min-width : 992px ) {
  /* PCの記述 */
}
