@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  /*display: inline-block;*/
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: -3px;
}
/* Googleアイコン */
/* アイコンのサイズを変更するためのルール */
.material-icons.md-14 {
  font-size: 14px;
}
.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}
/* 明るい背景の場合に黒色でアイコンを表示するためのルール */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}
/* 暗い背景の場合に白色でアイコンを表示するためのルール */
.material-icons.md-light {
  color: rgba(255, 255, 255, 1);
}
.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
.material-icons.md-14 {
  font-size: 24px;
}
.material-icons.md-18 {
  font-size: 28px;
}
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  font-family: 'Roboto', 'Noto Sans', 'Hiragino Sans', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 14px;
}

.site {
  display: flex;
	/*flex-direction: column;*/
  min-height: 100vh;
}
.site-content {
	flex: 1 1 auto;
	/*padding-bottom: 50px;*/
}

.container_p {
  width: 800px;
  text-align: center;
  margin: 6rem auto;
}
.container_p_b {
  width: 800px;
  text-align: center;
  margin: 6rem auto;
  color: #094E8E ;
  font-weight: bold;
}
.container_t {
  width: 800px;
  text-align: center;
  margin: 1rem auto;
}
.center_b {
  text-align: center;
}
.site-content h1 {
	font-size: 24px;
  font-weight: 500 !important;
	margin-bottom: 0;
  margin-top: 2rem;
	text-align: center;
}

.error_box {
	margin: 1rem auto;
	padding: 1rem;
	background-color: #FFEDF3;
  color: #C00;
  width: 750px;
}

@media screen and (max-width: 1080px) {
  body {
    width: 100%;
    font-size: 16px;
  }
  .site-content > .container {
    padding-right: 10px;
    padding-left: 10px;
  }

}
@media screen and (max-width: 768px) {
  div.flex-box {
    display: block;
  }
  .header h1, .site-content h1 {
    font-size: 32px;
  }
  .header h2 {
    font-size: 20px;
  }
  .header h2 {
    font-size: 20px;
    text-align: center;
  }
  .header p {
    display: none;
  }
  .container_p {
  font-size: 1.6rem;
  }
  .container_c {
  font-size: 1.6rem;
  }
  .container_t {
  font-size: 1.6rem;
  text-align: left;
  }
  .container_p_b {
  font-size: 1.6rem;
  }
  .error_box {
  display: block;  
  }
  table.base1 td, table.base1 th {
  width: 100%;
  display: block;
	padding: 1rem;
	box-sizing: border-box;
  font-size: 1.6rem;
  }
  .midashi1 {
  width: 100%;
  display: block;
	padding: 1rem .5rem;
	box-sizing: border-box;
  background-image: none;
  background-color: #093C8B;
  height: auto !important;
  font-size: 1.6rem;
  }
  .eg {
  color: #390;
  font-size: 24px;
  }
  .select, .input {
		width: 100%;
	}
  textarea, input, select {
		width: 100%;
    font-size: 24px;
	}
  input, select {
    height: auto;
    padding: 1rem;
    box-sizing: border-box;
  }
  .input:not(:last-child) {
		margin-bottom: 5px;
	}
}
@media screen and (max-width: 320px) {
  .header {
    height: 200px;
  }
  .header h1, .site-content h1 {
    font-size: 20px;
  }
  .header h2 {
    font-size: 18px;
  }
}

/* スマホの時だけ改行 */
/* PCでは無効（改行しない）*/
.sma {
    display: none;
}
/*スマートフォンでは有効*/
@media screen and (max-width:768px) {
    .sma {
        display: block;
    }
}
/* スマホの時は見えない */
@media screen and (max-width:768px) {
td.sp_none, tr.sp_none {
  display: none !important;
}
}

/* PCの時だけ改行 */
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

/* ボタンサイズ調整 */
.horizontal {
  padding: .2rem .5rem;
  font-size: .9rem;
  /*margin-bottom: 2rem;*/
}
input[type="radio"],input[type="checkbox"]{
  position: relative;
  top: -3px;
}

