@charset "UTF-8";
/* CSS Document */
html,
body {
  font-size: 62.5%;
}

a {
  color: #337ab7;
  text-decoration: underline;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a > img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  color: #23527c;
  text-decoration: underline;
}

a:hover > img {
  opacity: 0.7;
}

.is-menu {
  overflow: hidden;
}

/* ----------------------------------------------
  index.html
---------------------------------------------- */
#index {
  position: relative;
  background-image: url("../images/index/main_img.jpg?2025");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
}

#index .infoBox {
  width: 50%;
}

#index .info_wrp {
  width: 100%;
  height: 100%;
}

#index h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 34vw;
  max-width: 600px;
  height: auto;
  background: transparent;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#index h1 img {
  width: 100%;
  height: auto;
}

#index a.btnNext {
  position: absolute;
  bottom: 10%;
  text-align: center;
  width: 24vw;
  margin: 0 auto;
  padding: 20px 25px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #fff;
  color: #008fd3;
  font-size: 2rem;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 5px 10px 8px 0 rgba(35, 24, 21, 0.5);
          box-shadow: 5px 10px 8px 0 rgba(35, 24, 21, 0.5);
}

#index .comin_soon {
  position: absolute;
  width: 100%;
  bottom: 25%;
  left: 50%;
  color: #000;
  font-size: 3rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-animation: blinking 2s ease-in-out infinite alternate;
          animation: blinking 2s ease-in-out infinite alternate;
}

@-webkit-keyframes topButton {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes topButton {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#index a.btnNext:hover {
  text-decoration: none;
  -webkit-transform: translate(-50%, 0) scale(1.03);
          transform: translate(-50%, 0) scale(1.03);
  -webkit-box-shadow: 5px 10px 8px 0 rgba(35, 24, 21, 0.25);
          box-shadow: 5px 10px 8px 0 rgba(35, 24, 21, 0.25);
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #index {
    /*
    background-image: url("../images/index/main_img_sp.jpg?2025");
    background-size: cover;
    background-position: center;
    */
  }
  #index h1 {
    right: 0%;
    display: block;
    width: 84vw;
    max-width: 360px;
  }
  #index a.btnNext {
    width: 60vw;
    font-size: 4vw;
    padding: 3vw 0;
    text-align: center;
    -webkit-box-shadow: 3px 5px 5px 0 rgba(63, 64, 151, 0.5);
            box-shadow: 3px 5px 5px 0 rgba(63, 64, 151, 0.5);
  }
  #index .comin_soon {
    font-size: 5vw;
  }
  #index a.btnNext:hover {
    -webkit-box-shadow: 2px 4px 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 2px 4px 5px 0 rgba(0, 0, 0, 0.25);
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  common（共通部分）
---------------------------------------------- */
/*--- コンテンツ ----------*/
.container {
  position: relative;
  width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 0 15px;
}

.container .mainContents {
  width: 780px;
}

.container .mainContents > .contents {
  padding: 30px 0 80px;
}

.container .mainContents .contents .bl {
  margin-bottom: 50px;
}

.container .mainContents .contents .box {
  position: relative;
  margin-top: 80px;
}

.container .mainContents .contents .box.mt0 {
  margin-top: 0;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    border-left: none;
    border-right: none;
    padding: 0;
    margin: 0;
  }
  .container .mainContents {
    width: 100%;
  }
  .container .mainContents > .contents {
    padding: 15px 15px;
  }
  .container .mainContents .contents .bl {
    margin-bottom: 30px !important;
  }
  .container .mainContents .contents .box {
    margin-top: 8vw;
  }
}
/* for SP max-width: 800px */
.clrWeareRed {
  color: #A5040E !important;
}

.bgWeareRed {
  background: #A5040E !important;
}

.pagetitle {
  position: relative;
  width: 100%;
  background: #ff0;
}

.pagetitle_inner {
  position: relative;
  width: 1100px;
  padding: 0 265px 0 15px;
  margin: 0 auto;
}

.pagetitle_logo {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 240px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

h1 {
  height: 90px;
  font-size: 2.4rem;
  line-height: 90px;
}

h1 > p {
  padding: 40px 0 0 30px;
}

.box_headeing .heading {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  background-color: #f5f5f5;
  background-repeat: repeat;
  border-radius: 0px;
  padding: 20px 15px;
  border-top: solid 3px #ff0;
}

.box_headeing .heading .cap {
  font-size: 0.75em;
  font-weight: normal;
}

h3 {
  color: #FFF;
  font-size: 18px;
  background: #333;
  padding: 2px 10px;
  margin-bottom: 20px;
}

.box_content {
  padding: 0;
  margin-top: 30px;
}

.box_content p + p {
  margin-top: 1em;
}

.box_content p.red {
  color: #eb6a5c;
}

.box_content .subtitle {
  position: relative;
  color: #182980;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  background: transparent;
  padding: 0 0 0 22px;
  margin-bottom: 5px;
}

.box_content .subtitle:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #182980;
}

.box_content .youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 0 auto;
}

.box_content .youtube + .youtube {
  margin-top: 30px;
}

.box_content .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .pagetitle_inner {
    width: 100%;
    height: 60px;
    padding: 0;
  }
  .pagetitle_logo {
    width: 26vw;
  }
  .pagetitle h1 {
    position: absolute;
    height: auto;
    top: 50%;
    left: 0;
    font-size: 4vw;
    line-height: 1.4;
    padding: 0 30vw 0 4vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  h2,
  h3 {
    font-size: 3.8vw;
  }
  .box_headeing .heading {
    font-size: 4vw;
    padding: 3vw 3vw;
  }
  .box_content {
    margin-top: 4vw;
  }
  .box_content .subtitle {
    font-size: 4vw;
    margin-top: 4vw;
    padding-left: 5vw;
  }
  .box_content .subtitle:before {
    top: 1.2vw;
    width: 3vw;
    height: 3vw;
  }
}
/* for SP max-width: 800px */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}

table th {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 5px;
}

table td {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 15px;
  text-align: left;
  color: #000;
}

table tr:nth-child(even) {
  background-color: #F0F0F6;
}

