@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,400,500,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, main, input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* --------------------------------------------------

BASE

-------------------------------------------------- */
/* フォント */
html {
  font-size: 100%;
}
body, table {
  letter-spacing: .1em;
  color: black;
  line-height: 1.5;
}

/* デフォルトフォント */
html {
  font-family: 'Noto Sans JP', Hiragino Sans, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  letter-spacing: 1px;
}
@media screen and (max-width: 1099px) {
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* テキストリンク */
a {
  color: #0CB59B;
  text-decoration: underline;
}

/* 画像リンク */
@media screen and (min-width: 1100px) {
  a img {
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a img:hover {
    opacity: .7 !important;
  }
}

/* --------------------------------------------------

レイアウト

-------------------------------------------------- */
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 1099px) {
  #wrapper {
    width: 100%;
    min-width: 0;
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

#content-wrapper {
  padding-bottom: 100px;
}
@media screen and (max-width: 1099px) {
  #content-wrapper {
    padding-bottom: 40px;
  }
}

section + section {
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  section + section,
  article.glossary + section {
    margin-top: 50px;
  }
}

/* --------------------------------------------------

ヘッダー

-------------------------------------------------- */
#gheader {
  height: 80px;
  background-color: #fff;
  width: 100%;
  min-width: 1050px;
  position: fixed;
  z-index: 10;
  top: 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1100px) {
  #gheader .inner {
    max-width: 1400px;
    position: relative;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1099px) {
  #gheader {
    height: 50px;
    z-index: 10;
    position: fixed;
    min-width: 0;
    width: 100%;
    top: 0;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  #gheader.sp-menu-open {
    background-color: #00A3D9;
  }
  #gheader.sp-menu-open .logo img[src="img/logo.svg"] {
    opacity: 0;
  }
  #gheader.sp-menu-open .logo img[src="img/logo-w.svg"] {
    opacity: 1;
  }
}
#gheader .logo {
  position: absolute;
  left: 34px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 150px;
  height: 33px;
}
#gheader .logo img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
#gheader .logo img[src="img/logo.svg"] {
  opacity: 1;
}
#gheader .logo img[src="img/logo-w.svg"] {
  opacity: 0;
}
@media screen and (max-width: 1099px) {
  #gheader .logo {
    width: 110px;
    height: 25px;
    left: 15px;
  }
}
#gheader .btn-entry {
  position: absolute;
  right: 0;
  top: 0;
  width: 214px;
  height: 80px;
}
@media screen and (max-width: 1200px) {
  #gheader .btn-entry {
    width: 180px;
  }
}
#gheader .btn-entry a,
#gheader .btn-entry span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0CB59B;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 80px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gheader .btn-entry span{
	background-color: #e6e6e6;
}
@media screen and (max-width: 1200px) {
  #gheader .btn-entry a,
  #gheader .btn-entry span {
    font-size: 16px;
  }
}
#gheader .btn-entry a:hover {
  background-color: #FF7F00;
}
#gheader .btn-entry a:before,
#gheader .btn-entry span:before {
  content: " ";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: transparent url(../img/ico-entry.svg) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 5px;
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
@media screen and (max-width: 1200px) {
  #gheader .btn-entry a:before,
  #gheader .btn-entry span:before {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }
}

/* --------------------------------------------------

グローバルナビゲーション

-------------------------------------------------- */
#gnav {
  position: absolute;
  display: inline-block;
  opacity: 0;
}
@media screen and (min-width: 1100px) {
  #gnav {
    right: 249px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  #gnav {
    right: 200px;
    padding: 12px 10px;
    padding-right: 9px;
  }
}
@media screen and (max-width: 1099px) {
  #gnav {
    top: 50px;
    right: -100%;
    width: 100%;
    background-color: #00A3D9;
    display: block;
    padding: 0;
    opacity: 0;
  }
  .sp-menu-open #gnav {
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    right: 0;
  }
}
#gnav ul {
  display: inline-block;
}
@media screen and (max-width: 1099px) {
  #gnav ul {
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
#gnav li {
  display: inline-block;
}
@media screen and (max-width: 1099px) {
  #gnav li {
    display: block;
    margin-left: 22px;
    margin-right: 22px;
  }
  #gnav li + li {
    border-top: 1px solid #8ACEE4;
  }
}
#gnav li a {
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 17px;
  padding-right: 16px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0px;
  font-weight: 500;
}
@media screen and (min-width: 1100px) {
  #gnav li a {
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #gnav li a:hover {
    color: #0CB59B;
  }
}
@media screen and (max-width: 1200px) {
  #gnav li a {
    padding: 12px 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1099px) {
  #gnav li a {
    display: block;
    font-size: 16px;
    color: #fff;
    padding-left: 19px;
    padding-right: 51px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  #gnav li a:after {
    content: " ";
    position: absolute;
    right: 10px;
    top: 50%;
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    display: inline-block;
    width: 15px;
    height: 9px;
    background: transparent url(../img/arrow-01.svg) 0% 0% no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
/* ナビに「開催スケジュール」が含まれる場合の余白、フォントサイズ調整 */
/* class="nallow"の付与はscript.jsにて実行 */
@media screen and (min-width: 1100px) and (max-width: 1320px) {
  #gnav.nallow li a {
    padding: 12px 10px;
  }
}
@media screen and (min-width: 1151px) and (max-width: 1230px) {
  #gnav.nallow li a {
    font-size: 13px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1150px) {
  #gnav.nallow li a {
    font-size: 12px;
  }
}
/* ----- ここまで ----- */

/* --------------------------------------------------

ハンバーガーメニュー

-------------------------------------------------- */
.sp-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 0;
  opacity: 0;
  z-index: -1;
}
.sp-nav-bg.active {
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
  z-index: 9;
  position: fixed;
  min-height: 100vh;
}

#hamburger-menu {
  position: absolute;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 14px;
  top: 0;
  transition: all .4s;
  z-index: 201;
}
#hamburger-menu span {
  display: block;
  transition: all .4s;
  position: absolute;
  background-color: #03A2E5;
  left: 9px;
  width: 32px;
  height: 3px;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
#hamburger-menu span:nth-of-type(1) {
  top: 15px;
}
#hamburger-menu span:nth-of-type(2) {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 24px;
}
#hamburger-menu span:nth-of-type(3) {
  top: 33px;
}
#hamburger-menu.active span {
  background-color: #fff;
}
#hamburger-menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#hamburger-menu.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
#hamburger-menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
@keyframes active-menu-bar02 {
  100% {
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

/* --------------------------------------------------

メインビジュアル

-------------------------------------------------- */
#mv {
  min-height: 520px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/mv-datascience.jpg);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 400;
}
#mv:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url(../img/mv-cover.png);
  z-index: 0;
}
@media screen and (max-width: 1099px) {
  #mv {
    min-height: 473px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url(../img/mv-datascience-sp.jpg);
  }
}
#mv em {
  font-weight: inherit;
  color: #E0E100;
  font-weight: 500;
}
#mv .inner {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
#mv .series {
  display: inline-block;
  text-align: center;
  padding: 10px 58px 10px;
  line-height: 1.2;
  vertical-align: middle;
  background-color: #03A2E5;
  border-radius: 4px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1099px) {
  #mv .series {
    width: 88%;
    max-width: 330px;
    font-size: 18px;
    padding: 8px 0px 7px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 375px) {
  #mv .series {
    font-size: 4.8vw;
  }
}
#mv h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.46;
  margin-bottom: 19px;
}
@media screen and (max-width: 1200px) {
  #mv h1 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1099px) {
  #mv h1 {
    font-size: 32px;
    line-height: 1.33;
    margin-bottom: 10px;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 375px) {
  #mv h1 {
    font-size: 8.53333vw;
  }
}
#mv h1 .sub {
  font-size: 56.66667%;
  display: block;
}
@media screen and (max-width: 1099px) {
  #mv h1 .sub {
    margin-top: .25em;
  }
}
#mv .subttl {
  font-size: 21px;
  line-height: 1.46;
  margin-top: 19px;
  margin-bottom: 19px;
  font-weight: 500;
}
#mv .subttl + h1 {
  margin-top:-.2em;
}
@media screen and (max-width: 1099px) {
  #mv .subttl {
    font-size: 20px;
    margin-top: 10px;
    padding-left: 1em;
    padding-right: 1em;
  }
  #mv .subttl > .dib-sp {
    white-space: nowrap;
  }
  #mv .subttl + h1 {
   margin-top:-.3em;
  }
}
@media screen and (max-width: 375px) {
  #mv .subttl {
    font-size: 5.33333vw;
  }
}
#mv .stamp {
	display: inline-block;
	font-size: 50%;
	line-height: 100%;
	vertical-align: middle;
	padding: 0.4em;
	margin-top: -0.4em;
	margin-right: 0.5em;
	border-radius: 0.2em;
	border: 0.1em solid #E0E100;
	color: #E0E100;
}
#mv .info {
  margin-top: 16px;
  display: inline-block;
  font-weight: 500;
  line-height: 1.84;
  font-size: 15px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 17px 50px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1099px) {
  #mv .info {
    margin-top: 0px;
    font-size: 12px;
    padding: 8px 0px;
    letter-spacing: 0;
    max-width: 330px;
    width: 88%;
  }
}
@media screen and (max-width: 374px) {
  #mv .info {
    font-size: 2.93333vw;
  }
}
#mv .badge {
  position: absolute;
  width: 100%;
  height: 225px;
  max-width: 1200px;
  min-width: 1100px;
  bottom: 32px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1099px) {
  #mv .badge {
    position: relative;
    width: 88%;
    height: 51px;
    max-width: 330px;
    min-width: 0;
    bottom: 22px;
    pointer-events: none;
    bottom: auto;
    left: auto;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    display: block;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
#mv .badge .inner {
  position: absolute;
  width: 225px;
  height: 225px;
  background: transparent url(../img/mv-circle.svg) 0% 0% no-repeat;
  bottom: 0;
  right: 2.71429%;
  z-index: 2;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 700;
  font-style: italic;
  color: #E0E100;
  font-size: 22px;
  line-height: 1.66;
  padding-bottom: 5px;
}
@media screen and (max-width: 1099px) {
  #mv .badge .inner {
    width: 100%;
    height: 100%;
    background: none;
    bottom: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 0px;
    letter-spacing: 0;
    border: 3px dotted #E0E100;
    border-radius: 25px;
  }
}
@media screen and (max-width: 375px) {
  #mv .badge .inner {
    font-size: 4.8vw;
  }
}

/* オンライン講座向け */

@media screen and (min-width: 1100px) {
  #mv .subttl { font-size:26px; }
  #mv .info { font-size: 24px; }
}
@media screen and (max-width: 1099px) {
  #mv .subttl { font-size:20px; }
  #mv .info { font-size: 18px; }
}
@media screen and (max-width: 374px) {
  #mv .subttl { font-size: 5.33333vw; }
  #mv .info { font-size: 5.33333vw; }
}


/* お知らせバー */
.attention {
  width: 100vw;
  background: url(../img/bg-attention.png);
  text-align: center;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1099px) {
  .attention {
    font-size: 14px;
    padding: 10px 10px 10px 5px;
    position: relative;
    vertical-align: middle;
  }
}
.attention a {
  color: #E0E100;
  text-decoration: underline;
}
.attention p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.attention p.attention-text:before {
  content: " ";
  display: inline-block;
  background: transparent url(../img/ico-check-w.svg) 0% 0% no-repeat;
  width: 42px;
  height: 25px;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
@media screen and (max-width: 1099px) {
  .attention p.attention-text:before {
    width: 32px;
    height: 19px;
  }
}

.attention p.open-list {
  margin: .5em auto auto;
}
@media screen and (max-width: 1099px) {
  .attention p.open-list {
    margin-bottom: .25em;
  }
}
.attention p.open-list a {
  display: inline-block;
  width: 250px;
  height: 50px;
  font-size: 75%;
  font-weight: 300;
  line-height: 50px;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
  background: #2c715f;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  .attention p.open-list a {
    width: 220px;
    height: 40px;
    font-size: 13px;
    line-height: 40px;
  }
}
.attention p.open-list a:hover {
  background-color: #FF7F00;
}
.attention p.open-list a:before {
  content: " ";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: transparent url(../img/ico-list.svg) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 8px;
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
@media screen and (max-width: 1099px) {
  .attention p.open-list a:before {
    width: 15px;
    height: 15px;
  }
}

.attention p.open-list.ondemand a {
  position: relative;
  width: auto;
  padding-left: 50px;
  padding-right: 15px;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 510px) {
	.attention p.open-list.ondemand a + a {
		margin-top: 0.5em;
	}
}
@media screen and (max-width: 1099px) {
	.attention p.open-list.ondemand a {
		padding-left: 43px;
	}
}
.attention p.open-list.ondemand a:before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 25px;
  height: 25px;
  background-image: url(../img/ico-play.svg);
  transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
	.attention p.open-list.ondemand a:before {
		left: 12px;
	}
}

/* --------------------------------------------------

見出し・本文

-------------------------------------------------- */
h2 {
  text-align: center;
  color: #03A2E5;
  font-size: 28px;
  line-height: 1.8;
  font-weight: 400;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 60px;
}
@media screen and (max-width: 1099px) {
  h2 {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 30px;
    margin-left: 1.5em;
    margin-right: 1.5em;
    letter-spacing: 1px;
    font-weight: 500;
  }
}

p.h2-caption {
  text-align: center;
  color: #03A2E5;
  margin-left: 2em;
  margin-right: 2em;
  margin-top: -50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1099px) {
  p.h2-caption {
    margin-top:-30px;
    margin-bottom:40px;
  }
}

section > header > h3 {
  border: 1px solid #7BCDF1;
  height: 76px;
  border-radius: 38px;
  text-align: center;
  font-size: 23px;
  color: #03A2E5;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 500;
}
@media screen and (max-width: 1099px) {
  section > header > h3 {
    height: 40px;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 374px) {
  section > header > h3 {
    font-size: 4.0107vw;
  }
}

p {
  font-size: 15px;
  line-height: 1.71;
  font-weight: 400;
}
p + p {
  margin-top: 2em;
  margin-bottom:2em;
}
@media screen and (max-width: 1099px) {
  p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1100px) {
    section > header + p {
        margin-top: -1em;
    }
}

em {
  color: #03A2E5;
  font-weight: bold;
}

/* --------------------------------------------------

汎用スペースA

-------------------------------------------------- */

/* 汎用スペースA：紹介文上の赤枠 */
#spaceA .caution {
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  /*margin-bottom: 60px;*/
  padding: 1em 1.5em;
  border: 2px solid #E80047;
}
@media screen and (max-width: 1099px) {
	#spaceA .caution {
		margin-top: 40px;
	}
}
#spaceA .caution p {
  margin: 1.8em 0;
}
#spaceA .caution p:first-child {
  margin-top: 1em;
}
#spaceA .caution p:last-child {
  margin-bottom: 1em;
}
#spaceA .caution em {
  color: #E80047;
}
#spaceA .caution dt {
  text-align: center;
  margin: .5em 0 1em;
}
#spaceA .caution dt em {
  display: inline-block;
  padding: 0 1.5em .2em 1.5em;
  border-bottom: 1px solid #E80047;
}
@media screen and (max-width: 1099px) {
  #spaceA .caution {
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

/* 汎用スペースA：紹介文上の青文字 */
#spaceA p.lead {
	text-align: center;
	color: #03A2E5;
	font-size: 28px;
	line-height: 1.8;
	font-weight: 400;
	margin-top: 60px;
	margin-left: 2em;
	margin-right: 2em;
}
@media screen and (max-width: 1099px) {
	#spaceA p.lead {
		font-size: 20px;
		margin-top: 40px;
		/*margin-bottom: 30px;*/
		margin-left: 8%;
		margin-right: 6.66667%;
		letter-spacing: 1px;
		font-weight: 500;
	}
}

/* --------------------------------------------------

講座紹介

-------------------------------------------------- */
section#introduction {
  padding-top: 60px;
}
@media screen and (max-width: 1099px) {
  section#introduction {
    padding-top: 40px;
  }
}

/* 紹介文 */
.description-wrap {
  position: relative;
  min-height: 562px;
}
@media screen and (max-width: 1099px) {
  .description-wrap {
    min-height: 0;
  }
}

.description {
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.94);
  z-index: 2;
}
@media screen and (min-width: 1100px) {
  .description {
    padding: 55px 67px;
    width: 730px;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-164px, -50%);
    -ms-transform: translate(-164px, -50%);
    -webkit-transform: translate(-164px, -50%);
    transform: translate(-164px, -50%);
    min-height: 400px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1099px) {
  .description {
    padding: 28px 4.53333%;
    padding-top: 0;
    width: auto;
    margin-left: 4%;
    margin-right: 4%;
    position: relative;
    left: 0;
    top: 0;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    min-height: 0;
  }
}
.description  p + p {
  margin-bottom: 0;
}

/* 補足 */
.description p.notes {
    padding: 15px 0;
    border:1px dotted #009FE5;
    border-width: 1px 0;
}

/* イメージ画像 */
figure.introduction {
  display: block;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  figure.introduction {
    border-radius: 0px 9px 9px 0px;
    overflow: hidden;
    width: 58.64286%;
    height: 562px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 1099px) {
  figure.introduction {
    width: 100vw;
    height: auto;
    position: relative;
    margin-top: -10.0%;
  }
}
figure.introduction img {
  display: block;
}
@media screen and (min-width: 1100px) {
  figure.introduction img {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1099px) {
  figure.introduction img {
    width: 100vw;
    height: auto;
  }
}

/* --------------------------------------------------

本セミナーはこのような方に向いています

-------------------------------------------------- */
section#suitable {
  min-width: 1000px;
}
@media screen and (max-width: 1099px) {
  section#suitable {
    min-width: 0;
  }
}

