@charset "utf-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  --color-text: #242424;
  --color-link: #242424;
  --color-primary: #018843;
  --color-secondary: #76bf9a;
  --color-gray: #b5b5b6;
  --color-bg: #f3f1ea;
  --font: "Roboto", "Helvetica Neue", Arial, YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Roboto", sans-serif;
  --font-mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
/*!
 * Sanitize 13.0.0 (https://github.com/csstools/sanitize.css)
 * Licensed under the CC0 1.0 Universal.
 */
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
:after,:before{text-decoration:inherit;vertical-align:inherit}
html{cursor:default;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word}
body{margin:0}
h1{font-size:2em;margin:.67em 0}
dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{margin:0}
hr{height:0;overflow:visible}
main{display:block}
nav ol,nav ul{list-style:none;padding:0}
pre{font-family:monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{text-decoration:underline;-webkit-text-decoration:underline;text-decoration:underline}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace;font-size:1em}
small{font-size:80%}
audio,canvas,iframe,img,svg,video{vertical-align:middle}
audio,video{display:inline-block}
audio:not([controls]){display:none;height:0}
iframe,img{border-style:none}
svg:not([fill]){fill:currentColor}
svg:not(:root){overflow:hidden}
table{border-collapse:collapse}
button,input,select{margin:0}
button{overflow:visible;text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}
input{overflow:visible}
legend{color:inherit;display:table;max-width:100%;white-space:normal}
progress{display:inline-block;vertical-align:baseline}
select{text-transform:none}
textarea{margin:0;overflow:auto;resize:vertical}
[type=checkbox],[type=radio]{padding:0}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}
::-webkit-input-placeholder{color:inherit;opacity:.54}
::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
::-moz-focus-inner{border-style:none;padding:0}
:-moz-focusring{outline:1px dotted ButtonText}
:-moz-ui-invalid{box-shadow:none}
details,dialog{display:block}
dialog{background-color:#fff;border:solid;color:#000;height:-moz-fit-content;height:-webkit-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}
dialog:not([open]){display:none}
summary{display:list-item}
canvas{display:inline-block}
template{display:none}
[tabindex],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}
[hidden]{display:none}
[aria-busy=true]{cursor:progress}
[aria-controls]{cursor:pointer}
[aria-disabled=true],[disabled]{cursor:not-allowed}
[aria-hidden="false"][hidden]{display:inline}
[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}
html {
  font-size: 62.5%;
}
body {
  overflow-x: hidden;
  background: #fff;
  color: #242424;
  font-family: "Roboto", "Helvetica Neue", Arial, YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6em;
  line-height: 1.875;
}
a {
  color: #242424;
}
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}
/* Typography Base Setting */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1em;
}
ol,
ul {
  padding-left: 2em;
}
ol {
  list-style: decimal outside none;
}
ul {
  list-style: disc outside none;
}
li ol,
li ul {
  margin-bottom: 0;
}
nav ol,
nav ul {
  list-style: none;
  padding-left: 0;
}
em {
  font-style: normal;
}
rp,
rt {
  line-height: 1;
  font-size: 0.688em;
}
table {
  empty-cells: show;
  font-size: 1em;
}
iframe {
  display: block;
  width: 100%;
}
img {
  height: auto;
}
img,
iframe,
button,
input,
select,
textarea {
  max-width: 100%;
}
figure {
  margin: 0;
}
textarea {
  height: auto;
  resize: vertical;
}
mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, rgba(0, 61, 165, 0.3)));
  background: linear-gradient(transparent 55%, rgba(0, 61, 165, 0.3) 55%);
}
/* ==========================================================================
   Layout
   ========================================================================== */
body {
  position: relative;
}
body::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background: #f3f1ea;
  pointer-events: none;
  content: "";
}
.no-js body::after {
  opacity: 0;
}
.js.is-loaded body::after {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.3s;
  transition: opacity 0.5s 0.3s;
}
.wrap {
  overflow: hidden;
  position: relative;
}
.container {
  display: block;
  position: relative;
  width: calc(100% - 40px);
  max-width: 400px;
  margin: 0 auto;
}
.container .container {
    width: 100%;
  }
.container--wide {
  max-width: 1200px;
}
.logo {
  display: block;
  position: relative;
  width: 170px;
  padding-left: 59px;
  line-height: 1;
}
.logo::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 100%;
    background: url("/educate/sougou/common/images/logo.png") no-repeat center center / contain;
    vertical-align: middle;
    content: "";
  }