table tr:nth-child(odd) {
  background-color: #FCFCFC;
}

a.btn {
  font-size: 2rem;
  font-weight: bold;
  color: #FFF !important;
  text-align: center;
  background: #CF000E;
  display: block;
  width: 80%;
  padding: 15px;
  margin: 40px 10% 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px #8C0000;
          box-shadow: 0 5px #8C0000;
}

a.btn:after {
  font-family: FontAwesome;
  content: "\f18e";
  margin-left: 20px;
  font-weight: normal;
}

a.btn:hover {
  color: #FF0 !important;
  margin: 43px 10% 0;
  -webkit-box-shadow: 0 2px #8C0000;
          box-shadow: 0 2px #8C0000;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  a.btn {
    font-size: 1.6rem;
    padding: 10px;
  }
}
/* for SP max-width: 800px */
/*--- サイドナビ ----------*/
/* PC用 */
.container .navSide {
  width: 240px;
  padding: 30px 0;
}

.container .navSide .message {
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.container .navSide .message span {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  padding: 0 0.25em;
  margin: 0 0.15em;
}

.container .navSide .message .offline {
  background: #6a84c2;
}

.container .navSide .message .online {
  background: #eb6a5c;
}

.container .navSide > ul.navMain {
  background: #f5f5f5;
  border-radius: 3px;
  padding: 20px 10px 20px;
  margin: 15px 0;
}

.container .navSide > ul.navMain li a {
  position: relative;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: normal;
  text-decoration: none;
  display: block;
  overflow: hidden;
  border-top: dotted 1px #ccc;
  padding: 15px 10px 15px 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.container .navSide > ul.navMain li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg) translate(50%);
          transform: rotate(-45deg) translate(50%);
  z-index: 1;
}

.container .navSide > ul.navMain li:last-child a {
  border-bottom: dotted 1px #ccc;
}

.container .navSide > ul.navMain li:last-child a .fa {
  margin-left: 5px;
}

.container .navSide > ul.navMain li a.current,
.container .navSide > ul.navMain li a:hover {
  color: #000;
  background: #fefefe;
  text-decoration: none;
}

.container .navSide .entry_banner li {
  margin-top: 10px;
}

.container .navSide .entry_banner li a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 5px;
}

.container .navSide .entry_banner li a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

.container .navSide .entry_banner li a span {
  display: block;
}

.container .navSide .entry_banner li a .target {
  line-height: 1.2;
  font-weight: bold;
  background: #fff;
  padding: 5px;
}

.container .navSide .entry_banner li a .arw {
  position: relative;
  font-size: 0.8em;
  margin-top: 5px;
}

.container .navSide .entry_banner li a .arw:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translate(50%);
          transform: rotate(-45deg) translate(50%);
  z-index: 1;
}

.container .navSide .entry_banner li .caution {
  display: block;
  color: #666;
  font-size: 1rem;
  line-height: 1.3;
  text-indent: -1em;
  letter-spacing: 0;
  padding-left: 1em;
  margin-top: 5px;
}

/* 高校生 */
.container .navSide .entry_banner li.highschool a,
.drawer-nav .entry_banner li.highschool a {
  background: #8c0000;
}

.container .navSide .entry_banner li.highschool .target,
.drawer-nav .entry_banner li.highschool .target {
  color: #8c0000;
}

/* 企業・団体・卒業生・保護者 */
.container .navSide .entry_banner li.general a,
.drawer-nav .entry_banner li.general a {
  background: #d26900;
}

.container .navSide .entry_banner li.general .target,
.drawer-nav .entry_banner li.general .target {
  font-size: 1.4rem;
  color: #d26900;
}

/* LINE */
.container .navSide .entry_banner li.line a,
.drawer-nav .entry_banner li.line a {
  background: #00b900;
}

.container .navSide .entry_banner li.line .target,
.drawer-nav .entry_banner li.line .target {
  color: #00b900;
}

/* プレゼンテーション配信 */
.container .navSide .entry_banner li.presentation a,
.drawer-nav .entry_banner li.presentation a {
  background: #ed3623;
}

.container .navSide .entry_banner li.presentation.student a,
.drawer-nav .entry_banner li.presentation.student a {
  background: #6a84c2;
}

