@charset "UTF-8";
.sb-slidebar {
  height: 100%;
  overflow-y: auto;
  /* Enable vertical scrolling on Slidebars when needed. */
  position: fixed;
  top: 0;
  z-index: 0;
  /* Slidebars sit behind sb-site. */
  display: none;
  /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
  background-color: #222222;
  /* Default Slidebars background colour, overwrite this with your own css. */
}

@media screen and (max-width: 768px) {
  #page {
    width: 1010px;
  }
  .bx-wrapper img {
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  /* -----------------------------------
 * Slidebars
 * Version 0.10.3
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */
  html, body, #sb-site, .sb-site-container, .sb-slidebar {
    /* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    width: 100%;
    overflow-x: hidden;
    /* Stops horizontal scrolling. */
  }
  html {
    height: 100%;
    /* Site is as tall as device. */
  }
  body {
    min-height: 100%;
    height: auto;
    position: relative;
    /* Required for static Slidebars to function properly. */
  }
  /* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
  html.sb-scroll-lock.sb-active:not(.sb-static) {
    overflow: hidden;
  }
  /* ----------
 * 002 - Site
 */
  #sb-site, .sb-site-container {
    /* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    /* Site sits above Slidebars */
    background-color: #ffffff;
    /* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */
  }
  /* Micro clearfix by Nicolas Gallagher, ensures the site container hits the top and bottom of the screen. */
  #sb-site:before, #sb-site:after, .sb-site-container:before, .sb-site-container:after {
    content: ' ';
    display: table;
  }
  #sb-site:before, #sb-site:after, .sb-site-container:before, .sb-site-container:after {
    clear: both;
  }
  /* ---------------
 * 003 - Slidebars
 */
  .sb-slidebar {
    height: 100%;
    overflow-y: auto;
    /* Enable vertical scrolling on Slidebars when needed. */
    position: fixed;
    top: 0;
    z-index: 0;
    /* Slidebars sit behind sb-site. */
    display: none;
    /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
    background-color: #222222;
    /* Default Slidebars background colour, overwrite this with your own css. */
  }
  .sb-slidebar, .sb-slidebar * {
    -webkit-transform: translateZ(0px);
    /* Fixes issues with translated and z-indexed elements on iOS 7. */
  }
  .sb-left {
    left: 0;
    /* Set Slidebar to the left. */
  }
  .sb-right {
    right: 0;
    /* Set Slidebar to the right. */
  }
  html.sb-static .sb-slidebar,
  .sb-slidebar.sb-static {
    position: absolute;
    /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
  }
  .sb-slidebar.sb-active {
    display: block;
    /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
  }
  .sb-style-overlay {
    z-index: 9999;
    /* Set z-index high to ensure it overlays any other site elements. */
  }
  .sb-momentum-scrolling {
    -webkit-overflow-scrolling: touch;
    /* Adds native momentum scrolling for iOS & Android devices. */
  }
  /* Slidebar widths for browsers/devices that don't support media queries. */
  .sb-slidebar {
    width: 30%;
  }
  .sb-width-thin {
    width: 15%;
  }
  .sb-width-wide {
    width: 45%;
  }
}

@media (max-width: 480px) {
  /* Slidebar widths on extra small screens. */
  .sb-slidebar {
    width: 70%;
  }
  .sb-width-thin {
    width: 55%;
  }
  .sb-width-wide {
    width: 85%;
  }
}