/* -----------------------------------
  Header
----------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 10px;
  background: #fff;
}
.header__logo2 {
  position: absolute;
  top: 23px;
  right: 70px;
  width: 90px;
}
.header-navi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.header-navi__link {
  display: inline-block;
  position: relative;
  padding: 0.5rem 0;
  line-height: 1.5;
}
/* -----------------------------------
  Content
----------------------------------- */
.wrap {
  padding-top: 60px;
}
.main-header {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 50px 0 20px;
}
.main-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 0;
    border-bottom: 1px solid #F5F5F5;
    content: "";
  }
.main-header__title {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.5;
}
.main-header__title[data-en]::after {
    display: block;
    margin-top: 5px;
    color: #b5b5b6;
    font-size: 1.6rem;
    font-weight: 100;
    letter-spacing: 0.1em;
    content: attr(data-en);
  }
.main-header__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}
.breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #8c8c8c;
  font-size: 1.1rem;
}
.breadcrumbs-list > li {
    display: inline-block;
  }
.breadcrumbs-list > li:nth-of-type(n+2)::before {
    display: inline-block;
    width: 5px;
    height: 0;
    border-top: 1px solid #999;
    margin: 0 10px;
    vertical-align: middle;
    content: "";
  }
.breadcrumbs-list a {
    color: inherit;
  }
.main-image {
  overflow: hidden;
  position: relative;
  width: calc(100% - 5px);
  max-width: calc(50vw + 550px);
  height: 0;
  margin-bottom: 50px;
  padding-top: 42.3438%;
  border-radius: 0 0 30px 0;
}
.main-image img,
  .main-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
.main-image img {
    z-index: -1;
  }
.main-image .movie-icon,
  .main-image video {
    opacity: 0;
    -webkit-transition: opacity 1s 3s;
    transition: opacity 1s 3s;
  }
.is-loaded .main-image .movie-icon,
  .is-loaded .main-image video {
    opacity: 1;
  }
/* 水平レイアウト */
.block-horizontal {
  margin: 60px 0;
}
/* -----------------------------------
  Footer
----------------------------------- */
.footer {
  position: relative;
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 50vw;
  font-size: 1.5rem;
  background: url("/educate/sougou/common/images/bg_footer.jpg") no-repeat center bottom / cover;
}
.footer a {
    color: #242424;
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.footer a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
.footer__content {
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: 0 auto;
}
.footer__address {
  margin-bottom: 40px;
  line-height: 1.86;
}
.footer__logo {
  margin-bottom: 15px;
}
.footer__pagetop {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
}
.footer__pagetop a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 50px;
    height: 0;
    padding-top: 50px;
  }
.footer__pagetop a::before {
      position: absolute;
      top: 50%;
      left: 50%;
      rotate: 45deg;
      translate: -50% -30%;
      width: 30px;
      height: 30px;
      border-top: 3px solid #fff;
      border-left: 3px solid #fff;
      content: "";
    }