.container .navSide .entry_banner li.presentation .layer,
.drawer-nav .entry_banner li.presentation .layer {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.container .navSide .entry_banner li.presentation .target,
.drawer-nav .entry_banner li.presentation .target {
  font-size: 1.4rem;
  color: #ed3623;
}

.container .navSide .entry_banner li.presentation.student .target,
.drawer-nav .entry_banner li.presentation.student .target {
  color: #6a84c2;
}

/* 第2回オリエンテーション */
.container .navSide .entry_banner li.orientation a,
.drawer-nav .entry_banner li.orientation a {
  background: #6a84c2;
}

.container .navSide .entry_banner li.orientation .layer,
.drawer-nav .entry_banner li.orientation .layer {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.container .navSide .entry_banner li.orientation .target,
.drawer-nav .entry_banner li.orientation .target {
  font-size: 1.4rem;
  color: #6a84c2;
  line-height: 1.6;
}

.clm2-2 > li {
  float: left;
  width: 49%;
  margin-right: 2%;
}

.clm2-2 > li:nth-child(2) {
  margin-right: 0;
}

.clm2-2 > li:nth-child(3),
.clm2-2 > li:nth-child(4) {
  width: 100%;
  margin-right: 0;
  margin-top: 10px;
}

.clm2-2 > li .caution {
  display: block;
  color: #666;
  font-size: 11px;
  text-indent: -1em;
  letter-spacing: 0;
  padding-left: 1em;
  margin-top: 5px;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .container .navSide {
    display: none;
  }
  .clm2-2 > li .caution {
    color: #ccc;
  }
}
/* for SP max-width: 800px */
/*MB用*/
.hamburgerMenu {
  display: none;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .hamburgerMenu {
    display: block;
  }
  .drawer-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    width: 25px;
    height: 5px;
    padding: 9px 8px 26px;
    background: #444;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    border: 0;
    outline: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 20000;
  }
  .is-menu .drawer-hamburger {
    right: 70%;
  }
  .drawer-hamburger:hover {
    background: #444;
  }
  .drawer-nav {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100%;
    overflow-y: scroll;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 20000;
  }
  .drawer-nav .onoff {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
  }
  .drawer-nav .message {
    color: #fff;
    font-size: 3.2vw;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
  }
  .drawer-nav .message span {
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 0 0.25em;
    margin: 0 0.15em;
  }
  .drawer-nav .message .offline {
    background: #6a84c2;
  }
  .drawer-nav .message .online {
    background: #eb6a5c;
  }
  .is-menu .drawer-nav {
    right: 0;
  }
  .drawer-hamburger:hover {
    cursor: pointer;
  }
  .drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #FFF;
    margin-top: 10px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .drawer-hamburger-icon:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #FFF;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .drawer-hamburger-icon:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #FFF;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .is-menu .drawer-hamburger-icon {
    background-color: transparent;
  }
  .is-menu .drawer-hamburger-icon:before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-menu .drawer-hamburger-icon:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-nav,
  .drawer-nav a:hover {
    background: #000;
  }
  .drawer-menu-item {
    position: relative;
    display: block;
    font-size: 3.5vw;
    line-height: 1.5;
    font-weight: bold;
    border-top: dotted 1px #333;
    padding: 15px 30px 15px 15px;
  }
  .drawer-menu-item:last-child {
    border-bottom: dotted 1px #333;
  }
  .drawer-menu-item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg) translate(50%);
            transform: rotate(-45deg) translate(50%);
    z-index: 1;
  }
  .drawer-menu-item .fa {
    margin-left: 5px;
  }
  .drawer-menu li a,
  .drawer-menu li a:visited {
    color: #fff;
    text-decoration: none;
  }
  .drawer-menu li a.current {
    background: #222;
  }
  .drawer-nav .pdA10 {
    padding: 10px;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .is-menu .overlay {
    display: block;
  }
  .drawer-nav .entry_banner {
    padding: 0 4vw 4vw;
  }
  .drawer-nav .entry_banner li {
    margin-top: 4vw;
  }
  .drawer-nav .entry_banner li a {
    display: block;
    color: #fff;
    font-size: 3.5vw;
    text-align: center;
    text-decoration: none;
    padding: 5px;
  }
  .drawer-nav .entry_banner li a span {
    display: block;
  }
  .drawer-nav .entry_banner li a .target {
    line-height: 1.2;
    font-weight: bold;
    background: #fff;
    padding: 5px;
  }
  .container .navSide .entry_banner li.presentation .layer,
  .drawer-nav .entry_banner li.presentation .layer,
  .container .navSide .entry_banner li.presentation .target,
  .drawer-nav .entry_banner li.presentation .target {
    font-size: 3.5vw;
  }
  .drawer-nav .entry_banner li a .arw {
    position: relative;
    font-size: 0.8em;
    margin-top: 5px;
  }
  .drawer-nav .entry_banner li a .arw:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg) translate(50%);
            transform: rotate(-45deg) translate(50%);
    z-index: 1;
  }
  .drawer-nav .entry_banner li .caution {
    display: block;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.3;
    text-indent: -1em;
    letter-spacing: 0;
    padding-left: 1em;
    margin-top: 5px;
  }
}
/* for SP max-width: 800px */
/*--- header / footer ----------*/
header {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  background: #000;
}

header p {
  width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
}

header p a {
  color: #fff;
  text-decoration: none;
}

header p a:hover {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

footer {
  color: #333;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0;
  background: #efefef;
  padding: 10px 0;
}

footer .ftB {
  font-weight: bold;
}

footer > br {
  display: none;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  header {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0;
    padding: 0 15px;
  }
  header p {
    width: auto;
    font-size: 3.2vw;
    padding: 0;
    margin: 0;
  }
  footer {
    width: 100%;
    font-size: 1.1rem;
  }
  footer > br {
    display: block;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  about.html
---------------------------------------------- */
#about .profile {
  background: #f5f5f5;
  padding: 30px;
  margin-top: 30px;
}

#about .profile .profile_photo {
  float: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 150px;
  border-radius: 75px;
  overflow: hidden;
  border: 5px solid #fff;
  margin-bottom: 30px;
  margin-left: 30px;
}

#about .profile .school {
  font-size: 14px;
  font-weight: bold;
}

#about .profile .degree {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}

#about .profile .name {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0.25em;
  margin-left: 0.5em;
}

#about .profile .career {
  font-size: 14px;
}

#about .theme > dl dt {
  float: left;
  width: 35%;
  margin-right: 20px;
}

#about .theme > dl dd {
  overflow: hidden;
}

#about .theme > dl dd .ftB {
  font-weight: bold;
}

#about .theme > dl dd + dd {
  margin-top: 15px;
}

#about .change p + p {
  margin-top: 1em;
}

#about .change a {
  color: #23527c;
  text-decoration: underline;
}

#about .mv_consept {
  float: right;
  width: 360px;
  margin-bottom: 30px;
  margin-left: 30px;
}

#about .mv_item {
  margin-top: 15px;
}

#about .mv_item:first-child {
  margin-top: 0;
}

/* 高校生の皆様へ */
#about .for_high_school_student .schedule {
  position: relative;
  background: #f5f5f5;
  padding: 20px;
  margin: 15px 0;
}

#about .for_high_school_student .schedule .date {
  text-align: center;
}

#about .for_high_school_student .schedule ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

#about .for_high_school_student .schedule ul li {
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
  font-size: 1.4rem;
  text-align: center;
  border-right: dotted 1px #ccc;
}

#about .for_high_school_student .schedule ul li:last-child {
  border-right: none;
}

#about .for_high_school_student .schedule ul + .date {
  border-top: dotted 1px #ccc;
  padding-top: 20px;
  margin-top: 20px;
}

#about .for_high_school_student ul.line_copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 5px solid #aee4b9;
  padding: 20px;
  margin: 15px 0;
}

#about .for_high_school_student ul.line_copy li {
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
  font-size: 1.4rem;
  line-height: 2;
}