@media (min-width: 481px) {
  .sb-slidebar {
    width: 55%;
  }
  .sb-width-thin {
    width: 40%;
  }
  .sb-width-wide {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .sb-slidebar {
    width: 40%;
  }
  .sb-width-thin {
    width: 25%;
  }
  .sb-width-wide {
    width: 55%;
  }
}

@media (min-width: 992px) {
  .sb-slidebar {
    width: 30%;
  }
  .sb-width-thin {
    width: 15%;
  }
  .sb-width-wide {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .sb-slidebar {
    width: 20%;
  }
  .sb-width-thin {
    width: 5%;
  }
  .sb-width-wide {
    width: 35%;
  }
}

/* ---------------
 * 004 - Animation
 */
@media screen and (max-width: 640px) {
  .sb-slide, #sb-site, .sb-site-container, .sb-slidebar {
    transform: translate(0px);
    transition: transform 400ms ease;
    -webkit-transition-property: -webkit-transform, left, right;
    /* Add left/right for Android < 4.4. */
    -webkit-backface-visibility: hidden;
    /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
  }
  /* --------------------
 * 005 - Helper Classes
 */
  .sb-hide {
    display: none;
    /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
  }
  .sb-slidebar {
    background-color: #000;
    padding: 0 0 0 10px;
    overflow-x: hidden;
  }
  #side-name {
    color: #fff;
    font-size: 12px;
    height: 20px;
    padding: 20px 0 12px 3%;
    width: 97%;
    display: table;
  }
  #side-name span {
    vertical-align: top;
    display: table-cell;
  }
  #side-name #side-close {
    vertical-align: middle;
    float: right;
    margin-right: 10px;
    cursor: pointer;
  }
  #side-close img {
    width: 28px;
  }
  #side-all {
    background-color: #fff;
  }
  #side-all li {
    border-top: 1px solid #e9e9e9;
    *display: inline-block;
    zoom: 1;
  }
  #side-all li:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    line-height: 0;
  }
  #side-all a {
    display: block;
    clear: left;
    float: left;
    padding: 14px 0px 14px 10px;
    font-size: 117%;
    text-decoration: none;
    width: auto;
    max-width: 72%;
    color: #333;
  }
  #side-all a:visited {
    color: #333;
  }
  #side-all .afterarrow {
    display: block;
    text-align: center;
    float: right;
    vertical-align: middle;
    cursor: pointer;
    font-size: 12px;
    width: 12px;
    height: 12px;
    padding: 16px 0;
    margin-right: 16px;
    line-height: 1;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  #side-all .afterarrow:before {
    content: "\e901";
    color: rgba(0, 0, 0, 0.2);
    text-shadow: 1px 0px 1px #fff, 1px 0px 0px #000;
  }
  #side-all .slideicon {
    display: block;
    text-align: center;
    float: right;
    vertical-align: middle;
    cursor: pointer;
    font-size: 12px;
    width: 12px;
    height: 12px;
    padding: 16px 0 13px 0;
    margin-right: 16px;
    line-height: 1;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  #side-all .slideicon:before {
    content: "\e908";
    color: #737373;
    padding: 3px;
    background-color: #efefef;
  }
  #side-all .slideicon.down:before {
    content: "\e907";
    color: #efefef;
    background-color: #737373;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  #side-all .general {
    border-left: 4px solid #90dae6;
  }
  #side-all .general li {
    background-color: #f0fafc;
  }
  #side-all .general ul {
    border-left: none;
  }
  #side-all .course {
    border-left: 4px solid #add25d;
  }
  #side-all .course li {
    background-color: #f4f9e9;
  }
  #side-all .course ul {
    border-left: none;
  }
  #side-all .junior {
    border-left: 4px solid #fabdd1;
  }
  #side-all .junior li {
    background-color: #fef6f9;
  }
  #side-all .junior ul {
    border-left: none;
  }
  #side-all .research {
    border-left: 4px solid #c6b0e8;
  }
  #side-all .research li {
    background-color: #f9f7fd;
  }
  #side-all .research ul {
    border-left: none;
  }
  #side-all .life {
    border-left: 4px solid #9fd9b6;
  }
  #side-all .life li {
    background-color: #eff9f3;
  }
  #side-all .life ul {
    border-left: none;
  }
  #side-all .exam {
    border-left: 4px solid #b6d5f3;
  }
  #side-all .exam li {
    background-color: #f8fbfe;
  }
  #side-all .exam ul {
    border-left: none;
  }
  #side-all .career {
    border-left: 4px solid #ddddbb;
  }
  #side-all .career li {
    background-color: #fcfcf8;
  }
  #side-all .career ul {
    border-left: none;
  }
  #side-all .etc {
    border-left: 4px solid #fed663;
  }
  #side-all .etc li {
    background-color: #fffaec;
  }
  #side-all .etc ul {
    border-left: none;
  }
  #side-all li {
    position: relative;
    z-index: 80;
  }
  #side-all li ul ul ul {
    padding: 0 0 5px 5px;
  }
  #side-all li li {
    position: relative;
    z-index: 100;
  }
  #side-all li li li {
    background-color: #fbfbfb !important;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
    margin: 6px;
  }
  #side-all li li li li {
    font-size: 90%;
    padding: 2px;
    display: inline-block;
    float: none;
    border-radius: 0;
    border: none;
    margin: 0;
  }
  #side-all li li li li a {
    background-color: #fff;
    display: inline-block;
    max-width: none;
    clear: none;
    float: none;
    padding: 0.5em;
    box-shadow: 0 0 1px #ccc;
    border-radius: 6px;
  }
  #side-all li li li li:last-child {
    border-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #side-all li li li li li:last-child {
    border-radius: 0;
  }
  #side-all li li li li .afterarrow {
    display: none;
  }
  #side-all .menu-slide {
    overflow: hidden;
    clear: both;
    position: relative;
    z-index: 90;
    display: none;
  }
  #side-all .externalLink + .externalIcon {
    display: block;
    float: right;
    cursor: pointer;
    font-size: 12px;
    width: 12px;
    height: 12px;
    margin: 16px 20px 16px 16px;
    line-height: 1;
    padding-right: 0;
  }
  #side-sns {
    margin-top: 10px;
  }
  #side-sns a {
    display: inline-block;
    margin-right: 7px;
    margin-left: -3px;
  }
  #side-sns img {
    height: 32px;
  }
  #side-search {
    margin-top: 7px;
    padding-bottom: 50px;
    float: left;
    width: 100%;
  }
  #side-search .searchTextBox {
    width: 72%;
    display: table-cell;
  }
  #side-search #search-bt {
    display: inline;
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  #page {
    width: auto;
    overflow: hidden;
  }
  #dot {
    height: auto;
  }
  .dot {
    top: 160px;
    height: 125px;
  }
  #topContents {
    height: auto;
    width: 100%;
  }
  .bxslider img {
    width: 100%;
  }
  .bx-wrapper img {
    max-width: 100%;
  }
  .table-scroll {
    overflow-x: scroll;
    clear: both;
    -ms-overflow-style: none;
  }
  .table-scroll::-webkit-scrollbar {
    display: none;
  }
  #contentsWrap {
    width: 100%;
    margin-top: 160px;
  }
  .home #contentsWrap {
    margin-top: 60px;
  }
  #bx-pager {
    top: -70px;
  }
  #wrapHeader {
    height: 180px;
    z-index: 390;
  }
  #globalHeader {
    width: auto;
  }
  #globalHeader #logo {
    left: 8px;
    top: 9px;
  }
  #globalHeader #logo a {
    display: block;
    width: 229px;
    height: 60px;
    background: url(/img/common/logo_sp.png) no-repeat;
    background-size: cover;
    transform: translate3d(0, 0, 2px);
    -webkit-transform: translate3d(0, 0, 2px);
    cursor: pointer;
    pointer-events: none;
  }
  #globalHeader #logo img {
    display: none;
  }
  #globalHeader #site_search_header {
    position: static;
    height: 48px;
    background: rgba(14, 53, 113, 0.8);
  }
  #globalHeader #site_search_header .search-box {
    width: 170px;
    height: 16px;
    font-size: 100%;
  }
  #globalHeader #site_search_header #searchBox {
    width: auto;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  #globalHeader #site_search_header .searchTextBox {
    width: 72%;
    position: relative;
    top: 9px;
    left: 15px;
  }
  #globalHeader #site_search_header input#search-bt {
    top: 12px;
    right: 15px;
  }
  #globalHeader #search_header_wrap {
    left: 0;
    top: 157px;
    position: relative;
    z-index: 400;
    display: none;
  }
  #globalHeader #topspNav {
    position: relative;
    top: 81px;
    display: block;
  }
  #globalHeader ul {
    position: static;
    width: inherit;
    display: table;
    width: 100%;
    top: 6px;
    line-height: 1;
  }
  #globalHeader ul li {
    display: table-cell;
    float: none;
    width: 16.6%;
    text-align: center;
    height: auto;
    list-style-type: none;
    padding-left: 0px;
    background: none;
    vertical-align: bottom;
  }
  #globalHeader ul li a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0;
  }
  #globalHeader ul li a span {
    display: block;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: -1px;
    padding-top: 6px;
    text-align: center;
  }
  #globalHeader ul li + li + li + li {
    display: table-cell;
  }
  #globalHeader ul [class^="icon-"]:before {
    font-size: 20px;
    text-align: center;
    position: relative;
  }
  #globalHeader ul .icon-link {
    padding-top: 0;
  }
  #globalHeader ul .icon-link:before {
    font-size: 20px;
  }
  #globalHeader ul .icon-link + ul {
    display: none;
  }
  #globalHeader ul .icon-sns {
    padding: 0 6px;
  }
  #globalHeader ul .icon-sns:before {
    font-size: 20px;
  }
  #globalHeader ul .icon-sns span {
    letter-spacing: 1px;
  }
  #globalHeader ul .icon-access:before {
    font-size: 19px;
  }
  #globalHeader ul .icon-inquiry {
    padding: 0 2px;
  }
  #globalHeader ul .icon-inquiry:before {
    font-size: 20px;
    top: 0px;
  }
  #globalHeader ul .icon-request {
    padding: 0 2px;
  }
  #globalHeader ul .icon-request:before {
    font-size: 22px;
    top: 1px;
  }
  #globalHeader ul .icon-search {
    padding: 0 7px;
  }
  #globalHeader ul .icon-search:before {
    font-size: 18px;
    top: -1px;
    left: -3px;
  }
  #globalHeader ul .icon-search span {
    letter-spacing: 0.5em;
  }
  #globalHeader ul#sp-relLink {
    display: none;
    background: rgba(14, 53, 113, 0.8);
    position: relative;
    top: 77px;
    left: 0;
  }
  #globalHeader ul#sp-relLink li {
    display: block;
    float: left;
    border-bottom: 1px solid #8899bb;
    font-size: 100%;
    position: relative;
    width: 49.75%;
    text-align: left;
  }
  #globalHeader ul#sp-relLink li a {
    background: url("/img/common/icon_arrow6_sp.png") no-repeat;
    background-size: 15px 15px;
    background-position: 6px 8px;
    display: block;
    padding: 8px 0 8px 16px;
    text-indent: 10px;
  }
  #globalNav {
    display: none;
  }
  #spNav {
    width: inherit;
    width: inherit;
    overflow: hidden;
  }
  #spNav #sp_gNavButton {
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 13px;
    top: 21px;
    z-index: 520;
    cursor: pointer;
    padding: 0px 0 5px 5px;
  }
  #spNav #sp_gNavButton #sp-menu {
    display: block;
    width: inherit;
    height: inherit;
  }
  #spNav #sp_gNavButton #sp-menu img {
    width: 41px;
  }
  #spNav #sp_gNavButton #bar1, #spNav #sp_gNavButton #bar2, #spNav #sp_gNavButton #bar3 {
    display: block;
    width: 41px;
    height: 4px;
    background-color: #3399cc;
    position: absolute;
    left: 5px;
  }
  #spNav #sp_gNavButton #bar2 {
    top: 9px;
  }
  #spNav #sp_gNavButton #bar3 {
    top: 18px;
  }
  #spNav #sp_gNavButton #menu-name {
    font-family: Helvetica;
    font-weight: lighter;
    font-size: 11px;
    color: #fff;
    position: absolute;
    top: 28px;
    left: 5px;
    letter-spacing: -0.7px;
  }
  #spNav ul {
    width: inherit;
    height: 170px;
    overflow: hidden;
    z-index: 420;
    position: absolute;
    top: 160px;
  }
  #spNav ul:before {
    content: "";
    overflow: hidden;
    background-color: #0e3571;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 410;
  }
  #spNav li {
    position: relative;
    z-index: 430;
    float: left;
    width: 49.75%;
    border-bottom: 1px solid #8899BB;
    font-size: 117%;
  }
  #spNav li a {
    color: #fff;
    text-indent: 10px;
    padding: 8px 0 8px 16px;
    display: block;
    background: url(/img/common/icon_arrow6.png) no-repeat 6px 8px;
  }
  #spNav li img {
    width: 130px;
  }
  #spNav #sp_gNavButton #sp-menu.on #bar1 {
    animation: menuanime1 0.1s;
    -webkit-animation: menuanime1 0.1s;
  }
  #spNav #sp_gNavButton #sp-menu.on #bar2 {
    animation: menuanime2 0.1s;
    -webkit-animation: menuanime2 0.1s;
  }
  #spNav #sp_gNavButton #sp-menu.on #bar3 {
    animation: menuanime3 0.1s;
    -webkit-animation: menuanime3 0.1s;
  }
  #spNav #sp_gNavButton #sp-menu.on #bar1, #spNav #sp_gNavButton #sp-menu.on #bar2, #spNav #sp_gNavButton #sp-menu.on #bar3 {
    animateion-duration: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
  }
  #spNav #sp_gNavButton #sp-menu.off #bar1 {
    animation: r-menuanime1 0.1s;
    -webkit-animation: r-menuanime1 0.1s;
  }
  #spNav #sp_gNavButton #sp-menu.off #bar2 {
    animation: r-menuanime2 0.1s;
    -webkit-animation: r-menuanime2 0.1s;
    opacity: 0;
  }
  #spNav #sp_gNavButton #sp-menu.off #bar3 {
    animation: r-menuanime3 0.1s;
    -webkit-animation: r-menuanime3 0.1s;
  }
  #spNav #sp_gNavButton #sp-menu.off #bar1, #spNav #sp_gNavButton #sp-menu.off #bar2, #spNav #sp_gNavButton #sp-menu.off #bar3 {
    animateion-duration: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
  }
  @keyframes menuanime1 {
    0% {
      top: 0px;
      left: 5px;
      width: 41px;
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      top: 10px;
      left: 3px;
      width: 45.51px;
      transform: rotate(25deg);
      -webkit-transform: rotate(25deg);
    }
  }
  @keyframes menuanime2 {
    50%, 100% {
      opacity: 0;
    }
  }
  @keyframes menuanime3 {
    0% {
      top: 18px;
      left: 5px;
      width: 41px;
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      top: 10px;
      left: 3px;
      width: 45.1px;
      transform: rotate(-25deg);
      -webkit-transform: rotate(-25deg);
    }
  }
  @keyframes r-menuanime1 {
    0% {
      top: 10px;
      left: 3px;
      width: 45.51px;
      transform: rotate(25deg);
      -webkit-transform: rotate(25deg);
    }
    100% {
      top: 0px;
      left: 5px;
      width: 41px;
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
  }
  @keyframes r-menuanime2 {
    50%, 100% {
      opacity: 1;
    }
  }
  @keyframes r-menuanime3 {
    0% {
      top: 10px;
      left: 3px;
      width: 45.1px;
      transform: rotate(-25deg);
      -webkit-transform: rotate(-25deg);
    }
    100% {
      top: 18px;
      left: 5px;
      width: 41px;
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
  }
  #topNav {
    display: none;
  }
  .linklist a {
    width: 40px;
    height: 40px;
    background: url(/img/common/icon_list_mq.png) no-repeat;
    background-size: 26px;
  }
  .linklist img {
    display: none;
  }
  #relLink {
    display: none;
  }
  #newsBox {
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
  }
  #newsBox ul {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 10px;
  }
  #quickNav {
    width: auto;
    padding-top: 20px;
    margin-top: 20px;
  }
  #quickNav #univ,
  #quickNav #junior {
    display: table-cell;
    vertical-align: top;
    width: 245px;
    padding: 0 5px;
  }
  #quickNav #univ {
    width: 260px;
  }
  #quickNav .wrap {
    width: auto;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  #quickNav .wrap .thumbnail {
    width: auto;
    margin-bottom: 0;
  }
  #quickNav .wrap .thumbnail ul {
    width: auto;
  }
  #quickNav .wrap .thumbnail ul li {
    float: none;
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 0;
    line-height: 1.4;
    text-align: left;
  }
  #quickNav .wrap .thumbnail ul li:first-child {
    padding-left: 0;
    margin-left: 11px;
  }
  #quickNav .wrap .thumbnail ul li.quickTitle {
    width: 260px;
    height: 46px;
    display: table-cell;
    position: static;
    text-align: center;
    vertical-align: middle;
  }
  #quickNav .wrap .thumbnail ul li.quickTitle img {
    position: static;
  }
  #quickNav .wrap .thumbnail ul li:first-child {
    margin-left: 0;
    margin-bottom: 5px;
  }
  #quickNav .wrap .thumbnail ul li + li {
    height: auto;
  }
  #quickNav .wrap .thumbnail ul li > a {
    display: none;
  }
  #quickNav .wrap .thumbnail ul li > p > a {
    display: block;
  }
  #quickNav .wrap .thumbnail ul li > p > a br {
    display: none;
  }
  #quickNav .wrap #univ .quickTitle {
    border-radius: 5px;
  }
  #quickNav .wrap #junior .quickTitle {
    border-radius: 5px;
  }
  #side {
    margin-top: 30px;
    float: none;
    width: 100%;
  }
  #side #subNav h2 {
    width: 100%;
    display: block;
    height: 40px;
    padding: 55px 0;
  }
  #side #subNav ul li a {
    background-position: right center;
  }
  #sideNav {
    position: absolute;
    right: auto;
    left: 5px;
    top: 130px;
    z-index: 510;
    width: calc(100vw - 10px);
  }
  #sideNav ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  #sideNav li {
    margin-top: 0;
    margin-right: 1%;
    margin-bottom: 2px;
    flex: 1 1 auto;
  }
  #sideNav li img {
    display: none;
  }
  #sideNav li a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-width: 65px;
    height: 20px;
    background-size: auto 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffcc00;
    border-radius: 4px;
  }
  #sideNav li a[href="/for-students/"] {
    background-image: url(/img/common/sideNav1_sp.png);
  }
  #sideNav li a[href="/for-univ-students/"] {
    background-image: url(/img/common/sideNav2_sp.png);
  }
  #sideNav li a[href="/for-graduate/"] {
    background-image: url(/img/common/sideNav3_sp.png);
  }
  #sideNav li a[href="/for-company/"] {
    background-image: url(/img/common/sideNav4_sp.png);
  }
  #sideNav li.icon {
    display: none;
  }
  #sideNav li:nth-child(6) a {
    background-image: url(/img/common/sideNav6_sp.png);
    background-color: #22aacc;
  }
  #sideNav li:nth-child(5) {
    display: none;
  }
  #PageTopBt {
    position: fixed;
    bottom: 15px;
    right: 5px;
  }
  #PageTopBt .pageTop {
    position: static;
  }
  #PageTopBt .pageTop img {
    width: 30px;
  }
  #PageTopBt .pageTop a {
    display: block;
    width: 30px;
    height: 30px;
    background-size: cover !important;
  }
  #globalFoooter {
    display: none;
  }
  #footer-logo img {
    max-width: 370px;
    width: 100%;
  }
  #FooterBanner {
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
    float: none;
  }
  #FooterBanner p.copyright {
    text-align: center;
    padding-top: 10px;
    float: none;
  }
  #FooterBanner p.copyright small {
    font-size: 92%;
  }
  #FooterBanner address {
    clear: both;
    float: none;
    padding-top: 20px;
    display: block;
  }
  #FooterBanner address .address {
    display: block;
    margin: 5px 0;
    padding: 0;
  }
  #FooterBanner address .table {
    margin: 0 auto;
  }
  #FooterBanner address #footer-logo {
    text-align: center;
  }
  #contents {
    width: 96%;
    padding: 0;
    margin: 0 2%;
    top: -30px;
  }
  #main {
    width: auto;
    float: none;
    margin-left: auto;
  }
  #main.w720 {
    width: auto;
  }
  h1.pagetitle {
    margin-left: 0;
  }
  h1.pagetitle img[src="/img/course/letters/linguistics/manga/h1.png"],
  h1.pagetitle img[src="/img/course/letters/history/japan/h1.png"],
  h1.pagetitle img[src="/img/course/letters/history/environment/h1.png"],
  h1.pagetitle img[src="/img/junior/greeting/h1.png"],
  h1.pagetitle img[src="/img/research/student-activities/h1.png"],
  h1.pagetitle img[src="/img/research/student-activities/yume-project/h1.png"],
  h1.pagetitle img[src="/img/research/student-activities/education-childcare-workshop/h1.png"],
  h1.pagetitle img[src="/img/research/academic-research/funded-research/h1.png"],
  h1.pagetitle img[src="/img/research/academic-research/prevention-improper-conduct/h1.png"],
  h1.pagetitle img[src="/img/research/academic-research/branding/h1.png"],
  h1.pagetitle img[src="/img/research/academic-research/strategic-research-foundation/h1.png"],
  h1.pagetitle img[src="/img/general/pr/be-news/h1.png"] {
    width: 94%;
    height: auto;
  }
  .lv2 {
    height: auto;
  }
  #main .circle {
    clear: both;
    height: auto;
    background-position: left 1px;
  }
  hr {
    clear: both;
    margin-right: 0;
  }
  hr.dot {
    margin-right: 0;
  }
  .letter-space {
    display: inline;
    letter-spacing: 0;
    text-indent: 0;
  }
  .sp-clear {
    clear: both;
  }
  .spImg {
    width: 100%;
  }
  .spImg480 {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
  .middle .catchcopy br {
    display: none;
  }
  .catchcopy img,
  .middle .catchcopy img {
    height: auto;
    width: 100%;
  }
  .course .middle .catchcopy.tworow img {
    height: auto;
  }
  .pagetitle > .spImg480 {
    width: 90%;
    height: auto;
    padding-bottom: 4px;
  }
  .closetop {
    margin-top: 0;
  }
  table th {
    padding: 5px 0;
  }
  table td {
    padding: 5px 0;
  }
  table td .dotlist {
    margin-left: 5px;
  }
  .boxList {
    width: auto;
    overflow: visible;
    padding: 0;
    margin-left: 0;
  }
  .boxList .boxColumn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .boxList .boxColumn .boxShadow .lv2 {
    height: auto;
    margin-top: 5px;
  }
  .boxList .boxColumn .boxShadow .thumbBottom {
    width: 100%;
    height: auto;
    position: static;
  }
  .boxList .boxColumn .boxShadow .thumbBottom img {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
  }
  .boxList .boxColumn .boxShadow .courseHeight {
    display: block;
    width: auto;
    height: auto;
  }
  .boxList .boxColumn .boxbg {
    border-radius: 10px;
  }
  .boxList.faculty .boxShadow.facultyHeight {
    max-height: inherit;
    min-height: 0;
    padding-bottom: 50px;
  }
  .boxList.faculty .boxShadow.facultyHeight p {
    max-height: none;
    min-height: 0;
    padding-bottom: 10px;
  }
  .boxList.faculty .boxShadow.facultyMiddleHeight {
    max-height: inherit;
    min-height: 0;
    padding-bottom: 50px;
  }
  .boxList.faculty .boxShadow.facultyMiddleHeight p {
    max-height: none;
    min-height: 0;
    padding-bottom: 10px;
  }
  .boxListRight {
    width: 100%;
    padding-right: 5px;
  }
  .boxListRight .boxColumn {
    width: auto;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .boxListRight .boxColumn.boxShadow {
    overflow: hidden;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 2%;
  }
  .boxListRight .boxColumn.boxShadow .thumbRight {
    width: 30%;
    height: auto;
  }
  .boxListRight .boxColumn.boxShadow .thumbRight img {
    width: 100%;
  }
  .boxListRight .boxColumn .boxShadow .lv2 {
    height: auto;
  }
  .boxListRight .boxColumn .boxShadow .thumbRight {
    width: auto;
  }
  .boxListRight .boxColumn .boxShadow .thumbRight img {
    width: auto;
  }
  .boxList.matchHeight {
    width: auto;
    padding: 5px;
  }
  .boxList.matchHeight .boxColumn {
    position: static;
    width: auto;
    float: none;
    margin-right: 0;
  }
  .boxList.matchHeight p {
    padding-bottom: 15px;
  }
  ol.upperAlpha li li {
    padding-left: 0;
    text-indent: 0;
  }
  .arrowList li {
    display: block;
  }
  .arrowList li:first-child {
    margin-top: 15px;
  }
  .arrowList li.whalf, .arrowList li.wLeft, .arrowList li.wRight {
    width: auto;
  }
  .boxList.column3 p {
    max-height: none;
    min-height: 0;
    padding-bottom: 5px;
  }
  .boxShadow .blockList .threeColumn {
    width: auto;
  }
  .boxShadow .blockList .threeColumn li {
    width: auto;
  }
  .boxShadow .blockList .twoColumn {
    width: auto;
  }
  .boxShadow .blockList .twoColumn li {
    width: auto;
  }
  .boxShadow .blockList li:first-child {
    margin-top: 0;
  }
  .boxShadow .blockList h3 + ul li:first-child {
    margin-top: 10px;
  }
  .boxShadow .frameShadow {
    box-shadow: none;
  }
  .message {
    margin: 5px 0 5px 0;
    border-radius: 0;
  }
  .message .facePhoto {
    float: none;
  }
  .message .leadMessage img {
    padding-top: 5px;
  }
  .message .name {
    padding-top: 12px;
    overflow: hidden;
  }
  .message .slideButton {
    position: absolute;
    top: 41%;
    right: 0;
    padding-right: 25px;
  }
  .middle {
    position: relative;
    margin-right: 0;
    *display: inline-block;
    zoom: 1;
  }
  .middle:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    line-height: 0;
  }
  .middle .message .leadMessage {
    margin-top: 0;
    font-size: 134%;
    overflow: hidden;
  }
  .middle .message .facePhoto img {
    width: 60px;
  }
  .middle .message .slideButton {
    top: 40px;
    padding-right: 10px;
  }
  .middle .message.stVoice .stVoice {
    padding-top: 0;
  }
  .middle .message.stVoice .affiliation,
  .middle .message.stVoice .stGraduate {
    padding-right: 30px;
    overflow: hidden;
  }
  .middle .message.stVoice .stName {
    padding-top: 4px;
  }
  .middle .message.stVoice .stName {
    margin-right: 23px;
    overflow: hidden;
  }
  .childPage li {
    border-radius: 22px;
    text-indent: 0.5em;
    background-position: 10px center;
  }
  .childPage li a {
    text-decoration: none;
    font-size: 14px;
    height: 24px;
    padding: 12px 0 5px 0;
    color: #fff;
    display: block;
  }
  .childPage li a.fS {
    font-size: 14px;
    height: 24px;
    padding: 12px 0 5px 0;
    text-indent: 16px;
  }
  .childPage li a.fSS {
    font-size: 11px;
    height: 11px;
    padding: 5px 0 5px 0px;
    text-indent: 11px;
  }
  .childPage li a.pdf {
    background: none;
  }
  .childPage li:hover {
    background-color: #47b7e2;
    transition: background-color 400ms ease;
  }
  #speech + figure.imgR {
    float: none;
    margin-left: 0;
  }
  #speech + figure.imgR .frameShadow {
    width: 99%;
  }
  #backbg {
    top: 140px;
    height: 145px;
  }
  #backbg.general, #backbg.course, #backbg.exam {
    background-size: auto 100%;
    background-position: -130px center;
  }
  #backbg.course.graduate {
    background-position: -296px -72px;
  }
  #backbg.junior {
    background-position: -380px center;
  }
  #backbg.research {
    background-position: -616px -67px;
  }
  #backbg.life {
    background-position: -354px -28px;
  }
  #backbg.career {
    background-size: cover;
  }
  .frameShadow img {
    padding: 3%;
    width: 94%;
  }
  .research .frameShadow.community,
  .research .frameShadow.fd,
  .life .frameShadow.residence {
    width: auto;
  }
  .junior .frameShadow.imgR,
  .course .frameShadow.imgR {
    float: none;
    margin-left: 0;
  }
  .thumbnail {
    width: auto;
    overflow: visible;
  }
  .thumbnail ul {
    width: auto;
  }
  .thumbnail.two li {
    display: block;
    padding-left: 0;
  }
  .thumbnail.two li img {
    padding: 2%;
  }
  .thumbnail.three {
    display: block;
    width: 220px;
    margin: 0 auto;
  }
  .thumbnail.three li {
    display: block;
    padding-left: 0;
  }
  .thumbnail.three li img {
    padding: 2%;
  }
  .thumbnail_list.boxShadow .blockList {
    padding: 10px 0 10px 20px;
  }
  .thumbnail_list.boxShadow .blockList ul {
    width: auto;
    padding: 10px 0 10px 10px;
  }
  .thumbnail_list.boxShadow .blockList ul li {
    padding: 0 30px 20px 0;
  }
  #common-topics,
  .feed-topics {
    clear: both;
    width: 100%;
    margin-right: 0;
    padding-bottom: 10px;
  }
  #common-topics .linklist,
  .feed-topics .linklist {
    right: 0;
    bottom: 0;
    top: 0;
  }
  #common-topics .linklist a,
  .feed-topics .linklist a {
    background: url(/img/common/icon_list_rellink.png) no-repeat;
    background-size: 26px;
  }
  #common-topics header time,
  .feed-topics header time {
    min-width: 132px;
  }
  #common-topics header {
    display: block;
    width: auto;
  }
  #common-topics header time {
    display: block;
    width: auto;
    padding: 10px 0 0 0;
  }
  #common-topics header h3 {
    display: block;
    width: auto;
    padding: 5px 0 10px 0;
  }
  #common-topics h1 {
    padding-right: 40px;
  }
  .rss.feed-topics {
    position: relative;
  }
  .rss.feed-topics h1.circle {
    padding-right: 80px;
  }
  .rss.closetop {
    position: absolute;
    right: 47px;
    top: 0;
  }
  .rss.closetop.floR {
    float: none;
  }
  .rss.closetop span {
    display: none;
  }
  .rss.closetop p a img {
    top: 0;
    width: 26px;
  }
  .courseNav ul {
    width: 104%;
  }
  .courseNav ul li {
    margin-right: 2%;
    margin-bottom: 2%;
    width: 48%;
    height: 100%;
  }
  .courseNav ul img {
    width: 100%;
  }
  .level3 #common-topics {
    margin-right: 0px;
  }
  #spirit.imgR {
    margin-top: 0;
    margin-left: 0px;
    float: none;
    text-align: center;
  }
  #spirit.imgR .frameShadow {
    width: auto;
  }
  .middle .catchcopy img[src$="founder.png"] {
    width: 70%;
    text-align: right;
  }
  table.top {
    width: auto;
  }
  #flow ul {
    position: static;
    padding-top: 5px;
    margin-top: 5px;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #aaa;
    background-color: #fff;
  }
  #flow ul li {
    width: auto;
  }
  #flow ul li:first-child {
    margin-top: 5px;
  }
  #flow ul:before {
    margin-top: 10px;
    padding-left: 5px;
    color: #2288cc;
    font-size: 134%;
    font-weight: bold;
    height: 19px;
    content: "２・３年次の学科専門科目";
  }
  .history table.top {
    float: none;
    width: auto;
  }
  .topics_photo_position {
    clear: both;
    float: none;
    width: 100%;
  }
  .topics_photo_position .frameShadow {
    width: 100%;
  }
  #badge {
    display: none;
  }
  .check {
    top: -16px;
    left: -4px;
  }
  .check img {
    clip: rect(0, 61px, 35px, 0px);
    position: absolute;
  }
  .boxList.graduate section p {
    max-height: none;
    min-height: 40px;
  }
  .boxList.graduate section .boxShadow {
    max-height: none;
    min-height: 240px;
  }
  .middle #staffdata {
    width: auto;
  }
  .middle #staffdata ul {
    width: auto;
  }
  .middle #staffdata li {
    list-style-type: none;
    float: none;
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .middle #staffdata .childPage {
    width: 100%;
  }
  .middle #staffdata .childPage ul {
    width: inherit;
  }
  .middle #staffdata .childPage li {
    width: auto;
    margin: 10px 0 0 0;
    background-position: 5px center;
  }
  .middle #staffdata .childPage li a {
    height: 16px;
    line-height: 1.4;
    padding: 3px 0 4px 0;
  }
  .middle #staffdata .childPage li + li a {
    text-indent: 19px;
    letter-spacing: 0.4em;
  }
  #cooperationMap {
    padding-left: 0;
  }
  #cooperationMap img {
    width: 100%;
  }
  #calendar {
    padding: 15px 10px;
  }
  #calendar .floL + .floL .month:first-child {
    padding-top: 20px;
  }
  #calendar .cell + .cell {
    padding-right: 0;
  }
  .entry .circleEntry {
    overflow: visible;
  }
  .android .entry2.firstLarge:first-letter {
    padding-top: 11px;
  }
  #bxsliderExamWrap {
    width: 100%;
  }
  #bxsliderExamWrap .bxslider {
    width: auto;
  }
  .boxList.column3.hMiddle .mWidth,
  .boxList.column3.hMiddle .boxNormal {
    width: 100%;
  }
  .boxList.column3.hMiddle .mWidth .boxShadow,
  .boxList.column3.hMiddle .boxNormal .boxShadow {
    padding: 5%;
  }
  img[src="/img/career/program/p1.png"],
  img[src*="/program/flow/"] {
    width: 130px;
    padding: 4px;
  }
  .piechart {
    float: none;
    margin: 0 auto;
  }
  .piechart canvas {
    float: none;
    display: block;
    margin: 0 auto;
  }
  .graph-data {
    float: none;
    width: 205px;
    margin: 15px auto 0 auto;
  }
  .graph-data .data-name {
    width: 160px;
  }
  .graph-data + .graph-data {
    margin-top: 0;
  }
  .topicsList .lv2 {
    padding-right: 0px;
  }
  .topicsList .blockList {
    background: #fff url(/img/common/arrow.png) no-repeat center 98%;
  }
  .topicsList .blockList .tableUnit {
    display: block;
    padding-bottom: 40px;
  }
  .topicsList .blockList .cellBlock {
    display: block;
    padding-right: 0;
  }
  .topicsList .blockList .cellBlock img {
    width: 100%;
  }
  .topicsList .blockList .cellBlock p {
    padding-right: 0;
  }
  .topicsList .blockList .cellBlock + .cellBlock {
    margin-top: 10px;
  }
  .topicsList .blockList p {
    padding-right: 0;
  }
  .topics #entry_area .topics_photo,
  .event #entry_area .topics_photo,
  .etc #entry_area .topics_photo {
    width: 96%;
    padding: 2%;
  }
  .pageNation .next, .pageNation .prev, .pageNation .list {
    padding: 0 2px;
  }
  .pageNation .next a, .pageNation .prev a, .pageNation .list a {
    display: block;
    width: auto;
    height: auto;
    padding: 5px 2px;
    font-size: 92%;
  }
  .pageNation .next .list a, .pageNation .prev .list a, .pageNation .list .list a {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  #pageInnnerLink {
    width: auto;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
  }
  #pageInnnerLink #pageInnnerLinkNav {
    display: none;
    margin-bottom: 0;
    border-radius: 0;
  }
  #pageInnnerLink #pageInnnerLinkNav .cell {
    width: 48px;
    border-radius: 0;
  }
  .topics #entry_area img, .topics #entry_area img + img {
    display: block;
    margin: 0 auto;
  }
  .topics #entry_area img[src$="icon_linkout_main.png"] {
    display: inline;
  }
  .topics #entry_area img[width],
  .topics #entry_area img[style*="width:"] {
    width: 95% !important;
    height: auto !important;
  }
  .topics #entry_area .externalLink img {
    width: auto;
    display: inline;
  }
  .topics #entry_area .mt-image-left, .topics #entry_area .mt-image-right,
  .topics #entry_area .imgR, .topics #entry_area .imgL {
    display: block;
    float: none;
    margin: 0 !important;
  }
  .topics #entry_area .mt-image-left {
    float: none !important;
  }
  .topics #entry_area .mt-image-right {
    float: none !important;
  }
  .topics #entry_area a {
    word-wrap: break-word;
  }
  .boxHalfRadList ul {
    width: auto;
  }
  .boxHalfRadList ul li {
    float: none;
    height: 60px;
    width: inherit;
    margin: 10px 5px;
    background-position: 92% center;
  }
  table.competition .w13 {
    width: 5%;
  }
  table.competition .w15 {
    width: 18%;
  }
  table.competition th, table.competition td {
    padding: 5px 0px;
    font-size: 84%;
  }
  #cooperationMap {
    width: auto;
  }
  .boxShadow.horizon {
    margin-bottom: 30px;
  }
  .boxShadow.horizon .cell {
    display: block;
    text-align: center;
  }
  .boxShadow.horizon .cell img[src*=".jpg"],
  .boxShadow.horizon .cell img[src*="psychology"] {
    width: 100%;
  }
  .boxShadow.horizon .cell p {
    padding-right: 0;
  }
  .boxShadow.horizon .cell + .cell p {
    padding: 0;
    text-align: left;
  }
  .boxShadow.horizon .cell ul {
    margin: 10px 15px 0 15px;
    text-align: left;
  }
  .mapframeShadow {
    height: 280px;
  }
  #maparea {
    height: 280px;
  }
  .map-box {
    flex-flow: column wrap;
  }
  .i-map {
    width: calc(100% - 30px);
    max-width: 400px;
    height: auto;
    margin: 15px;
    box-sizing: border-box;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .home #contents {
    top: -30px;
  }
  .home #examStop.grid section {
    width: auto;
  }
  .home #examStop.grid .carousel {
    width: inherit;
    float: none;
  }
  .home #examStop.grid .carousel .carouselChild {
    float: none;
    width: inherit;
  }
  .home #examStop.grid .carousel .carouselChild + .carouselChild {
    display: none;
  }
  .home #examStop.grid .cell {
    display: block;
    padding-top: 33px;
  }
}