.footer__copyright {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.footer-list {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.footer-list > li {
    position: relative;
    margin: 0.75em 0;
  }
.footer-list > li > a {
    display: block;
    position: relative;
    padding-left: 1rem;
  }
.footer-list > li > a::before {
      position: absolute;
      top: 0.5em;
      left: 0;
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 50%;
      background: #018843;
      content: "";
    }
.footer-list > li > a[target="_blank"] {
      padding-left: 2rem;
    }
.footer-list > li > a[target="_blank"]::before {
      top: 0.33em;
      width: 1.2rem;
      height: 1.2rem;
      border-radius: 0;
      background: url("/educate/sougou/common/images/icon_blank.svg") no-repeat center center / contain;
    }
.footer-child-list {
  margin-left: 1rem;
}
.footer-child-list > li {
    position: relative;
    margin: 0.75em 0;
    padding-left: 1rem;
  }
.footer-child-list > li::before {
      position: absolute;
      top: 0.66em;
      left: 0;
      width: 0.4rem;
      height: 1.5px;
      background: #242424;
      content: "";
    }
/* ==========================================================================
   Object
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
/*------------------------------------*\
    spectre.css
    http://picturepan2.github.io/spectre
\*------------------------------------*/
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.columns.col-gapless {
    margin-left: 0;
    margin-right: 0;
  }
.columns.col-gapless > .column {
      padding-left: 0;
      padding-right: 0;
    }
.columns.col-oneline {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
[class~="col-"],
.column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-12[class~="col-"],
  .column.col-12,
  .col-11[class~="col-"],
  .column.col-11,
  .col-10[class~="col-"],
  .column.col-10,
  .col-9[class~="col-"],
  .column.col-9,
  .col-8[class~="col-"],
  .column.col-8,
  .col-7[class~="col-"],
  .column.col-7,
  .col-6[class~="col-"],
  .column.col-6,
  .col-5[class~="col-"],
  .column.col-5,
  .col-4[class~="col-"],
  .column.col-4,
  .col-3[class~="col-"],
  .column.col-3,
  .col-2[class~="col-"],
  .column.col-2,
  .col-1[class~="col-"],
  .column.col-1,
  .col-auto[class~="col-"],
  .column.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66666667%;
}
.col-10 {
  width: 83.33333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66666667%;
}
.col-7 {
  width: 58.33333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66666667%;
}
.col-4 {
  width: 33.33333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.66666667%;
}
.col-1 {
  width: 8.33333333%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: none;
  width: auto;
}
.col-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.col-ml-auto {
  margin-left: auto;
}
.col-mr-auto {
  margin-right: auto;
}
/*------------------------------------*\
    Typography
\*------------------------------------*/
/* 見出し */
.h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
.h2[data-en-before]::before,
  .h2[data-en-after]::after {
    display: block;
    color: #b5b5b6;
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
.h2[data-en-before]::before {
    margin-bottom: 3px;
    content: attr(data-en-before);
  }
.h2[data-en-after]::after {
    margin-top: 3px;
    content: attr(data-en-after);
  }
.h3 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6666;
}
.h4 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6666;
}
.h4--line span {
    display: inline-block;
    padding: 0 0.5em;
    border-bottom: 1px solid;
  }
.point {
  position: relative;
  padding-left: 15px;
}
.point::before {
    display: block;
    position: absolute;
    top: 0.4em;
    top: calc(0.5lh - 4px);
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #018843;
    content: "";
  }
.line {
  overflow: hidden;
}
.line span {
    display: inline-block;
    position: relative;
    padding-right: 0.8em;
  }
.line span::after {
      position: absolute;
      top: 50%;
      left: 100%;
      width: 100vw;
      max-width: 1100px;
      height: 0;
      border-top: dotted 1px #9FA0A0;
      content: "";
    }
.lead {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.6666;
}
/* リスト */
.list-inline,
.list-nostyle,
.list-number {
  list-style: none;
  padding: 0;
}
.list-inline > li {
    display: inline-block;
    margin-right: 1em;
  }
.list-inline > li:last-child {
    margin-right: 0;
  }
.list-number {
  counter-reset: number;
}
.list-number > li {
    position: relative;
    padding-left: 2em;
  }
.list-number > li::before {
    position: absolute;
    left: 0;
    counter-increment: number;
    content: "("counter(number)")";
  }
/* Link */
.link-pagetop {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  color: inherit;
  font-size: 1.2rem;
  font-weight: bold;
}
.link-pagetop::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("/educate/sougou/common/images/icon_arrow-up.svg") no-repeat center center / contain;
    content: "";
  }
/*------------------------------------*\
    Tables
\*------------------------------------*/
.table {
  width: 100%;
  border-top: 1px dotted #ccc;
  line-height: 1.625;
  border-collapse: separate;
  border-spacing: 3px;
}
.table th,
  .table td {
    padding: 15px;
    vertical-align: middle;
  }
.table thead th {
      background: #018843;
      color: #fff;
    }
.table tbody tr:nth-of-type(odd) {
      background: #EDEFEF;
    }
.table tbody tr:nth-of-type(even) {
      background: #F7F8F8;
    }