#about .showcase_wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#about .showcase_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #about .profile {
    padding: 4vw;
    margin-top: 4vw;
  }
  #about .profile .profile_photo {
    float: none;
    width: 30vw;
    border-radius: 25vw;
    margin: 0 auto 4vw;
  }
  #about .profile .school {
    font-size: 3.2vw;
  }
  #about .profile .degree {
    font-size: 3vw;
  }
  #about .profile .name {
    font-size: 5.6vw;
  }
  #about .profile .career {
    font-size: 3.2vw;
  }
  #about .theme > dl dt {
    width: 100%;
    margin: 0 0 10px 0;
  }
  #about .theme > dl dd {
    font-size: 1.4rem;
    overflow: visible;
  }
  #about .mv_consept {
    float: none;
    width: 100%;
    margin-bottom: 4vw;
    margin-left: 0;
  }
  #about .mv_item {
    margin-top: 4vw;
  }
  #about .for_high_school_student .schedule {
    padding: 4vw;
    margin: 4vw 0;
  }
  #about .for_high_school_student .schedule .date {
    font-size: 3.5vw;
  }
  #about .for_high_school_student .schedule ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 4vw;
  }
  #about .for_high_school_student .schedule ul li {
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    font-size: 3.2vw;
  }
  #about .for_high_school_student .schedule ul li:nth-child(3n) {
    border-right: none;
  }
  #about .for_high_school_student .schedule ul li:nth-child(n+4) {
    margin-top: 2vw;
  }
  #about .for_high_school_student .schedule ul + .date {
    padding-top: 4vw;
    margin-top: 4vw;
  }
  #about .for_high_school_student ul.line_copy {
    padding: 4vw;
    margin: 4vw 0;
  }
  #about .for_high_school_student ul.line_copy li {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    font-size: 3.2vw;
  }
  #about .showcase_wrapper .heading {
    font-size: 4vw;
    padding: 3vw 0;
  }
}
/* for SP max-width: 800px */
#about .areaMovie {
  position: relative;
  width: 670px;
  height: 0;
  padding-top: 56.25%;
  margin: 0 auto;
}

#about .areaMovie > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about .outer {
  width: 780px;
  margin: 0 auto;
}

#about .outer #slides {
  width: 780px !important;
}

#about .outer #slides .caption {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 5px;
}

#about .outer ul li {
  width: 100%;
}

#about .outer ul li img {
  width: 100%;
  height: auto;
}

#about .outer ul.thumbs {
  margin-top: 10px;
}

#about .outer ul.thumbs li {
  width: 10%;
  border: 1px solid #FFF;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #about .areaMovie,
  #about .outer {
    width: 100%;
  }
  #about .outer #slides {
    width: 100% !important;
    margin-bottom: 10px;
  }
  #about .outer #slides .caption {
    font-size: 3.5vw;
    margin: 5px auto 0;
  }
  #about .outer #slides li > img {
    width: 100%;
  }
  #about .outer ul.thumbs {
    margin-top: 4vw;
  }
  #about .outer ul.thumbs li {
    width: 20%;
    height: auto !important;
  }
  #about .outer .thumbs li img {
    width: 100% !important;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  works.html
---------------------------------------------- */
#works .pickup {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: 1px solid #6a84c2;
  margin-top: 30px;
}

#works .pickup h2 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  border-bottom: none;
  background: #6a84c2;
  border-bottom: 1px solid #6986A3;
  padding: 15px 15px;
}

#works .pickup .project {
  background: #fff;
  border-top: 1px solid #6a84c2;
  padding: 29px;
}

#works .pickup .project:first-child {
  border-top: 0;
}

#works .pickup .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#works .pickup .lecture_title {
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 20px;
  font-weight: bold;
  background: #6a84c2;
  padding: 10px 10px;
  margin: 0 0 5px;
}

#works .pickup .company dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*margin-right: 2%;*/
}

#works .pickup .company dl dt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 20px;
  text-align: center;
  background: #333;
  padding: 10px 0;
  margin-top: 5px;
}

#works .pickup .company dl dd {
  width: 80%;
  color: #fff;
  /*font-size: 1.6rem;*/
  font-size: 1.8rem;
  line-height: 20px;
  font-weight: bold;
  background: #6a84c2;
  padding: 10px 10px;
  margin-top: 5px;
}

#works .pickup .company dl dd.project_name {
  font-size: 1.8rem;
  color: #6a84c2;
  background: #f5f5f5;
}

#works .pickup .company dl dt:nth-child(1),
#works .pickup .company dl dd:nth-child(2) {
  margin-top: 0;
}

#works .pickup .company .logo {
  width: 28%;
}

#works .pickup .major {
  margin-top: 15px;
}

#works .pickup .major li {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  white-space: nowrap;
  background: #b93;
  border-radius: 3px;
  padding: 5px;
  margin-top: 5px;
}

#works .pickup .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

#works .pickup .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
@media only screen and (max-width: 800px) {
  #works .pickup .profile {
    display: block;
    margin-top: 10px;
  }
}
#works .pickup .profile + .profile {
  border-top: 1px solid #6a84c2;
  padding-top: 15px;
}
@media only screen and (max-width: 800px) {
  #works .pickup .profile + .profile {
    padding-top: 10px;
  }
}
#works .pickup .profile .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#works .pickup .profile .text .avator_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 800px) {
  #works .pickup .profile .text .avator_name {
    margin-bottom: 10px;
  }
}
#works .pickup .profile .text .avator_name .avator {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 15px;
}
@media only screen and (max-width: 800px) {
  #works .pickup .profile .text .avator_name .avator {
    margin: 0;
    margin-right: 10px;
  }
}
#works .pickup .profile .text .avator_name .avator img {
  width: 100%;
  height: auto;
}
#works .pickup .profile .text .avator_name .name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #6a84c2;
  background: none;
  padding: 0;
  margin-bottom: 0;
}
#works .pickup .profile .works {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  margin-left: 15px;
}
@media only screen and (max-width: 800px) {
  #works .pickup .profile .works {
    width: 80%;
    margin: 10px auto 0;
  }
}

#works .pickup p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  text-align: justify;
  text-justify: inter-ideograph;
  /*for IE */
  margin-right: 5%;
}

