@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #1e2380;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #1b65aa;
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}

button:hover, button:active, button:focus {
  outline: none;
}

button:active, button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.list-unstyled {
  list-style: none;
}

.text-right,
.text-end {
  text-align: right;
}

.text-center {
  text-align: center;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}

.main ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0.15em;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #1e2380;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

/* 共通リスト（リストマーカー非表示用）*/
ul.list-style-none > li {
  padding-left: 0;
  list-style-type: none;
}

ul.list-style-none > li::before {
  display: none;
}

ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}

ul.list-style-note > li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.5em 1.5em 0.5em;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: #1e2380;
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1b65aa;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  z-index: -100;
}

@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -141px;
    margin-bottom: 140px;
  }
}
/* 字下げ */
.indent {
  text-indent: 1em;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}
body {
  min-width: 320px;
  color: #151515;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 6rem;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1100px), print {
  .home .header {
    padding-top: 0;
  }
}

.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

.header-logo {
  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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    display: block;
    position: relative;
    max-width: 1600px;
    height: auto;
    margin: auto;
    background: none;
    z-index: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 1100px), print {
  .home .header-logo {
    display: none;
  }
}

.header-logo a {
  display: block;
}
@media screen and (min-width: 1100px), print {
  .header-logo a {
    position: absolute;
    top: 13rem;
    left: 2.5rem;
    width: 18rem;
  }
}
@media screen and (min-width: 1280px), print {
  .header-logo a {
    top: 12rem;
    left: 7rem;
    width: 22.3rem;
  }
}

@media screen and (min-width: 1100px), print {
  .header-logo img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo .logo_jp {
    width: 15rem;
  }
}

.header-logo .logo_en {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-logo .logo_en {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #000;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .is-fixed .header .inner {
    position: fixed;
    top: -60px;
    background-color: #fff;
    z-index: 1010;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .is-fixed .header .header-logo a {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .is-fixed .header .header-logo a {
    display: block;
    top: 2.25rem;
    left: 1.5rem;
    width: 18rem;
  }
  .is-fixed .header .header-logo .logo_en {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .is-fixed .header .header-logo a {
    top: 2.15rem;
    left: 1.75rem;
    width: 20rem;
  }
}

/* スクロール時固定用（トップページ用）*/
@media screen and (min-width: 1100px) {
  .is-fixed .home .header .header-logo {
    display: block;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}

@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1010;
  }
}
.nav-open .nav {
  left: 0;
}

@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: auto;
  }
}
.nav .inner {
  max-width: none;
}

@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* メインナビ */
.main-nav {
  list-style-type: none;
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 6.5rem 1rem 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav {
    width: 107.5rem;
    margin-left: auto;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav {
    width: 121.5rem;
  }
}

.main-nav .nav-item {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    position: static;
  }
}

.main-nav .nav-link {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 50px;
  padding: 0 0 0 0.5em;
  color: #151515;
  border-bottom: 1px solid #eee;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    height: 90px;
    padding: 0;
    line-height: 1.2;
    text-align: center;
    border-bottom: none;
  }
}
.main-nav .nav-link span {
  display: block;
  position: relative;
  padding-left: 1.35em;
  line-height: 1.2;
  font-size: 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span {
    width: 100%;
    padding: 0;
    line-height: 1.35;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav .nav-link span {
    font-size: 1.4rem;
  }
}

.main-nav .nav-link span:first-of-type::after {
  content: "★";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #1e2380;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span:first-of-type::after {
    display: none;
  }
}
.main-nav .nav-link:hover {
  color: #1b65aa;
  text-decoration: none;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: #25418f;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home {
    display: none;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-idn .nav-link {
    height: 70px;
  }
}

/* ドロップダウンナビ */
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    width: 100%;
    padding: 1.5rem;
    background-color: #25418f;
  }
}
@media screen and (min-width: 1440px), print {
  .sub-nav {
    padding: 2rem 2rem 2rem 6rem;
  }
}

.sub-nav-inner {
  position: relative;
  margin: -1px 0 0;
  padding: 0 5px;
  background-color: #25418f;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
}

.sub-nav-label {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        align-self: center;
    display: block;
  }
}

.sub-nav-label a {
  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;
  line-height: 1em;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1280px), print {
  .sub-nav-label a {
    font-size: 2.4rem;
  }
}

.sub-nav-label a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-label a::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        align-self: center;
    display: block;
    height: 1px;
    margin: 0 1rem;
    background-color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1440px), print {
  .sub-nav-label a::after {
    margin: 0 2rem;
  }
}

.sub-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin: 0 0 -1px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-items {
    margin: 0 -0.3rem -0.3rem 0;
  }
}

.sub-nav-items li {
  width: 100%;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-items li {
    width: auto;
    padding: 0 0.3rem 0.3rem 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-items li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}

.sub-nav-items a {
  display: block;
  position: relative;
  padding: 1em;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-items a {
    padding: 1.5rem 2rem;
    color: #151515;
    text-align: center;
    background-color: #fff;
  }
}
@media screen and (min-width: 1280px), print {
  .sub-nav-items a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px), print {
  .sub-nav-items a {
    padding: 2rem 4rem;
  }
}

.sub-nav-items a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-items a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/* ドロップダウンナビ */
.dropdown-menu {
  display: none;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .dropdown-menu {
    position: static !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media screen and (min-width: 1100px), print {
  .dropdown-menu {
    display: block;
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
  }
}
.dropdown-menu.show {
  display: block;
}

@media screen and (min-width: 1100px), print {
  .dropdown-menu.show {
    pointer-events: auto;
    opacity: 1;
  }
}
/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 1099.98px) {
  .sub-nav-button {
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 0.35rem;
    border: 1px solid #ddd;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    position: relative;
    width: 100%;
    height: 85px;
    margin-bottom: -85px;
  }
}
.sub-nav-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border: none;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button::before {
    display: none;
  }
}

.sub-nav-button .btn-icon {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button .btn-icon {
    display: block;
    position: absolute;
    right: 0;
    bottom: calc(50% - 1.5em);
    left: 0;
    width: 100%;
  }
}

.sub-nav-button .btn-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.sub-nav-button.show::before {
  bottom: -0.75rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button.show::before {
    display: none;
  }
}

.sub-nav-button.show .btn-icon::before,
.sub-nav-button:hover .btn-icon::before {
  bottom: -0.5rem;
  border-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ドロップダウンナビ（ hover + active ）*/
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover,
  .sub-nav-button.show {
    z-index: 10;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link,
  .sub-nav-button.show + .nav-link,
  .sub-nav-button.show + .nav-link:hover {
    color: #fff;
    background-color: #25418f;
  }
}
.nav-report .sub-nav-button .btn-icon {
  bottom: calc(50% - 2.25em);
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: none;
}

@media screen and (max-width: 1099.98px) {
  .nav-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    outline: none;
    z-index: 950;
  }
  .nav-open .nav-button {
    display: none;
  }
  .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #25418f;
  }
  .nav-button-icon::before, .nav-button-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #25418f;
  }
  .nav-button-icon:before {
    margin-top: -8px;
  }
  .nav-button-icon:after {
    margin-top: 8px;
  }
  .nav-button:after {
    content: "MENU";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    color: #25418f;
    text-align: center;
  }
}
/* ナビゲーション閉じるボタン */
.nav-close-button {
  display: none;
}

@media screen and (max-width: 1099.98px) {
  .nav-close-button {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    z-index: 10;
  }
  .nav-close-button .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: none;
  }
  .nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #1e2380;
  }
  .nav-close-button .nav-button-icon::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-close-button .nav-button-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav-close-button:after {
    content: "CLOSE";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    color: #25418f;
    text-align: center;
  }
}
/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 900;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.4;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .is-fixed .nav {
    position: fixed;
    top: -60px;
    background-color: #fff;
    z-index: 1000;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}
@media screen and (min-width: 1280px) {
  .is-fixed .nav .main-nav {
    padding-left: 0;
  }
}
/* --------------------------------

  main

-------------------------------- */
.main {
  padding: 3em 1em 0;
  /* background: url(../img/base/bg.jpg) no-repeat top right;
  background-size: auto 27rem; */
}
@media screen and (min-width: 768px), print {
  .main {
    /* background-size: auto 40rem; */
  }
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em 0;
    /* background-size: auto 62rem; */
  }
}

.home .main {
  padding-top: 0;
  background: none;
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  padding: 5rem 1.5rem;
  /* background: #fff url(../img/base/footer.jpg) no-repeat bottom left;
  background-size: auto 27rem; */
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 7rem 3rem;
    /* background-size: auto 44.8rem; */
  }
}