/* レスポンシブ */
/*------------------------------------*\
    Buttons
\*------------------------------------*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 184px;
  max-width: 100%;
  height: 48px;
  border-radius: 24px;
  border: none;
  margin: 10px 0;
  padding: 5px 30px;
  border: none;
  background: #242424;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.333;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  vertical-align: middle;
  cursor: pointer;
}
.btn::after {
    position: absolute;
    top: 50%;
    right: 16px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin-top: -5px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    content: "";
  }
.btn:hover::after,
a:hover .btn::after {
  translate: -12px 0;
  background: #fff;
}
.btn--invert {
  border: 1px solid;
  background: #fff;
  color: #242424;
}
.btn--invert::after {
    border-color: #242424;
  }
.btn--invert:hover::after {
    background: #242424;
  }
.btn--auto {
  width: auto;
  padding: 5px 60px 5px 40px;
}
.btn--wide {
  width: 100%;
}
.btn--small {
  width: 164px;
  height: 38px;
}
.btn--mini {
  width: auto;
  height: 30px;
  padding-right: 40px;
  padding-left: 20px;
  font-size: 1.3rem;
}
.btn--mini::after {
    right: 8px;
  }
.btn--external::before {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background: url("/educate/sougou/common/images/icon_blank-gray.svg") no-repeat center center;
    content: "";
  }
.btn--secondary {
  background: #91999F;
}
/* ページネーション */
.pagination {
  margin: 50px 0;
}
.pagination-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.pagination-list li {
    padding: 5px;
  }
.pagination-list a,
  .pagination-list span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    font-weight: 300;
  }
.pagination-list a {
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.pagination-list a::before {
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      scale: 0.9;
      border-radius: 50%;
      border: 1px dashed;
      content: "";
    }
.pagination-list a.is-active::before {
      opacity: 1;
      scale: 1;
    }
/* Project
   ----------------------------------------------------------------- */
/*------------------------------------*\
  共通
\*------------------------------------*/
/* 画像 */
.img-rounded {
  border-radius: 8px;
}
/* 背景 */
.bg-right,
.bg-left {
  position: relative;
  padding-top: 80px;
  padding-bottom: 50px;
}
.bg-right::before, .bg-left::before {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: calc(100% - 5px);
    max-width: calc(50vw + 655px);
    background: #f3f1ea;
    content: "";
  }
.bg-right::before {
    right: 0;
    border-radius: 10px 0 0 10px;
}
.bg-left::before {
    left: 0;
    border-radius: 0 10px 10px 0;
}
/* スライダー */
.js-infinite-slider .splide__slide {
  padding: 0 10px;
}
/* アニメーション設定 */
.js .anim-mask {
	display: inline-block;
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  vertical-align: top;
}
.js .anim-mask.animated {
	--duration: 0.7s;
	--delay: 0.2s;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	-webkit-transition: -webkit-clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: -webkit-clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
	transition: clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay), -webkit-clip-path var(--duration) cubic-bezier(0.25, 1, 0.5, 1) var(--delay);
}
/* ページ下部動画ブロック */
.block-movie {
  display: block;
  position: relative;
  height: max(60vw, 360px);
  background: url("/educate/sougou/common/images/movie-bg.jpg") no-repeat center center / cover;
}
.block-movie img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60%;
    max-width: 300px;
  }
.block-movie__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.movie-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100px;
  height: 100px;
}
.movie-icon::before,
  .movie-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
  }
.movie-icon::before {
    background: url("/educate/sougou/common/images/icon_movie01.svg") no-repeat center center / contain;
    -webkit-animation: rotate 12s linear infinite;
    animation: rotate 12s linear infinite;
  }
.movie-icon::after {
    background: url("/educate/sougou/common/images/icon_movie02.svg") no-repeat center center / contain;
  }
@-webkit-keyframes rotate {
  0% { -webkit-transform: rotate(0); transform: rotate(0);}
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes rotate {
  0% { -webkit-transform: rotate(0); transform: rotate(0);}
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
/*------------------------------------*\
  トップページ
\*------------------------------------*/
.top-hero {
  height: min(50vw, 675px);
  margin-bottom: min(10vw, 140px);
}
.top-hero video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
.top-heading {
  position: relative;
  margin-bottom: 20px;
  font-size: max(2.7rem, min(calc(2.16rem + 1.5vw), 3.6rem));
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.top-heading[data-en-before]::before,
  .top-heading[data-en-after]::after {
    display: block;
    color: #018843;
    font-size: 1.4rem;
    font-weight: bold;
  }
.top-heading[data-en-before]::before {
    margin-bottom: 5px;
    content: attr(data-en-before);
  }
.top-heading[data-en-after]::after {
    margin-top: 5px;
    content: attr(data-en-after);
  }
/*------------------------------------*\
  お知らせ
\*------------------------------------*/
.article-date {
  font-size: 1.4rem;
}
.article-date span {
    display: inline-block;
    height: 26px;
    padding: 0 13px;
    border-radius: 13px;
    background: #efefef;
    letter-spacing: 0.05em;
    line-height: 26px;
  }
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-list > li {
    margin-bottom: 30px;
  }
.article-list a {
    display: block;
    position: relative;
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    line-height: 1.86;
  }
.article-list .article-thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 66.886%;
    border-radius: 8px;
  }
.article-list .article-thumb img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }
.article-list .article-date {
    position: relative;
    top: -36px;
    right: 10px;
    z-index: 1;
    height: 0;
    text-align: right;
  }
.article-list .article-date span {
      background: #fff;
    }
.article-list .article-title {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.025em;
    line-height: 1.714;
  }
.article-list .article-desc {
    margin-top: 5px;
    font-size: 1.3rem;
  }
.article-group {
  margin-bottom: 40px;
}
.article-group .article-title {
    margin: 10px 0;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
  }
.article {
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid #DCDDDD;
}
.article .article-heading {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-bottom: 1px solid #DCDDDD;
    font-size: 1.8rem;
    line-height: 1.4;
  }
.article .article-heading::before {
      position: absolute;
      left: 0;
      top: 0.4em;
      top: calc(0.5lh - 4px);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #018843;
      content: "";
    }
.article .article-date2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 300;
  }