#works .pickup p .smatch {
  float: right;
  width: 100px;
  margin: 0 0 10px 10px;
}

#works .pickup .photo {
  width: 35%;
}

/*
#works .pickup .avator {
	width: 160px;
	height: 160px;
	border-radius: 100%;
	overflow: hidden;
}
*/
#works .pickup .company .logo img,
#works .pickup .photo img {
  width: 100%;
  height: auto;
}

#works .pickup .company_profile {
  border-top: 1px dotted #6a84c2;
  padding-top: 30px;
  margin-top: 30px;
}

#works .pickup .company_profile .company_profile_name {
  font-size: 1.8rem;
  font-weight: bold;
}

#works .pickup .company_profile .company_profile_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

#works .pickup .company_profile .company_profile_txt {
  width: 70%;
  margin-right: 5%;
}

#works .pickup .company_profile .company_profile_logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
  min-height: 100px;
}

#works .pickup .company_profile .company_profile_logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #works .pickup {
    padding: 0;
  }
  #works .pickup h2 {
    font-size: 4vw;
    padding: 5px 10px;
    margin: 0;
  }
  #works .pickup .project {
    padding: 15px;
  }
  #works .pickup .company {
    display: block;
    /*margin-top: 4vw;*/
  }
  #works .pickup .company dl {
    width: 100%;
    margin-right: 0;
  }
  #works .pickup .company dl dt {
    float: none;
    width: 100%;
    font-size: 3.5vw;
    line-height: 1.6;
    padding: 3px 0;
  }
  #works .pickup .company dl dd {
    float: none;
    width: 100%;
    font-size: 3.5vw;
    line-height: 1.6;
    padding: 5px;
    margin-top: 0;
  }
  #works .pickup .company dl dd.company_name,
  #works .pickup .company dl dd.project_name {
    font-size: 3.8vw;
  }
  #works .pickup .company dl dd:nth-child(2) {
    margin-top: 0;
  }
  #works .pickup .company dl dt:nth-child(3) {
    margin-top: 10px;
  }
  #works .pickup .company .logo {
    width: 40%;
    margin: 10px auto 0;
  }
  #works .pickup .major {
    margin-top: 5px;
  }
  #works .pickup .major li {
    font-size: 2.6vw;
  }
  #works .pickup .comment {
    display: block;
    margin-top: 10px;
  }
  #works .pickup p {
    width: 100%;
    font-size: 3.5vw;
    margin-right: 0;
  }
  #works .pickup p .smatch {
    float: right;
    width: 60px;
    margin: 0 0 5px 10px;
  }
  #works .pickup .photo {
    width: 100%;
    margin-top: 4vw;
  }
  #works .pickup .avator {
    width: 40vw;
    height: 40vw;
    margin: 4vw auto 0;
  }
  #works .pickup .company_profile {
    padding-top: 4vw;
    margin-top: 4vw;
  }
  #works .pickup .company_profile .company_profile_name {
    font-size: 3.8vw;
  }
  #works .pickup .company_profile .company_profile_detail {
    display: block;
  }
  #works .pickup .company_profile .company_profile_txt {
    width: 100%;
    margin-right: 0;
  }
  #works .pickup .company_profile .company_profile_logo {
    width: 50%;
    min-height: 20vw;
    margin: 4vw auto 0;
  }
}
/* for SP max-width: 800px */
#works .works > dl {
  background: #f5f5f5;
  padding: 20px;
  /*border-bottom: 1px dotted #999;*/
}

#works .works > dl:nth-child(even) {
  background: #eaeaea;
}

#works .works > dl dt > p.companyCap,
#works .works > dl dt > p.companyName,
#works .works > dl dt > p.taskCap,
#works .works > dl dt > p.taskName {
  color: #FFF;
  float: left;
}

#works .works > dl dt > p.companyCap,
#works .works > dl dt > p.taskCap {
  font-size: 1.4rem;
  text-align: center;
  width: 15%;
  padding: 10px 0;
  background: #333;
}

#works .works > dl dt > p.companyName,
#works .works > dl dt > p.taskName {
  width: 85%;
  padding: 10px 10px;
  background: #6a84c2;
}

#works .works > dl dt > p.taskName {
  /*font-weight: bold;*/
}

#works .works > dl dt > p + p {
  margin-top: 0;
}

#works .works > dl dd.theme {
  font-size: 1.8rem;
  color: #6a84c2;
  font-weight: bold;
  margin-top: 15px;
}

#works .works > dl dd.major {
  margin-top: 10px;
}

#works .works > dl dd.major > ul li {
  color: #FFF;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: normal;
  padding: 5px;
  background: #BB9933;
  display: inline-block;
  white-space: nowrap;
  border-radius: 3px;
  margin-top: 5px;
}

/* ワールドカラー（2025年度） */
#works ul li.super_creator_world {
  background: #e50111 !important;
}

#works ul li.super_entertainment_world {
  background: #1d50a0 !important;
}

#works ul li.automotive_design_world {
  background: #f1b000 !important;
}

#works ul li.design_world {
  background: #8f61a2 !important;
}

#works ul li.manga_illustration_novel_world {
  background: #dc4f93 !important;
}

#works ul li.game_cg_animation_world {
  background: #52b489 !important;
}

#works ul li.koutoukatei {
  background: #FF0 !important;
  color: #000 !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #works .works > dl {
    padding: 4vw;
  }
  #works .works > dl dt > p.companyCap,
  #works .works > dl dt > p.companyName,
  #works .works > dl dt > p.taskCap,
  #works .works > dl dt > p.taskName {
    float: none;
  }
  #works .works > dl dt > p.companyCap,
  #works .works > dl dt > p.taskCap {
    font-size: 3.5vw;
    width: 100%;
    padding: 1vw 0;
  }
  #works .works > dl dt > p.companyName,
  #works .works > dl dt > p.taskName {
    width: 100%;
    padding: 2vw 2vw;
  }
  #works .works > dl dd.theme {
    font-size: 3.8vw;
    color: #375D9D;
    font-weight: bold;
    margin-top: 15px;
  }
  #works .works > dl dd.major {
    margin-top: 5px;
  }
  #works .works > dl dd:last-child > ul li {
    font-size: 2.6vw;
    white-space: normal;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  booth.html
