/*************************************

style.css

*************************************/
#main_content {
	letter-spacing: .1rem;
}
section {
  width: 90%;
  margin: 2rem auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  section {
    width: 96%;
  }
}

/* title

-------------------------*/
.title {
	letter-spacing: .2rem;
	width: fit-content;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.title h1 {
  color: #001545;
  font-size: 2.2rem;
  line-height: 2rem;
  margin: 2rem 0;
}
.title h1 span {
	font-size: 2.6rem;
}

.title h1 span.toudai_color {
	color: #1e90ff;
}

.title h1 span.soukei_color {
	color: #800000;
}

.title h4 {
  display: block;
  width: 11.5rem;
  border: 1px solid;
  border-right: transparent;
  border-left: transparent;
  font-size: 1rem;
  text-align: center;
	padding: .5rem 0;
}

.title h3 {
  font-size: 1.1rem;
  margin: .5rem 0;
}

.title h3 span {
	color: #b22222;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .title {
	  letter-spacing: .1rem;
    margin-bottom: 1rem;
  }
	
	.title h1 {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin: 1rem 0;
}
.title h1 span {
	font-size: 2.2rem;
}
	

}

/* evaluation

-------------------------*/

dl.evaluation {
	display: flex;
	align-items: center;
	margin: 1.5rem 0 1rem;
}

dl.evaluation dt {
	background-color: #b22222;
	color: #fff;
	padding: .1rem .5rem;
	margin-right: 1rem;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
	
	dl.evaluation {
	display: block;
	margin: 1.5rem 0 1rem;
}
	dl.evaluation dt {
		width: fit-content;
	}

}


/* course_link

-------------------------*/

ul.course_link {
	display: flex;
	justify-content: center;
	margin: 3rem 0 3rem 0;
}

ul.course_link li {
	margin: 2rem;
	font-size: 1.1rem;
	border: 1px solid #036eb8;
	padding: 1rem;
}

ul.course_link li span {
	font-size: 1.4rem;
}
 
ul.course_link li:hover {
	opacity: .5;
}

ul.course_link li::after {
	padding-left: 1rem;
    color: var(--Main_Color);
    font-weight: 900;
    font-family: var(--Font_Weight_Bold);
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
}
    

@media screen and (orientation: portrait) and (max-width: 767px) {
	
	ul.course_link {
	display: block;
		margin: 2rem 1.5rem 0 1.5rem;
		text-align: center;
}
	ul.course_link li {
	margin: 0rem;
		margin-bottom: 2rem;
}
	
}


/* conte_box

-------------------------*/
.conte_box {
  padding: 1.2rem 3rem 1.8rem;
  background-color: #fffaf0;
  margin-top: 2rem;
}
.conte_box p {
  text-align: justify;
}
.conte_box h3 {
  font-size: 1.4rem;
  color: #001545;
}
.conte_box .tt2_date dl {
  font-size: 1.2rem;
  margin: 1rem auto 2rem;
	width: fit-content;
}
.conte_box .tt2_date dl dt {
  margin: 1.2rem 0 1.3rem;
}
.conte_box .tt2_date dl dt span {
  font-size: 1.6rem;
	margin: 0 .5rem;
}
.conte_box .tt2_date dl dd {
  margin-bottom: .8rem;
	display: flex;
	justify-content: center;
}
.conte_box .tt2_date dl dd p.mold {
  border: 1px solid #001545;
  padding: 2px 10px;
  margin-right: 2rem;
  font-size: 1rem;
  width: 200px;
	display: flex;
	align-items: center;
}
.conte_box .tt2_date dl dd p.time {
	font-size: 1.4rem;
}
.conte_box .tt2_date {
	background-color: #fff;
  border: double 8px #f5f5f5;
  padding: 1rem 0rem;
  margin: 2rem 0 1rem;
  box-shadow:
    0px 0px 4px rgba(0, 0, 0, 0.01), 0px 0px 11.1px rgba(0, 0, 0, 0.015), 0px 0px 26.8px rgba(0, 0, 0, 0.02), 0px 0px 89px rgba(0, 0, 0, 0.03);
}
.tt2_date .at_end {
  margin: 1.8rem auto 1.5rem;
	width: fit-content;
}
.tt2_date .at_end > p {
  font-size: 1rem;
}
.tt2_date .at_end p span {
  font-size: 1.4rem;
}

.conte_box .time_table {
	display: flex;
    column-gap: 3rem;
}
.conte_box .time_table table {
  width: calc(50% - 1.5rem);
  overflow: auto;
  box-sizing: border-box;
  margin: 2rem auto;
  border: 1px solid #001545;
  font-size: 1rem;
  text-align: center;
}
.conte_box .time_table table thead tr th {
  padding: .5rem;
  border: 1px solid #fff;
  background-color: #001545;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
}
.conte_box .time_table table tbody tr th, 
.conte_box .time_table table thead tr th:first-child {
  width: 8rem;
  border: 1px solid #fff;
  background-color: #001545;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
}
.conte_box .time_table table td {
  height: 3rem;
  width: 10rem;
  overflow-wrap: break-word;
  padding: .2rem;
  border: 1px solid #001545;
  background: #fff;
  vertical-align: middle;
}
.conte_box ul {
  padding-left: 1rem;
  text-indent: -1rem;
  margin: .5rem 0;
}
.conte_box li {
  text-align: justify;
	margin-bottom: .5rem;
}
.conte_box li::before {
  content: "●";
}
.conte_box li span {
  color: #f00;
	text-decoration-line: underline;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
	
	.conte_box {
  padding: 1rem 1rem 1.2rem;
}
  .conte_box dl {
    font-size: 1rem;
  }
  .conte_box div {
    display: block;
  }
	.conte_box .tt2_date dl dt span {
  font-size: 1.5rem;
	margin: 0 .1rem;
}
  .conte_box .tt2_date {
    padding: .01rem 1rem;
  }
	.tt2_date .at_end {
  margin: 1.8rem 1rem 1.5rem;
}
	.conte_box .tt2_date dl dd {
	display: block;
}
	.conte_box .time_table {
	display: block;
}
	.conte_box .time_table table {
  width: 98%;
}
}

/* examinees_voice

-------------------------*/
.examinees_voice {
    margin: 5rem 0 0rem;
}

.examinees_voice h2 {
    font-size: 1.3rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
}

.examinees_voice h2::before,
.examinees_voice h2::after {
    background-color: #555;
    content: "";
    flex-grow: 1;
    height: 1px;
}

.examinees_voice h2::before {
    margin-right: 3rem;
}

.examinees_voice h2::after {
    margin-left: 3rem;
}

.examinees_voice .voice {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5rem;
}

.examinees_voice .voice dl {
    width: calc(50% - 2.5rem);
    margin-bottom: 3rem;
}

.examinees_voice .voice dl dt {
    font-weight: bold;
    margin-bottom: 1rem;
    border-bottom: 1px solid #555;
}

.examinees_voice .voice dl dd {
    text-align: justify;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .examinees_voice {
    margin: 3rem 1rem 0rem;
}
    
    .examinees_voice h2 {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
    
    .examinees_voice h2::before,
.examinees_voice h2::after {
    content: none;
}
    
    .examinees_voice .voice {
    display: block;
}
    
    .examinees_voice .voice dl {
    width: 100%;
    margin-bottom: 2rem;
}
    
}



/* contact_banner

============================ */
.contact_banner .phone_shibuya, .contact_banner .phone_kichijoji, .contact_banner .phone_ikebukuro {
  display: none;
}