@charset "UTF-8";
/* CSS Document */

table{
	border: none;
	border-radius: 5px;
}

table tr th,
table tr td {
	font-size: 1rem;
	padding: 15px 10px;
	word-wrap: break-word;
}

table th {
  width: 30%;
}

table td {
  width: 70%;
}

header{
	background-color: #fff;
}

header h1 {
  width: 960px;
  margin: auto;
  padding: 20px 20px 40px 0;
}

@media only screen and ( max-width : 959px ){
	header h1{
		padding: 40px 20px 70px;
	}
}

ul, ol, dl {
  margin-bottom: 0;
}

h3{
	position: relative;
	padding-left: 45px;
	margin: 80px 0 30px;
}

h3:before{
	position: absolute;
  content: "";
  background: transparent url("../img/curriculum/pentagon.png") no-repeat scroll 0% 0%;
  top: -1px;
  left: 0px;
  width: 36px;
  height: 31px;
}

.contact-btn {
  text-align: center;
  margin-top: 60px;
}

.contact-btn a {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  background: #E77C88;
  border-radius: 5px;
  padding: 1em 2.5em 0.75em;
}

.intro p{
	font-size: 1rem;
	position: relative;
	margin-top: 10px;
	letter-spacing: 1px;
	color: #545454;
}

.intro p a{
	color: #E77C88;
}

.intro ul {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em 3em;
  list-style: none;
  border: 2px solid #E77C88;
  border-radius: 5px;
  width: 100%;
  max-width: 600px;
	margin: 60px auto 0;
  padding: 30px 5%;
}
@media screen and (max-width: 399px) {
  .intro ul {
    justify-content: flex-start;
  }
}

.intro ul li {
  position: relative;
  display: block;
  line-height: 1.4;
  padding-left: 1em;
}
@media screen and (max-width: 399px) {
  .intro ul li {
    width: 100%;
  }
}

.intro ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background: #E77C88;
  border-radius: 50%;
  transform: translateY(-50%);
}

.intro .contact::before {
	content: "";
  position: absolute;
  top: 5px;
  left: 1em;
  width: 0;
	height: 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 9.5px;
	border-color: transparent transparent transparent #545454;
}

.intro .gallery{
	display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .intro .gallery{
    gap: 5px;
  }
}

.intro .gallery .gallery-item{
  display: block;
	width: calc((100% - 15px * 2) / 3);
  aspect-ratio: 660 / 440;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .intro .gallery .gallery-item{
    width: calc((100% - 5px) / 2);
  }
}

.fulltime-wrap {
	padding-bottom: 15px;
}

.fulltime-wrap h4 {
	font-size: 16px;
}

.fulltime table{
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.fulltime table tbody{
	background: #d2e2e9 none repeat scroll 0% 0%;
}

.fulltime table tr:nth-of-type(2n) {
  background: #e8eef1 none repeat scroll 0% 0%;
}

.course p{
	font-size: 13px;
	color: #545454;
}

.parttime table tbody {
  background: #ffdcce none repeat scroll 0% 0%;
}

.parttime table tr:nth-of-type(2n) {
  background: #f7ede9 none repeat scroll 0% 0%;
}

.officework table tbody {
  background: #fde8ab none repeat scroll 0% 0%;
}

.officework table tr:nth-of-type(2n) {
  background: #f7f1e0 none repeat scroll 0% 0%;
}


/*sidebar*/
.sidebar_curriculum ul{
	border: solid 1px #cccccc;
	background-color: #fafafa;
	padding: 5px;
}

.sidebar_curriculum li{
  padding: 5px 0 5px 20px;
  position: relative;
}

.sidebar_curriculum li a{
	position: relative;
	color: #545454;
	font-size: 1rem;
	text-decoration: none;
	padding-left: 1em;
}

.sidebar_curriculum li a:hover{
	color: #80B97B;
	text-decoration: underline;
}

.sidebar_curriculum li:nth-child(1)::before {
  position: absolute;
  top: 12px;
  left: 7px;
  content: "";
  width: 6px;
  height: 6px;
  background: transparent url("../img/narimasu/nari_arrow.png") no-repeat scroll 0% 0%;
}

.sidebar_curriculum li a::before {
  position: absolute;
  top: 7px;
  left: 2px;
  content: "";
  width: 6px;
  height: 6px;
  background: transparent url("../img/narimasu/nari_arrow.png") no-repeat scroll 0% 0%;
}

@media screen and (max-width: 640px) {
  .content-wrap aside {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 80px;
  }
}