@media screen and (max-width: 640px) {
  #examtop {
    width: auto;
  }
  #examtop .grid {
    margin-left: 0;
  }
  #examtop .grid .carouselChild {
    width: auto;
    height: 125px;
    margin: 5px;
  }
  #examtop .grid .carouselChild h3 {
    margin-top: 13px;
  }
  #examtop .grid .carouselChild h3 span {
    font-size: 92%;
    padding-bottom: 7px;
  }
  #examtop .grid .carouselChild h3 b {
    font-size: 100%;
  }
  #examtop .grid .carouselChild p {
    padding-bottom: 6px;
  }
  #examtop .grid .carouselChild p span {
    font-size: 92%;
  }
  #examtop .grid .carouselChild p b {
    font-size: 92%;
  }
  #examtop .grid img[src$="arrow.png"] {
    display: none;
  }
  #examtop .pageNation .carouPrev1 {
    left: -7px;
    top: 48%;
  }
  #examtop .pageNation .carouNext1 {
    right: -7px;
    top: 48%;
  }
  .pageNation {
    height: auto;
  }
  .home .grid {
    width: auto;
  }
  .home .grid .carousel {
    margin-left: 0;
  }
  .home .grid .carousel .carouselChild {
    height: 125px;
  }
  .home .grid .grid--link {
    display: none;
  }
  .home .grid h2,
  .home .grid .grid--title {
    background-color: #3399CC;
    border-radius: 10px;
    float: none;
    height: auto;
    width: auto;
    padding: 10px 0;
    margin: 5px;
  }
  .home .grid h2 img,
  .home .grid .grid--title img {
    position: static;
    display: block;
    margin: 0 auto;
  }
  .home .grid h2 h2,
  .home .grid .grid--title h2 {
    width: auto;
    padding: 0;
    margin: 0;
  }
  .home .grid .empty-grid {
    display: none !important;
  }
  #topics.grid {
    position: relative;
    width: inherit;
  }
  #topics.grid ul {
    position: relative;
    left: -5px;
  }
  #topics.grid .wrapper {
    left: 0;
  }
  #topics.grid .wrapper .item:first-child {
    width: 0;
    height: 0;
  }
  #topics.grid .item {
    width: inherit;
  }
  #topics.grid .wrapper .item + .item {
    width: 91%;
    padding: 3%;
    height: auto;
  }
  #topics.grid .wrapper .item + .item .cnt {
    height: auto;
  }
  #topics.grid .wrapper .item + .item.item.now {
    width: auto;
    height: 300px;
  }
  #topics.grid .wrapper .item + .item.item.now iframe {
    width: 225px !important;
    height: 127px !important;
    text-align: center;
  }
  #topics.grid .wrapper .item a.photo {
    display: none;
  }
  #topics.grid .wrapper .item a.arrow {
    position: static;
    text-align: center;
    display: block;
    left: auto;
    top: auto;
    transform: translateX(0);
  }
  #topics.grid img[src$="/common/icon_photo.png"] {
    display: none;
  }
  .pageNation a img {
    width: 15px;
  }
  .pageNation .carouPrev1,
  .pageNation .carouNext1 {
    top: 57%;
  }
  .pageNation .carouPrev2,
  .pageNation .carouNext2 {
    top: 53%;
  }
  .pageNation .carouPrev3,
  .pageNation .carouNext3 {
    top: 53%;
  }
  .home #event {
    overflow: hidden;
  }
  .home #event.grid .carousel .carouselChild {
    position: relative;
  }
  .home #event.grid .imgR {
    padding: 0;
    margin: 0;
    float: none;
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  .home #event.grid .arrow {
    display: none;
  }
  .home #event.grid .paragraph {
    width: auto;
    padding-right: 10px;
  }
  .home #event.grid .paragraph span.subject {
    margin-bottom: 3px;
  }
  .home #event.grid img[src*="/img/home/event_space"] {
    width: auto;
    height: 100%;
  }
  .home #exam.grid .carouselChild h3 {
    margin-top: 13px;
  }
  .home #exam.grid .carouselChild h3 span {
    font-size: 92%;
    padding-bottom: 7px;
  }
  .home #exam.grid .carouselChild h3 b {
    font-size: 100%;
  }
  .home #exam.grid .carouselChild p {
    padding-bottom: 6px;
  }
  .home #exam.grid .carouselChild p span {
    font-size: 92%;
  }
  .home #exam.grid .carouselChild p b {
    font-size: 92%;
  }
  .home #exam.grid img[src$="arrow.png"] {
    display: none;
  }
  #recommend.grid .carouselChild {
    height: 184px;
    margin-bottom: 10px;
    padding: 15px 10px 0 10px;
    line-height: 1.4;
    position: relative;
  }
  #recommend.grid .carouselChild .cnt {
    height: auto;
    padding-bottom: 10px;
  }
  #recommend.grid .carousel .carouselChild a.photo {
    display: none;
  }
  #recommend.grid .carousel .carouselChild a.arrow {
    display: block;
    position: static;
    text-align: center;
    left: auto;
    top: auto;
  }
  .pageNation .carouPrev1,
  .pageNation .carouPrev2,
  .pageNation .carouPrev3 {
    left: 1px;
  }
  .pageNation .carouNext1,
  .pageNation .carouNext2,
  .pageNation .carouNext3 {
    right: 1px;
  }
  .pageNation .carouPrev1,
  .pageNation .carouNext1 {
    top: 53%;
  }
  .pageNation .carouPrev2,
  .pageNation .carouNext2 {
    top: 56%;
  }
  .pageNation .carouPrev3,
  .pageNation .carouNext3 {
    top: 50%;
  }
  .grid .carousel .carouselChild.end:before {
    font-size: 100%;
  }
  .unit #exam + .pageNation + .linklist {
    top: 12px;
  }
  .unit #event + .pageNation + .linklist {
    top: 17px;
  }
  .unit #topics + .linklist {
    top: 12px;
  }
  .unit #recommend + .pageNation + .linklist {
    top: 12px;
  }
  .unit .linklist {
    right: 0;
  }
}

@media screen and (max-width: 374px) {
  #sideNav li a {
    width: 22vw;
  }
}