ul.suitable {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  ul.suitable {
    margin-left: 5.33333%;
    margin-right: 5.33333%;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
ul.suitable li {
  width: 260px;
  height: 260px;
  background-color: #FAFAFA;
  text-align: center;
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.19);
  font-size: 17px;
  line-height: 1.81;
  border-radius: 6px;
  font-weight: 500;
}
@media screen and (max-width: 1099px) {
  ul.suitable li {
    width: auto;
    height: 78px;
    position: relative;
    padding-left: 80px;
    padding-right: 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    letter-spacing: 1px;
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
  }
  ul.suitable li + li {
    margin-top: 20px;
  }
}
ul.suitable li:before {
  content: " ";
  width: 48px;
  height: 48px;
  display: block;
  background: transparent  0% 0% no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
  margin-bottom: 39px;
}
@media screen and (max-width: 1099px) {
  ul.suitable li:before {
    width: 32px;
    height: 32px;
    margin: 0;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 24px;
  }
}
ul.suitable li:nth-of-type(1):before {
  background-image: url(../img/ico-17.svg);
}
ul.suitable li:nth-of-type(2):before {
  background-image: url(../img/ico-09.svg);
}
ul.suitable li:nth-of-type(3):before {
  background-image: url(../img/ico-01.svg);
}

@media screen and (min-width: 1100px) {
	ul.suitable li.txt4Line:before {
		margin-bottom: 19px;
	}
}

/* --------------------------------------------------

講座の特徴

-------------------------------------------------- */
ul.feature {
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
ul.feature + .notes {
  margin-top: -1em;
}
@media screen and (min-width: 1100px) {
  #feature .notes {
    width: 916px;
    margin-bottom: 2em;
  }
  #feature ul.feature + .notes {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1099px) {
  ul.feature {
    margin-left: 5.33333%;
    margin-right: 5.33333%;
    margin-bottom: 30px;
  }
  ul.feature + .notes {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
ul.feature li {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 1099px) {
  ul.feature li {
    font-size: 14px;
    padding-left: 30px;
  }
}
ul.feature li:before {
  content: " ";
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: transparent url(../img/ico-point.svg) 0% 0% no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  left: 0;
}
@media screen and (max-width: 1099px) {
  ul.feature li:before {
    width: 20px;
    height: 20px;
  }
}
ul.feature li + li {
  margin-top: 2em;
}
@media screen and (max-width: 1099px) {
  ul.feature li + li {
    margin-top: 1.5em;
  }
}

/* 紹介文2 */
.description-acc {
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  .description-acc {
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}
.description-acc .more {
  margin-top: 2em;
}
.description-acc strong {
	font-weight: bold;
}
.description-acc .btn {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin: 15px auto;
  color: #03A2E5;
  text-align: center;
  max-width: 10em;
  letter-spacing: 1px;
}
.description-acc .btn:after {
  content: " ";
  display: inline-block;
  background: transparent url(../img/ico-acc.png) 0% 0% no-repeat;
  width: 18px;
  height: 18px;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  margin-left: 5px;
}
@media screen and (min-width: 1100px) {
  .description-acc .btn:hover {
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: .7;
    cursor: pointer;
  }
}
.description-acc .btn span:nth-of-type(1) {
  display: inline-block;
}
.description-acc .btn span:nth-of-type(2) {
  display: none;
}
.description-acc .btn.open {
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.description-acc .btn.open:after {
  -moz-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -webkit-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
.description-acc .btn.open span:nth-of-type(1) {
  display: none;
}
.description-acc .btn.open span:nth-of-type(2) {
  display: inline-block;
}

/* イメージ */
figure.photo {
  display: block;
  width: 916px;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 1099px) {
  figure.photo {
    width: 100vw;
    height: 150px;
    margin-top: 30px;
    border-radius: 0;
  }
}
figure.photo:after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
}
figure.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IE */
.IE figure.photo {
  position: relative;
}
.IE figure.photo img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
  .IE figure.photo img {
    min-height: 100%;
  }
}

/* --------------------------------------------------

授業構成概要

-------------------------------------------------- */
dl.structure ,
#structure p,
#structure ul.std{
  width: 916px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1100px) {
  dl.structure {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1099px) {
  dl.structure,
  #structure p {
    width: auto;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
  dl.structure {
    margin-bottom: 30px;
  }
}
#structure .notes {
  margin-bottom: 2em;
}
@media screen and (min-width: 1100px) {
  #structure .notes {
    width: 916px;
  }
  #structure .notes li {
    font-size: 13px;
  }
  #structure dl.structure + .notes,
  #structure dl.structure + p {
    margin-top: -1em;
  }
  #structure dl.structure + .notes {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1099px) {
  #structure dl.structure + .notes{
    margin-top: -20px;
  }
  #structure dl.structure + .notes {
    margin-bottom: 40px;
  }
}
dl.structure dt {
  display: block;
  height: 110px;
  width: 110px;
  border-radius: 100%;
  background-color: #03A2E5;
  color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.3;
  float: left;
  font-family: Roboto , sans-serif;
  font-style: italic;
  font-size: 17px;
}
@media screen and (max-width: 1099px) {
  dl.structure dt {
    width: 70px;
    height: 70px;
    font-size: 13px;
    font-weight:  ;
  }
}
dl.structure dt:empty {
  display: none;
}
dl.structure dt:empty + dd {
  margin-left: 0;
  min-height: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1099px) {
  dl.structure dt:empty + dd {
    margin-bottom: 15px;
  }
}
dl.structure dt:empty + dd h3 {
  position: relative;
  padding-left: 1.2em;
}
@media screen and (max-width: 1099px) {
  dl.structure dt:empty + dd h3 {
    font-size: 15px;
  }
}
dl.structure dt:empty + dd h3:before {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: #03A2E5;
  left: 0;
  top: 7px;
}
@media screen and (max-width: 1099px) {
  dl.structure dt:empty + dd h3:before {
    top: 6px;
  }
}
dl.structure dd {
  margin-left: 140px;
  min-height: 110px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
}
.IE dl.structure dd {
  display: block;
  position: relative;
}
.IE dl.structure dd > div {
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
  dl.structure dd {
    margin-left: 85px;
    min-height: 90px;
    font-size: 13px;
    width: auto;
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
dl.structure dd h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: .6em;
  line-height: 1.4;
}
@media screen and (max-width: 1099px) {
  dl.structure dd h3 {
    font-size: 14px;
    margin-bottom: .3em;
    line-height: 1.3;
  }
}
dl.structure dd + dt {
  clear: both;
  margin-top: 20px;
}
dl.structure dd + dt + dd {
  margin-top: 20px;
}

/* --------------------------------------------------

無料トライアル講座

-------------------------------------------------- */
#trial p,
#trial ul.std {
  width: 916px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  #trial p,
  #trial ul.std {
    width: auto;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}
#trial .notes {
  margin-bottom: 2em;
}
@media screen and (min-width: 1100px) {
  #trial .notes {
    width: 916px;
  }
  #trial .notes li {
    font-size: 13px;
  }
}

/* --------------------------------------------------

関連講座への誘導コーナー

-------------------------------------------------- */
#related-seminar a {
  display: block;
  position: relative;
  width: 800px;
  min-height: 200px;
  margin: 80px auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: transparent url(../img/introduction-other.jpg) no-repeat 0% 20%;
  background-size: 821px 562px;
  border-radius: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  #related-seminar a {
    width: 80%;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 520px) {
  #related-seminar a {
    min-height: 280px;
  }
}
#related-seminar a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  border-radius: 8px;
}
#related-seminar a:hover {
  background-size: 862px 590px;
  background-position: 5% 21%;
}
#related-seminar p {
  display: block;
  position: absolute;
  top:46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 320px) {
  #related-seminar p {
    top: 49%;
  }
}
#related-seminar p > span {
  display: inline-block;
  line-height: 1.25;
  padding-bottom: 8px;
  border-bottom: 4px double #fff;
}
#related-seminar p > span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 4px;
  background: url(../img/ico-flash.svg) no-repeat 0 0;
  transform: translateY(8px);
}
@media screen and (max-width: 520px) {
  #related-seminar p > span::before {
    display: block;
    margin: 0 auto;
    transform: translateY(-2px);
  }
}
#related-seminar p em {
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}
#related-seminar p > span,
#related-seminar em b {
  text-shadow: 2px 2px 6px rgba(0,0,0, 0.3), -2px -2px 6px rgba(0,0,0, 0.3);
}
#related-seminar em > span {
  display: inline-block;
  margin: 1.5em 0 0;
  padding: 6px 24px;
  font-size: 16px;
  background: #03A2E5;
  border-radius: 4px;
}
#related-seminar em b {
  display: inline-block;
  font-size:200%;
}
@media screen and (max-width: 690px) {
  #related-seminar em b {
    margin-top: 0.5em;
  }
}
#related-seminar em b .smaller {
  display: inline-block;
  font-size: 75% !important;
  margin-bottom: 0.25em;
}

/* --------------------------------------------------

関連講座への誘導コーナー

-------------------------------------------------- */
#related-seminar a {
  display: block;
  position: relative;
  width: 800px;
  min-height: 200px;
  margin: 80px auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: transparent url(../img/introduction-other.jpg) no-repeat 0% 20%;
  background-size: 821px 562px;
  border-radius: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  #related-seminar a {
    width: 80%;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 520px) {
  #related-seminar a {
    min-height: 280px;
  }
}
#related-seminar a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  border-radius: 8px;
}
#related-seminar a:hover {
  background-size: 862px 590px;
  background-position: 5% 21%;
}
#related-seminar p {
  display: block;
  position: absolute;
  top:46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 320px) {
  #related-seminar p {
    top: 49%;
  }
}
#related-seminar p > span {
  display: inline-block;
  line-height: 1.25;
  padding-bottom: 8px;
  border-bottom: 4px double #fff;
}
#related-seminar p > span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 4px;
  background: url(../img/ico-flash.svg) no-repeat 0 0;
  transform: translateY(8px);
}
@media screen and (max-width: 520px) {
  #related-seminar p > span::before {
    display: block;
    margin: 0 auto;
    transform: translateY(-2px);
  }
}
#related-seminar p em {
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}
#related-seminar p > span,
#related-seminar em b {
  text-shadow: 2px 2px 6px rgba(0,0,0, 0.3), -2px -2px 6px rgba(0,0,0, 0.3);
}
#related-seminar em > span {
  display: inline-block;
  margin: 1.5em 0 0;
  padding: 6px 24px;
  font-size: 16px;
  background: #03A2E5;
  border-radius: 4px;
}
#related-seminar em b {
  display: inline-block;
  font-size:200%;
}
@media screen and (max-width: 690px) {
  #related-seminar em b {
    margin-top: 0.5em;
  }
}
#related-seminar em b .smaller {
  display: inline-block;
  font-size: 75% !important;
  margin-bottom: 0.25em;
}

/* --------------------------------------------------

開催スケジュール

-------------------------------------------------- */
ul.schedule-box {
  display: flex;
  flex-wrap: wrap;
  /*width: 880px;*/
  width: 916px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  ul.schedule-box {
    width: auto;
    padding: 0 5.33333%;
  }
}
ul.schedule-box .schedule-content {
  width: 100%;
}
ul.schedule-box > li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px 0 26px;
  text-align: center;
  border: 2px solid #8CD6F4;
}
ul.schedule-box > li:not(.active):not(.close) {
  color: #03A2E5;
  background: #8CD6F40f;
  opacity: 0.7;
}
/* --- 4列表示 --- */
@media screen and (min-width: 765px) {
  ul.schedule-box > li {
    flex-basis: 24%;
    margin-left: 1.3%;
  }
  ul.schedule-box > li:nth-child(4n+1)   { /* 一番左のカラムのみ適用 */
    margin-left: 0;
  }
  ul.schedule-box > li:nth-child(n+5) { /* 2行目以降に適用 */
    margin-top: 1.3%;
  }
}
/* --- 3列表示 --- */
@media screen and (min-width: 600px) and (max-width: 764px) {
  ul.schedule-box > li {
    flex-basis: 32%;
  }
  ul.schedule-box > li:nth-child(3n+2) { /* 中央のカラムのみ適用 */
    margin-right: 2%;
    margin-left: 2%;
  }
  ul.schedule-box > li:nth-child(n+4) { /* 2行目以降に適用 */
    margin-top: 2%;
  }
}
/* --- 2列表示 --- */
@media screen and (max-width: 599px) {
  ul.schedule-box > li {
    flex-basis: 49%;
  }
  ul.schedule-box > li:nth-child(odd) { /* 左側のカラムのみ適用 */
    margin-right: 2%;
  }
  ul.schedule-box > li:nth-child(n+3) { /* 2行目以降に適用 */
    margin-top: 2%;
  }
}

/* --- 会期 --- */
ul.schedule-box .schedule-date {
  font-size: 250%;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}
ul.schedule-box .schedule-date.smaller {
  font-size: 200% !important;
}
@media screen and (max-width: 380px) {
  ul.schedule-box .schedule-date {
    font-size: 200%;
  }
  ul.schedule-box .schedule-date.smaller {
    font-size: 150% !important;
  }
}
ul.schedule-box .schedule-date span {
  font-size: 60%;
}
ul.schedule-box .schedule-date span:first-of-type {
  display: block;
}
ul.schedule-box .schedule-date span:last-of-type {
  margin-left: 0.1em;
}

/* --- ラベル --- */
ul.schedule-box .schedule-label {
  margin: 0.75em 5px 0;
}
ul.schedule-box .schedule-label span {
  display: inline-block;
  line-height: 1;
  color: #fff;
}
ul.schedule-box > li:not(.active):not(.close) .schedule-label span {
  font-size: 14px;
  padding: 5px 18px;
  background: #03A2E5;
  border-radius: 1em;
}
@media screen and (max-width: 380px) {
  ul.schedule-box > li:not(.active):not(.close) .schedule-label span {
    font-size: 13px;
  }
}

/* --- 受付中 --- */
ul.schedule-box > li.active {
  position: relative;
  padding: 0;
  color: #0CB59B;
  border-color: #0CB59B;
  border-width: 5px;
  transition: all 0.3s;
}
ul.schedule-box > li.active a {
  display: block;
  width: 100%;
  padding: 20px 0 26px;
  text-decoration: none;
  color: inherit;
}
/* ボックス右上のラベル */
ul.schedule-box > li.active::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  border: 35px solid;
  border-color: #f7f14f #f7f14f transparent transparent;
}
ul.schedule-box > li.active::after {
  content: "受付中";
  position: absolute;
  top: 9px;
  right: -7px;
  transform: rotate(45deg);
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 380px) {
  ul.schedule-box > li.active::before {
    border-width: 29px;
  }
  ul.schedule-box > li.active::after {
    top: 7px;
    right: -6px;
    font-size: 11.5px;
  }
}
/* 申込ボタン */
ul.schedule-box > li.active .schedule-label span {
  width: 90%;
  padding: 14px 10px 16px;
  font-size: 18px;
  font-weight: 500;
  background: #0CB59B;
  border-radius: 4px;
  transition: all 0.3s;
}
@media screen and (max-width: 374px) {
  ul.schedule-box > li.active .schedule-label span {
    width: 100%;
    padding: 10px 0 12px;
    font-size: 14px;
  }
}
ul.schedule-box > li.active .schedule-label span:before {
    content: " ";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: transparent url(../img/ico-entry.svg) 0% 0% no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    margin-right: 5px;
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
/* ボックスにカーソルが合った時 */
ul.schedule-box > li.active:hover {
  color: #FF7F00;
  border-color: #FF7F00;
}
ul.schedule-box > li.active:hover .schedule-label span {
  background-color: #FF7F00;
}

/* --- 受付終了 --- */
ul.schedule-box > li.close {
  color: #999;
  background: #eee;
  border-color: #eee;
}
ul.schedule-box > li.close .schedule-label span {
  color: inherit;
}

/* --------------------------------------------------

講師プロフィール

-------------------------------------------------- */
.profile {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid  #8CD6F4;
  border-radius: 6px;
  padding: 47px 45px;
}
.profile:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 1099px) {
  .profile {
    width: auto;
    margin: 10px 5.33333%;
    padding: 25px 22px;
  }
}
.profile + .profile {
  margin-top: 40px;
}

/* 肩書き等 */
.info {
  overflow: hidden;
}
@media screen and (max-width: 1099px) {
  .info {
    text-align: center;
    margin-top: 15px;
    letter-spacing: 0;
  }
}
.info .role {
  color: #03A2E5;
  font-size: 19px;
  display: inline-block;
  margin-right: .75em;
}
@media screen and (max-width: 1099px) {
  .info .role {
    font-size: 15px;
    margin-bottom: 8px;
    margin-right: 0;
  }
}
@media screen and (max-width: 374px) {
  .info .role {
    font-size: 3.74332vw;
  }
}
.info .name {
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
}
@media screen and (max-width: 1099px) {
  .info .name {
    font-size: 17px;
    display: block;
    font-weight: bold;
  }
}
@media screen and (max-width: 374px) {
  .info .name {
    font-size: 4.54545vw;
  }
}
.info .name span {
  font-size: 84.21053%;
}
@media screen and (max-width: 1099px) {
  .info .name span {
    display: inline-block;
  }
}
.info .position {
  display: block;
  margin-top: .5em;
  font-size: 14px;
  line-height: 1.6;
}

/* 講師写真 */
figure.instructor {
  display: block;
  float: left;
  width: 114px;
  height: 143px;
  overflow: hidden;
  border-radius: 3px;
  margin-right: 30px;
}
@media screen and (max-width: 1099px) {
  figure.instructor {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 142px;
    height: 179px;
  }
}
figure.instructor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IE */
.IE figure.instructor {
  position: relative;
}
.IE figure.instructor img {
  height: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1099px) {
  .IE figure.instructor img {
    min-width: 100%;
  }
}

/* 経歴 */
.career {
  clear: both;
  font-size: 13px;
  line-height: 1.8;
  display: none;
  padding-top: 30px;
  margin-bottom: -1em;
}
@media screen and (max-width: 1099px) {
  .career {
    margin-bottom: 0;
    padding-top: 15px;
  }
}