@media screen and (max-width:768px) {
    .horizontal {
      display: block;
      width: auto;
      margin: 1.5rem auto;
      height: 80px;
      font-size: 24px;
    }
  input[type="radio"],input[type="checkbox"]{
  position: relative;
 }
  input[type="radio"].scale2  {
   width: 28px;
   height: 28px;
}
}
/* 要素横並び センタリング */
.item-list {
  display: flex;
  justify-content: center;
}
.item-list .item {
  box-sizing: border-box;
  padding: 2rem 1rem;  
}
@media screen and (max-width:768px) {
  .item-list .item{
  padding: 2rem .5rem;  
}
}
/* 要素横並び 左寄せ */
.item-list_l {
  display: flex;
}
.item-list_l .item {
  box-sizing: border-box;
  /*padding: 0 0 0 0.5rem;*/
}
.item-list_l:after {
    content: "";
    display: block;
    /*width: 80%;*/
    height: 0;
}
@media screen and (max-width:768px) {
  #renzoku input.jun {
  width: 10% !important;
    }
  .item input.kenkyu {
  width: 50% !important;
    }
  .item input.zz_line1, .item input.zz_line2, .item input.zz_line3, .item input.zz_line4 {
  width: 15% !important;
    }
}

/* margin */
.mg_t05 {
  margin-top: .5rem;
}
.mg_t1 {
  margin-top: 1rem;
}
.mg_t2 {
  margin-top: 2rem;
}
.mg_t4 {
  margin-top: 4rem;
}
.mg_b05 {
  margin-bottom: .5rem;
}
.mg_b1 {
  margin-bottom: 1rem;
}
.mg_b2 {
  margin-bottom: 2rem;
}
.mg_b4 {
  margin-bottom: 4rem;
}

/* @group Form */
.table th, .table td {
  vertical-align: middle;
}

input[type=text], input[type=radio], input[type=checkbox] {
  margin-right: 5px;
}
input[type=text]:not(:first-child), input[type=checkbox]:not(:first-child) {
  margin-left: 5px;
}
input[type="radio"][disabled] + label {
  color: silver;
}
textarea.row {
  height: 5em;
}
.select:not(:last-child) {
  padding-right: 5px;
}
:placeholder-shown {
  color: #d3d3d3;
}
::-webkit-input-placeholder {
  color: #d3d3d3;
}
:-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}
::-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #d3d3d3;
}

@media screen and (max-width:768px) {
.table {
    border-top: 1px solid #dbdbdb;
  }
  .table thead th, .table tbody th, .table tbody td {
    width: 100%;
    display: block;
  }
  .table tbody th:nth-child(2) {
    width: 100%;
    display: block;
  }
  .t-keyword th:nth-child(1), .t-affliation th:nth-child(1), .t-author tbody th:nth-child(1), .t-author tbody td:nth-child(2), .t-author tbody td:nth-child(3), .t-author tbody td:nth-child(7) {
    width: 100%;
  }
  .table th, .table td {
    border-top-style: none;
  }
}

/* フォームとテキストの高さ調整 */
.form_txt {
  display:inline-block;
}
.text_ad {
  position: relative;
  top: 4px;
}
select, input, textarea, button { 
  vertical-align:middle; 
  position:relative; 
}
@media screen and (max-width:768px) {
  .text_ad {
  position: relative;
  top: 44px;
}
 .text_ad2 {
  position: relative;
  top: 18px;
}
 .text_ad3 {
  position: relative;
  top: 14px;
}  
}

/* information */
.info {
  padding: .5rem 1rem;
  margin: 2rem auto;
  background: #f1f1f1;
  border: dashed 1px #969696;
  width: 750px;
  font-size: 1rem;
}
.info p {
    margin: 0; 
    padding: 0;
}
@media screen and (max-width:768px) {
  .info {
    padding: 0;
    width: 95%;
  }
  .info p {
    font-size: 24px;
}
}

/* テンプレート */

.temp {
	width: 100%;
  border-collapse:collapse;
}

    @media screen and (max-width: 768px){
      .temp{
    	/*border-bottom: 1px solid #DDD;*/
      }
	
	.tr01{
			display: none;
		}
	}

.temp th{
		border: 1px solid #DDD;
		background: #FFF9E6;
		padding: 20px;
		width: 33%;
	}
.temp	td{
		border: 1px solid #DDD;
		padding: 20px;
		text-align: center;
    background: #fff;
}
		@media screen and (max-width: 768px){
	.temp	td{		
			display: block;
			border-bottom: none;
			/*width: 100%;*/
		}
	}

	
@media screen and (max-width: 768px){
.temp	td {			
		background: #FFF9E6;
		text-align: center;
    font-size: 1.6rem;
		}
.setsumei {
    font-size: 24px;
  }  
.temp td.vis {
 display: none;
}
	}