---------------------------------------------- */
#booth .instructor .boxInstructor > dl {
  padding: 20px;
  margin-bottom: 10px;
  background: #F3F4F6;
  border: 3px solid #DCDEE4;
  line-height: 1.7;
}

#booth .instructor .boxInstructor > dl img.photo {
  float: left;
  margin-right: 20px;
}

#booth .instructor .boxInstructor > dl dt {
  font-weight: bold;
}

#booth .instructor .boxInstructor > dl dd.turn {
  font-weight: bold;
  color: #F39800;
  margin: 5px 0;
}

#booth .instructor .boxInstructor > dl dd.detail {
  overflow: hidden;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #booth .instructor .boxInstructor > dl {
    padding: 10px;
  }
  #booth .instructor .boxInstructor > dl img.photo {
    width: 30%;
    margin-right: 10px;
  }
  #booth .instructor .boxInstructor > dl dd.detail {
    overflow: inherit;
  }
}
/* for SP max-width: 800px */
#booth .seminar .boxSeminar > dl {
  margin-bottom: 20px;
  line-height: 1.7;
}

#booth .seminar .boxSeminar > dl img.photo {
  float: left;
  margin-right: 20px;
}

#booth .seminar .boxSeminar > dl dt {
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px dotted #999;
  margin-bottom: 5px;
  overflow: hidden;
}

#booth .seminar .boxSeminar > dl dd.profile {
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #F39800;
  overflow: hidden;
}

#booth .seminar .boxSeminar > dl dd.profile > p {
  color: #FFF;
  background: #F39800;
  padding: 0 10px;
  margin: -10px -10px 5px -10px;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #booth .seminar .boxSeminar > dl img.photo {
    width: 30%;
    margin-right: 10px;
  }
  #booth .seminar .boxSeminar > dl:first-child dt > br {
    display: none;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  lecture.html
---------------------------------------------- */
#lecture .boxLecture .capName {
  display: inline-block;
  color: #FFF;
  background: #313f90;
  padding: 1px 15px;
  margin-right: 20px;
}

#lecture .boxLecture .imgLecture {
  width: 42%;
  margin-top: 10px;
}

#lecture .boxLecture > dl {
  margin-top: 20px;
  /*margin-right: 44%;*/
}

#lecture .boxLecture > dl dt {
  font-weight: bold;
  color: #FFF;
  padding: 0 10px;
  background: #313f90;
}

#lecture .boxLecture > dl dd {
  padding: 10px;
  border: 1px solid #313f90;
  line-height: 1.7;
}

#lecture .boxLecture > dl dd .logo {
  float: right;
  width: 40%;
  margin: 0 0 10px 10px;
}

#lecture .boxLecture > dl dd .logo img {
  width: 100%;
  height: auto;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #lecture .boxLecture .capName {
    margin-right: 10px;
  }
  #lecture .boxLecture .imgLecture {
    width: 55%;
    margin-top: 5px;
  }
  #lecture .boxLecture > dl {
    margin-right: 0;
  }
  #lecture .boxLecture > dl dd .logo {
    float: none;
    width: 50%;
    margin: 0 auto 10px;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  publish.html
---------------------------------------------- */
#publish h2 {
  position: relative;
}

#publish h2 > img.photo {
  position: absolute;
  top: 10px;
  right: 0;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #publish img.photo {
    width: 80%;
    margin: 0 10%;
  }
}
/* for SP max-width: 800px */
#publish .ttlCorrection {
  font-size: 3rem;
  font-weight: bold;
}

#publish .listPublisher > ul {
  float: left;
  width: 49%;
}

#publish .listPublisher > ul:first-child {
  margin-right: 2%;
}

#publish .listPublisher > ul li {
  border: 1px solid #CCC;
  padding: 3px 10px;
}

#publish .listPublisher > ul li:nth-child(odd) {
  background: #EEE;
}

#publish .listPublisher > ul li:not(first-child) {
  border-top: none;
}

#publish .listPublisher > ul li.ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border: none;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #publish .ttlCorrection {
    font-size: 2rem;
  }
  #publish .listPublisher > ul li {
    font-size: 1rem;
    padding: 3px 5px;
  }
  #publish .listPublisher > ul li.ttl {
    font-size: 1.6rem;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  freshman.html
---------------------------------------------- */
#freshman .notice {
  padding: 2%;
}

#freshman .notice > dl {
  background: #DDD;
  width: 100%;
  padding: 2%;
}

#freshman .notice > dl:nth-child(even) {
  background: #F0F0F6;
}

#freshman .notice > dl:nth-child(odd) {
  background: #FCFCFC;
}

#freshman .notice > dl dt {
  font-weight: bold;
  float: left;
  width: 20%;
  margin-right: 1%;
}

#freshman .notice > dl dd {
  float: left;
  width: 79%;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #freshman .notice > dl dt {
    width: 27%;
  }
  #freshman .notice > dl dd {
    width: 72%;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  inquiry.html
---------------------------------------------- */
#inquiry .date dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#inquiry .date > dl dt,
#inquiry .date > dl dd {
  font-size: 2.8rem;
  font-weight: bold;
}

#inquiry .date > dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}

#inquiry .date > dl dt > span {
  font-size: 2rem;
}

#inquiry .date .sat {
  color: #6a84c2;
}

#inquiry .date .sun {
  color: #eb6a5c;
}

#inquiry .date > dl dd {
  width: 65%;
  color: #F08200;
}

#inquiry .caution {
  display: block;
  color: #666;
  font-size: 1.4rem;
  text-indent: -1em;
  letter-spacing: 0;
  padding-left: 1em;
  margin-top: 10px;
}

#inquiry .place > dl {
  /*margin-top: 20px;*/
}

#inquiry .place > dl dt,
#inquiry .place > dl dd {
  font-weight: bold;
}

#inquiry .place > dl dt {
  font-size: 2.2rem;
  margin-right: 20px;
}

#inquiry .place > dl dd {
  font-size: 1.6rem;
  font-weight: normal;
  padding-top: 10px;
}

