@charset "UTF-8";

/* --------------------
school detail
-------------------- */

/* --------------------
section common
-------------------- */
.sec-border-bottom .container:after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(0,0,0,.12);
  margin: 25px 0 0;
}

/* --------------------
detail-header-section
-------------------- */
.detail-header-section {
  padding-top: 20px;
  background: #f5f5f5;
  padding-bottom: 0px;
}
.detail-header-section .school-name-wrap .school-name-ruby {
  font-size: .9rem;
  color: #4f4f4f;
  margin-bottom: 8px;
}
.detail-header-section .school-name-wrap .school-name {
  font-size: 1.6rem;
  font-weight: 700;
}
.detail-header-section .category-wrap {
  border-bottom: 3px solid #fff;
}
.detail-header-section .category-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.detail-header-section .category-list .category-item {
  width: 24%;
  border: 1px solid #aaa;
  padding: 12px;
  text-align: center;
  color: #aaa;
}
.detail-header-section .category-list .category-item.category-steam {
  background: #ecc402;
  border-color: #ecc402;
  color: #fff;
  font-weight: 700;
}
.detail-header-section .category-list .category-item.category-esports {
  background: #7b2dd1;
  border-color: #7b2dd1;
  color: #fff;
  font-weight: 700;
}
.detail-header-section .category-list .category-item.category-programming {
  background: #1676ee;
  border-color: #1676ee;
  color: #fff;
  font-weight: 700;
}
.detail-header-section .category-list .category-item.category-english {
  background: #F44336;
  border-color: #F44336;
  color: #fff;
  font-weight: 700;
}

/* --------------------
school-data-section
-------------------- */
.school-data-section {
  padding-top: 30px;
  background: #f5f5f5;
  margin-bottom: 20px;
}
.school-data-section .school-data-wrap {
  display: flex;
  justify-content: space-between;
}
.school-data-section .school-image-area {
  width: 65%;
  display: flex;
  justify-content: space-between;
}
.school-data-section .school-image-area .school-image-list {
  width: 14%;
  list-style: none;
}
.school-data-section .school-image-area .school-image-item {
  margin-bottom: 5px;
}
.school-data-section .school-image-area .school-image-main {
  width: 85%;
  background: #fff;
}
.school-data-section .school-image-area .school-image-main .school-image {
  height: 415px;
  object-fit: contain;
}
.school-data-section .school-image-area .school-image {
  width: 100%;
}
.school-data-section .school-detail-area {
  width: 35%;
  padding: 0 30px;
}
.school-data-section .school-detail-area ul {
  list-style: none;
  margin-bottom: 20px;
}
.school-data-section .school-detail-area ul li {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: .85rem;
  color: #2acbb5;
  border: 1px solid #2acbb5;
}
.school-data-section .school-detail-area .school-tag-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* --------------------
pr-section
-------------------- */
.pr-section .pr-wrap {
  line-height: 1.2;
}

/* --------------------
room-list-section
-------------------- */
.room-list-section .room-data-wrap {
  border: 1px solid #aaa;
  border-radius: 6px;
  margin-bottom: 16px;
}
.room-list-section .room-data-wrap .room-name-ruby {
  display: inline-block;
  font-size: .7rem;
  margin-bottom: 6px;
}
.room-list-section .room-data-wrap dl {
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  color: #333;
}
.room-list-section .room-data-wrap dl:hover {
  box-shadow: 0px 0px 1px 1px rgba(15,185,106,0.5);
  -o-transition:all .3s;
  -webkit-transition: all .2s;
  -moz-transition: all .3s;
  transition: all .3s;
  border: none;
  color: #0fb96a;
}
.room-list-section .room-data-wrap dt {
  width: 25%;
  background: #f5f5f5;
  padding: 20px 6px 20px 25px;
}
.room-list-section .room-data-wrap dd {
  width: 73%;
  padding: 20px 53px 20px 25px;
  font-size: .9rem;
  position: relative;
}
.room-list-section .room-data-wrap dd:after {
 position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #4534d4;
  border-right: 1px solid #4534d4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 8px;
}
.room-list-section .room-data-wrap .room-address {
  margin-bottom: 8px;
}

/* --------------------
base-data-section
-------------------- */
.base-data-section .base-data-wrap tr {
  border-bottom: solid 2px white;
}
.base-data-section .base-data-wrap tr:last-child {
  border-bottom: solid 2px white;
}
.base-data-section .base-data-wrap th {
  width: 190px;
  position: relative;
  background-color: #2acbb5;
  color: #fff;
  padding: 17px 0;
}
.base-data-section .base-data-wrap th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #2acbb5;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.base-data-section .base-data-wrap td {
  line-height: 1.3;
  background-color: #f0f0f0;
  padding: 17px 20px 17px 40px;
}