@charset "UTF-8";
/* ------------------------------
SCSSの構成
arspark.scss - htmlからloadされる。リセット系および全体的なスタイルはここで設定
 └ util.scss - 汎用的なクラス設計
 └ util.scss - 汎用的なクラス設計
 └ button.scss - ボタンのクラス設計
 └ icon.scss - ボタンのクラス設計

------------------------------ */
/* --------------
  変数
-------------- */
/* --------------
  mixin
-------------- */
/*
幅を決めるクラス
 */
*:focus {
  outline: none;
}

p {
  margin-top: 0;
}

a:hover {
  opacity: 0.7;
}

body {
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

#main > section {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  #main > section {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  #main > section {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
#main > section.row-narrow {
  width: 730px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  #main > section.row-narrow {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
#main > section.row-800 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  #main > section.row-800 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
#main > section.w100 {
  width: 100%;
}

/* ------------------------
文字色
------------------------ */
.red-text {
  color: #cf1313 !important;
}

.blue-text {
  color: #2ba9e7 !important;
}

.green-text {
  color: #8bcd3d !important;
}

.orange-text {
  color: #e66f1d !important;
}

/* ------------------------
SPのみ/PCのみ
------------------------ */
@media screen and (min-width: 1150px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  .pc-only {
    display: none;
  }
}
/* ------------------------
見出し h1, h2, h3 ...
------------------------ */
h1.page-title {
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 48px;
}
h1.page-title i {
  color: #828282;
  font-size: 46px;
  margin-right: 12px;
  vertical-align: top;
}
h1.page-title img {
  color: #828282;
  height: 60px;
  margin-right: 10px;
  vertical-align: top;
}