#inquiry .map {
  margin-top: 30px;
}

#inquiry .googlemap {
  margin-top: 30px;
}

#inquiry .googlemap iframe {
  width: 100%;
}

/*
#inquiry .bus_schedule {
	display: flex;
	justify-content: space-between;
	margin: 0 -20px;
}
*/
#inquiry .bus_schedule .day {
  /*flex-basis: 50%;*/
  text-align: center;
  /*margin: 0 20px;*/
}

#inquiry .bus_schedule .day .date {
  font-size: 2.8rem;
  font-weight: bold;
}

#inquiry .bus_schedule .day .date span {
  font-size: 2rem;
}

#inquiry .bus_schedule .day .date .sat {
  color: #6a84c2;
}

#inquiry .bus_schedule .day .date .sun {
  color: #eb6a5c;
}

#inquiry .bus_schedule .day .timetable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px -10px 0;
}

#inquiry .bus_schedule .day .timetable .item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 5px solid #F08200;
  text-align: center;
  margin: 0 10px;
}

#inquiry .bus_schedule .day .timetable .item .point {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  color: #fff;
  font-weight: bold;
  background: #F08200;
  text-align: center;
  padding: 0.5em 0;
}

#inquiry .bus_schedule .day .timetable .item .time {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
}

#inquiry .bus_schedule .day .timetable .item p {
  margin-top: 0;
}

#inquiry .bus_schedule .day .nothing {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border: 5px solid #eaeaea;
  background: #eaeaea;
  padding: 0.5em 0;
  margin: 10px 0 0;
}

#inquiry .bus_reserve {
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #inquiry .date > dl dt,
  #inquiry .date > dl dd {
    font-size: 4.2vw;
  }
  #inquiry .date > dl dt > span {
    font-size: 3.8vw;
  }
  #inquiry .date > dl dd {
    width: 55%;
  }
  #inquiry .caution {
    font-size: 3.2vw;
    margin-top: 5px;
  }
  #inquiry .place > dl dt,
  #inquiry .place > dl dd {
    float: none;
  }
  #inquiry .place > dl dt {
    font-size: 4vw;
  }
  #inquiry .place > dl dd {
    font-size: 3.5vw;
    padding-top: 0;
  }
  #inquiry .map {
    margin-top: 15px;
  }
  #inquiry .bus_schedule {
    display: block;
    margin: 0;
  }
  #inquiry .bus_schedule .day {
    margin: 0;
  }
  #inquiry .bus_schedule .day + .day {
    margin-top: 4vw;
  }
  #inquiry .bus_schedule .day .nothing {
    font-size: 3.5vw;
    border: 3px solid #eaeaea;
  }
  #inquiry .bus_schedule .day .date {
    font-size: 4.2vw;
  }
  #inquiry .bus_schedule .day .date span {
    font-size: 3.8vw;
  }
  #inquiry .bus_schedule .day .timetable {
    margin: 10px -5px 0;
  }
  #inquiry .bus_schedule .day .timetable .item {
    border: 3px solid #F08200;
    margin: 0 5px;
  }
  #inquiry .bus_reserve {
    font-size: 3.5vw;
    margin-top: 4vw;
  }
}
/* for SP max-width: 800px */
ul.clm2-1 > li a {
  display: inline;
}

/* ----------------------------------------------
  presentation.html
---------------------------------------------- */
#presentation .headline {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-bottom: none;
}

#presentation .headline span {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  padding: 0 0.25em;
  margin: 0 0.15em;
}

#presentation .headline .offline {
  background: #6a84c2;
}

#presentation .headline .online {
  background: #eb6a5c;
}

#presentation h3 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  border-bottom: none;
  background: #6a84c2;
  padding: 15px 15px;
  margin-bottom: 0;
}

#presentation table + h3 {
  margin-top: 30px;
}

#presentation table {
  width: 100%;
}

#presentation table tbody tr {
  background: #fff;
}

/*#presentation table tbody tr:nth-child(even) {
	background: #fafafa; 
}*/
#presentation table thead tr th {
  font-size: 1.4rem;
  text-align: center;
  background: #f5f5f5;
}

#presentation table thead tr th.time {
  width: 25%;
  font-weight: normal;
}

#presentation table thead tr th.company {
  width: 30%;
}

#presentation table thead tr th.major {
  width: 24%;
}

#presentation table thead tr th.subject {
  width: 30%;
}

#presentation table thead tr th.presentation_content {
  width: 75%;
  font-weight: normal;
}

#presentation table tbody tr td.time {
  text-align: center;
  font-weight: bold;
}

#presentation table tbody tr td h4 {
  font-size: 1.8rem;
}

#presentation table tbody tr td h4 + p {
  margin-top: 5px;
}

#presentation table tbody tr td .outline {
  position: relative;
  font-size: 1.4rem;
  background: #e3eafb;
  padding: 15px;
  margin-top: 15px;
}

#presentation table tbody tr td .outline:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #e3eafb transparent;
}

#presentation table tbody tr td .outline_title {
  display: block;
  color: #6a84c2;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px dotted #aab4cc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#presentation table tbody tr td .btn_event {
  margin-top: 20px;
}

#presentation table tbody tr td .btn_event a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #ed3623;
  padding: 10px 20px;
}

#presentation table tbody tr td .btn_event a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

#presentation table tbody tr td .btn_event_end {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #ccc;
  padding: 10px 20px;
  margin-top: 20px;
}

#presentation table tbody tr td .btn_event a:after,
#presentation table tbody tr td .btn_event_end:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translate(50%);
          transform: rotate(-45deg) translate(50%);
  z-index: 1;
}

#presentation table tbody tr td .btn_event .caution {
  display: block;
  color: #666;
  font-size: 1.1rem;
  text-indent: -1em;
  letter-spacing: 0;
  padding-left: 1em;
  margin-top: 5px;
}

#presentation .coming_soon,
#presentation .streaming {
  width: 100%;
  margin-top: 30px;
}

#presentation .coming_soon img,
#presentation .streaming img {
  width: 100%;
  height: auto;
}

#presentation .streaming .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#presentation .streaming .btns li {
  width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#presentation .streaming .btns li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}