/* アコーディオンボタン */
.acc-btn {
  cursor: pointer;
  color: #03A2E5;
  font-weight: 500;
  font-size: 14px;
  margin-top: 1em;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 1px;
}
@media screen and (max-width: 1099px) {
  .acc-btn {
    font-size: 13px;
  }
}
.acc-btn:after {
  -moz-transition: background-image 0.2s;
  -o-transition: background-image 0.2s;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: transparent url(../img/ico-acc-w16.png) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-left: 3px;
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.acc-btn.open {
  color: #ccc;
}
.acc-btn.open:after {
  background-image: url(../img/ico-acc-02-w16.png);
}
@media screen and (min-width: 1100px) {
  .acc-btn:hover {
    color: #0CB59B;
  }
  .acc-btn:hover:after {
    background-image: url(../img/ico-acc-ov-w16.png);
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}

.acc-close {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 5em;
  cursor: pointer;
  color: #03A2E5;
  font-weight: 500;
  font-size: 14px;
  margin-top: 2em;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .acc-close {
    margin-top: 1em;
  }
}
.acc-close:after {
  -moz-transition: background-image 0.2s;
  -o-transition: background-image 0.2s;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
  content: " ";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: transparent url(../img/ico-acc.png) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-left: 3px;
  -moz-transform: translateY(2px) rotate(45deg);
  -ms-transform: translateY(2px) rotate(45deg);
  -webkit-transform: translateY(2px) rotate(45deg);
  transform: translateY(2px) rotate(45deg);
}
.acc-close:hover {
  color: #0CB59B;
}
.acc-close:hover:after {
  background-image: url(../img/ico-acc-ov.png);
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}

/* --------------------------------------------------

用語解説

-------------------------------------------------- */
.glossary {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  border: 2px solid  #8CD6F4;
  border-radius: 6px;
  background: #FBFBFB;
}
@media screen and (max-width: 1099px) {
  .glossary {
    width: auto;
    margin: 30px 5.33333%;
  }
}
.glossary h3 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #03A2E5;
  padding-top: .65em;
  padding-bottom: .75em;
  border-bottom: 1px dotted #8CD6F4;
  margin-bottom: 2em;
}
@media screen and (max-width: 1099px) {
  .glossary h3 {
    font-size: 13px;
    padding-bottom: .6em;
    margin-bottom: 1.5em;
  }
}
.glossary dl {
  margin: 0 40px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1099px) {
  .glossary dl {
    display: block;
    margin: 0 20px 20px;
  }
}
.glossary dt {
  font-size: 14px;
  font-weight: 500;
  width: 14em;
  line-height: 1.4;
}
@media screen and (max-width: 1099px) {
  .glossary dt {
    width: auto;
    margin-bottom: .5em;
    font-size: 13px;
  }
}
.glossary dd {
  font-size: 12px;
  font-weight: normal;
  width: -webkit-calc(100% - 18em);
  width: calc(100% - 18em);
}
@media screen and (max-width: 1099px) {
  .glossary dd {
    width: auto;
  }
}
.glossary dd + dt {
  margin-top: 20px;
}
.glossary dd + dt + dd {
  margin-top: 20px;
}
@media screen and (max-width: 1099px) {
  .glossary dd + dt + dd {
    margin-top: 0;
  }
}

/* --------------------------------------------------

お申し込みはこちらボタン

-------------------------------------------------- */
.btn-entry-body {
  width: 650px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1099px) {
  .btn-entry-body {
    width: 80%;
    height: 60px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.btn-entry-body a,
.btn-entry-body > span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #0CB59B;
  font-size: 22px;
  text-decoration: none;
  border-radius: 6px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 5px 0px #098056;
}
.btn-entry-body > span {
  background-color: #e6e6e6;
  box-shadow: 0px 5px 0px #bbb;  
}
.btn-entry-body a span,
.btn-entry-body > span span {
  font-size: 28px;
}
@media screen and (max-width: 1099px) {
  .btn-entry-body a {
    line-height: 60px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 375px) {
  .btn-entry-body a,
  .btn-entry-body > span {
    font-size: 5.33333vw;
  }
}
.btn-entry-body a span:before,
.btn-entry-body > span span:before {
  content: " ";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/ico-entry.svg) 0% 0% no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  margin-right: 12px;
  -moz-transform: translateY(0.1em);
  -ms-transform: translateY(0.1em);
  -webkit-transform: translateY(0.1em);
  transform: translateY(0.1em);
}
.btn-entry-body a:hover {
  background-color: #FF7F00;
  box-shadow: 0px 5px 0px #cc6600;
}

/* 無料トライアル講座申し込み */
.btn-entry-body.trial {
  height: auto;
}
@media screen and (min-width: 1100px) {
  .btn-entry-body.trial {
    margin-top: 80px;
  }
}
.btn-entry-body.trial a,
.btn-entry-body.trial > span {
  height: auto;
  line-height: normal;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .btn-entry-body.trial a,
  .btn-entry-body.trial > span {
    font-size: 16px;
    padding: 10px;
  }
  .btn-entry-body a span,
  .btn-entry-body > span span {
    font-size: 20px;
  }
}
.btn-entry-body.trial a:not(:hover):not(:active) {
  background-color: #cbcd40;
  box-shadow: 0px 5px 0px #8a8a28;
}

/* --------------------------------------------------

タイムテーブル

-------------------------------------------------- */
h3.timetable-title {
  border: none;
  height: auto;
  border-radius: 0;
  text-align: center;
  font-size: 19px;
  color: #000;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: block;
  font-weight: 500;
}
h3.timetable-title:before {
  content: " ";
  display: inline-block;
  width: 27px;
  height: 27px;
  background: transparent url(../img/ico-cal.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  margin-right: 12px;
}
@media screen and (max-width: 1099px) {
  h3.timetable-title {
    height: auto;
    font-size: 16px;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
    letter-spacing: 0;
    margin-bottom: 10px;
    line-height: 2;
  }
  h3.timetable-title:before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 374px) {
  h3.timetable-title {
    font-size: 4.0107vw;
  }
}

/* タイムテーブル */
.timetable {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ccc;
  border: 1px solid #03A2E5;
}
@media screen and (max-width: 1099px) {
  .timetable {
    width: auto;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}
.timetable + .timetable {
  margin-top: 20px;
}
.timetable + h3.timetable-title {
  margin-top: 60px;
}
@media screen and (max-width: 1099px) {
  .timetable + h3.timetable-title {
    margin-top: 30px;
  }
}
.timetable ol + h4,
.timetable ul + h4 {
  margin-top: 30px;
}

/* 時刻 */
.hour {
  text-align: center;
  color: #fff;
  background-color: #03A2E5;
  font-weight: 500;
  font-size: 16px;
  padding-top: .6em;
  padding-bottom: .6em;
  vertical-align: middle;
}
@media screen and (max-width: 1099px) {
  .hour {
    font-size: 14px;
  }
}

/* トラック */
.track {
  text-align: center;
  background-color: #F3F1EA;
  padding: 1em;
  vertical-align: middle;
  font-size: 16px;
}
@media screen and (max-width: 1099px) {
  .track {
    font-size: 14px;
    padding: .75em;
  }
}

/* 時限名 */
.jigen {
  display: block;
  border: 2px solid #03A2E5;
  background-color: #fff;
  width: 8em;
  height: 30px;
  line-height: 24px;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  color: #03A2E5;
}
.jigen:before {
  content: " ";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/ico-time.svg) 0% 0% no-repeat;
  -moz-transform: translateY(0.15em);
  -ms-transform: translateY(0.15em);
  -webkit-transform: translateY(0.15em);
  transform: translateY(0.15em);
  margin-right: .3em;
}
@media screen and (max-width: 1099px) {
  .jigen {
    height: 24px;
    line-height: 20px;
    border-width: 1px;
    padding: 1px 0 0;
  }
}

/* テーマ */
.theme {
  display: inline-block;
  min-height: 30px;
  vertical-align: middle;
  margin-top: .5em;
  margin-bottom: .3em;
}
@media screen and (max-width: 1099px) {
  .theme {
    min-height: 0;
  }
}

/* 内容 */
.content {
  background-color: #fff;
  padding: 30px 30px;
  font-size: 14px;
}
@media screen and (max-width: 1099px) {
  .content {
    padding: 15px 14px;
  }
}
.content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (max-width: 1099px) {
  .content p {
    font-size: 13px;
  }
}
.content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #03A2E5;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 1099px) {
  .content h4 {
    font-size: 16px;
    text-align: center;
    padding-right: 1em;
  }
}
@media screen and (max-width: 375px) {
  .content h4 {
    font-size: 4.26667vw;
  }
}
.content h4 > span {
  display: inline-block;
  position: relative;
  padding-left: 2em;
}
.content h4 > span:before {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: transparent url(../img/ico-point.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
.content h5 {
  font-size: 15px;
  font-weight: bold;
  color: #03A2E5;
  margin-top: 1.75em;
  margin-bottom: 1.25em;
}
.content h5:first-of-type {
  margin-top: 1.5em;
}

.content h4 ~ *:not(h4) {
  margin-left: 0.8em;
}
.content h4 ~ h5 ~ ul,
.content h4 ~ h5 ~ ol {
  margin-left: 1em;
}
.content li h5 ~ ul,
.content li h5 ~ ol {
  margin-left: .25em;
}
@media screen and (max-width: 1099px) {
  .content h4 ~ *:not(h4) {
    margin-left: 0.4em;
  }
  .content h4 ~ h5 ~ ul,
  .content h4 ~ h5 ~ ol {
    margin-left: 0.5em;
  }
  .content *:first-child {
    margin-top:0.25em;
  }
  .content *:last-child {
    margin-bottom: 0.5em;
  }
}

/* 講演 */
.lecture {
  margin-bottom: 1em;
}
.lecture:after {
  content: "";
  display: block;
  clear: both;
}
.lecture .name {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1099px) {
  .lecture .name {
    font-size: 16px;
    font-weight: bold;
  }
}
.lecture .position {
  margin-top: 1em;
  margin-bottom: .8em;
  font-size: 16px;
}
@media screen and (max-width: 1099px) {
  .lecture .position {
    font-size: 14px;
  }
}

.tag {
  display: inline-block;
  line-height: 2;
  vertical-align: middle;
  border-radius: 4px;
  background-color: #03A2E5;
  padding: 0 2em;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 1px;
}
@media screen and (max-width: 1099px) {
  .tag {
    font-size: 12px;
    padding-bottom: 0;
    padding-top: 1px;
  }
}

/* 無料説明会申し込みボタン */
#timetable a.btn-entry,
#timetable span.btn-entry {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 2em auto;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #0CB59B;
  font-size: 28px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 6px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 5px 0px #098056;
}
@media screen and (max-width: 1099px) {
  #timetable a.btn-entry,
  #timetable span.btn-entry {
    line-height: 60px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 375px) {
  #timetable a.btn-entry,
  #timetable span.btn-entry {
    font-size: 5.33333vw;
  }
}
#timetable a.btn-entry:before,
#timetable span.btn-entry:before {
  content: " ";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/ico-entry.svg) 0% 0% no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  margin-right: 12px;
  -moz-transform: translateY(0.1em);
  -ms-transform: translateY(0.1em);
  -webkit-transform: translateY(0.1em);
  transform: translateY(0.1em);
}
#timetable span.btn-entry {
  background-color: #e6e6e6;
  box-shadow: 0px 5px 0px #bbb;
}
#timetable a.btn-entry:hover {
  background-color: #FF7F00;
  box-shadow: 0px 5px 0px #cc6600;
}

#timetable a.btn-entry.trial:not(:hover):not(:active) {
  background-color: #cbcd40;
  box-shadow: 0px 5px 0px #8a8a28;
}

/* タイムテーブル前の告知枠(事前予習動画など) */
#timetable .timetable-info {
    border-width: 3px;
}
#timetable .timetable-info h3 {
    margin-bottom: 1em;
    font-size: 1rem;
    font-weight: 600;
}
#timetable .timetable-info-content section + section {
    margin-top: 1.5em;
}
#timetable .timetable-info-content h4 {
    margin-top: 1.5em;
    font-size: 1.1rem;
    font-weight: 600;
}
#timetable .timetable-info-content h5 {
    margin-top: 1.25em;
    margin-left: -0.5em;
    font-size: 1.1rem;
}
#timetable .timetable-info-content h5 span {
    display: inline-block;
    position: relative;
    padding-left: 2em;
}
#timetable .timetable-info-content h5 span::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -1px;
    width: 1.5em;
    height: 1.5em;
    background: transparent url(../img/ico-point.svg) 50% 50% no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
}
#timetable .timetable-info-content h6 {
    margin-top: 1.5em;
    font-size: 0.95rem;
    font-weight: 600;
}
#timetable .timetable-info-content .notes {
    font-size: 0.8rem;
}
#timetable .timetable-info-content .std {
    margin-top: 1em;
}
#timetable .timetable-info-content .std li {
    font-size: 0.9rem;
}
#timetable .timetable-info-content .std li + li {
    margin-top: 0.75em;
}

/* --------------------------------------------------

受講生の声

-------------------------------------------------- */
ul.voice {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  ul.voice {
    width: auto;
    margin-top: -10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.66667%;
    padding-right: 2.66667%;
  }
}
ul.voice li {
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  position: relative;
  display: inline-block;
  width: 314px;
  height: 183px;
  margin-left: -webkit-calc(((100% - 330px * 3) / 2));
  margin-left: calc(((100% - 330px * 3) / 2));
  margin-right: -webkit-calc(((100% - 330px * 3) / 2));
  margin-right: calc(((100% - 330px * 3) / 2));
  background: transparent url(../img/fukidashi.png) 50% 0% no-repeat;
}
@media screen and (min-width: 1100px) {
  ul.voice li:nth-of-type(n+4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1099px) {
  ul.voice li {
    display: block;
    width: auto;
    width: 348px;
    max-width: 348px;
    height: 135px;
    margin-left: 10px;
    margin-right: 10px;
    background: transparent url(../img/fukidashi-sp.png) 50% 0% no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 375px) {
  ul.voice li {
    height: auto;
    padding-top: 38.7931%;
  }
}
ul.voice .comment {
  width: 100%;
  height: 125px;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  ul.voice .comment {
    padding: 0 5px;
    height: 92px;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 375px) {
  ul.voice .comment {
    font-size: 3.73333vw;
  }
}
ul.voice .prof {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
  color: #03A2E5;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1099px) {
  ul.voice .prof {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  ul.voice .prof {
    font-size: 3.46667vw;
  }
}
ul.voice .prof:before {
  content: " ";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: transparent url(../img/ico-user.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 5px;
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
@media screen and (max-width: 1099px) {
  ul.voice .prof:before {
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}

/* --------------------------------------------------

リスト

-------------------------------------------------- */
ul.std li {
  padding-left: 1.5em;
  position: relative;
  font-size: 15px;
}
@media screen and (max-width: 1099px) {
  ul.std li {
    font-size: 14px;
  }
}
ul.std li:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: .45em;
  width: .75em;
  height: .75em;
  background: transparent url(../img/ico-li.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
ul.std.red li:before {
  background: transparent url(../img/ico-li-red.svg) 50% 50% no-repeat;
}
ul.std li + li {
  margin-top: 1em;
}
ul.std + .type2,
ul.std + p {
	margin-top: 1.5em;
}
ul.notes + ul.std {
	margin-top: 2em;
}

/* 装飾なしのリスト */
ul.org {
	list-style-type: disc;
	margin-left: 2em;
}
h2 + ul.org,
p + ul.org,
ul + ul.org,
ol + ul.org {
  margin-top: 2em;
  margin-bottom:2em;
}
ul.org li {
	margin-bottom: 1em;
  font-size: 15px;
}
@media screen and (max-width: 1099px) {
  ul.org li {
    font-size: 14px;
    line-height: 1.6;
  }
}
ul.org li > ul.org {
  margin-top: 1em;
}

/* 補足事項 */
ul.notes {
  display: block;
  margin-top: 2em;
  width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  ul.notes {
    width: auto;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
    font-size: 12px;
  }
}
.description-acc ul.notes {
  list-style-type: none;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
ul.notes li,
.description-acc ul.notes li {
  font-size: 14px;
  text-indent: -1em;
  margin-left: 1em;
  letter-spacing: 1px;
}
ul.notes.numbered li,
.description-acc ul.notes.numbered li {
  text-indent: -2.25em;
  margin-left: 2.25em;
}
.timetable .notes,
.outline .notes {
  width: auto;
}
ul.notes li + li {
  margin-top: .5em;
}

/* 番号リスト */
ol.std {
  counter-reset: section;
}
p + ol.std,
ul + ol.std,
ol + ol.std {
  margin-top: 2em;
  margin-bottom:2em;
}
ol.std li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  font-size: 15px;
}
@media screen and (max-width: 1099px) {
  ol.std li {
    font-size: 14px;
    line-height: 1.6;
  }
}
ol.std > li:before {
  counter-increment: section;
  content: counters(section,"-") ".";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: 500;
}
ol.std li > li:before {
  content: counters(section,"-") ". ";
  counter-increment: section;
}
ol.std.red > li:before {
  color: #E80047;
}
ol.std li + li {
  margin-top: 1em;
}
ol.std li > ol {
  counter-reset: section;
  margin-top: 1em;
  /*margin-left: -1em;*/
}
ol.std li > ol li {
  padding-left: 2.5em;
}
ol.std li ul {
	margin-top: 1em;
}

ol.std .double-digit {
  margin-left: .5em;
}

/* 装飾なしの定義リスト */
dl.org dt {
  margin-bottom:1em;
}
h2 + dl.org,
p + dl.org {
  margin-top: 2em;
  margin-bottom:2em;
}
@media screen and (max-width: 1099px) {
  p + dl.org{
    font-size: 14px;
    line-height: 1.6;
  }
}

/* --------------------------------------------------

開催概要

-------------------------------------------------- */
table.outline {
  max-width: 910px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 3px;
}
@media screen and (max-width: 1099px) {
  table.outline {
    display: block;
    width: auto;
    max-width: none;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}
@media screen and (max-width: 1099px) {
  table.outline tbody, table.outline tr {
    display: block;
  }
}
table.outline th, table.outline td {
  padding: 40px 30px;
  border-bottom: 1px solid #ccc;
  letter-spacing: 1px;
  vertical-align: top;
}
@media screen and (max-width: 1099px) {
  table.outline th, table.outline td {
    display: block;
    padding: 0;
    font-size: 14px;
  }
}
table.outline th {
  background-color: #F3F1EA;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  width: 20%;
}
@media screen and (max-width: 1099px) {
  table.outline th {
    width: auto;
    padding: 1em;
    white-space: normal;
  }
}
table.outline td {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1099px) {
  table.outline td {
    padding: 1em;
    font-size: 14px;
  }
}
table.outline td h3 {
  border: none;
  height: auto;
  border-right: none;
  text-align: left;
  color: #03A2E5;
  max-width: none;
  margin: 0;
  display: block;
  font-weight: 500;
  margin-bottom: .5em;
  font-size: 16px;
  padding-top: 1em;
}
table.outline td h3:before {
  content: "";
  display: inline-block;
  margin-right: .5em;
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  width: 20px;
  height: 22px;
  background: transparent url(../img/ico-mark.svg) 0% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
table.outline td h3:first-child {
  padding-top: 0;
}
table.outline td h3 + ul {
  margin-top: 1em;
}
table.outline td h3.type2:before {
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  background-image: url(../img/ico-point.svg);
}
table.outline td a {
  text-decoration: underline;
  word-break: break-all;
}
table.outline td a:hover {
  color: #F8B500;
}
table.outline td a:after_ {
  content: "\f3d1";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: .5em;
}
@media screen and (min-width: 1100px) {
  table.outline tr:last-child th, table.outline tr:last-child td {
    border-bottom: none;
  }
}
table.outline tr:first-child th:first-child {
  border-radius: 3px 0 0 0;
}
table.outline tr:first-child th:last-child {
  border-radius: 0 3px 0 0;
}
table.outline tr:last-child th:first-child {
  border-radius: 0 0 0 3px;
}
table.outline tr:last-child th:last-child {
  border-radius: 0 0 3px 0;
}
table.outline em {
  font-weight: 700;
  color: #c4002f;
}
table.outline .point {
  display: block;
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 2em;
  color: #009FE5;
  background-color: #fafafa;
  padding: 15px;
  padding-left: 60px;
  border-radius: 6px;
  position: relative;
  border: 1px dotted  #009FE5;
}
@media screen and (max-width: 1099px) {
  table.outline .point {
    padding: 1.25em 1.5em;
    padding-right: 1.25em;
    padding-top: 60px;
    font-size: 14px;
  }
}
table.outline .point:before {
  content: "";
  position: absolute;
  left: 20px;
  width: 26px;
  height: 26px;
  background: transparent url(../img/ico-notes.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 1099px) {
  table.outline .point:before {
    display: inline-block;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 20px;
    font-size: 30px;
  }
}
table.outline a.book-titile {
  display: block;
}
table.outline img.book {
  width: 100px;
  height: auto;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 0px;
}
table.outline img.seminar {
  width: 500px;
  height: auto;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0px;
  border: 1px solid rgb(101, 101, 101);
}
@media screen and (max-width: 1099px) {
  table.outline img.seminar {
    width: 240px;
  }
}
/* Google Map */
#gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-top: 10px;
  margin-bottom: 1.5em;
}
#gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* --------------------------------------------------

重要事項

-------------------------------------------------- */
.important {
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  border: 2px solid #03A2E5;
  border-radius: 6px;
  padding: 20px 40px 30px;
  background-color: #fafafa;
}
@media screen and (max-width: 1099px) {
  .important {
    width: auto;
    max-width: none;
    margin: 30px 5.33333%;
    padding: 10px 20px 20px;
  }
}
.important dt {
  text-align: center;
  color: #03A2E5;
  font-size: 24px;
  letter-spacing: .1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #03A2E5;
  margin-bottom: 2em;
  padding-right: 1em;
}
@media screen and (max-width: 1099px) {
  .important dt {
    font-size: 18px;
    padding-bottom: 1em;
    margin-bottom: 1em;
    padding-right: 1em;
  }
}
.important dt:before {
  content: "";
  margin-right: .5em;
  display: inline-block;
  width: 30px;
  height: 40px;
  background: transparent url(../img/ico-point.svg) 0% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
@media screen and (max-width: 1099px) {
  .important dt:before {
    width: 25px;
    height: 35px;
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.important dd {
  font-size: 15px;
  line-height: 1.71;
}
@media screen and (max-width: 1099px) {
  .important dd {
    font-size: 14px;
    line-height: 1.6;
  }
}
.important h4 {
  font-weight:bold;
  margin-top:2em;
  margin-bottom:1em;
}
.important p + p {
  margin-top:1em;
  margin-bottom:1em;
}
.important a {
  text-decoration: underline;
  word-break: break-all;
}
.important a:hover {
  color: #F8B500;
}
.important a:after_ {
  content: "\f3d1";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: .5em;
}
.important ul.notes {
    width: auto;
    margin-left: 0;
}

/* --------------------------------------------------

支払方法／キャンセルポリシー

-------------------------------------------------- */
#policy {
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px 40px 30px;
  background-color: #fbfbfb;
}
@media screen and (max-width: 1099px) {
  #policy {
    width: auto;
    max-width: none;
    margin: 30px 5.33333%;
    padding: 10px 20px 20px;
  }
}
#policy dt {
  text-align: center;
  color: #03A2E5;
  font-size: 24px;
  letter-spacing: .1em;
  margin-bottom: 1.75em;
  padding-right: 1em;
}
@media screen and (max-width: 1099px) {
  #policy dt {
    font-size: 18px;
    padding-bottom: 1em;
    margin-bottom: 1em;
    padding-right: 1em;
  }
}
#policy dt:not(:first-child) {
  margin-top: 2.5em;
}
#policy dt:first-child {
  margin-top: 1.25em;
}
#policy dd {
  font-size: 15px;
  line-height: 1.71;
}
@media screen and (max-width: 1099px) {
  #policy dd {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ご連絡、お問い合わせ先 */
#policy dd:last-child {
  margin-top: 2.5em;
  text-align: center;
}
@media screen and (max-width: 666px) {
  #policy dd:last-child > p {
    text-align: left;
  }
}
@media screen and (min-width: 667px) {
  #policy dd:last-child > p br.pc-only {
    display: inline !important;
  }
}
#policy-inquiry {
  display: inline-block;
  margin-top: 2em;
  padding: 1em 1.5em;
  text-align: left;
  background: #f3f1ea;
  border-radius: 6px;
}
#policy-inquiry h3 {
  position: relative;
  margin-bottom: 1.25em;
  font-weight: bold;
  text-align: center;
  color: #94938d
}
#policy-inquiry h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 12em;
  height: 5px;
  background: #d8d6ce;
  transform: translateX(-50%);
}
/* 支払方法 ＞ 請求書PDF送付に関する注釈 */
#policy b.fz13.red {
  display: inline-block;
  margin: 0.75em auto 0.5em;
}