h2.section-title {
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
h2.section-title i {
  color: #828282;
  font-size: 56px;
  margin-right: 8px;
  vertical-align: top;
}
h2.section-title img.title-icon {
  display: inline-block;
  height: 60px;
  margin-right: 8px;
  vertical-align: top;
}

/* ------------------
＼ ／ 付きの見出し
------------------ */
.title-slash > span {
  display: inline-block;
  position: relative;
}
.title-slash > span:before, .title-slash > span:after {
  content: "";
  position: absolute;
  bottom: 20px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
.title-slash > span:before {
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
.title-slash > span:after {
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
.title-slash.one-line > span:before, .title-slash.one-line > span:after {
  bottom: 5px;
}

/* -- パンくず -- */
nav.ars-breadcrumb-nav {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0.7rem;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  nav.ars-breadcrumb-nav {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  nav.ars-breadcrumb-nav {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
nav.ars-breadcrumb-nav .breadcrumb-item {
  font-size: 12px;
}
nav.ars-breadcrumb-nav .breadcrumb-item a {
  color: #000;
}
nav.ars-breadcrumb-nav .breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}

/* -- 一般的なリスト -- */
ul.common-list {
  margin: 0 0 1em 0;
  padding: 0;
}
ul.common-list li {
  padding: 0 0 0 1.6em;
  margin-bottom: 0.5rem;
  list-style-type: none;
  text-indent: -0.7em;
}
ul.common-list li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-right: 0.4em;
}

ul.pp-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.pp-list li {
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}

.btn--default, .btn--wide {
  display: inline-block;
  min-width: 120px;
  padding: 0 18px;
  height: 48px;
  line-height: 48px;
  border-radius: 10px;
  background-color: #999999;
  position: relative;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  box-shadow: 0px 3px 0px 0px #666666;
}
.btn--default:enabled:hover, .btn--wide:enabled:hover {
  transform: translate(0, 2px);
  box-shadow: 0px 1px 0px 0px #666666;
  filter: brightness(90%);
}
.btn--default:disabled, .btn--wide:disabled {
  opacity: 0.6;
}

.btn--wide {
  min-width: 240px;
}

.btn--action, .btn--blue {
  background-color: #2ba9e7;
  color: #ffffff;
  box-shadow: 0px 3px 0px 0px #30789b;
}
.btn--action:enabled:hover, .btn--blue:enabled:hover {
  box-shadow: 0px 1px 0px 0px #30789b;
}

.btn--green {
  background-color: #4dc572;
  color: #ffffff;
  box-shadow: 0px 3px 0px 0px #2e984f;
}
.btn--green:enabled:hover {
  box-shadow: 0px 1px 0px 0px #2e984f;
}

/* ------------------------
bootstrap iconをオーバーライド
アルスクールのアイコンはprefixを [ars-icon-]にする
------------------------- */
[class^=ars-icon-]::before,
[class*=" ars-icon-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
}

.ars-icon-tag::before {
  content: "";
  transform: scale(-1, 1);
}

.ars-icon-triangle-right::before {
  content: "";
  transform: rotate(90deg);
}

.ars-icon-clock::before {
  content: "";
}

.ars-icon-thumb-up::before {
  content: "";
}

i.ic-blue {
  color: #94c9ed;
}

header.lms-common-header {
  border-bottom: 1px solid #e1e1e1;
}
header.lms-common-header div.header-menu {
  border-top: 6px solid #299fd0;
  width: 100%;
  padding-left: min(100px, 5vw);
  padding-right: min(100px, 5vw);
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 86px;
}
header.lms-common-header div.header-menu div.logo {
  height: 54px;
  top: 2px;
  position: relative;
  text-align: left;
}
header.lms-common-header div.header-menu div.logo a {
  display: block;
  top: 10px;
  position: relative;
}
header.lms-common-header div.header-menu div.logo img {
  width: 150px;
}
header.lms-common-header div.header-menu div.header-lead {
  flex: 1 1 auto;
  padding-left: 2rem;
  line-height: 1.6;
  font-size: 14px;
  padding-top: 18px;
}
header.lms-common-header div.header-menu ul.pc-menu {
  text-align: right;
  padding: 0;
  margin-bottom: 0;
  margin-top: 16px;
}
header.lms-common-header div.header-menu ul.pc-menu li {
  display: inline-block;
  padding: 0;
  padding: 0;
  margin-right: 16px;
  height: 40px;
}
header.lms-common-header div.header-menu ul.pc-menu li:last-child {
  border-right: none;
  padding-right: 0;
}
header.lms-common-header div.header-menu ul.pc-menu li:last-child:after {
  display: none;
}
header.lms-common-header div.header-menu ul.pc-menu li:after {
  display: inline-block;
  content: "";
  border-right: 1px solid #ddd;
  height: 28px;
  margin-left: 16px;
  position: relative;
  top: 8px;
}
header.lms-common-header div.header-menu ul.pc-menu li a {
  height: 38px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  position: relative;
  color: #555555;
  font-weight: 700;
  text-decoration: none;
  top: 0px;
}
header.lms-common-header div.header-menu ul.pc-menu li a:hover {
  opacity: 0.6;
}
header.lms-common-header div.header-menu ul.pc-menu li span {
  text-align: center;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__arstudio {
  margin-top: 0;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__arstudio span {
  display: block;
  font-size: 12px;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__arstudio a {
  line-height: 17px;
  top: 4px;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__arstudio a img {
  height: 24px;
  display: inline-block;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__inquiry {
  height: 46px;
  margin-right: 0;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__inquiry a {
  position: relative;
  border: 1px solid #53b77f;
  border-radius: 30px;
  padding: 0 20px 0 18px;
  color: #53B77F;
  height: 36px;
  top: 1px;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__inquiry a span {
  display: inline-block;
  line-height: 34px;
  height: 34px;
  position: relative;
  top: -2px;
}
header.lms-common-header div.header-menu ul.pc-menu li.menu__inquiry a i {
  position: absolute;
  top: -2px;
  right: 2px;
  font-size: 12px;
}
header.lms-common-header div.header-menu__float {
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  transition: all 0.5s;
  position: fixed;
  background: #fff;
  z-index: 100;
  top: -64px;
  left: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e1e1e1;
  border-top: 4px solid #299fd0;
  display: flex;
  justify-content: space-between;
  height: 64px;
}
header.lms-common-header div.header-menu__float div.logo {
  height: 52px;
  text-align: left;
}
header.lms-common-header div.header-menu__float div.logo a {
  display: block;
  top: 10px;
  position: relative;
}
header.lms-common-header div.header-menu__float div.logo img {
  width: 110px;
}
header.lms-common-header div.header-menu__float ul.pc-menu {
  text-align: right;
  padding: 0;
  margin-bottom: 0;
  margin-top: 12px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li {
  display: inline-block;
  padding: 0;
  padding: 0;
  margin-right: 16px;
  height: 30px;
  font-size: 14px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li:last-child {
  border-right: none;
  padding-right: 0;
}
header.lms-common-header div.header-menu__float ul.pc-menu li:last-child:after {
  display: none;
}
header.lms-common-header div.header-menu__float ul.pc-menu li:after {
  display: inline-block;
  content: "";
  border-right: 1px solid #ddd;
  height: 20px;
  margin-left: 10px;
  position: relative;
  top: 4px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li a {
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  position: relative;
  color: #555555;
  font-weight: 700;
  text-decoration: none;
  top: 0px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li a:hover {
  opacity: 0.6;
}
header.lms-common-header div.header-menu__float ul.pc-menu li span {
  text-align: center;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__arstudio {
  margin-top: 0;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__arstudio a img {
  width: 100px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__inquiry {
  height: 32px;
  margin-right: 0;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__inquiry a {
  font-size: 13px;
  position: relative;
  border: 1px solid #53b77f;
  border-radius: 30px;
  padding: 0 16px 0 14px;
  color: #53B77F;
  height: 30px;
  top: 1px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__inquiry a span {
  display: inline-block;
  line-height: 30px;
  height: 30px;
  position: relative;
  top: -2px;
}
header.lms-common-header div.header-menu__float ul.pc-menu li.menu__inquiry a i {
  position: absolute;
  top: -2px;
  right: 2px;
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.lms-common-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    width: 100%;
    height: 70px;
    padding-left: 0;
    padding-right: 0;
  }
  header.lms-common-header div.header-menu {
    padding-left: 48px;
    padding-right: 80px;
    height: 70px;
  }
  header.lms-common-header div.header-menu div.logo {
    height: 54px;
    top: 10px;
  }
  header.lms-common-header div.header-menu div.logo a {
    height: 100%;
    top: 0px;
    left: 0px;
  }
  header.lms-common-header div.header-menu div.logo a img {
    width: 120px;
  }
  header.lms-common-header div.header-menu div.header-lead {
    display: none;
  }
  header.lms-common-header div.header-menu ul.pc-menu {
    display: none;
  }
  header.lms-common-header div.header-menu__float {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.lms-common-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    width: 100%;
    height: 60px;
  }
  header.lms-common-header div.header-menu {
    display: block;
    height: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  header.lms-common-header div.header-menu div.logo {
    top: unset;
    width: 140px;
    margin-left: 30px;
  }
  header.lms-common-header div.header-menu div.logo a {
    top: 6px;
  }
  header.lms-common-header div.header-menu div.logo a img {
    width: 110px;
  }
  header.lms-common-header div.header-menu div.header-lead {
    display: none;
  }
  header.lms-common-header div.header-menu ul.pc-menu {
    display: none;
  }
  header.lms-common-header div.header-menu__float {
    display: none;
  }
}
body.scrolled div.header-menu__float {
  top: 0 !important;
}

header.lms-arstudio-header {
  border-bottom: 1px solid #e1e1e1;
}
header.lms-arstudio-header div.header-lms-dropdown-wrap {
  margin-left: 20px;
  position: relative;
  white-space: nowrap;
}
header.lms-arstudio-header div.header-lms-dropdown {
  top: 22px;
  position: relative;
  display: inline-block;
  padding: 6px 4px;
}
header.lms-arstudio-header div.header-lms-dropdown:before {
  content: "";
  border-left: 1px solid #aaa;
  margin-right: 12px;
  display: inline-block;
  height: 36px;
  position: relative;
  top: 0px;
}
header.lms-arstudio-header div.header-lms-dropdown span.dropbtn {
  position: relative;
  display: inline-block;
  top: -10px;
}
header.lms-arstudio-header div.header-lms-dropdown span.dropbtn img {
  height: 40px;
}
header.lms-arstudio-header div.header-lms-dropdown span.dropbtn i.bi {
  margin-left: 6px;
  font-size: 18px;
  color: #777;
}
header.lms-arstudio-header div.header-lms-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px 0px;
  z-index: 1;
  border-radius: 4px;
  top: 42px;
}
header.lms-arstudio-header div.header-lms-dropdown .dropdown-content a {
  display: block;
  color: #333;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 2px 14px;
  white-space: nowrap;
}
header.lms-arstudio-header div.header-lms-dropdown .dropdown-content a:hover {
  opacity: 1;
  color: #000;
  background: #f9f9f9;
}
header.lms-arstudio-header div.header-lms-dropdown:hover .dropdown-content {
  display: block;
}
header.lms-arstudio-header div.header-menu {
  border-top: 6px solid #299fd0;
  width: 100%;
  padding-left: min(40px, 4vw);
  padding-right: min(30px, 3vw);
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100px;
}
header.lms-arstudio-header div.header-menu div.logo {
  height: 90px;
  top: 10px;
  text-align: left;
}
header.lms-arstudio-header div.header-menu div.logo a {
  display: block;
  top: 14px;
  position: relative;
}
header.lms-arstudio-header div.header-menu div.logo img {
  max-height: 100%;
  width: 210px;
}
header.lms-arstudio-header div.header-menu div.header-lead {
  flex: 1 1 auto;
  padding-left: 2rem;
  line-height: 1.5;
  font-size: 14px;
  padding-top: 16px;
}
header.lms-arstudio-header div.header-menu div.header-lead span.header-lead-sub {
  display: block;
  font-size: 80%;
}
header.lms-arstudio-header div.header-menu ul.pc-menu {
  text-align: right;
  white-space: nowrap;
  margin-top: 24px;
  padding: 0;
}
header.lms-arstudio-header div.header-menu ul.pc-menu li {
  display: inline-block;
  padding: 0;
}
header.lms-arstudio-header div.header-menu ul.pc-menu li a {
  display: block;
  text-align: center;
  position: relative;
  color: #555555;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
header.lms-arstudio-header div.header-menu ul.pc-menu li a:hover {
  opacity: 0.6;
}
header.lms-arstudio-header div.header-menu ul.pc-menu li span {
  display: inline-block;
}
header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__inquiry, header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__trial, header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__login {
  height: 46px;
  padding: 0 22px 0 12px;
  border: 2px solid #000;
  display: inline-block;
  background: #fff;
  margin-left: 10px;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 42px;
  border-radius: 30px;
  font-size: 15px;
  position: relative;
}
header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__inquiry:after, header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__trial:after, header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__login:after {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
}
header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__login {
  color: #000;
  border-radius: 3px;
  height: 38px;
  line-height: 34px;
}
header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__inquiry {
  color: #299fd0;
  border-color: #299fd0;
}
header.lms-arstudio-header div.header-menu ul.pc-menu a.btn__trial {
  color: #cf1313;
  border-color: #cf1313;
}
header.lms-arstudio-header div.header-menu__float {
  width: 100%;
  padding-left: min(40px, 3vw);
  padding-right: min(30px, 3vw);
  transition: all 0.5s;
  position: fixed;
  background: #fff;
  z-index: 100;
  top: -64px;
  left: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e1e1e1;
  border-top: 4px solid #299fd0;
  display: flex;
  justify-content: space-between;
  height: 64px;
}
header.lms-arstudio-header div.header-menu__float div.logo {
  height: 60px;
  text-align: left;
}
header.lms-arstudio-header div.header-menu__float div.logo a {
  display: block;
  top: 10px;
  position: relative;
}
header.lms-arstudio-header div.header-menu__float div.logo img {
  width: 130px;
}
header.lms-arstudio-header div.header-menu__float div.header-lead {
  flex: 1 1 auto;
  padding-left: 2rem;
  line-height: 1.5;
  font-size: 14px;
  padding-top: 18px;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu {
  flex: 1 1 200px;
  white-space: nowrap;
  text-align: right;
  position: relative;
  top: 10px;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li {
  display: inline-block;
  padding: 0;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a {
  color: #555555;
  font-weight: 700;
  text-decoration: none;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a:hover {
  opacity: 0.6;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__inquiry, header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__trial, header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__login {
  height: 40px;
  padding: 0 16px 0 10px;
  border: 1px solid #000;
  display: inline-block;
  background: #fff;
  margin-left: 10px;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 38px;
  border-radius: 30px;
  position: relative;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__inquiry:after, header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__trial:after, header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__login:after {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__inquiry {
  color: #299fd0;
  border: 1px solid #299fd0;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__trial {
  color: #cf1313;
  border: 1px solid #cf1313;
  line-height: 40px;
}
header.lms-arstudio-header div.header-menu__float ul.pc-menu li a.btn__login {
  color: #000;
  text-decoration: none;
  border-radius: 3px;
  height: 36px;
  line-height: 34px;
}
header.lms-arstudio-header div.header-menu__float div.header-lms-dropdown {
  top: 7px;
}

@media screen and (min-width: 1001px) and (max-width: 1149px) {
  header.lms-arstudio-header div.header-lms-dropdown-wrap {
    margin-left: 1rem;
  }
  header.lms-arstudio-header div.header-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
  header.lms-arstudio-header div.header-menu div.header-lead {
    display: none;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu {
    flex: 1 1 200px;
    text-align: right;
  }
  header.lms-arstudio-header div.header-menu__float {
    padding-left: 20px;
    padding-right: 20px;
  }
  header.lms-arstudio-header div.header-menu__float div.header-lead {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.lms-arstudio-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    width: 100%;
    height: 70px;
    padding-left: 0;
    padding-right: 0;
  }
  header.lms-arstudio-header div.header-lms-dropdown {
    top: 8px;
  }
  header.lms-arstudio-header div.header-menu {
    padding-left: 48px;
    padding-right: 80px;
    height: 70px;
  }
  header.lms-arstudio-header div.header-menu div.logo {
    height: 54px;
    top: 10px;
  }
  header.lms-arstudio-header div.header-menu div.logo a {
    height: 100%;
    top: 10px;
    left: 5px;
  }
  header.lms-arstudio-header div.header-menu div.logo a img {
    width: 150px;
  }
  header.lms-arstudio-header div.header-menu div.header-lead {
    display: none;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu {
    display: none;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu__action {
    padding: 10px 0 0;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu__action li a.btn__inquiry, header.lms-arstudio-header div.header-menu ul.pc-menu__action li a.btn__trial {
    width: 114px;
    height: 44px;
    line-height: 40px;
    font-size: 15px;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu__action li a.link__login {
    color: #000;
    text-decoration: none;
    margin-right: 10px;
    margin-left: 10px;
  }
  header.lms-arstudio-header div.header-menu__float {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.lms-arstudio-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    width: 100%;
    height: 60px;
  }
  header.lms-arstudio-header div.header-lms-dropdown-wrap {
    display: none;
  }
  header.lms-arstudio-header div.header-menu {
    display: block;
    height: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  header.lms-arstudio-header div.header-menu div.logo {
    height: 54px;
    top: unset;
    width: 160px;
    margin-left: 30px;
  }
  header.lms-arstudio-header div.header-menu div.logo a {
    top: 6px;
  }
  header.lms-arstudio-header div.header-menu div.logo a img {
    width: 130px;
  }
  header.lms-arstudio-header div.header-menu div.header-lead {
    display: none;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu {
    display: none;
  }
  header.lms-arstudio-header div.header-menu ul.pc-menu__action {
    display: none;
  }
  header.lms-arstudio-header div.header-menu__float {
    display: none;
  }
}
body.scrolled div.header-menu__float {
  top: 0 !important;
}

footer {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  color: #000;
  padding: 34px 25px 50px;
  display: flex;
  flex-wrap: wrap;
}
footer div.footer-logo {
  flex: 0 0 120px;
  margin-right: 36px;
}
footer div.footer-logo img {
  max-width: 100%;
}
footer div.footer-menu {
  flex: 1 0 600px;
  text-align: left;
}
footer div.copyright {
  flex: 0 0 100%;
  text-align: center;
  font-size: 10px;
  margin-top: 16px;
}
footer ul {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
footer ul li {
  margin: 0 1rem 0.5rem 0;
  padding: 0;
  display: inline-block;
}
footer ul li:last-child {
  margin-right: 0rem;
}
footer ul li a {
  color: #000;
  text-decoration: underline;
}
footer div.footer-to-park {
  flex-grow: 0;
  flex-shrink: 0;
  display: inline-block;
  width: 100px;
  border-left: 1px solid #aaa;
  height: 36px;
  position: relative;
  padding-left: 10px;
}
footer div.footer-to-park a {
  color: #666;
  top: -2px;
  position: relative;
}
footer div.footer-to-park a:hover {
  opacity: 0.6;
}
footer div.footer-to-park a img.footer-logo-support {
  height: 36px;
}
footer div.footer-to-park a > span {
  position: relative;
  font-size: 11px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
footer div.footer-to-park a span.line2 {
  top: -2px;
  font-weight: 700;
  font-size: 12px;
}
footer div.footer-to-park a span.line2 span {
  display: inline-block;
}
footer div.footer-to-park a span.line2 .park-red {
  color: #cf1313;
  margin-left: 2px;
}

@media screen and (max-width: 1149px) {
  footer {
    width: auto;
    padding: 34px 25px 50px;
  }
  footer div.footer-logo {
    flex: 0 0 120px;
    margin-right: 36px;
  }
  footer div.footer-menu {
    flex: 1 0 400px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    width: auto;
    display: block;
    padding: 34px 10px 50px;
  }
  footer div.footer-logo {
    text-align: center;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  footer div.footer-logo img {
    max-width: min(50vw, 260px);
  }
  footer ul {
    margin-bottom: 12px;
  }
  footer ul li {
    margin: 0 10px 12px 0;
  }
  footer div.footer-to-park {
    margin-top: 14px;
    display: block;
    width: auto;
    border-left: none;
    height: auto;
    padding-left: 0;
    text-align: center;
  }
  footer div.footer-to-park a {
    display: inline-block;
    top: 0;
    position: static;
    width: 160px;
  }
}
/*　ハンバーガーボタン　*/
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#hamburger {
  display: block;
  position: fixed;
  z-index: 12;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  /* ナビ開いてる時のボタン */
}
#hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#hamburger span:nth-child(1) {
  top: 10px;
}
#hamburger span:nth-child(2) {
  top: 20px;
}
#hamburger span:nth-child(3) {
  top: 30px;
}
#hamburger.active {
  background-color: transparent;
}
#hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
#hamburger.active span:nth-child(2),
#hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

#globalMenuSp {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.83);
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  /* このクラスを、jQueryで付与・削除する */
}
#globalMenuSp ul.major-menu, #globalMenuSp ul.minor-menu {
  margin: 0 auto;
  padding: 20px 0 0 0;
  width: 100%;
}
#globalMenuSp ul.major-menu li, #globalMenuSp ul.minor-menu li {
  text-align: left;
  list-style-type: none;
  padding: 0 0 0 30px;
  width: 100%;
  transition: 0.4s all;
}
#globalMenuSp ul.major-menu li:last-child, #globalMenuSp ul.minor-menu li:last-child {
  padding-bottom: 0;
}
#globalMenuSp ul.major-menu li:hover, #globalMenuSp ul.minor-menu li:hover {
  background: #ddd;
}
#globalMenuSp ul.major-menu li a, #globalMenuSp ul.minor-menu li a {
  display: inline-block;
  color: #fff;
  padding: 0.6em 0;
  text-decoration: none;
}
#globalMenuSp ul.major-menu li a img, #globalMenuSp ul.minor-menu li a img {
  height: 40px;
}
#globalMenuSp ul.major-menu li.li__btn, #globalMenuSp ul.minor-menu li.li__btn {
  padding-top: 1em;
  padding-bottom: 0.6em;
}
#globalMenuSp ul.major-menu li.li__btn a.btn__inquiry, #globalMenuSp ul.major-menu li.li__btn a.btn__trial, #globalMenuSp ul.minor-menu li.li__btn a.btn__inquiry, #globalMenuSp ul.minor-menu li.li__btn a.btn__trial {
  padding: 0;
  width: 100px;
  height: 40px;
  border: 1px solid #000;
  display: inline-block;
  background: #fff;
  margin-left: 10px;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 38px;
  border-radius: 3px;
}
#globalMenuSp ul.major-menu li.li__btn a.btn__inquiry, #globalMenuSp ul.minor-menu li.li__btn a.btn__inquiry {
  color: #299fd0;
  border: 1px solid #299fd0;
}
#globalMenuSp ul.major-menu li.li__btn a.btn__trial, #globalMenuSp ul.minor-menu li.li__btn a.btn__trial {
  color: #cf1313;
  border: 1px solid #cf1313;
  line-height: 40px;
}
#globalMenuSp ul.minor-menu li {
  padding-left: 40px;
}
#globalMenuSp ul.minor-menu li a i {
  margin-right: 6px;
}
#globalMenuSp.active {
  opacity: 100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: block;
  visibility: visible;
}

@media screen and (min-width: 1000px) {
  #hamburger {
    display: none;
  }

  #globalMenuSp {
    display: none;
  }
}
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 20px 3px;
  width: 900px;
  min-width: 768px;
  max-height: 90vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  text-align: center;
}

.modal__close-x {
  border: 0;
  font-size: 36px;
  color: #000;
  position: absolute;
  right: calc(50vw - 500px);
  top: 34px;
  background: #fff;
  border-radius: 100px;
  z-index: 100;
  text-align: center;
  width: 44px;
  line-height: 44px;
  height: 44px;
}
.modal__close-x:focus {
  outline: none;
}
.modal__close-x:before {
  content: "✕";
  position: relative;
  top: -2px;
}

.modal__content {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__content div.video-wrap {
  text-align: center;
  margin: 0 auto 60px;
  width: 700px;
  height: 467px;
}
.modal__content div.video-wrap div.youtube-wrap {
  width: 100%;
  height: 100%;
}
.modal__content div.video-wrap div.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}
.modal__content .modal__slide-img-wrap {
  margin-bottom: 40px;
}
.modal__content .modal__slide-img-wrap:last-child {
  margin-bottom: 0;
}
.modal__content .modal__slide-img {
  max-width: 100%;
}
.modal__content h1 {
  color: #449FC5;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0;
}
.modal__content .red-txt {
  color: #cf1313;
  font-weight: 600;
}
.modal__content .yellow-underline {
  font-weight: 600;
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
.modal__content .blue-underline {
  font-weight: 600;
  background: linear-gradient(transparent 65%, #D8ECF9 65%);
}

/**************************\
  Demo Animation Style
\**************************/
/* ---  レスポンシブ -- */
@media screen and (max-width: 1149px) {
  .modal__container {
    max-width: 95vw;
  }

  .modal__close-x {
    font-size: 32px;
    right: 8px;
    top: 30px;
    border: 3px solid rgba(0, 0, 0, 0.72);
  }

  .modal__close-x:before {
    top: -4px;
  }
}
@media screen and (max-width: 767px) {
  .modal__overlay {
    align-items: flex-start;
  }

  .modal__container {
    width: 360px;
    min-width: 360px;
    margin-top: 2vh;
  }

  .modal__close-x {
    font-size: 24px;
    right: 2px;
    top: calc(2vh - 10px);
    border-width: 2px;
    width: 32px;
    line-height: 32px;
    height: 32px;
  }

  .modal__close-x:before {
    top: -4px;
  }

  .modal__content div.video-wrap {
    width: 84vw;
    height: 58vw;
  }
  .modal__content div.video-wrap div.youtube-wrap {
    width: 100%;
    height: 100%;
  }
  .modal__content div.video-wrap div.youtube-wrap iframe {
    width: 100%;
    height: 100%;
  }
}
.modal-scratch .modal-scratch-top {
  text-align: center;
  font-size: 18px;
  margin-bottom: 66px;
}
.modal-scratch .modal-scratch-desc {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.modal-scratch .modal-scratch-desc__item {
  background-color: #ffffff;
  width: 240px;
  height: 124px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 7px;
  margin-bottom: 20px;
}
.modal-scratch .modal-scratch-desc__item--center {
  width: 265px;
}
.modal-scratch .modal-scratch-desc__item--right {
  height: 268px;
}
.modal-scratch .modal-scratch-desc__item-top {
  height: 38px;
  border-radius: 7px 7px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
  background-color: #D8ECF9;
}
.modal-scratch .modal-scratch-desc__item-content {
  position: relative;
  font-size: 18px;
  height: 86px;
}
.modal-scratch .modal-scratch-desc__item-content p {
  position: absolute;
  width: 240px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin-bottom: 0;
}
.modal-scratch .modal-scratch-desc__item-content-add {
  margin: 15px 5px;
}
.modal-scratch .modal-scratch-desc__item-content-add p {
  font-size: 16px;
  text-align: left;
}
.modal-scratch .modal-scratch-desc__scratch {
  height: 124px;
  width: 203px;
  position: relative;
  margin: 0 auto 20px;
}
.modal-scratch .modal-scratch-desc__scratch-top {
  width: 203px;
  position: absolute;
  left: 0;
  text-align: left;
  font-size: 18px;
  line-height: 18px;
}
.modal-scratch .modal-scratch-desc__scratch-name {
  position: absolute;
  top: 20px;
  width: 203px;
  font-size: 55px;
  line-height: 55px;
  color: #ECAC4E;
  font-weight: 600;
}
.modal-scratch .modal-scratch-desc__scratch-bottom {
  width: 203px;
  position: absolute;
  right: 0;
  font-size: 22px;
  line-height: 22px;
  top: 80px;
  font-weight: 600;
  color: #509DCB;
  text-align: right;
}
.modal-scratch .modal-scratch-table .scratch-table {
  width: 767px;
  text-align: center;
  font-weight: 600;
  margin: 20px auto 60px;
}
.modal-scratch .modal-scratch-table .scratch-table tr {
  border-bottom: 1px solid #707070;
}
.modal-scratch .modal-scratch-table .scratch-table tr:first-child td {
  border-right: none;
}
.modal-scratch .modal-scratch-table .scratch-table tr:last-child {
  border-bottom: none;
}
.modal-scratch .modal-scratch-table .scratch-table tr td {
  border-right: 1px solid #707070;
  width: 214px;
}
.modal-scratch .modal-scratch-table .scratch-table tr td:first-child {
  width: 136px;
}
.modal-scratch .modal-scratch-table .scratch-table tr td:last-child {
  border-right: none;
}
.modal-scratch .modal-scratch-table .scratch-table tr td.scratch-table__ars {
  border-right: 3px solid #509DCB;
  border-left: 3px solid #509DCB;
}
.modal-scratch .modal-scratch-table .scratch-table__title {
  font-size: 16px;
  padding: 20px 0;
  line-height: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__title--small {
  font-size: 12px;
}
.modal-scratch .modal-scratch-table .scratch-table__title--thik {
  padding: 30px 0;
}
.modal-scratch .modal-scratch-table .scratch-table__ars {
  font-size: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__ars--title {
  color: #cf1313;
  font-size: 18px;
  line-height: 30px;
  border-top: 3px solid #509DCB;
}
.modal-scratch .modal-scratch-table .scratch-table__ars--last {
  border-bottom: 3px solid #509DCB;
}
.modal-scratch .modal-scratch-table .scratch-table__ars-desc-big {
  font-size: 20px;
}
.modal-scratch .modal-scratch-table .scratch-table__ars-desc-bottom {
  font-size: 16px;
}
.modal-scratch .modal-scratch-table .scratch-table__ars-desc-symbol {
  font-size: 20px;
}
.modal-scratch .modal-scratch-table .scratch-table__robot {
  font-size: 18px;
  color: #767676;
}
.modal-scratch .modal-scratch-table .scratch-table__robot--title {
  font-size: 20px;
}
.modal-scratch .modal-scratch-table .scratch-table__robot-desc-big {
  font-size: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__robot-desc-bottom {
  font-size: 14px;
}
.modal-scratch .modal-scratch-table .scratch-table__robot-desc-symbol {
  font-size: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__drill {
  font-size: 18px;
  color: #767676;
}
.modal-scratch .modal-scratch-table .scratch-table__drill--title {
  font-size: 20px;
}
.modal-scratch .modal-scratch-table .scratch-table__drill-desc-big {
  font-size: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__drill-desc-bottom {
  font-size: 14px;
}
.modal-scratch .modal-scratch-table .scratch-table__drill-desc-symbol {
  font-size: 18px;
}
.modal-scratch .modal-scratch-table .scratch-table__logo {
  width: 50%;
  padding-bottom: 10px;
}
.modal-scratch .modal-scratch-table .scratch-table-desc {
  max-width: 767px;
  text-align: left;
  margin: auto;
}
.modal-scratch .modal-scratch-table .scratch-table-desc__item {
  display: flex;
  margin-bottom: 60px;
}
.modal-scratch .modal-scratch-table .scratch-table-desc__item-left i {
  background-color: #509DCB;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  line-height: 23px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  margin-right: 7px;
  color: #ffffff;
}
.modal-scratch .modal-scratch-table .scratch-table-desc__item-title {
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 7px;
  font-weight: 600;
}
.modal-scratch .modal-scratch-table .scratch-table-desc__item-content {
  font-size: 18px;
}
.modal-scratch .modal-scratch-desc__container + .modal-scratch-desc__container {
  margin-left: 15px;
}
.modal-scratch .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-scratch .modal-scratch-top {
    text-align: left;
    margin: 0 auto 45px;
    width: 95%;
  }
  .modal-scratch .modal-scratch-desc {
    display: block;
  }
  .modal-scratch .modal-scratch-desc__item {
    width: 318px;
    margin: 0 auto 20px;
  }
  .modal-scratch .modal-scratch-table .scratch-table {
    width: 347px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__title {
    font-size: 14px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__robot--title {
    font-size: 12px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__drill--title {
    font-size: 12px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__ars-desc-big {
    font-size: 18px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__ars-desc-bottom {
    font-size: 14px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__robot-desc-big {
    font-size: 16px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__robot-desc-bottom {
    font-size: 14px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__drill-desc-big {
    font-size: 16px;
  }
  .modal-scratch .modal-scratch-table .scratch-table__drill-desc-bottom {
    font-size: 14px;
  }
  .modal-scratch .modal-scratch-table .scratch-table tr td:first-child {
    width: 52px;
  }
  .modal-scratch .modal-scratch-table .scratch-table tr td.scratch-table__ars {
    width: 145px;
  }
  .modal-scratch .modal-scratch-table .scratch-table tr td.scratch-table__robot {
    width: 75px;
  }
  .modal-scratch .modal-scratch-table .scratch-table tr td.scratch-table__drill {
    width: 75px;
  }
  .modal-scratch .modal-scratch-table .scratch-table-desc__item {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .modal-scratch .modal-scratch-desc__container + .modal-scratch-desc__container {
    margin-left: 0;
  }
  .modal-scratch .sp-none {
    display: none;
  }
  .modal-scratch .pc-none {
    display: block;
  }
}

.modal-function .modal-function-table .function-table {
  width: 767px;
  text-align: center;
  font-weight: 600;
  margin: 20px auto 60px;
}
.modal-function .modal-function-table .function-table tr {
  border-bottom: 1px solid #707070;
}
.modal-function .modal-function-table .function-table tr:first-child td {
  border-right: none;
  padding: 0;
}
.modal-function .modal-function-table .function-table tr:last-child {
  border-bottom: none;
}
.modal-function .modal-function-table .function-table tr td {
  border-right: 1px solid #707070;
  padding: 12px 0;
}
.modal-function .modal-function-table .function-table tr td:first-child {
  max-width: 30px;
}
.modal-function .modal-function-table .function-table tr td:nth-child(2) {
  width: 157px;
}
.modal-function .modal-function-table .function-table tr td:nth-child(3) {
  width: 320px;
}
.modal-function .modal-function-table .function-table tr td:last-child {
  width: 260px;
  border-right: none;
}
.modal-function .modal-function-table .function-table tr td.function-table__group {
  border-right: none;
  position: relative;
}
.modal-function .modal-function-table .function-table__title {
  font-size: 16px;
  padding: 20px 0;
  line-height: 18px;
}
.modal-function .modal-function-table .function-table__title--small {
  font-size: 12px;
}
.modal-function .modal-function-table .function-table__title--thik {
  padding: 30px 0;
}
.modal-function .modal-function-table .function-table__title p {
  position: relative;
  top: 10px;
  margin-bottom: 0;
}
.modal-function .modal-function-table .function-table__group {
  color: #ffffff;
  font-size: 15px;
  position: relative;
}
.modal-function .modal-function-table .function-table__group p {
  position: absolute;
  letter-spacing: 15px;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  overflow-wrap: anywhere;
}
.modal-function .modal-function-table .function-table__group--red {
  background-color: #cf1313;
}
.modal-function .modal-function-table .function-table__group--green {
  background-color: #53B77F;
}
.modal-function .modal-function-table .function-table__group--blue {
  background-color: #3597C0;
}
.modal-function .modal-function-table .function-table__group--orange {
  background-color: #D69667;
}
.modal-function .modal-function-table .function-table__group--en p {
  left: 9px;
}
.modal-function .modal-function-table .function-table__ars {
  font-size: 16px;
}
.modal-function .modal-function-table .function-table__ars-desc-img {
  width: 200px;
}
.modal-function .modal-function-table .function-table__scratch {
  font-size: 15px;
  color: #767676;
}
.modal-function .modal-function-table .function-table__scratch--title {
  font-size: 18px;
}
.modal-function .modal-function-table .function-table__logo {
  width: 50%;
  padding-bottom: 10px;
}
.modal-function .modal-function-table .function-table .txt-red {
  color: #cf1313;
}
.modal-function .modal-function-table .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-function .modal-function-table .function-table {
    width: 350px;
  }
  .modal-function .modal-function-table .function-table tr td:first-child {
    width: 22px;
  }
  .modal-function .modal-function-table .function-table tr td:nth-child(2) {
    width: 40px;
  }
  .modal-function .modal-function-table .function-table tr td:nth-child(3) {
    width: 158px;
  }
  .modal-function .modal-function-table .function-table tr td:last-child {
    width: 130px;
  }
  .modal-function .modal-function-table .function-table__group {
    font-size: 13px;
  }
  .modal-function .modal-function-table .function-table__group p {
    left: 4px;
  }
  .modal-function .modal-function-table .function-table__group--en p {
    left: 7px;
  }
  .modal-function .modal-function-table .function-table__title p {
    font-size: 12px;
    letter-spacing: 14px;
    line-height: 16px;
    text-align: right;
    margin-bottom: 0;
    top: 50%;
    transform: translateY(10%);
  }
  .modal-function .modal-function-table .function-table__title p span {
    display: block;
    transform: rotate(90deg);
  }
  .modal-function .modal-function-table .function-table__ars-desc-img {
    width: 130px;
  }
  .modal-function .modal-function-table .pc-none {
    display: block;
  }
  .modal-function .modal-function-table .sp-none {
    display: none;
  }
}

.modal-lesson .modal-lesson-item {
  display: flex;
  max-width: 767px;
  margin: auto;
  margin-bottom: 70px;
}
.modal-lesson .modal-lesson-item__img-area {
  width: 250px;
  margin-right: 35px;
}
.modal-lesson .modal-lesson-item__img-area img {
  width: 250px;
}
.modal-lesson .modal-lesson-item__content-area {
  text-align: left;
}
.modal-lesson .modal-lesson-item__content-title {
  font-size: 22px;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 28px;
  text-align: left;
}
.modal-lesson .modal-lesson-item__content-item {
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
}
.modal-lesson .modal-lesson-item__content-circle {
  content: "";
  width: 7px;
  margin-top: 10px;
  margin-right: 7px;
  height: 7px;
  background-color: #449FC5;
  display: block;
  border-radius: 50%;
}
.modal-lesson .modal-lesson-item__content-txt {
  width: 100%;
}
.modal-lesson .modal-lesson-flow {
  margin-top: 80px;
}
.modal-lesson .modal-lesson-flow__item {
  display: flex;
  width: 766px;
  justify-content: space-between;
  margin: auto;
}
.modal-lesson .modal-lesson-flow__item:last-child {
  height: 50px;
}
.modal-lesson .modal-lesson-flow__time {
  width: 80px;
  font-size: 18px;
}
.modal-lesson .modal-lesson-flow__time::after {
  content: "";
  display: block;
  width: 2px;
  height: 215px;
  margin: auto;
}
.modal-lesson .modal-lesson-flow__time--green::after {
  background-color: #53B77F;
}
.modal-lesson .modal-lesson-flow__time--blue::after {
  background-color: #449FC5;
}
.modal-lesson .modal-lesson-flow__time--red::after {
  background-color: #DA3B26;
  height: 180px;
}
.modal-lesson .modal-lesson-flow__level {
  width: 320px;
  height: 170px;
  background-color: #ffffff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal-lesson .modal-lesson-flow__level--green {
  border: 1px solid #53B77F;
}
.modal-lesson .modal-lesson-flow__level--blue {
  border: 1px solid #449FC5;
}
.modal-lesson .modal-lesson-flow__level--red {
  border: 1px solid #DA3B26;
}
.modal-lesson .modal-lesson-flow__level-title {
  background-color: #53B77F;
  color: #ffffff;
  width: 145px;
  height: 32px;
  line-height: 32px;
  text-align: left;
  padding-left: 15px;
  font-size: 16px;
}
.modal-lesson .modal-lesson-flow__level-title--green {
  background-color: #53B77F;
}
.modal-lesson .modal-lesson-flow__level-title--blue {
  background-color: #449FC5;
}
.modal-lesson .modal-lesson-flow__level-title--red {
  background-color: #DA3B26;
}
.modal-lesson .modal-lesson-flow__level-content {
  text-align: left;
  padding-left: 15px;
  position: absolute;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 16px;
}
.modal-lesson .modal-lesson-flow__lesson {
  width: 320px;
  height: 170px;
  text-align: left;
}
.modal-lesson .modal-lesson-flow__lesson-items {
  display: flex;
  justify-content: space-between;
}
.modal-lesson .modal-lesson-flow__lesson-num {
  font-size: 14px;
}
.modal-lesson .modal-lesson-flow__lesson-item-img {
  width: 146px;
  margin-bottom: 5px;
}
.modal-lesson .modal-lesson-flow__lesson-item-img img {
  width: 100%;
}
.modal-lesson .modal-lesson-flow__lesson-item-content {
  color: #767676;
  font-size: 14px;
  line-height: 18px;
}
.modal-lesson .modal-lesson-flow__after {
  display: block;
  width: 766px;
  margin: auto;
  text-align: right;
  font-size: 14px;
  color: #767676;
}
.modal-lesson .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-lesson {
    width: 90%;
    margin: auto;
  }
  .modal-lesson .modal-lesson-item {
    display: block;
  }
  .modal-lesson .modal-lesson-item__content-title {
    margin-bottom: 22px;
  }
  .modal-lesson .modal-lesson-item__img-area {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .modal-lesson .modal-lesson-item__img-area img {
    width: 100%;
  }
  .modal-lesson .modal-lesson-flow__item {
    display: block;
    width: 100%;
  }
  .modal-lesson .modal-lesson-flow__time {
    margin: 0 auto 10px;
    width: auto;
  }
  .modal-lesson .modal-lesson-flow__time::after {
    display: none;
  }
  .modal-lesson .modal-lesson-flow__time::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
    top: -3px;
  }
  .modal-lesson .modal-lesson-flow__time--green::before {
    background-color: #53B77F;
  }
  .modal-lesson .modal-lesson-flow__time--blue::before {
    background-color: #449FC5;
  }
  .modal-lesson .modal-lesson-flow__time--red::before {
    background-color: #DA3B26;
  }
  .modal-lesson .modal-lesson-flow__time:last-child::before {
    display: none;
  }
  .modal-lesson .modal-lesson-flow__level {
    margin-bottom: 15px;
  }
  .modal-lesson .modal-lesson-flow__arrow {
    font-size: 20px;
    margin: 25px auto;
  }
  .modal-lesson .modal-lesson-flow__after {
    width: 100%;
    text-align: center;
  }
  .modal-lesson .pc-none {
    display: block;
  }
  .modal-lesson .sp-none {
    display: none;
  }
}

.modal-team__top {
  text-align: left;
  font-size: 18px;
  width: 657px;
  margin: 0 auto 120px;
}
.modal-team__who {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 600;
}
.modal-team__who span {
  position: relative;
}
.modal-team__who span::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
.modal-team__who span::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
.modal-team__item {
  width: 657px;
  margin: auto;
  display: flex;
  padding: 30px 20px;
  border-radius: 7px;
  position: relative;
}
.modal-team__item--blue {
  background-color: #E9F4FC;
}
.modal-team__item--blue::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 15px solid #E9F4FC;
}
.modal-team__item--red {
  background-color: #FCF3F8;
}
.modal-team__item--red::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-bottom: 15px solid #FCF3F8;
}
.modal-team__item-position {
  width: 155px;
  font-size: 18px;
  background-color: #449FC5;
  color: #ffffff;
  margin: 0 auto 20px;
  border-radius: 3px;
}
.modal-team__item-position--blue {
  background-color: #449FC5;
}
.modal-team__item-position--red {
  background-color: #DA3B26;
}
.modal-team__item-img {
  width: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.modal-team__item-img--blue {
  border: 2px solid #449FC5;
}
.modal-team__item-img--red {
  border: 2px solid #DA3B26;
}
.modal-team__item-img img {
  width: 100%;
}
.modal-team__item-name-top {
  font-size: 14px;
}
.modal-team__item-name-main {
  font-size: 18px;
}
.modal-team__item-right {
  text-align: left;
  margin-left: 50px;
}
.modal-team__item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.modal-team__item-content {
  font-size: 18px;
}
.modal-team__logo {
  width: 200px;
  margin: 30px auto;
}
.modal-team__logo img {
  width: 100%;
}
.modal-team .pc-none {
  display: none;
}
.modal-team .pc-none-spe {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-team__top {
    width: 95%;
  }
  .modal-team__who {
    font-size: 22px;
  }
  .modal-team__who span::before {
    left: -60px;
  }
  .modal-team__who span::after {
    right: -15px;
  }
  .modal-team__item {
    width: 100%;
    display: block;
  }
  .modal-team__item-left {
    align-items: center;
    margin-bottom: 25px;
  }
  .modal-team__item-left-txt-area {
    text-align: left;
    margin-left: 20px;
  }
  .modal-team__item-img {
    width: 95px;
    margin-bottom: 0;
  }
  .modal-team__item-position {
    font-size: 16px;
    display: inline-block;
    text-align: left;
    padding: 0 20px;
    width: auto;
    margin-bottom: 10px;
  }
  .modal-team__item-name-top {
    display: block;
  }
  .modal-team__item-right {
    margin-left: 0;
  }
  .modal-team__item-title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .modal-team__item-content {
    font-size: 16px;
  }
  .modal-team .sp-none {
    display: none;
  }
  .modal-team .pc-none {
    display: block;
  }
  .modal-team .pc-none-spe {
    display: flex;
  }
}

#main > section.common-cta-section {
  width: 100%;
}

section.common-cta-section {
  background-image: image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  background-image: -webkit-image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
}
section.common-cta-section .cta-top-caution {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 36px;
  padding-top: 60px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  section.common-cta-section .cta-top-caution {
    font-size: 16px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
section.common-cta-section div.education-demo-comp-wrap .classroom-form-area {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  section.common-cta-section div.education-demo-comp-wrap {
    margin-bottom: 80px;
  }
}
section.common-cta-section div.education-demo-comp-wrap div.consultation {
  margin-top: 60px;
  text-align: center;
  padding-bottom: 40px;
}
section.common-cta-section div.education-demo-comp-wrap div.consultation h4 {
  font-size: 20px;
}
section.common-cta-section div.education-demo-comp-wrap div.consultation a {
  font-size: 20px;
  color: #000;
  color: #299fd0;
}
section.common-cta-section div.education-demo-comp-wrap div.consultation a span {
  color: #299fd0;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  section.common-cta-section div.education-demo-comp-wrap div.consultation h4 {
    font-size: 16px;
  }
  section.common-cta-section div.education-demo-comp-wrap div.consultation a {
    font-size: 16px;
  }
}

li {
  list-style-type: none;
}

div.lms-top-page {
  font-size: 16px;
}
div.lms-top-page > section {
  margin-top: 100px;
  margin-bottom: 100px;
}
div.lms-top-page hr {
  opacity: 0.5;
}
div.lms-top-page h2.section-heading {
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
div.lms-top-page h2.section-heading span.sub-lead {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
div.lms-top-page h2.section-heading span.main-lead {
  display: inline-block;
  font-size: 32px;
  position: relative;
}
div.lms-top-page section.feature h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
div.lms-top-page section.feature h1 .arschool-text {
  font-size: 140%;
  margin-right: 6px;
  font-weight: 700;
}
div.lms-top-page section.feature h1 .kyositsu-text {
  font-size: 140%;
  margin-left: 6px;
  font-weight: 700;
}
div.lms-top-page section.feature .feature__lead1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
div.lms-top-page section.feature .feature__lead1-feature {
  border: 2px solid;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
}
div.lms-top-page section.feature .feature__lead1-edu {
  color: #299fd0;
  border-color: #299fd0;
}
div.lms-top-page section.feature .feature__lead1-dev {
  color: #E23434;
  border-color: #E23434;
}
div.lms-top-page section.feature .feature__lead1-seo {
  color: #53B77F;
  border-color: #53B77F;
}
div.lms-top-page section.feature .feature__lead2 {
  margin-bottom: 36px;
  font-size: 16px;
}
div.lms-top-page section.feature .feature__lead2 p {
  text-align: center;
  margin-bottom: 4px;
}
div.lms-top-page section.feature .feature__service h3.feature__service-heading {
  text-align: center;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}
div.lms-top-page section.feature .feature__service div.feature__service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
div.lms-top-page section.feature .feature__service div.feature__service-list a {
  margin: 0 8px;
  padding: 0px 16px;
  display: inline-block;
  border: 2px solid #4D4848;
  border-radius: 4px;
  height: 72px;
  color: #4D4848;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
div.lms-top-page section.feature .feature__service div.feature__service-list a span.text-navi {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div.lms-top-page section.feature .feature__service div.feature__service-list a.feature__service-arstudio {
  line-height: 16px;
  padding-top: 4px;
}
div.lms-top-page section.feature .feature__service div.feature__service-list a.feature__service-arstudio span {
  display: block;
  line-height: 24px;
}
div.lms-top-page section.feature .feature__service div.feature__service-list a.feature__service-arstudio img {
  width: 120px;
}
div.lms-top-page section.arstudio div.arstudio__kv {
  display: flex;
  justify-content: center;
  height: 400px;
  margin-bottom: 120px;
}
div.lms-top-page section.arstudio div.arstudio__kv-left {
  flex: 0 0 400px;
  text-align: center;
  position: relative;
}
div.lms-top-page section.arstudio div.arstudio__kv-left img {
  width: 320px;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div.lms-top-page section.arstudio div.arstudio__kv-right {
  flex: 0 0 480px;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text {
  position: relative;
  font-weight: 600;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-who {
  position: absolute;
  font-size: 25px;
  left: 0;
  top: 75px;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-who::after {
  content: url(/img/top/new-tob/under-line.svg);
  display: inherit;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle {
  position: absolute;
  text-align: center;
  right: 0;
  top: 50px;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure::after {
  content: "";
  position: relative;
  top: -5px;
  right: 5px;
  display: inline-block;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 3px solid #3597C0;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure .text-circle-inner {
  position: absolute;
  font-size: 24px;
  line-height: 30px;
  color: #3597C0;
  width: 120px;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-main {
  position: absolute;
  top: 185px;
  left: 0;
  font-size: 30px;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-main .text-main-line {
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure {
  position: absolute;
  top: 270px;
  left: 0;
  display: flex;
  width: 480px;
  justify-content: space-between;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item {
  background-color: #509DCB;
  height: 105px;
  font-size: 28px;
  color: #ffffff;
  border-radius: 7px;
  border: 3px solid #ffffff;
  text-align: center;
  padding: 18px 25px;
  line-height: 33px;
  position: relative;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item--center {
  line-height: 65px;
}
div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item + .text-figure-item::before {
  content: "＋";
  color: #3597C0;
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  top: 27px;
  left: -37px;
  width: 50px;
  height: 50px;
  line-height: 44px;
  border: 3px solid #3597c0;
}
div.lms-top-page section.arstudio section.features-new .top-section-title {
  margin-bottom: 150px;
}
div.lms-top-page section.arstudio section.features-new .feature-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 1125px;
  margin: auto;
  justify-content: space-between;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
  width: 355px;
  height: 405px;
  border: 3px solid #3597C0;
  border-radius: 7px;
  position: relative;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 100px;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img {
  max-width: 315px;
  position: absolute;
  top: -20%;
  left: 17px;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img img {
  width: 100%;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__top {
  position: absolute;
  font-size: 24px;
  top: 120px;
  font-weight: 600;
  width: 315px;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__txt {
  position: absolute;
  width: 315px;
  top: 210px;
  text-align: left;
  font-size: 18px;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn {
  position: absolute;
  width: 280px;
  height: 62px;
  background-color: #ffffff;
  border-radius: 32px;
  border: 2px solid #3597C0;
  bottom: -31px;
  left: 37.5px;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn:hover {
  opacity: 1;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn:hover .feature-item__btn-txt {
  opacity: 0.7;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn i {
  right: 15px;
  position: absolute;
  top: 20px;
  color: #3597C0;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn-txt {
  display: block;
}
div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn-small {
  display: block;
  font-size: 12px;
  line-height: 26px;
}
div.lms-top-page section.arstudio section.features-new .feature-video {
  text-align: center;
}
div.lms-top-page section.arstudio section.features-new .feature-video iframe {
  width: 560px;
  height: 315px;
}
@media screen and (max-width: 1149px) {
  div.lms-top-page section.arstudio section.features-new .feature-items {
    justify-content: center;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
    margin: 0 30px 170px;
  }
}
@media screen and (max-width: 767px) {
  div.lms-top-page section.arstudio section.features-new .top-section-title {
    margin-bottom: 100px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
    margin: 0 0 170px;
    width: 335px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item:last-child {
    margin-bottom: 100px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img {
    left: 7px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__top {
    width: 295px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__txt {
    width: 295px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn {
    left: 27.5px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video {
    margin-bottom: 70px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video iframe {
    width: 365px;
    height: 200px;
  }
}
div.lms-top-page section.arstudio div.to-detail {
  text-align: center;
}
div.lms-top-page section.arstudio div.to-detail a.to-detail-btn {
  display: inline-block;
  position: relative;
  width: 420px;
  border: 3px solid #53b77f;
  border-radius: 18px;
  text-decoration: none;
  padding: 6px 0;
  background-color: #53b77f;
  color: #fff;
  filter: drop-shadow(0px 3px 4px rgba(66, 75, 105, 0.22));
}
div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead {
  display: block;
  color: #fff;
  font-size: 20px;
}
div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead .emp {
  font-size: 34px;
  margin-left: 4px;
  margin-right: 4px;
}
div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.main-lead {
  display: block;
  color: #E23434;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
}
div.lms-top-page section.arstudio div.to-detail a.to-detail-btn i.bi {
  color: #E23434;
  color: #fff;
  position: absolute;
  font-size: 40px;
  top: 40px;
  right: 10px;
}
div.lms-top-page section.instructor div.section-lead, div.lms-top-page section.tech div.section-lead, div.lms-top-page section.tools div.section-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}
div.lms-top-page section.instructor div.section-lead p, div.lms-top-page section.tech div.section-lead p, div.lms-top-page section.tools div.section-lead p {
  margin-bottom: 4px;
}
div.lms-top-page section.instructor div.supplement, div.lms-top-page section.tech div.supplement, div.lms-top-page section.tools div.supplement {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}
div.lms-top-page section.instructor div.to-inquiry, div.lms-top-page section.tech div.to-inquiry, div.lms-top-page section.tools div.to-inquiry {
  text-align: center;
}
div.lms-top-page section.instructor div.to-inquiry a.to-inquiry-btn, div.lms-top-page section.tech div.to-inquiry a.to-inquiry-btn, div.lms-top-page section.tools div.to-inquiry a.to-inquiry-btn {
  cursor: pointer;
  position: relative;
  border: 2px solid #53B77F;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 25px 10px 21px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #53B77F;
  filter: drop-shadow(0px 3px 4px rgba(66, 75, 105, 0.22));
}
div.lms-top-page section.instructor div.to-inquiry a.to-inquiry-btn i.bi, div.lms-top-page section.tech div.to-inquiry a.to-inquiry-btn i.bi, div.lms-top-page section.tools div.to-inquiry a.to-inquiry-btn i.bi {
  position: absolute;
  right: 0;
  top: 10px;
}
div.lms-top-page section.instructor div.instructor-contents {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
div.lms-top-page section.instructor div.instructor-contents div.instructor-course {
  display: flex;
  margin-bottom: 32px;
}
div.lms-top-page section.instructor div.instructor-contents div.instructor-course.instructor-course2 {
  margin-bottom: 60px;
}
div.lms-top-page section.instructor div.instructor-contents div.instructor-course div.course-title {
  flex: 0 0 260px;
  text-align: center;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 18px;
  height: 84px;
}
div.lms-top-page section.instructor div.instructor-contents div.instructor-course div.course-text {
  font-size: 16px;
  padding: 0 0 0 1rem;
}
div.lms-top-page section.tech div.tech-contents ul.tech-features {
  margin: 0 auto 40px auto;
  padding: 0;
  width: 480px;
}
div.lms-top-page section.tech div.tech-contents ul.tech-features li {
  margin: 0 0 14px;
  padding: 0 0 0 0;
  font-size: 20px;
  font-weight: 600;
}
div.lms-top-page section.tech div.tech-contents ul.tech-features li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  color: #299fd0;
  content: "";
  margin-right: 10px;
  font-size: 130%;
  top: 0.15rem;
  position: relative;
}
div.lms-top-page section.tools .tool-content {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
div.lms-top-page section.tools .tool-content h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
div.lms-top-page section.tools .tool-material {
  display: flex;
  margin-bottom: 100px;
}
div.lms-top-page section.tools .tool-material .left {
  flex: 0 0 400px;
  padding: 0 16px;
}
div.lms-top-page section.tools .tool-material .left img {
  max-width: 100%;
}
div.lms-top-page section.tools .tool-material .right {
  padding-left: 20px;
}
div.lms-top-page section.tools .tool-material .right .tool-material-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
div.lms-top-page section.tools .tool-material .right .tool-material-text {
  font-size: 16px;
  margin-bottom: 32px;
}
div.lms-top-page section.tools .tool-material div.to-detail {
  padding-left: 60px;
}
div.lms-top-page section.tools .tool-material div.to-detail a.to-detail-btn {
  position: relative;
  border: 2px solid #299fd0;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 25px 10px 21px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #299fd0;
  filter: drop-shadow(0px 3px 4px rgba(66, 75, 105, 0.22));
}
div.lms-top-page section.tools .tool-material div.to-detail a.to-detail-btn i.bi {
  position: absolute;
  right: 0;
  top: 10px;
}
div.lms-top-page section.tools .tool-typing .tool-typing-sub-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
div.lms-top-page section.tools .tool-typing .tool-typing-sub-lead {
  font-size: 16px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
div.lms-top-page section.tools .tool-typing .tools {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  margin: 0 auto 60px;
}
div.lms-top-page section.tools .tool-typing .tools .tool {
  flex: 0 0 49%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
div.lms-top-page section.tools .tool-typing .tools .tool__image-area {
  flex: 0 0 100%;
  margin-bottom: 18px;
}
div.lms-top-page section.tools .tool-typing .tools .tool__image-area img {
  max-width: 100%;
}
div.lms-top-page section.tools .tool-typing .tools .tool__desc-area {
  flex: 0 0 100%;
  text-align: center;
}
div.lms-top-page section.tools .tool-typing .tools .tool__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
div.lms-top-page section.tools .tool-typing .tools .tool__download {
  text-align: center;
}
div.lms-top-page section.tools .tool-typing .tools .tool__download a {
  display: inline-block;
  border: 2px solid #299fd0;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 160px;
  text-decoration: none;
  color: #299fd0;
  font-weight: 700;
}
div.lms-top-page section.company-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}
div.lms-top-page section.company-section .arschool-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.lms-top-page section.company-section .arschool-info__wrap div.left {
  padding: 0 40px;
  flex: 1 1 600px;
}
div.lms-top-page section.company-section .arschool-info__wrap div.left h3 {
  margin-bottom: 36px;
  color: #ee3d96;
  font-weight: 600;
  text-align: center;
}
div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span {
  display: block;
  font-size: 36px;
}
div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
  font-size: 24px;
  margin-bottom: 8px;
}
div.lms-top-page section.company-section .arschool-info__wrap div.left div.desc {
  font-size: 18px;
}
div.lms-top-page section.company-section .arschool-info__wrap div.right {
  flex: 0 0 min(450px, 35%);
}
div.lms-top-page section.company-section .arschool-info__wrap div.right img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.lms-top-page section.company-section .ceo-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.lms-top-page section.company-section .ceo-info__wrap div.left {
  flex: 0 0 min(400px, 30%);
}
div.lms-top-page section.company-section .ceo-info__wrap div.left .img__wrap {
  text-align: center;
}
div.lms-top-page section.company-section .ceo-info__wrap div.left .img__wrap img {
  width: 240px;
  max-width: 100%;
  border-radius: 500px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.lms-top-page section.company-section .ceo-info__wrap div.right {
  flex: 1 1 500px;
  padding: 0 40px;
}
div.lms-top-page section.company-section .ceo-info__wrap div.right h3 {
  margin-bottom: 36px;
  flex: 1 1 300px;
  color: #000;
  font-weight: 600;
  text-align: left;
}
div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span {
  display: inline-block;
  font-size: 36px;
}
div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
  font-size: 24px;
  margin-right: 16px;
}
div.lms-top-page section.company-section .ceo-info__wrap div.right div.desc {
  font-size: 18px;
}
div.lms-top-page section.company-section .outline__wrap .outline-area {
  display: inline-block;
  background: #ee3d96;
  width: 690px;
  padding: 48px 0 40px 70px;
  border-radius: 20px;
}
div.lms-top-page section.company-section .outline__wrap .outline-area img.company-logo {
  display: inline-block;
  padding-left: 100px;
  width: 280px;
  margin-bottom: 30px;
}
div.lms-top-page section.company-section .outline__wrap .outline-area dl {
  display: flex;
  width: 400px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #f878b8;
  margin-bottom: 18px;
}
div.lms-top-page section.company-section .outline__wrap .outline-area dl dt {
  flex: 0 0 100px;
  text-align: left;
  font-weight: 600;
}
div.lms-top-page section.company-section .outline__wrap .outline-area dl dd {
  margin-bottom: 6px;
  font-weight: 400;
}
div.lms-top-page section.company-section .outline__wrap .outline-area dl a.company-link {
  color: #fff;
  text-decoration: none;
}
div.lms-top-page section.company-section .outline__wrap .outline-area dl a.company-link i {
  font-size: 80%;
  position: relative;
  top: -6px;
  margin-left: 4px;
}
div.lms-top-page section.company-section .outline__wrap .map-area {
  display: inline-block;
  width: 600px;
  height: 380px;
  margin-left: -180px;
  border-radius: 20px;
  position: relative;
  top: 30px;
}
div.lms-top-page section.company-section .outline__wrap #access-map-office {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.lms-top-page section.company-section .arschool-info__wrap div.left {
    padding: 0;
    margin-right: 2rem;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left h3 {
    margin-bottom: 20px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span {
    display: block;
    font-size: 30px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
    margin-bottom: 6px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left div.desc {
    font-size: 16px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 {
    margin-bottom: 24px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 30px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 22px;
    margin-right: 8px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right div.desc {
    font-size: 16px;
  }
  div.lms-top-page section.company-section .outline__wrap {
    text-align: center;
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area {
    text-align: left;
    width: 52vw;
    padding: 20px 0 20px 20px;
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 70px;
    width: 200px;
    margin-bottom: 20px;
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area dl {
    display: block;
    font-size: 12px;
  }
  div.lms-top-page section.company-section .outline__wrap .map-area {
    display: inline-block;
    width: 52vw;
    height: 420px;
    margin-left: -11vw;
    border-radius: 20px;
    position: relative;
    top: 30px;
  }
  div.lms-top-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  div.lms-top-page section.company-section {
    width: auto;
    padding: 30px 0 4rem;
    display: block;
  }
  div.lms-top-page section.company-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap {
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left {
    flex: 0 0 100%;
    padding: 0;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span {
    font-size: 32px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
  }
  div.lms-top-page section.company-section .arschool-info__wrap div.right {
    flex: 0 0 100%;
  }
  div.lms-top-page section.company-section .ceo-info__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.left {
    flex: 0 0 100%;
    order: 2;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right {
    flex: 0 0 100%;
    order: 1;
    padding: 0;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 28px;
  }
  div.lms-top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 18px;
    margin-right: 8px;
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area {
    width: 100%;
    padding: 24px 0 24px 0;
    border-radius: 10px;
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 0;
    width: 200px;
    max-width: 50vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  div.lms-top-page section.company-section .outline__wrap .outline-area dl {
    width: auto;
    display: block;
    margin: 0 2vw 1rem;
  }
  div.lms-top-page section.company-section .outline__wrap .map-area {
    width: 100%;
    margin-left: 0;
    top: -15px;
  }
  div.lms-top-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  div.lms-top-page section.feature .feature__lead2 {
    margin-bottom: 36px;
    font-size: 16px;
  }
  div.lms-top-page section.feature .feature__lead2 p {
    text-align: center;
    margin-bottom: 4px;
  }
  div.lms-top-page section.feature .feature__service div.feature__service-list a {
    margin: 0 6px;
    padding: 0px 12px;
    font-size: 17px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv {
    height: 360px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-left {
    flex: 0 0 300px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-left img {
    width: 260px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right {
    flex: 0 0 460px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-who {
    font-size: 20px;
    top: 30px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle {
    right: unset;
    left: 250px;
    top: 25px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure {
    position: relative;
    width: 100px;
    height: 100px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure::after {
    width: 102px;
    height: 102px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure .text-circle-inner {
    position: absolute;
    font-size: 20px;
    line-height: 26px;
    width: 100px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-main {
    top: 130px;
    font-size: 24px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure {
    top: 210px;
    width: 400px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item {
    height: 105px;
    font-size: 23px;
    padding: 16px 22px;
    line-height: 33px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item--center {
    line-height: 65px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item + .text-figure-item::before {
    left: -34px;
    width: 44px;
    height: 44px;
    line-height: 38px;
  }
  div.lms-top-page section.arstudio section.features-new .top-section-title {
    margin-bottom: 150px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items {
    display: flex;
    flex-wrap: wrap;
    max-width: 1125px;
    margin: auto;
    justify-content: space-between;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
    width: 355px;
    height: 405px;
    border: 3px solid #3597C0;
    border-radius: 7px;
    position: relative;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 100px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img {
    max-width: 315px;
    position: absolute;
    top: -20%;
    left: 17px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img img {
    width: 100%;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__top {
    position: absolute;
    font-size: 24px;
    top: 120px;
    font-weight: 600;
    width: 315px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__txt {
    position: absolute;
    width: 315px;
    top: 210px;
    text-align: left;
    font-size: 18px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn {
    position: absolute;
    width: 280px;
    height: 62px;
    background-color: #ffffff;
    border-radius: 32px;
    border: 2px solid #3597C0;
    bottom: -31px;
    left: 37.5px;
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    line-height: 20px;
    cursor: pointer;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn:hover {
    opacity: 1;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn:hover .feature-item__btn-txt {
    opacity: 0.7;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn i {
    right: 15px;
    position: absolute;
    top: 20px;
    color: #3597C0;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn-txt {
    display: block;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn-small {
    display: block;
    font-size: 12px;
    line-height: 26px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video {
    text-align: center;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video iframe {
    width: 560px;
    height: 315px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) and (max-width: 1149px) {
  div.lms-top-page section.arstudio section.features-new .feature-items {
    justify-content: center;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
    margin: 0 30px 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) and (max-width: 767px) {
  div.lms-top-page section.arstudio section.features-new .top-section-title {
    margin-bottom: 100px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item {
    margin: 0 0 170px;
    width: 335px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item:last-child {
    margin-bottom: 100px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__img {
    left: 7px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__top {
    width: 295px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__txt {
    width: 295px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-items .feature-item__btn {
    left: 27.5px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video {
    margin-bottom: 70px;
  }
  div.lms-top-page section.arstudio section.features-new .feature-video iframe {
    width: 365px;
    height: 200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  div.lms-top-page section.arstudio div.to-detail {
    text-align: center;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn {
    display: inline-block;
    position: relative;
    width: 420px;
    border: 3px solid #53b77f;
    border-radius: 18px;
    text-decoration: none;
    padding: 6px 0;
    background-color: #53b77f;
    color: #fff;
    filter: drop-shadow(0px 3px 4px rgba(66, 75, 105, 0.22));
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead {
    display: block;
    color: #fff;
    font-size: 20px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead .emp {
    font-size: 34px;
    margin-left: 4px;
    margin-right: 4px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.main-lead {
    display: block;
    color: #E23434;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn i.bi {
    color: #E23434;
    color: #fff;
    position: absolute;
    font-size: 40px;
    top: 40px;
    right: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  div.lms-top-page section.instructor div.instructor-contents {
    max-width: 96vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  div.lms-top-page section.tools .tool-content {
    max-width: 96vw;
  }
  div.lms-top-page section.tools .tool-material .left {
    flex: 0 0 330px;
  }
  div.lms-top-page section.tools .tool-material .right {
    padding-left: 18px;
  }
  div.lms-top-page section.tools .tool-material div.to-detail {
    padding-left: 40px;
  }
  div.lms-top-page section.tools .tool-typing .tool-typing-sub-heading {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  div.lms-top-page section.tools .tool-typing .tool-typing-sub-lead {
    font-size: 16px;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  div.lms-top-page section.tools .tool-typing .tools {
    display: flex;
    flex-wrap: wrap;
    width: 700px;
    margin: 0 auto 60px;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool {
    flex: 0 0 49%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__image-area {
    flex: 0 0 100%;
    margin-bottom: 18px;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__image-area img {
    max-width: 100%;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__desc-area {
    flex: 0 0 100%;
    text-align: center;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__download {
    text-align: center;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__download a {
    display: inline-block;
    border: 2px solid #299fd0;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 160px;
    text-decoration: none;
    color: #299fd0;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  div.lms-top-page > section {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  div.lms-top-page h2.section-heading {
    margin-bottom: 32px;
  }
  div.lms-top-page h2.section-heading span.sub-lead {
    font-size: 20px;
  }
  div.lms-top-page h2.section-heading span.main-lead {
    font-size: 28px;
  }
  div.lms-top-page section.feature h1 {
    font-size: 24px;
    margin-bottom: 32px;
  }
  div.lms-top-page section.feature h1 .arschool-text {
    font-size: 120%;
    margin-right: 3px;
  }
  div.lms-top-page section.feature h1 .kyositsu-text {
    font-size: 120%;
    margin-left: 3px;
  }
  div.lms-top-page section.feature .feature__lead1 {
    font-size: 20px;
  }
  div.lms-top-page section.feature .feature__lead1-text {
    display: none;
  }
  div.lms-top-page section.feature .feature__lead2 p {
    text-align: left;
    padding-left: 6px;
    padding-right: 6px;
  }
  div.lms-top-page section.feature .feature__service div.feature__service-list a {
    margin-bottom: 20px;
    flex: 0 0 44%;
    padding: 0px 6px;
    display: block;
    font-size: 14px;
  }
  div.lms-top-page section.arstudio h2.section-heading span.sub-lead {
    font-size: 14px;
  }
  div.lms-top-page section.arstudio h2.section-heading span.main-lead {
    font-size: 22px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv {
    display: block;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-left img {
    top: 0;
    transform: translateY(0);
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right {
    flex: 0 0 480px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text {
    width: 355px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-who {
    font-size: 18px;
    top: 118px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle {
    top: 80px;
    right: 15px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure {
    width: 93px;
    height: 93px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure::after {
    width: 96px;
    height: 96px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-circle .text-circle-figure .text-circle-inner {
    font-size: 20px;
    line-height: 25px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-main {
    font-size: 22px;
    top: 195px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure {
    top: 250px;
    width: 355px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item {
    height: 64px;
    font-size: 20px;
    padding: 5px 20px;
    line-height: 24px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item--center {
    line-height: 45px;
  }
  div.lms-top-page section.arstudio div.arstudio__kv-right .text .text-figure .text-figure-item + .text-figure-item::before {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 24px;
    top: 14px;
    left: -24px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn {
    width: 90vw;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead {
    font-size: 16px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.sub-lead .emp {
    font-size: 28px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn span.main-lead {
    font-size: 30px;
  }
  div.lms-top-page section.arstudio div.to-detail a.to-detail-btn i.bi {
    font-size: 22px;
    top: 30px;
    right: 3px;
  }
  div.lms-top-page section.instructor div.section-lead, div.lms-top-page section.tech div.section-lead, div.lms-top-page section.tools div.section-lead {
    text-align: left;
    font-size: 16px;
    margin-bottom: 28px;
  }
  div.lms-top-page section.instructor div.supplement, div.lms-top-page section.tech div.supplement, div.lms-top-page section.tools div.supplement {
    text-align: left;
    font-size: 16px;
  }
  div.lms-top-page section.instructor div.instructor-contents {
    width: auto;
  }
  div.lms-top-page section.instructor div.instructor-contents div.instructor-course {
    display: block;
  }
  div.lms-top-page section.instructor div.instructor-contents div.instructor-course div.course-title {
    margin: 16px 16px;
  }
  div.lms-top-page section.instructor div.instructor-contents div.instructor-course div.course-text {
    padding: 0 0 0 20px;
  }
  div.lms-top-page section.tech div.tech-contents ul.tech-features {
    width: auto;
  }
  div.lms-top-page section.tech div.tech-contents ul.tech-features li {
    text-indent: -1em;
    margin: 0 0 14px;
    padding: 0 0 0 2em;
    font-size: 16px;
  }
  div.lms-top-page section.tech div.tech-contents ul.tech-features li:before {
    margin-right: 8px;
  }
  div.lms-top-page section.tools .tool-content {
    width: auto;
  }
  div.lms-top-page section.tools .tool-content h3 {
    font-size: 22px;
  }
  div.lms-top-page section.tools .tool-material {
    display: block;
  }
  div.lms-top-page section.tools .tool-material .left {
    margin-bottom: 16px;
    text-align: center;
  }
  div.lms-top-page section.tools .tool-material .left img {
    max-width: 90%;
  }
  div.lms-top-page section.tools .tool-material .right {
    padding-left: 0;
  }
  div.lms-top-page section.tools .tool-material div.to-detail {
    text-align: center;
    padding-left: 0px;
  }
  div.lms-top-page section.tools .tool-typing .tool-typing-sub-lead {
    width: auto;
    padding: 0 16px;
  }
  div.lms-top-page section.tools .tool-typing .tools {
    display: block;
    width: auto;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool {
    margin-bottom: 36px;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__image-area {
    text-align: center;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__image-area img {
    max-width: 80%;
  }
  div.lms-top-page section.tools .tool-typing .tools .tool__title {
    font-size: 18px;
  }
}
#eye-catch {
  /* --- 全体のBOX定義 ---------------------------------------- */
  /* --- 背景の指定 ------------------------------------------- */
}
#eye-catch .box {
  position: relative;
  width: 100%;
  height: 250px;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
#eye-catch .box .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
}
#eye-catch .box .src4 {
  background-image: url(/img/top/037.jpg);
  /* 背景の画像を指定 */
  animation-delay: 15s;
  background-size: cover;
}

/* -----------
TOPページ eye-catch
----------- */
#eye-catch .text {
  position: relative;
  font-weight: 600;
}
#eye-catch .text .text-who {
  position: absolute;
  font-size: 25px;
  left: 0;
  top: 75px;
}
#eye-catch .text .text-who::after {
  content: url(/img/top/new-tob/under-line.svg);
  display: inherit;
}
#eye-catch .text .text-circle {
  position: absolute;
  text-align: center;
  right: 0;
  top: 50px;
}
#eye-catch .text .text-circle .text-circle-figure {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
}
#eye-catch .text .text-circle .text-circle-figure::after {
  content: "";
  position: relative;
  top: -5px;
  right: 5px;
  display: inline-block;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 3px solid #3597C0;
}
#eye-catch .text .text-circle .text-circle-figure .text-circle-inner {
  position: absolute;
  font-size: 24px;
  line-height: 30px;
  color: #3597C0;
  width: 120px;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#eye-catch .text .text-main {
  position: absolute;
  top: 185px;
  left: 0;
  font-size: 30px;
}
#eye-catch .text .text-main .text-main-line {
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
#eye-catch .text .text-figure {
  position: absolute;
  top: 270px;
  left: 0;
  display: flex;
  width: 480px;
  justify-content: space-between;
}
#eye-catch .text .text-figure .text-figure-item {
  background-color: #509DCB;
  height: 105px;
  font-size: 28px;
  color: #ffffff;
  border-radius: 7px;
  border: 3px solid #ffffff;
  text-align: center;
  padding: 18px 25px;
  line-height: 33px;
  position: relative;
}
#eye-catch .text .text-figure .text-figure-item--center {
  line-height: 65px;
}
#eye-catch .text .text-figure .text-figure-item + .text-figure-item::before {
  content: "＋";
  color: #3597C0;
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  top: 27px;
  left: -37px;
  width: 50px;
  height: 50px;
  line-height: 44px;
  border: 3px solid #3597c0;
}
#eye-catch .kv-navi-btn-area {
  text-align: center;
}
#eye-catch .kv-navi-btn-area a.btn-trial {
  display: block;
  position: relative;
  width: 258px;
  height: 62px;
  padding: 0;
  border-radius: 31px;
  background-color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
  color: #cf1313;
  border: 2px solid #cf1313;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.3);
}
#eye-catch .kv-navi-btn-area a.btn-trial:hover {
  opacity: 1;
}
#eye-catch .kv-navi-btn-area a.btn-trial:hover span.text {
  opacity: 0.7;
}
#eye-catch .kv-navi-btn-area a.btn-trial span.text {
  position: relative;
  top: -2px;
  line-height: 44px;
  display: inline-block;
  width: 258px;
}
#eye-catch .kv-navi-btn-area a.btn-trial i.bi-chevron-right {
  right: 10px;
  bottom: -3px;
}
#eye-catch .kv-navi-btn-area a.btn-inquiry {
  color: #000000;
  font-size: 18px;
}
#eye-catch .kv-navi-btn-area i.bi-chevron-right {
  position: absolute;
}

@media screen and (min-width: 768px) {
  #eye-catch {
    height: calc(100vh - 101px);
    min-height: calc(14vw + 400px);
    display: flex;
    position: relative;
  }
  #eye-catch .left {
    background-color: #d3edfb;
    flex: 0 0 47%;
    background-image: url(/img/top/edu-kv-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: right;
  }
  #eye-catch .left .left-container {
    height: 100%;
    max-height: 670px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  #eye-catch .left .text-area {
    width: 480px;
    text-align: center;
    margin: auto;
  }
  #eye-catch .left .kv-navi-btn-area {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  #eye-catch .left .kv-navi-btn-area .pc-none {
    display: none;
  }
  #eye-catch .right {
    flex: 0 0 53%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  #eye-catch .right .box img {
    object-fit: contain;
    width: 100%;
  }
  #eye-catch .right img.kv-laptop {
    position: absolute;
    left: -80px;
    bottom: 10px;
    z-index: 1;
  }
  #eye-catch .right img.kv-tablet {
    position: absolute;
    left: 170px;
    bottom: -10px;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  #eye-catch {
    height: 500px;
    position: relative;
    display: flex;
  }
  #eye-catch .left {
    flex: 0 0 50%;
    position: relative;
    background-image: url(/img/top/edu-kv-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: right;
  }
  #eye-catch .left .text-area {
    width: 384px;
  }
  #eye-catch .left .text {
    width: 384px;
  }
  #eye-catch .left .text .text-who {
    font-size: 20px;
  }
  #eye-catch .left .text .text-main {
    top: 170px;
    font-size: 24px;
  }
  #eye-catch .left .text .text-figure {
    width: 384px;
  }
  #eye-catch .left .text .text-figure .text-figure-item {
    height: 100px;
    font-size: 24px;
    line-height: 30px;
    padding: 20px 15px;
  }
  #eye-catch .left .text .text-figure .text-figure-item--center {
    line-height: 64px;
  }
  #eye-catch .right {
    flex: 0 0 50%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #eye-catch {
    height: 100vh;
    height: 700px;
    margin-top: -60px;
  }
  #eye-catch .left {
    height: 100%;
    position: relative;
    background-image: url(/img/top/edu-kv-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }
  #eye-catch .left .text-area {
    width: 355px;
    margin: auto;
    text-align: center;
  }
  #eye-catch .left .text-area .text {
    width: 355px;
  }
  #eye-catch .left .text-area .text .text-who {
    font-size: 18px;
    top: 118px;
  }
  #eye-catch .left .text-area .text .text-circle {
    top: 80px;
    right: 15px;
  }
  #eye-catch .left .text-area .text .text-circle .text-circle-figure {
    width: 93px;
    height: 93px;
  }
  #eye-catch .left .text-area .text .text-circle .text-circle-figure::after {
    width: 96px;
    height: 96px;
  }
  #eye-catch .left .text-area .text .text-circle .text-circle-figure .text-circle-inner {
    font-size: 20px;
    line-height: 25px;
  }
  #eye-catch .left .text-area .text .text-main {
    font-size: 22px;
    top: 195px;
  }
  #eye-catch .left .text-area .text .text-figure {
    top: 250px;
    width: 355px;
  }
  #eye-catch .left .text-area .text .text-figure .text-figure-item {
    height: 64px;
    font-size: 20px;
    padding: 5px 20px;
    line-height: 24px;
  }
  #eye-catch .left .text-area .text .text-figure .text-figure-item--center {
    line-height: 45px;
  }
  #eye-catch .left .text-area .text .text-figure .text-figure-item + .text-figure-item::before {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 24px;
    top: 14px;
    left: -24px;
  }
  #eye-catch .left .kv-navi-btn-area {
    position: absolute;
    top: 350px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
  }
  #eye-catch .left .kv-navi-btn-area a {
    margin-left: 0;
    display: block;
    width: 170px;
    height: 55px;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 55px;
  }
  #eye-catch .left .kv-navi-btn-area a span.text {
    width: 170px;
  }
  #eye-catch .left .kv-navi-btn-area a i.bi-chevron-right {
    position: absolute;
    right: 5px;
  }
  #eye-catch .left .kv-navi-btn-area a.btn-inquiry {
    display: block;
    position: relative;
    padding: 0;
    background-color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #2480a7;
    border: 2px solid #2480a7;
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.3);
  }
  #eye-catch .left .kv-navi-btn-area .sp-none {
    display: none;
  }
  #eye-catch .right .box {
    display: none;
  }
  #eye-catch .right img.kv-laptop {
    width: 100vw;
    position: absolute;
    left: -10vw;
    top: 440px;
  }
  #eye-catch .right img.kv-tablet {
    width: 50vw;
    position: absolute;
    right: 3vw;
    top: 550px;
  }
}
h2.top-section-title {
  margin-bottom: 60px;
  height: auto;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
}
h2.top-section-title > span {
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  top: 16px;
}
h2.top-section-title .small {
  font-size: 80%;
  line-height: 0.7em;
}

@media screen and (max-width: 767px) {
  h2.top-section-title > span {
    font-size: 24px;
  }
}
hr.section-separator {
  border-top: 1px solid #E1E1E1;
  margin: 0;
}

div.top-page {
  /**
    アルスタジオとは
     */
}
div.top-page > section {
  padding-top: 80px;
  padding-bottom: 120px;
}
div.top-page div.h2-comment {
  margin-bottom: 6px;
  position: relative;
  text-align: center;
}
div.top-page div.h2-comment span {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 20.5px;
  background-color: #f7b500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
div.top-page div.h2-comment:before {
  display: inline-block;
  position: absolute;
  content: "";
  background-image: url(/img/top/orange-comment.png);
  background-position: bottom;
  background-size: 22px 32px;
  bottom: -10px;
  left: calc(50% - 11px);
  width: 22px;
  height: 32px;
}
div.top-page section.skill-assessment-banner-area {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 0;
}
div.top-page section.skill-assessment-banner-area .img-skill {
  display: inline-block;
}
div.top-page section.skill-assessment-banner-area .img-skill img {
  width: 700px;
  max-width: 85vw;
}
@media screen and (max-width: 767px) {
  div.top-page section.skill-assessment-banner-area {
    margin-bottom: 20px;
  }
}
div.top-page section.about-arspark {
  display: flex;
  align-items: center;
}
div.top-page section.about-arspark h2.left {
  flex: 0 0 40%;
  padding-left: 100px;
  font-weight: 700;
}
div.top-page section.about-arspark h2.left img {
  width: 210px;
}
div.top-page section.about-arspark div.right {
  padding-right: 100px;
}
div.top-page section.about-arspark div.right h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.7;
}
div.top-page section.about-arspark div.right .desc {
  font-size: 16px;
  margin-bottom: 1rem;
}
div.top-page section.about-arspark div.right dl {
  font-size: 14px;
  margin-bottom: 0;
}
div.top-page section.about-arspark div.right dl dt {
  display: inline-block;
  color: #fff;
  background: #299fd0;
  font-weight: 400;
  padding: 4px;
  margin-right: 0.2rem;
}
div.top-page section.about-arspark div.right dl dd {
  display: inline-block;
  margin-right: 1.2rem;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.top-page section.about-arspark {
    display: block;
  }
  div.top-page section.about-arspark h2.left {
    text-align: center;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  div.top-page section.about-arspark div.right {
    padding-right: 0;
  }
  div.top-page section.about-arspark div.right h3 {
    text-align: center;
  }
  div.top-page section.about-arspark div.right dl {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.about-arspark {
    display: block;
  }
  div.top-page section.about-arspark h2.left {
    padding-left: 0px;
    text-align: center;
    margin-bottom: 2rem;
  }
  div.top-page section.about-arspark div.right {
    padding-right: 0px;
    margin-bottom: 1rem;
  }
  div.top-page section.about-arspark div.right h3 {
    font-size: 15px;
  }
  div.top-page section.about-arspark div.right dl {
    font-size: 14px;
    margin-bottom: 0;
    padding-left: 0.5rem;
  }
  div.top-page section.about-arspark div.right dl dt {
    width: 20%;
    text-align: center;
  }
  div.top-page section.about-arspark div.right dl dd {
    width: 70%;
    margin-right: 0;
  }
}
div.top-page section.about-table .table-area {
  margin-bottom: 60px;
}
div.top-page section.about-table .table-area .arspark-table {
  width: 767px;
  text-align: center;
  font-weight: 600;
  margin: auto;
}
div.top-page section.about-table .table-area .arspark-table tr {
  border-bottom: 1px solid #707070;
}
div.top-page section.about-table .table-area .arspark-table tr:first-child td {
  border-right: none;
}
div.top-page section.about-table .table-area .arspark-table tr:last-child {
  border-bottom: none;
}
div.top-page section.about-table .table-area .arspark-table tr td {
  border-right: 1px solid #707070;
  width: 214px;
}
div.top-page section.about-table .table-area .arspark-table tr td:first-child {
  width: 125px;
}
div.top-page section.about-table .table-area .arspark-table tr td:last-child {
  border-right: none;
}
div.top-page section.about-table .table-area .arspark-table__title {
  font-size: 16px;
  padding: 20px 0;
  line-height: 18px;
}
div.top-page section.about-table .table-area .arspark-table__title--small {
  font-size: 12px;
}
div.top-page section.about-table .table-area .arspark-table__title--first {
  padding: 30px 0;
}
div.top-page section.about-table .table-area .arspark-table__ars {
  font-size: 18px;
}
div.top-page section.about-table .table-area .arspark-table__ars--big {
  color: #cf1313;
  font-size: 24px;
  margin: 0 5px;
}
div.top-page section.about-table .table-area .arspark-table__scratch {
  font-size: 16px;
  color: #767676;
}
div.top-page section.about-table .table-area .arspark-table__scratch--title {
  font-size: 18px;
}
div.top-page section.about-table .table-area .arspark-table__other {
  font-size: 16px;
  color: #767676;
}
div.top-page section.about-table .table-area .arspark-table__other--title {
  font-size: 16px;
  line-height: 18px;
}
div.top-page section.about-table .table-area .arspark-table__logo {
  width: 70%;
  padding-bottom: 10px;
}
div.top-page section.about-table .table-area .arspark-table__scratch-desc {
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
}
div.top-page section.about-table .table-area .arspark-table__scratch-desc-left {
  font-size: 13px;
  line-height: 15px;
  margin-right: 5px;
}
div.top-page section.about-table .table-area .arspark-table__scratch-desc-right {
  font-size: 28px;
  color: #cf1313;
}
div.top-page section.about-table .table-area .arspark-table__scratch-desc-bottom {
  font-size: 13px;
}
div.top-page section.about-table .scratch-area {
  width: 767px;
  background-color: #FFFDE2;
  padding: 15px 45px;
  margin: auto;
}
div.top-page section.about-table .scratch-area__title {
  font-size: 18px;
  margin-bottom: 5px;
}
div.top-page section.about-table .scratch-area__txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  div.top-page section.about-table .table-area {
    margin-bottom: 40px;
  }
  div.top-page section.about-table .table-area .arspark-table {
    width: 367px;
  }
  div.top-page section.about-table .table-area .arspark-table tr td:first-child {
    width: 45px;
  }
  div.top-page section.about-table .table-area .arspark-table tr td:nth-child(2) {
    width: 203px;
  }
  div.top-page section.about-table .table-area .arspark-table tr td:nth-child(3) {
    width: 119px;
    border-right: none;
  }
  div.top-page section.about-table .table-area .arspark-table tr td.arspark-table__ars--first {
    border-right: none;
  }
  div.top-page section.about-table .table-area .arspark-table__other {
    display: none;
  }
  div.top-page section.about-table .table-area .arspark-table__title--small {
    display: none;
  }
  div.top-page section.about-table .scratch-area {
    width: 355px;
    padding: 15px 10px;
  }
}
div.top-page section.features div.item {
  display: flex;
  margin-bottom: 4rem;
  justify-content: space-evenly;
}
div.top-page section.features div.item div.img-area {
  flex: 0 0 400px;
}
div.top-page section.features div.item div.img-area img {
  max-width: 100%;
}
div.top-page section.features div.item div.text-area {
  flex: 0 0 600px;
}
div.top-page section.features div.item div.text-area h3 {
  position: relative;
  font-weight: 600;
}
div.top-page section.features div.item div.text-area h3 span.item-number {
  display: inline-block;
  background: #ED8936;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 46px;
  line-height: 40px;
  border: 3px solid #fff;
  text-align: center;
}
div.top-page section.features div.item div.text-area h3 span.item-number.n2 {
  background: #cf1313;
}
div.top-page section.features div.item div.text-area h3 span.item-number.n3 {
  background: #55658f;
}
div.top-page section.features div.item div.text-area h3 span.item-number.n4 {
  background: #75d5c1;
}
div.top-page section.features div.item div.text-area h3 span.item-number.n5 {
  background: #ed3167;
}
div.top-page section.features div.item div.text-area h3 span.item-number.n6 {
  background: #a27f13;
}
div.top-page section.features div.item div.text-area div.desc {
  font-size: 20px;
  line-height: 1.8;
}
div.top-page section.features div.item div.text-area div.desc .emp {
  color: #cf1313;
  font-weight: 700;
}
div.top-page section.features div.item:nth-child(2n) div.img-area {
  order: 2;
}
div.top-page section.features div.item:nth-child(2n) div.text-area {
  order: 1;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.top-page section.features div.item div.img-area {
    flex: 0 0 300px;
  }
  div.top-page section.features div.item div.img-area img {
    max-width: 100%;
  }
  div.top-page section.features div.item div.text-area {
    flex: 1 1 auto;
  }
  div.top-page section.features div.item div.text-area h3 {
    padding: 0 1rem;
  }
  div.top-page section.features div.item div.text-area div.desc {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.features div.item {
    display: block;
    margin-bottom: 4rem;
  }
  div.top-page section.features div.item div.img-area {
    text-align: center;
    margin-bottom: 1rem;
  }
  div.top-page section.features div.item div.img-area img {
    max-width: 100%;
    width: 80%;
  }
  div.top-page section.features div.item div.text-area h3 {
    font-weight: 600;
    font-size: 21px;
  }
  div.top-page section.features div.item div.text-area h3 span.item-number {
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 46px;
    line-height: 30px;
  }
  div.top-page section.features div.item div.text-area div.desc {
    font-size: 18px;
    line-height: 1.8;
  }
  div.top-page section.features div.item div.text-area div.desc .emp {
    color: #cf1313;
    font-weight: 700;
  }
  div.top-page section.features div.item:nth-child(2n) div.img-area {
    order: 2;
  }
  div.top-page section.features div.item:nth-child(2n) div.text-area {
    order: 1;
  }
}
div.top-page section.features-new .top-section-title {
  margin-bottom: 150px;
}
div.top-page section.features-new .feature-items {
  display: flex;
  flex-wrap: wrap;
  max-width: 1125px;
  margin: auto;
  justify-content: space-between;
}
div.top-page section.features-new .feature-items .feature-item {
  width: 355px;
  height: 405px;
  border: 3px solid #3597C0;
  border-radius: 7px;
  position: relative;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 100px;
}
div.top-page section.features-new .feature-items .feature-item__img {
  max-width: 315px;
  position: absolute;
  top: -20%;
  left: 17px;
}
div.top-page section.features-new .feature-items .feature-item__img img {
  width: 100%;
}
div.top-page section.features-new .feature-items .feature-item__top {
  position: absolute;
  font-size: 24px;
  top: 120px;
  font-weight: 600;
  width: 315px;
}
div.top-page section.features-new .feature-items .feature-item__txt {
  position: absolute;
  width: 315px;
  top: 210px;
  text-align: left;
  font-size: 18px;
}
div.top-page section.features-new .feature-items .feature-item__btn {
  position: absolute;
  width: 280px;
  height: 62px;
  background-color: #ffffff;
  border-radius: 32px;
  border: 2px solid #3597C0;
  bottom: -31px;
  left: 37.5px;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
}
div.top-page section.features-new .feature-items .feature-item__btn:hover {
  opacity: 1;
}
div.top-page section.features-new .feature-items .feature-item__btn:hover .feature-item__btn-txt {
  opacity: 0.7;
}
div.top-page section.features-new .feature-items .feature-item__btn i {
  right: 15px;
  position: absolute;
  top: 20px;
  color: #3597C0;
}
div.top-page section.features-new .feature-items .feature-item__btn-txt {
  display: block;
}
div.top-page section.features-new .feature-items .feature-item__btn-small {
  display: block;
  font-size: 12px;
  line-height: 26px;
}
div.top-page section.features-new .feature-video {
  text-align: center;
}
div.top-page section.features-new .feature-video iframe {
  width: 560px;
  height: 315px;
}
@media screen and (max-width: 1149px) {
  div.top-page section.features-new .feature-items {
    justify-content: center;
  }
  div.top-page section.features-new .feature-items .feature-item {
    margin: 0 30px 170px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.features-new .top-section-title {
    margin-bottom: 100px;
  }
  div.top-page section.features-new .feature-items .feature-item {
    margin: 0 0 170px;
    width: 335px;
  }
  div.top-page section.features-new .feature-items .feature-item:last-child {
    margin-bottom: 100px;
  }
  div.top-page section.features-new .feature-items .feature-item__img {
    left: 7px;
  }
  div.top-page section.features-new .feature-items .feature-item__top {
    width: 295px;
  }
  div.top-page section.features-new .feature-items .feature-item__txt {
    width: 295px;
  }
  div.top-page section.features-new .feature-items .feature-item__btn {
    left: 27.5px;
  }
  div.top-page section.features-new .feature-video {
    margin-bottom: 70px;
  }
  div.top-page section.features-new .feature-video iframe {
    width: 365px;
    height: 200px;
  }
}
div.top-page section.member {
  background-image: image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  background-image: -webkit-image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
}
div.top-page section.member .member-content {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
}
div.top-page section.member .member-content .txt-area {
  width: 52%;
  margin-right: 8%;
  font-size: 18px;
  text-align: center;
}
div.top-page section.member .member-content .txt-area__content {
  margin-bottom: 30px;
  text-align: left;
}
div.top-page section.member .member-content .txt-area__btn {
  display: inline-block;
  position: relative;
  width: 280px;
  height: 62px;
  background-color: #ffffff;
  border-radius: 32px;
  border: 2px solid #3597C0;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  line-height: 62px;
  text-align: center;
  cursor: pointer;
}
div.top-page section.member .member-content .txt-area__btn:hover {
  opacity: 1;
}
div.top-page section.member .member-content .txt-area__btn:hover .txt-area__btn-txt {
  opacity: 0.7;
}
div.top-page section.member .member-content .txt-area__btn i {
  position: absolute;
  right: 15px;
  color: #3597C0;
}
div.top-page section.member .member-content .pic-area {
  width: 40%;
}
div.top-page section.member .member-content .pic-area img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.top-page section.member h2.top-section-title {
    line-height: 30px;
  }
  div.top-page section.member h2.top-section-title span {
    top: 6px;
  }
  div.top-page section.member .member-content {
    display: block;
  }
  div.top-page section.member .member-content .pic-area {
    width: 100%;
    margin-bottom: 30px;
  }
  div.top-page section.member .member-content .txt-area {
    width: 100%;
    margin-right: 0;
  }
}
div.top-page section.our-clients div.item {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
div.top-page section.our-clients div.item div.img-area {
  flex: 0 0 300px;
}
div.top-page section.our-clients div.item div.img-area img {
  max-width: 100%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
div.top-page section.our-clients div.item div.text-area {
  flex: 0 0 700px;
  padding-left: 3rem;
}
div.top-page section.our-clients div.item div.text-area h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
div.top-page section.our-clients div.item div.text-area ul.desc {
  padding-left: 0;
}
div.top-page section.our-clients div.item div.text-area ul.desc li {
  font-size: 18px;
  margin-bottom: 0.5rem;
  list-style-type: none;
  padding-left: 1em;
  text-indent: -0.5em;
}
div.top-page section.our-clients div.item div.text-area ul.desc li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  color: #299fd0;
  content: "";
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.top-page section.our-clients div.item {
    justify-content: center;
  }
  div.top-page section.our-clients div.item div.img-area {
    flex: 0 0 32%;
  }
  div.top-page section.our-clients div.item div.text-area {
    flex: 0 0 63%;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.our-clients div.item {
    display: block;
  }
  div.top-page section.our-clients div.item div.img-area {
    margin-bottom: 1rem;
    text-align: center;
  }
  div.top-page section.our-clients div.item div.img-area img {
    width: 80%;
  }
  div.top-page section.our-clients div.item div.text-area {
    padding-left: 0;
  }
  div.top-page section.our-clients div.item div.text-area h3 {
    font-size: 21px;
  }
  div.top-page section.our-clients div.item div.text-area ul.desc {
    padding-left: 0;
  }
  div.top-page section.our-clients div.item div.text-area ul.desc li {
    font-size: 18px;
  }
}
div.top-page section.event {
  background: #f5eed6;
}
div.top-page section.event > div {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.top-page section.event > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.event > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
div.top-page section.event .event-visual-pc__img {
  max-width: 100%;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  div.top-page section.event .event-visual-pc__img {
    display: none;
  }
}
div.top-page section.event .event-visual-sp__img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  div.top-page section.event .event-visual-sp__img {
    display: none;
  }
}
div.top-page section.event .event-content {
  text-align: center;
}
div.top-page section.event .event-content .event-top {
  font-size: 18px;
}
div.top-page section.event .event-content .event-top__txt {
  margin-bottom: 40px;
}
div.top-page section.event .event-containers {
  margin-bottom: 120px;
}
div.top-page section.event .event-containers .event-container {
  width: 55%;
  margin: 0 auto 50px;
  /* 概要 */
}
div.top-page section.event .event-containers .event-container__top {
  font-size: 20px;
  line-height: 44px;
  border-bottom: 2px solid #000000;
  font-weight: 600;
}
div.top-page section.event .event-containers .event-container__desc {
  line-height: 60px;
  border-bottom: 0.5px solid #000000;
  display: flex;
  text-align: left;
  font-size: 18px;
}
div.top-page section.event .event-containers .event-container__desc:last-child {
  border: none;
}
div.top-page section.event .event-containers .event-container__question {
  display: inline-block;
  width: 40%;
  font-weight: 600;
}
div.top-page section.event .event-containers .event-container__question--tight {
  line-height: 24px;
  margin-top: 18px;
}
div.top-page section.event .event-containers .event-container__answer {
  display: inline-block;
  width: 60%;
}
div.top-page section.event .event-containers .event-container__answer--tight {
  line-height: 24px;
  margin: 18px 0;
}
div.top-page section.event .event-containers .event-container__answer--small {
  display: inline;
  font-size: 14px;
}
div.top-page section.event .event-containers .event-container__button {
  display: block;
  width: 55%;
  margin: auto;
  max-width: 250px;
  height: 65px;
  background-color: #c1272d;
  color: white;
  border-radius: 7px;
  line-height: 65px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 15px;
}
div.top-page section.event .event-contact {
  font-size: 18px;
}
div.top-page section.event .event-contact__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
div.top-page section.event .event-contact__txt {
  margin-bottom: 30px;
}
div.top-page section.event .event-contact__button-area {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
div.top-page section.event .event-contact__button {
  width: 280px;
  height: 67px;
  margin: 0 15px;
  background-color: #ffffff;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
}
div.top-page section.event .event-contact__button--mail {
  color: #cf1313;
  font-size: 20px;
  border: solid 3px #cf1313;
  line-height: 67px;
  display: flex;
  justify-content: center;
}
div.top-page section.event .event-contact__button--tel {
  color: #299fd0;
  border: solid 3px #299fd0;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  div.top-page section.event .event-contact__button--tel.sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.event .event-contact__button--tel.pc-only {
    display: none;
  }
}
div.top-page section.event .event-contact__button-txts {
  position: relative;
}
div.top-page section.event .event-contact__button-txts--mail {
  width: 75%;
  font-size: 20px;
}
div.top-page section.event .event-contact__button-txts--tel {
  width: 61%;
}
div.top-page section.event .event-contact__button-txt {
  position: absolute;
  display: block;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
}
div.top-page section.event .event-contact__button-txt--number {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1px;
}
div.top-page section.event .event-contact__button-txt--time {
  font-size: 14px;
  font-weight: 400;
  top: 36px;
  line-height: 14px;
}
div.top-page section.event .event-contact__button-icon--mail {
  font-size: 24px;
  margin-right: 5px;
}
div.top-page section.event .event-contact__button-icon--tel {
  width: 20px;
  margin-right: 12px;
}
div.top-page section.event .event-contact__line-icon {
  color: #1BB91F;
}
div.top-page section.event .event-contact__line-link {
  color: #299fd0;
}
div.top-page section.event .event-contact__pc-none {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.top-page section.event .event-containers .event-container__top {
    font-size: 16px;
  }
  div.top-page section.event .event-containers .event-container__desc {
    font-size: 16px;
  }
  div.top-page section.event .event-containers .event-container__answer--small {
    display: none;
  }
  div.top-page section.event .event-containers .event-container__schedule {
    margin-bottom: 56px;
  }
  div.top-page section.event .event-containers .event-container__date {
    font-size: 22px;
  }
  div.top-page section.event .event-containers .event-container__time {
    font-size: 16px;
  }
  div.top-page section.event .event-containers .event-container__button {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.event .event-visual-sp__img {
    width: 100%;
    margin-bottom: 20px;
  }
  div.top-page section.event .event-content {
    margin-bottom: 50px;
  }
  div.top-page section.event .event-content .event-top {
    font-size: 16px;
  }
  div.top-page section.event .event-content .event-top__txt {
    text-align: left;
    margin-bottom: 20px;
  }
  div.top-page section.event .event-containers {
    display: block;
    margin-bottom: 100px;
  }
  div.top-page section.event .event-containers .event-container {
    width: 100%;
    margin-bottom: 15px;
  }
  div.top-page section.event .event-containers .event-container__top {
    font-size: 18px;
  }
  div.top-page section.event .event-containers .event-container__desc {
    display: block;
    line-height: auto;
    padding: 12px 0 35px;
    position: relative;
  }
  div.top-page section.event .event-containers .event-container__question {
    display: block;
    font-size: 16px;
    line-height: 22px;
  }
  div.top-page section.event .event-containers .event-container__question--tight {
    margin-top: 0;
    position: relative;
  }
  div.top-page section.event .event-containers .event-container__question--br {
    display: inline-block;
    position: absolute;
  }
  div.top-page section.event .event-containers .event-container__answer {
    display: block;
    font-size: 18px;
    line-height: 26px;
    position: absolute;
    left: 10px;
  }
  div.top-page section.event .event-containers .event-container__answer--tight {
    margin-top: 3px;
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }
  div.top-page section.event .event-containers .event-container__answer--small {
    position: relative;
    display: inline;
    font-size: 14px;
    left: 0;
  }
  div.top-page section.event .event-containers .event-container__schedule {
    margin-bottom: 30px;
  }
  div.top-page section.event .event-containers .event-container__date-and-time {
    width: 60%;
  }
  div.top-page section.event .event-containers .event-container__date {
    font-size: 24px;
    line-height: 28px;
  }
  div.top-page section.event .event-containers .event-container__time {
    font-size: 18px;
  }
  div.top-page section.event .event-containers .event-container__button {
    width: 50%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    margin-top: 7px;
    border-radius: 4px;
  }
  div.top-page section.event .event-contact {
    font-size: 16px;
  }
  div.top-page section.event .event-contact__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  div.top-page section.event .event-contact__txt {
    text-align: left;
  }
  div.top-page section.event .event-contact__sp-none {
    display: none;
  }
  div.top-page section.event .event-contact__button-area {
    display: block;
    margin-bottom: 25px;
  }
  div.top-page section.event .event-contact__button {
    height: 62px;
    margin: auto;
  }
  div.top-page section.event .event-contact__button--mail {
    font-size: 18px;
    line-height: 62px;
    margin-bottom: 25px;
  }
  div.top-page section.event .event-contact__button-icon--mail {
    font-size: 21px;
  }
  div.top-page section.event .event-contact__button-icon--tel {
    margin-right: 10px;
    width: 18px;
  }
  div.top-page section.event .event-contact__button-txts--mail {
    font-size: 18px;
    width: 66%;
  }
  div.top-page section.event .event-contact__button-txts--tel {
    width: 56%;
  }
  div.top-page section.event .event-contact__button-txt--number {
    font-size: 22px;
  }
  div.top-page section.event .event-contact__pc-none {
    display: block;
  }
}
div.top-page section.pricetable-section {
  background-image: image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  background-image: -webkit-image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  padding-bottom: 60px;
}
div.top-page section.pricetable-section h2 img {
  height: 60px;
}
div.top-page section.pricetable-section div.price-list {
  padding: 0;
  margin: 0 auto;
  width: 600px;
  list-style: none;
}
div.top-page section.pricetable-section div.price-list div.price-list_item {
  background: #fff;
  display: block;
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  margin-right: 10px;
  margin-left: 10px;
  flex: 1 1 65%;
}
div.top-page section.pricetable-section div.price-list div.price-list_item.first-month {
  margin-bottom: 60px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_name {
  height: 64px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #000;
  margin: 0 2rem 1.5rem;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_name .small {
  font-size: 16px;
  margin-left: 4px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap {
  display: flex;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price {
  flex: 1 1 200px;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
  font-size: 16px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
  font-size: 28px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
  font-size: 40px;
  font-weight: 700;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap {
  border-top: 1px solid #000000;
  margin: 0 2rem;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
  margin-right: 0.4em;
}
div.top-page section.pricetable-section div.price-list div.price-list_item.trial-plan {
  padding: 0;
}
div.top-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name {
  color: #cf1313;
}
div.top-page section.pricetable-section div.price-list div.price-list_item.business-plan {
  padding: 0 0 20px;
}
div.top-page section.pricetable-section div.price-list div.price-list_item.business-plan div.price-list_name {
  color: #000;
}
div.top-page section.pricetable-section div.price-list .price-list_item-separator {
  text-align: center;
}
div.top-page section.pricetable-section div.price-list .price-list_item-separator i {
  font-size: 64px;
}
div.top-page section.pricetable-section section.price-section {
  margin-bottom: 4rem;
}
div.top-page section.pricetable-section section.price-section h3 {
  text-align: center;
}
div.top-page section.pricetable-section section.price-section h3 {
  font-size: 24px;
  font-weight: 600;
}
div.top-page section.pricetable-section section.price-section h4 {
  font-size: 18px;
  font-weight: 600;
}
div.top-page section.pricetable-section section.price-section ul.service-list {
  text-align: left;
  list-style: none;
  padding: 0 0 0 1rem;
  margin-bottom: 2rem;
}
div.top-page section.pricetable-section section.price-section ul.service-list li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.top-page section.pricetable-section section.price-section ul.service-list li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
  margin-right: 0.4em;
}
div.top-page section.pricetable-section section.price-section div.free-description {
  width: 600px;
  text-align: left;
  margin: 0 auto;
}
div.top-page section.pricetable-section div.price-about {
  text-align: center;
}
div.top-page section.pricetable-section div.price-about h3 {
  font-size: 24px;
}
div.top-page section.pricetable-section div.price-about p {
  font-size: 16px;
  line-height: 1.7;
}
div.top-page section.pricetable-section .btn-price-action {
  display: inline-block;
  height: 48px;
  padding: 0 30px;
  border-radius: 24px;
  border: 2px solid #cf1313;
  background-color: #ffffff;
  line-height: 44px;
  text-decoration: none;
  text-align: center;
  color: #cf1313;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
div.top-page section.pricetable-section .btn-price-action:after {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
div.top-page section.pricetable-section .btn-price-action.btn-trial-plan {
  background-color: #cf1313;
  color: #fff;
}
@media screen and (max-width: 767px) {
  div.top-page section.pricetable-section div.price-list {
    width: 100%;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item {
    margin-bottom: 0;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
    font-size: 14px;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
    font-size: 18px;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
    font-size: 28px;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name {
    height: 82px;
  }
  div.top-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name .small {
    display: block;
  }
}
div.top-page section.news-list {
  background: #f5eed6;
}
div.top-page section.news-list > div {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.top-page section.news-list > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.news-list > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
div.top-page section.news-list .left {
  flex: 0 0 400px;
  background-image: image-set(url("/img/menu/kv.png") 1x, url("/img/menu/kv@2x.png") 2x);
  background-image: -webkit-image-set(url("/img/menu/kv.png") 1x, url("/img/menu/kv@2x.png") 2x);
  position: relative;
}
div.top-page section.news-list .left h2 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  display: inline-block;
  position: absolute;
  right: 108px;
  top: 50%;
  transform: translateY(-50%);
}
div.top-page section.news-list .left h2 span.heading {
  display: block;
}
div.top-page section.news-list .left h2 span.small {
  font-size: 12px;
  display: block;
  font-weight: 400;
  text-align: center;
}
div.top-page section.news-list .left .slash > span.heading {
  position: relative;
}
div.top-page section.news-list .left .slash > span.heading:before, div.top-page section.news-list .left .slash > span.heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 23px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}
div.top-page section.news-list .left .slash > span.heading:before {
  left: -12px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.top-page section.news-list .left .slash > span.heading:after {
  right: -12px;
  transform: rotate(115deg);
  transform-origin: right center;
}
div.top-page section.news-list .right {
  flex: 0 0 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.top-page section.news-list .right .news {
  flex: 0 0 336px;
  margin-bottom: 20px;
  color: #000;
  display: flex;
}
div.top-page section.news-list .right .news.last-row {
  margin-bottom: 0;
}
div.top-page section.news-list .right .news .news-img {
  flex: 0 0 110px;
  vertical-align: top;
  margin-right: 6px;
  border: 1px solid #ccc;
  background: #fafafa;
}
div.top-page section.news-list .right .news .news-img img {
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
div.top-page section.news-list .right .news .text {
  align-self: center;
}
div.top-page section.news-list .right .news .text .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
div.top-page section.news-list .right .news .text .date {
  font-size: 12px;
}
@media screen and (max-width: 1149px) and (min-width: 769px) {
  div.top-page section.news-list > div > .left {
    flex: 0 0 240px;
  }
  div.top-page section.news-list > div > .left h2 {
    font-size: 30px;
    right: 50%;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
  }
  div.top-page section.news-list > div > .right {
    flex: 1 1 700px;
    padding-left: 20px;
  }
  div.top-page section.news-list > div > .right .news {
    flex: 0 0 325px;
  }
  div.top-page section.news-list > div > .right .news.last-row {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  div.top-page section.news-list > div {
    display: block;
  }
  div.top-page section.news-list > div > .left {
    height: 120px;
  }
  div.top-page section.news-list > div > .left h2 {
    font-size: 24px;
    right: 50%;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
  }
  div.top-page section.news-list > div > .right {
    padding-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  div.top-page section.news-list > div {
    display: block;
  }
  div.top-page section.news-list .left {
    height: 120px;
  }
  div.top-page section.news-list .left h2 {
    font-size: 24px;
    right: 50%;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
  }
  div.top-page section.news-list .right {
    padding-top: 20px;
    display: block;
  }
  div.top-page section.news-list .right .news.last-row {
    margin-bottom: 20px;
  }
}
div.top-page section.terms {
  text-align: center;
}
div.top-page section.terms .terms-title {
  margin-bottom: 20px;
}
div.top-page section.terms .terms-top {
  font-size: 18px;
  margin-bottom: 80px;
}
div.top-page section.terms .terms-content {
  display: flex;
  width: 760px;
  max-width: 100%;
  margin: auto;
  justify-content: space-between;
  margin-bottom: 135px;
}
div.top-page section.terms .terms-content__item {
  text-align: center;
}
div.top-page section.terms .terms-content__item-img {
  width: 110px;
  height: 110px;
  border-radius: 110px;
  border: 3px solid #299fd0;
  position: relative;
  margin: 0 auto 20px;
}
div.top-page section.terms .terms-content__item-img img {
  width: 77%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
div.top-page section.terms .terms-content__item-txt {
  font-size: 20px;
}
div.top-page section.terms .terms-why__top {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}
div.top-page section.terms .terms-why__title {
  position: relative;
}
div.top-page section.terms .terms-why__title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: red;
  border-radius: 2px;
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.top-page section.terms .terms-why__title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: red;
  border-radius: 2px;
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
div.top-page section.terms .terms-why__txt {
  font-size: 18px;
  max-width: 900px;
  text-align: left;
  margin: auto;
}
div.top-page section.terms .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  div.top-page section.terms .terms-top {
    font-size: 16px;
    margin-bottom: 35px;
  }
  div.top-page section.terms .terms-content {
    display: block;
    width: 360px;
    margin: auto;
    margin-bottom: 85px;
  }
  div.top-page section.terms .terms-content__item {
    display: flex;
    margin: 0 auto 20px;
    align-items: center;
  }
  div.top-page section.terms .terms-content__item-img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    margin: 0 30px 0 15px;
  }
  div.top-page section.terms .terms-content__item-txt {
    font-size: 18px;
    text-align: left;
  }
  div.top-page section.terms .terms-why {
    margin: 0 10px 50px;
  }
  div.top-page section.terms .terms-why__top {
    font-size: 22px;
  }
  div.top-page section.terms .terms-why__title::before {
    width: 24px;
    height: 2px;
    left: -10px;
  }
  div.top-page section.terms .terms-why__title::after {
    width: 24px;
    height: 2px;
    right: -10px;
  }
  div.top-page section.terms .terms-why__txt {
    font-size: 16px;
  }
  div.top-page section.terms .pc-none {
    display: block;
  }
  div.top-page section.terms .sp-none {
    display: none;
  }
}
div.top-page section.questions {
  background: #f5eed6;
}
div.top-page section.questions > div {
  width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}
div.top-page section.questions .question-items {
  padding: 25px 0;
  border-bottom: 0.5px solid #000000;
}
div.top-page section.questions .question-item {
  display: flex;
  align-items: baseline;
}
div.top-page section.questions .question-item--question {
  margin-bottom: 10px;
}
div.top-page section.questions .question-item__icon {
  width: 5%;
  font-weight: 500;
}
div.top-page section.questions .question-item__icon--question {
  font-size: 26px;
  color: #cf1313;
}
div.top-page section.questions .question-item__icon--answer {
  font-size: 22px;
  color: #299fd0;
  padding-left: 2.5px;
}
div.top-page section.questions .question-item__txt {
  width: 95%;
  flex-wrap: wrap;
}
div.top-page section.questions .question-item__txt--question {
  font-size: 20px;
  font-weight: 600;
}
div.top-page section.questions .question-item__txt--answer {
  font-size: 18px;
}
@media screen and (max-width: 1149px) {
  div.top-page section.questions > div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.questions .questions-title {
    margin-bottom: 15px;
  }
  div.top-page section.questions .question-item__icon {
    width: 8%;
  }
  div.top-page section.questions .question-item__icon--question {
    font-size: 22px;
  }
  div.top-page section.questions .question-item__icon--answer {
    font-size: 18px;
  }
  div.top-page section.questions .question-item__txt {
    width: 92%;
  }
  div.top-page section.questions .question-item__txt--question {
    font-size: 18px;
  }
  div.top-page section.questions .question-item__txt--answer {
    font-size: 16px;
  }
}
div.top-page section.interview h2.top-section-title img {
  width: 60px;
}
div.top-page section.interview h2.top-section-title span {
  position: relative;
  top: 7px;
}
div.top-page section.interview .content .interview-articles-wrap .interview-articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article {
  margin: 0 10px 50px 10px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 330px;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-image {
  width: 100%;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 5px 5px 0 0;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content {
  padding: 25px 15px;
  height: 350px;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content {
    height: 300px;
  }
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-sub {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-sub {
    font-size: 14px;
  }
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name {
    font-size: 20px;
  }
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name span {
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name span {
    font-size: 14px;
  }
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content hr {
  color: #4C8BCE;
  size: 1px;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-message {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-message {
    font-size: 14px;
  }
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-more {
  text-align: right;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
div.top-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-more a {
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}
div.top-page section.interview .content .interview-articles-wrap .interview-articles:after {
  content: "";
  display: block;
  width: 330px;
  height: 0;
}
div.top-page section.interview .content .more_btn {
  display: block;
  width: 220px;
  height: 50px;
  border-radius: 6px;
  background-color: #4C8BCE;
  color: #ffffff;
  line-height: 50px;
  font-size: 18px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
}
div.top-page section.school-list {
  text-align: center;
}
div.top-page section.school-list .school-list-title__img {
  width: 50px;
  margin-right: 5px;
  position: relative;
  top: 8px;
}
div.top-page section.school-list .school-list-container__separator {
  border-top: 1px solid #E1E1E1;
  margin: 15px 0;
}
div.top-page section.school-list .school-list-item {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.4);
  padding-bottom: 15px;
}
div.top-page section.school-list .school-list-item__text-area {
  text-align: left;
}
div.top-page section.school-list .school-list-item__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
div.top-page section.school-list .school-list-item__contents {
  font-size: 15px;
}
div.top-page section.school-list .school-list-item__content {
  display: flex;
}
div.top-page section.school-list .school-list-item__content-title {
  width: 66px;
  position: relative;
  margin-right: 4px;
}
div.top-page section.school-list .school-list-item__content-title:after {
  content: ":";
  display: inline-block;
  position: absolute;
  right: 0;
}
div.top-page section.school-list .school-list-item__content-title--adress {
  white-space: nowrap;
}
div.top-page section.school-list .school-list-item__button {
  display: inline-block;
  width: 150px;
  height: 40px;
  text-decoration: none;
  border-radius: 4px;
  position: absolute;
}
div.top-page section.school-list .school-list-item__button--voice {
  background-color: #DF8E49;
  left: 0;
}
div.top-page section.school-list .school-list-item__button--site {
  background-color: #5B88C8;
  right: 0;
}
div.top-page section.school-list .school-list-item__button-area {
  flex: 0 0 340px;
  width: 340px;
  max-width: 95vw;
  position: relative;
  height: 40px;
}
div.top-page section.school-list .school-list-item__button-text {
  line-height: 40px;
  color: #ffffff;
  display: block;
  text-align: center;
  position: relative;
}
div.top-page section.school-list .school-list-item__button-site-icon {
  font-size: 10px;
  position: absolute;
  top: -8px;
  right: 20px;
}
div.top-page section.school-list .school-list-item__none {
  display: none;
}
@media screen and (max-width: 767px) {
  div.top-page section.school-list .school-list-item {
    display: block;
  }
  div.top-page section.school-list .school-list-item__text-area {
    margin-bottom: 10px;
  }
  div.top-page section.school-list .school--no-link {
    display: none;
  }
}
div.top-page section.topics .top-section-title {
  margin-bottom: 20px;
}
div.top-page section.topics .top-section-title img {
  width: 360px;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .top-section-title img {
    width: 60%;
  }
}
div.top-page section.topics p {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics p {
    font-size: 14px;
  }
}
div.top-page section.topics .content .topics-articles-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
div.top-page section.topics .content .topics-articles-wrap article {
  width: 330px;
  height: 330px;
  margin: 10px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article {
    width: 100%;
    height: 105px;
    box-shadow: 1.5px 1.5px 1.5px 1.5px rgba(0, 0, 0, 0.2);
  }
}
div.top-page section.topics .content .topics-articles-wrap article a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a .img-wrapper {
    width: 40%;
  }
}
div.top-page section.topics .content .topics-articles-wrap article a .img-wrapper img {
  width: 330px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a .img-wrapper img {
    width: 100%;
    height: 105px;
    border-radius: 5px 0 0 5px;
  }
}
div.top-page section.topics .content .topics-articles-wrap article a .text {
  color: #000;
  display: inline-block;
  padding: 10px 20px;
  height: 130px;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a .text {
    width: 60%;
    height: 105px;
    padding: 10px;
  }
}
div.top-page section.topics .content .topics-articles-wrap article a .text .post-title {
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a .text .post-title {
    font-size: 14px;
  }
}
div.top-page section.topics .content .topics-articles-wrap article a .text .post-date {
  font-size: 13px;
  color: #9d9d9d;
  position: absolute;
  right: 20px;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  div.top-page section.topics .content .topics-articles-wrap article a .text .post-date {
    font-size: 10px;
    right: 10px;
    bottom: 5px;
  }
}
div.top-page section.topics .content .more_btn {
  display: block;
  width: 220px;
  height: 50px;
  border-radius: 6px;
  background-color: #4C8BCE;
  color: #ffffff;
  line-height: 50px;
  font-size: 18px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
}
div.top-page section.company-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}
div.top-page section.company-section .arschool-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.top-page section.company-section .arschool-info__wrap div.left {
  padding: 0 40px;
  flex: 1 1 600px;
}
div.top-page section.company-section .arschool-info__wrap div.left h3 {
  margin-bottom: 36px;
  color: #ee3d96;
  font-weight: 600;
  text-align: center;
}
div.top-page section.company-section .arschool-info__wrap div.left h3 span {
  display: block;
  font-size: 36px;
}
div.top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
  font-size: 24px;
  margin-bottom: 8px;
}
div.top-page section.company-section .arschool-info__wrap div.left div.desc {
  font-size: 18px;
}
div.top-page section.company-section .arschool-info__wrap div.right {
  flex: 0 0 min(450px, 35%);
}
div.top-page section.company-section .arschool-info__wrap div.right img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.top-page section.company-section .ceo-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.top-page section.company-section .ceo-info__wrap div.left {
  flex: 0 0 min(400px, 30%);
}
div.top-page section.company-section .ceo-info__wrap div.left .img__wrap {
  text-align: center;
}
div.top-page section.company-section .ceo-info__wrap div.left .img__wrap img {
  width: 240px;
  max-width: 100%;
  border-radius: 500px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.top-page section.company-section .ceo-info__wrap div.right {
  flex: 1 1 500px;
  padding: 0 40px;
}
div.top-page section.company-section .ceo-info__wrap div.right h3 {
  margin-bottom: 36px;
  flex: 1 1 300px;
  color: #000;
  font-weight: 600;
  text-align: left;
}
div.top-page section.company-section .ceo-info__wrap div.right h3 span {
  display: inline-block;
  font-size: 36px;
}
div.top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
  font-size: 24px;
  margin-right: 16px;
}
div.top-page section.company-section .ceo-info__wrap div.right div.desc {
  font-size: 18px;
}
div.top-page section.company-section .outline__wrap .outline-area {
  display: inline-block;
  background: #ee3d96;
  width: 690px;
  padding: 48px 0 40px 70px;
  border-radius: 20px;
}
div.top-page section.company-section .outline__wrap .outline-area img.company-logo {
  display: inline-block;
  padding-left: 100px;
  width: 280px;
  margin-bottom: 30px;
}
div.top-page section.company-section .outline__wrap .outline-area dl {
  display: flex;
  width: 400px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #f878b8;
  margin-bottom: 18px;
}
div.top-page section.company-section .outline__wrap .outline-area dl dt {
  flex: 0 0 100px;
  text-align: left;
  font-weight: 600;
}
div.top-page section.company-section .outline__wrap .outline-area dl dd {
  margin-bottom: 6px;
  font-weight: 400;
}
div.top-page section.company-section .outline__wrap .outline-area dl a.company-link {
  color: #fff;
  text-decoration: none;
}
div.top-page section.company-section .outline__wrap .outline-area dl a.company-link i {
  font-size: 80%;
  position: relative;
  top: -6px;
  margin-left: 4px;
}
div.top-page section.company-section .outline__wrap .map-area {
  display: inline-block;
  width: 600px;
  height: 380px;
  margin-left: -180px;
  border-radius: 20px;
  position: relative;
  top: 30px;
}
div.top-page section.company-section .outline__wrap #access-map-office {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.top-page section.company-section .arschool-info__wrap div.left {
    padding: 0;
    margin-right: 2rem;
  }
  div.top-page section.company-section .arschool-info__wrap div.left h3 {
    margin-bottom: 20px;
  }
  div.top-page section.company-section .arschool-info__wrap div.left h3 span {
    display: block;
    font-size: 30px;
  }
  div.top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
    margin-bottom: 6px;
  }
  div.top-page section.company-section .arschool-info__wrap div.left div.desc {
    font-size: 16px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 {
    margin-bottom: 24px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 30px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 22px;
    margin-right: 8px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right div.desc {
    font-size: 16px;
  }
  div.top-page section.company-section .outline__wrap {
    text-align: center;
  }
  div.top-page section.company-section .outline__wrap .outline-area {
    text-align: left;
    width: 52vw;
    padding: 20px 0 20px 20px;
  }
  div.top-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 70px;
    width: 200px;
    margin-bottom: 20px;
  }
  div.top-page section.company-section .outline__wrap .outline-area dl {
    display: block;
    font-size: 12px;
  }
  div.top-page section.company-section .outline__wrap .map-area {
    display: inline-block;
    width: 52vw;
    height: 420px;
    margin-left: -11vw;
    border-radius: 20px;
    position: relative;
    top: 30px;
  }
  div.top-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.company-section {
    width: auto;
    padding: 30px 0 4rem;
    display: block;
  }
  div.top-page section.company-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  div.top-page section.company-section .arschool-info__wrap {
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  div.top-page section.company-section .arschool-info__wrap div.left {
    flex: 0 0 100%;
    padding: 0;
  }
  div.top-page section.company-section .arschool-info__wrap div.left h3 span {
    font-size: 32px;
  }
  div.top-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
  }
  div.top-page section.company-section .arschool-info__wrap div.right {
    flex: 0 0 100%;
  }
  div.top-page section.company-section .ceo-info__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  div.top-page section.company-section .ceo-info__wrap div.left {
    flex: 0 0 100%;
    order: 2;
  }
  div.top-page section.company-section .ceo-info__wrap div.right {
    flex: 0 0 100%;
    order: 1;
    padding: 0;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 28px;
  }
  div.top-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 18px;
    margin-right: 8px;
  }
  div.top-page section.company-section .outline__wrap .outline-area {
    width: 100%;
    padding: 24px 0 24px 0;
    border-radius: 10px;
  }
  div.top-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 0;
    width: 200px;
    max-width: 50vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  div.top-page section.company-section .outline__wrap .outline-area dl {
    width: auto;
    display: block;
    margin: 0 2vw 1rem;
  }
  div.top-page section.company-section .outline__wrap .map-area {
    width: 100%;
    margin-left: 0;
    top: -15px;
  }
  div.top-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1150px) {
  div.top-page .sp-only {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  div.top-page .pc-only {
    display: none;
  }
}
div.top-page section.function-section .func-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.top-page section.function-section .func-item {
  flex: 0 0 30%;
  margin-bottom: 4rem;
}
div.top-page section.function-section .func-item .img-wrap {
  margin-bottom: 1rem;
  background-color: #f1f1f1;
  width: 362px;
  height: 242px;
  position: relative;
}
div.top-page section.function-section .func-item .img-wrap img {
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #f1f1f1;
}
div.top-page section.function-section .func-item .desc-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}
div.top-page section.function-section .navi-btn-area {
  text-align: center;
}

@media screen and (min-width: 768px) {
  div.top-page .banner-section-pc {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  div.top-page .banner-section-pc a {
    display: inline-block;
  }
  div.top-page .banner-section-pc a img {
    width: 800px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.top-page .banner-section-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  div.top-page .banner-section-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  div.top-page .banner-section-sp {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  div.top-page .banner-section-sp a {
    display: block;
  }
  div.top-page .banner-section-sp a img {
    width: 100%;
    max-width: 100%;
  }
}

div.sound-banner-area {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 100px;
}
div.sound-banner-area .img-skill {
  display: inline-block;
}
div.sound-banner-area .img-skill img {
  width: 700px;
  max-width: 75vw;
}
@media screen and (max-width: 767px) {
  div.sound-banner-area .img-skill img {
    max-width: 85vw;
  }
}
@media screen and (max-width: 767px) {
  div.sound-banner-area {
    padding-bottom: 40px;
  }
}

div.top-page > section.function-section {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  div.top-page > section.function-section {
    padding-bottom: 10px;
  }
}

/* -----------
TOPページ
----------- */
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.top-page section.function-section .func-item {
    flex: 0 0 49%;
  }
  div.top-page section.function-section .func-item .img-wrap {
    margin-right: auto;
    margin-left: auto;
    width: 45vw;
    height: 30vw;
  }
}
@media screen and (max-width: 767px) {
  div.top-page div.h2-comment span {
    font-size: 14px;
  }
  div.top-page h2.top-section-title {
    margin-bottom: 30px;
  }
  div.top-page h2.top-section-title > span {
    font-size: 24px;
  }
  div.top-page .title-slash > span:before, div.top-page .title-slash > span:after {
    width: 24px;
    height: 2px;
    bottom: 10px;
  }
  div.top-page .title-slash > span:before {
    left: -10px;
  }
  div.top-page .title-slash > span:after {
    right: -10px;
  }
  div.top-page .title-slash.one-line > span:before, div.top-page .title-slash.one-line > span:after {
    bottom: 2px;
  }
  div.top-page > section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  div.top-page section.function-section .func-list {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  div.top-page section.function-section .func-item {
    margin-bottom: 3rem;
  }
  div.top-page section.function-section .func-item .img-wrap {
    width: auto;
  }
  div.top-page section.function-section .func-item .desc-wrap h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
/* --------------
 機能一覧 ----
-------------- */
div.function-page section.function-list .func-item {
  display: flex;
  margin-bottom: 4rem;
}
div.function-page section.function-list .func-item .img-wrap {
  flex: 0 0 40%;
}
div.function-page section.function-list .func-item .img-wrap img {
  max-width: 100%;
}
div.function-page section.function-list .func-item .desc-wrap {
  padding: 0 1rem 0 1rem;
}
div.function-page section.function-list .func-item .desc-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #cf1313;
}

/* --------------
 ログイン画面 ----
-------------- */
.login-items {
  max-width: 1150px;
  padding: 0 15px;
  margin: 12vh auto 0;
  text-align: center;
}

.login-item {
  margin-bottom: 15vh;
}
.login-item__img {
  width: 300px;
  margin: 0 auto 20px;
}
.login-item__img img {
  width: 100%;
}
.login-item__button {
  width: 453px;
  height: 72px;
  line-height: 72px;
  font-size: 24px;
}
.login-item__button:hover {
  transform: translateY(2px);
  opacity: 1;
  filter: brightness(90%);
}
.login-item__button--green:hover {
  box-shadow: 0 1px 0 0 #333;
}
.login-item__button--blue:hover {
  box-shadow: 0 1px 0 0 #666;
}
.login-item__small-txt {
  font-size: 18px;
  margin-left: 7px;
}

.login-footer {
  display: flex;
  justify-content: center;
}
.login-footer__menu {
  text-align: center;
}

/* --------------
 料金表画面 ----
-------------- */
div.pricetable-page {
  padding-bottom: 60px;
}
div.pricetable-page div.description {
  text-align: center;
  margin-bottom: 20px;
}
div.pricetable-page div.description h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
}
div.pricetable-page div.description h3 span.red {
  color: #cf1313;
}
div.pricetable-page ul.price-list {
  padding: 0;
  margin: 0 auto 60px;
  width: 900px;
  display: flex;
  list-style: none;
}
div.pricetable-page ul.price-list li.price-list_item {
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 0 0 100px;
  margin-right: 10px;
  margin-left: 10px;
  flex: 1 1 65%;
}
div.pricetable-page ul.price-list li.price-list_item:first-child {
  flex: 1 1 35%;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_name {
  height: 64px;
  line-height: 64px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  border-bottom: 2px solid #000;
  margin: 0 2rem 1.5rem;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_name .small {
  font-size: 16px;
  margin-left: 4px;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap {
  display: flex;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price {
  flex: 1 1 200px;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
  font-size: 16px;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
  font-size: 28px;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
  font-size: 40px;
  font-weight: 700;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_description-wrap {
  border-top: 1px solid #000000;
  margin: 0 2rem;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-right: 0.4em;
}
div.pricetable-page ul.price-list li.price-list_item div.price-list_action {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  padding-top: 20px;
}
div.pricetable-page section.price-section {
  margin-bottom: 4rem;
}
div.pricetable-page section.price-section h3 {
  text-align: center;
}
div.pricetable-page section.price-section h3 {
  font-size: 24px;
  font-weight: 600;
}
div.pricetable-page section.price-section h4 {
  font-size: 18px;
  font-weight: 600;
}
div.pricetable-page section.price-section ul.service-list {
  text-align: left;
  list-style: none;
  padding: 0 0 0 1rem;
  margin-bottom: 2rem;
}
div.pricetable-page section.price-section ul.service-list li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.pricetable-page section.price-section ul.service-list li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
  margin-right: 0.4em;
}
div.pricetable-page section.price-section div.free-description {
  width: 600px;
  text-align: left;
  margin: 0 auto;
}
div.pricetable-page div.price-about {
  text-align: center;
}
div.pricetable-page div.price-about h3 {
  font-size: 24px;
}
div.pricetable-page div.price-about p {
  font-size: 16px;
  line-height: 1.7;
}
div.pricetable-page .btn-price-action {
  display: inline-block;
  height: 48px;
  padding: 0 30px;
  border-radius: 24px;
  border: 2px solid #cf1313;
  background-color: #ffffff;
  line-height: 44px;
  text-decoration: none;
  text-align: center;
  color: #cf1313;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
div.pricetable-page .btn-price-action:after {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
div.pricetable-page .btn-price-action.btn-trial-plan {
  background-color: #cf1313;
  color: #fff;
}

@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.pricetable-page ul.price-list {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  div.pricetable-page div.description {
    padding-left: 10px;
    padding-right: 10px;
  }
  div.pricetable-page div.description h3 {
    line-height: 1.8;
  }
  div.pricetable-page ul.price-list {
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  div.pricetable-page ul.price-list li.price-list_item {
    margin-bottom: 4rem;
  }
  div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
    font-size: 14px;
  }
  div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
    font-size: 18px;
  }
  div.pricetable-page ul.price-list li.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
    font-size: 28px;
  }
  div.pricetable-page div.price-about {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  div.pricetable-page div.price-about p {
    text-align: left;
  }
}
/* --------------
お問い合わせ ----
-------------- */
div.inquiry-page h1.page-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  div.inquiry-page h1.page-title img {
    height: 40px;
  }
}
div.inquiry-page div.by-form, div.inquiry-page div.by-email, div.inquiry-page div.by-tel, div.inquiry-page div.by-line {
  text-align: center;
  margin-bottom: 6rem;
}
div.inquiry-page .email-address, div.inquiry-page .tel-number {
  font-size: 28px;
  height: 60px;
  color: #4cb3e6;
}
div.inquiry-page .email-address span, div.inquiry-page .tel-number span {
  display: inline-block;
  height: 60px;
  line-height: 60px;
}
div.inquiry-page .email-address i, div.inquiry-page .email-address img, div.inquiry-page .tel-number i, div.inquiry-page .tel-number img {
  margin-right: 16px;
  font-size: 40px;
  vertical-align: middle;
}
div.inquiry-page .by-line .line-address {
  font-size: 28px;
  height: 60px;
  color: #00B900;
}
div.inquiry-page .by-line .line-address span {
  display: inline-block;
  height: 60px;
  line-height: 60px;
}
div.inquiry-page .by-line .line-address i, div.inquiry-page .by-line .line-address img {
  margin-right: 16px;
  font-size: 40px;
  vertical-align: middle;
}
div.inquiry-page .by-line div.guide {
  font-size: 18px;
  margin-bottom: 1rem;
}
div.inquiry-page .by-line div.line-url {
  font-size: 18px;
  margin-bottom: 1rem;
}
div.inquiry-page .form-wrap {
  width: 720px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  div.inquiry-page .form-wrap {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  div.inquiry-page .form-wrap {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  div.inquiry-page .caution {
    text-align: left;
  }
}

/* --------------
 News詳細 ----
-------------- */
div.news-detail-page h1.page-title {
  line-height: 1.5;
  font-size: 22px;
  height: auto;
}
div.news-detail-page h1.page-title .emp {
  font-size: 26px;
}
div.news-detail-page h1.page-title .red {
  color: #cf1313;
}
div.news-detail-page h1.page-title .blue {
  color: #299fd0;
}
div.news-detail-page div.description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 2rem;
}
div.news-detail-page div.description .gray-caution {
  color: #888;
  font-size: 90%;
  padding-left: 16px;
}
div.news-detail-page div.section {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 60px;
}
div.news-detail-page div.section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* --------------
EdTech補助金募集 ----
-------------- */
div.edtech2022-page .section-feature ul.feature-list {
  margin-bottom: 2rem;
}
div.edtech2022-page .section-feature ul.feature-list li {
  margin-bottom: 12px;
  font-weight: 600;
}
div.edtech2022-page .section-event-summary .item {
  margin-bottom: 1rem;
  font-size: 16px;
}
div.edtech2022-page .section-event-summary .item .title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.5rem;
}
div.edtech2022-page .section-event-summary .item .text {
  padding-left: 1rem;
}
div.edtech2022-page .section-event-summary p.event-date {
  margin-bottom: 0.5rem;
}
div.edtech2022-page .section-event-summary dl.agenda dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
div.edtech2022-page .section-event-summary dl.agenda dd {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
div.edtech2022-page .section-apply .button-wrap .button_to-form, div.edtech2022-page .section-inquiry .button-wrap .button_to-form {
  display: inline-block;
  padding: 0 18px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  background-color: #299fd0;
  position: relative;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border: none;
}
div.edtech2022-page .section-apply .button-wrap .button_to-form:hover, div.edtech2022-page .section-inquiry .button-wrap .button_to-form:hover {
  opacity: 0.8;
}
/* --------------
 LP ----
-------------- */
div.lp-br01-page > section {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 15px 120px;
}
div.lp-br01-page > section.w100 {
  width: 100%;
}
div.lp-br01-page > section.common-cta-section {
  width: 100%;
}
div.lp-br01-page div.h2-comment {
  margin-bottom: 6px;
  position: relative;
  text-align: center;
}
div.lp-br01-page div.h2-comment span {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 20.5px;
  background-color: #f7b500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
div.lp-br01-page div.h2-comment:before {
  display: inline-block;
  position: absolute;
  content: "";
  background-image: url(/img/top/orange-comment.png);
  background-position: bottom;
  background-size: 22px 32px;
  bottom: -10px;
  left: calc(50% - 11px);
  width: 22px;
  height: 32px;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.lp-br01-page > section {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page > section {
    padding: 40px 2vw;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
div.lp-br01-page section.skill-assessment-banner-area {
  text-align: center;
  padding-bottom: 0px;
}
div.lp-br01-page section.skill-assessment-banner-area .img-skill {
  display: inline-block;
}
div.lp-br01-page section.skill-assessment-banner-area .img-skill img {
  width: 700px;
  max-width: 85vw;
}
div.lp-br01-page section.features div.item {
  display: flex;
  margin-bottom: 4rem;
  justify-content: space-evenly;
}
div.lp-br01-page section.features div.item div.img-area {
  flex: 0 0 400px;
}
div.lp-br01-page section.features div.item div.img-area img {
  max-width: 100%;
}
div.lp-br01-page section.features div.item div.text-area {
  flex: 0 0 600px;
}
div.lp-br01-page section.features div.item div.text-area h3 {
  position: relative;
  font-weight: 600;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number {
  display: inline-block;
  background: #ED8936;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 46px;
  line-height: 40px;
  border: 3px solid #fff;
  text-align: center;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number.n2 {
  background: #cf1313;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number.n3 {
  background: #55658f;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number.n4 {
  background: #75d5c1;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number.n5 {
  background: #ed3167;
}
div.lp-br01-page section.features div.item div.text-area h3 span.item-number.n6 {
  background: #a27f13;
}
div.lp-br01-page section.features div.item div.text-area div.desc {
  font-size: 20px;
  line-height: 1.8;
}
div.lp-br01-page section.features div.item div.text-area div.desc .emp {
  color: #cf1313;
  font-weight: 700;
}
div.lp-br01-page section.features div.item:nth-child(2n) div.img-area {
  order: 2;
}
div.lp-br01-page section.features div.item:nth-child(2n) div.text-area {
  order: 1;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.lp-br01-page section.features div.item div.img-area {
    flex: 0 0 300px;
  }
  div.lp-br01-page section.features div.item div.img-area img {
    max-width: 100%;
  }
  div.lp-br01-page section.features div.item div.text-area {
    flex: 1 1 auto;
  }
  div.lp-br01-page section.features div.item div.text-area h3 {
    padding: 0 1rem;
  }
  div.lp-br01-page section.features div.item div.text-area div.desc {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.features div.item {
    display: block;
    margin-bottom: 4rem;
  }
  div.lp-br01-page section.features div.item div.img-area {
    text-align: center;
    margin-bottom: 1rem;
  }
  div.lp-br01-page section.features div.item div.img-area img {
    max-width: 100%;
    width: 80%;
  }
  div.lp-br01-page section.features div.item div.text-area h3 {
    font-weight: 600;
    font-size: 21px;
  }
  div.lp-br01-page section.features div.item div.text-area h3 span.item-number {
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 46px;
    line-height: 30px;
  }
  div.lp-br01-page section.features div.item div.text-area div.desc {
    font-size: 18px;
    line-height: 1.8;
  }
  div.lp-br01-page section.features div.item div.text-area div.desc .emp {
    color: #cf1313;
    font-weight: 700;
  }
  div.lp-br01-page section.features div.item:nth-child(2n) div.img-area {
    order: 2;
  }
  div.lp-br01-page section.features div.item:nth-child(2n) div.text-area {
    order: 1;
  }
}
div.lp-br01-page section.features div.desc-scratch {
  box-sizing: border-box;
  /* オートレイアウト */
  display: block;
  margin-top: 10px;
  padding: 10px 14px;
  width: 555px;
  max-width: 56vw;
  background: #FFFDEE;
  border: 1px solid #FFA500;
}
div.lp-br01-page section.features p {
  font-size: 14px;
  line-height: 21px;
}
div.lp-br01-page section.features p.desc-scratch-title {
  font-weight: 700;
}
div.lp-br01-page section.features p.desc-scratch-text {
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.features div.desc-scratch {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #FFFDEE;
    border: 1px solid #FFA500;
  }
}
div.lp-br01-page section.function-section {
  width: 1000px;
}
div.lp-br01-page section.function-section div.func-item {
  display: flex;
  margin-bottom: 4rem;
  justify-content: space-between;
  align-items: center;
}
div.lp-br01-page section.function-section div.func-item .func-thumb {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
div.lp-br01-page section.function-section div.func-item div.title-wrap {
  flex: 0 0 40%;
}
div.lp-br01-page section.function-section div.func-item div.title-wrap span.icon-wrap {
  display: inline-block;
  vertical-align: middle;
}
div.lp-br01-page section.function-section div.func-item div.title-wrap span.icon-wrap img {
  height: 60px;
  margin-right: 20px;
}
div.lp-br01-page section.function-section div.func-item div.title-wrap h3 {
  vertical-align: middle;
  margin-bottom: 0;
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 60px;
}
div.lp-br01-page section.function-section div.func-item div.desc-wrap {
  flex: 1 1 50%;
  line-height: 42px;
  color: #000000;
}
div.lp-br01-page section.function-section div.func-item div.desc-wrap div.desc {
  font-weight: 400;
  font-size: 24px;
}
div.lp-br01-page section.function-section div.video-wrap {
  text-align: center;
  margin: 0 auto;
  width: 700px;
  height: 467px;
}
div.lp-br01-page section.function-section div.video-wrap div.youtube-wrap {
  width: 100%;
  height: 100%;
}
div.lp-br01-page section.function-section div.video-wrap div.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.lp-br01-page section.function-section {
    width: auto;
  }
  div.lp-br01-page section.function-section div.func-item div.title-wrap span.icon-wrap img {
    height: 48px;
    margin-right: 10px;
  }
  div.lp-br01-page section.function-section div.func-item div.title-wrap h3 {
    font-size: 26px;
    line-height: 48px;
  }
  div.lp-br01-page section.function-section div.func-item div.desc-wrap {
    flex: 1 1 50%;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.function-section {
    width: 100%;
  }
  div.lp-br01-page section.function-section div.func-item {
    display: block;
  }
  div.lp-br01-page section.function-section div.func-item div.title-wrap {
    margin-bottom: 16px;
  }
  div.lp-br01-page section.function-section div.func-item div.title-wrap span.icon-wrap img {
    height: 48px;
    margin-right: 16px;
    margin-left: 12px;
  }
  div.lp-br01-page section.function-section div.func-item div.title-wrap h3 {
    font-size: 28px;
    line-height: 48px;
  }
  div.lp-br01-page section.function-section div.func-item div.desc-wrap {
    color: #000000;
  }
  div.lp-br01-page section.function-section div.func-item div.desc-wrap div.desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
  }
  div.lp-br01-page section.function-section div.video-wrap {
    width: 90vw;
    height: 60vw;
  }
  div.lp-br01-page section.function-section div.video-wrap div.youtube-wrap {
    width: 100%;
    height: 100%;
  }
  div.lp-br01-page section.function-section div.video-wrap div.youtube-wrap iframe {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page h2.top-section-title {
    margin-bottom: 30px;
  }
  div.lp-br01-page h2.top-section-title > span {
    font-size: 24px;
  }
  div.lp-br01-page .title-slash > span:before, div.lp-br01-page .title-slash > span:after {
    width: 24px;
    height: 2px;
    bottom: 10px;
  }
  div.lp-br01-page .title-slash > span:before {
    left: -10px;
  }
  div.lp-br01-page .title-slash > span:after {
    right: -10px;
  }
  div.lp-br01-page .title-slash.one-line > span:before, div.lp-br01-page .title-slash.one-line > span:after {
    bottom: 2px;
  }
}
div.lp-br01-page section.event {
  background: #f5eed6;
}
div.lp-br01-page section.event > div {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.lp-br01-page section.event > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.event > div {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
div.lp-br01-page section.event .event-visual-pc__img {
  max-width: 100%;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.event .event-visual-pc__img {
    display: none;
  }
}
div.lp-br01-page section.event .event-visual-sp__img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  div.lp-br01-page section.event .event-visual-sp__img {
    display: none;
  }
}
div.lp-br01-page section.event .event-content {
  text-align: center;
}
div.lp-br01-page section.event .event-content .event-top {
  font-size: 18px;
}
div.lp-br01-page section.event .event-content .event-top__txt {
  margin-bottom: 40px;
}
div.lp-br01-page section.event .event-containers {
  margin-bottom: 120px;
}
div.lp-br01-page section.event .event-containers .event-container {
  width: 55%;
  margin: 0 auto 50px;
  /* 概要 */
}
div.lp-br01-page section.event .event-containers .event-container__top {
  font-size: 20px;
  line-height: 44px;
  border-bottom: 2px solid #000000;
  font-weight: 600;
}
div.lp-br01-page section.event .event-containers .event-container__desc {
  line-height: 60px;
  border-bottom: 0.5px solid #000000;
  display: flex;
  text-align: left;
  font-size: 18px;
}
div.lp-br01-page section.event .event-containers .event-container__desc:last-child {
  border: none;
}
div.lp-br01-page section.event .event-containers .event-container__question {
  display: inline-block;
  width: 40%;
  font-weight: 600;
}
div.lp-br01-page section.event .event-containers .event-container__question--tight {
  line-height: 24px;
  margin-top: 18px;
}
div.lp-br01-page section.event .event-containers .event-container__answer {
  display: inline-block;
  width: 60%;
}
div.lp-br01-page section.event .event-containers .event-container__answer--tight {
  line-height: 24px;
  margin: 18px 0;
}
div.lp-br01-page section.event .event-containers .event-container__answer--small {
  display: inline;
  font-size: 14px;
}
div.lp-br01-page section.event .event-containers .event-container__button {
  display: block;
  width: 55%;
  margin: auto;
  max-width: 250px;
  height: 65px;
  background-color: #c1272d;
  color: white;
  border-radius: 7px;
  line-height: 65px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 15px;
}
div.lp-br01-page section.event .event-contact {
  font-size: 18px;
}
div.lp-br01-page section.event .event-contact__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
div.lp-br01-page section.event .event-contact__txt {
  margin-bottom: 30px;
}
div.lp-br01-page section.event .event-contact__button-area {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
div.lp-br01-page section.event .event-contact__button {
  width: 280px;
  height: 67px;
  margin: 0 15px;
  background-color: #ffffff;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
}
div.lp-br01-page section.event .event-contact__button--mail {
  color: #cf1313;
  font-size: 20px;
  border: solid 3px #cf1313;
  line-height: 67px;
  display: flex;
  justify-content: center;
}
div.lp-br01-page section.event .event-contact__button--tel {
  color: #299fd0;
  border: solid 3px #299fd0;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  div.lp-br01-page section.event .event-contact__button--tel.sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.event .event-contact__button--tel.pc-only {
    display: none;
  }
}
div.lp-br01-page section.event .event-contact__button-txts {
  position: relative;
}
div.lp-br01-page section.event .event-contact__button-txts--mail {
  width: 75%;
  font-size: 20px;
}
div.lp-br01-page section.event .event-contact__button-txts--tel {
  width: 61%;
}
div.lp-br01-page section.event .event-contact__button-txt {
  position: absolute;
  display: block;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
}
div.lp-br01-page section.event .event-contact__button-txt--number {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1px;
}
div.lp-br01-page section.event .event-contact__button-txt--time {
  font-size: 14px;
  font-weight: 400;
  top: 36px;
  line-height: 14px;
}
div.lp-br01-page section.event .event-contact__button-icon--mail {
  font-size: 24px;
  margin-right: 5px;
}
div.lp-br01-page section.event .event-contact__button-icon--tel {
  width: 20px;
  margin-right: 12px;
}
div.lp-br01-page section.event .event-contact__line-icon {
  color: #1BB91F;
}
div.lp-br01-page section.event .event-contact__line-link {
  color: #299fd0;
}
div.lp-br01-page section.event .event-contact__pc-none {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.lp-br01-page section.event .event-containers .event-container__top {
    font-size: 16px;
  }
  div.lp-br01-page section.event .event-containers .event-container__desc {
    font-size: 16px;
  }
  div.lp-br01-page section.event .event-containers .event-container__answer--small {
    display: none;
  }
  div.lp-br01-page section.event .event-containers .event-container__schedule {
    margin-bottom: 56px;
  }
  div.lp-br01-page section.event .event-containers .event-container__date {
    font-size: 22px;
  }
  div.lp-br01-page section.event .event-containers .event-container__time {
    font-size: 16px;
  }
  div.lp-br01-page section.event .event-containers .event-container__button {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.event .event-visual-sp__img {
    width: 100%;
    margin-bottom: 20px;
  }
  div.lp-br01-page section.event .event-content {
    margin-bottom: 50px;
  }
  div.lp-br01-page section.event .event-content .event-top {
    font-size: 16px;
  }
  div.lp-br01-page section.event .event-content .event-top__txt {
    text-align: left;
    margin-bottom: 20px;
  }
  div.lp-br01-page section.event .event-containers {
    display: block;
    margin-bottom: 100px;
  }
  div.lp-br01-page section.event .event-containers .event-container {
    width: 100%;
    margin-bottom: 15px;
  }
  div.lp-br01-page section.event .event-containers .event-container__top {
    font-size: 18px;
  }
  div.lp-br01-page section.event .event-containers .event-container__desc {
    display: block;
    line-height: auto;
    padding: 12px 0 35px;
    position: relative;
  }
  div.lp-br01-page section.event .event-containers .event-container__question {
    display: block;
    font-size: 16px;
    line-height: 22px;
  }
  div.lp-br01-page section.event .event-containers .event-container__question--tight {
    margin-top: 0;
    position: relative;
  }
  div.lp-br01-page section.event .event-containers .event-container__question--br {
    display: inline-block;
    position: absolute;
  }
  div.lp-br01-page section.event .event-containers .event-container__answer {
    display: block;
    font-size: 18px;
    line-height: 26px;
    position: absolute;
    left: 10px;
  }
  div.lp-br01-page section.event .event-containers .event-container__answer--tight {
    margin-top: 3px;
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }
  div.lp-br01-page section.event .event-containers .event-container__answer--small {
    position: relative;
    display: inline;
    font-size: 14px;
    left: 0;
  }
  div.lp-br01-page section.event .event-containers .event-container__schedule {
    margin-bottom: 30px;
  }
  div.lp-br01-page section.event .event-containers .event-container__date-and-time {
    width: 60%;
  }
  div.lp-br01-page section.event .event-containers .event-container__date {
    font-size: 24px;
    line-height: 28px;
  }
  div.lp-br01-page section.event .event-containers .event-container__time {
    font-size: 18px;
  }
  div.lp-br01-page section.event .event-containers .event-container__button {
    width: 50%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    margin-top: 7px;
    border-radius: 4px;
  }
  div.lp-br01-page section.event .event-contact {
    font-size: 16px;
  }
  div.lp-br01-page section.event .event-contact__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  div.lp-br01-page section.event .event-contact__txt {
    text-align: left;
  }
  div.lp-br01-page section.event .event-contact__sp-none {
    display: none;
  }
  div.lp-br01-page section.event .event-contact__button-area {
    display: block;
    margin-bottom: 25px;
  }
  div.lp-br01-page section.event .event-contact__button {
    height: 62px;
    margin: auto;
  }
  div.lp-br01-page section.event .event-contact__button--mail {
    font-size: 18px;
    line-height: 62px;
    margin-bottom: 25px;
  }
  div.lp-br01-page section.event .event-contact__button-icon--mail {
    font-size: 21px;
  }
  div.lp-br01-page section.event .event-contact__button-icon--tel {
    margin-right: 10px;
    width: 18px;
  }
  div.lp-br01-page section.event .event-contact__button-txts--mail {
    font-size: 18px;
    width: 66%;
  }
  div.lp-br01-page section.event .event-contact__button-txts--tel {
    width: 56%;
  }
  div.lp-br01-page section.event .event-contact__button-txt--number {
    font-size: 22px;
  }
  div.lp-br01-page section.event .event-contact__pc-none {
    display: block;
  }
}
div.lp-br01-page section.pricetable-section {
  background-image: image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  background-image: -webkit-image-set(url("/img/top/kv-b.png") 1x, url("/img/top/kv-b@2x.png") 2x);
  padding-bottom: 60px;
}
div.lp-br01-page section.pricetable-section h2 img {
  height: 60px;
}
div.lp-br01-page section.pricetable-section div.price-list {
  padding: 0;
  margin: 0 auto;
  width: 600px;
  list-style: none;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item {
  background: #fff;
  display: block;
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  margin-right: 10px;
  margin-left: 10px;
  flex: 1 1 65%;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.first-month {
  margin-bottom: 60px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_name {
  height: 64px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #000;
  margin: 0 2rem 1.5rem;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_name .small {
  font-size: 16px;
  margin-left: 4px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap {
  display: flex;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price {
  flex: 1 1 200px;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
  font-size: 16px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
  font-size: 28px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
  font-size: 40px;
  font-weight: 700;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap {
  border-top: 1px solid #000000;
  margin: 0 2rem;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_description-wrap ul.price-list_description li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
  margin-right: 0.4em;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.trial-plan {
  padding: 0;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name {
  color: #cf1313;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.business-plan {
  padding: 0 0 20px;
}
div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.business-plan div.price-list_name {
  color: #000;
}
div.lp-br01-page section.pricetable-section div.price-list .price-list_item-separator {
  text-align: center;
}
div.lp-br01-page section.pricetable-section div.price-list .price-list_item-separator i {
  font-size: 64px;
}
div.lp-br01-page section.pricetable-section section.price-section {
  margin-bottom: 4rem;
}
div.lp-br01-page section.pricetable-section section.price-section h3 {
  text-align: center;
}
div.lp-br01-page section.pricetable-section section.price-section h3 {
  font-size: 24px;
  font-weight: 600;
}
div.lp-br01-page section.pricetable-section section.price-section h4 {
  font-size: 18px;
  font-weight: 600;
}
div.lp-br01-page section.pricetable-section section.price-section ul.service-list {
  text-align: left;
  list-style: none;
  padding: 0 0 0 1rem;
  margin-bottom: 2rem;
}
div.lp-br01-page section.pricetable-section section.price-section ul.service-list li {
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 0 0 0 14px;
  text-indent: -10px;
}
div.lp-br01-page section.pricetable-section section.price-section ul.service-list li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  content: "";
  margin-right: 0.4em;
}
div.lp-br01-page section.pricetable-section section.price-section div.free-description {
  width: 600px;
  text-align: left;
  margin: 0 auto;
}
div.lp-br01-page section.pricetable-section div.price-about {
  text-align: center;
}
div.lp-br01-page section.pricetable-section div.price-about h3 {
  font-size: 24px;
}
div.lp-br01-page section.pricetable-section div.price-about p {
  font-size: 16px;
  line-height: 1.7;
}
div.lp-br01-page section.pricetable-section .btn-price-action {
  display: inline-block;
  height: 48px;
  padding: 0 30px;
  border-radius: 24px;
  border: 2px solid #cf1313;
  background-color: #ffffff;
  line-height: 44px;
  text-decoration: none;
  text-align: center;
  color: #cf1313;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
div.lp-br01-page section.pricetable-section .btn-price-action:after {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
div.lp-br01-page section.pricetable-section .btn-price-action.btn-trial-plan {
  background-color: #cf1313;
  color: #fff;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.pricetable-section div.price-list {
    width: 100%;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item {
    margin-bottom: 0;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price div.price-list_user {
    font-size: 14px;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_yen {
    font-size: 18px;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item div.price-list_contents div.price-list_price-wrap div.price-list_price span.price-list_number {
    font-size: 28px;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name {
    height: 82px;
  }
  div.lp-br01-page section.pricetable-section div.price-list div.price-list_item.trial-plan div.price-list_name .small {
    display: block;
  }
}
div.lp-br01-page section.terms {
  text-align: center;
}
div.lp-br01-page section.terms .terms-title {
  margin-bottom: 20px;
}
div.lp-br01-page section.terms .terms-top {
  font-size: 18px;
  margin-bottom: 80px;
}
div.lp-br01-page section.terms .terms-content {
  display: flex;
  width: 760px;
  max-width: 100%;
  margin: auto;
  justify-content: space-between;
  margin-bottom: 135px;
}
div.lp-br01-page section.terms .terms-content__item {
  text-align: center;
}
div.lp-br01-page section.terms .terms-content__item-img {
  width: 110px;
  height: 110px;
  border-radius: 110px;
  border: 3px solid #299fd0;
  position: relative;
  margin: 0 auto 20px;
}
div.lp-br01-page section.terms .terms-content__item-img img {
  width: 77%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
div.lp-br01-page section.terms .terms-content__item-txt {
  font-size: 20px;
}
div.lp-br01-page section.terms .terms-why__top {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}
div.lp-br01-page section.terms .terms-why__title {
  position: relative;
}
div.lp-br01-page section.terms .terms-why__title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: red;
  border-radius: 2px;
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.lp-br01-page section.terms .terms-why__title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 36px;
  height: 4px;
  background-color: red;
  border-radius: 2px;
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
div.lp-br01-page section.terms .terms-why__txt {
  font-size: 18px;
  max-width: 900px;
  text-align: left;
  margin: auto;
}
div.lp-br01-page section.terms .pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.terms .terms-top {
    font-size: 16px;
    margin-bottom: 35px;
  }
  div.lp-br01-page section.terms .terms-content {
    display: block;
    width: 360px;
    margin: auto;
    margin-bottom: 85px;
  }
  div.lp-br01-page section.terms .terms-content__item {
    display: flex;
    margin: 0 auto 20px;
    align-items: center;
  }
  div.lp-br01-page section.terms .terms-content__item-img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    margin: 0 30px 0 15px;
  }
  div.lp-br01-page section.terms .terms-content__item-txt {
    font-size: 18px;
    text-align: left;
  }
  div.lp-br01-page section.terms .terms-why {
    margin: 0 10px 50px;
  }
  div.lp-br01-page section.terms .terms-why__top {
    font-size: 22px;
  }
  div.lp-br01-page section.terms .terms-why__title::before {
    width: 24px;
    height: 2px;
    left: -10px;
  }
  div.lp-br01-page section.terms .terms-why__title::after {
    width: 24px;
    height: 2px;
    right: -10px;
  }
  div.lp-br01-page section.terms .terms-why__txt {
    font-size: 16px;
  }
  div.lp-br01-page section.terms .pc-none {
    display: block;
  }
  div.lp-br01-page section.terms .sp-none {
    display: none;
  }
}
div.lp-br01-page section.questions {
  background: #f5eed6;
}
div.lp-br01-page section.questions > div {
  width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}
div.lp-br01-page section.questions .question-items {
  padding: 25px 0;
  border-bottom: 0.5px solid #000000;
}
div.lp-br01-page section.questions .question-item {
  display: flex;
  align-items: baseline;
}
div.lp-br01-page section.questions .question-item--question {
  margin-bottom: 10px;
}
div.lp-br01-page section.questions .question-item__icon {
  width: 5%;
  font-weight: 500;
}
div.lp-br01-page section.questions .question-item__icon--question {
  font-size: 26px;
  color: #cf1313;
}
div.lp-br01-page section.questions .question-item__icon--answer {
  font-size: 22px;
  color: #299fd0;
  padding-left: 2.5px;
}
div.lp-br01-page section.questions .question-item__txt {
  width: 95%;
  flex-wrap: wrap;
}
div.lp-br01-page section.questions .question-item__txt--question {
  font-size: 20px;
  font-weight: 600;
}
div.lp-br01-page section.questions .question-item__txt--answer {
  font-size: 18px;
}
@media screen and (max-width: 1149px) {
  div.lp-br01-page section.questions > div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.questions .questions-title {
    margin-bottom: 15px;
  }
  div.lp-br01-page section.questions .question-item__icon {
    width: 8%;
  }
  div.lp-br01-page section.questions .question-item__icon--question {
    font-size: 22px;
  }
  div.lp-br01-page section.questions .question-item__icon--answer {
    font-size: 18px;
  }
  div.lp-br01-page section.questions .question-item__txt {
    width: 92%;
  }
  div.lp-br01-page section.questions .question-item__txt--question {
    font-size: 18px;
  }
  div.lp-br01-page section.questions .question-item__txt--answer {
    font-size: 16px;
  }
}
div.lp-br01-page section.interview h2.top-section-title img {
  width: 60px;
}
div.lp-br01-page section.interview h2.top-section-title span {
  position: relative;
  top: 7px;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article {
  margin: 0 10px 50px 10px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 330px;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-image {
  width: 100%;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 5px 5px 0 0;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content {
  padding: 25px 15px;
  height: 350px;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content {
    height: 300px;
  }
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-sub {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-sub {
    font-size: 14px;
  }
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name {
    font-size: 20px;
  }
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name span {
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-school-name span {
    font-size: 14px;
  }
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content hr {
  color: #4C8BCE;
  size: 1px;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-message {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-message {
    font-size: 14px;
  }
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-more {
  text-align: right;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-article .interview-content .interview-more a {
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}
div.lp-br01-page section.interview .content .interview-articles-wrap .interview-articles:after {
  content: "";
  display: block;
  width: 330px;
  height: 0;
}
div.lp-br01-page section.interview .content .more_btn {
  display: block;
  width: 220px;
  height: 50px;
  border-radius: 6px;
  background-color: #4C8BCE;
  color: #ffffff;
  line-height: 50px;
  font-size: 18px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
}
div.lp-br01-page section.school-list {
  text-align: center;
}
div.lp-br01-page section.school-list .school-list-title__img {
  width: 50px;
  margin-right: 5px;
  position: relative;
  top: 8px;
}
div.lp-br01-page section.school-list .school-list-container__separator {
  border-top: 1px solid #E1E1E1;
  margin: 15px 0;
}
div.lp-br01-page section.school-list .school-list-item {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.4);
  padding-bottom: 15px;
}
div.lp-br01-page section.school-list .school-list-item__text-area {
  text-align: left;
}
div.lp-br01-page section.school-list .school-list-item__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
div.lp-br01-page section.school-list .school-list-item__contents {
  font-size: 15px;
}
div.lp-br01-page section.school-list .school-list-item__content {
  display: flex;
}
div.lp-br01-page section.school-list .school-list-item__content-title {
  width: 66px;
  position: relative;
  margin-right: 4px;
}
div.lp-br01-page section.school-list .school-list-item__content-title:after {
  content: ":";
  display: inline-block;
  position: absolute;
  right: 0;
}
div.lp-br01-page section.school-list .school-list-item__content-title--adress {
  white-space: nowrap;
}
div.lp-br01-page section.school-list .school-list-item__button {
  display: inline-block;
  width: 150px;
  height: 40px;
  text-decoration: none;
  border-radius: 4px;
  position: absolute;
}
div.lp-br01-page section.school-list .school-list-item__button--voice {
  background-color: #DF8E49;
  left: 0;
}
div.lp-br01-page section.school-list .school-list-item__button--site {
  background-color: #5B88C8;
  right: 0;
}
div.lp-br01-page section.school-list .school-list-item__button-area {
  flex: 0 0 340px;
  width: 340px;
  max-width: 95vw;
  position: relative;
  height: 40px;
}
div.lp-br01-page section.school-list .school-list-item__button-text {
  line-height: 40px;
  color: #ffffff;
  display: block;
  text-align: center;
  position: relative;
}
div.lp-br01-page section.school-list .school-list-item__button-site-icon {
  font-size: 10px;
  position: absolute;
  top: -8px;
  right: 20px;
}
div.lp-br01-page section.school-list .school-list-item__none {
  display: none;
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.school-list .school-list-item {
    display: block;
  }
  div.lp-br01-page section.school-list .school-list-item__text-area {
    margin-bottom: 10px;
  }
  div.lp-br01-page section.school-list .school--no-link {
    display: none;
  }
}
div.lp-br01-page section.company-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}
div.lp-br01-page section.company-section .arschool-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.left {
  padding: 0 40px;
  flex: 1 1 600px;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 {
  margin-bottom: 36px;
  color: #ee3d96;
  font-weight: 600;
  text-align: center;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span {
  display: block;
  font-size: 36px;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
  font-size: 24px;
  margin-bottom: 8px;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.left div.desc {
  font-size: 18px;
}
div.lp-br01-page section.company-section .arschool-info__wrap div.right {
  flex: 0 0 min(450px, 35%);
}
div.lp-br01-page section.company-section .arschool-info__wrap div.right img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.lp-br01-page section.company-section .ceo-info__wrap {
  display: flex;
  margin-bottom: 60px;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.left {
  flex: 0 0 min(400px, 30%);
}
div.lp-br01-page section.company-section .ceo-info__wrap div.left .img__wrap {
  text-align: center;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.left .img__wrap img {
  width: 240px;
  max-width: 100%;
  border-radius: 500px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.lp-br01-page section.company-section .ceo-info__wrap div.right {
  flex: 1 1 500px;
  padding: 0 40px;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 {
  margin-bottom: 36px;
  flex: 1 1 300px;
  color: #000;
  font-weight: 600;
  text-align: left;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span {
  display: inline-block;
  font-size: 36px;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
  font-size: 24px;
  margin-right: 16px;
}
div.lp-br01-page section.company-section .ceo-info__wrap div.right div.desc {
  font-size: 18px;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area {
  display: inline-block;
  background: #ee3d96;
  width: 690px;
  padding: 48px 0 40px 70px;
  border-radius: 20px;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area img.company-logo {
  display: inline-block;
  padding-left: 100px;
  width: 280px;
  margin-bottom: 30px;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area dl {
  display: flex;
  width: 400px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #f878b8;
  margin-bottom: 18px;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area dl dt {
  flex: 0 0 100px;
  text-align: left;
  font-weight: 600;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area dl dd {
  margin-bottom: 6px;
  font-weight: 400;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area dl a.company-link {
  color: #fff;
  text-decoration: none;
}
div.lp-br01-page section.company-section .outline__wrap .outline-area dl a.company-link i {
  font-size: 80%;
  position: relative;
  top: -6px;
  margin-left: 4px;
}
div.lp-br01-page section.company-section .outline__wrap .map-area {
  display: inline-block;
  width: 600px;
  height: 380px;
  margin-left: -180px;
  border-radius: 20px;
  position: relative;
  top: 30px;
}
div.lp-br01-page section.company-section .outline__wrap #access-map-office {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  div.lp-br01-page section.company-section .arschool-info__wrap div.left {
    padding: 0;
    margin-right: 2rem;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 {
    margin-bottom: 20px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span {
    display: block;
    font-size: 30px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
    margin-bottom: 6px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left div.desc {
    font-size: 16px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 {
    margin-bottom: 24px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 30px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 22px;
    margin-right: 8px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right div.desc {
    font-size: 16px;
  }
  div.lp-br01-page section.company-section .outline__wrap {
    text-align: center;
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area {
    text-align: left;
    width: 52vw;
    padding: 20px 0 20px 20px;
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 70px;
    width: 200px;
    margin-bottom: 20px;
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area dl {
    display: block;
    font-size: 12px;
  }
  div.lp-br01-page section.company-section .outline__wrap .map-area {
    display: inline-block;
    width: 52vw;
    height: 420px;
    margin-left: -11vw;
    border-radius: 20px;
    position: relative;
    top: 30px;
  }
  div.lp-br01-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  div.lp-br01-page section.company-section {
    width: auto;
    padding: 30px 0 4rem;
    display: block;
  }
  div.lp-br01-page section.company-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap {
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left {
    flex: 0 0 100%;
    padding: 0;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span {
    font-size: 32px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.left h3 span:first-child {
    font-size: 18px;
  }
  div.lp-br01-page section.company-section .arschool-info__wrap div.right {
    flex: 0 0 100%;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.left {
    flex: 0 0 100%;
    order: 2;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right {
    flex: 0 0 100%;
    order: 1;
    padding: 0;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span {
    font-size: 28px;
  }
  div.lp-br01-page section.company-section .ceo-info__wrap div.right h3 span:first-child {
    font-size: 18px;
    margin-right: 8px;
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area {
    width: 100%;
    padding: 24px 0 24px 0;
    border-radius: 10px;
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area img.company-logo {
    padding-left: 0;
    width: 200px;
    max-width: 50vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  div.lp-br01-page section.company-section .outline__wrap .outline-area dl {
    width: auto;
    display: block;
    margin: 0 2vw 1rem;
  }
  div.lp-br01-page section.company-section .outline__wrap .map-area {
    width: 100%;
    margin-left: 0;
    top: -15px;
  }
  div.lp-br01-page section.company-section .outline__wrap #access-map-office {
    width: 100%;
    height: 100%;
  }
}

/* -----------
LPページ eye-catch
----------- */
#lp-br01-eyecatch {
  display: flex;
}
#lp-br01-eyecatch .left {
  position: relative;
  background-image: url("/img/top/edu-kv-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: right;
}
#lp-br01-eyecatch .left .text {
  display: inline-block;
  text-align: center;
}
#lp-br01-eyecatch .left .text .catch-text1 {
  display: block;
  font-weight: bold;
  text-align: center;
  color: #000;
}
#lp-br01-eyecatch .left .text .catch-text1 .scratch {
  font-size: 42px;
  color: #FFA500;
  text-shadow: -2px -2px 0 #ffffff, -2px 0 0 #ffffff, -2px 2px 0 #ffffff, 0 -2px 0 #ffffff, 0 2px 0 #ffffff, 2px -2px 0 #ffffff, 2px 0 0 #ffffff, 2px 2px 0 #ffffff;
}
#lp-br01-eyecatch .left .text .catch-text2 {
  display: block;
  font-weight: 600;
  text-align: center;
  color: #000;
  position: relative;
}
#lp-br01-eyecatch .left .text .catch-text2:before {
  content: "＼";
  font-size: 70%;
  margin-right: 3px;
}
#lp-br01-eyecatch .left .text .catch-text2:after {
  content: "／";
  font-size: 70%;
  margin-left: 3px;
}
#lp-br01-eyecatch .left div.kv-attrs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
#lp-br01-eyecatch .left div.kv-attrs .kv-attr {
  display: flex;
  gap: 0px 10px;
  justify-content: center;
  align-items: center;
}
#lp-br01-eyecatch .left div.kv-attrs .kv-attr dt {
  color: #ffffff;
  background-color: #299FD0;
  font-size: 13px;
  padding: 2px 4px;
  border-radius: 2px;
}
#lp-br01-eyecatch .left div.kv-attrs .kv-attr dd {
  width: 65%;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 0rem;
}
#lp-br01-eyecatch .left .top-btn-area {
  text-align: center;
  line-height: 60px;
}
#lp-br01-eyecatch .left .top-btn-area .top-btn {
  display: inline-block;
  width: 240px;
  font-size: 20px;
  font-weight: 700;
  color: #cf1313;
  background-color: #FFFFFF;
  border: 2px solid #E23434;
  border-radius: 60px;
  text-decoration: none;
  position: relative;
}
#lp-br01-eyecatch .left .top-btn-area .top-btn:after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
#lp-br01-eyecatch .right {
  flex: 0 0 53%;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-size: cover;
}
#lp-br01-eyecatch .right .box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
#lp-br01-eyecatch .right .box .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-image: url(/img/top/037.jpg);
  /* 背景の画像を指定 */
  background-size: cover;
}

@media screen and (min-width: 1150px) {
  #lp-br01-eyecatch {
    height: calc(100vh - 60px);
    min-height: calc(14vw + 400px);
  }
  #lp-br01-eyecatch .left {
    flex: 0 0 47%;
  }
  #lp-br01-eyecatch .left .text {
    margin-right: min(30px, 3.7vw);
    margin-top: 7vh;
    width: 100%;
  }
  #lp-br01-eyecatch .left .text .catch-text1 {
    font-size: min(42px, 2.2vw);
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  #lp-br01-eyecatch .left .text .catch-text1 .scratch {
    color: #FFA500;
    text-shadow: -2px -2px 0 #ffffff, -2px 0 0 #ffffff, -2px 2px 0 #ffffff, 0 -2px 0 #ffffff, 0 2px 0 #ffffff, 2px -2px 0 #ffffff, 2px 0 0 #ffffff, 2px 2px 0 #ffffff;
  }
  #lp-br01-eyecatch .left .text .catch-text2 {
    font-size: min(28px, 1.6vw);
  }
  #lp-br01-eyecatch .left .text .catch-text2:before {
    content: "＼";
    font-size: 70%;
    margin-right: 3px;
  }
  #lp-br01-eyecatch .left .text .catch-text2:after {
    content: "／";
    font-size: 70%;
    margin-left: 3px;
  }
  #lp-br01-eyecatch .left .text div.kv-logo img {
    width: 80%;
    max-width: 580px;
  }
  #lp-br01-eyecatch .right {
    flex: 0 0 53%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  #lp-br01-eyecatch .left {
    flex: 0 0 50%;
  }
  #lp-br01-eyecatch .left .text {
    width: 100%;
    margin-right: min(70px, 3.7vw);
    margin-top: 7vh;
    margin-bottom: 7vh;
  }
  #lp-br01-eyecatch .left .text .catch-text1 {
    font-size: min(24px, 2.4vw);
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  #lp-br01-eyecatch .left .text .catch-text1 .scratch {
    font-size: min(28px, 3vw);
  }
  #lp-br01-eyecatch .left .text .catch-text2 {
    margin-bottom: 2vh;
    font-size: min(20px, 2.0vw);
  }
  #lp-br01-eyecatch .left .text div.kv-logo img {
    width: 40vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) and (min-width: 768px) and (max-width: 999px) {
  #lp-br01-eyecatch .left .text div.kv-attrs {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 0px 20px;
    margin: 40px 0 10px 0;
    padding-left: 10vw;
    justify-content: center;
  }
  #lp-br01-eyecatch .left .text div.kv-attrs .kv-attr {
    display: flex;
    gap: 0px 10px;
  }
  #lp-br01-eyecatch .left .text div.kv-attrs .kv-attr dt {
    width: 30%;
    color: #ffffff;
    background-color: #299FD0;
    font-size: 14px;
  }
  #lp-br01-eyecatch .left .text div.kv-attrs .kv-attr dd {
    width: 70%;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
    margin-bottom: 0rem;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1149px) {
  #lp-br01-eyecatch .right {
    flex: 0 0 50%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #lp-br01-eyecatch .right img {
    object-fit: contain;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #lp-br01-eyecatch .left {
    width: 100%;
    text-align: center;
  }
  #lp-br01-eyecatch .left .text {
    margin-top: 7vh;
    margin-bottom: 7vh;
  }
  #lp-br01-eyecatch .left .text .catch-text1 {
    font-size: max(20px, 5vw);
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  #lp-br01-eyecatch .left .text .catch-text1 .scratch {
    font-size: max(28px, 8vw);
  }
  #lp-br01-eyecatch .left .text .catch-text2 {
    font-size: max(20px, 5vw);
  }
  #lp-br01-eyecatch .left div.kv-logo img {
    width: 80vw;
  }
  #lp-br01-eyecatch .left div.kv-attrs {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 0px 20px;
    margin: 40px 0 20px 0;
    padding-left: 10vw;
    justify-content: center;
  }
  #lp-br01-eyecatch .left div.kv-attrs .kv-attr {
    display: flex;
    gap: 0px 10px;
  }
  #lp-br01-eyecatch .left div.kv-attrs .kv-attr dt {
    width: 30%;
    color: #ffffff;
    background-color: #299FD0;
    font-size: 14px;
  }
  #lp-br01-eyecatch .left div.kv-attrs .kv-attr dd {
    width: 70%;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
    margin-bottom: 0rem;
    text-align: left;
  }
  #lp-br01-eyecatch .right {
    display: none;
  }
}
div.sc-analysis-page {
  margin-bottom: 100px;
}
div.sc-analysis-page h1.page-title {
  margin-bottom: 80px;
}
div.sc-analysis-page div.content {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  display: flex;
}
div.sc-analysis-page div.content .content-left {
  flex: 0 0 50%;
}
div.sc-analysis-page div.content .content-right {
  flex: 0 0 50%;
  padding-left: 60px;
}
div.sc-analysis-page div.content .content-right img {
  max-width: 100%;
}
div.sc-analysis-page .sc-title-slash {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
div.sc-analysis-page .sc-title-slash .color {
  color: #7FC349;
}
div.sc-analysis-page .sc-title-slash > span {
  display: inline-block;
  position: relative;
}
div.sc-analysis-page .sc-title-slash > span:before, div.sc-analysis-page .sc-title-slash > span:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 32px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
div.sc-analysis-page .sc-title-slash > span:before {
  left: -16px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.sc-analysis-page .sc-title-slash > span:after {
  right: -16px;
  transform: rotate(115deg);
  transform-origin: right center;
}
div.sc-analysis-page .sub-lead {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
div.sc-analysis-page .sub-lead p {
  margin-bottom: 20px;
}
div.sc-analysis-page .input-text {
  font-size: 16px;
}
div.sc-analysis-page .input-text p {
  margin-bottom: 6px;
}
div.sc-analysis-page .input-text .sample {
  color: #666;
  font-size: 90%;
}
div.sc-analysis-page .form-wrap {
  margin-bottom: 20px;
}
div.sc-analysis-page .caution ul {
  font-size: 12px;
  padding: 0 0 0 16px;
  margin: 0;
}

div.sc-analysis-page div.btn-navi-area, div.sc-analysis-result-page div.btn-navi-area {
  text-align: center;
  margin-bottom: 100px;
}
div.sc-analysis-page div.btn-navi-area a.back-btn, div.sc-analysis-result-page div.btn-navi-area a.back-btn {
  display: inline-block;
  border: 2px solid #000;
  border-radius: 8px;
  color: #000;
  height: 60px;
  line-height: 54px;
  padding: 0 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  margin-right: 16px;
  margin-left: 16px;
}
div.sc-analysis-page div.btn-navi-area a.back-btn:after, div.sc-analysis-result-page div.btn-navi-area a.back-btn:after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

@media screen and (max-width: 1150px) {
  div.sc-analysis-page h1.page-title {
    margin-bottom: 80px;
    font-size: 28px;
  }
  div.sc-analysis-page h1.page-title img {
    height: 40px;
  }
  div.sc-analysis-page div.content .content-left {
    flex: 0 0 55%;
    padding-left: 30px;
  }
  div.sc-analysis-page div.content .content-right {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 1000px) {
  div.sc-analysis-page h1.page-title {
    margin-bottom: 40px;
  }
  div.sc-analysis-page div.content {
    width: auto;
    display: block;
  }
  div.sc-analysis-page div.content .content-left {
    margin-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
  }
  div.sc-analysis-page div.content .content-right {
    padding-left: 0;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
  div.sc-analysis-page .input-text, div.sc-analysis-page .form-wrap {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  div.sc-analysis-page h1.page-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
  div.sc-analysis-page h1.page-title img {
    height: 40px;
  }
  div.sc-analysis-page div.content {
    width: auto;
    display: block;
  }
  div.sc-analysis-page div.content .content-left {
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 60px;
  }
  div.sc-analysis-page div.content .content-right {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }
  div.sc-analysis-page .sc-title-slash {
    font-size: 20px;
  }
  div.sc-analysis-page .sc-title-slash > span:before, div.sc-analysis-page .sc-title-slash > span:after {
    bottom: 2px;
    width: 20px;
    height: 2px;
  }
  div.sc-analysis-page .sc-title-slash > span:before {
    left: -10px;
  }
  div.sc-analysis-page .sc-title-slash > span:after {
    right: -10px;
  }
  div.sc-analysis-page .sub-lead {
    font-size: 13px;
  }
  div.sc-analysis-page .input-text {
    font-size: 13px;
    text-align: left;
  }
  div.sc-analysis-page .input-text, div.sc-analysis-page .form-wrap {
    width: auto;
  }
}
div.sc-analysis-result-page {
  margin-bottom: 60px;
}
div.sc-analysis-result-page div.content {
  margin-bottom: 180px;
}

/* --------------
 LP ----
-------------- */
div.download-page > section {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px 60px;
}
div.download-page .page-heading-desc {
  font-size: 18px;
  text-align: center;
}
div.download-page section.file-image-section .file-images-wrap {
  display: flex;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
div.download-page section.file-image-section .file-images-wrap .file-images {
  flex: 0 0 49%;
}
div.download-page section.file-image-section .file-images-wrap .file-images .file-image-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
div.download-page section.file-image-section .file-images-wrap .file-images .file-image-wrap {
  display: flex;
  justify-content: space-around;
}
div.download-page section.file-image-section .file-images-wrap .file-images .file-image-wrap img {
  width: 30%;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.download-page section.download-section .download-desc {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}
div.download-page section.download-section .download-desc p {
  margin-bottom: 4px;
}
div.download-page section.download-section .download-content {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
div.download-page section.download-section .download-content .download-card-area {
  display: flex;
}
div.download-page section.download-section .download-content .download-card-area .card-title-area {
  flex: 0 0 200px;
  font-weight: 700;
}
div.download-page section.download-section .download-content .download-card-area .download-area {
  margin-bottom: 30px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .skill-card-title {
  flex: 0 0 90px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file {
  font-size: 14px;
  margin-right: 16px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file, div.download-page section.download-section .download-content .download-card-area .download-area .download-row .outline-file {
  font-size: 14px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file a, div.download-page section.download-section .download-content .download-card-area .download-area .download-row .outline-file a {
  background: #fafafa;
  white-space: nowrap;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 4px;
  color: #333;
  height: 30px;
  line-height: 28px;
  text-align: center;
  padding: 0px 6px;
  text-decoration: none;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file a i, div.download-page section.download-section .download-content .download-card-area .download-area .download-row .outline-file a i {
  margin-right: 4px;
}
div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file a .file-size, div.download-page section.download-section .download-content .download-card-area .download-area .download-row .outline-file a .file-size {
  font-size: 12px;
  margin-left: 4px;
}
div.download-page section.download-section .download-caution {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
div.download-page section.download-section .download-caution ul li {
  list-style-type: none;
  font-size: 18px;
  margin-bottom: 0.5rem;
  list-style-type: none;
  padding-left: 1em;
  text-indent: -0.5em;
}
div.download-page section.download-section .download-caution ul li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
  color: #299fd0;
  content: "";
}
div.download-page section.terms-of-use .terms-content {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
div.download-page section.terms-of-use .terms-content .content-title {
  font-size: 18px;
  font-weight: 700;
}
div.download-page section.terms-of-use .terms-content .content-desc {
  font-size: 16px;
  padding: 0 16px;
}
div.download-page section.terms-of-use .terms-content .content-desc p {
  margin-bottom: 4px;
}
div.download-page section.skill-assessment-banner-area {
  text-align: center;
  padding-bottom: 0px;
}
div.download-page section.skill-assessment-banner-area .img-skill {
  display: inline-block;
}
div.download-page section.skill-assessment-banner-area .img-skill img {
  width: 700px;
  max-width: 85vw;
}
@media screen and (max-width: 1149px) and (min-width: 768px) {
  div.download-page > section {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  div.download-page section.file-image-section .file-images-wrap {
    width: auto;
  }
  div.download-page section.download-section .download-content {
    width: auto;
  }
  div.download-page section.download-section .download-caution {
    width: auto;
  }
  div.download-page section.terms-of-use .terms-content {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  div.download-page > section {
    padding: 40px 2vw;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  div.download-page .page-heading-desc {
    text-align: left;
    font-size: 14px;
  }
  div.download-page section.file-image-section .file-images-wrap {
    width: auto;
    display: block;
  }
  div.download-page section.file-image-section .file-images-wrap .file-images {
    margin-bottom: 30px;
  }
  div.download-page section.download-section .download-desc {
    text-align: left;
    font-size: 14px;
  }
  div.download-page section.download-section .download-content {
    width: auto;
  }
  div.download-page section.download-section .download-content .download-card-area {
    display: block;
    margin-bottom: 20px;
  }
  div.download-page section.download-section .download-content .download-card-area .card-title-area {
    margin-bottom: 16px;
  }
  div.download-page section.download-section .download-content .download-card-area .download-area {
    margin-bottom: 60px;
  }
  div.download-page section.download-section .download-content .download-card-area .download-area .download-row {
    display: block;
  }
  div.download-page section.download-section .download-content .download-card-area .download-area .download-row .skill-card-title {
    margin-bottom: 6px;
    padding-left: 4px;
  }
  div.download-page section.download-section .download-content .download-card-area .download-area .download-row .editable-file, div.download-page section.download-section .download-content .download-card-area .download-area .download-row .outline-file {
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
  }
  div.download-page section.download-section .download-caution {
    width: auto;
  }
  div.download-page section.download-section .download-caution ul {
    padding-left: 0;
  }
  div.download-page section.download-section .download-caution ul li {
    font-size: 14px;
  }
  div.download-page section.terms-of-use .terms-content {
    width: auto;
  }
  div.download-page section.terms-of-use .terms-content .content-title {
    font-size: 16px;
  }
  div.download-page section.terms-of-use .terms-content .content-desc {
    font-size: 14px;
  }
  div.download-page section.terms-of-use .terms-content .content-desc ul {
    padding-left: 1rem;
  }
}

/* --------------
特別商取引法の表示 ----
-------------- */
div.tokusho-page dl.tokusho-data {
  font-size: 14px;
  margin-bottom: 6rem;
}
div.tokusho-page dl.tokusho-data dt {
  margin-bottom: 0.3rem;
}
div.tokusho-page dl.tokusho-data dd {
  margin-bottom: 1rem;
  padding-left: 1rem;
}

/* --------------
プライバシーステートメント ----
-------------- */
div.pp-page p {
  font-size: 14px;
  margin-bottom: 1.6rem;
}
div.pp-page h3 {
  margin-bottom: 2rem;
}
div.pp-page h4 {
  font-size: 16px;
  font-weight: 600;
}

/* --------------
利用規約 ----
-------------- */
div.terms-page section.jou {
  line-height: 1.7;
  margin-bottom: 2rem;
}
div.terms-page section.jou h4 {
  font-size: 20px;
  font-weight: 600;
}
div.terms-page section.jou p {
  margin-bottom: 0.5em;
}
div.terms-page section.jou ul.kou {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.terms-page section.jou ul.kou li {
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
div.terms-page section.jou ul.gou {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.terms-page section.jou ul.gou li {
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
div.terms-page section.fusoku {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 2rem;
}
div.terms-page section.fusoku ul.updated {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.terms-page section.fusoku ul.updated li {
  margin: 0 0 0.5em 0;
  padding: 0;
}

/* --------------
 会社概要 ----
-------------- */
div.company-page h2.company-title {
  height: 54px;
  text-align: center;
  font-size: 32px;
  margin-bottom: 4rem;
}
div.company-page h2.company-title img {
  display: inline-block;
  max-height: 100%;
  margin-right: 6px;
}
div.company-page div.content > section {
  margin-bottom: 4rem;
}
div.company-page div.content > section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 24px;
  line-height: 60px;
  height: 60px;
}
div.company-page div.content > section h3 .title-icon {
  display: inline-block;
  vertical-align: top;
  max-height: 100%;
}
div.company-page div.content > section div.text {
  font-size: 16px;
}
div.company-page div.content > section.vision div.text {
  font-size: 24px;
  text-align: center;
}
div.company-page div.content > section.staff-section .staff {
  display: flex;
  margin-bottom: 2rem;
}
div.company-page div.content > section.staff-section .staff .left {
  flex: 0 0 140px;
  margin-right: 3rem;
}
div.company-page div.content > section.staff-section .staff .left img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 500px;
  transform: translateY(-50%);
  top: 50%;
  position: relative;
}
div.company-page div.content > section.staff-section .staff .no-image-row {
  flex: 0 0 100%;
}
div.company-page div.content > section.staff-section .staff .staff-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
div.company-page div.content > section.staff-section .staff .staff-prof {
  font-size: 14px;
}
div.company-page div.content > section.about dl {
  display: flex;
}
div.company-page div.content > section.about dl dt {
  flex: 0 0 100px;
  margin-right: 2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  div.static-page {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 32px;
  }
}
/* --------------
 会社概要 ----
-------------- */
@media screen and (max-width: 1149px) {
  div.company-page h2.company-title {
    height: auto;
    font-size: 22px;
    margin-bottom: 3rem;
  }
  div.company-page h2.company-title img {
    display: inline-block;
    width: 50vw;
    max-width: 280px;
    margin-right: 6px;
    margin-bottom: 0.8rem;
  }
  div.company-page h2.company-title span {
    display: block;
  }
  div.company-page div.content > section {
    margin-bottom: 3rem;
  }
  div.company-page div.content > section h3 {
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
  }
  div.company-page div.content > section h3 .title-icon {
    max-height: 100%;
  }
  div.company-page div.content > section div.text {
    font-size: 14px;
  }
  div.company-page div.content > section.vision div.text {
    font-size: 18px;
  }
  div.company-page div.content > section.staff-section .staff {
    display: block;
  }
  div.company-page div.content > section.staff-section .staff .left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  div.company-page div.content > section.staff-section .staff .left img {
    width: 40vw;
    max-width: 200px;
    transform: none;
    position: static;
    margin-bottom: 1rem;
  }
  div.company-page div.content > section.about dl {
    display: block;
  }
  div.company-page div.content > section.about dl dt {
    text-align: left;
    padding-left: 0.3rem;
    margin-bottom: 0.5rem;
  }
  div.company-page div.content > section.about dl dd {
    padding-left: 1.3rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  body {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1149px) {
  /* ------------------------
  見出し h1, h2, h3 ...
  ------------------------ */
  h1.page-title {
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 2rem;
  }
  h1.page-title i {
    font-size: 30px;
    margin-right: 8px;
  }
  h1.page-title img.title-icon {
    height: 40px;
    margin-right: 4px;
  }

  h2.section-title {
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 2rem;
  }
  h2.section-title i {
    font-size: 40px;
    margin-right: 4px;
  }
  h2.section-title img.title-icon {
    height: 40px;
    margin-right: 4px;
  }
}
/* --------------
 会社概要 ----
-------------- */
@media screen and (max-width: 1149px) {
  div.company-page h2.company-title {
    height: auto;
    font-size: 22px;
    margin-bottom: 3rem;
  }
  div.company-page h2.company-title img {
    display: inline-block;
    width: 50vw;
    max-width: 280px;
    margin-right: 6px;
    margin-bottom: 0.8rem;
  }
  div.company-page h2.company-title span {
    display: block;
  }
  div.company-page div.content > section {
    margin-bottom: 3rem;
  }
  div.company-page div.content > section h3 {
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
  }
  div.company-page div.content > section h3 .title-icon {
    max-height: 100%;
  }
  div.company-page div.content > section div.text {
    font-size: 14px;
  }
  div.company-page div.content > section.vision div.text {
    font-size: 18px;
  }
  div.company-page div.content > section.staff-section .staff {
    display: block;
  }
  div.company-page div.content > section.staff-section .staff .left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  div.company-page div.content > section.staff-section .staff .left img {
    width: 40vw;
    max-width: 200px;
    transform: none;
    position: static;
    margin-bottom: 1rem;
  }
  div.company-page div.content > section.about dl {
    display: block;
  }
  div.company-page div.content > section.about dl dt {
    text-align: left;
    padding-left: 0.3rem;
    margin-bottom: 0.5rem;
  }
  div.company-page div.content > section.about dl dd {
    padding-left: 1.3rem;
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=lms.css.map */