.article .article-image,
  .article .article-text {
    margin: 30px 0;
  }
/* 教員一覧 */
.professors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.professors-list > li {
    margin-bottom: 55px;
  }
.professor-overview {
  position: relative;
}
.professor-overview::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    width: 56%;
    border-radius: 0 0 8px 0;
    border-right: 1px solid #DCDDDD;
    border-bottom: 1px solid #DCDDDD;
    content: "";
  }
.professor-overview:has(.is-active)::before {
    width: 100%;
  }
.professor-overview__btn {
  position: absolute;
  top: 5px;
  right: 18px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: none;
  background: #76bf9a;
  cursor: pointer;
}
.professor-overview__btn::before,
  .professor-overview__btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate:  -50% -50%;
    width: 11px;
    height: 0;
    border-top: 1px solid #fff;
    content: "";
  }
.professor-overview__btn[aria-expanded="false"]::after {
    rotate: 90deg;
  }
.professor-overview__detail {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 30px 20px 20px 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}
.professor-overview__detail[aria-hidden="true"] {
    height: 0;
    padding: 0 20px 0 0;
  }
.professor-overview__detail section + section {
    margin-top: 30px;
  }
.professor-overview__detail .h4 {
    margin-bottom: 15px;
    margin-right: -20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DCDDDD;
  }
.professor-overview .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.professor-overview__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}
.professor-overview__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56%;
  flex: 0 0 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 56%;
  padding-right: 18px;
  font-size: 1.3rem;
  line-height: 1.5;
}
.professor-overview__text .name {
    font-size: 1.7em;
    font-weight: normal;
    letter-spacing: 0.2em;
  }
.professor-overview__text .btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    margin: 0 0 0 auto;
  }
.professor-overview__text .links {
    margin-top: auto;
    margin-right: -3px;
    padding-bottom: 15px;
    text-align: right;
  }
.professor-overview__text .links .btn {
      position: relative;
      right: 0;
      bottom: 0;
      margin: 3px 2px;
    }
/* Utility
   ----------------------------------------------------------------- */