/* --------------------------------------------------

良くある質問

-------------------------------------------------- */
div.faq {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #03A2E5;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1099px) {
  div.faq {
    width: auto;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}
div.faq + .faq {
  margin-top: 20px;
}
div.faq a {
  word-break: break-all;
}

/* 質問 */
.acc-hd {
  padding: 35px 95px;
  padding-right: 112px;
  color: #03A2E5;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  .acc-hd {
    padding: 17px 47px;
    padding-right: 56px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  .acc-hd:hover {
    cursor: pointer;
    background-color: #f7f5f0;
  }
}
.acc-hd:before {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 16px;
  height: 25px;
  background: transparent url(../img/ico-q.svg) 0% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  left: 45px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
  .acc-hd:before {
    width: 12px;
    height: 19px;
    left: 20px;
  }
}
.acc-hd:after {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 36px;
  height: 36px;
  background: transparent url(../img/ico-acc.png) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  right: 35px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  .acc-hd:after {
    right: 17px;
    width: 26px;
    height: 26px;
  }
}
.acc-hd.open:after {
  background-image: url(../img/ico-acc-03.png);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/* 回答 */
.acc-body {
  display: none;
  padding: 35px 95px;
  padding-right: 112px;
  color: #000;
  font-weight: 400;
  font-size: 15px;
  position: relative;
  border-top: 1px dotted #03A2E5;
}
@media screen and (max-width: 1099px) {
  .acc-body {
    padding: 17px 47px;
    padding-right: 20px;
    font-size: 14px;
  }
}
.acc-body:before {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 23px;
  height: 23px;
  background: transparent url(../img/ico-a.svg) 0% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  left: 42px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
  .acc-body:before {
    left: 16px;
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------

インプレスセミナーについて

-------------------------------------------------- */
section#about-seminar {
  background-color: #f1efe7;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #f1efe7 0%, #ffffff 100%);
  width: 100%;
  min-height: 671px;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 1099px) {
  section#about-seminar {
    padding-top: 50px;
    min-height: 0;
    padding-bottom: 20px;
  }
}
section#about-seminar:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent url(../img/about-bg.png) 100% 0% no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 1099px) {
  section#about-seminar:before {
    -moz-background-size: 40% auto;
    -o-background-size: 40% auto;
    -webkit-background-size: 40% auto;
    background-size: 40% auto;
  }
}
section#about-seminar a {
  text-decoration: none;
}
section#about-seminar h2 {
  color: #000;
  font-size: 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1099px) {
  section#about-seminar h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-left: 1.5em;
    margin-right: 1.5em;
    letter-spacing: 1px;
  }
}
section#about-seminar p.lead {
  color: #444;
  line-height: 1.8;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0px 0px 6px #f5f3ed;
}
section#about-seminar p.lead a {
  color: #000;
  font-weight: 500;
}
section#about-seminar p.lead a:hover {
  color: #0CB59B;
}
@media screen and (max-width: 1099px) {
  section#about-seminar p.lead {
    width: auto;
    margin-left: 8%;
    margin-right: 6.66667%;
  }
}
section#about-seminar p.lead + h2 {
  margin-top: 80px;
}
@media screen and (max-width: 1099px) {
  section#about-seminar p.lead + h2 {
    margin-top: 30px;
  }
}

/* こちらもおすすめバナー */
ul.bnr {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 1099px) {
  ul.bnr {
    width: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
ul.bnr li {
  width: 240px;
}
@media screen and (min-width: 1100px) {
  ul.bnr li + li {
    margin-left: 13px;
  }
}
@media screen and (max-width: 1099px) {
  ul.bnr li {
    width: 300px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
  }
}
ul.bnr .copy {
  width: 100%;
  height: 112px;
  text-align: center;
  font-size: 14px;
  color: #444;
  letter-spacing: 0;
  background: transparent url(../img/fukidashi-02.svg) 50% 0% no-repeat;
  -moz-background-size: 240px 112px;
  -o-background-size: 240px 112px;
  -webkit-background-size: 240px 112px;
  background-size: 240px 112px;
  margin-bottom: 23px;
  padding-bottom: 17px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.8;
}
@media screen and (max-width: 1099px) {
  ul.bnr .copy {
    background-image: url(../img/fukidashi-03.svg);
    -moz-background-size: 300px 60px;
    -o-background-size: 300px 60px;
    -webkit-background-size: 300px 60px;
    background-size: 300px 60px;
    height: 60px;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-bottom: 10px;
    font-size: 13px;
  }
}
ul.bnr figure {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1099px) {
  ul.bnr figure {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}
ul.bnr img {
  display: block;
  width: 100%;
  height: auto;
}

p.recommend {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1099px) {
  p.recommend {
    width: auto;
    padding-left: 5.33333%;
    padding-right: 5.33333%;
    font-size: 15px;
    position: relative;
    padding-top: 40px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
  }
}
p.recommend:before {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent url(../img/ico-ad.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  margin-right: 14px;
}
@media screen and (max-width: 1099px) {
  p.recommend:before {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------

フッター

-------------------------------------------------- */
footer#gfooter {
  width: 100%;
  height: 185px;
  background-color: #03A2E5;
  color: #fff;
}
@media screen and (max-width: 1099px) {
  footer#gfooter {
    height: 140px;
  }
}
footer#gfooter .inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 100%;
}
footer#gfooter .logo {
  position: absolute;
  width: 100px;
  height: 71px;
  left: 52px;
  top: 46px;
}
@media screen and (max-width: 1099px) {
  footer#gfooter .logo {
    width: 67px;
    height: 47px;
    bottom: auto;
    top: 17px;
    left: 15px;
  }
}
footer#gfooter .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
footer#gfooter .copyright {
  font-size: 13px;
  font-family: Roboto, sans-serif;
  position: absolute;
  left: 52px;
  top: 128px;
  font-weight: 400;
}
@media screen and (max-width: 1099px) {
  footer#gfooter .copyright {
    display: block;
    text-align: center;
    left: auto;
    width: 100%;
    bottom: 12px;
    line-height: 1.2;
    font-size: 12px;
    top: auto;
  }
}

/* 特定商取引法 */
#footer-sub {
  position: absolute;
  right: 52px;
  top: 128px;
  font-size: 13px;
}
@media screen and (max-width: 1099px) {
  #footer-sub {
    display: inline-block;
    right: 20px;
    left: auto;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    font-size: 13px;
    top: 68px;
    white-space: nowrap;
  }
}
#footer-sub a {
  display: inline-block;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#footer-sub a:before {
  content: " ";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: transparent url(../img/arrow-02.svg) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 5px;
}
#footer-sub a:hover {
  opacity: .7;
}

/* SNS */
ul.sns {
  height: 33px;
  display: inline-block;
  position: absolute;
  top: 65px;
  right: 52px;
}
@media screen and (max-width: 1099px) {
  ul.sns {
    top: 20px;
    right: 15px;
  }
}
ul.sns li {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  height: 33px;
  width: 33px;
  vertical-align: middle;
  text-indent: 100000%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background: transparent 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  ul.sns li {
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  ul.sns li + li {
    margin-left: 30.0px;
  }
  ul.sns li:hover {
    opacity: .5;
  }
}
ul.sns li.fb {
  background-image: url(../img/ico-facebook.svg);
}
ul.sns li.twt {
  background-image: url(../img/ico-twt.svg);
}
ul.sns li.line {
  background-image: url(../img/ico-line.svg);
}
ul.sns li.hateb {
  background-image: url(../img/ico-hatena.svg);
}
@media screen and (max-width: 1099px) {
  ul.sns li {
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* --------------------------------------------------

画面最下部に固定する申し込みボタン（SP）

-------------------------------------------------- */
#btn-fixed-sp {
  position: fixed;
  z-index: 8;
  width: 100%;
  height: 70px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 8px;
}
@media screen and (min-width: 420px) and (max-width: 1099px) {
  #btn-fixed-sp {
    padding-left:10%;
    padding-right:10%;
  }
}
@media screen and (min-width: 1100px) {
  #btn-fixed-sp {
    display: none;
  }
}
#btn-fixed-sp span {
	font-weight: bold;
	color: #0CB59B;
}
#btn-fixed-sp .entry {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #0CB59B;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
#btn-fixed-sp .entry:before {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent url(../img/ico-entry.svg) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 8px;
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

/* --------------------------------------------------

ページトップボタン

-------------------------------------------------- */
#pagetop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.7) url(../img/arrow-01.svg) 50% 47% no-repeat;
  -moz-background-size: 30% auto;
  -o-background-size: 30% auto;
  -webkit-background-size: 30% auto;
  background-size: 30% auto;
  z-index: 8;
}
@media screen and (min-width: 1100px) {
  #pagetop {
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #pagetop:hover {
    cursor: pointer;
    opacity: .7;
  }
}
@media screen and (max-width: 1099px) {
  #pagetop {
    right: 10px;
    bottom: 80.0px;
    width: 40px;
    height: 40px;
  }
}

/* --------------------------------------------------

テキスト関連

-------------------------------------------------- */
.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }

.bold { font-weight: bold !important; }

.smaller { font-size: smaller !important; }
.larger { font-size: larger !important; }