.footer-logo {
  width: 160px;
  margin: 0 auto 1em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .footer-logo {
    width: auto;
  }
}
.footer-name {
  font-size: 0.9em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .footer-name {
    font-size: 1.1em;
  }
}
.footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  max-width: 36rem;
  margin: 0 auto 5rem;
}
@media screen and (min-width: 768px), print {
  .footer-link {
    max-width: 64rem;
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-link {
    max-width: 76rem;
  }
}

.footer-link li {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .footer-link li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-link li:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.footer-link a {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.4rem;
  color: #151515;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px), print {
  .footer-link a {
    margin: 0 -1px 0 0;
    border-radius: 0;
    border-top: none;
    border-bottom: none;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-link a {
    font-size: 1.6rem;
  }
}

/* ページトップ */
.pagetop {
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 1.5em auto 0;
  text-align: center;
  overflow: hidden;
  z-index: 100;
}

@media screen and (min-width: 640px), print {
  .pagetop {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin: 0;
  }
}
@media screen and (min-width: 768px), print {
  .pagetop {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 1100px) {
  .is-fixed .pagetop {
    opacity: 1;
    pointer-events: auto;
  }
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 0.35rem;
  border: 1px solid #ddd;
}

@media screen and (min-width: 768px), print {
  .pagetop a {
    border: none;
    background-color: #25418f;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop a {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
}
.pagetop a:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .pagetop a:hover {
    border-color: #1b65aa;
    background-color: #1b65aa;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
}
@media screen and (min-width: 768px), print {
  .pagetop a:hover:before {
    border-color: #fff;
  }
}
.pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px), print {
  .pagetop a:before {
    border-color: #fff;
  }
}
/* コピーライト */
.copy {
  display: block;
  position: relative;
  padding: 1.5em 0 0;
  text-align: center;
}

.copy small {
  display: block;
  font-size: 0.8em;
}

.copy span {
  display: none;
}

@media screen and (min-width: 768px), print {
  .copy span {
    display: inline;
  }
}
/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  background: #fff url(../img/base/title.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    background-position: center;
  }
}
.page-title::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 0.3rem;
  margin: auto;
  background-color: #25418f;
}
@media screen and (min-width: 768px), print {
  .page-title::before {
    width: 14rem;
    height: 0.5rem;
  }
}

.page-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 16rem;
}
@media screen and (min-width: 768px), print {
  .page-title-inner {
    height: 22rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-inner {
    height: 24.5rem;
  }
}

.page-title-name {
  display: block;
  line-height: 1.25;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  color: #25418f;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px), print {
  .page-title-name {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-name {
    font-size: 3.6rem;
    letter-spacing: 0.025em;
  }
}

.page-title-name span {
  display: block;
  margin-top: 0.15em;
  font-weight: 700;
  font-size: 0.65em;
}
@media screen and (min-width: 768px), print {
  .page-title-name .br {
    display: none;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1200px;
    background: none;
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section:not(:last-child) {
  margin-bottom: 3em;
}

@media screen and (min-width: 1100px), print {
  .section:not(:last-child) {
    margin-bottom: 5em;
  }
}
.section .inner {
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .section .inner {
    line-height: 1.8;
  }
}
.section-secondary {
  margin: -1em -1em;
  padding: 2em 1em;
  background-color: #eee;
  background-repeat: repeat;
  background-position: top;
  background-size: 250px auto;
}

@media screen and (min-width: 1100px), print {
  .section-secondary {
    margin: -5em -2em 0;
    padding: 5em 2em;
    background-size: auto;
  }
  .section-secondary:not(:first-of-type) {
    margin-top: -4em;
  }
}
.section-secondary .inner {
  padding: 1em;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    padding: 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .section-secondary .inner {
    padding: 3em;
  }
}
.section-header {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2em;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .section-header {
    margin-bottom: 2em;
  }
}
.section-heading {
  padding-top: 1em;
  padding-bottom: 1em;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.4em;
  color: #1e2380;
  text-align: center;
  border-top: 1px solid #1e2380;
  border-bottom: 1px solid #1e2380;
}

@media screen and (min-width: 768px), print {
  .section-heading {
    font-size: 3.2rem;
  }
}
.section-heading .sm {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.65em;
  margin-top: -0.35em;
}

.section-title {
  padding: 0 0 0.75em;
  line-height: 1.3;
  font-size: 1.2em;
  color: #1e2380;
  text-align: center;
  border-bottom: 5px double #1e2380;
}

@media screen and (min-width: 1100px), print {
  .section-title {
    font-size: 1.4em;
  }
}
.section-container:not(:last-child) {
  margin-bottom: 3em;
}

.section-container::after {
  content: "";
  display: table;
  clear: both;
}

/* メイングラフィック */
.ecla-hero-section {
  position: relative;
  padding: 0 0 5rem 0;
  margin: 0 -1em 5rem;
  background-color: #FFFEEE;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-section {
    height: 46.5rem;
    /* margin-bottom: 0; */
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-section {
    height: 74rem;
    /* margin: 0 -2em; */
    margin: 0 -2em 7rem;
    padding: 9rem 0 0 5rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-section {
    height: 92rem;
  }
}
.ecla-hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: -20.5%;
  right: 0;
  bottom: 0;
  left: -40%;
  width: 180%;
  height: 100%;
  background: url(../img/top/bg2.jpg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-section::before {
    top: auto;
    /* bottom: -25%; */
    bottom: 0;
    left: 0;
    width: 100%;
    background-position: bottom;
    background-size: 100rem auto;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-section::before {
    /* bottom: -20rem; */
    background-size: 160rem auto;
  }
}
/* .ecla-hero-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/bg1.png) top left no-repeat;
  background-size: auto 25%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-section::after {
    background-size: auto 26rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-section::after {
    background-size: auto;
  }
} */
.ecla-hero-section .inner {
  max-width: 1600px;
  z-index: 10;
}

.ecla-hero-en {
  width: 50%;
  margin-bottom: 5%;
  padding: 7% 0 0 6%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-en {
    width: auto;
    margin-bottom: 4rem;
    padding: 4rem 0 0 3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-en {
    margin-bottom: 8.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-en {
    margin-bottom: 10rem;
  }
}
.ecla-hero-en img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-en img {
    width: 20rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-en img {
    width: 24rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-en img {
    width: 30.2rem;
  }
}

.ecla-hero-img {
  width: 61%;
  margin: 0 0 10% auto;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-img {
    position: absolute;
    top: 4rem;
    right: 0;
    margin: 0;
    width: 38rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-img {
    top: 0;
    width: 54rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-img {
    width: 67.5rem;
  }
}
.ecla-hero-img img {
  width: 100%;
}

.ecla-hero-main {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-main {
    max-width: calc(100% - 35rem);
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-main {
    max-width: calc(100% - 54rem);
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-main {
    max-width: 80rem;
  }
}

.ecla-hero-logo {
  width: 85%;
  margin: 0 auto 7.5%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-logo {
    width: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-logo {
    max-width: 48rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-logo {
    max-width: none;
    margin-bottom: 4rem;
  }
}
.ecla-hero-logo img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-logo img {
    width: 33rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-logo img {
    width: 60.6rem;
  }
}

.ecla-hero-course dt {
  width: 80%;
  margin: 0 auto 0.5rem;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-course dt {
    width: auto;
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-course dt {
    width: 40rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-course dt {
    width: auto;
  }
}
.ecla-hero-course dt img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-course dt img {
    width: 30rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-course dt img {
    width: 51.2rem;
  }
}

.ecla-hero-course dd {
  display: inline-block;
  vertical-align: top;
  margin: 1rem 0.5rem 0;
}

.ecla-hero-course a {
  display: block;
  line-height: 1.2;
  font-weight: 700;
  font-size: calc(1rem + 1vw);
  color: #25418f;
  letter-spacing: 0.25em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px), print {
  .ecla-hero-course a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-hero-course a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-course a {
    font-size: 2.4rem;
  }
}
.ecla-hero-course a::after {
  content: "";
  display: block;
  height: 0.3rem;
  margin-top: 0.5rem;
  background-color: #25418f;
}
@media screen and (min-width: 1440px), print {
  .ecla-hero-course a::after {
    height: 0.5rem;
    margin-top: 1rem;
  }
}
.ecla-hero-course a:hover {
  text-decoration: none;
  color: #1b65aa;
}
.ecla-hero-course a:hover::after {
  background-color: #1b65aa;
}

/* 導入部 */
.ecla-leading-section {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .ecla-leading-section {
    margin-bottom: 5rem;
  }
}
.ecla-leading-header {
  margin-bottom: 3rem;
  padding: calc(1.4rem + 1.5vw) 0;
  line-height: 1.4;
  font-weight: 700;
  font-size: calc(1.6rem + 1vw);
  color: #25418f;
  text-align: center;
  border-top: 1px solid #25418f;
  border-bottom: 1px solid #25418f;
}
@media screen and (min-width: 768px), print {
  .ecla-leading-header {
    padding: 2.5rem 0;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-leading-header {
    margin-bottom: 5rem;
    padding: 3.5rem 0;
    line-height: 1.2;
    font-size: 3.2rem;
  }
}
.ecla-leading-header .br {
  display: block;
}
@media screen and (min-width: 768px), print {
  .ecla-leading-header .br {
    display: inline;
    margin-right: 0.5em;
  }
}
.ecla-leading-body {
  line-height: 1.6;
}
@media screen and (min-width: 1100px), print {
  .ecla-leading-body {
    line-height: 1.8;
    font-size: 1.8rem;
  }
}

/* バナー一覧 */
.ecla-menu {
  margin-right: auto;
  margin-left: auto;
}

.ecla-menu-section {
  margin-right: -1em;
  margin-left: -1em;
}

@media screen and (min-width: 1100px), print {
  .ecla-menu-section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.ecla-menu-section .inner {
  max-width: none;
}

.ecla-menu-container {
  padding-right: 0.35rem;
  padding-left: 0.35rem;
}

@media screen and (min-width: 768px), print {
  .ecla-menu-container {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-menu-container {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.ecla-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ecla-menu li {
  width: 50%;
}

@media screen and (min-width: 768px), print {
  .ecla-menu li {
    width: 25%;
  }
}
.ecla-menu a {
  display: block;
  color: #25418f;
}

.ecla-menu a:hover {
  color: #1b65aa;
  text-decoration: none;
}

.ecla-menu a:hover img {
  opacity: 0.75;
}

.ecla-menu a:hover .icon {
  fill: #1b65aa;
}

.ecla-menu img {
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.ecla-menu .label {
  display: block;
  margin-top: 1rem;
  margin-right: -3em;
  margin-left: -3em;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1rem;
  text-align: center;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (min-width: 360px), print {
  .ecla-menu .label {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-menu .label {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
.ecla-menu .icon {
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  fill: #ddd;
}

@media screen and (min-width: 1100px), print {
  .ecla-menu .icon {
    width: 1.2em;
    height: 1.2em;
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
}
.ecla-menu-primary {
  padding: 0 1.5rem 5rem;
}
@media screen and (min-width: 1100px), print {
  .ecla-menu-primary {
    padding: 0 3rem;
  }
}

.ecla-menu-primary .ecla-menu {
  max-width: 1012px;
}

.ecla-menu-primary ul {
  margin: 0 -1.5rem -2rem 0;
}
@media screen and (min-width: 768px), print {
  .ecla-menu-primary ul {
    margin: 0 -1.5rem -3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-menu-primary ul {
    margin: 0 -4rem 0 0;
  }
}

.ecla-menu-primary li {
  padding: 0 1.5rem 2rem 0;
}
@media screen and (min-width: 768px), print {
  .ecla-menu-primary li {
    padding: 0 1.5rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-menu-primary li {
    padding: 0 4rem 6rem 0;
  }
}

.ecla-menu-primary img {
  border-radius: 100%;
}

.ecla-menu-primary .label {
  display: block;
  position: relative;
  margin-top: 0;
  padding-top: 3rem;
}

.ecla-menu-primary .label::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.25rem;
  right: 0;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}

.ecla-menu-primary a:hover .label::before {
  top: 1.5rem;
}

.ecla-menu-secondary {
  padding: 5rem 1.5rem;
  background-color: #f0f4f9;
}
@media screen and (min-width: 1100px), print {
  .ecla-menu-secondary {
    padding: 7rem 3rem;
  }
}

.ecla-menu-secondary .ecla-menu {
  max-width: 1040px;
}

.ecla-menu-secondary ul {
  margin: 0 -0.5rem -1.5rem 0;
}
@media screen and (min-width: 375px), print {
  .ecla-menu-secondary ul {
    margin: 0 -1rem -1.5rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .ecla-menu-secondary ul {
    margin: 0 -1.5rem -1.5rem 0;
  }
}

.ecla-menu-secondary li {
  padding: 0 0.5rem 1.5rem 0;
}
@media screen and (min-width: 375px), print {
  .ecla-menu-secondary li {
    padding: 0 1rem 1.5rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .ecla-menu-secondary li {
    padding: 0 1.5rem 1.5rem 0;
  }
}

.ecla-menu-secondary img {
  border-radius: 1rem;
}

/* --------------------------------

  id02 経済法学科とは

-------------------------------- */
/* 導入文 */
@media screen and (min-width: 1100px), print {
  .ecla-intro-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-intro-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.ecla-intro-side {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .ecla-intro-side {
    width: 52.4rem;
    margin-bottom: 0;
    margin-left: 2em;
  }
}
.ecla-intro-head {
  margin-bottom: 1em;
}

@media screen and (max-width: 1099.98px) {
  .ecla-intro-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1099.98px) {
  .ecla-intro-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.ecla-intro-heading {
  font-size: 1.7em;
  line-height: 1.2em;
  color: #25418f;
}

@media screen and (min-width: 480px), print {
  .ecla-intro-heading {
    font-size: 2.4em;
  }
}
@media screen and (min-width: 1200px), print {
  .ecla-intro-heading {
    font-size: 3.4em;
  }
}
.ecla-intro-heading .br {
  display: block;
}

@media screen and (max-width: 1099.98px) {
  .ecla-intro-img {
    max-width: 40rem;
    margin: auto;
  }
}

.ecla-intro-img img {
  width: 100%;
}

.ecla-intro-description {
  line-height: 1.6;
}
@media screen and (min-width: 1100px), print {
  .ecla-intro-description {
    font-size: 1.2em;
  }
}

/* 経済法学科の特長 */
.ecla-features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -2em 0;
}
@media screen and (min-width: 1100px), print {
  .ecla-features-list {
    margin: 0 -1.5em -1.5em 0;
  }
}
.ecla-features-item {
  width: 100%;
  padding: 0 1em 2em 0;
}
@media screen and (min-width: 768px), print {
  .ecla-features-item {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-features-item {
    padding: 0 1.5em 1.5em 0;
  }
}
.ecla-features dt {
  margin-bottom: 1em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.2;
  color: #25418f;
  text-align: center;
  border-top: 1px solid #25418f;
  border-bottom: 1px solid #25418f;
}
@media screen and (min-width: 768px), print {
  .ecla-features dt {
    font-size: 1em;
  }
}
@media screen and (min-width: 992px), print {
  .ecla-features dt {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-features dt {
    font-size: 1.4em;
  }
}
.ecla-features dd {
  line-height: 1.6;
}
.ecla-features-img {
  margin-top: 2em;
}
@media screen and (min-width: 1100px), print {
  .ecla-features-img {
    margin-top: 3em;
  }
}

/* ４年間の学び */
.ecla-learning-item {
  position: relative;
  padding-top: 4rem;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-item {
    padding-top: 5rem;
  }
}
.ecla-learning-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin: 1.5rem auto 3rem;
  border-right: 1px solid #f7b155;
  border-bottom: 1px solid #f7b155;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-item:not(:last-child)::after {
    width: 3rem;
    height: 3rem;
  }
}

.ecla-learning-inner {
  max-width: 88rem;
  margin: auto;
  padding: 3.8em 1em 1em;
  border-radius: 1em;
  border: 3px solid #eee;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-inner {
    padding: 4.4em 2em 2em;
  }
}

.ecla-learning-head {
  margin-bottom: 1em;
}

.ecla-learning-body {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .ecla-learning-body {
    text-align: center;
  }
}

.ecla-learning-foot {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #eee;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-foot {
    margin-top: 2em;
    padding-top: 2em;
  }
}

.ecla-learning-title {
  line-height: 1.2;
  text-align: center;
}

.ecla-learning-title .caption {
  display: block;
  position: relative;
  max-width: 13.5em;
  margin: 0 auto 1.5rem;
  padding: 0.5em 0;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 0.5rem;
  background-color: #f18d00;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-title .caption {
    font-size: 1.8rem;
  }
}
.ecla-learning-title .caption::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #f18d00 transparent transparent transparent;
}

.ecla-learning-title .grader {
  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: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 9rem;
  height: 9rem;
  margin: auto;
  padding: 0 0 0.2em;
  font-size: 1.4em;
  color: #1e2380;
  border-radius: 100%;
  border: 3px solid #f7b155;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-title .grader {
    width: 10.8rem;
    height: 10.8rem;
    font-size: 3.2rem;
  }
}

.ecla-learning-title .grader-in {
  display: block;
}

.ecla-learning-title .text {
  display: inline-block;
  margin: 0 -0.2em 0 0.2em;
  font-size: 0.7em;
}

.ecla-learning-title .heading {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  color: #3252a3;
}
@media screen and (min-width: 1100px), print {
  .ecla-learning-title .heading {
    font-size: 3rem;
  }
}

.ecla-learning-imgs {
  text-align: center;
  margin-top: 1em;
}
@media screen and (min-width: 480px), print {
  .ecla-learning-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ecla-learning-img {
  margin: 0.25rem 0.25rem 0;
}

.ecla-learning-img figcaption {
  margin-top: 0.8rem;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px), print {
  .ecla-supporter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ecla-supporter-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ecla-supporter-img {
  margin-top: 1em;
}
@media screen and (min-width: 768px), print {
  .ecla-supporter-img {
    width: 24rem;
    margin: 0 0 0 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .ecla-supporter-img {
    width: 27.8rem;
    margin-left: 2em;
  }
}
.ecla-supporter-title {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.8rem;
  color: #3252a3;
  border-bottom: 3px solid #3252a3;
}
@media screen and (min-width: 1100px), print {
  .ecla-supporter-title {
    font-size: 2rem;
  }
}

/* 各コースのキーワードおよび想定される典型的な学生像 */
.course-guidemap {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
.course-guidemap table {
  display: block;
  position: relative;
  line-height: 1.5;
}
.course-guidemap th,
.course-guidemap td {
  vertical-align: top;
}
.course-guidemap thead {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap thead {
    display: block;
  }
}
.course-guidemap thead tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1rem;
}
.course-guidemap thead th {
  text-align: center;
}
.course-guidemap tbody {
  display: block;
  position: relative;
  counter-reset: course_title;
}
.course-guidemap tbody tr {
  display: block;
  border-width: 1px;
  border-style: solid;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap tbody tr {
    display: table;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
  }
}
.course-guidemap tbody tr:not(:last-child) {
  margin-bottom: 1rem;
}
.course-guidemap tbody th,
.course-guidemap tbody td {
  padding: 2rem;
}
@media screen and (max-width: 1099.98px) {
  .course-guidemap tbody th,
  .course-guidemap tbody td {
    display: block;
    padding: 1em;
  }
}
.course-guidemap tbody td {
  border-top-width: 1px;
  border-top-style: solid;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap tbody td {
    border-top: none;
    border-left-width: 1px;
    border-left-style: solid;
  }
}
@media screen and (min-width: 1100px), print {
  .course-guidemap .keyword {
    width: 25%;
  }
}
@media screen and (min-width: 1200px), print {
  .course-guidemap .keyword {
    width: 30%;
  }
}
@media screen and (min-width: 1100px), print {
  .course-guidemap .student {
    width: 30%;
  }
}
@media screen and (min-width: 1100px), print {
  .course-guidemap .example {
    width: 25%;
  }
}
.course-guidemap-title {
  display: block;
  line-height: 1.2;
  font-size: 2rem;
  color: #fff;
}
.course-guidemap-title::before {
  counter-increment: course_title;
  content: counter(course_title) " /";
  margin-right: 1rem;
  font-size: 2.4rem;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap-title::before {
    display: block;
    margin: 0 0 1rem 0.2rem;
    font-size: 3rem;
  }
}
.course-guidemap-title span {
  margin-bottom: 0.35rem;
  font-size: 2.4rem;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap-title span {
    display: block;
    font-size: 1.2em;
  }
}
.course-guidemap-label {
  margin: -1.6rem -1.6rem 1rem;
  padding: 1rem 1.6rem;
  line-height: 1.2;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap-label {
    display: none;
  }
}
.course-guidemap-keyword {
  font-size: 1.4rem;
}
.course-guidemap-keyword dt {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 1200px), print {
  .course-guidemap-keyword dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.course-guidemap-keyword ul:not(:last-child) {
  margin-right: 2rem;
}
.course-guidemap-description {
  font-size: 1.4rem;
}
.course-guidemap-example {
  font-size: 1.4rem;
}
@media screen and (min-width: 1100px), print {
  .course-guidemap-example {
    font-size: 1.2rem;
  }
}
.course-guidemap-finance {
  border-color: #8ec555;
}
.course-guidemap-finance td {
  border-color: #8ec555;
}
.course-guidemap-finance .course {
  background-color: #8ec555;
}
.course-guidemap-finance li::before {
  background-color: #8ec555 !important;
}
.course-guidemap-finance .course-guidemap-label {
  border-color: #8ec555;
}
.course-guidemap-public {
  border-color: #1eb3ea;
}
.course-guidemap-public td {
  border-color: #1eb3ea;
}
.course-guidemap-public .course {
  background-color: #1eb3ea;
}
.course-guidemap-public li::before {
  background-color: #1eb3ea !important;
}
.course-guidemap-public .course-guidemap-label {
  border-color: #1eb3ea;
}
.course-guidemap-law {
  border-color: #6357a3;
}
.course-guidemap-law td {
  border-color: #6357a3;
}
.course-guidemap-law .course {
  background-color: #6357a3;
}
.course-guidemap-law li::before {
  background-color: #6357a3 !important;
}
.course-guidemap-law .course-guidemap-label {
  border-color: #6357a3;
}

/* --------------------------------

  id03 カリキュラム

-------------------------------- */
/* コースの紹介 */
@media screen and (min-width: 1100px), print {
  .course-description {
    font-size: 1.05em;
  }
}

/* こんなことが学べます */
.course-intro {
  height: 100%;
}
.course-intro dt {
  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;
  height: 6rem;
  margin: 0 2rem 0.75em 0;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  background-color: #ccc;
}
@media screen and (min-width: 1100px), print {
  .course-intro dt {
    height: 9rem;
    margin: 0 2rem 1em 0;
    font-size: 2.2rem;
  }
}
.course-intro dt::before, .course-intro dt::after {
  content: "";
  display: block;
  position: absolute;
  right: -2rem;
  width: 0;
  height: 0;
  border-style: solid;
}
.course-intro dt::before {
  top: 0;
  border-width: 3rem 0 0 2rem;
  border-color: transparent transparent transparent #ccc;
}
@media screen and (min-width: 1100px), print {
  .course-intro dt::before {
    border-width: 4.5rem 0 0 2rem;
  }
}
.course-intro dt::after {
  bottom: 0;
  border-width: 3rem 2rem 0 0;
  border-color: #ccc transparent transparent transparent;
}
@media screen and (min-width: 1100px), print {
  .course-intro dt::after {
    border-width: 4.5rem 2rem 0 0;
  }
}
.course-intro dd {
  line-height: 1.8;
  font-size: 1.4rem;
}
.course-intro.__finance dt {
  background-color: #8ec555;
}
.course-intro.__finance dt::before {
  border-left-color: #8ec555;
}
.course-intro.__finance dt::after {
  border-top-color: #8ec555;
}
.course-intro.__public dt {
  background-color: #1eb3ea;
}
.course-intro.__public dt::before {
  border-left-color: #1eb3ea;
}
.course-intro.__public dt::after {
  border-top-color: #1eb3ea;
}
.course-intro.__law dt {
  background-color: #6357a3;
}
.course-intro.__law dt::before {
  border-left-color: #6357a3;
}
.course-intro.__law dt::after {
  border-top-color: #6357a3;
}
.course-intro-container {
  margin-top: 2em;
  padding: 0 1em 1em;
  background-color: #feefdd;
}
@media screen and (min-width: 1100px), print {
  .course-intro-container {
    padding: 0 2em 2em;
  }
}
.course-intro-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1.5em;
  padding: 1em 0;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2rem;
  color: #253f8d;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .course-intro-title {
    margin: 0;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .course-intro-title {
    font-size: 3.2rem;
  }
}
.course-intro-title::before, .course-intro-title::after {
  content: "";
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
  width: 1em;
  height: 1px;
  border-top: 1px solid #253f8d;
}
@media screen and (min-width: 768px), print {
  .course-intro-title::before, .course-intro-title::after {
    width: 1.5em;
  }
}
.course-intro-title::before {
  margin: 0.15em 0.35em 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.course-intro-title::after {
  margin: 0.15em 0 0 0.35em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.course-intro-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -2em 0;
}
@media screen and (min-width: 1100px), print {
  .course-intro-list {
    margin: 0 -2em -2em 0;
  }
}
.course-intro-item {
  width: 100%;
  padding: 0 1em 2em 0 !important;
}
@media screen and (min-width: 768px), print {
  .course-intro-item {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1100px), print {
  .course-intro-item {
    padding: 0 2em 2em 0 !important;
  }
}

/* 各コース科目一覧 */
.course-subject {
  overflow: hidden;
}

.course-subject:not(:last-child) {
  margin-bottom: 3em;
}

.course-subject-head {
  margin-bottom: 0.5em;
}

.course-subject-unit {
  margin-bottom: 2.5em;
}

@media screen and (min-width: 768px), print {
  .course-subject-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.course-subject-unit dd:before {
  content: "【";
}

.course-subject-unit dd:after {
  content: "】";
}

.course-subject-heading {
  font-size: 100%;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2;
}

/* 経済法学科で学ぶデータサイエンス */
@media screen and (min-width: 768px), print {
  .data_science-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.data_science-img {
  max-width: 28rem;
  margin: 1.5em auto 0;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .data_science-img {
    width: 28rem;
    max-width: none;
    margin: 0 0 0 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .data_science-img {
    width: 37.4rem;
  }
}
.data_science-img img:not(:first-child) {
  margin-top: 1em;
}
@media screen and (min-width: 1100px), print {
  .data_science-description {
    font-size: 1.05em;
  }
}
.data_science-label {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .data_science-label {
    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;
    height: 100%;
  }
}
.data_science-label::before {
  content: "配当年次";
  display: block;
  font-size: 2.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.data_science-field {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .data_science-field {
    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;
    height: 4.8rem;
    line-height: 1.2;
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    background-color: #aaa893;
  }
}
.data_science-field::before {
  content: "分野";
  display: block;
}
.data_science-grade {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .data_science-grade {
    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;
    height: calc(100% - 3rem);
    margin: 1.5rem 3rem 1.5rem 0;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    background-color: #aaa893;
  }
}
.data_science-grade .counter {
  display: block;
}
.data_science-grade .counter::before {
  counter-increment: data_science_fig;
  content: counter(data_science_fig);
}
.data_science-grade::before, .data_science-grade::after {
  content: "";
  display: block;
  position: absolute;
  right: -2rem;
  width: 2rem;
  height: 50%;
}
.data_science-grade::before {
  top: 0;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #aaa893)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #aaa893 50.5%) no-repeat top left/100% 100%;
}
.data_science-grade::after {
  bottom: 0;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #aaa893)) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #aaa893 50.5%) no-repeat top left/100% 100%;
}
.data_science-title {
  padding: 1em 1em 0;
  border-bottom: 1px solid #aaa893;
}
@media screen and (min-width: 768px), print {
  .data_science-title {
    padding: 2em 1em 0;
  }
}
@media screen and (min-width: 1100px), print {
  .data_science-title {
    padding: 1em 1em 0;
  }
}
.data_science-title .title {
  display: block;
  padding: 0.75em 0;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background-color: #3252a3;
}
@media screen and (min-width: 768px), print {
  .data_science-title .title {
    font-size: 2.2rem;
  }
}
.data_science-title .sm {
  margin-left: 0.5em;
  font-size: 0.8em;
}
@media screen and (min-width: 1100px), print {
  .data_science-title .sm {
    display: none;
  }
}
.data_science-cell {
  height: 100%;
  padding: 1em;
  border-bottom: 1px solid #aaa893;
  border-left: 1px dotted #aaa893;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .data_science-cell {
    padding: 1.5em;
  }
}
.data_science-cell.border-left-none {
  border-left: none;
}
.data_science-year {
  position: relative;
  margin: 0 2rem 0.75em 0;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #aaa893;
}
@media screen and (min-width: 768px), print {
  .data_science-year {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .data_science-year {
    display: none;
  }
}
.data_science-year::before, .data_science-year::after {
  content: "";
  display: block;
  position: absolute;
  right: -2rem;
  width: 2rem;
  height: 50%;
}
.data_science-year::before {
  top: 0;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #aaa893)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #aaa893 50.5%) no-repeat top left/100% 100%;
}
.data_science-year::after {
  bottom: 0;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #aaa893)) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #aaa893 50.5%) no-repeat top left/100% 100%;
}
@media screen and (max-width: 767.98px) {
  .data_science-list {
    font-size: 1.4rem;
  }
}
.data_science-list li::before {
  background-color: #231815 !important;
}
@media screen and (max-width: 1099.98px) {
  .data_science-empty {
    display: none;
  }
}

/* データサイエンス */
.data_science-fig {
  counter-reset: data_science_fig;
  margin: 2em -1em 0;
  padding: 0 1em 1em;
  background-color: #feefdd;
}
@media screen and (min-width: 768px), print {
  .data_science-fig {
    padding: 0 2em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .data_science-fig {
    margin: 3em 0 0;
    padding: 2em;
  }
  .data_science-fig .parent {
    display: grid;
    grid-template-columns: 110px repeat(3, 1fr);
    grid-template-rows: 48px repeat(4, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .data_science-fig .div1 {
    grid-area: 1/1/3/2;
  }
  .data_science-fig .div2 {
    grid-area: 1/2/2/5;
  }
  .data_science-fig .div3 {
    grid-area: 3/1/4/2;
  }
  .data_science-fig .div4 {
    grid-area: 2/2/3/3;
  }
  .data_science-fig .div5 {
    grid-area: 3/2/4/3;
  }
  .data_science-fig .div6 {
    grid-area: 4/2/5/3;
  }
  .data_science-fig .div7 {
    grid-area: 5/2/6/3;
  }
  .data_science-fig .div8 {
    grid-area: 4/1/5/2;
  }
  .data_science-fig .div9 {
    grid-area: 2/3/3/4;
  }
  .data_science-fig .div10 {
    grid-area: 3/3/4/4;
  }
  .data_science-fig .div11 {
    grid-area: 4/3/5/4;
  }
  .data_science-fig .div12 {
    grid-area: 5/3/6/4;
  }
  .data_science-fig .div13 {
    grid-area: 5/1/6/2;
  }
  .data_science-fig .div14 {
    grid-area: 2/4/3/5;
  }
  .data_science-fig .div15 {
    grid-area: 3/4/4/5;
  }
  .data_science-fig .div16 {
    grid-area: 4/4/5/5;
  }
  .data_science-fig .div17 {
    grid-area: 5/4/6/5;
  }
}

/* 学科基礎科目および基礎力養成科目 */
.basic-course table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  line-height: 1.5;
}

@media screen and (max-width: 1099.98px) {
  .basic-course table {
    display: block;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course thead {
    display: block;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course thead tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.3rem -0.3rem 0;
  }
}
.basic-course thead th,
.basic-course thead td {
  color: #fff;
  text-align: center;
}

.basic-course thead th {
  width: 110px;
  background-color: #ccc;
}

@media screen and (max-width: 1099.98px) {
  .basic-course thead th {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course thead td {
    display: block;
    width: 20%;
    padding: 0 0.3rem 0.3rem 0;
  }
}
@media screen and (max-width: 639.98px) {
  .basic-course thead td {
    width: 33.33333%;
  }
}
.basic-course thead span {
  display: block;
  padding: 0.5em 0;
}

.basic-course thead .finance {
  background-color: #8ec555;
}

.basic-course thead .public {
  background-color: #1eb3ea;
}

.basic-course thead .total {
  background-color: #6357a3;
}

@media screen and (max-width: 1099.98px) {
  .basic-course tbody {
    display: block;
    border-bottom: 1px solid #eee;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course tbody tr {
    display: block;
  }
}
.basic-course tbody th,
.basic-course tbody td {
  padding: 0.5em;
  font-size: 0.8em;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.basic-course tbody th {
  vertical-align: top;
  text-align: center;
  border-left: 1px solid #eee;
}

@media screen and (max-width: 1099.98px) {
  .basic-course tbody th {
    display: block;
    padding: 0.5em;
    font-size: 1em;
    text-align: left;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course tbody td {
    display: block;
    font-size: 0.8em;
    border-bottom: none;
    border-left: 1px solid #eee;
  }
}
/* 選択コース科目 */
.select-course-nav {
  display: block;
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .select-course-nav {
    display: none;
  }
}
.select-course-nav ul.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.3rem -0.3rem 0;
  overflow: hidden;
}

.select-course-nav ul.slick-dots li {
  width: 33.33333%;
  padding: 0 0.3rem 0.3rem 0;
}

@media screen and (min-width: 640px), print {
  .select-course-nav ul.slick-dots li {
    width: 20%;
  }
}
.select-course-nav ul.slick-dots li:before {
  display: none;
}

.select-course-nav ul.slick-dots li::after {
  content: "";
  display: block;
  padding: 0.5em 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.select-course-nav ul.slick-dots li:nth-child(1)::after {
  content: "金融・財政";
  background-color: #de7407;
}

.select-course-nav ul.slick-dots li:nth-child(2)::after {
  content: "経済分析";
  background-color: #00919c;
}

.select-course-nav ul.slick-dots li:nth-child(3)::after {
  content: "企業法務";
  background-color: #6d6a99;
}

.select-course-nav ul.slick-dots li:nth-child(4)::after {
  content: "公共法政策";
  background-color: #539b35;
}

.select-course-nav ul.slick-dots li:nth-child(5)::after {
  content: "法律総合";
  background-color: #ca516d;
}

.select-course-nav ul.slick-dots button {
  display: none;
}

.select-course-slider {
  margin: 0 -5px;
}

@media screen and (min-width: 1100px), print {
  .select-course-slider {
    position: relative;
    margin: 0;
    padding-left: 110px;
  }
}
@media screen and (min-width: 1100px), print {
  .select-course-slider::before {
    content: "コース名";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 40px;
    margin: auto;
    line-height: 38px;
    text-align: center;
    color: #fff;
    background-color: #ccc;
    z-index: 10;
  }
}
.select-course-slider .slide {
  padding: 0 5px;
}

@media screen and (min-width: 1100px), print {
  .select-course-slider .slide {
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .select-course-slider .slick-list {
    overflow: visible;
  }
}
.select-course-name {
  display: block;
  height: 40px;
  margin-bottom: 0.5em;
  font-size: 100%;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .select-course-name {
    margin-bottom: 0;
  }
}
.select-course-list {
  position: relative;
  border-top: 1px solid #eee;
}

@media screen and (min-width: 1100px), print {
  .select-course-list {
    border-top: none;
  }
}
.select-course-list li {
  position: relative;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

@media screen and (max-width: 1099.98px) {
  .select-course-list li {
    height: auto !important;
    border-left: 1px solid #eee;
  }
}
.select-course-list dl {
  padding: 0.5em;
}

@media screen and (min-width: 1100px), print {
  .select-course-list dl {
    padding-right: 0;
  }
}
.select-course-list dt {
  margin: -0.5em -0.5em 0.5em -0.5em;
  padding: 0.5em;
  border-bottom: 1px solid #eee;
  background-color: #f8f8f8;
}

@media screen and (min-width: 1100px), print {
  .select-course-list dt {
    display: none;
    position: absolute;
    top: 0;
    left: -110px;
    width: 110px;
    height: 100%;
    height: calc(100% + 1px);
    margin: 0;
    padding: 0.5em 0 0;
    font-size: 0.8em;
    text-align: center;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    background: none;
  }
}
.select-course-list dd {
  font-size: 0.8em;
  line-height: 1.5;
}

.select-course-list .push {
  font-weight: 700;
}

.select-course-note {
  clear: both;
  padding-top: 1em;
}

.select-course-note ol {
  counter-reset: course_note;
}

.select-course-note li {
  position: relative;
  padding-left: 3em;
  font-size: 0.85em;
  line-height: 1.5;
}

.select-course-note li:before {
  counter-increment: course_note;
  content: "注 " counter(course_note) "）";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.select-course .finance .select-course-name {
  background-color: #8ec555;
}

@media screen and (min-width: 1100px), print {
  .select-course .finance .select-course-list dt {
    display: block;
  }
}
.select-course .finance .select-course-list .push {
  color: #8ec555;
}

.select-course .public .select-course-name {
  background-color: #1eb3ea;
}

.select-course .public .select-course-list .push {
  color: #1eb3ea;
}

.select-course .total .select-course-name {
  background-color: #6357a3;
}

.select-course .total .select-course-list .push {
  color: #6357a3;
}

/* --------------------------------

  id04 基礎力養成塾

-------------------------------- */
/* 導入文 */
/* .sp-intro-container {
  margin-bottom: 2em;
} */
@media screen and (min-width: 1100px), print {
  .sp-intro-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* @media screen and (min-width: 1280px), print {
  .sp-intro-container {
    margin-bottom: 3em;
  }
} */

.sp-intro-img {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .sp-intro-img {
    width: 35rem;
    margin: 0 0 0 2em;
  }
}
@media screen and (min-width: 1280px), print {
  .sp-intro-img {
    width: 39.6rem;
  }
}

.sp-intro-title {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .sp-intro-title {
    margin-bottom: 1.5em;
  }
}

.sp-intro-description {
  line-height: 1.6;
}
@media screen and (min-width: 1100px), print {
  .sp-intro-description {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1280px), print {
  .sp-intro-description {
    font-size: 1.2em;
  }
}

/* 担当教員（主な研究分野）と内容 */
.sp-teacher-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}
.sp-teacher-item {
  width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 640px), print {
  .sp-teacher-item {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .sp-teacher-item {
    width: 33.3333%;
  }
}
.sp-teacher-inner {
  position: relative;
  height: 100%;
  padding: 1em;
  border: 1px solid #3252a3;
  background-color: #fff;
  z-index: 1;
}
.sp-teacher-head {
  margin-bottom: 0.75em;
  text-align: center;
  background-color: #eeeee7;
}
@media screen and (min-width: 768px), print {
  .sp-teacher-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sp-teacher-body {
  line-height: 1.6;
}
@media screen and (min-width: 1100px), print {
  .sp-teacher-body {
    line-height: 1.8;
    font-size: 1.1em;
  }
}
.sp-teacher-title {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0.5rem 0;
  color: #3252a3;
  font-size: 1.4em;
}
@media screen and (min-width: 768px), print {
  .sp-teacher-title {
    padding: 0 0 0 1.5rem;
  }
}
@media screen and (min-width: 1200px), print {
  .sp-teacher-title {
    font-size: 1.6em;
  }
}
.sp-teacher-title span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.75em;
}
.sp-teacher-lesson {
  padding: 0.5em 0;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  background-color: #3252a3;
}
@media screen and (min-width: 768px), print {
  .sp-teacher-lesson {
    width: 6.5em;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px), print {
  .sp-teacher-lesson {
    font-size: 1.1em;
  }
}
.sp-teacher-lg {
  position: relative;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .sp-teacher-lg {
    margin-top: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
.sp-teacher-lg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50vw;
  width: 150vw;
  height: 100%;
  background-color: #3252a3;
}
@media screen and (min-width: 768px), print {
  .sp-teacher-lg .sp-teacher-head {
    max-width: calc(50% - 1.5em - 1px);
  }
}
@media screen and (min-width: 1100px), print {
  .sp-teacher-lg .sp-teacher-head {
    max-width: calc(33.33333% - 2em - 1px);
  }
}
@media screen and (min-width: 768px), print {
  .sp-teacher-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sp-teacher-img {
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sp-teacher-img {
    margin: 0 0 0 1em;
  }
}

/* スタディ・プランニング（経法SP） */
.sp-sheet-description {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .sp-sheet-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 5rem;
    font-size: 1.05em;
  }
}

.sp-sheet-img {
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .sp-sheet-img {
    width: 36.6rem;
    margin: 0 0 0 1.5em;
  }
}

.sp-sheet-heading {
  margin-bottom: 2rem;
  padding: 0.5em;
  line-height: 1.2;
  font-size: 1.3em;
  border-left: 5px solid #fbd3a0;
}
@media screen and (min-width: 1100px), print {
  .sp-sheet-heading {
    margin-bottom: 3rem;
    font-size: 1.8em;
  }
}
.sp-sheet-heading .sm {
  font-size: 0.75em;
}
@media screen and (max-width: 479.98px) {
  .sp-sheet-heading .sm {
    display: block;
    margin: 0.25em 0 0 -0.5em;
  }
}

.sp-sheet {
  border-collapse: collapse;
  width: 100%;
  line-height: 1.5;
  border-top: 1px solid #aaa893;
}

@media screen and (max-width: 767.98px) {
  .sp-sheet {
    display: block;
  }
  .sp-sheet caption,
  .sp-sheet tbody,
  .sp-sheet tr,
  .sp-sheet th,
  .sp-sheet td {
    display: block;
  }
  .sp-sheet th {
    width: auto;
  }
}
.sp-sheet:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .sp-sheet:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.sp-sheet caption {
  padding: 0.5em;
  line-height: 1.2;
  font-size: 1.1em;
  text-align: left;
  border-bottom: 1px solid #aaa893;
  background-color: #fbd3a0;
}
@media screen and (min-width: 1100px), print {
  .sp-sheet caption {
    font-size: 1.3em;
    border-top: 1px solid #aaa893;
    border-bottom: none;
  }
}
.sp-sheet caption::before {
  content: "■";
  margin-right: 0.35em;
}

.sp-sheet th,
.sp-sheet td {
  vertical-align: top;
  padding: 0.5em;
  font-size: 0.9em;
  border-bottom: 1px solid #aaa893;
}

@media screen and (min-width: 1100px), print {
  .sp-sheet th,
  .sp-sheet td {
    font-size: 1em;
  }
}
.sp-sheet th {
  background-color: #eeeee7;
}

@media screen and (min-width: 768px), print {
  .sp-sheet th {
    width: 18em;
  }
}
.sp-sheet td {
  background-color: #fff;
}

/* 養成塾体験記 */
.sp-experience.experience {
  margin-top: 2em;
  padding: 0;
  border: none;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sp-experience.experience {
    padding: 0 1em 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .sp-experience.experience .experience-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 -2em 0 0;
  }
}

.sp-experience-item {
  width: 100%;
}
@media screen and (min-width: 1100px), print {
  .sp-experience-item {
    width: 50%;
    padding: 0 2em 0 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .sp-experience-item:not(:last-child) {
    margin-bottom: 1em;
  }
}
.sp-experience-item dt {
  font-size: 0.9em;
}
@media screen and (min-width: 768px), print {
  .sp-experience-item dt {
    font-size: 1em;
  }
}
.sp-experience-item dd {
  margin-top: 0.5em;
}
.sp-experience-item .name {
  margin-right: 0.5em;
  font-size: 1.4em;
  color: #3252a3;
}
@media screen and (max-width: 1099.98px) {
  .sp-experience-item .profile {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .sp-experience-item .profile {
    margin-left: 1em;
  }
}

/* --------------------------------

  id05 サムライ対談・就職レポート・卒業生インタビュー

-------------------------------- */
/* 卒業生インタビュー */
.interview-img img {
  width: 100%;
}

.interview-profile {
  position: relative;
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .interview-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
}
.interview-profile-primary {
  padding-top: 1em;
}

.interview-profile .name {
  margin-top: 0.2em;
  line-height: 1em;
  font-size: 1.3em;
}

.interview-profile .name span {
  font-size: 1.25em;
  letter-spacing: 0.15em;
}

.interview-profile ul {
  margin-top: 0.5em;
}

@media screen and (min-width: 1100px), print {
  .interview-profile ul {
    margin-top: 0.5em;
    margin-left: auto;
  }
}
.interview-profile li {
  font-size: 0.9em;
}

.interview-profile-main {
  margin-top: 1em;
}
@media screen and (min-width: 1100px), print {
  .interview-profile-main {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 0;
    margin-left: 2em;
  }
}

.interview-qanda {
  line-height: 1.5;
}

.interview-qanda dt {
  margin-top: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em 0.5em 0.75em;
  color: #3252a3;
  border-left: 3px solid #3252a3;
}

.interview-qanda dd {
  font-size: 0.95em;
}

.interview-container:not(:last-child) {
  margin-bottom: 2em;
}

.interview-primary .interview-img {
  display: block;
  position: relative;
  margin: -1em -1em 0;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .interview-primary .interview-img {
    height: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .interview-primary .interview-img::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
.interview-primary .interview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1099.98px) {
  .interview-primary .interview-img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .interview-primary .interview-profile {
    margin-right: -1em;
    margin-left: -1em;
  }
}
@media screen and (min-width: 1100px), print {
  .interview-primary .interview-qanda dt {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767.98px) {
  .interview-secondary .interview-img {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .interview-secondary .interview-img::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .interview-secondary .interview-img img {
    display: block;
    position: absolute;
    top: 10%;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    -webkit-transform: translate(-50%, -10%);
    transform: translate(-50%, -10%);
  }
}
.interview-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1em -3em 0;
}

@media screen and (min-width: 1100px), print {
  .interview-row {
    margin: 0 -2em -2em 0;
  }
}
.interview-col {
  width: 100%;
  padding: 0 1em 3em 0;
}

@media screen and (min-width: 768px), print {
  .interview-col {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .interview-col {
    padding: 0 2em 2em 0;
  }
}
@media screen and (min-width: 768px), print {
  .interview-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    border: 1px solid #c9c7b5;
  }
}
.interview-inner-primary {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px), print {
  .interview-side {
    width: 35%;
  }
}
@media screen and (min-width: 1100px), print {
  .interview-side {
    width: 400px;
  }
}
@media screen and (min-width: 768px), print {
  .interview-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    padding: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .interview-main {
    padding: 3em;
  }
}
/* サムライ対談 */
.visitob-intro {
  margin-bottom: 1.5em;
  line-height: 1.4;
  font-size: 1.15em;
  color: #3252a3;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .visitob-intro {
    font-size: 1.5em;
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .visitob-intro .br {
    display: block;
  }
}
.visitob-intro .sm {
  font-size: 0.75em;
}

.visitob-profile {
  margin-bottom: 1em;
}

.visitob-interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}

.visitob-interview .col {
  width: 100%;
  padding: 0 1em 1em 0;
}

@media screen and (min-width: 1100px), print {
  .visitob-interview .col {
    width: 50%;
  }
}
.visitob-interview dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visitob-interview dt {
  width: 3em;
  font-weight: 700;
}

.visitob-interview dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  font-weight: 500;
}

.visitob-interview .question dt {
  color: #777;
}

.visitob-interview .answer dt {
  color: #3252a3;
}

.visitob-interview .img {
  max-width: 430px;
  margin: 1em auto 0;
}

.visitob-interview .img img {
  width: 100%;
}

/* 就職レポート */
.employment-rate-fig {
  max-width: 480px;
  margin: 0 auto 1em;
}

@media screen and (min-width: 1100px), print {
  .employment-rate-fig {
    float: right;
    width: 440px;
    margin: 0.35em 0 0 2em;
  }
}
.employment-rate-fig figcaption {
  position: relative;
  margin-bottom: 2em;
  text-align: center;
  border: 1px solid #3252a3;
  background-color: #feefdd;
}

.employment-rate-fig figcaption span {
  display: inline-block;
  position: relative;
  padding: 0.35em;
  font-weight: 700;
  font-size: 1.05em;
}

@media screen and (min-width: 1100px), print {
  .employment-rate-fig figcaption span {
    font-size: 1.15em;
  }
}
.employment-rate-fig figcaption::before, .employment-rate-fig figcaption::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: #3252a3 transparent transparent transparent;
}

.employment-rate-fig figcaption::before {
  bottom: -15px;
  border-top-color: #3252a3;
}

.employment-rate-fig figcaption::after {
  bottom: -14px;
  border-top-color: #feefdd;
}

.employment-rate-fig table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #3252a3;
}

.employment-rate-fig table th,
.employment-rate-fig table td {
  padding: 0.25em 0;
  font-size: 1.05em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .employment-rate-fig table th,
  .employment-rate-fig table td {
    font-size: 1.2em;
  }
}
.employment-rate-fig table th {
  width: 50%;
  color: #fff;
  border-bottom: 1px solid #fff;
  background-color: #3252a3;
}

.employment-rate-fig table td {
  border-bottom: 1px solid #3252a3;
  background-color: #fff;
}

.employment-rate-fig table tr:last-child th {
  border-bottom-color: #3252a3;
}

.employment-rate-fig table span {
  display: inline-block;
  width: 4.5em;
  text-align: right;
}

.employment-rate-note {
  margin-top: 1em;
}

.employment-rate-note li {
  font-size: 0.9em;
}

.employment-rate-note li:not(:last-child) {
  margin-bottom: 0.35em;
}

.employment-rate-note img {
  display: block;
  width: 300px;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.employment-fig {
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .employment-fig img {
    width: 60%;
    max-width: 640px;
  }
}
.employment-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 1100px), print {
  .employment-place {
    margin: 0 -1em 0 0;
  }
}
.employment-place-item {
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .employment-place-item {
    width: 33.33333%;
    padding: 0 1em 0 0;
  }
}
.employment-place-note {
  margin-top: 1em;
}

/* --------------------------------

  id06 教育・イベント

-------------------------------- */
.event-heading {
  margin-bottom: 1em;
  padding: 0.5em;
  text-align: center;
  border: 5px solid #f3f3f2;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .event-heading {
    margin-bottom: 2em;
    padding: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .event-description {
    font-size: 1.1em;
  }
}
.event-description .ft-sm {
  margin-top: 0.5em;
  font-size: 0.85em;
}
.event-img {
  margin-top: 2em;
}
.event-img .caption {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.event-sideimg {
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .event-sideimg {
    margin: 0 0 0 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .event-sideimg {
    margin-left: 2em;
  }
}
@media screen and (min-width: 768px), print {
  .event-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.event-experience {
  margin-top: 3em;
}

/* 過去の問題 */
.event-problem {
  margin-top: 1.5em;
  padding: 1em;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: left;
  background-color: #d9edfb;
}
@media screen and (min-width: 768px), print {
  .event-problem {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .event-problem {
    margin: 1em 0 2em;
  }
}
.event-problem dt {
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: -0.5em;
}
.event-problem dt::before {
  content: "［";
}
.event-problem dt::after {
  content: "］";
}
.event-problem dd {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .event-problem dd {
    margin: 0 0 0 1em;
    padding-left: 1em;
    border-left: 1px solid #231815;
  }
}

/* --------------------------------

  id07 教員＆ゼミ紹介

-------------------------------- */
/* 専任教員紹介 */
.teacher-intro {
  margin-bottom: 3em;
  padding: 1em;
  border: 5px solid #f3f3f2;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .teacher-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5rem;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.teacher-intro-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .teacher-intro-main {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-intro-side {
    margin-left: 5rem;
  }
}
.teacher-intro a {
  display: block;
  position: relative;
  max-width: 28rem;
  margin: auto;
  padding: 1.5rem 0;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  border-radius: 10em;
  background-color: #25418f;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media screen and (min-width: 1100px), print {
  .teacher-intro a {
    max-width: none;
    margin: 0;
    padding: 1.5rem 6rem 1.5rem 5rem;
  }
}
.teacher-intro a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 3rem;
  bottom: 0;
  width: 1.3rem;
  height: 1.3rem;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.teacher-intro a:hover {
  text-decoration: none;
  background-color: #1b65aa;
}
.teacher-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -3em 0;
}
@media screen and (min-width: 1100px), print {
  .teacher-list {
    margin: 0 -2em -3em 0;
  }
}
.teacher-item {
  width: 100%;
  padding: 0 1em 3em 0;
}
@media screen and (min-width: 768px), print {
  .teacher-item {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-item {
    padding: 0 2em 3em 0;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-item-lg {
    width: 100%;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-inner-lg {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.teacher-img {
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .teacher-img {
    width: 30rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-img {
    width: 18rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .teacher-img-lg {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-img-lg {
    width: 39rem;
  }
}
.teacher-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1100px), print {
  .teacher-main {
    margin-left: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .teacher-main-lg {
    margin-left: 3em;
  }
}
.teacher-name {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  line-height: 1.2;
  text-align: center;
  border-bottom: 5px solid #b5b39c;
}
@media screen and (min-width: 1100px), print {
  .teacher-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
}
.teacher-name .name {
  display: block;
  line-height: 1em;
  font-size: 2.6rem;
}
@media screen and (min-width: 1100px), print {
  .teacher-name .name {
    font-size: 3.2rem;
  }
}
.teacher-name .name span {
  display: inline-block;
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .teacher-name .name span {
    font-size: 1.8rem;
  }
}
.teacher-name .post {
  display: block;
  margin-top: 0.5rem;
  margin-left: auto;
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .teacher-name .post {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
.teacher-research dt {
  margin: 1rem 0 0.5rem -0.5em;
  color: #25418f;
}
.teacher-research dt::before {
  content: "［";
}
.teacher-research dt::after {
  content: "］";
}
.teacher-research dd {
  position: relative;
  margin-left: 0.5em;
  padding-left: 1.15em;
}
.teacher-research dd::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.teacher-message {
  margin-top: 1.5rem;
}
.teacher-experience {
  margin-top: 3em;
}

/* 体験記 */
.experience {
  padding: 1em;
  border: 1px solid #3252a3;
}
@media screen and (min-width: 768px), print {
  .experience {
    padding: 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .experience {
    padding: 3em;
  }
}
@media screen and (min-width: 1100px), print {
  .experience-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.experience-head {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .experience-head {
    width: 27.6rem;
    margin-bottom: 0;
    margin-left: 2em;
  }
}
.experience-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.experience-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 50px;
  margin-bottom: 1em;
  padding: 0 1.5rem;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #3252a3;
  border: 1px solid #3252a3;
  border-right: none;
}
@media screen and (min-width: 768px), print {
  .experience-title {
    font-size: 2.2rem;
  }
}
.experience-title::before, .experience-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
}
.experience-title::before {
  right: -20px;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #3252a3;
}
.experience-title::after {
  right: -19px;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #fff;
}
.experience-title .sm {
  font-size: 0.8em;
}
.experience-photo {
  text-align: center;
}
.experience-profile {
  line-height: 1.5;
  text-align: center;
}
.experience-name {
  margin-bottom: 1rem;
  padding: 1rem 0;
  font-size: 2.2rem;
  color: #3252a3;
  border-bottom: 1px solid #3252a3;
}
.experience-name span {
  display: inline-block;
  margin-left: 0.5em;
  color: #151515;
  font-size: 1.6rem;
}
.experience-img {
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .experience-img {
    margin-top: 1.5em;
    text-align: left;
  }
}

/* --------------------------------

  id08 総合型選抜

-------------------------------- */
.exam-description {
  line-height: 1.8;
  font-size: 1.05em;
}

@media screen and (min-width: 1100px), print {
  .exam-description {
    font-size: 1.2em;
    text-align: center;
  }
}
.exam-description .br {
  display: none;
}

@media screen and (min-width: 768px), print {
  .exam-description .br {
    display: block;
  }
}
.exam-description .note {
  margin-top: 0.5em;
  font-size: 0.85em;
}

/* 試験方法・事前準備 */
@media screen and (min-width: 1100px), print {
  .exam-method-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px), print {
  .exam-method-flow li {
    width: 50%;
  }
}
.exam-method-flow dl {
  position: relative;
  height: 100%;
}

.exam-method-flow dt {
  margin-bottom: 0.3em;
  font-size: 1.2em;
  color: #1e2380;
}

@media screen and (min-width: 768px), print {
  .exam-method-flow dt {
    font-size: 1.4em;
  }
}
.exam-method-flow dt span {
  font-weight: 700;
}

.exam-method-flow .lesson {
  padding-bottom: 40px;
}

@media screen and (min-width: 1100px), print {
  .exam-method-flow .lesson {
    padding-right: 40px;
    padding-bottom: 0;
  }
}
.exam-method-flow .lesson::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24px 0 24px;
  border-color: #b5b39c transparent transparent transparent;
}

@media screen and (min-width: 768px), print {
  .exam-method-flow .lesson::before {
    right: auto;
    left: 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .exam-method-flow .lesson::before {
    top: 0;
    right: -20px;
    left: auto;
    border-width: 36px 0 36px 36px;
    border-color: transparent transparent transparent #b5b39c;
  }
}
.exam-method-flow .test {
  padding-top: 10px;
}

@media screen and (min-width: 1100px), print {
  .exam-method-flow .test {
    padding-top: 0;
    padding-left: 40px;
  }
}
.exam-method-description {
  font-size: 1.05em;
}

.exam-method-description .note {
  margin-top: 0.5em;
  font-size: 0.9em;
}

@media screen and (min-width: 768px), print {
  .exam-method-description .note {
    text-align: right;
  }
}
/* 過去にはこのような問題が出題されました */
@media screen and (min-width: 1100px), print {
  .past-exam-lineup-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1099.98px) {
  .past-exam-lineup:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.past-exam-lineup li:not(:last-child) {
  margin-bottom: 2rem;
}

.past-exam-lineup dl {
  line-height: 1.3;
}

.past-exam-lineup dt {
  margin-left: 1em;
  text-indent: -1em;
  font-weight: 700;
  font-size: 1.1em;
}

@media screen and (min-width: 1100px), print {
  .past-exam-lineup dt {
    font-size: 1.3em;
  }
}
.past-exam-lineup dd {
  padding: 0.2em 0 0 0.2em;
}

/* --------------------------------

  2022年修正

-------------------------------- */
@media screen and (min-width: 768px), print {
  .student-model-public .student-model-profile::before {
    border-right-color: #d3dfbf;
    border-bottom-color: transparent;
  }
  .student-model-total .student-model-profile::before {
    border-right-color: #eecfd1;
    border-bottom-color: transparent;
  }
}
@media screen and (max-width: 1099.98px) {
  .basic-course thead td,
  .select-course-nav ul.slick-dots li {
    width: 33.333333%;
  }
}
@media screen and (min-width: 1100px), print {
  .select-course-slider {
    padding-left: 105px;
  }
  .select-course-list dt {
    left: -105px;
  }
  .slide.finance .select-course-name,
  .slide.finance .select-course-list dd {
    padding-left: 5px;
  }
}
.basic-course thead span {
  height: 100%;
  padding: 0.6em 0;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .basic-course thead 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;
  }
}
@media screen and (max-width: 479.98px) {
  .basic-course thead span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .basic-course thead span br {
    display: none;
  }
}
.select-course-nav ul.slick-dots li::after {
  display: none;
}

.select-course-nav .dots-label {
  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;
  height: 100%;
  padding: 0.6em 0;
}

.select-course-nav .dots-label .label {
  display: block;
  line-height: 1.2;
  color: #fff;
}

@media screen and (max-width: 479.98px) {
  .select-course-nav .dots-label .label {
    font-size: 1.4rem;
  }
}
.select-course-nav ul.slick-dots li:nth-child(1) .dots-label .label:first-child::before {
  content: "経済・金融";
}

.select-course-nav ul.slick-dots li:nth-child(2) .dots-label .label:first-child::before {
  content: "公共法政策";
}

.select-course-nav ul.slick-dots li:nth-child(3) .dots-label .label:first-child::before {
  content: "法学＆法務";
}

.select-course-nav ul.slick-dots li:nth-child(3) .dots-label .label:last-child::before {
  content: "コース";
}

/* --------------------------------

  2023年修正

-------------------------------- */
.select-course-nav ul.slick-dots li:nth-child(1) .dots-label {
  background-color: #8ec555;
}

.select-course-nav ul.slick-dots li:nth-child(2) .dots-label {
  background-color: #1eb3ea;
}

.select-course-nav ul.slick-dots li:nth-child(3) .dots-label {
  background-color: #6357a3;
}

/* データ駆動型社会における法と経済 */
.data-intro {
  padding: 1em;
  line-height: 1.6;
  border: 5px solid #f3f3f2;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .data-intro {
    padding: 5rem;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.data-intro .lede {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .data-intro .lede {
    line-height: 1.4;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .data-intro .lede {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
}
.data-item {
  margin-top: 3em;
}
@media screen and (min-width: 768px), print {
  .data-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px), print {
  .data-item {
    margin-top: 5em;
  }
}
.data-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .data-main {
    padding: 0 1.5rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .data-main {
    padding: 1rem 2rem 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .data-img {
    width: 35%;
  }
}
@media screen and (min-width: 1100px), print {
  .data-img {
    width: 42rem;
  }
}
.data-img img {
  width: 100%;
}
.data-date {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1.5rem;
  padding: 1rem 3rem;
  line-height: 1.2;
  border: 1px solid #000;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .data-date {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
.data-title {
  margin-bottom: 1.25rem;
  padding-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.4rem;
  color: #25418f;
  border-bottom: 4px double currentColor;
}
@media screen and (min-width: 1100px), print {
  .data-title {
    margin-bottom: 1.9rem;
    padding-bottom: 2.5rem;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px), print {
  .data-title .br {
    display: block;
  }
}
.data-teacher {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .data-teacher {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .data-teacher {
    font-size: 2rem;
  }
}
.data-teacher-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.data-teacher-row:not(:last-child) {
  margin-bottom: 0.35em;
}
@media screen and (min-width: 768px), print {
  .data-teacher-row:not(:last-child) {
    margin-bottom: 0;
  }
}
.data-teacher dt::after {
  content: "：";
}
.data-teacher dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.data-teacher .office {
  display: block;
  text-indent: -1em;
}
@media screen and (min-width: 768px), print {
  .data-teacher .office {
    display: inline;
    text-indent: 0;
  }
}
.data-teacher .br {
  display: block;
}
@media screen and (min-width: 480px), print {
  .data-teacher .br {
    display: none;
  }
}

/* インドネシアのマラナタ・クリスチャン大法学部との交流 */
.idn-header {
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .idn-header {
    margin-bottom: 3.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-header .br {
    display: block;
  }
}
.idn-img {
  width: 100%;
  padding: 0 1.5rem 2.5rem 0;
}
.idn-img img {
  width: 100%;
}
.idn-img-container {
  max-width: 36rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .idn-img-container {
    max-width: 90%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-container {
    max-width: 92rem;
  }
}
.idn-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1.5rem 2.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-col2 .idn-img {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col2 .idn-img {
    padding: 0 3rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col2 .idn-img-wrap {
    margin: 0 -3rem -3rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-col3 .idn-img {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col3 .idn-img {
    padding: 0 2.5rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col3 .idn-img-wrap {
    margin: 0 -2.5rem -3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome {
    max-width: none;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome .idn-img-sm {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome .idn-img-lg {
    width: 66.66666%;
  }
}
.idn-img-welcome .idn-welcome-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5rem -0.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img span {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .idn-img-welcome .idn-welcome-img span::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.idn-img-welcome .idn-welcome-img-item {
  width: 100%;
  padding: 0 0.5rem 0.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img-lg {
    width: 40%;
  }
  .idn-img-welcome .idn-welcome-img-lg span::before {
    padding-top: 92%;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img-sm {
    width: 20%;
  }
  .idn-img-welcome .idn-welcome-img-sm span::before {
    padding-top: 188%;
  }
}
.idn-img-caption {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (min-width: 1100px), print {
  .idn-img-caption {
    padding-right: 1em;
    padding-left: 1em;
    line-height: 1.8;
  }
}rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .data-main {
    padding: 1rem 2rem 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .data-img {
    width: 35%;
  }
}
@media screen and (min-width: 1100px), print {
  .data-img {
    width: 42rem;
  }
}
.data-img img {
  width: 100%;
}
.data-date {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1.5rem;
  padding: 1rem 3rem;
  line-height: 1.2;
  border: 1px solid #000;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .data-date {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
.data-title {
  margin-bottom: 1.25rem;
  padding-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.4rem;
  color: #25418f;
  border-bottom: 4px double currentColor;
}
@media screen and (min-width: 1100px), print {
  .data-title {
    margin-bottom: 1.9rem;
    padding-bottom: 2.5rem;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px), print {
  .data-title .br {
    display: block;
  }
}
.data-teacher {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .data-teacher {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .data-teacher {
    font-size: 2rem;
  }
}
.data-teacher-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.data-teacher-row:not(:last-child) {
  margin-bottom: 0.35em;
}
@media screen and (min-width: 768px), print {
  .data-teacher-row:not(:last-child) {
    margin-bottom: 0;
  }
}
.data-teacher dt::after {
  content: "：";
}
.data-teacher dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.data-teacher .office {
  display: block;
  text-indent: -1em;
}
@media screen and (min-width: 768px), print {
  .data-teacher .office {
    display: inline;
    text-indent: 0;
  }
}
.data-teacher .br {
  display: block;
}
@media screen and (min-width: 480px), print {
  .data-teacher .br {
    display: none;
  }
}

/* インドネシアのマラナタ・クリスチャン大法学部との交流 */
.idn-header {
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .idn-header {
    margin-bottom: 3.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-header .br {
    display: block;
  }
}
.idn-img {
  width: 100%;
  padding: 0 1.5rem 2.5rem 0;
}
.idn-img img {
  width: 100%;
}
.idn-img-container {
  max-width: 36rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px), print {
  .idn-img-container {
    max-width: 90%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-container {
    max-width: 92rem;
  }
}
.idn-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1.5rem 2.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-col2 .idn-img {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col2 .idn-img {
    padding: 0 3rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col2 .idn-img-wrap {
    margin: 0 -3rem -3rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-col3 .idn-img {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col3 .idn-img {
    padding: 0 2.5rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-col3 .idn-img-wrap {
    margin: 0 -2.5rem -3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome {
    max-width: none;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome .idn-img-sm {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1100px), print {
  .idn-img-welcome .idn-img-lg {
    width: 66.66666%;
  }
}
.idn-img-welcome .idn-welcome-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5rem -0.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img span {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .idn-img-welcome .idn-welcome-img span::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.idn-img-welcome .idn-welcome-img-item {
  width: 100%;
  padding: 0 0.5rem 0.5rem 0;
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img-lg {
    width: 40%;
  }
  .idn-img-welcome .idn-welcome-img-lg span::before {
    padding-top: 92%;
  }
}
@media screen and (min-width: 768px), print {
  .idn-img-welcome .idn-welcome-img-sm {
    width: 20%;
  }
  .idn-img-welcome .idn-welcome-img-sm span::before {
    padding-top: 188%;
  }
}
.idn-img-caption {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (min-width: 1100px), print {
  .idn-img-caption {
    padding-right: 1em;
    padding-left: 1em;
    line-height: 1.8;
  }
}