/* Responsive */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  outline: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Display */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}
.u-none {
  display: none;
}
.u-block {
  display: block;
}
.u-inline {
  display: inline;
}
.u-inline-block {
  display: inline-block;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* Text Align & Font style */
.u-text-left {
  text-align: left !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-right {
  text-align: right !important;
}
.u-text-indent {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
ul.u-text-indent {
  list-style: none;
}
.u-align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* widths */
.u-w100 {
  width: 100%;
}
.u-w90 {
  width: 90%;
}
.u-w80 {
  width: 80%;
}
.u-w75 {
  width: 75%;
}
.u-w70 {
  width: 70%;
}
.u-w66 {
  width: 66%;
}
.u-w60 {
  width: 60%;
}
.u-w50 {
  width: 50%;
}
.u-w40 {
  width: 40%;
}
.u-w33 {
  width: 33%;
}
.u-w30 {
  width: 30%;
}
.u-w25 {
  width: 25%;
}
.u-w20 {
  width: 20%;
}
.u-w10 {
  width: 10%;
}
.u-w-auto {
  width: auto;
}
/* Margins */
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-mt-1 {
  margin-top: 10px !important;
}
.u-mr-1 {
  margin-right: 10px !important;
}
.u-mb-1 {
  margin-bottom: 10px !important;
}
.u-ml-1 {
  margin-left: 10px !important;
}
.u-mt-2 {
  margin-top: 20px !important;
}
.u-mr-2 {
  margin-right: 20px !important;
}
.u-mb-2 {
  margin-bottom: 20px !important;
}
.u-ml-2 {
  margin-left: 20px !important;
}
.u-mt-3 {
  margin-top: 40px !important;
}
.u-mr-3 {
  margin-right: 40px !important;
}
.u-mb-3 {
  margin-bottom: 40px !important;
}
.u-ml-3 {
  margin-left: 40px !important;
}
.u-mt-4 {
  margin-top: 60px !important;
}
.u-mr-4 {
  margin-right: 60px !important;
}
.u-mb-4 {
  margin-bottom: 60px !important;
}
.u-ml-4 {
  margin-left: 60px !important;
}
.u-mt-5 {
  margin-top: 100px !important;
}
.u-mr-5 {
  margin-right: 100px !important;
}
.u-mb-5 {
  margin-bottom: 100px !important;
}
.u-ml-5 {
  margin-left: 100px !important;
}
.u-mr-auto,
.u-mx-auto {
  margin-right: auto !important;
}
.u-ml-auto,
.u-mx-auto {
  margin-left: auto !important;
}
/* Paddings */
.u-pt-0 {
  padding-top: 0 !important;
}
.u-pb-0 {
  padding-bottom: 0 !important;
}
.u-pr-0 {
  padding-right: 0 !important;
}
.u-pl-0 {
  padding-left: 0 !important;
}
.u-pt-1 {
  padding-top: 10px !important;
}
.u-pr-1 {
  padding-right: 10px !important;
}
.u-pb-1 {
  padding-bottom: 10px !important;
}
.u-pl-1 {
  padding-left: 10px !important;
}
.u-pt-2 {
  padding-top: 20px !important;
}
.u-pr-2 {
  padding-right: 20px !important;
}
.u-pb-2 {
  padding-bottom: 20px !important;
}
.u-pl-2 {
  padding-left: 20px !important;
}
.u-pt-3 {
  padding-top: 40px !important;
}
.u-pr-3 {
  padding-right: 40px !important;
}
.u-pb-3 {
  padding-bottom: 40px !important;
}
.u-pl-3 {
  padding-left: 40px !important;
}
.u-pt-4 {
  padding-top: 60px !important;
}
.u-pr-4 {
  padding-right: 60px !important;
}
.u-pb-4 {
  padding-bottom: 60px !important;
}
.u-pl-4 {
  padding-left: 60px !important;
}
.u-pt-5 {
  padding-top: 100px !important;
}
.u-pr-5 {
  padding-right: 100px !important;
}
.u-pb-5 {
  padding-bottom: 100px !important;
}
.u-pl-5 {
  padding-left: 100px !important;
}
/* Text Styles */
.u-font-l {
  font-size: 2rem;
}
.u-font-m {
  font-size: 1.5rem;
}
.u-font-s {
  font-size: 1.4rem;
}
.pos-static {
  position: static;
}
.pos-relative {
  position: relative;
}
@media (min-width: 35.001em) {
  .col-sm-12,
  .col-sm-11,
  .col-sm-10,
  .col-sm-9,
  .col-sm-8,
  .col-sm-7,
  .col-sm-6,
  .col-sm-5,
  .col-sm-4,
  .col-sm-3,
  .col-sm-2,
  .col-sm-1,
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-auto {
    width: auto;
  }
  .u-sm-none {
    display: none !important;
  }
  .u-sm-block {
    display: block !important;
  }
  .u-sm-inline {
    display: inline !important;
  }
  .u-sm-inline-block {
    display: inline-block !important;
  }
  .u-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }}
@media (max-width: 45em) {
  .footer-child-list {
    display: none;
  }
  .table-scroller {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
    .table-scroller table {
      width: 800px;
      font-size: 1.5rem;
    }}
@media (min-width: 45.001em) {
  .container {
    width: calc(100% - 60px);
    max-width: 1100px;
  }
  .logo {
    width: 200px;
    padding-left: 69px;
  }
    .logo::before {
      width: 60px;
    }
  .block-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .block-horizontal__heading {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29.8%;
    flex: 0 0 29.8%;
  }
  .block-horizontal__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.3%;
    flex: 0 0 66.3%;
  }
  .col-md-12,
  .col-md-11,
  .col-md-10,
  .col-md-9,
  .col-md-8,
  .col-md-7,
  .col-md-6,
  .col-md-5,
  .col-md-4,
  .col-md-3,
  .col-md-2,
  .col-md-1,
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-auto {
    width: auto;
  }
    .table td {
      height: 82px;
    }
    .bg-right::before, .bg-left::before {
      width: calc(100% - 10px);
    }
  .article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -13px;
    margin-left: -13px;
  }
    .article-list > li {
      -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%;
      margin-bottom: 60px;
      padding-right: 13px;
      padding-left: 13px;
    }
    .article-group .article-title {
      font-size: 3rem;
    }
  .article {
    padding: 40px 50px;
  }
    .article .article-heading {
      font-size: 2.4rem;
    }
      .article .article-heading::before {
        top: 0.5em;
      }
  .professors-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -22px;
  }
    .professors-list > li {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      padding: 0 22px;
    }
  .u-md-none {
    display: none !important;
  }
  .u-md-block {
    display: block !important;
  }
  .u-md-inline {
    display: inline !important;
  }
  .u-md-inline-block {
    display: inline-block !important;
  }
  .u-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-md-text-left {
    text-align: left !important;
  }
  .u-md-text-center {
    text-align: center !important;
  }
  .u-md-text-right {
    text-align: right !important;
  }}