.red { color: #E80047 !important; }
.blue { color: #03A2E5 !important; }
.black { color: #000 !important; }
.orange { color: #FF7F00 !important; }

.fll { float: left; }
.flr { float: right; }
.fln { float: none; }

.cf:after {
  content: "";
  display: block;
  clear: both;
}

/*1文字インデント*/
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* --------------------------------------------------

画像関連

-------------------------------------------------- */
figure { display: block; }
figure img { display: block; }

.description-acc figure img,
.timetable figure img {
    width: auto;
    max-width: 100%;
}

.enlarge-link {
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 1px;
}
.enlarge-link:before {
  -moz-transition: background-image 0.2s;
  -o-transition: background-image 0.2s;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: transparent url(../img/ico-acc-ov-w16.png) 0% 0% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 5px;
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
.enlarge-link:hover {
  color: #03A2E5;
}
.enlarge-link:hover:before {
  background: transparent url(../img/ico-acc-w16.png) 0% 0% no-repeat;
}

.timetable .enlarge-link:before {
  margin-right: 3px;
}

/* --------------------------------------------------

その他

-------------------------------------------------- */
.hide { display: none !important; }

.posf { position: fixed !important; }
.posr { position: relative !important; }
.poss { position: static !important; }

/*PC SP表示切り替え*/
.sp-only { volume: inherit; }

@media all and (min-width: 1100px) and (max-width: 10000px) {
  .sp-only { display: none !important; }
}
@media screen and (max-width: 1099px) {
  .pc-only { display: none !important; }
}
.w100p { width: 100% !important; }

.wa { width: auto !important; }
.ha { height: auto !important; }

.clear { clear: both; }

#lineup-font-size-sampler { display: none; }

.dib { display: inline-block !important; }

@media screen and (max-width: 1099px) {
  .dib-sp { display: inline-block; }
}

/* リンクの無効化 */
@media all and (min-width: 1100px) and (max-width: 10000px) {
  .noLink-pc { pointer-events: none !important; }
}
@media screen and (max-width: 1099px) {
  .noLink-sp { pointer-events: none !important; }
}

/* --------------------------------------------------

パディングとマージン

-------------------------------------------------- */

/* パディング */

.p0 { padding: 0 !important; }
.pt0 { padding-top: 0px !important; }
.pr0 { padding-right: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pl0 { padding-left: 0px !important; }

.pt5 { padding-top: 5px !important; }
.pr5 { padding-right: 5px !important; }
.pb5 { padding-bottom: 5px !important; }
.pl5 { padding-left: 5px !important; }

.pt10 { padding-top: 10px !important; }
.pr10 { padding-right: 10px !important; }
.pb10 { padding-bottom: 10px !important; }
.pl10 { padding-left: 10px !important; }

.pt15 { padding-top: 15px !important; }
.pr15 { padding-right: 15px !important; }
.pb15 { padding-bottom: 15px !important; }
.pl15 { padding-left: 15px !important; }

.pt20 { padding-top: 20px !important; }
.pr20 { padding-right: 20px !important; }
.pb20 { padding-bottom: 20px !important; }
.pl20 { padding-left: 20px !important; }

.pt25 { padding-top: 25px !important; }
.pr25 { padding-right: 25px !important; }
.pb25 { padding-bottom: 25px !important; }
.pl25 { padding-left: 25px !important; }

.pt30 { padding-top: 30px !important; }
.pr30 { padding-right: 30px !important; }
.pb30 { padding-bottom: 30px !important; }
.pl30 { padding-left: 30px !important; }

.pt35 { padding-top: 35px !important; }
.pr35 { padding-right: 35px !important; }
.pb35 { padding-bottom: 35px !important; }
.pl35 { padding-left: 35px !important; }

.pt40 { padding-top: 40px !important; }
.pr40 { padding-right: 40px !important; }
.pb40 { padding-bottom: 40px !important; }
.pl40 { padding-left: 40px !important; }

.pt45 { padding-top: 45px !important; }
.pr45 { padding-right: 45px !important; }
.pb45 { padding-bottom: 45px !important; }
.pl45 { padding-left: 45px !important; }

.pt50 { padding-top: 50px !important; }
.pr50 { padding-right: 50px !important; }
.pb50 { padding-bottom: 50px !important; }
.pl50 { padding-left: 50px !important; }

.pt55 { padding-top: 55px !important; }
.pr55 { padding-right: 55px !important; }
.pb55 { padding-bottom: 55px !important; }
.pl55 { padding-left: 55px !important; }

.pt60 { padding-top: 60px !important; }
.pr60 { padding-right: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.pl60 { padding-left: 60px !important; }

.pt65 { padding-top: 65px !important; }
.pr65 { padding-right: 65px !important; }
.pb65 { padding-bottom: 65px !important; }
.pl65 { padding-left: 65px !important; }

.pt70 { padding-top: 70px !important; }
.pr70 { padding-right: 70px !important; }
.pb70 { padding-bottom: 70px !important; }
.pl70 { padding-left: 70px !important; }

.pt75 { padding-top: 75px !important; }
.pr75 { padding-right: 75px !important; }
.pb75 { padding-bottom: 75px !important; }
.pl75 { padding-left: 75px !important; }

.pt80 { padding-top: 80px !important; }
.pr80 { padding-right: 80px !important; }
.pb80 { padding-bottom: 80px !important; }
.pl80 { padding-left: 80px !important; }

.pt85 { padding-top: 85px !important; }
.pr85 { padding-right: 85px !important; }
.pb85 { padding-bottom: 85px !important; }
.pl85 { padding-left: 85px !important; }

.pt90 { padding-top: 90px !important; }
.pr90 { padding-right: 90px !important; }
.pb90 { padding-bottom: 90px !important; }
.pl90 { padding-left: 90px !important; }

.pt95 { padding-top: 95px !important; }
.pr95 { padding-right: 95px !important; }
.pb95 { padding-bottom: 95px !important; }
.pl95 { padding-left: 95px !important; }

.pt100 { padding-top: 100px !important; }
.pr100 { padding-right: 100px !important; }
.pb100 { padding-bottom: 100px !important; }
.pl100 { padding-left: 100px !important; }

.pt105 { padding-top: 105px !important; }
.pr105 { padding-right: 105px !important; }
.pb105 { padding-bottom: 105px !important; }
.pl105 { padding-left: 105px !important; }

.pt110 { padding-top: 110px !important; }
.pr110 { padding-right: 110px !important; }
.pb110 { padding-bottom: 110px !important; }
.pl110 { padding-left: 110px !important; }

.pt115 { padding-top: 115px !important; }
.pr115 { padding-right: 115px !important; }
.pb115 { padding-bottom: 115px !important; }
.pl115 { padding-left: 115px !important; }

.pt120 { padding-top: 120px !important; }
.pr120 { padding-right: 120px !important; }
.pb120 { padding-bottom: 120px !important; }
.pl120 { padding-left: 120px !important; }

.pt125 { padding-top: 125px !important; }
.pr125 { padding-right: 125px !important; }
.pb125 { padding-bottom: 125px !important; }
.pl125 { padding-left: 125px !important; }

.pt130 { padding-top: 130px !important; }
.pr130 { padding-right: 130px !important; }
.pb130 { padding-bottom: 130px !important; }
.pl130 { padding-left: 130px !important; }

.pt135 { padding-top: 135px !important; }
.pr135 { padding-right: 135px !important; }
.pb135 { padding-bottom: 135px !important; }
.pl135 { padding-left: 135px !important; }

.pt140 { padding-top: 140px !important; }
.pr140 { padding-right: 140px !important; }
.pb140 { padding-bottom: 140px !important; }
.pl140 { padding-left: 140px !important; }

.pt145 { padding-top: 145px !important; }
.pr145 { padding-right: 145px !important; }
.pb145 { padding-bottom: 145px !important; }
.pl145 { padding-left: 145px !important; }

.pt150 { padding-top: 150px !important; }
.pr150 { padding-right: 150px !important; }
.pb150 { padding-bottom: 150px !important; }
.pl150 { padding-left: 150px !important; }

.pt155 { padding-top: 155px !important; }
.pr155 { padding-right: 155px !important; }
.pb155 { padding-bottom: 155px !important; }
.pl155 { padding-left: 155px !important; }

.pt160 { padding-top: 160px !important; }
.pr160 { padding-right: 160px !important; }
.pb160 { padding-bottom: 160px !important; }
.pl160 { padding-left: 160px !important; }

.pt165 { padding-top: 165px !important; }
.pr165 { padding-right: 165px !important; }
.pb165 { padding-bottom: 165px !important; }
.pl165 { padding-left: 165px !important; }

.pt170 { padding-top: 170px !important; }
.pr170 { padding-right: 170px !important; }
.pb170 { padding-bottom: 170px !important; }
.pl170 { padding-left: 170px !important; }

.pt175 { padding-top: 175px !important; }
.pr175 { padding-right: 175px !important; }
.pb175 { padding-bottom: 175px !important; }
.pl175 { padding-left: 175px !important; }

.pt180 { padding-top: 180px !important; }
.pr180 { padding-right: 180px !important; }
.pb180 { padding-bottom: 180px !important; }
.pl180 { padding-left: 180px !important; }

.pt185 { padding-top: 185px !important; }
.pr185 { padding-right: 185px !important; }
.pb185 { padding-bottom: 185px !important; }
.pl185 { padding-left: 185px !important; }

.pt190 { padding-top: 190px !important; }
.pr190 { padding-right: 190px !important; }
.pb190 { padding-bottom: 190px !important; }
.pl190 { padding-left: 190px !important; }

.pt195 { padding-top: 195px !important; }
.pr195 { padding-right: 195px !important; }
.pb195 { padding-bottom: 195px !important; }
.pl195 { padding-left: 195px !important; }

/* マージン */

.m0a { margin: 0 auto !important; }
.ma { margin: auto !important; }
.mlra {
  margin-left: auto !important;
  margin-right: auto !important;
}

.m0 { margin: 0 !important; }
.mt0 { margin-top: 0px !important; }
.mr0 { margin-right: 0px !important; }
.mb0 { margin-bottom: 0px !important; }
.ml0 { margin-left: 0px !important; }

.mt5 { margin-top: 5px !important; }
.mr5 { margin-right: 5px !important; }
.mb5 { margin-bottom: 5px !important; }
.ml5 { margin-left: 5px !important; }

.mt-5 { margin-top: -5px !important; }
.mr-5 { margin-right: -5px !important; }
.mb-5 { margin-bottom: -5px !important; }
.ml-5 { margin-left: -5px !important; }

.mt10 { margin-top: 10px !important; }
.mr10 { margin-right: 10px !important; }
.mb10 { margin-bottom: 10px !important; }
.ml10 { margin-left: 10px !important; }

.mt-10 { margin-top: -10px !important; }
.mr-10 { margin-right: -10px !important; }
.mb-10 { margin-bottom: -10px !important; }
.ml-10 { margin-left: -10px !important; }

.mt15 { margin-top: 15px !important; }
.mr15 { margin-right: 15px !important; }
.mb15 { margin-bottom: 15px !important; }
.ml15 { margin-left: 15px !important; }

.mt-15 { margin-top: -15px !important; }
.mr-15 { margin-right: -15px !important; }
.mb-15 { margin-bottom: -15px !important; }
.ml-15 { margin-left: -15px !important; }

.mt20 { margin-top: 20px !important; }
.mr20 { margin-right: 20px !important; }
.mb20 { margin-bottom: 20px !important; }
.ml20 { margin-left: 20px !important; }

.mt-20 { margin-top: -20px !important; }
.mr-20 { margin-right: -20px !important; }
.mb-20 { margin-bottom: -20px !important; }
.ml-20 { margin-left: -20px !important; }

.mt25 { margin-top: 25px !important; }
.mr25 { margin-right: 25px !important; }
.mb25 { margin-bottom: 25px !important; }
.ml25 { margin-left: 25px !important; }

.mt-25 { margin-top: -25px !important; }
.mr-25 { margin-right: -25px !important; }
.mb-25 { margin-bottom: -25px !important; }
.ml-25 { margin-left: -25px !important; }

.mt30 { margin-top: 30px !important; }
.mr30 { margin-right: 30px !important; }
.mb30 { margin-bottom: 30px !important; }
.ml30 { margin-left: 30px !important; }

.mt-30 { margin-top: -30px !important; }
.mr-30 { margin-right: -30px !important; }
.mb-30 { margin-bottom: -30px !important; }
.ml-30 { margin-left: -30px !important; }

.mt35 { margin-top: 35px !important; }
.mr35 { margin-right: 35px !important; }
.mb35 { margin-bottom: 35px !important; }
.ml35 { margin-left: 35px !important; }

.mt-35 { margin-top: -35px !important; }
.mr-35 { margin-right: -35px !important; }
.mb-35 { margin-bottom: -35px !important; }
.ml-35 { margin-left: -35px !important; }

.mt40 { margin-top: 40px !important; }
.mr40 { margin-right: 40px !important; }
.mb40 { margin-bottom: 40px !important; }
.ml40 { margin-left: 40px !important; }

.mt-40 { margin-top: -40px !important; }
.mr-40 { margin-right: -40px !important; }
.mb-40 { margin-bottom: -40px !important; }
.ml-40 { margin-left: -40px !important; }

.mt45 { margin-top: 45px !important; }
.mr45 { margin-right: 45px !important; }
.mb45 { margin-bottom: 45px !important; }
.ml45 { margin-left: 45px !important; }

.mt-45 { margin-top: -45px !important; }
.mr-45 { margin-right: -45px !important; }
.mb-45 { margin-bottom: -45px !important; }
.ml-45 { margin-left: -45px !important; }

.mt50 { margin-top: 50px !important; }
.mr50 { margin-right: 50px !important; }
.mb50 { margin-bottom: 50px !important; }
.ml50 { margin-left: 50px !important; }

.mt-50 { margin-top: -50px !important; } 
.mr-50 { margin-right: -50px !important; }
.mb-50 { margin-bottom: -50px !important; }
.ml-50 { margin-left: -50px !important; }

.mt55 { margin-top: 55px !important; }
.mr55 { margin-right: 55px !important; }
.mb55 { margin-bottom: 55px !important; }
.ml55 { margin-left: 55px !important; }

.mt-55 { margin-top: -55px !important; }
.mr-55 { margin-right: -55px !important; }
.mb-55 { margin-bottom: -55px !important; }
.ml-55 { margin-left: -55px !important; }

.mt60 { margin-top: 60px !important; }
.mr60 { margin-right: 60px !important; }
.mb60 { margin-bottom: 60px !important; }
.ml60 { margin-left: 60px !important; }

.mt-60 { margin-top: -60px !important; }
.mr-60 { margin-right: -60px !important; }
.mb-60 { margin-bottom: -60px !important; }
.ml-60 { margin-left: -60px !important; }

.mt65 { margin-top: 65px !important; }
.mr65 { margin-right: 65px !important; }
.mb65 { margin-bottom: 65px !important; }
.ml65 { margin-left: 65px !important; }

.mt-65 { margin-top: -65px !important; }
.mr-65 { margin-right: -65px !important; }
.mb-65 { margin-bottom: -65px !important; }
.ml-65 { margin-left: -65px !important; }

.mt70 { margin-top: 70px !important; }
.mr70 { margin-right: 70px !important; }
.mb70 { margin-bottom: 70px !important; }
.ml70 { margin-left: 70px !important; }

.mt-70 { margin-top: -70px !important; }
.mr-70 { margin-right: -70px !important; }
.mb-70 { margin-bottom: -70px !important; }
.ml-70 { margin-left: -70px !important; }

.mt75 { margin-top: 75px !important; }
.mr75 { margin-right: 75px !important; }
.mb75 { margin-bottom: 75px !important; }
.ml75 { margin-left: 75px !important; }

.mt-75 { margin-top: -75px !important; }
.mr-75 { margin-right: -75px !important; }
.mb-75 { margin-bottom: -75px !important; }
.ml-75 { margin-left: -75px !important; }

.mt80 { margin-top: 80px !important; }
.mr80 { margin-right: 80px !important; }
.mb80 { margin-bottom: 80px !important; }
.ml80 { margin-left: 80px !important; }

.mt-80 { margin-top: -80px !important; }
.mr-80 { margin-right: -80px !important; }
.mb-80 { margin-bottom: -80px !important; }
.ml-80 { margin-left: -80px !important; }

.mt85 { margin-top: 85px !important; }
.mr85 { margin-right: 85px !important; }
.mb85 { margin-bottom: 85px !important; }
.ml85 { margin-left: 85px !important; }

.mt-85 { margin-top: -85px !important; }
.mr-85 { margin-right: -85px !important; }
.mb-85 { margin-bottom: -85px !important; }
.ml-85 { margin-left: -85px !important; }

.mt90 { margin-top: 90px !important; }
.mr90 { margin-right: 90px !important; }
.mb90 { margin-bottom: 90px !important; }
.ml90 { margin-left: 90px !important; }

.mt-90 { margin-top: -90px !important; }
.mr-90 { margin-right: -90px !important; }
.mb-90 { margin-bottom: -90px !important; }
.ml-90 { margin-left: -90px !important; }

.mt95 { margin-top: 95px !important; }
.mr95 { margin-right: 95px !important; }
.mb95 { margin-bottom: 95px !important; }
.ml95 { margin-left: 95px !important; }

.mt-95 { margin-top: -95px !important; }
.mr-95 { margin-right: -95px !important; }
.mb-95 { margin-bottom: -95px !important; }
.ml-95 { margin-left: -95px !important; }

.mt100 { margin-top: 100px !important; }
.mr100 { margin-right: 100px !important; }
.mb100 { margin-bottom: 100px !important; }
.ml100 { margin-left: 100px !important; }

.mt-100 { margin-top: -100px !important; }
.mr-100 { margin-right: -100px !important; }
.mb-100 { margin-bottom: -100px !important; }
.ml-100 { margin-left: -100px !important; }

.mt105 { margin-top: 105px !important; }
.mr105 { margin-right: 105px !important; }
.mb105 { margin-bottom: 105px !important; }
.ml105 { margin-left: 105px !important; }

.mt-105 { margin-top: -105px !important; }
.mr-105 { margin-right: -105px !important; }
.mb-105 { margin-bottom: -105px !important; }
.ml-105 { margin-left: -105px !important; }

.mt110 { margin-top: 110px !important; }
.mr110 { margin-right: 110px !important; }
.mb110 { margin-bottom: 110px !important; }
.ml110 { margin-left: 110px !important; }

.mt-110 { margin-top: -110px !important; }
.mr-110 { margin-right: -110px !important; }
.mb-110 { margin-bottom: -110px !important; }
.ml-110 { margin-left: -110px !important; }

.mt115 { margin-top: 115px !important; }
.mr115 { margin-right: 115px !important; }
.mb115 { margin-bottom: 115px !important; }
.ml115 { margin-left: 115px !important; }

.mt-115 { margin-top: -115px !important; }
.mr-115 { margin-right: -115px !important; }
.mb-115 { margin-bottom: -115px !important; }
.ml-115 { margin-left: -115px !important; }

.mt120 { margin-top: 120px !important; }
.mr120 { margin-right: 120px !important; }
.mb120 { margin-bottom: 120px !important; }
.ml120 { margin-left: 120px !important; }

.mt-120 { margin-top: -120px !important; }
.mr-120 { margin-right: -120px !important; }
.mb-120 { margin-bottom: -120px !important; }
.ml-120 { margin-left: -120px !important; }

.mt125 { margin-top: 125px !important; }
.mr125 { margin-right: 125px !important; }
.mb125 { margin-bottom: 125px !important; }
.ml125 { margin-left: 125px !important; }

.mt-125 { margin-top: -125px !important; }
.mr-125 { margin-right: -125px !important; }
.mb-125 { margin-bottom: -125px !important; }
.ml-125 { margin-left: -125px !important; }

.mt130 { margin-top: 130px !important; }
.mr130 { margin-right: 130px !important; }
.mb130 { margin-bottom: 130px !important; }
.ml130 { margin-left: 130px !important; }

.mt-130 { margin-top: -130px !important; }
.mr-130 { margin-right: -130px !important; }
.mb-130 { margin-bottom: -130px !important; }
.ml-130 { margin-left: -130px !important; }

.mt135 { margin-top: 135px !important; }
.mr135 { margin-right: 135px !important; }
.mb135 { margin-bottom: 135px !important; }
.ml135 { margin-left: 135px !important; }

.mt-135 { margin-top: -135px !important; }
.mr-135 { margin-right: -135px !important; }
.mb-135 { margin-bottom: -135px !important; }
.ml-135 { margin-left: -135px !important; }

.mt140 { margin-top: 140px !important; }
.mr140 { margin-right: 140px !important; }
.mb140 { margin-bottom: 140px !important; }
.ml140 { margin-left: 140px !important; }

.mt-140 { margin-top: -140px !important; }
.mr-140 { margin-right: -140px !important; }
.mb-140 { margin-bottom: -140px !important; }
.ml-140 { margin-left: -140px !important; }

.mt145 { margin-top: 145px !important; }
.mr145 { margin-right: 145px !important; }
.mb145 { margin-bottom: 145px !important; }
.ml145 { margin-left: 145px !important; }

.mt-145 { margin-top: -145px !important; }
.mr-145 { margin-right: -145px !important; }
.mb-145 { margin-bottom: -145px !important; }
.ml-145 { margin-left: -145px !important; }

.mt150 { margin-top: 150px !important; }
.mr150 { margin-right: 150px !important; }
.mb150 { margin-bottom: 150px !important; }
.ml150 { margin-left: 150px !important; }

.mt-150 { margin-top: -150px !important; }
.mr-150 { margin-right: -150px !important; }
.mb-150 { margin-bottom: -150px !important; }
.ml-150 { margin-left: -150px !important; }

.mt155 { margin-top: 155px !important; }
.mr155 { margin-right: 155px !important; }
.mb155 { margin-bottom: 155px !important; }
.ml155 { margin-left: 155px !important; }

.mt-155 { margin-top: -155px !important; }
.mr-155 { margin-right: -155px !important; }
.mb-155 { margin-bottom: -155px !important; }
.ml-155 { margin-left: -155px !important; }

.mt160 { margin-top: 160px !important; }
.mr160 { margin-right: 160px !important; }
.mb160 { margin-bottom: 160px !important; }
.ml160 { margin-left: 160px !important; }

.mt-160 { margin-top: -160px !important; }
.mr-160 { margin-right: -160px !important; }
.mb-160 { margin-bottom: -160px !important; }
.ml-160 { margin-left: -160px !important; }

.mt165 { margin-top: 165px !important; }
.mr165 { margin-right: 165px !important; }
.mb165 { margin-bottom: 165px !important; }
.ml165 { margin-left: 165px !important; }

.mt-165 { margin-top: -165px !important; }
.mr-165 { margin-right: -165px !important; }
.mb-165 { margin-bottom: -165px !important; }
.ml-165 { margin-left: -165px !important; }

.mt170 { margin-top: 170px !important; }
.mr170 { margin-right: 170px !important; }
.mb170 { margin-bottom: 170px !important; }
.ml170 { margin-left: 170px !important; }

.mt-170 { margin-top: -170px !important; }
.mr-170 { margin-right: -170px !important; }
.mb-170 { margin-bottom: -170px !important; }
.ml-170 { margin-left: -170px !important; }

.mt175 { margin-top: 175px !important; }
.mr175 { margin-right: 175px !important; }
.mb175 { margin-bottom: 175px !important; }
.ml175 { margin-left: 175px !important; }

.mt-175 { margin-top: -175px !important; }
.mr-175 { margin-right: -175px !important; }
.mb-175 { margin-bottom: -175px !important; }
.ml-175 { margin-left: -175px !important; }

.mt180 { margin-top: 180px !important; }
.mr180 { margin-right: 180px !important; }
.mb180 { margin-bottom: 180px !important; }
.ml180 { margin-left: 180px !important; }

.mt-180 { margin-top: -180px !important; }
.mr-180 { margin-right: -180px !important; }
.mb-180 { margin-bottom: -180px !important; }
.ml-180 { margin-left: -180px !important; }

.mt185 { margin-top: 185px !important; }
.mr185 { margin-right: 185px !important; }
.mb185 { margin-bottom: 185px !important; }
.ml185 { margin-left: 185px !important; }

.mt-185 { margin-top: -185px !important; }
.mr-185 { margin-right: -185px !important; }
.mb-185 { margin-bottom: -185px !important; }
.ml-185 { margin-left: -185px !important; }

.mt190 { margin-top: 190px !important; }
.mr190 { margin-right: 190px !important; }
.mb190 { margin-bottom: 190px !important; }
.ml190 { margin-left: 190px !important; }

.mt-190 { margin-top: -190px !important; }
.mr-190 { margin-right: -190px !important; }
.mb-190 { margin-bottom: -190px !important; }
.ml-190 { margin-left: -190px !important; }

.mt195 { margin-top: 195px !important; }
.mr195 { margin-right: 195px !important; }
.mb195 { margin-bottom: 195px !important; }
.ml195 { margin-left: 195px !important; }

.mt-195 { margin-top: -195px !important; }
.mr-195 { margin-right: -195px !important; }
.mb-195 { margin-bottom: -195px !important; }
.ml-195 { margin-left: -195px !important; }

/* フォントサイズ */

.fz50p { font-size: 50% !important; }
.fz55p { font-size: 55% !important; }
.fz60p { font-size: 60% !important; }
.fz65p { font-size: 65% !important; }
.fz70p { font-size: 70% !important; }
.fz75p { font-size: 75% !important; }
.fz80p { font-size: 80% !important; }
.fz85p { font-size: 85% !important; }
.fz90p { font-size: 90% !important; }
.fz95p { font-size: 95% !important; }
.fz100p { font-size: 100% !important; }
.fz105p { font-size: 105% !important; }
.fz110p { font-size: 110% !important; }
.fz115p { font-size: 115% !important; }
.fz120p { font-size: 120% !important; }
.fz125p { font-size: 125% !important; }
.fz130p { font-size: 130% !important; }
.fz135p { font-size: 135% !important; }
.fz140p { font-size: 140% !important; }
.fz145p { font-size: 145% !important; }
.fz150p { font-size: 150% !important; }

.fz0 { font-size: 0px !important; }
.fz10 { font-size: 10px !important; }
.fz11 { font-size: 11px !important; }
.fz12 { font-size: 12px !important; }
.fz13 { font-size: 13px !important; }
.fz14 { font-size: 14px !important; }
.fz15 { font-size: 15px !important; }
.fz16 { font-size: 16px !important; }
.fz17 { font-size: 17px !important; }
.fz18 { font-size: 18px !important; }
.fz19 { font-size: 19px !important; }
.fz20 { font-size: 20px !important; }
.fz21 { font-size: 21px !important; }
.fz22 { font-size: 22px !important; }
.fz23 { font-size: 23px !important; }
.fz24 { font-size: 24px !important; }
.fz25 { font-size: 25px !important; }
.fz26 { font-size: 26px !important; }
.fz27 { font-size: 27px !important; }
.fz28 { font-size: 28px !important; }
.fz29 { font-size: 29px !important; }
.fz30 { font-size: 30px !important; }
.fz35 { font-size: 35px !important; }
.fz40 { font-size: 40px !important; }
.fz45 { font-size: 45px !important; }
.fz50 { font-size: 50px !important; }
.fz60 { font-size: 60px !important; }
.fz65 { font-size: 65px !important; }
.fz70 { font-size: 70px !important; }
.fz75 { font-size: 75px !important; }
.fz80 { font-size: 80px !important; }
.fz85 { font-size: 85px !important; }
.fz90 { font-size: 90px !important; }
.fz95 { font-size: 95px !important; }
.fz100 { font-size: 100px !important; }
.fz105 { font-size: 105px !important; }
.fz110 { font-size: 110px !important; }
.fz115 { font-size: 115px !important; }
.fz120 { font-size: 120px !important; }
.fz125 { font-size: 125px !important; }
.fz130 { font-size: 130px !important; }
.fz135 { font-size: 135px !important; }
.fz140 { font-size: 140px !important; }
.fz145 { font-size: 145px !important; }
.fz150 { font-size: 150px !important; }
.fz155 { font-size: 155px !important; }
.fz160 { font-size: 160px !important; }
.fz165 { font-size: 165px !important; }
.fz170 { font-size: 170px !important; }
.fz175 { font-size: 175px !important; }
.fz180 { font-size: 180px !important; }
.fz185 { font-size: 185px !important; }
.fz190 { font-size: 190px !important; }
.fz195 { font-size: 195px !important; }

/*PCのみ*/

@media all and (min-width: 1100px) and (max-width: 10000px) {
  .pt0-pc { padding-top: 0px !important ; }
  .pr0-pc { padding-right: 0px !important ; }
  .pb0-pc { padding-bottom: 0px !important ; }
  .pl0-pc { padding-left: 0px !important ; }
  .mt0-pc { margin-top: 0px !important ; }
  .mr0-pc { margin-right: 0px !important ; }
  .mb0-pc { margin-bottom: 0px !important ; }
  .ml0-pc { margin-left: 0px !important ; }
  .mt-0-pc { margin-top: 0px !important ; }
  .mr-0-pc { margin-right: 0px !important ; }
  .mb-0-pc { margin-bottom: 0px !important ; }
  .ml-0-pc { margin-left: 0px !important ; }
  .fz0-pc { font-size: 0px !important ; }
  .pt5-pc { padding-top: 5px !important ; }
  .pr5-pc { padding-right: 5px !important ; }
  .pb5-pc { padding-bottom: 5px !important ; }
  .pl5-pc { padding-left: 5px !important ; }
  .mt5-pc { margin-top: 5px !important ; }
  .mr5-pc { margin-right: 5px !important ; }
  .mb5-pc { margin-bottom: 5px !important ; }
  .ml5-pc { margin-left: 5px !important ; }
  .mt-5-pc { margin-top: -5px !important ; }
  .mr-5-pc { margin-right: -5px !important ; }
  .mb-5-pc { margin-bottom: -5px !important ; }
  .ml-5-pc { margin-left: -5px !important ; }
  .fz5-pc { font-size: 5px !important ; }
  .pt10-pc { padding-top: 10px !important ; }
  .pr10-pc { padding-right: 10px !important ; }
  .pb10-pc { padding-bottom: 10px !important ; }
  .pl10-pc { padding-left: 10px !important ; }
  .mt10-pc { margin-top: 10px !important ; }
  .mr10-pc { margin-right: 10px !important ; }
  .mb10-pc { margin-bottom: 10px !important ; }
  .ml10-pc { margin-left: 10px !important ; }
  .mt-10-pc { margin-top: -10px !important ; }
  .mr-10-pc { margin-right: -10px !important ; }
  .mb-10-pc { margin-bottom: -10px !important ; }
  .ml-10-pc { margin-left: -10px !important ; }
  .fz10-pc { font-size: 10px !important ; }
  .pt15-pc { padding-top: 15px !important ; }
  .pr15-pc { padding-right: 15px !important ; }
  .pb15-pc { padding-bottom: 15px !important ; }
  .pl15-pc { padding-left: 15px !important ; }
  .mt15-pc { margin-top: 15px !important ; }
  .mr15-pc { margin-right: 15px !important ; }
  .mb15-pc { margin-bottom: 15px !important ; }
  .ml15-pc { margin-left: 15px !important ; }
  .mt-15-pc { margin-top: -15px !important ; }
  .mr-15-pc { margin-right: -15px !important ; }
  .mb-15-pc { margin-bottom: -15px !important ; }
  .ml-15-pc { margin-left: -15px !important ; }
  .fz15-pc { font-size: 15px !important ; }
  .pt20-pc { padding-top: 20px !important ; }
  .pr20-pc { padding-right: 20px !important ; }
  .pb20-pc { padding-bottom: 20px !important ; }
  .pl20-pc { padding-left: 20px !important ; }
  .mt20-pc { margin-top: 20px !important ; }
  .mr20-pc { margin-right: 20px !important ; }
  .mb20-pc { margin-bottom: 20px !important ; }
  .ml20-pc { margin-left: 20px !important ; }
  .mt-20-pc { margin-top: -20px !important ; }
  .mr-20-pc { margin-right: -20px !important ; }
  .mb-20-pc { margin-bottom: -20px !important ; }
  .ml-20-pc { margin-left: -20px !important ; }
  .fz20-pc { font-size: 20px !important ; }
  .pt25-pc { padding-top: 25px !important ; }
  .pr25-pc { padding-right: 25px !important ; }
  .pb25-pc { padding-bottom: 25px !important ; }
  .pl25-pc { padding-left: 25px !important ; }
  .mt25-pc { margin-top: 25px !important ; }
  .mr25-pc { margin-right: 25px !important ; }
  .mb25-pc { margin-bottom: 25px !important ; }
  .ml25-pc { margin-left: 25px !important ; }
  .mt-25-pc { margin-top: -25px !important ; }
  .mr-25-pc { margin-right: -25px !important ; }
  .mb-25-pc { margin-bottom: -25px !important ; }
  .ml-25-pc { margin-left: -25px !important ; }
  .fz25-pc { font-size: 25px !important ; }
  .pt30-pc { padding-top: 30px !important ; }
  .pr30-pc { padding-right: 30px !important ; }
  .pb30-pc { padding-bottom: 30px !important ; }
  .pl30-pc { padding-left: 30px !important ; }
  .mt30-pc { margin-top: 30px !important ; }
  .mr30-pc { margin-right: 30px !important ; }
  .mb30-pc { margin-bottom: 30px !important ; }
  .ml30-pc { margin-left: 30px !important ; }
  .mt-30-pc { margin-top: -30px !important ; }
  .mr-30-pc { margin-right: -30px !important ; }
  .mb-30-pc { margin-bottom: -30px !important ; }
  .ml-30-pc { margin-left: -30px !important ; }
  .fz30-pc { font-size: 30px !important ; }
  .pt35-pc { padding-top: 35px !important ; }
  .pr35-pc { padding-right: 35px !important ; }
  .pb35-pc { padding-bottom: 35px !important ; }
  .pl35-pc { padding-left: 35px !important ; }
  .mt35-pc { margin-top: 35px !important ; }
  .mr35-pc { margin-right: 35px !important ; }
  .mb35-pc { margin-bottom: 35px !important ; }
  .ml35-pc { margin-left: 35px !important ; }
  .mt-35-pc { margin-top: -35px !important ; }
  .mr-35-pc { margin-right: -35px !important ; }
  .mb-35-pc { margin-bottom: -35px !important ; }
  .ml-35-pc { margin-left: -35px !important ; }
  .fz35-pc { font-size: 35px !important ; }
  .pt40-pc { padding-top: 40px !important ; }
  .pr40-pc { padding-right: 40px !important ; }
  .pb40-pc { padding-bottom: 40px !important ; }
  .pl40-pc { padding-left: 40px !important ; }
  .mt40-pc { margin-top: 40px !important ; }
  .mr40-pc { margin-right: 40px !important ; }
  .mb40-pc { margin-bottom: 40px !important ; }
  .ml40-pc { margin-left: 40px !important ; }
  .mt-40-pc { margin-top: -40px !important ; }
  .mr-40-pc { margin-right: -40px !important ; }
  .mb-40-pc { margin-bottom: -40px !important ; }
  .ml-40-pc { margin-left: -40px !important ; }
  .fz40-pc { font-size: 40px !important ; }
  .pt45-pc { padding-top: 45px !important ; }
  .pr45-pc { padding-right: 45px !important ; }
  .pb45-pc { padding-bottom: 45px !important ; }
  .pl45-pc { padding-left: 45px !important ; }
  .mt45-pc { margin-top: 45px !important ; }
  .mr45-pc { margin-right: 45px !important ; }
  .mb45-pc { margin-bottom: 45px !important ; }
  .ml45-pc { margin-left: 45px !important ; }
  .mt-45-pc { margin-top: -45px !important ; }
  .mr-45-pc { margin-right: -45px !important ; }
  .mb-45-pc { margin-bottom: -45px !important ; }
  .ml-45-pc { margin-left: -45px !important ; }
  .fz45-pc { font-size: 45px !important ; }
  .pt50-pc { padding-top: 50px !important ; }
  .pr50-pc { padding-right: 50px !important ; }
  .pb50-pc { padding-bottom: 50px !important ; }
  .pl50-pc { padding-left: 50px !important ; }
  .mt50-pc { margin-top: 50px !important ; }
  .mr50-pc { margin-right: 50px !important ; }
  .mb50-pc { margin-bottom: 50px !important ; }
  .ml50-pc { margin-left: 50px !important ; }
  .mt-50-pc { margin-top: -50px !important ; }
  .mr-50-pc { margin-right: -50px !important ; }
  .mb-50-pc { margin-bottom: -50px !important ; }
  .ml-50-pc { margin-left: -50px !important ; }
  .fz50-pc { font-size: 50px !important ; }
  .pt55-pc { padding-top: 55px !important ; }
  .pr55-pc { padding-right: 55px !important ; }
  .pb55-pc { padding-bottom: 55px !important ; }
  .pl55-pc { padding-left: 55px !important ; }
  .mt55-pc { margin-top: 55px !important ; }
  .mr55-pc { margin-right: 55px !important ; }
  .mb55-pc { margin-bottom: 55px !important ; }
  .ml55-pc { margin-left: 55px !important ; }
  .mt-55-pc { margin-top: -55px !important ; }
  .mr-55-pc { margin-right: -55px !important ; }
  .mb-55-pc { margin-bottom: -55px !important ; }
  .ml-55-pc { margin-left: -55px !important ; }
  .fz55-pc { font-size: 55px !important ; }
  .pt60-pc { padding-top: 60px !important ; }
  .pr60-pc { padding-right: 60px !important ; }
  .pb60-pc { padding-bottom: 60px !important ; }
  .pl60-pc { padding-left: 60px !important ; }
  .mt60-pc { margin-top: 60px !important ; }
  .mr60-pc { margin-right: 60px !important ; }
  .mb60-pc { margin-bottom: 60px !important ; }
  .ml60-pc { margin-left: 60px !important ; }
  .mt-60-pc { margin-top: -60px !important ; }
  .mr-60-pc { margin-right: -60px !important ; }
  .mb-60-pc { margin-bottom: -60px !important ; }
  .ml-60-pc { margin-left: -60px !important ; }
  .fz60-pc { font-size: 60px !important ; }
  .pt65-pc { padding-top: 65px !important ; }
  .pr65-pc { padding-right: 65px !important ; }
  .pb65-pc { padding-bottom: 65px !important ; }
  .pl65-pc { padding-left: 65px !important ; }
  .mt65-pc { margin-top: 65px !important ; }
  .mr65-pc { margin-right: 65px !important ; }
  .mb65-pc { margin-bottom: 65px !important ; }
  .ml65-pc { margin-left: 65px !important ; }
  .mt-65-pc { margin-top: -65px !important ; }
  .mr-65-pc { margin-right: -65px !important ; }
  .mb-65-pc { margin-bottom: -65px !important ; }
  .ml-65-pc { margin-left: -65px !important ; }
  .fz65-pc { font-size: 65px !important ; }
  .pt70-pc { padding-top: 70px !important ; }
  .pr70-pc { padding-right: 70px !important ; }
  .pb70-pc { padding-bottom: 70px !important ; }
  .pl70-pc { padding-left: 70px !important ; }
  .mt70-pc { margin-top: 70px !important ; }
  .mr70-pc { margin-right: 70px !important ; }
  .mb70-pc { margin-bottom: 70px !important ; }
  .ml70-pc { margin-left: 70px !important ; }
  .mt-70-pc { margin-top: -70px !important ; }
  .mr-70-pc { margin-right: -70px !important ; }
  .mb-70-pc { margin-bottom: -70px !important ; }
  .ml-70-pc { margin-left: -70px !important ; }
  .fz70-pc { font-size: 70px !important ; }
  .pt75-pc { padding-top: 75px !important ; }
  .pr75-pc { padding-right: 75px !important ; }
  .pb75-pc { padding-bottom: 75px !important ; }
  .pl75-pc { padding-left: 75px !important ; }
  .mt75-pc { margin-top: 75px !important ; }
  .mr75-pc { margin-right: 75px !important ; }
  .mb75-pc { margin-bottom: 75px !important ; }
  .ml75-pc { margin-left: 75px !important ; }
  .mt-75-pc { margin-top: -75px !important ; }
  .mr-75-pc { margin-right: -75px !important ; }
  .mb-75-pc { margin-bottom: -75px !important ; }
  .ml-75-pc { margin-left: -75px !important ; }
  .fz75-pc { font-size: 75px !important ; }
  .pt80-pc { padding-top: 80px !important ; }
  .pr80-pc { padding-right: 80px !important ; }
  .pb80-pc { padding-bottom: 80px !important ; }
  .pl80-pc { padding-left: 80px !important ; }
  .mt80-pc { margin-top: 80px !important ; }
  .mr80-pc { margin-right: 80px !important ; }
  .mb80-pc { margin-bottom: 80px !important ; }
  .ml80-pc { margin-left: 80px !important ; }
  .mt-80-pc { margin-top: -80px !important ; }
  .mr-80-pc { margin-right: -80px !important ; }
  .mb-80-pc { margin-bottom: -80px !important ; }
  .ml-80-pc { margin-left: -80px !important ; }
  .fz80-pc { font-size: 80px !important ; }
  .pt85-pc { padding-top: 85px !important ; }
  .pr85-pc { padding-right: 85px !important ; }
  .pb85-pc { padding-bottom: 85px !important ; }
  .pl85-pc { padding-left: 85px !important ; }
  .mt85-pc { margin-top: 85px !important ; }
  .mr85-pc { margin-right: 85px !important ; }
  .mb85-pc { margin-bottom: 85px !important ; }
  .ml85-pc { margin-left: 85px !important ; }
  .mt-85-pc { margin-top: -85px !important ; }
  .mr-85-pc { margin-right: -85px !important ; }
  .mb-85-pc { margin-bottom: -85px !important ; }
  .ml-85-pc { margin-left: -85px !important ; }
  .fz85-pc { font-size: 85px !important ; }
  .pt90-pc { padding-top: 90px !important ; }
  .pr90-pc { padding-right: 90px !important ; }
  .pb90-pc { padding-bottom: 90px !important ; }
  .pl90-pc { padding-left: 90px !important ; }
  .mt90-pc { margin-top: 90px !important ; }
  .mr90-pc { margin-right: 90px !important ; }
  .mb90-pc { margin-bottom: 90px !important ; }
  .ml90-pc { margin-left: 90px !important ; }
  .mt-90-pc { margin-top: -90px !important ; }
  .mr-90-pc { margin-right: -90px !important ; }
  .mb-90-pc { margin-bottom: -90px !important ; }
  .ml-90-pc { margin-left: -90px !important ; }
  .fz90-pc { font-size: 90px !important ; }
  .pt95-pc { padding-top: 95px !important ; }
  .pr95-pc { padding-right: 95px !important ; }
  .pb95-pc { padding-bottom: 95px !important ; }
  .pl95-pc { padding-left: 95px !important ; }
  .mt95-pc { margin-top: 95px !important ; }
  .mr95-pc { margin-right: 95px !important ; }
  .mb95-pc { margin-bottom: 95px !important ; }
  .ml95-pc { margin-left: 95px !important ; }
  .mt-95-pc { margin-top: -95px !important ; }
  .mr-95-pc { margin-right: -95px !important ; }
  .mb-95-pc { margin-bottom: -95px !important ; }
  .ml-95-pc { margin-left: -95px !important ; }
  .fz95-pc { font-size: 95px !important ; }
  .pt100-pc { padding-top: 100px !important ; }
  .pr100-pc { padding-right: 100px !important ; }
  .pb100-pc { padding-bottom: 100px !important ; }
  .pl100-pc { padding-left: 100px !important ; }
  .mt100-pc { margin-top: 100px !important ; }
  .mr100-pc { margin-right: 100px !important ; }
  .mb100-pc { margin-bottom: 100px !important ; }
  .ml100-pc { margin-left: 100px !important ; }
  .mt-100-pc { margin-top: -100px !important ; }
  .mr-100-pc { margin-right: -100px !important ; }
  .mb-100-pc { margin-bottom: -100px !important ; }
  .ml-100-pc { margin-left: -100px !important ; }
  .fz100-pc { font-size: 100px !important ; }
  .pt105-pc { padding-top: 105px !important ; }
  .pr105-pc { padding-right: 105px !important ; }
  .pb105-pc { padding-bottom: 105px !important ; }
  .pl105-pc { padding-left: 105px !important ; }
  .mt105-pc { margin-top: 105px !important ; }
  .mr105-pc { margin-right: 105px !important ; }
  .mb105-pc { margin-bottom: 105px !important ; }
  .ml105-pc { margin-left: 105px !important ; }
  .mt-105-pc { margin-top: -105px !important ; }
  .mr-105-pc { margin-right: -105px !important ; }
  .mb-105-pc { margin-bottom: -105px !important ; }
  .ml-105-pc { margin-left: -105px !important ; }
  .fz105-pc { font-size: 105px !important ; }
  .pt110-pc { padding-top: 110px !important ; }
  .pr110-pc { padding-right: 110px !important ; }
  .pb110-pc { padding-bottom: 110px !important ; }
  .pl110-pc { padding-left: 110px !important ; }
  .mt110-pc { margin-top: 110px !important ; }
  .mr110-pc { margin-right: 110px !important ; }
  .mb110-pc { margin-bottom: 110px !important ; }
  .ml110-pc { margin-left: 110px !important ; }
  .mt-110-pc { margin-top: -110px !important ; }
  .mr-110-pc { margin-right: -110px !important ; }
  .mb-110-pc { margin-bottom: -110px !important ; }
  .ml-110-pc { margin-left: -110px !important ; }
  .fz110-pc { font-size: 110px !important ; }
  .pt115-pc { padding-top: 115px !important ; }
  .pr115-pc { padding-right: 115px !important ; }
  .pb115-pc { padding-bottom: 115px !important ; }
  .pl115-pc { padding-left: 115px !important ; }
  .mt115-pc { margin-top: 115px !important ; }
  .mr115-pc { margin-right: 115px !important ; }
  .mb115-pc { margin-bottom: 115px !important ; }
  .ml115-pc { margin-left: 115px !important ; }
  .mt-115-pc { margin-top: -115px !important ; }
  .mr-115-pc { margin-right: -115px !important ; }
  .mb-115-pc { margin-bottom: -115px !important ; }
  .ml-115-pc { margin-left: -115px !important ; }
  .fz115-pc { font-size: 115px !important ; }
  .pt120-pc { padding-top: 120px !important ; }
  .pr120-pc { padding-right: 120px !important ; }
  .pb120-pc { padding-bottom: 120px !important ; }
  .pl120-pc { padding-left: 120px !important ; }
  .mt120-pc { margin-top: 120px !important ; }
  .mr120-pc { margin-right: 120px !important ; }
  .mb120-pc { margin-bottom: 120px !important ; }
  .ml120-pc { margin-left: 120px !important ; }
  .mt-120-pc { margin-top: -120px !important ; }
  .mr-120-pc { margin-right: -120px !important ; }
  .mb-120-pc { margin-bottom: -120px !important ; }
  .ml-120-pc { margin-left: -120px !important ; }
  .fz120-pc { font-size: 120px !important ; }
  .pt125-pc { padding-top: 125px !important ; }
  .pr125-pc { padding-right: 125px !important ; }
  .pb125-pc { padding-bottom: 125px !important ; }
  .pl125-pc { padding-left: 125px !important ; }
  .mt125-pc { margin-top: 125px !important ; }
  .mr125-pc { margin-right: 125px !important ; }
  .mb125-pc { margin-bottom: 125px !important ; }
  .ml125-pc { margin-left: 125px !important ; }
  .mt-125-pc { margin-top: -125px !important ; }
  .mr-125-pc { margin-right: -125px !important ; }
  .mb-125-pc { margin-bottom: -125px !important ; }
  .ml-125-pc { margin-left: -125px !important ; }
  .fz125-pc { font-size: 125px !important ; }
  .pt130-pc { padding-top: 130px !important ; }
  .pr130-pc { padding-right: 130px !important ; }
  .pb130-pc { padding-bottom: 130px !important ; }
  .pl130-pc { padding-left: 130px !important ; }
  .mt130-pc { margin-top: 130px !important ; }
  .mr130-pc { margin-right: 130px !important ; }
  .mb130-pc { margin-bottom: 130px !important ; }
  .ml130-pc { margin-left: 130px !important ; }
  .mt-130-pc { margin-top: -130px !important ; }
  .mr-130-pc { margin-right: -130px !important ; }
  .mb-130-pc { margin-bottom: -130px !important ; }
  .ml-130-pc { margin-left: -130px !important ; }
  .fz130-pc { font-size: 130px !important ; }
  .pt135-pc { padding-top: 135px !important ; }
  .pr135-pc { padding-right: 135px !important ; }
  .pb135-pc { padding-bottom: 135px !important ; }
  .pl135-pc { padding-left: 135px !important ; }
  .mt135-pc { margin-top: 135px !important ; }
  .mr135-pc { margin-right: 135px !important ; }
  .mb135-pc { margin-bottom: 135px !important ; }
  .ml135-pc { margin-left: 135px !important ; }
  .mt-135-pc { margin-top: -135px !important ; }
  .mr-135-pc { margin-right: -135px !important ; }
  .mb-135-pc { margin-bottom: -135px !important ; }
  .ml-135-pc { margin-left: -135px !important ; }
  .fz135-pc { font-size: 135px !important ; }
  .pt140-pc { padding-top: 140px !important ; }
  .pr140-pc { padding-right: 140px !important ; }
  .pb140-pc { padding-bottom: 140px !important ; }
  .pl140-pc { padding-left: 140px !important ; }
  .mt140-pc { margin-top: 140px !important ; }
  .mr140-pc { margin-right: 140px !important ; }
  .mb140-pc { margin-bottom: 140px !important ; }
  .ml140-pc { margin-left: 140px !important ; }
  .mt-140-pc { margin-top: -140px !important ; }
  .mr-140-pc { margin-right: -140px !important ; }
  .mb-140-pc { margin-bottom: -140px !important ; }
  .ml-140-pc { margin-left: -140px !important ; }
  .fz140-pc { font-size: 140px !important ; }
  .pt145-pc { padding-top: 145px !important ; }
  .pr145-pc { padding-right: 145px !important ; }
  .pb145-pc { padding-bottom: 145px !important ; }
  .pl145-pc { padding-left: 145px !important ; }
  .mt145-pc { margin-top: 145px !important ; }
  .mr145-pc { margin-right: 145px !important ; }
  .mb145-pc { margin-bottom: 145px !important ; }
  .ml145-pc { margin-left: 145px !important ; }
  .mt-145-pc { margin-top: -145px !important ; }
  .mr-145-pc { margin-right: -145px !important ; }
  .mb-145-pc { margin-bottom: -145px !important ; }
  .ml-145-pc { margin-left: -145px !important ; }
  .fz145-pc { font-size: 145px !important ; }
  .pt150-pc { padding-top: 150px !important ; }
  .pr150-pc { padding-right: 150px !important ; }
  .pb150-pc { padding-bottom: 150px !important ; }
  .pl150-pc { padding-left: 150px !important ; }
  .mt150-pc { margin-top: 150px !important ; }
  .mr150-pc { margin-right: 150px !important ; }
  .mb150-pc { margin-bottom: 150px !important ; }
  .ml150-pc { margin-left: 150px !important ; }
  .mt-150-pc { margin-top: -150px !important ; }
  .mr-150-pc { margin-right: -150px !important ; }
  .mb-150-pc { margin-bottom: -150px !important ; }
  .ml-150-pc { margin-left: -150px !important ; }
  .fz150-pc { font-size: 150px !important ; }
  .pt155-pc { padding-top: 155px !important ; }
  .pr155-pc { padding-right: 155px !important ; }
  .pb155-pc { padding-bottom: 155px !important ; }
  .pl155-pc { padding-left: 155px !important ; }
  .mt155-pc { margin-top: 155px !important ; }
  .mr155-pc { margin-right: 155px !important ; }
  .mb155-pc { margin-bottom: 155px !important ; }
  .ml155-pc { margin-left: 155px !important ; }
  .mt-155-pc { margin-top: -155px !important ; }
  .mr-155-pc { margin-right: -155px !important ; }
  .mb-155-pc { margin-bottom: -155px !important ; }
  .ml-155-pc { margin-left: -155px !important ; }
  .fz155-pc { font-size: 155px !important ; }
  .pt160-pc { padding-top: 160px !important ; }
  .pr160-pc { padding-right: 160px !important ; }
  .pb160-pc { padding-bottom: 160px !important ; }
  .pl160-pc { padding-left: 160px !important ; }
  .mt160-pc { margin-top: 160px !important ; }
  .mr160-pc { margin-right: 160px !important ; }
  .mb160-pc { margin-bottom: 160px !important ; }
  .ml160-pc { margin-left: 160px !important ; }
  .mt-160-pc { margin-top: -160px !important ; }
  .mr-160-pc { margin-right: -160px !important ; }
  .mb-160-pc { margin-bottom: -160px !important ; }
  .ml-160-pc { margin-left: -160px !important ; }
  .fz160-pc { font-size: 160px !important ; }
  .pt165-pc { padding-top: 165px !important ; }
  .pr165-pc { padding-right: 165px !important ; }
  .pb165-pc { padding-bottom: 165px !important ; }
  .pl165-pc { padding-left: 165px !important ; }
  .mt165-pc { margin-top: 165px !important ; }
  .mr165-pc { margin-right: 165px !important ; }
  .mb165-pc { margin-bottom: 165px !important ; }
  .ml165-pc { margin-left: 165px !important ; }
  .mt-165-pc { margin-top: -165px !important ; }
  .mr-165-pc { margin-right: -165px !important ; }
  .mb-165-pc { margin-bottom: -165px !important ; }
  .ml-165-pc { margin-left: -165px !important ; }
  .fz165-pc { font-size: 165px !important ; }
  .pt170-pc { padding-top: 170px !important ; }
  .pr170-pc { padding-right: 170px !important ; }
  .pb170-pc { padding-bottom: 170px !important ; }
  .pl170-pc { padding-left: 170px !important ; }
  .mt170-pc { margin-top: 170px !important ; }
  .mr170-pc { margin-right: 170px !important ; }
  .mb170-pc { margin-bottom: 170px !important ; }
  .ml170-pc { margin-left: 170px !important ; }
  .mt-170-pc { margin-top: -170px !important ; }
  .mr-170-pc { margin-right: -170px !important ; }
  .mb-170-pc { margin-bottom: -170px !important ; }
  .ml-170-pc { margin-left: -170px !important ; }
  .fz170-pc { font-size: 170px !important ; }
  .pt175-pc { padding-top: 175px !important ; }
  .pr175-pc { padding-right: 175px !important ; }
  .pb175-pc { padding-bottom: 175px !important ; }
  .pl175-pc { padding-left: 175px !important ; }
  .mt175-pc { margin-top: 175px !important ; }
  .mr175-pc { margin-right: 175px !important ; }
  .mb175-pc { margin-bottom: 175px !important ; }
  .ml175-pc { margin-left: 175px !important ; }
  .mt-175-pc { margin-top: -175px !important ; }
  .mr-175-pc { margin-right: -175px !important ; }
  .mb-175-pc { margin-bottom: -175px !important ; }
  .ml-175-pc { margin-left: -175px !important ; }
  .fz175-pc { font-size: 175px !important ; }
  .pt180-pc { padding-top: 180px !important ; }
  .pr180-pc { padding-right: 180px !important ; }
  .pb180-pc { padding-bottom: 180px !important ; }
  .pl180-pc { padding-left: 180px !important ; }
  .mt180-pc { margin-top: 180px !important ; }
  .mr180-pc { margin-right: 180px !important ; }
  .mb180-pc { margin-bottom: 180px !important ; }
  .ml180-pc { margin-left: 180px !important ; }
  .mt-180-pc { margin-top: -180px !important ; }
  .mr-180-pc { margin-right: -180px !important ; }
  .mb-180-pc { margin-bottom: -180px !important ; }
  .ml-180-pc { margin-left: -180px !important ; }
  .fz180-pc { font-size: 180px !important ; }
  .pt185-pc { padding-top: 185px !important ; }
  .pr185-pc { padding-right: 185px !important ; }
  .pb185-pc { padding-bottom: 185px !important ; }
  .pl185-pc { padding-left: 185px !important ; }
  .mt185-pc { margin-top: 185px !important ; }
  .mr185-pc { margin-right: 185px !important ; }
  .mb185-pc { margin-bottom: 185px !important ; }
  .ml185-pc { margin-left: 185px !important ; }
  .mt-185-pc { margin-top: -185px !important ; }
  .mr-185-pc { margin-right: -185px !important ; }
  .mb-185-pc { margin-bottom: -185px !important ; }
  .ml-185-pc { margin-left: -185px !important ; }
  .fz185-pc { font-size: 185px !important ; }
  .pt190-pc { padding-top: 190px !important ; }
  .pr190-pc { padding-right: 190px !important ; }
  .pb190-pc { padding-bottom: 190px !important ; }
  .pl190-pc { padding-left: 190px !important ; }
  .mt190-pc { margin-top: 190px !important ; }
  .mr190-pc { margin-right: 190px !important ; }
  .mb190-pc { margin-bottom: 190px !important ; }
  .ml190-pc { margin-left: 190px !important ; }
  .mt-190-pc { margin-top: -190px !important ; }
  .mr-190-pc { margin-right: -190px !important ; }
  .mb-190-pc { margin-bottom: -190px !important ; }
  .ml-190-pc { margin-left: -190px !important ; }
  .fz190-pc { font-size: 190px !important ; }
  .pt195-pc { padding-top: 195px !important ; }
  .pr195-pc { padding-right: 195px !important ; }
  .pb195-pc { padding-bottom: 195px !important ; }
  .pl195-pc { padding-left: 195px !important ; }
  .mt195-pc { margin-top: 195px !important ; }
  .mr195-pc { margin-right: 195px !important ; }
  .mb195-pc { margin-bottom: 195px !important ; }
  .ml195-pc { margin-left: 195px !important ; }
  .mt-195-pc { margin-top: -195px !important ; }
  .mr-195-pc { margin-right: -195px !important ; }
  .mb-195-pc { margin-bottom: -195px !important ; }
  .ml-195-pc { margin-left: -195px !important ; }
  .fz195-pc { font-size: 195px !important ; }
}

/*SPのみ*/

@media screen and (max-width: 1099px) {
  .pt0-sp { padding-top: 0px !important ; }
  .pr0-sp { padding-right: 0px !important ; }
  .pb0-sp { padding-bottom: 0px !important ; }
  .pl0-sp { padding-left: 0px !important ; }
  .mt0-sp { margin-top: 0px !important ; }
  .mr0-sp { margin-right: 0px !important ; }
  .mb0-sp { margin-bottom: 0px !important ; }
  .ml0-sp { margin-left: 0px !important ; }
  .mt-0-sp { margin-top: 0px !important ; }
  .mr-0-sp { margin-right: 0px !important ; }
  .mb-0-sp { margin-bottom: 0px !important ; }
  .ml-0-sp { margin-left: 0px !important ; }
  .fz0-sp { font-size: 0px !important ; }
  .pt5-sp { padding-top: 5px !important ; }
  .pr5-sp { padding-right: 5px !important ; }
  .pb5-sp { padding-bottom: 5px !important ; }
  .pl5-sp { padding-left: 5px !important ; }
  .mt5-sp { margin-top: 5px !important ; }
  .mr5-sp { margin-right: 5px !important ; }
  .mb5-sp { margin-bottom: 5px !important ; }
  .ml5-sp { margin-left: 5px !important ; }
  .mt-5-sp { margin-top: -5px !important ; }
  .mr-5-sp { margin-right: -5px !important ; }
  .mb-5-sp { margin-bottom: -5px !important ; }
  .ml-5-sp { margin-left: -5px !important ; }
  .fz5-sp { font-size: 5px !important ; }
  .pt10-sp { padding-top: 10px !important ; }
  .pr10-sp { padding-right: 10px !important ; }
  .pb10-sp { padding-bottom: 10px !important ; }
  .pl10-sp { padding-left: 10px !important ; }
  .mt10-sp { margin-top: 10px !important ; }
  .mr10-sp { margin-right: 10px !important ; }
  .mb10-sp { margin-bottom: 10px !important ; }
  .ml10-sp { margin-left: 10px !important ; }
  .mt-10-sp { margin-top: -10px !important ; }
  .mr-10-sp { margin-right: -10px !important ; }
  .mb-10-sp { margin-bottom: -10px !important ; }
  .ml-10-sp { margin-left: -10px !important ; }
  .fz10-sp { font-size: 10px !important ; }
  .pt15-sp { padding-top: 15px !important ; }
  .pr15-sp { padding-right: 15px !important ; }
  .pb15-sp { padding-bottom: 15px !important ; }
  .pl15-sp { padding-left: 15px !important ; }
  .mt15-sp { margin-top: 15px !important ; }
  .mr15-sp { margin-right: 15px !important ; }
  .mb15-sp { margin-bottom: 15px !important ; }
  .ml15-sp { margin-left: 15px !important ; }
  .mt-15-sp { margin-top: -15px !important ; }
  .mr-15-sp { margin-right: -15px !important ; }
  .mb-15-sp { margin-bottom: -15px !important ; }
  .ml-15-sp { margin-left: -15px !important ; }
  .fz15-sp { font-size: 15px !important ; }
  .pt20-sp { padding-top: 20px !important ; }
  .pr20-sp { padding-right: 20px !important ; }
  .pb20-sp { padding-bottom: 20px !important ; }
  .pl20-sp { padding-left: 20px !important ; }
  .mt20-sp { margin-top: 20px !important ; }
  .mr20-sp { margin-right: 20px !important ; }
  .mb20-sp { margin-bottom: 20px !important ; }
  .ml20-sp { margin-left: 20px !important ; }
  .mt-20-sp { margin-top: -20px !important ; }
  .mr-20-sp { margin-right: -20px !important ; }
  .mb-20-sp { margin-bottom: -20px !important ; }
  .ml-20-sp { margin-left: -20px !important ; }
  .fz20-sp { font-size: 20px !important ; }
  .pt25-sp { padding-top: 25px !important ; }
  .pr25-sp { padding-right: 25px !important ; }
  .pb25-sp { padding-bottom: 25px !important ; }
  .pl25-sp { padding-left: 25px !important ; }
  .mt25-sp { margin-top: 25px !important ; }
  .mr25-sp { margin-right: 25px !important ; }
  .mb25-sp { margin-bottom: 25px !important ; }
  .ml25-sp { margin-left: 25px !important ; }
  .mt-25-sp { margin-top: -25px !important ; }
  .mr-25-sp { margin-right: -25px !important ; }
  .mb-25-sp { margin-bottom: -25px !important ; }
  .ml-25-sp { margin-left: -25px !important ; }
  .fz25-sp { font-size: 25px !important ; }
  .pt30-sp { padding-top: 30px !important ; }
  .pr30-sp { padding-right: 30px !important ; }
  .pb30-sp { padding-bottom: 30px !important ; }
  .pl30-sp { padding-left: 30px !important ; }
  .mt30-sp { margin-top: 30px !important ; }
  .mr30-sp { margin-right: 30px !important ; }
  .mb30-sp { margin-bottom: 30px !important ; }
  .ml30-sp { margin-left: 30px !important ; }
  .mt-30-sp { margin-top: -30px !important ; }
  .mr-30-sp { margin-right: -30px !important ; }
  .mb-30-sp { margin-bottom: -30px !important ; }
  .ml-30-sp { margin-left: -30px !important ; }
  .fz30-sp { font-size: 30px !important ; }
  .pt35-sp { padding-top: 35px !important ; }
  .pr35-sp { padding-right: 35px !important ; }
  .pb35-sp { padding-bottom: 35px !important ; }
  .pl35-sp { padding-left: 35px !important ; }
  .mt35-sp { margin-top: 35px !important ; }
  .mr35-sp { margin-right: 35px !important ; }
  .mb35-sp { margin-bottom: 35px !important ; }
  .ml35-sp { margin-left: 35px !important ; }
  .mt-35-sp { margin-top: -35px !important ; }
  .mr-35-sp { margin-right: -35px !important ; }
  .mb-35-sp { margin-bottom: -35px !important ; }
  .ml-35-sp { margin-left: -35px !important ; }
  .fz35-sp { font-size: 35px !important ; }
  .pt40-sp { padding-top: 40px !important ; }
  .pr40-sp { padding-right: 40px !important ; }
  .pb40-sp { padding-bottom: 40px !important ; }
  .pl40-sp { padding-left: 40px !important ; }
  .mt40-sp { margin-top: 40px !important ; }
  .mr40-sp { margin-right: 40px !important ; }
  .mb40-sp { margin-bottom: 40px !important ; }
  .ml40-sp { margin-left: 40px !important ; }
  .mt-40-sp { margin-top: -40px !important ; }
  .mr-40-sp { margin-right: -40px !important ; }
  .mb-40-sp { margin-bottom: -40px !important ; }
  .ml-40-sp { margin-left: -40px !important ; }
  .fz40-sp { font-size: 40px !important ; }
  .pt45-sp { padding-top: 45px !important ; }
  .pr45-sp { padding-right: 45px !important ; }
  .pb45-sp { padding-bottom: 45px !important ; }
  .pl45-sp { padding-left: 45px !important ; }
  .mt45-sp { margin-top: 45px !important ; }
  .mr45-sp { margin-right: 45px !important ; }
  .mb45-sp { margin-bottom: 45px !important ; }
  .ml45-sp { margin-left: 45px !important ; }
  .mt-45-sp { margin-top: -45px !important ; }
  .mr-45-sp { margin-right: -45px !important ; }
  .mb-45-sp { margin-bottom: -45px !important ; }
  .ml-45-sp { margin-left: -45px !important ; }
  .fz45-sp { font-size: 45px !important ; }
  .pt50-sp { padding-top: 50px !important ; }
  .pr50-sp { padding-right: 50px !important ; }
  .pb50-sp { padding-bottom: 50px !important ; }
  .pl50-sp { padding-left: 50px !important ; }
  .mt50-sp { margin-top: 50px !important ; }
  .mr50-sp { margin-right: 50px !important ; }
  .mb50-sp { margin-bottom: 50px !important ; }
  .ml50-sp { margin-left: 50px !important ; }
  .mt-50-sp { margin-top: -50px !important ; }
  .mr-50-sp { margin-right: -50px !important ; }
  .mb-50-sp { margin-bottom: -50px !important ; }
  .ml-50-sp { margin-left: -50px !important ; }
  .fz50-sp { font-size: 50px !important ; }
  .pt55-sp { padding-top: 55px !important ; }
  .pr55-sp { padding-right: 55px !important ; }
  .pb55-sp { padding-bottom: 55px !important ; }
  .pl55-sp { padding-left: 55px !important ; }
  .mt55-sp { margin-top: 55px !important ; }
  .mr55-sp { margin-right: 55px !important ; }
  .mb55-sp { margin-bottom: 55px !important ; }
  .ml55-sp { margin-left: 55px !important ; }
  .mt-55-sp { margin-top: -55px !important ; }
  .mr-55-sp { margin-right: -55px !important ; }
  .mb-55-sp { margin-bottom: -55px !important ; }
  .ml-55-sp { margin-left: -55px !important ; }
  .fz55-sp { font-size: 55px !important ; }
  .pt60-sp { padding-top: 60px !important ; }
  .pr60-sp { padding-right: 60px !important ; }
  .pb60-sp { padding-bottom: 60px !important ; }
  .pl60-sp { padding-left: 60px !important ; }
  .mt60-sp { margin-top: 60px !important ; }
  .mr60-sp { margin-right: 60px !important ; }
  .mb60-sp { margin-bottom: 60px !important ; }
  .ml60-sp { margin-left: 60px !important ; }
  .mt-60-sp { margin-top: -60px !important ; }
  .mr-60-sp { margin-right: -60px !important ; }
  .mb-60-sp { margin-bottom: -60px !important ; }
  .ml-60-sp { margin-left: -60px !important ; }
  .fz60-sp { font-size: 60px !important ; }
  .pt65-sp { padding-top: 65px !important ; }
  .pr65-sp { padding-right: 65px !important ; }
  .pb65-sp { padding-bottom: 65px !important ; }
  .pl65-sp { padding-left: 65px !important ; }
  .mt65-sp { margin-top: 65px !important ; }
  .mr65-sp { margin-right: 65px !important ; }
  .mb65-sp { margin-bottom: 65px !important ; }
  .ml65-sp { margin-left: 65px !important ; }
  .mt-65-sp { margin-top: -65px !important ; }
  .mr-65-sp { margin-right: -65px !important ; }
  .mb-65-sp { margin-bottom: -65px !important ; }
  .ml-65-sp { margin-left: -65px !important ; }
  .fz65-sp { font-size: 65px !important ; }
  .pt70-sp { padding-top: 70px !important ; }
  .pr70-sp { padding-right: 70px !important ; }
  .pb70-sp { padding-bottom: 70px !important ; }
  .pl70-sp { padding-left: 70px !important ; }
  .mt70-sp { margin-top: 70px !important ; }
  .mr70-sp { margin-right: 70px !important ; }
  .mb70-sp { margin-bottom: 70px !important ; }
  .ml70-sp { margin-left: 70px !important ; }
  .mt-70-sp { margin-top: -70px !important ; }
  .mr-70-sp { margin-right: -70px !important ; }
  .mb-70-sp { margin-bottom: -70px !important ; }
  .ml-70-sp { margin-left: -70px !important ; }
  .fz70-sp { font-size: 70px !important ; }
  .pt75-sp { padding-top: 75px !important ; }
  .pr75-sp { padding-right: 75px !important ; }
  .pb75-sp { padding-bottom: 75px !important ; }
  .pl75-sp { padding-left: 75px !important ; }
  .mt75-sp { margin-top: 75px !important ; }
  .mr75-sp { margin-right: 75px !important ; }
  .mb75-sp { margin-bottom: 75px !important ; }
  .ml75-sp { margin-left: 75px !important ; }
  .mt-75-sp { margin-top: -75px !important ; }
  .mr-75-sp { margin-right: -75px !important ; }
  .mb-75-sp { margin-bottom: -75px !important ; }
  .ml-75-sp { margin-left: -75px !important ; }
  .fz75-sp { font-size: 75px !important ; }
  .pt80-sp { padding-top: 80px !important ; }
  .pr80-sp { padding-right: 80px !important ; }
  .pb80-sp { padding-bottom: 80px !important ; }
  .pl80-sp { padding-left: 80px !important ; }
  .mt80-sp { margin-top: 80px !important ; }
  .mr80-sp { margin-right: 80px !important ; }
  .mb80-sp { margin-bottom: 80px !important ; }
  .ml80-sp { margin-left: 80px !important ; }
  .mt-80-sp { margin-top: -80px !important ; }
  .mr-80-sp { margin-right: -80px !important ; }
  .mb-80-sp { margin-bottom: -80px !important ; }
  .ml-80-sp { margin-left: -80px !important ; }
  .fz80-sp { font-size: 80px !important ; }
  .pt85-sp { padding-top: 85px !important ; }
  .pr85-sp { padding-right: 85px !important ; }
  .pb85-sp { padding-bottom: 85px !important ; }
  .pl85-sp { padding-left: 85px !important ; }
  .mt85-sp { margin-top: 85px !important ; }
  .mr85-sp { margin-right: 85px !important ; }
  .mb85-sp { margin-bottom: 85px !important ; }
  .ml85-sp { margin-left: 85px !important ; }
  .mt-85-sp { margin-top: -85px !important ; }
  .mr-85-sp { margin-right: -85px !important ; }
  .mb-85-sp { margin-bottom: -85px !important ; }
  .ml-85-sp { margin-left: -85px !important ; }
  .fz85-sp { font-size: 85px !important ; }
  .pt90-sp { padding-top: 90px !important ; }
  .pr90-sp { padding-right: 90px !important ; }
  .pb90-sp { padding-bottom: 90px !important ; }
  .pl90-sp { padding-left: 90px !important ; }
  .mt90-sp { margin-top: 90px !important ; }
  .mr90-sp { margin-right: 90px !important ; }
  .mb90-sp { margin-bottom: 90px !important ; }
  .ml90-sp { margin-left: 90px !important ; }
  .mt-90-sp { margin-top: -90px !important ; }
  .mr-90-sp { margin-right: -90px !important ; }
  .mb-90-sp { margin-bottom: -90px !important ; }
  .ml-90-sp { margin-left: -90px !important ; }
  .fz90-sp { font-size: 90px !important ; }
  .pt95-sp { padding-top: 95px !important ; }
  .pr95-sp { padding-right: 95px !important ; }
  .pb95-sp { padding-bottom: 95px !important ; }
  .pl95-sp { padding-left: 95px !important ; }
  .mt95-sp { margin-top: 95px !important ; }
  .mr95-sp { margin-right: 95px !important ; }
  .mb95-sp { margin-bottom: 95px !important ; }
  .ml95-sp { margin-left: 95px !important ; }
  .mt-95-sp { margin-top: -95px !important ; }
  .mr-95-sp { margin-right: -95px !important ; }
  .mb-95-sp { margin-bottom: -95px !important ; }
  .ml-95-sp { margin-left: -95px !important ; }
  .fz95-sp { font-size: 95px !important ; }
  .pt100-sp { padding-top: 100px !important ; }
  .pr100-sp { padding-right: 100px !important ; }
  .pb100-sp { padding-bottom: 100px !important ; }
  .pl100-sp { padding-left: 100px !important ; }
  .mt100-sp { margin-top: 100px !important ; }
  .mr100-sp { margin-right: 100px !important ; }
  .mb100-sp { margin-bottom: 100px !important ; }
  .ml100-sp { margin-left: 100px !important ; }
  .mt-100-sp { margin-top: -100px !important ; }
  .mr-100-sp { margin-right: -100px !important ; }
  .mb-100-sp { margin-bottom: -100px !important ; }
  .ml-100-sp { margin-left: -100px !important ; }
  .fz100-sp { font-size: 100px !important ; }
  .pt105-sp { padding-top: 105px !important ; }
  .pr105-sp { padding-right: 105px !important ; }
  .pb105-sp { padding-bottom: 105px !important ; }
  .pl105-sp { padding-left: 105px !important ; }
  .mt105-sp { margin-top: 105px !important ; }
  .mr105-sp { margin-right: 105px !important ; }
  .mb105-sp { margin-bottom: 105px !important ; }
  .ml105-sp { margin-left: 105px !important ; }
  .mt-105-sp { margin-top: -105px !important ; }
  .mr-105-sp { margin-right: -105px !important ; }
  .mb-105-sp { margin-bottom: -105px !important ; }
  .ml-105-sp { margin-left: -105px !important ; }
  .fz105-sp { font-size: 105px !important ; }
  .pt110-sp { padding-top: 110px !important ; }
  .pr110-sp { padding-right: 110px !important ; }
  .pb110-sp { padding-bottom: 110px !important ; }
  .pl110-sp { padding-left: 110px !important ; }
  .mt110-sp { margin-top: 110px !important ; }
  .mr110-sp { margin-right: 110px !important ; }
  .mb110-sp { margin-bottom: 110px !important ; }
  .ml110-sp { margin-left: 110px !important ; }
  .mt-110-sp { margin-top: -110px !important ; }
  .mr-110-sp { margin-right: -110px !important ; }
  .mb-110-sp { margin-bottom: -110px !important ; }
  .ml-110-sp { margin-left: -110px !important ; }
  .fz110-sp { font-size: 110px !important ; }
  .pt115-sp { padding-top: 115px !important ; }
  .pr115-sp { padding-right: 115px !important ; }
  .pb115-sp { padding-bottom: 115px !important ; }
  .pl115-sp { padding-left: 115px !important ; }
  .mt115-sp { margin-top: 115px !important ; }
  .mr115-sp { margin-right: 115px !important ; }
  .mb115-sp { margin-bottom: 115px !important ; }
  .ml115-sp { margin-left: 115px !important ; }
  .mt-115-sp { margin-top: -115px !important ; }
  .mr-115-sp { margin-right: -115px !important ; }
  .mb-115-sp { margin-bottom: -115px !important ; }
  .ml-115-sp { margin-left: -115px !important ; }
  .fz115-sp { font-size: 115px !important ; }
  .pt120-sp { padding-top: 120px !important ; }
  .pr120-sp { padding-right: 120px !important ; }
  .pb120-sp { padding-bottom: 120px !important ; }
  .pl120-sp { padding-left: 120px !important ; }
  .mt120-sp { margin-top: 120px !important ; }
  .mr120-sp { margin-right: 120px !important ; }
  .mb120-sp { margin-bottom: 120px !important ; }
  .ml120-sp { margin-left: 120px !important ; }
  .mt-120-sp { margin-top: -120px !important ; }
  .mr-120-sp { margin-right: -120px !important ; }
  .mb-120-sp { margin-bottom: -120px !important ; }
  .ml-120-sp { margin-left: -120px !important ; }
  .fz120-sp { font-size: 120px !important ; }
  .pt125-sp { padding-top: 125px !important ; }
  .pr125-sp { padding-right: 125px !important ; }
  .pb125-sp { padding-bottom: 125px !important ; }
  .pl125-sp { padding-left: 125px !important ; }
  .mt125-sp { margin-top: 125px !important ; }
  .mr125-sp { margin-right: 125px !important ; }
  .mb125-sp { margin-bottom: 125px !important ; }
  .ml125-sp { margin-left: 125px !important ; }
  .mt-125-sp { margin-top: -125px !important ; }
  .mr-125-sp { margin-right: -125px !important ; }
  .mb-125-sp { margin-bottom: -125px !important ; }
  .ml-125-sp { margin-left: -125px !important ; }
  .fz125-sp { font-size: 125px !important ; }
  .pt130-sp { padding-top: 130px !important ; }
  .pr130-sp { padding-right: 130px !important ; }
  .pb130-sp { padding-bottom: 130px !important ; }
  .pl130-sp { padding-left: 130px !important ; }
  .mt130-sp { margin-top: 130px !important ; }
  .mr130-sp { margin-right: 130px !important ; }
  .mb130-sp { margin-bottom: 130px !important ; }
  .ml130-sp { margin-left: 130px !important ; }
  .mt-130-sp { margin-top: -130px !important ; }
  .mr-130-sp { margin-right: -130px !important ; }
  .mb-130-sp { margin-bottom: -130px !important ; }
  .ml-130-sp { margin-left: -130px !important ; }
  .fz130-sp { font-size: 130px !important ; }
  .pt135-sp { padding-top: 135px !important ; }
  .pr135-sp { padding-right: 135px !important ; }
  .pb135-sp { padding-bottom: 135px !important ; }
  .pl135-sp { padding-left: 135px !important ; }
  .mt135-sp { margin-top: 135px !important ; }
  .mr135-sp { margin-right: 135px !important ; }
  .mb135-sp { margin-bottom: 135px !important ; }
  .ml135-sp { margin-left: 135px !important ; }
  .mt-135-sp { margin-top: -135px !important ; }
  .mr-135-sp { margin-right: -135px !important ; }
  .mb-135-sp { margin-bottom: -135px !important ; }
  .ml-135-sp { margin-left: -135px !important ; }
  .fz135-sp { font-size: 135px !important ; }
  .pt140-sp { padding-top: 140px !important ; }
  .pr140-sp { padding-right: 140px !important ; }
  .pb140-sp { padding-bottom: 140px !important ; }
  .pl140-sp { padding-left: 140px !important ; }
  .mt140-sp { margin-top: 140px !important ; }
  .mr140-sp { margin-right: 140px !important ; }
  .mb140-sp { margin-bottom: 140px !important ; }
  .ml140-sp { margin-left: 140px !important ; }
  .mt-140-sp { margin-top: -140px !important ; }
  .mr-140-sp { margin-right: -140px !important ; }
  .mb-140-sp { margin-bottom: -140px !important ; }
  .ml-140-sp { margin-left: -140px !important ; }
  .fz140-sp { font-size: 140px !important ; }
  .pt145-sp { padding-top: 145px !important ; }
  .pr145-sp { padding-right: 145px !important ; }
  .pb145-sp { padding-bottom: 145px !important ; }
  .pl145-sp { padding-left: 145px !important ; }
  .mt145-sp { margin-top: 145px !important ; }
  .mr145-sp { margin-right: 145px !important ; }
  .mb145-sp { margin-bottom: 145px !important ; }
  .ml145-sp { margin-left: 145px !important ; }
  .mt-145-sp { margin-top: -145px !important ; }
  .mr-145-sp { margin-right: -145px !important ; }
  .mb-145-sp { margin-bottom: -145px !important ; }
  .ml-145-sp { margin-left: -145px !important ; }
  .fz145-sp { font-size: 145px !important ; }
  .pt150-sp { padding-top: 150px !important ; }
  .pr150-sp { padding-right: 150px !important ; }
  .pb150-sp { padding-bottom: 150px !important ; }
  .pl150-sp { padding-left: 150px !important ; }
  .mt150-sp { margin-top: 150px !important ; }
  .mr150-sp { margin-right: 150px !important ; }
  .mb150-sp { margin-bottom: 150px !important ; }
  .ml150-sp { margin-left: 150px !important ; }
  .mt-150-sp { margin-top: -150px !important ; }
  .mr-150-sp { margin-right: -150px !important ; }
  .mb-150-sp { margin-bottom: -150px !important ; }
  .ml-150-sp { margin-left: -150px !important ; }
  .fz150-sp { font-size: 150px !important ; }
  .pt155-sp { padding-top: 155px !important ; }
  .pr155-sp { padding-right: 155px !important ; }
  .pb155-sp { padding-bottom: 155px !important ; }
  .pl155-sp { padding-left: 155px !important ; }
  .mt155-sp { margin-top: 155px !important ; }
  .mr155-sp { margin-right: 155px !important ; }
  .mb155-sp { margin-bottom: 155px !important ; }
  .ml155-sp { margin-left: 155px !important ; }
  .mt-155-sp { margin-top: -155px !important ; }
  .mr-155-sp { margin-right: -155px !important ; }
  .mb-155-sp { margin-bottom: -155px !important ; }
  .ml-155-sp { margin-left: -155px !important ; }
  .fz155-sp { font-size: 155px !important ; }
  .pt160-sp { padding-top: 160px !important ; }
  .pr160-sp { padding-right: 160px !important ; }
  .pb160-sp { padding-bottom: 160px !important ; }
  .pl160-sp { padding-left: 160px !important ; }
  .mt160-sp { margin-top: 160px !important ; }
  .mr160-sp { margin-right: 160px !important ; }
  .mb160-sp { margin-bottom: 160px !important ; }
  .ml160-sp { margin-left: 160px !important ; }
  .mt-160-sp { margin-top: -160px !important ; }
  .mr-160-sp { margin-right: -160px !important ; }
  .mb-160-sp { margin-bottom: -160px !important ; }
  .ml-160-sp { margin-left: -160px !important ; }
  .fz160-sp { font-size: 160px !important ; }
  .pt165-sp { padding-top: 165px !important ; }
  .pr165-sp { padding-right: 165px !important ; }
  .pb165-sp { padding-bottom: 165px !important ; }
  .pl165-sp { padding-left: 165px !important ; }
  .mt165-sp { margin-top: 165px !important ; }
  .mr165-sp { margin-right: 165px !important ; }
  .mb165-sp { margin-bottom: 165px !important ; }
  .ml165-sp { margin-left: 165px !important ; }
  .mt-165-sp { margin-top: -165px !important ; }
  .mr-165-sp { margin-right: -165px !important ; }
  .mb-165-sp { margin-bottom: -165px !important ; }
  .ml-165-sp { margin-left: -165px !important ; }
  .fz165-sp { font-size: 165px !important ; }
  .pt170-sp { padding-top: 170px !important ; }
  .pr170-sp { padding-right: 170px !important ; }
  .pb170-sp { padding-bottom: 170px !important ; }
  .pl170-sp { padding-left: 170px !important ; }
  .mt170-sp { margin-top: 170px !important ; }
  .mr170-sp { margin-right: 170px !important ; }
  .mb170-sp { margin-bottom: 170px !important ; }
  .ml170-sp { margin-left: 170px !important ; }
  .mt-170-sp { margin-top: -170px !important ; }
  .mr-170-sp { margin-right: -170px !important ; }
  .mb-170-sp { margin-bottom: -170px !important ; }
  .ml-170-sp { margin-left: -170px !important ; }
  .fz170-sp { font-size: 170px !important ; }
  .pt175-sp { padding-top: 175px !important ; }
  .pr175-sp { padding-right: 175px !important ; }
  .pb175-sp { padding-bottom: 175px !important ; }
  .pl175-sp { padding-left: 175px !important ; }
  .mt175-sp { margin-top: 175px !important ; }
  .mr175-sp { margin-right: 175px !important ; }
  .mb175-sp { margin-bottom: 175px !important ; }
  .ml175-sp { margin-left: 175px !important ; }
  .mt-175-sp { margin-top: -175px !important ; }
  .mr-175-sp { margin-right: -175px !important ; }
  .mb-175-sp { margin-bottom: -175px !important ; }
  .ml-175-sp { margin-left: -175px !important ; }
  .fz175-sp { font-size: 175px !important ; }
  .pt180-sp { padding-top: 180px !important ; }
  .pr180-sp { padding-right: 180px !important ; }
  .pb180-sp { padding-bottom: 180px !important ; }
  .pl180-sp { padding-left: 180px !important ; }
  .mt180-sp { margin-top: 180px !important ; }
  .mr180-sp { margin-right: 180px !important ; }
  .mb180-sp { margin-bottom: 180px !important ; }
  .ml180-sp { margin-left: 180px !important ; }
  .mt-180-sp { margin-top: -180px !important ; }
  .mr-180-sp { margin-right: -180px !important ; }
  .mb-180-sp { margin-bottom: -180px !important ; }
  .ml-180-sp { margin-left: -180px !important ; }
  .fz180-sp { font-size: 180px !important ; }
  .pt185-sp { padding-top: 185px !important ; }
  .pr185-sp { padding-right: 185px !important ; }
  .pb185-sp { padding-bottom: 185px !important ; }
  .pl185-sp { padding-left: 185px !important ; }
  .mt185-sp { margin-top: 185px !important ; }
  .mr185-sp { margin-right: 185px !important ; }
  .mb185-sp { margin-bottom: 185px !important ; }
  .ml185-sp { margin-left: 185px !important ; }
  .mt-185-sp { margin-top: -185px !important ; }
  .mr-185-sp { margin-right: -185px !important ; }
  .mb-185-sp { margin-bottom: -185px !important ; }
  .ml-185-sp { margin-left: -185px !important ; }
  .fz185-sp { font-size: 185px !important ; }
  .pt190-sp { padding-top: 190px !important ; }
  .pr190-sp { padding-right: 190px !important ; }
  .pb190-sp { padding-bottom: 190px !important ; }
  .pl190-sp { padding-left: 190px !important ; }
  .mt190-sp { margin-top: 190px !important ; }
  .mr190-sp { margin-right: 190px !important ; }
  .mb190-sp { margin-bottom: 190px !important ; }
  .ml190-sp { margin-left: 190px !important ; }
  .mt-190-sp { margin-top: -190px !important ; }
  .mr-190-sp { margin-right: -190px !important ; }
  .mb-190-sp { margin-bottom: -190px !important ; }
  .ml-190-sp { margin-left: -190px !important ; }
  .fz190-sp { font-size: 190px !important ; }
  .pt195-sp { padding-top: 195px !important ; }
  .pr195-sp { padding-right: 195px !important ; }
  .pb195-sp { padding-bottom: 195px !important ; }
  .pl195-sp { padding-left: 195px !important ; }
  .mt195-sp { margin-top: 195px !important ; }
  .mr195-sp { margin-right: 195px !important ; }
  .mb195-sp { margin-bottom: 195px !important ; }
  .ml195-sp { margin-left: 195px !important ; }
  .mt-195-sp { margin-top: -195px !important ; }
  .mr-195-sp { margin-right: -195px !important ; }
  .mb-195-sp { margin-bottom: -195px !important ; }
  .ml-195-sp { margin-left: -195px !important ; }
  .fz195-sp { font-size: 195px !important ; }
}