/* ===============================================================================
Header
=============================================================================== */
.headerArea {
  position: fixed;
  right: -181px;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  width: 239px;
  top: 0;
  bottom: 0;
  z-index: 999;
}
.headerArea::before, .headerArea::after {
  position: absolute;
  content: "";
  display: block;
}
.headerArea::before {
  top: 0;
  left: 58px;
  bottom: 0;
  width: 2px;
  background: #717071;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
}
.headerArea::after {
  top: 0;
  bottom: 0;
  left: 60px;
  width: 179px;
  background: #fff;
}
.headerArea.is-active {
  right: 0;
}
.headerArea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.headerArea .blks-1 {
  width: 58px;
  position: relative;
  z-index: 1;
}
.headerArea .blks-1 .logo {
  background: #717071;
  margin-bottom: 8px;
}
.headerArea .blks-1 .logo a {
  display: block;
  padding: 3px 5px 10px 6px;
}
.headerArea .blks-1 .logo a:hover {
  opacity: 0.8;
}
.headerArea .blks-1 .logo img {
  width: 100%;
}
.headerArea .blks-1 .menuBtn {
  width: 45px;
  height: 38px;
  position: relative;
  margin-bottom: 25px;
}
.headerArea .blks-1 .menuBtn img {
  display: block;
  width: 100%;
}
.headerArea .blks-1 .menuBtn__open {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.headerArea .blks-1 .menuBtn__close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.headerArea .blks-1 .linkList {
  width: 32px;
  margin-left: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 18px 14px 18px 12px;
  box-sizing: content-box;
}
.headerArea .blks-1 .linkList__item:not(:last-child) {
  margin-bottom: 21px;
}
.headerArea .blks-1 .linkList__item img._youtube {
  width: 32px;
}
.headerArea .blks-1 .linkList__item img._twitter {
  width: 28px;
}
.headerArea .blks-1 .linkList__item img._facebook {
  width: 28px;
}
.headerArea .blks-1 .linkList__item img._instagram {
  width: 28px;
}
.headerArea .blks-2 {
  width: 181px;
  box-sizing: border-box;
  border-left: 2px #717071 solid;
  padding: 28px 0;
  background: #fff;
  overflow: auto;
}
.headerArea .blks-2 .spTtl {
  display: none;
}
.headerArea .blks-2 .closeBtn {
  display: none;
}
.headerArea .blks-2 .logo {
  width: 96px;
  margin: 0 0 8px 42px;
}
.headerArea .blks-2 .logo img {
  width: 100%;
}
.headerArea .blks-2 .linkList {
  padding: 0 15px;
}
.headerArea .blks-2 .linkList._type-2 {
  min-height: 396px;
}
.headerArea .blks-2 .linkList__item:not(:last-child) {
  margin-bottom: 3px;
}
.headerArea .blks-2 .linkList__item__txt {
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.headerArea .blks-2 .linkList__item__txt:hover {
  opacity: 0.8;
}
.headerArea .blks-2 .linkList__item__dtl {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.headerArea .blks-2 .linkList + .linkList {
  margin-top: 10px;
  padding-top: 11px;
  border-top: solid 2px #717071;
}
.headerArea .blks-2 .linkList-2 {
  margin-left: 10px;
}
.headerArea .blks-2 .linkList-2__item {
  font-size: 0.625rem;
  font-weight: 700;
  padding-left: 8px;
  position: relative;
}
.headerArea .blks-2 .linkList-2__item::before {
  position: absolute;
  content: "";
  display: block;
  top: 5px;
  left: 0;
  margin: auto 0;
  width: 5px;
  height: 6px;
  background: url("../img/cmn/cmn_arr01.svg") no-repeat 0 0/100% 100%;
}
@media screen and (max-width: 768px) {
  .headerArea {
    right: -168px;
    width: 205px;
  }
  .headerArea::before {
    content: none;
  }
  .headerArea::after {
    left: 37px;
    width: 168px;
    background: #717071;
  }
  .headerArea .blks-1 {
    width: 37px;
  }
  .headerArea .blks-1 .logo {
    margin-bottom: 5px;
  }
  .headerArea .blks-1 .logo a {
    padding: 2px 4px 8px 4px;
  }
  .headerArea .blks-1 .menuBtn {
    width: 28px;
    height: 25px;
    margin-bottom: 12px;
  }
  .headerArea .blks-1 .menuBtn.is-active {
    width: 25px;
  }
  .headerArea .blks-1 .menuBtn.is-active .menuBtn__open {
    opacity: 0;
  }
  .headerArea .blks-1 .menuBtn.is-active .menuBtn__close {
    opacity: 1;
  }
  .headerArea .blks-1 .linkList {
    width: 22px;
    padding: 15px 8px 15px 6px;
    margin-left: 1px;
  }
  .headerArea .blks-1 .linkList__item img._youtube {
    width: 22px;
  }
  .headerArea .blks-1 .linkList__item img._twitter {
    width: 20px;
  }
  .headerArea .blks-1 .linkList__item img._facebook {
    width: 20px;
  }
  .headerArea .blks-1 .linkList__item img._instagram {
    width: 20px;
  }
  .headerArea .blks-2 {
    width: 168px;
    background: #717071;
    border-left: none;
    padding: 48px 0 20px;
  }
  .headerArea .blks-2 .spTtl {
    display: block;
    font-size: 1.465rem;
    padding: 13px 22px;
    border-bottom: solid 3px #3e3a39;
  }
  .headerArea .blks-2 .closeBtn {
    display: block;
    position: absolute;
    width: 25px;
    top: 7px;
    right: 7px;
  }
  .headerArea .blks-2 .logo {
    display: none;
  }
  .headerArea .blks-2 .linkList {
    padding: 0 12px;
  }
  .headerArea .blks-2 .linkList._type-2 {
    min-height: 370px;
  }
  .headerArea .blks-2 .linkList__item:not(:last-child) {
    margin-bottom: 13px;
  }
  .headerArea .blks-2 .linkList__item__txt {
    font-size: 0.9766rem;
    line-height: 1.39;
    letter-spacing: -0.08em;
    color: #fff;
    font-weight: 400;
  }
  .headerArea .blks-2 .linkList__item__dtl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .headerArea .blks-2 .linkList__item__dtl.is-active {
    opacity: 1;
    pointer-events: auto;
    height: 100%;
    max-height: none !important;
  }
  .headerArea .blks-2 .linkList + .linkList {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #fff;
  }
  .headerArea .blks-2 .linkList-2 {
    margin-left: 0;
    padding-bottom: 2px;
    border-bottom: solid 1px #3e3a39;
  }
  .headerArea .blks-2 .linkList-2__item {
    font-size: 1.0584rem;
    font-weight: 400;
    padding-left: 0;
  }
  .headerArea .blks-2 .linkList-2__item:not(:last-child) {
    border-bottom: solid 1px #717071;
  }
  .headerArea .blks-2 .linkList-2__item:last-child {
    border-bottom: solid 1px #3e3a39;
  }
  .headerArea .blks-2 .linkList-2__item::before {
    content: none;
  }
  .headerArea .blks-2 .linkList-2__item a {
    display: block;
    padding: 10px 35px;
  }
  .headerArea .blks-2 .linkList-2__item a span {
    display: inline-block;
    border: solid 1px #717071;
    padding: 2px 10px;
    margin: -3px 0;
  }
}

/* ===============================================================================
Footer
=============================================================================== */
/* ===============================================================================
Contents
=============================================================================== */
.contentsArea {
  margin-bottom: 105px;
}
.contentsArea__inner {
  max-width: 1115px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contentsArea__side {
  width: 210px;
  margin-top: 33px;
}
.contentsArea__main {
  max-width: 770px;
  width: 100%;
  padding-left: 20px;
  margin-top: 68px;
}
.contentsArea .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("../img/cmn/cmn_loading01.png") no-repeat center center/155px auto;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  pointer-events: none;
  z-index: 999;
}
.contentsArea .loading.is-hide {
  opacity: 0;
}
@media screen and (max-width: 1050px) {
  .contentsArea__inner {
    display: block;
  }
  .contentsArea__main {
    width: auto;
  }
  .contentsArea__side {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .contentsArea {
    margin: 30px 37px 60px 0;
  }
  .contentsArea__main {
    margin-top: 0;
    padding: 0 16px;
  }
  .contentsArea__side {
    display: none;
  }
}

/* side-section
========================= */
/* side-sec-1 */
.side-sec-1 .blks-1 {
  margin-bottom: 104px;
}
.side-sec-1 .blks-1 .cat {
  font-size: 1.3569rem;
  letter-spacing: 0.02em;
  border-bottom: solid 3px #717071;
  text-align: right;
  padding-bottom: 3px;
  margin-bottom: 10px;
  font-weight: 700;
}
.side-sec-1 .blks-1 .ttl {
  font-size: 0.7163rem;
  font-weight: 700;
  text-align: right;
}
.side-sec-1 .blks-1 .collegeLogo {
  width: 132px;
  margin: 36px 0 0 55px;
}
.side-sec-1 .blks-1._college {
  margin-bottom: 32px;
}
.side-sec-1 .blks-2 {
  text-align: right;
  padding-left: 20px;
}
.side-sec-1 .blks-2__inner {
  display: inline-block;
}
.side-sec-1 .blks-2 .linkList {
  margin-right: 12px;
}
.side-sec-1 .blks-2 .linkList__item {
  font-size: 0.7463rem;
  font-weight: 500;
  text-align: left;
}
.side-sec-1 .blks-2 .linkList__item a {
  display: inline-block;
}
.side-sec-1 .blks-2 .linkList__item:not(:last-child) {
  margin-bottom: 25px;
}
.side-sec-1 .blks-2 .linkList__item._current a {
  position: relative;
}
.side-sec-1 .blks-2 .linkList__item._current a::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 1px;
  background: #717071;
}
.side-sec-1 .blks-2 .linkList-2 {
  margin-right: 12px;
  margin-top: 48px;
}
.side-sec-1 .blks-2 .linkList-2__item {
  font-size: 0.7469rem;
  line-height: 1.82;
  text-align: left;
}
.side-sec-1 .blks-2 .linkList-3 {
  margin-right: 12px;
  margin-top: 65px;
}
.side-sec-1 .blks-2 .linkList-3__item {
  font-size: 0.7469rem;
  line-height: 1.82;
  font-weight: 500;
  text-align: left;
}
.side-sec-1 .blks-2 .linkList-3__item a {
  display: inline-block;
  border: solid 1px #717071;
  padding: 0 9px;
}
@media screen and (max-width: 1050px) {
  .side-sec-1 .blks-1 {
    margin-bottom: 32px;
  }
  .side-sec-1 .blks-1 .cat {
    padding-left: 20px;
    font-weight: 700;
    text-align: left;
  }
  .side-sec-1 .blks-1 .ttl {
    font-size: 0.7163rem;
    font-weight: 700;
    text-align: left;
    padding-left: 20px;
  }
  .side-sec-1 .blks-2 {
    text-align: left;
  }
  .side-sec-1 .blks-2 .linkList {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -10px;
  }
  .side-sec-1 .blks-2 .linkList__item {
    margin: 10px;
  }
  .side-sec-1 .blks-2 .linkList:not(:last-child) {
    margin-bottom: 10px;
  }
  .side-sec-1 .blks-2 .linkList-2 {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -10px;
  }
  .side-sec-1 .blks-2 .linkList-2__item {
    margin: 10px;
  }
  .side-sec-1 .blks-2 .linkList-2:not(:last-child) {
    margin-bottom: 10px;
  }
}