@media (max-width: 60em) {
  .header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-navi-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 14px;
    right: 10px;
    z-index: 100;
    width: 50px;
    height: 41px;
    border-radius: 7px;
    border: 1px solid #242424;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
    .header-navi-btn > .icon {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 1px;
      background: #242424;
      margin-left: -7px;
    }
      .header-navi-btn > .icon::before,
      .header-navi-btn > .icon::after {
        display: block;
        position: absolute;
        left: 0;
        width: 14px;
        height: 1px;
        background: #242424;
        content: "";
      }
      .header-navi-btn > .icon::before {
        top: -4px;
      }
      .header-navi-btn > .icon::after {
        bottom: -4px;
      }
  .header-navi {
    opacity: 0;
    overflow: auto;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
    .header-navi-list > li {
      margin: 1em 0;
    }
    .navi-open .header-navi-btn {
      color: #fff;
    }
      .navi-open .header-navi-btn > .icon {
        background: transparent;
      }
        .navi-open .header-navi-btn > .icon::before {
          top: 0;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
        }
        .navi-open .header-navi-btn > .icon::after {
          bottom: 0;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
        }
    .navi-open .header-navi {
      opacity: 1;
      visibility: visible;
      -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
      transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
    }
    .navi-open .wrap {
      pointer-events: none;
    }
  .footer__content {
    max-width: 400px;
  }}
@media (min-width: 60.001em) {
  .logo {
    width: 247px;
    padding-left: 85px;
  }
    .logo::before {
      width: 80px;
    }
  .header {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 156px;
    padding: 0 3.28% 35px;
  }
  .header__logo {
    margin-bottom: 20px;
  }
  .header__logo2 {
    top: 26px;
    right: 3.28%;
  }
  .header-navi-btn {
    display: none;
  }
  .header-navi {
    display: block;
    width: 100%;
  }
  .header-navi-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
    .header-navi-list > li {
      position: relative;
    }
    .header-navi-list > li:nth-of-type(n+2) {
      position: relative;
    }
      .header-navi-list > li:nth-of-type(n+2)::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 0;
        height: 1em;
        margin-top: -0.5em;
        border-left: 1px solid;
        content: "";
      }
    .header-navi-list a {
      display: block;
      padding: 0 25px;
      color: #242424;
    }
  .wrap {
    padding-top: 180px;
  }
  .main-header,
  .main-image {
    margin-bottom: 110px;
  }
  .main-header__title {
    font-size: 4.2rem;
  }
    .main-header__title[data-en]::after {
      font-size: 2rem;
    }
  .main-header__breadcrumbs {
    margin-top: 60px;
  }
  .breadcrumbs-list {
    font-size: 1.3rem;
  }
  .block-horizontal {
    margin: 100px 0;
  }
  .footer {
    margin-top: 100px;
    padding-top: 150px;
    padding-bottom: 350px;
  }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__address {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
  }
  .footer__navi {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 68%;
    flex: 0 1 68%;
    max-width: 68%;
  }
  .footer__sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
    .footer__pagetop a {
      width: 60px;
      height: 60px;
    }
      .footer__pagetop a::before {
        width: 50px;
        height: 50px;
      }
  .footer__copyright {
    position: fixed;
    top: 50%;
    right: 10px;
    bottom: auto;
    z-index: 1;
    translate: 0 -50%;
    width: auto;
  }
    .footer__copyright .copyright {
      display: block;
      color: #B5B5B6;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
    }
  .columns {
    margin-left: -28px;
    margin-right: -28px;
  }
  [class~="col-"],
  .column {
    padding-left: 28px;
    padding-right: 28px;
  }
  .columns--condensed {
    margin-left: -12px;
    margin-right: -12px;
  }
    .columns--condensed [class~="col-"],
    .columns--condensed .column {
      padding-left: 12px;
      padding-right: 12px;
    }
  .col-lg-12,
  .col-lg-11,
  .col-lg-10,
  .col-lg-9,
  .col-lg-8,
  .col-lg-7,
  .col-lg-6,
  .col-lg-5,
  .col-lg-4,
  .col-lg-3,
  .col-lg-2,
  .col-lg-1,
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-auto {
    width: auto;
  }
  .h2 {
    font-size: 3.2rem;
  }
  .h3 {
    font-size: 2.6rem;
  }
  .h4 {
    font-size: 2rem;
  }
  .lead {
    font-size: 3rem;
  }
  .small-lead {
    font-size: 1.8rem;
  }
    .pagination-list a {
      width: 52px;
      height: 52px;
      font-size: 1.7rem;
    }
  .bg-right,
  .bg-left {
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .js-infinite-slider .splide__slide {
    padding: 0 20px;
  }
  .block-movie {
    height: 600px;
  }
    .block-movie img {
      top: 50%;
      right: 50%;
      left: auto;
      translate: -50% -50%;
    }
  .movie-icon {
    width: 140px;
    height: 140px;
  }
    .top-heading[data-en-before]::before,
    .top-heading[data-en-after]::after {
      font-size: 1.6rem;
    }
  .article-list {
    margin-right: -28px;
    margin-left: -28px;
  }
    .article-list > li {
      padding-right: 28px;
      padding-left: 28px;
    }
    .article-list .article-title {
      font-size: 1.7rem;
    }
    .article-list .article-desc {
      font-size: 1.5rem;
    }
    .article-group .article-title {
      font-size: 3.6rem;
    }
  .article {
    margin-bottom: 75px;
    padding: 60px 70px;
  }
    .article .article-date2 {
      margin-bottom: 50px;
    }
  .professor-overview__text {
    font-size: 1.4rem;
  }
    .professor-overview__text .name {
      font-size: 2em;
    }
  .professor-overview__detail {
    padding-right: 30px;
  }
    .professor-overview__detail[aria-hidden="true"] {
      padding-right: 30px;
    }
    .professor-overview__detail .h4 {
      margin-right: -30px;
    }
  .u-lg-none {
    display: none !important;
  }
  .u-lg-block {
    display: block !important;
  }
  .u-lg-inline {
    display: inline !important;
  }
  .u-lg-inline-block {
    display: inline-block !important;
  }
  .u-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-lg-text-left {
    text-align: left !important;
  }
  .u-lg-text-center {
    text-align: center !important;
  }
  .u-lg-text-right {
    text-align: right !important;
  }}
@media (max-width: 64em) {}
@media (min-width: 64.001em) {}
@media (min-width: 75.001em) {}
@media (min-width: 80.001em) {
  .header-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-navi-list--sub {
    position: static;
      margin-left: 2.5rem;
  }
}
@media (hover:hover) {
  .header-navi-list a {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .header-navi-list a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
  }
  .footer__pagetop a::before {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .footer__pagetop a:hover::before {
    margin-top: -5px;
  }
  /* リンク */
  .hover-scale {
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .hover-scale img {
    -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .hover-scale:hover img,
  a:hover .hover-scale img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .hover-fade {
    -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .hover-fade:hover {
    opacity: 0.7;
  }
  .movie-icon {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  a:hover .movie-icon,
  .movie-icon:hover {
    scale: 1.2;
    -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}
@media (hover: hover) {
    .pagination-list a::before {
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
    }
    .pagination-list a:hover::before {
      opacity: 1;
      scale: 1;
    }
}
/*# sourceMappingURL=maps/main.css.map */