#presentation .streaming .btns li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translate(50%);
          transform: rotate(-45deg) translate(50%);
  z-index: 1;
}

#presentation .streaming .btns li a:hover {
  opacity: 0.8;
}

#presentation .streaming .btns li.guest a {
  background: #ed3623;
}

#presentation .streaming .btns li.student a {
  background: #6a84c2;
}

#presentation .streaming .caution {
  display: block;
  color: #666;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 5px;
}

#presentation .streamin_qrcode {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 200px;
  border: 1px solid #e5e5e5;
  margin-top: 15px;
}

#presentation .streamin_qrcode img {
  width: 100%;
  height: auto;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #presentation .pc {
    display: none !important;
  }
  #presentation h3 {
    font-size: 1.4rem;
  }
  #presentation .headline {
    font-size: 1.6rem;
  }
  #presentation table thead {
    display: none;
  }
  #presentation table tbody tr {
    display: block;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
  }
  #presentation table tbody tr:last-child {
    border-bottom: none;
  }
  #presentation table tbody tr td {
    font-size: 1.2rem;
  }
  #presentation table tbody tr td h4 {
    font-size: 1.4rem;
  }
  #presentation table tbody tr td.time {
    display: block;
    width: 100%;
    background: #eaeaea;
    border: none;
    padding: 5px 5px 5px 5px;
  }
  #presentation table tbody tr td.company,
  #presentation table tbody tr td.major,
  #presentation table tbody tr td.subject,
  #presentation table tbody tr td.presentation_content {
    position: relative;
    display: block;
    border: none;
    padding: 15px;
  }
  #presentation table tbody tr td.company:before {
    content: "企業名";
    display: block;
    font-weight: bold;
  }
  #presentation table tbody tr td.major:before {
    content: "対象学生";
    display: block;
    font-weight: bold;
  }
  #presentation table tbody tr td.subject:before {
    content: "課題タイトル";
    display: block;
    font-weight: bold;
  }
  #presentation table tbody tr td .outline {
    font-size: 1.2rem;
    padding: 10px;
    margin: 10px 0 0;
  }
  #presentation table tbody tr td .outline:before {
    left: 10px;
    border-width: 0 5px 6px 5px;
  }
  #presentation table tbody tr td .outline_title {
    font-size: 3.5vw;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  #presentation table tbody tr td .btn_event {
    margin: 15px 0 0;
  }
  #presentation .coming_soon,
  #presentation .streaming {
    margin-top: 20px;
  }
  #presentation .streaming .btns li a {
    font-size: 4vw;
    padding: 15px 0;
  }
  #presentation .streaming .btns li a:after {
    right: 15px;
    width: 6px;
    height: 6px;
  }
  #presentation .streaming .caution {
    display: block;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 5px;
  }
  #presentation .streamin_qrcode {
    width: 60%;
    margin: 4vw auto 0;
  }
}
/* for SP max-width: 800px */
/* ----------------------------------------------
  publish.html
---------------------------------------------- */
#covid19 .measures_wrp {
  margin-bottom: 30px;
}

#covid19 .measures {
  margin-bottom: 30px;
}

#covid19 .measures.mb0 {
  margin-bottom: 0;
}

#covid19 .measures ul {
  padding: 0 1em;
}

#covid19 .measures ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.75;
  padding-left: 1.25em;
}

#covid19 .measures ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f058";
  font-family: FontAwesome;
}

#covid19 .measures_fig img {
  width: 100%;
  height: auto;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  #covid19 .measures_wrp {
    margin-bottom: 20px;
  }
  #covid19 .measures {
    margin-bottom: 15px;
  }
  #covid19 .measures h3 {
    font-size: 3.5vw;
    margin-bottom: 5px;
  }
  #covid19 .measures ul {
    padding: 0 0.5em;
  }
  #covid19 .measures ul li {
    font-size: 3.2vw;
  }
}
/* ----------------------------------------------
  .line_btn
---------------------------------------------- */
.line_btn {
  text-align: center;
  margin-top: 30px;
}

.line_btn a {
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.line_btn a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

.line_btn a:hover img {
  opacity: 1;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .line_btn {
    margin-top: 10px;
  }
}
/* ----------------------------------------------
	.presentation_btn
	.pdf_btn
---------------------------------------------- */
.presentation_btn,
.pdf_btn {
  text-align: center;
  margin-top: 30px;
}

.presentation_btn a,
.pdf_btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background: #6a84c2;
  padding: 20px 0;
  max-width: 600px;
}

.presentation_btn a:after,
.pdf_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translate(50%);
          transform: rotate(-45deg) translate(50%);
  z-index: 1;
}

.presentation_btn a:hover,
.pdf_btn a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

.presentation_btn a:hover img,
.pdf_btn a:hover img {
  opacity: 1;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .presentation_btn,
  .pdf_btn {
    margin-top: 4vw;
  }
  .presentation_btn a,
  .pdf_btn a {
    font-size: 3.8vw;
    padding: 4vw 0;
  }
  .presentation_btn a:after,
  .pdf_btn a:after {
    right: 4vw;
    width: 2vw;
    height: 2vw;
  }
}
/*===============================================================
	右カラムのスケジュール
===============================================================*/
.navSide .event_schedule .block + .block {
  margin-top: 20px;
}
.navSide .event_schedule .title {
  background: #000 !important;
  color: #ccc !important;
  text-align: left !important;
  font-size: 16px !important;
  padding: 5px 10px 3px 10px !important;
  margin-bottom: 0;
  font-weight: normal;
}
.navSide .event_schedule .day {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.navSide .event_schedule .day + .day {
  margin-top: 10px;
  padding-top: 10px;
  border-top: dashed 1px #666;
}
.navSide .event_schedule .date {
  font-size: 25px;
}
.navSide .event_schedule .week {
  font-size: 16px;
  margin-left: 10px;
  margin-right: auto;
}
.navSide .event_schedule .time {
  font-size: 16px;
}
.navSide .event_schedule .sat {
  color: #182980;
}
.navSide .event_schedule .sun {
  color: #c00;
}
/*# sourceMappingURL=style2025.css.map */