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

------------------------------ */
/* --------------
  変数
-------------- */
/* --------------
  mixin
-------------- */
/*
幅を決めるクラス
 */
/* ------------------------
文字色
------------------------ */
.red-text {
  color: #e23434 !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;
  }
}
div.static-page {
  font-size: 14px;
  width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------
見出し h1, h2, h3 ...
------------------------ */
h1.page-title {
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 48px;
}
h1.page-title i {
  color: #e23434;
  font-size: 46px;
  margin-right: 12px;
  vertical-align: top;
}
h1.page-title img {
  color: #828282;
  height: 60px;
  margin-right: 10px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  h1.page-title {
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    margin-bottom: 30px;
  }
  h1.page-title i {
    font-size: 34px;
    margin-right: 8px;
  }
  h1.page-title img {
    height: 40px;
    margin-right: 6px;
  }
}

/* ------------------
＼ ／ 付きの見出し
------------------ */
/* -- パンくず -- */
nav.ars-breadcrumb-nav {
  position: relative;
  top: 70px;
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1020px) 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 a {
  color: #000;
}
nav.ars-breadcrumb-nav .breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}
@media screen and (max-width: 1020px) {
  nav.ars-breadcrumb-nav {
    margin-top: 0.8rem;
    font-size: 12px;
    top: 0px;
  }
}
@media screen and (max-width: 767px) {
  nav.ars-breadcrumb-nav {
    margin-top: 0.8rem;
    font-size: 12px;
    top: 0px;
  }
}

/* -- クーポンコード -- */
.reg-coupon {
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border-radius: 10px;
}
.reg-coupon .strong {
  font-weight: 700;
  margin: 0 6px 0 0;
}
.reg-coupon__text {
  padding-right: 20px;
}
.reg-coupon__button-area {
  padding-left: 20px;
}
.reg-coupon__button-area .button-get-coupon {
  border-radius: 40px;
  display: inline-block;
  padding: 6px 12px;
  font-size: 16px;
  border: 1px solid #000;
  background-color: #eee;
  color: #000;
}
.reg-coupon .coupon-button-area {
  text-align: center;
}
.reg-coupon .coupon-code-area {
  display: none;
  margin: 0 auto;
  font-size: 14px;
}
.reg-coupon .coupon-code-area p {
  margin-bottom: 6px;
  line-height: 2;
}
.reg-coupon .coupon-code-area p:last-child {
  margin-bottom: 0;
}
.reg-coupon .coupon-code-area .coupon-code-label {
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-right: 6px;
  padding-left: 2rem;
}
.reg-coupon .coupon-code-area input[type=text] {
  padding: 2px 10px;
  border-radius: 5px;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #cccccc;
  background-color: #ffffff;
  font-weight: 700;
  color: #e23434;
  width: 8rem;
}
.reg-coupon .coupon-code-area .coupon-code {
  font-weight: 700;
  font-size: 18px;
  color: #e23434;
}
.reg-coupon .coupon-code-area .coupon-copy-button, .reg-coupon .coupon-code-area .coupon-copied {
  display: inline-block;
  width: 4rem;
  text-align: left;
  margin-left: 4px;
}
.reg-coupon .coupon-code-area .coupon-copy-button i, .reg-coupon .coupon-code-area .coupon-copied i {
  font-size: 16px;
}
.reg-coupon .coupon-code-area .coupon-copied {
  display: none;
  color: #53B77F;
  font-size: 12px;
}
.reg-coupon .coupon-code-area .coupon-copied i {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .reg-coupon {
    max-width: 92vw;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    padding: 12px;
    width: auto;
  }
  .reg-coupon__text {
    padding-right: 12px;
  }
  .reg-coupon__button-area {
    padding-left: 12px;
  }
  .reg-coupon__button-area .button-get-coupon {
    padding: 6px 12px;
    font-size: 14px;
  }
}
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;
}

/* -- 一般的なリスト -- */
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}
header div.header-menu {
  width: 100%;
  padding-left: 40px;
  padding-right: 20px;
  padding-top: 4px;
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 70px;
}
header div.header-menu:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-image: url("/img/header/border1.png");
  background-repeat: repeat-x;
}
header div.header-menu div.logo {
  flex-grow: 0;
  flex-shrink: 0;
  height: 60px;
  top: 10px;
  text-align: left;
}
header div.header-menu div.logo a {
  display: block;
  top: 10px;
  position: relative;
}
header div.header-menu div.logo img {
  max-height: 100%;
  width: 160px;
}
header div.header-menu ul.pc-menu {
  flex-grow: 1;
  flex-shrink: 1;
  text-align: right;
  padding: 0;
  margin: 0;
}
header div.header-menu ul.pc-menu li {
  display: inline-block;
  height: 100%;
  padding: 0;
  margin-left: 20px;
  vertical-align: middle;
}
header div.header-menu ul.pc-menu li a {
  display: inline-block;
  text-align: left;
  position: relative;
  padding: 10px 0;
  top: 10px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
header div.header-menu ul.pc-menu li a:hover {
  opacity: 0.6;
}
header div.header-menu ul.arschool-menu {
  display: inline-block;
  height: 36px;
  top: 14px;
  position: relative;
  padding-left: 10px;
  color: #666;
}
header div.header-menu ul.arschool-menu li {
  list-style-type: none;
  padding: 0;
  margin: 0 6px;
  display: inline-block;
}
header div.header-menu ul.arschool-menu li a {
  color: #000;
  text-decoration: none;
}
header div.header-menu ul.arschool-menu li.arschool-link:before {
  content: "";
  padding-right: 18px;
  border-left: 1px solid #ddd;
}
header div.header-menu ul.arschool-menu li.arschool-link a {
  width: 85px;
  display: inline-block;
}
header div.header-menu ul.arschool-menu li.arschool-link a img {
  max-width: 100%;
}
header div.header-menu ul.arschool-menu li.login-link {
  font-weight: 700;
}
header div.header-menu ul.arschool-menu li.trial-link a {
  height: 40px;
  padding: 0 14px 0 6px;
  display: inline-block;
  background: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  color: #53B77F;
  border: 1px solid #53B77F;
  width: 96px;
  font-weight: 700;
  font-size: 14px;
  line-height: 36px;
}
header div.header-menu ul.arschool-menu li.trial-link a:after {
  position: absolute;
  top: 12px;
  right: 0px;
  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: "";
}

@media screen and (max-width: 1020px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    width: 100%;
    height: 53px;
    padding-left: 0;
    padding-right: 0;
  }
  header div.header-menu {
    height: 53px;
    padding-top: 3px;
  }
  header div.header-menu:after {
    height: 2px;
  }
  header div.header-menu div.logo {
    height: 50px;
  }
  header div.header-menu div.logo a {
    height: auto;
    top: 7px;
    left: 5px;
  }
  header div.header-menu div.logo a img {
    width: 120px;
  }
  header div.header-menu ul.pc-menu li {
    margin-left: 15px;
  }
  header div.header-menu ul.pc-menu li a {
    padding: 6px 0;
    top: 10px;
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  header div.header-menu ul.arschool-menu {
    padding-right: 54px;
  }
  header div.header-menu ul.arschool-menu li.trial-link {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    width: 100%;
    height: 53px;
    padding-left: 0;
    padding-right: 0;
  }
  header div.header-menu:after {
    height: 2px;
  }
  header div.header-menu div.logo {
    height: 50px;
    top: 10px;
  }
  header div.header-menu div.logo a {
    height: 100%;
    top: 7px;
    left: 5px;
  }
  header div.header-menu div.logo a img {
    width: 120px;
  }
  header div.header-menu ul.pc-menu {
    display: none;
  }
  header div.header-menu ul.arschool-menu {
    display: none;
  }
}
/*　ハンバーガーボタン　*/
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#hamburger {
  display: block;
  position: fixed;
  z-index: 12;
  right: 13px;
  top: 6px;
  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, #globalMenuSp ul.outer-menu {
  margin: 0 auto;
  padding: 12px 0 0 0;
  width: 100%;
}
#globalMenuSp ul.major-menu li, #globalMenuSp ul.minor-menu li, #globalMenuSp ul.outer-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, #globalMenuSp ul.outer-menu li:last-child {
  padding-bottom: 0;
}
#globalMenuSp ul.major-menu li:hover, #globalMenuSp ul.minor-menu li:hover, #globalMenuSp ul.outer-menu li:hover {
  background: #ddd;
}
#globalMenuSp ul.major-menu li a, #globalMenuSp ul.minor-menu li a, #globalMenuSp ul.outer-menu li a {
  display: block;
  color: #fff;
  padding: 8px 0;
  text-decoration: none;
}
#globalMenuSp ul.major-menu li a {
  font-size: 15px;
}
#globalMenuSp ul.minor-menu {
  margin-bottom: 6px;
  padding-top: 2px;
}
#globalMenuSp ul.minor-menu li {
  padding-left: 28px;
}
#globalMenuSp ul.minor-menu li a {
  font-size: 14px;
  line-height: 18px;
}
#globalMenuSp ul.minor-menu li a i {
  margin-right: 4px;
  font-size: 12px;
}
#globalMenuSp ul.outer-menu {
  border-top: 1px solid #fff;
  margin-bottom: 16px;
  margin-top: 0;
  padding-top: 4px;
}
#globalMenuSp ul.outer-menu li {
  font-size: 12px;
}
#globalMenuSp ul.outer-menu li .edu-blue {
  background: #299fd0;
  color: #fff;
  border-radius: 2px;
  padding: 0 4px;
  font-size: 11px;
  margin-left: 2px;
}
#globalMenuSp.active {
  opacity: 100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: block;
  visibility: visible;
}

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

  #globalMenuSp {
    display: none;
  }
}
footer {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  padding: 34px 25px 50px;
  display: flex;
  flex-wrap: wrap;
}
footer p.minecraft-caution {
  flex: 0 0 100%;
  font-size: 11px;
  margin: 0 0 24px 0;
  padding: 6px;
  bottom: -20px;
  right: 0;
  text-align: right;
}
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;
  padding-right: 40px;
}
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-education {
  flex-grow: 0;
  flex-shrink: 0;
  display: inline-block;
  width: 135px;
  border-left: 1px solid #aaa;
  height: 36px;
  position: relative;
  padding-left: 10px;
}
footer div.footer-to-education a {
  color: #666;
  top: -9px;
  position: relative;
}
footer div.footer-to-education a:hover {
  opacity: 0.6;
}
footer div.footer-to-education a > span {
  position: relative;
  top: -2px;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
footer div.footer-to-education a span.line1 {
  top: 2px;
  font-size: 12px;
  font-weight: 700;
}
footer div.footer-to-education a span.line1 span {
  display: inline-block;
}
footer div.footer-to-education a span.line1 .edu-blue {
  background: #299fd0;
  color: #fff;
  border-radius: 2px;
  padding: 0 4px;
  font-size: 11px;
  margin-left: 2px;
}

@media screen and (max-width: 1020px) {
  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;
    padding: 0 10px 24px;
    display: block;
  }
  footer div.footer-logo {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
  footer div.footer-logo img {
    max-width: 40vw;
  }
  footer div.footer-menu {
    padding-right: 0;
  }
  footer div.copyright {
    margin-top: 12px;
  }
  footer ul {
    margin-bottom: 12px;
  }
  footer ul li {
    margin: 0 10px 12px 0;
  }
  footer div.footer-to-education {
    display: block;
    width: auto;
    border-left: none;
    height: auto;
    padding-left: 0;
    text-align: center;
  }
  footer div.footer-to-education a {
    display: inline-block;
    top: 0;
    position: static;
    width: 160px;
  }
}
*:focus {
  outline: none;
}

#main {
  padding-top: 70px;
}

@media screen and (max-width: 1020px) {
  body {
    padding-top: 53px;
  }

  #main {
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 53px;
  }

  #main {
    padding-top: 0;
  }
}
div.top-page * {
  flex-wrap: wrap;
}
div.top-page section.park-eye-catch-pc {
  margin-bottom: 70px;
  position: relative;
}
div.top-page section.park-eye-catch-pc img.kv {
  max-width: 100%;
}
div.top-page section.park-eye-catch-sp {
  display: none;
  position: relative;
}
div.top-page .kv-txt {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-weight: 600;
}
div.top-page .kv-txt--pc {
  bottom: 2.4vw;
}
div.top-page .kv-txt--pc .kv-txt-top {
  line-height: 2.4vw;
}
div.top-page .kv-txt--pc .kv-txt-big {
  font-size: 2.4vw;
}
div.top-page .kv-txt--pc .kv-txt-small {
  font-size: 2vw;
}
div.top-page .kv-txt--sp {
  top: 50%;
  width: 100%;
}
div.top-page .kv-txt--sp .kv-txt-top {
  line-height: 4.1vw;
}
div.top-page .kv-txt--sp .kv-txt-bottom {
  line-height: 5.5vw;
}
div.top-page .kv-txt--sp .kv-txt-big {
  font-size: 4.1vw;
}
div.top-page .kv-txt--sp .kv-txt-small {
  font-size: 3.4vw;
}
div.top-page .kv-txt .kv-txt-line {
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
@media screen and (max-width: 767px) {
  div.top-page section.park-eye-catch-pc {
    display: none;
  }
  div.top-page section.park-eye-catch-sp {
    display: block;
    width: 100%;
    padding-top: 53px;
    margin-top: -53px;
    margin-bottom: 40px;
    background-color: #f9f9f1;
  }
  div.top-page section.park-eye-catch-sp img {
    width: 100%;
  }
}
div.top-page .section-title {
  height: auto;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
}
div.top-page .section-title span {
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  top: 16px;
}
div.top-page .section-title span::before, div.top-page .section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
div.top-page .section-title span::before {
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.top-page .section-title span::after {
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  div.top-page .section-title span {
    font-size: 28px;
  }
  div.top-page .section-title span::before, div.top-page .section-title span::after {
    bottom: 2px;
    width: 30px;
    height: 3px;
  }
  div.top-page .section-title span::before {
    left: -20px;
  }
  div.top-page .section-title span::after {
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page .section-title {
    font-size: 22px;
    line-height: 44px;
    margin-bottom: 40px;
  }
  div.top-page .section-title span {
    font-size: 22px;
  }
  div.top-page .section-title span::before, div.top-page .section-title span::after {
    bottom: 2px;
    width: 22px;
    height: 3px;
  }
  div.top-page .section-title span::before {
    left: -12px;
  }
  div.top-page .section-title span::after {
    right: -12px;
  }
}
div.top-page .read-more {
  text-align: center;
}
div.top-page .read-more a.read-more-btn {
  display: inline-block;
  border-radius: 100px;
  border: 2px solid #000;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 0px 40px 0 30px;
  height: 50px;
  position: relative;
}
div.top-page .read-more a.read-more-btn span {
  display: inline-block;
  height: 46px;
  line-height: 46px;
}
div.top-page .read-more a.read-more-btn i {
  margin-right: 8px;
  position: relative;
  top: 2px;
  font-size: 140%;
}
div.top-page .read-more a.read-more-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: 0px;
  top: 15px;
  content: "";
}
div.top-page .read-more a.read-more-btn:hover {
  opacity: 0.7;
}
div.top-page section.recipes {
  margin-bottom: 120px;
}
div.top-page section.recipes div.recipe-list {
  display: flex;
  justify-content: center;
  width: 1000px;
  max-width: 100vw;
  margin: 0 auto;
}
div.top-page section.recipes div.recipe-list a.recipe {
  display: block;
  width: 260px;
  margin: 0 10px 40px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
div.top-page section.recipes div.recipe-list a.recipe .recipe-img-wrap {
  margin-bottom: 14px;
}
div.top-page section.recipes div.recipe-list a.recipe .recipe-img-wrap img {
  width: 260px;
  height: 145px;
  object-fit: cover;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 4px -4px rgba(0, 0, 0, 0.1);
}
div.top-page section.recipes div.recipe-list a.recipe .recipe-title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  padding: 0 6px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  div.top-page section.recipes div.recipe-list a.recipe {
    width: 320px;
  }
  div.top-page section.recipes div.recipe-list a.recipe .recipe-img-wrap img {
    width: 320px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.recipes div.recipe-list {
    display: block;
    width: auto;
  }
  div.top-page section.recipes div.recipe-list a.recipe {
    width: 90vw;
    margin: 0 auto 40px;
  }
  div.top-page section.recipes div.recipe-list a.recipe .recipe-img-wrap {
    text-align: center;
  }
  div.top-page section.recipes div.recipe-list a.recipe .recipe-img-wrap img {
    width: 80vw;
    height: 50vw;
  }
  div.top-page section.recipes div.recipe-list a.recipe .recipe-title {
    text-align: center;
  }
}
div.top-page section.tools {
  margin-bottom: 120px;
}
div.top-page section.tools div.section-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}
div.top-page section.tools div.section-lead p {
  margin-bottom: 4px;
}
div.top-page section.tools .tool-content {
  width: 900px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}
div.top-page section.tools .tool-content h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
div.top-page section.tools .tool-material {
  width: 700px;
  max-width: 100vw;
  margin: 0 auto 100px;
  display: flex;
}
div.top-page section.tools .tool-material .left {
  flex: 0 0 360px;
  padding: 0 16px;
}
div.top-page section.tools .tool-material .left img {
  max-width: 100%;
}
div.top-page section.tools .tool-material .right {
  padding-left: 20px;
  flex: 1 1 340px;
}
div.top-page section.tools .tool-material .right .tool-material-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
div.top-page section.tools .tool-material .right .tool-material-text {
  font-size: 16px;
  margin-bottom: 32px;
}
div.top-page section.tools .tool-material div.to-detail {
  padding-left: 60px;
}
div.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: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #299fd0;
  filter: drop-shadow(0px 3px 4px rgba(66, 75, 105, 0.22));
}
div.top-page section.tools .tool-material div.to-detail a.to-detail-btn i.bi {
  position: absolute;
  right: 0;
  top: 10px;
}
div.top-page section.tools .tool-typing .tool-typing-sub-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
div.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.top-page section.tools .tool-typing .tools {
  display: flex;
  flex-wrap: wrap;
  width: 540px;
  margin: 0 auto 60px;
}
div.top-page section.tools .tool-typing .tools .tool {
  flex: 0 0 49%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
div.top-page section.tools .tool-typing .tools .tool__image-area {
  flex: 0 0 100%;
  margin-bottom: 18px;
}
div.top-page section.tools .tool-typing .tools .tool__image-area img {
  max-width: 100%;
}
div.top-page section.tools .tool-typing .tools .tool__desc-area {
  flex: 0 0 100%;
  text-align: center;
}
div.top-page section.tools .tool-typing .tools .tool__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
div.top-page section.tools .tool-typing .tools .tool__download {
  text-align: center;
}
div.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;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  div.top-page section.tools .tool-content {
    width: auto;
  }
  div.top-page section.tools .tool-content h3 {
    font-size: 22px;
  }
  div.top-page section.tools .tool-material {
    display: block;
    width: auto;
  }
  div.top-page section.tools .tool-material .left {
    margin-bottom: 16px;
    text-align: center;
  }
  div.top-page section.tools .tool-material .left img {
    max-width: 90%;
  }
  div.top-page section.tools .tool-material .right {
    padding-left: 16px;
    padding-right: 16px;
  }
  div.top-page section.tools .tool-material div.to-detail {
    text-align: center;
    padding-left: 0px;
  }
  div.top-page section.tools .tool-typing .tool-typing-sub-lead {
    width: auto;
    padding: 0 16px;
  }
  div.top-page section.tools .tool-typing .tools {
    display: block;
    width: auto;
  }
  div.top-page section.tools .tool-typing .tools .tool {
    margin-bottom: 36px;
  }
  div.top-page section.tools .tool-typing .tools .tool__image-area {
    text-align: center;
  }
  div.top-page section.tools .tool-typing .tools .tool__image-area img {
    max-width: 80%;
  }
  div.top-page section.tools .tool-typing .tools .tool__title {
    font-size: 18px;
  }
}
div.top-page section.minecraft-section {
  width: 1000px;
  max-width: 100vw;
  margin: 0 auto 120px;
}
div.top-page section.minecraft-section div.section-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 700;
}
div.top-page section.minecraft-section div.section-lead p {
  margin-bottom: 4px;
}
div.top-page section.minecraft-section div.minecraft-content {
  margin-bottom: 60px;
}
div.top-page section.minecraft-section h3.content-heading {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
div.top-page section.minecraft-section p.content-sub-heading {
  font-size: 18px;
  text-align: center;
}
div.top-page section.minecraft-section p.content-sub-heading .emp {
  font-weight: 600;
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
div.top-page section.minecraft-section div.event-list {
  display: flex;
  justify-content: center;
  width: 1000px;
  max-width: 100vw;
  margin: 0 auto;
}
div.top-page section.minecraft-section div.event-list a.event {
  display: block;
  width: 260px;
  margin: 0 10px 40px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
}
div.top-page section.minecraft-section div.event-list a.event .event-img-wrap {
  margin-bottom: 0px;
  width: 260px;
  height: 173px;
}
div.top-page section.minecraft-section div.event-list a.event .event-img-wrap img {
  width: 260px;
  height: 173px;
  object-fit: cover;
}
div.top-page section.minecraft-section div.event-list a.event .event-title {
  padding: 10px 6px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}
div.top-page section.minecraft-section div.circle-time {
  width: 800px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
div.top-page section.minecraft-section div.circle-time .left {
  flex: 0 0 400px;
}
div.top-page section.minecraft-section div.circle-time .left img {
  max-width: 100%;
}
div.top-page section.minecraft-section div.circle-time .right {
  flex: 1 1 400px;
  font-size: 18px;
  padding-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  div.top-page section.minecraft-section div.event-list {
    justify-content: space-around;
  }
  div.top-page section.minecraft-section div.event-list a.event {
    width: 230px;
  }
  div.top-page section.minecraft-section div.event-list a.event .event-img-wrap {
    width: 100%;
  }
  div.top-page section.minecraft-section div.event-list a.event .event-img-wrap img {
    width: 100%;
  }
  div.top-page section.minecraft-section div.circle-time .left {
    flex: 0 0 40vw;
  }
  div.top-page section.minecraft-section div.circle-time .right {
    flex: 1 1 50vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  div.top-page section.minecraft-section {
    width: auto;
  }
  div.top-page section.minecraft-section div.section-lead {
    padding: 0 16px;
  }
  div.top-page section.minecraft-section p.content-sub-heading {
    padding: 0 16px;
  }
  div.top-page section.minecraft-section div.event-list {
    display: block;
    width: auto;
  }
  div.top-page section.minecraft-section div.event-list a.event {
    width: 86vw;
    margin: 0 auto 40px;
  }
  div.top-page section.minecraft-section div.event-list a.event .event-img-wrap {
    width: 86vw;
  }
  div.top-page section.minecraft-section div.event-list a.event .event-img-wrap img {
    width: 100%;
  }
  div.top-page section.minecraft-section div.circle-time {
    width: auto;
    padding: 0 16px;
    display: block;
  }
}
div.top-page section.company-section {
  width: 1150px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
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 16px 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%;
  }
}

body.park-login-page {
  background-image: url("/img/park/login/login-bg2.png");
  background-repeat: repeat;
}
@media screen and (min-resolution: 192dpi) {
  body.park-login-page {
    background-image: image-set(url("/img/park/login/login-bg2.png") 1x, url("/img/park/login/login-bg2@2x.png") 2x);
    background-image: -webkit-image-set(url("//img/park/login/login-bg2.png") 1x, url("/img/park/login/login-bg2@2x.png") 2x);
  }
}
body.park-login-page .park-login-tabs {
  width: 900px;
  margin: 40px auto 0;
  padding: 0;
}
body.park-login-page .park-login-tabs .login-tab {
  margin: 0 3px -1px 0;
  list-style-type: none;
  display: inline-block;
  width: 186px;
  height: 70px;
  text-align: center;
}
body.park-login-page .park-login-tabs .login-tab a {
  display: inline-block;
  padding: 8px 0 0 0;
  background: #f0f0f0;
  text-decoration: none;
  border: 1px solid #ddd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-color: #ddd;
  height: 100%;
  width: 100%;
}
body.park-login-page .park-login-tabs .login-tab--active a {
  background: #fff;
  border-bottom-color: #fff;
}
body.park-login-page .park-login-tabs .login-tab.login-tab--student {
  margin-left: 120px;
}
body.park-login-page .park-login-tabs .login-tab .service {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
body.park-login-page .park-login-tabs .login-tab--park .service {
  color: #e23434;
}
body.park-login-page .park-login-tabs .login-tab--edu .service {
  color: #299fd0;
}
body.park-login-page .park-login-tabs .login-tab .user-type {
  display: inline-block;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #666;
  margin-top: -2px;
}
body.park-login-page .park-login-tabs .login-tab--active .user-type {
  color: #e23434;
  padding: 0 6px 0px;
  border-bottom: 3px solid #e23434;
}
body.park-login-page .park-login-body {
  width: 900px;
  margin: 0 auto 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 60px 0 90px;
}
body.park-login-page .park-login-body .login-title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
body.park-login-page .park-login-body .login-title__icon {
  display: block;
  position: relative;
  top: 4px;
}
body.park-login-page .park-login-body .login-title__icon .character {
  width: 37px;
  position: relative;
  z-index: 2;
}
body.park-login-page .park-login-body .login-title__icon .bi {
  font-size: 60px;
  color: #777;
  margin-left: -30px;
}
body.park-login-page .park-login-body .login-title__text {
  display: block;
  font-weight: 700;
  margin-left: 12px;
}
body.park-login-page .park-login-body .login-title__text-service {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-bottom: 12px;
}
body.park-login-page .park-login-body .login-title__text-type {
  font-size: 32px;
}
body.park-login-page .park-login-body .login-title__text-type .red-text {
  color: #e23434;
}
body.park-login-page .park-login-body .login-form-wrap {
  text-align: center;
}
body.park-login-page .park-login-body .login-form-wrap img {
  width: 600px;
}

div.reg-page .page-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 8px;
}
div.reg-page .page-description .strong {
  font-weight: 700;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 10px;
}
div.reg-page .page-description-sub {
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
}
div.reg-page .reg-flow {
  margin-bottom: 80px;
}
div.reg-page .reg-flow-steps {
  margin-bottom: 32px;
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
}
div.reg-page .reg-flow-step {
  display: inline-block;
  height: 100%;
  position: relative;
  padding-bottom: 10px;
}
div.reg-page .reg-flow-step-icon {
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #f0f0f0;
  text-align: center;
  margin-right: 6px;
  position: relative;
}
div.reg-page .reg-flow-step-icon i {
  position: relative;
  top: 4px;
  font-size: 28px;
  color: #999;
}
div.reg-page .reg-flow-step-text {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}
div.reg-page .reg-flow-step--active {
  border-bottom: 2px solid #e23434;
}
div.reg-page .reg-flow-step--active i {
  color: #e23434;
}
div.reg-page .reg-flow-step--active .reg-flow-step-text {
  color: #000;
}
div.reg-page .reg-flow-step-arrow {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div.reg-page .reg-flow-step-arrow i {
  font-size: 22px;
  color: #777;
}
div.reg-page section.reg-form-wrap {
  margin-bottom: 100px;
}
div.reg-page section.reg-form-wrap h3.reg-form-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 32px;
}
div.reg-page section.reg-form-wrap a.dummy-img {
  display: block;
  width: 742px;
  margin: 0 auto;
}
div.reg-page section.reg-form-wrap a.dummy-img img {
  max-width: 100%;
}
div.reg-page .reg-message {
  margin: 100px auto;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.reg-page .reg-message {
    font-size: 16px;
  }
}

div.price-page .campaign-caution {
  color: #e23434;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}
div.price-page .opening-caution {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
div.price-page .page-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
div.price-page section.price {
  margin-bottom: 160px;
}
div.price-page section.price div.price__category {
  padding: 0;
  margin: 0 auto 60px;
  width: 700px;
}
div.price-page section.price div.price__category .price__category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 48px;
}
div.price-page section.price div.price__category .price__category-item-heading {
  flex: 0 0 40%;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
div.price-page section.price div.price__category .price__category-item-caution {
  flex: 0 0 100%;
}
div.price-page section.price div.price__category .price__list {
  margin: 0;
  padding: 0;
}
div.price-page section.price div.price__category .price__list li {
  list-style-type: none;
  margin: 0 0 12px;
  padding: 0;
  line-height: 1;
}
div.price-page section.price div.price__category .price__list-item {
  display: flex;
}
div.price-page section.price div.price__category .price__list-item-title {
  display: inline-block;
  width: 140px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
}
div.price-page section.price div.price__category .price__list-item-title--option {
  font-size: 18px;
  line-height: 24px;
}
div.price-page section.price div.price__category .price__list-item-price {
  display: inline-block;
  font-weight: 700;
  width: 170px;
  text-align: right;
  padding-right: 10px;
}
div.price-page section.price div.price__category .price__list-item-price--yen {
  font-size: 28px;
}
div.price-page section.price div.price__category .price__list-item-price--amount {
  font-size: 40px;
}
div.price-page section.price div.price__category .price__list-item-unit {
  font-size: 16px;
  line-height: 40px;
}
div.price-page section.price div.price__category .price__list-item-campaign {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  color: #e23434;
}
div.price-page section.price div.price__category .price__list-item-caution {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
  color: #299fd0;
}
div.price-page section.price div.price__category .price__caution {
  margin: 28px 0 0;
  padding: 0;
}
div.price-page section.price div.price__category .price__caution-item {
  list-style-type: none;
  margin: 0 0 6px;
  padding: 0;
}
div.price-page section.price div.price__category .price__caution-item .strong {
  font-weight: 700;
}
div.price-page section.price div.price__category .price__caution-item: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: "";
  color: #53B77F;
}
div.price-page section.payment {
  width: 700px;
  margin: 0 auto 100px;
}
div.price-page section.payment .payment__heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
div.price-page section.payment .payment__heading i {
  margin-right: 10px;
  font-size: 120%;
  top: 4px;
  position: relative;
}
div.price-page section.payment .payment-item {
  margin-bottom: 40px;
}
div.price-page section.payment .payment-item__heading {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 12px;
}
div.price-page section.payment .payment-item__heading: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: "";
}
div.price-page section.payment .payment-item__desc {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  div.price-page .campaign-caution {
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
  }
  div.price-page .opening-caution {
    font-size: 14px;
    text-align: left;
    padding: 0 10px;
  }
  div.price-page .page-description {
    text-align: left;
    font-size: 14px;
    padding: 0 10px;
  }
  div.price-page section.price {
    margin-bottom: 100px;
  }
  div.price-page section.price div.price__category {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
  div.price-page section.price div.price__category .price__category-item {
    display: block;
    margin-bottom: 28px;
    padding: 26px 10px 32px;
  }
  div.price-page section.price div.price__category .price__category-item-heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
  div.price-page section.price div.price__category .price__list-item-title {
    width: 120px;
    font-size: 20px;
    line-height: 32px;
  }
  div.price-page section.price div.price__category .price__list-item-title--option {
    font-size: 15px;
    line-height: 18px;
  }
  div.price-page section.price div.price__category .price__list-item-price {
    width: 150px;
  }
  div.price-page section.price div.price__category .price__list-item-price--yen {
    font-size: 22px;
  }
  div.price-page section.price div.price__category .price__list-item-price--amount {
    font-size: 30px;
  }
  div.price-page section.price div.price__category .price__list-item-unit {
    line-height: 28px;
  }
  div.price-page section.price div.price__category .price__list-item-campaign {
    font-size: 16px;
    text-align: center;
  }
  div.price-page section.price div.price__category .price__list-item-caution {
    font-size: 16px;
  }
  div.price-page section.price div.price__category .price__caution-item {
    font-size: 14px;
  }
  div.price-page section.price div.price__category .price__caution-item:before {
    margin-right: 2px;
  }
  div.price-page section.payment {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  div.price-page section.payment .payment__heading {
    font-size: 22px;
  }
  div.price-page section.payment .payment__heading i {
    top: 2px;
  }
}

div.reserve-page .campaign-caution {
  color: #e23434;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}
div.reserve-page .page-description {
  text-align: left;
  padding-top: 40px;
  font-size: 18px;
  margin-bottom: 36px;
  width: 320px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  div.reserve-page .campaign-caution {
    font-size: 16px;
    padding: 0 10px;
  }
  div.reserve-page .page-description {
    text-align: left;
    font-size: 16px;
    padding: 24px 10px 0;
  }
}

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 div.by-form h3, div.inquiry-page div.by-email h3, div.inquiry-page div.by-tel h3, div.inquiry-page div.by-line h3 {
  font-size: 24px;
  font-weight: 700;
}
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 .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 .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;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  div.inquiry-page div.by-form h3, div.inquiry-page div.by-email h3, div.inquiry-page div.by-tel h3, div.inquiry-page div.by-line h3 {
    font-size: 22px;
  }
  div.inquiry-page .by-line .line-address {
    font-size: 24px;
    height: 48px;
  }
  div.inquiry-page .by-line .line-address span {
    height: 48px;
    line-height: 48px;
  }
  div.inquiry-page .by-line .line-address i, div.inquiry-page .by-line .line-address img {
    margin-right: 12px;
    font-size: 32px;
  }
  div.inquiry-page .by-line div.guide {
    font-size: 14px;
    padding: 0 10px;
    text-align: left;
  }
  div.inquiry-page .by-line div.line-url {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  div.inquiry-page .by-line div.line-qr img {
    max-width: 70vw;
  }
  div.inquiry-page .email-address, div.inquiry-page .tel-number {
    font-size: 22px;
    height: 48px;
  }
  div.inquiry-page .email-address span, div.inquiry-page .tel-number span {
    height: 48px;
    line-height: 48px;
  }
  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: 12px;
    font-size: 32px;
  }
}

div.function-page .function {
  width: 900px;
  margin: 0 auto 100px;
}
div.function-page .function .heading {
  margin-bottom: 40px;
  text-align: center;
}
div.function-page .function .heading-icon {
  display: inline-block;
  vertical-align: middle;
  background: #81BEF6;
  border-radius: 40px;
  width: 56px;
  height: 56px;
  text-align: center;
  margin-right: 16px;
}
div.function-page .function .heading-icon.programming {
  background: #F681DD;
}
div.function-page .function .heading-icon i {
  color: #fff;
  font-size: 32px;
  line-height: 56px;
}
div.function-page .function .heading-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 36px;
  font-weight: 700;
}
div.function-page .function .explanation {
  display: flex;
  padding-left: 24px;
  margin-bottom: 24px;
}
div.function-page .function .explanation .left-col .emp {
  color: #e23434;
}
div.function-page .function .explanation .feature-img-wrapper {
  flex: 0 0 360px;
  margin-left: 36px;
}
div.function-page .function .explanation .feature-img-wrapper img {
  max-width: 100%;
}
div.function-page .function .desc {
  font-size: 16px;
  font-weight: 700;
}
div.function-page .function .attributes dl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
div.function-page .function .attributes dl dt {
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background: #299fd0;
  font-weight: 400;
  padding: 4px 6px;
  margin-right: 0.2rem;
  border-radius: 4px;
}
div.function-page .function .attributes dl dd {
  display: inline-block;
  margin-right: 1.2rem;
}
div.function-page .function .attributes dl .small {
  font-size: 85%;
}
div.function-page .function .item {
  margin-bottom: 40px;
  padding-left: 24px;
}
div.function-page .function .item__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
div.function-page .function .item__heading .small {
  font-size: 85%;
}
div.function-page .function .item__heading i {
  font-size: 26px;
  margin-right: 8px;
  top: 1px;
  position: relative;
  color: #299fd0;
}
div.function-page .function .event-calendar-wrap {
  display: flex;
}
div.function-page .function .event-calendar-wrap .left {
  flex: 0 0 500px;
}
div.function-page .function .event-calendar-wrap .right {
  position: relative;
  margin-left: 60px;
}
div.function-page .function .event-calendar-wrap .right .img-wrap {
  position: relative;
}
div.function-page .function .event-calendar-wrap .right .img-wrap img {
  width: 240px;
  border: 1px solid #ccc;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.function-page .function .event-calendar-wrap .right .btn-wrap {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
div.function-page .function .event-calendar-wrap .right .btn-wrap a {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  border: 1px solid #333;
  border-radius: 40px;
  padding: 6px 20px 6px 12px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}
div.function-page .function .event-calendar-wrap .right .btn-wrap a:hover {
  color: #777;
  border-color: #777;
}
div.function-page .function .event-calendar-wrap .right .btn-wrap a: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: 0px;
  top: 9px;
  content: "";
}
div.function-page .function ul.event-calendar {
  margin: 0;
  padding: 0;
}
div.function-page .function ul.event-calendar li {
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  list-style-type: none;
  position: relative;
  font-size: 16px;
}
div.function-page .function ul.event-calendar 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;
  position: absolute;
  left: 0px;
  top: 7px;
  content: "";
  font-size: 70%;
}
div.function-page .function ul.event-calendar li .event-time {
  margin-right: 10px;
}
div.function-page .function ul.event-calendar li .event-time .date {
  font-size: 16px;
}
div.function-page .function ul.event-calendar li .event-time .dow {
  font-size: 14px;
}
div.function-page .function ul.event-calendar li .event-time .start-time {
  font-size: 14px;
}
div.function-page .function ul.event-calendar li .genre {
  display: inline-block;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #000;
  padding: 2px 6px;
  font-size: 10px;
}
div.function-page .function ul.event-calendar li .genre.programming {
  background: orange;
  color: #fff;
  border-color: orange;
}
div.function-page .function ul.event-calendar li .genre.technology {
  background: #f5667b;
  color: #fff;
  border-color: #f5667b;
}
div.function-page .function ul.event-calendar li .genre.game {
  background: #4f4fb4;
  color: #fff;
  border-color: #4f4fb4;
}
div.function-page .function ul.event-calendar li .title {
  font-weight: 700;
}
div.function-page .function p.calendar-caution {
  margin-bottom: 14px;
  text-align: left;
  padding-left: 16px;
  font-size: 14px;
}
div.function-page .function .past-circle-times .past-circle-time {
  display: flex;
  margin-bottom: 40px;
}
div.function-page .function .past-circle-times .past-circle-time .left {
  flex: 0 0 300px;
}
div.function-page .function .past-circle-times .past-circle-time .left img {
  max-width: 100%;
}
div.function-page .function .past-circle-times .past-circle-time .right {
  padding-left: 36px;
}
div.function-page .function .past-circle-times .past-circle-time-heading {
  font-size: 18px;
  font-weight: 700;
}
div.function-page .function .past-circle-times .past-circle-time-desc {
  font-size: 16px;
}
div.function-page .function .past-circle-times .past-circle-time-desc p {
  margin-bottom: 6px;
}
div.function-page .function .past-circle-times .past-circle-time-desc p:last-child {
  margin-bottom: 0;
}
div.function-page .function .about-mit-scratch {
  background: #ffffe5;
  border: 1px solid #dede7c;
  padding: 10px;
  font-weight: 400;
  font-size: 80%;
  margin-bottom: 16px;
}
div.function-page .function .about-mit-scratch p {
  margin-bottom: 0;
}
div.function-page .function .about-mit-scratch p.heading {
  margin-bottom: 10px;
  text-align: left;
}
div.function-page .function .scratch-features .scratch-feature {
  display: flex;
  margin-bottom: 40px;
}
div.function-page .function .scratch-features .scratch-feature .left {
  flex: 0 0 280px;
}
div.function-page .function .scratch-features .scratch-feature .left img {
  max-width: 100%;
  border: 1px solid #ccc;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.function-page .function .scratch-features .scratch-feature .right {
  padding-left: 36px;
}
div.function-page .function .scratch-features .scratch-feature-heading {
  font-size: 20px;
  font-weight: 700;
}
div.function-page .function .scratch-features .scratch-feature-desc {
  font-size: 17px;
}
div.function-page .function .scratch-features .scratch-feature-desc p {
  margin-bottom: 6px;
}
div.function-page .function .scratch-features .scratch-feature-desc p:last-child {
  margin-bottom: 0;
}
div.function-page hr.section-separator {
  width: 900px;
  margin: 30px auto 110px;
  color: #777;
}
@media screen and (max-width: 767px) {
  div.function-page .function {
    width: auto;
  }
  div.function-page .function .heading-icon {
    width: 42px;
    height: 42px;
    margin-right: 12px;
  }
  div.function-page .function .heading-icon i {
    font-size: 26px;
    line-height: 42px;
  }
  div.function-page .function .heading-text {
    font-size: 28px;
  }
  div.function-page .function .explanation {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
  div.function-page .function .explanation .left-col {
    margin-bottom: 20px;
  }
  div.function-page .function .explanation .feature-img-wrapper {
    margin-left: 0;
    text-align: center;
  }
  div.function-page .function .explanation .feature-img-wrapper img {
    max-width: 80%;
  }
  div.function-page .function .attributes dl {
    font-size: 16px;
  }
  div.function-page .function .attributes dl dt {
    font-size: 14px;
  }
  div.function-page .function .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  div.function-page .function .item__heading {
    font-size: 20px;
  }
  div.function-page .function .item__heading i {
    font-size: 24px;
  }
  div.function-page .function .event-calendar-wrap {
    display: block;
  }
  div.function-page .function .event-calendar-wrap .left {
    margin-bottom: 24px;
  }
  div.function-page .function .event-calendar-wrap .right {
    position: relative;
    margin-left: 60px;
  }
  div.function-page .function .event-calendar-wrap .right .img-wrap {
    position: relative;
  }
  div.function-page .function .event-calendar-wrap .right .img-wrap img {
    width: 240px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  }
  div.function-page .function .event-calendar-wrap .right .btn-wrap {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  div.function-page .function .event-calendar-wrap .right .btn-wrap a {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    border: 1px solid #333;
    border-radius: 40px;
    padding: 6px 20px 6px 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
  }
  div.function-page .function .event-calendar-wrap .right .btn-wrap a:hover {
    color: #777;
    border-color: #777;
  }
  div.function-page .function .event-calendar-wrap .right .btn-wrap a: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: 0px;
    top: 9px;
    content: "";
  }
  div.function-page .function ul.event-calendar {
    margin: 0;
    padding: 0;
  }
  div.function-page .function ul.event-calendar li {
    margin: 0 0 10px;
    padding: 0 0 0 14px;
    list-style-type: none;
    position: relative;
    font-size: 16px;
  }
  div.function-page .function ul.event-calendar 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;
    position: absolute;
    left: 0px;
    top: 7px;
    content: "";
    font-size: 70%;
  }
  div.function-page .function ul.event-calendar li .event-time {
    margin-right: 10px;
  }
  div.function-page .function ul.event-calendar li .event-time .date {
    font-size: 16px;
  }
  div.function-page .function ul.event-calendar li .event-time .dow {
    font-size: 14px;
  }
  div.function-page .function ul.event-calendar li .event-time .start-time {
    font-size: 14px;
  }
  div.function-page .function ul.event-calendar li .genre {
    display: inline-block;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #000;
    padding: 2px 6px;
    font-size: 10px;
  }
  div.function-page .function ul.event-calendar li .genre.programming {
    background: orange;
    color: #fff;
    border-color: orange;
  }
  div.function-page .function ul.event-calendar li .genre.technology {
    background: #f5667b;
    color: #fff;
    border-color: #f5667b;
  }
  div.function-page .function ul.event-calendar li .genre.game {
    background: #4f4fb4;
    color: #fff;
    border-color: #4f4fb4;
  }
  div.function-page .function ul.event-calendar li .title {
    font-weight: 700;
  }
  div.function-page .function p.calendar-caution {
    margin-bottom: 14px;
    text-align: left;
    padding-left: 16px;
    font-size: 14px;
  }
  div.function-page .function .past-circle-times .past-circle-time {
    display: block;
    padding-right: 10px;
    padding-left: 10px;
  }
  div.function-page .function .past-circle-times .past-circle-time .left {
    text-align: center;
    margin-bottom: 20px;
  }
  div.function-page .function .past-circle-times .past-circle-time .left img {
    max-width: 80%;
  }
  div.function-page .function .past-circle-times .past-circle-time .right {
    padding-left: 0;
  }
  div.function-page .function .past-circle-times .past-circle-time-heading {
    font-size: 18px;
    font-weight: 700;
  }
  div.function-page .function .past-circle-times .past-circle-time-desc {
    font-size: 16px;
  }
  div.function-page .function .past-circle-times .past-circle-time-desc p {
    margin-bottom: 6px;
  }
  div.function-page .function .past-circle-times .past-circle-time-desc p:last-child {
    margin-bottom: 0;
  }
  div.function-page .function .about-mit-scratch {
    background: #ffffe5;
    border: 1px solid #dede7c;
    padding: 10px;
    font-weight: 400;
    font-size: 80%;
    margin-bottom: 16px;
  }
  div.function-page .function .about-mit-scratch p {
    margin-bottom: 0;
  }
  div.function-page .function .about-mit-scratch p.heading {
    margin-bottom: 10px;
    text-align: left;
  }
  div.function-page .function .scratch-features .scratch-feature {
    display: block;
    margin-bottom: 40px;
  }
  div.function-page .function .scratch-features .scratch-feature .left {
    margin-bottom: 20px;
    text-align: center;
  }
  div.function-page .function .scratch-features .scratch-feature .left img {
    max-width: 80%;
  }
  div.function-page .function .scratch-features .scratch-feature .right {
    padding-left: 0;
  }
  div.function-page .function .scratch-features .scratch-feature-heading {
    font-size: 20px;
    font-weight: 700;
  }
  div.function-page .function .scratch-features .scratch-feature-desc {
    font-size: 17px;
  }
  div.function-page .function .scratch-features .scratch-feature-desc p {
    margin-bottom: 6px;
  }
  div.function-page .function .scratch-features .scratch-feature-desc p:last-child {
    margin-bottom: 0;
  }
  div.function-page hr.section-separator {
    width: 90%;
    margin: 30px auto 110px;
    color: #777;
  }
}

div.typing-page h2.tool__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
div.typing-page .tools {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  margin: 0 auto 60px;
}
div.typing-page .tools .tool {
  flex: 0 0 49%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
div.typing-page .tools .tool__image-area {
  flex: 0 0 100%;
  margin-bottom: 18px;
}
div.typing-page .tools .tool__image-area img {
  max-width: 100%;
}
div.typing-page .tools .tool__desc-area {
  flex: 0 0 100%;
  text-align: center;
}
div.typing-page .tools .tool__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
div.typing-page .tools .tool__download {
  text-align: center;
}
div.typing-page .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.typing-page .tools {
    display: block;
    width: auto;
  }
  div.typing-page .tools .tool {
    margin-bottom: 60px;
  }
  div.typing-page .tools .tool__title {
    font-size: 16px;
  }
}

div.monitor-page {
  /* ------------------
  ＼ ／ 付きの見出し
  ------------------ */
}
div.monitor-page {
  padding-bottom: 100px;
}
div.monitor-page section.park-eye-catch {
  background-image: url("/img/monitor/kv_monitor.png");
  height: 500px;
  margin-bottom: 70px;
}
div.monitor-page section.park-eye-catch .center-area {
  width: 900px;
  background: rgba(246, 246, 238, 0.9);
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  padding-top: 50px;
}
div.monitor-page section.park-eye-catch .logo-lead {
  display: flex;
  margin-bottom: 40px;
}
div.monitor-page section.park-eye-catch .logo-lead .logo-wrap {
  flex: 0 0 40%;
  text-align: center;
}
div.monitor-page section.park-eye-catch .logo-lead .logo-wrap img {
  width: 80%;
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h3 span {
  background: linear-gradient(transparent 70%, #ffff7f 70%);
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h2 {
  font-size: 40px;
  margin-bottom: 24px;
  font-weight: 700;
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dt {
  font-size: 14px;
  display: inline-block;
  color: #fff;
  background: #299fd0;
  font-weight: 400;
  padding: 4px 6px;
  margin-right: 0.2rem;
  border-radius: 4px;
}
div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dd {
  display: inline-block;
  margin-right: 1.2rem;
}
div.monitor-page section.park-eye-catch .sub-lead {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
}
div.monitor-page section.park-eye-catch .sub-lead span.marker {
  background: linear-gradient(transparent 80%, #ffce5b 80%);
}
div.monitor-page section.park-eye-catch .reg-flow__button-wrap {
  text-align: center;
}
div.monitor-page section.park-eye-catch .reg-flow__button-wrap a {
  display: inline-block;
  background: #fff;
  color: #e23434;
  border: 2px solid #e23434;
  border-width: 3px;
  padding: 12px 40px 12px 34px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
div.monitor-page section.park-eye-catch .reg-flow__button-wrap a: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: 2px;
  top: 14px;
  font-size: 120%;
  content: "";
  color: #e23434;
}
div.monitor-page section.park-eye-catch .reg-flow__button-wrap a.inactive {
  pointer-events: none;
  border-color: #ccc;
  color: #bbb;
}
div.monitor-page section.park-eye-catch .reg-flow__button-wrap a.inactive:after {
  color: #bbb;
}
div.monitor-page section.top {
  width: 900px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
div.monitor-page section.top .top__heading {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 40px;
}
div.monitor-page section.top .top__heading-lead {
  display: inline-block;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-left: 50px;
}
div.monitor-page section.top .top__heading-lead: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;
  position: absolute;
  left: 0;
  top: -3px;
  content: "";
  font-size: 40px;
  color: #e23434;
}
div.monitor-page section.top .top__heading-lead:after {
  color: #f8dddd;
  font-size: 32px;
  position: absolute;
  transform: rotate(10deg);
  top: -33px;
  right: -56px;
  z-index: -1;
  top: -20px;
  content: "About";
}
div.monitor-page section.top .top__heading-lead .main-lead {
  display: block;
  font-size: 26px;
  margin-bottom: 12px;
}
div.monitor-page section.top .top__heading-sub-lead {
  font-size: 18px;
  font-weight: 700;
}
div.monitor-page section.top .top__desc span.item-number {
  display: inline-block;
  background: #ed3167;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 46px;
  line-height: 30px;
  border: 3px solid #fff;
  text-align: center;
  margin-right: 6px;
}
div.monitor-page section.top .top__desc span.item-number.app-color {
  background: #55658f;
}
div.monitor-page section.top .top__desc-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
div.monitor-page section.top .top__desc-img {
  flex: 0 0 35%;
}
div.monitor-page section.top .top__desc-img img {
  max-width: 100%;
}
div.monitor-page section.top .top__desc-text {
  flex: 0 0 65%;
  font-size: 18px;
}
div.monitor-page section.top .top__desc-text h3 {
  padding-left: 18px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 14px;
}
div.monitor-page section.top .top__desc-text h3 span.ct-badge {
  display: inline-block;
  background: #fff;
  color: orange;
  border: 1px solid orange;
  border-radius: 4px;
  font-size: 15px;
  padding: 0px 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
div.monitor-page section.top .top__desc-text ul {
  margin: 0;
  padding: 0 0 0 6px;
  padding-left: 30px;
}
div.monitor-page section.top .top__desc-text ul li {
  margin: 0 0 10px;
  padding: 0 0 0 1em;
  text-indent: -0.65em;
  list-style-type: none;
}
div.monitor-page section.top .top__desc-text 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;
  content: "";
  color: #53B77F;
}
div.monitor-page section.top .top__desc-text ul li span.marker {
  background: linear-gradient(transparent 70%, #ffff7f 70%);
}
div.monitor-page section.circle-time {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
div.monitor-page section.circle-time .circle-time__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
div.monitor-page section.circle-time .circle-time__heading .small {
  font-size: 80%;
}
div.monitor-page section.circle-time .circle-time__heading i {
  font-size: 36px;
  margin-right: 12px;
  top: 5px;
  position: relative;
  color: #e23434;
}
div.monitor-page section.circle-time .past-circle-times {
  text-align: center;
}
div.monitor-page section.circle-time .past-circle-times img {
  display: inline-block;
  width: 260px;
  margin: 0 8px;
}
div.monitor-page section.service {
  margin-bottom: 160px;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
div.monitor-page section.service .service__sub-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 28px;
}
div.monitor-page section.service .service__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #ddd;
}
div.monitor-page section.service .service__categories .service__category {
  flex: 0 0 23%;
}
div.monitor-page section.service .service__categories .service__category .category-title {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
div.monitor-page section.service .service__categories .service__category .category-title.gakudo-color {
  color: #ed3167;
}
div.monitor-page section.service .service__categories .service__category .category-title.app-color {
  color: #55658f;
}
div.monitor-page section.service .service__categories .service__category .category-attr {
  display: block;
}
div.monitor-page section.service .service__categories .service__category .category-attr ul {
  margin: 0;
  padding: 0;
}
div.monitor-page section.service .service__categories .service__category .category-attr ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
}
div.monitor-page section.service .service__categories .service__items {
  flex: 0 0 77%;
}
div.monitor-page section.service .service__item {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 10px 0 10px 4px;
}
div.monitor-page section.service .service__item:last-child {
  border-bottom: none;
}
div.monitor-page section.service .service__item-icon {
  flex: 0 0 60px;
  text-align: center;
}
div.monitor-page section.service .service__item-icon img {
  max-width: 48px;
  max-height: 48px;
  display: inline-block;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
div.monitor-page section.service .service__item-title {
  flex: 0 0 200px;
  padding-left: 6px;
  border-right: 1px solid #ddd;
}
div.monitor-page section.service .service__item-title-text {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  border-bottom: 1px solid #ed3167;
}
div.monitor-page section.service .service__item-title-text.app-color {
  border-bottom: 1px solid #55658f;
}
div.monitor-page section.service .service__item-title-timing {
  font-weight: 400;
  border: 1px solid orange;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  color: orange;
  display: inline-block;
  position: relative;
  top: -10px;
  right: -4px;
}
div.monitor-page section.service .service__item-desc {
  flex: 1 1 600px;
  font-size: 18px;
  padding: 10px 20px;
}
div.monitor-page section.service .service__more {
  text-align: center;
}
div.monitor-page section.service .service__more a {
  display: inline-block;
  background: #299fd0;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
div.monitor-page section.leader {
  margin-bottom: 160px;
}
div.monitor-page section.leader .leader__desc {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
div.monitor-page section.leader .leader__leaders {
  width: 800px;
  margin: 0 auto;
}
div.monitor-page section.leader .leader__leader {
  display: flex;
  margin-bottom: 60px;
}
div.monitor-page section.leader .leader__leader-img {
  flex: 0 0 200px;
  padding-top: 6px;
}
div.monitor-page section.leader .leader__leader-img img {
  max-width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
div.monitor-page section.leader .leader__leader-attr {
  margin-left: 40px;
}
div.monitor-page section.leader .leader__leader-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
div.monitor-page section.leader .leader__leader-position {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
div.monitor-page section.leader .leader__leader-desc {
  font-size: 16px;
}
div.monitor-page section.price {
  margin-bottom: 160px;
}
div.monitor-page section.price .campaign-caution {
  text-align: center;
  font-weight: 700;
  color: #e23434;
  font-size: 18px;
}
div.monitor-page section.price div.price__category {
  padding: 0;
  margin: 0 auto 60px;
  width: 700px;
}
div.monitor-page section.price div.price__category .price__category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 48px;
}
div.monitor-page section.price div.price__category .price__category-item-heading {
  flex: 0 0 40%;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
div.monitor-page section.price div.price__category .price__category-item-caution {
  flex: 0 0 100%;
}
div.monitor-page section.price div.price__category .price__list {
  margin: 0;
  padding: 0;
}
div.monitor-page section.price div.price__category .price__list li {
  list-style-type: none;
  margin: 0 0 12px;
  padding: 0;
  line-height: 1;
}
div.monitor-page section.price div.price__category .price__list-item {
  display: flex;
}
div.monitor-page section.price div.price__category .price__list-item-title {
  display: inline-block;
  width: 140px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
}
div.monitor-page section.price div.price__category .price__list-item-title--option {
  font-size: 18px;
  line-height: 24px;
}
div.monitor-page section.price div.price__category .price__list-item-price {
  display: inline-block;
  font-weight: 700;
  width: 170px;
  text-align: right;
  padding-right: 10px;
}
div.monitor-page section.price div.price__category .price__list-item-price--yen {
  font-size: 28px;
}
div.monitor-page section.price div.price__category .price__list-item-price--amount {
  font-size: 40px;
}
div.monitor-page section.price div.price__category .price__list-item-unit {
  font-size: 20px;
  line-height: 40px;
}
div.monitor-page section.price div.price__category .price__list-item-campaign {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  color: #e23434;
}
div.monitor-page section.price div.price__category .price__list-item-caution {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
  color: #299fd0;
}
div.monitor-page section.price div.price__category .price__caution {
  margin: 28px 0 0;
  padding: 0;
}
div.monitor-page section.price div.price__category .price__caution-item {
  font-size: 16px;
  list-style-type: none;
  margin: 0 0 6px;
  padding: 0;
}
div.monitor-page section.price div.price__category .price__caution-item: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: "";
  color: #53B77F;
}
div.monitor-page section.price div.price__category .price__caution-item .strong {
  font-weight: 700;
}
div.monitor-page section.reg-flow {
  width: 760px;
  margin: 0 auto 160px;
}
div.monitor-page section.reg-flow .reg-flow-steps {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}
div.monitor-page section.reg-flow .reg-flow-step {
  display: inline-block;
  height: 100%;
  position: relative;
}
div.monitor-page section.reg-flow .reg-flow-step-icon {
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #f0f0f0;
  text-align: center;
  margin-right: 6px;
}
div.monitor-page section.reg-flow .reg-flow-step-icon i {
  position: relative;
  top: 4px;
  font-size: 28px;
  color: #53B77F;
}
div.monitor-page section.reg-flow .reg-flow-step-text {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div.monitor-page section.reg-flow .reg-flow-step-arrow {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div.monitor-page section.reg-flow .reg-flow-step-arrow i {
  font-size: 22px;
  color: #777;
}
div.monitor-page section.reg-flow .reg-flow__desc {
  text-align: center;
  margin-bottom: 48px;
  font-size: 18px;
}
div.monitor-page section.reg-flow .reg-flow__desc .strong {
  font-weight: 700;
  color: #e23434;
}
div.monitor-page section.reg-flow .reg-flow__button-wrap {
  text-align: center;
}
div.monitor-page section.reg-flow .reg-flow__button-wrap a {
  display: inline-block;
  background: #fff;
  color: #e23434;
  border: 2px solid #e23434;
  border-width: 4px;
  padding: 20px 60px 20px 54px;
  border-radius: 30px;
  border-radius: 60px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
div.monitor-page section.reg-flow .reg-flow__button-wrap a: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: 0px;
  right: 4px;
  top: 14px;
  top: 24px;
  font-size: 120%;
  content: "";
  color: #e23434;
}
div.monitor-page section.reg-flow .reg-flow__button-wrap a.inactive {
  pointer-events: none;
  border-color: #ccc;
  color: #bbb;
  border-width: 3px;
  padding: 12px 40px 12px 34px;
  border-radius: 60px;
  border-width: 3px;
  font-size: 20px;
}
div.monitor-page section.reg-flow .reg-flow__button-wrap a.inactive:after {
  color: #bbb;
  right: 2px;
  top: 14px;
}
div.monitor-page section.company {
  width: 1000px;
  margin: 0 auto;
}
div.monitor-page section.company .company__wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
div.monitor-page section.company .company__cover {
  position: relative;
  z-index: 2;
  width: 420px;
  background-color: #fff;
  border: 1px solid #777;
  border-radius: 20px;
  padding: 32px 20px 28px;
  margin: 16px 0 16px 0;
}
div.monitor-page section.company .company__name {
  margin-bottom: 20px;
}
div.monitor-page section.company .company__name span {
  display: block;
  text-align: center;
  font-weight: 700;
}
div.monitor-page section.company .company__name span:first-child {
  font-size: 18px;
  margin-bottom: 6px;
}
div.monitor-page section.company .company__name span:last-child {
  font-size: 26px;
}
div.monitor-page section.company .company__logo {
  text-align: center;
  margin-bottom: 32px;
}
div.monitor-page section.company .company__logo img {
  width: 150px;
}
div.monitor-page section.company .company__schools {
  display: flex;
}
div.monitor-page section.company .company__school-wrap {
  width: 200px;
  margin-left: 30px;
}
div.monitor-page section.company .company__school-pref {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 5px;
}
div.monitor-page section.company .company__school-list {
  margin: 0;
  padding: 0;
}
div.monitor-page section.company .company__school-list li {
  margin: 0 0 8px;
  padding: 0;
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
}
div.monitor-page section.company .company__school-list li a {
  color: #000;
  text-decoration: underline;
}
div.monitor-page section.company .company__school-list li a:hover {
  opacity: 0.7;
}
div.monitor-page section.company .company__school-area {
  font-size: 80%;
}
div.monitor-page section.company .company__outline {
  position: relative;
  z-index: 1;
  width: 540px;
  margin: 0 0 0 -50px;
  background: #ee3d96;
  padding: 40px 0 32px 86px;
  border-radius: 20px;
}
div.monitor-page section.company .company__outline dl {
  display: flex;
  width: 400px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #f878b8;
  margin-bottom: 18px;
}
div.monitor-page section.company .company__outline dl dt {
  flex: 0 0 100px;
  text-align: left;
  font-weight: 700;
}
div.monitor-page section.company .company__outline dl dd {
  margin-bottom: 6px;
  font-weight: 400;
}
div.monitor-page section.company .company__outline dl a.company__outline-link {
  color: #fff;
  text-decoration: none;
}
div.monitor-page section.company .company__outline dl a.company__outline-link i {
  font-size: 80%;
  position: relative;
  top: -6px;
  margin-left: 4px;
}
div.monitor-page h2.section-title {
  margin-bottom: 36px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-weight: 700;
}
div.monitor-page h2.section-title > span {
  font-size: 36px;
  height: 56px;
  line-height: 56px;
  position: relative;
}
div.monitor-page h2.section-title i.title-icon {
  color: #e23434;
  font-size: 56px;
  margin-right: 8px;
  vertical-align: bottom;
}
div.monitor-page h2.section-title img.title-icon {
  display: inline-block;
  height: 60px;
  margin-right: 8px;
  vertical-align: bottom;
}
div.monitor-page h2.title-slash > span {
  display: inline-block;
  position: relative;
}
div.monitor-page h2.title-slash > span:before, div.monitor-page h2.title-slash > span:after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
div.monitor-page h2.title-slash > span:before {
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.monitor-page h2.title-slash > span:after {
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
@media screen and (max-width: 1020px) {
  div.monitor-page section.park-eye-catch .center-area {
    width: auto;
  }
  div.monitor-page section.park-eye-catch .logo-lead .logo-wrap img {
    width: 80%;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h2 {
    font-size: 38px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes {
    font-size: 14px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dt {
    font-size: 13px;
    padding: 3px 6px;
    margin-right: 3px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dd {
    margin-right: 12px;
  }
  div.monitor-page section.top {
    width: auto;
  }
  div.monitor-page section.top .top__desc-img {
    flex: 0 0 35%;
    padding: 0 12px;
  }
  div.monitor-page section.top .top__desc-text {
    padding-left: 20px;
    padding-right: 16px;
  }
  div.monitor-page section.circle-time {
    width: auto;
  }
  div.monitor-page section.circle-time .past-circle-times img {
    width: 30%;
  }
  div.monitor-page section.service {
    margin-bottom: 160px;
    max-width: 900px;
    width: auto;
  }
  div.monitor-page section.service .service__sub-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
  div.monitor-page section.service .service__categories {
    margin-bottom: 20px;
    padding: 0 12px;
  }
  div.monitor-page section.service .service__items {
    margin-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  div.monitor-page section.service .service__item {
    padding: 10px 0 10px 4px;
  }
  div.monitor-page section.service .service__item-icon {
    flex: 0 0 50px;
  }
  div.monitor-page section.service .service__item-icon img {
    max-width: 40px;
    max-height: 40px;
  }
  div.monitor-page section.service .service__item-title {
    flex: 0 0 170px;
    padding-left: 6px;
    border-right: 1px solid #ddd;
  }
  div.monitor-page section.service .service__item-title-text {
    font-size: 16px;
  }
  div.monitor-page section.service .service__item-title-timing {
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 4px;
    top: -10px;
    right: -4px;
  }
  div.monitor-page section.service .service__item-desc {
    flex: 1 1 600px;
    font-size: 15px;
    padding: 10px 20px;
  }
  div.monitor-page section.leader {
    margin-bottom: 160px;
  }
  div.monitor-page section.leader .leader__desc {
    font-size: 20px;
    margin-bottom: 42px;
  }
  div.monitor-page section.leader .leader__leaders {
    max-width: 800px;
    width: auto;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  div.monitor-page section.leader .leader__leader {
    margin-bottom: 60px;
  }
  div.monitor-page section.leader .leader__leader-img {
    flex: 0 0 200px;
    padding-top: 6px;
  }
  div.monitor-page section.leader .leader__leader-img img {
    border-radius: 20px;
  }
  div.monitor-page section.leader .leader__leader-attr {
    margin-left: 40px;
  }
  div.monitor-page section.leader .leader__leader-name {
    font-size: 20px;
    margin-bottom: 6px;
  }
  div.monitor-page section.leader .leader__leader-position {
    font-size: 17px;
    margin-bottom: 12px;
  }
  div.monitor-page section.leader .leader__leader-desc {
    font-size: 15px;
  }
  div.monitor-page section.reg-flow {
    max-width: 760px;
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  div.monitor-page section.reg-flow .reg-flow__guide {
    font-size: 18px;
  }
  div.monitor-page section.reg-flow .reg-flow__case-heading {
    font-size: 22px;
  }
  div.monitor-page section.company {
    max-width: 1120px;
    width: auto;
  }
  div.monitor-page section.company .company__wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  div.monitor-page section.company .company__cover {
    width: 360px;
    border-radius: 20px;
    padding: 26px 16px 20px;
    margin: 16px 0 16px 0;
  }
  div.monitor-page section.company .company__name {
    margin-bottom: 20px;
  }
  div.monitor-page section.company .company__name span:first-child {
    font-size: 16px;
    margin-bottom: 6px;
  }
  div.monitor-page section.company .company__name span:last-child {
    font-size: 22px;
  }
  div.monitor-page section.company .company__school-pref {
    font-size: 13px;
  }
  div.monitor-page section.company .company__school-list li {
    font-size: 14px;
  }
  div.monitor-page section.company .company__school-area {
    font-size: 80%;
  }
  div.monitor-page section.company .company__outline {
    width: 480px;
    margin: 0 0 0 -24px;
    padding: 40px 0 32px 40px;
    border-radius: 20px;
  }
  div.monitor-page section.company .company__outline dl {
    width: 320px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 18px;
  }
  div.monitor-page section.company .company__outline dl dt {
    flex: 0 0 80px;
  }
  div.monitor-page section.company .company__outline dl dd {
    margin-bottom: 6px;
  }
  div.monitor-page section.company .company__outline dl a.company__outline-link i {
    top: -6px;
    margin-left: 4px;
  }
  div.monitor-page section.company .company__ceo {
    margin-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
  div.monitor-page section.company .company__ceo-photo {
    flex: 0 0 min(400px, 30%);
  }
  div.monitor-page section.company .company__ceo-photo img {
    width: 240px;
    max-width: 100%;
  }
  div.monitor-page section.company .company__ceo-info {
    flex: 1 1 500px;
    padding: 0 40px;
  }
  div.monitor-page section.company .company__ceo-info h3 {
    margin-bottom: 24px;
    flex: 1 1 300px;
  }
  div.monitor-page section.company .company__ceo-info h3 span {
    font-size: 26px;
  }
  div.monitor-page section.company .company__ceo-info h3 span:first-child {
    font-size: 16px;
    margin-right: 12px;
  }
  div.monitor-page section.company .company__ceo-info-message {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  div.monitor-page h2.section-title {
    margin-bottom: 28px;
    height: 36px;
    line-height: 36px;
  }
  div.monitor-page h2.section-title > span {
    font-size: 22px;
    height: 36px;
    line-height: 36px;
  }
  div.monitor-page h2.section-title i.title-icon {
    font-size: 28px;
    margin-right: 5px;
  }
  div.monitor-page h2.section-title img.title-icon {
    height: 36px;
    margin-right: 5px;
  }
  div.monitor-page h2.title-slash > span:before, div.monitor-page h2.title-slash > span:after {
    width: 24px;
    height: 3px;
  }
  div.monitor-page h2.title-slash > span:before {
    left: -12px;
  }
  div.monitor-page h2.title-slash > span:after {
    right: -12px;
  }
  div.monitor-page section.park-eye-catch {
    background-image: url("/img/park/monitor/kv_sp.png");
    height: auto;
    padding-bottom: 0;
  }
  div.monitor-page section.park-eye-catch .center-area {
    width: auto;
    background: rgba(249, 249, 241, 0.9);
    height: auto;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  div.monitor-page section.park-eye-catch .logo-lead {
    display: block;
    margin-bottom: 40px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .logo-wrap {
    margin-bottom: 30px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .logo-wrap img {
    width: 50%;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 12px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dt {
    font-size: 11px;
    padding: 2px 3px;
    margin-right: 0.1rem;
    border-radius: 4px;
  }
  div.monitor-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dd {
    display: inline-block;
    margin-right: 0.8rem;
  }
  div.monitor-page section.park-eye-catch .sub-lead {
    padding: 0 10px;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  div.monitor-page section.park-eye-catch .reg-flow__button-wrap a {
    border-width: 3px;
    padding: 8px 28px 8px 20px;
    font-size: 18px;
  }
  div.monitor-page section.park-eye-catch .reg-flow__button-wrap a:after {
    right: 0px;
    top: 12px;
    font-size: 110%;
  }
  div.monitor-page section.top {
    width: auto;
    display: block;
  }
  div.monitor-page section.top .top__heading-lead {
    padding-left: 32px;
    font-size: 24px;
  }
  div.monitor-page section.top .top__heading-lead:before {
    font-size: 28px;
  }
  div.monitor-page section.top .top__heading-lead:after {
    font-size: 26px;
    top: -20px;
    right: -25px;
    top: -16px;
    content: "About";
    font-size: 22px;
  }
  div.monitor-page section.top .top__heading-lead .main-lead {
    font-size: 20px;
  }
  div.monitor-page section.top .top__heading-sub-lead {
    padding: 0 12px;
    font-size: 16px;
  }
  div.monitor-page section.top .top__desc-item {
    display: block;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  div.monitor-page section.top .top__desc-img {
    text-align: center;
    margin-bottom: 20px;
  }
  div.monitor-page section.top .top__desc-img img {
    max-width: 70%;
  }
  div.monitor-page section.top .top__desc-text {
    font-size: 15px;
    padding-left: 0;
  }
  div.monitor-page section.top .top__desc-text h3 {
    font-size: 16px;
    padding-left: 12px;
  }
  div.monitor-page section.top .top__desc-text h3 span.ct-badge {
    margin-left: 4px;
    font-size: 12px;
    padding: 0px 4px;
    top: -2px;
    line-height: 22px;
  }
  div.monitor-page section.top .top__desc-text ul {
    padding-left: 22px;
  }
  div.monitor-page section.top .top__desc span.item-number {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 24px;
  }
  div.monitor-page section.circle-time {
    width: auto;
    margin-bottom: 60px;
  }
  div.monitor-page section.circle-time .circle-time__heading {
    font-size: 20px;
  }
  div.monitor-page section.circle-time .circle-time__heading i {
    font-size: 30px;
    margin-right: 10px;
    top: 3px;
  }
  div.monitor-page section.circle-time .past-circle-times {
    text-align: center;
  }
  div.monitor-page section.circle-time .past-circle-times img {
    width: 70%;
    margin: 0 0 20px;
  }
  div.monitor-page section.service {
    width: auto;
  }
  div.monitor-page section.service .service__sub-title {
    font-size: 18px;
  }
  div.monitor-page section.service .service__categories {
    display: block;
    border-bottom: none;
  }
  div.monitor-page section.service .service__categories .service__category {
    margin-bottom: 16px;
  }
  div.monitor-page section.service .service__categories .service__category .category-attr ul {
    text-align: center;
  }
  div.monitor-page section.service .service__categories .service__category .category-attr ul li {
    display: inline-block;
    margin: 0 12px;
    position: relative;
    padding-left: 16px;
  }
  div.monitor-page section.service .service__categories .service__category .category-attr 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;
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    font-size: 14px;
  }
  div.monitor-page section.service .service__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0 12px 0;
    margin-bottom: 18px;
  }
  div.monitor-page section.service .service__item-icon {
    flex: 0 0 48px;
    padding-left: 8px;
  }
  div.monitor-page section.service .service__item-icon img {
    max-width: 40px;
    max-height: 40px;
  }
  div.monitor-page section.service .service__item-title {
    flex: 1 0 260px;
    border-right-width: 0px;
  }
  div.monitor-page section.service .service__item-title-timing {
    top: -6px;
  }
  div.monitor-page section.service .service__item-desc {
    flex: 0 0 98%;
    padding: 10px 10px;
  }
  div.monitor-page section.leader .leader__desc {
    font-size: 16px;
    margin-bottom: 36px;
  }
  div.monitor-page section.leader .leader__leaders {
    width: auto;
  }
  div.monitor-page section.leader .leader__leader {
    display: block;
  }
  div.monitor-page section.leader .leader__leader-img {
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  div.monitor-page section.leader .leader__leader-attr {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  div.monitor-page section.leader .leader__leader-name {
    font-size: 17px;
    text-align: center;
  }
  div.monitor-page section.leader .leader__leader-position {
    font-size: 14px;
    text-align: center;
  }
  div.monitor-page section.leader .leader__leader-desc {
    font-size: 14px;
  }
  div.monitor-page section.price div.price__category {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
  div.monitor-page section.price div.price__category .price__category-item {
    display: block;
    margin-bottom: 28px;
    padding: 26px 10px 32px;
  }
  div.monitor-page section.price div.price__category .price__category-item-heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
  div.monitor-page section.price div.price__category .price__list-item-title {
    width: 120px;
    font-size: 20px;
    line-height: 32px;
  }
  div.monitor-page section.price div.price__category .price__list-item-title--option {
    font-size: 15px;
    line-height: 18px;
  }
  div.monitor-page section.price div.price__category .price__list-item-price {
    width: 150px;
  }
  div.monitor-page section.price div.price__category .price__list-item-price--yen {
    font-size: 22px;
  }
  div.monitor-page section.price div.price__category .price__list-item-price--amount {
    font-size: 30px;
  }
  div.monitor-page section.price div.price__category .price__list-item-unit {
    font-size: 16px;
    line-height: 28px;
  }
  div.monitor-page section.price div.price__category .price__list-item-campaign {
    font-size: 16px;
    text-align: center;
  }
  div.monitor-page section.price div.price__category .price__list-item-caution {
    font-size: 16px;
  }
  div.monitor-page section.price div.price__category .price__caution-item {
    font-size: 14px;
  }
  div.monitor-page section.price div.price__category .price__caution-item:before {
    margin-right: 2px;
  }
  div.monitor-page section.reg-flow {
    width: auto;
  }
  div.monitor-page section.reg-flow .coupon-code-area {
    width: auto;
  }
  div.monitor-page section.reg-flow .reg-flow-steps {
    height: auto;
    margin-bottom: 20px;
  }
  div.monitor-page section.reg-flow .reg-flow-step {
    text-align: center;
  }
  div.monitor-page section.reg-flow .reg-flow-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 28px;
    margin-right: 2px;
    margin-bottom: 10px;
  }
  div.monitor-page section.reg-flow .reg-flow-step-icon i {
    top: 2px;
    font-size: 24px;
  }
  div.monitor-page section.reg-flow .reg-flow-step-text {
    font-size: 11px;
    top: 0;
    transform: none;
    display: block;
    height: 40px;
  }
  div.monitor-page section.reg-flow .reg-flow-step-arrow {
    margin-left: 12px;
    margin-right: 12px;
  }
  div.monitor-page section.reg-flow .reg-flow-step-arrow i {
    font-size: 15px;
  }
  div.monitor-page section.reg-flow .reg-flow__desc {
    text-align: left;
    margin-bottom: 30px;
    font-size: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  div.monitor-page section.company {
    width: auto;
  }
  div.monitor-page section.company .company__wrap {
    display: block;
  }
  div.monitor-page section.company .company__cover {
    width: auto;
    border: none;
    padding: 0 10px 0;
  }
  div.monitor-page section.company .company__name span:first-child {
    font-size: 16px;
  }
  div.monitor-page section.company .company__name span:last-child {
    font-size: 22px;
  }
  div.monitor-page section.company .company__schools {
    justify-content: center;
  }
  div.monitor-page section.company .company__school-wrap {
    width: 160px;
    margin-left: 0;
  }
  div.monitor-page section.company .company__school-pref {
    font-size: 12px;
  }
  div.monitor-page section.company .company__school-list li {
    font-size: 14px;
  }
  div.monitor-page section.company .company__outline {
    width: auto;
    margin: 0 10px 0;
    padding: 20px 10px 10px;
    border-radius: 10px;
  }
  div.monitor-page section.company .company__outline dl {
    width: auto;
    font-size: 12px;
  }
  div.monitor-page section.company .company__outline dl dt {
    flex: 0 0 90px;
  }
}

div.recruit-page {
  /* ------------------
  ＼ ／ 付きの見出し
  ------------------ */
}
div.recruit-page {
  padding-bottom: 100px;
}
div.recruit-page section.park-eye-catch {
  background-image: url("/img/monitor/kv_monitor.png");
  height: 500px;
  margin-bottom: 70px;
}
div.recruit-page section.park-eye-catch .center-area {
  width: 900px;
  background: rgba(246, 246, 238, 0.9);
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  padding-top: 50px;
}
div.recruit-page section.park-eye-catch .logo-lead {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
}
div.recruit-page section.park-eye-catch .logo-lead .logo-wrap {
  flex: 0 0 40%;
  text-align: center;
}
div.recruit-page section.park-eye-catch .logo-lead .logo-wrap img {
  width: 70%;
}
div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h3 span {
  background: linear-gradient(transparent 70%, #ffff7f 70%);
}
div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h2 {
  font-size: 40px;
  margin-bottom: 0px;
  font-weight: 700;
}
div.recruit-page section.park-eye-catch .sub-lead {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 20px;
}
div.recruit-page section.park-eye-catch .sub-lead span.marker {
  background: linear-gradient(transparent 80%, #ffce5b 80%);
}
div.recruit-page section.park-eye-catch .sub-lead-caution {
  font-size: 16px;
  color: #666;
  width: 600px;
  margin: 0 auto 40px;
}
div.recruit-page section.park-eye-catch .sub-lead-caution p {
  margin-bottom: 6px;
}
div.recruit-page section.park-eye-catch .reg-flow__button-wrap {
  text-align: center;
}
div.recruit-page section.park-eye-catch .reg-flow__button-wrap a {
  display: inline-block;
  background: #fff;
  color: #e23434;
  border: 2px solid #e23434;
  border-width: 3px;
  padding: 12px 40px 12px 34px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
div.recruit-page section.park-eye-catch .reg-flow__button-wrap a: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: 2px;
  top: 14px;
  font-size: 120%;
  content: "";
  color: #e23434;
}
div.recruit-page section.positions {
  width: 700px;
  margin: 0 auto 160px;
}
div.recruit-page section.positions div.position {
  margin-bottom: 80px;
}
div.recruit-page section.positions div.position h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
div.recruit-page section.positions div.position dl {
  font-size: 14px;
  margin-bottom: 0px;
  display: block;
}
div.recruit-page section.positions div.position dl dt {
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  background: #299fd0;
  font-weight: 400;
  padding: 2px 4px;
  margin-right: 0.2rem;
  border-radius: 4px;
}
div.recruit-page section.positions div.position dl dd {
  font-weight: 400;
  display: inline-block;
  margin-right: 1.2rem;
}
div.recruit-page section.positions div.position .desc {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}
div.recruit-page section.positions div.position .desc p {
  margin-bottom: 5px;
}
div.recruit-page section.positions .reg-flow__button-wrap {
  text-align: center;
}
div.recruit-page section.positions .reg-flow__button-wrap a {
  display: inline-block;
  background: #fff;
  color: #e23434;
  border: 2px solid #e23434;
  border-width: 3px;
  padding: 12px 40px 12px 34px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
div.recruit-page section.positions .reg-flow__button-wrap a: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: 2px;
  top: 14px;
  font-size: 120%;
  content: "";
  color: #e23434;
}
div.recruit-page section.services {
  width: 700px;
  margin: 0 auto 100px;
}
div.recruit-page section.services div.service-detail {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
div.recruit-page section.services div.service-detail .left {
  flex: 0 0 30%;
}
div.recruit-page section.services div.service-detail .left img {
  max-width: 100%;
}
div.recruit-page section.services div.service-detail .right {
  flex: 1 1 70%;
  padding-left: 16px;
}
div.recruit-page section.services div.service-detail .right h3 {
  font-size: 18px;
  font-weight: 700;
}
div.recruit-page section.services div.service-detail .right h3 a {
  color: #333;
  text-decoration: underline;
}
div.recruit-page section.services div.service-detail .right h3 a i {
  font-size: 60%;
  position: relative;
  top: -6px;
  margin-left: 8px;
}
div.recruit-page section.services div.service-detail .right .desc {
  font-size: 14px;
}
div.recruit-page section.company {
  width: 1000px;
  margin: 0 auto;
}
div.recruit-page section.company .company__wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
div.recruit-page section.company .company__cover {
  position: relative;
  z-index: 2;
  width: 420px;
  background-color: #fff;
  border: 1px solid #777;
  border-radius: 20px;
  padding: 32px 20px 28px;
  margin: 16px 0 16px 0;
}
div.recruit-page section.company .company__name {
  margin-bottom: 20px;
}
div.recruit-page section.company .company__name span {
  display: block;
  text-align: center;
  font-weight: 700;
}
div.recruit-page section.company .company__name span:first-child {
  font-size: 18px;
  margin-bottom: 6px;
}
div.recruit-page section.company .company__name span:last-child {
  font-size: 26px;
}
div.recruit-page section.company .company__logo {
  text-align: center;
  margin-bottom: 32px;
}
div.recruit-page section.company .company__logo img {
  width: 150px;
}
div.recruit-page section.company .company__schools {
  display: flex;
}
div.recruit-page section.company .company__school-wrap {
  width: 200px;
  margin-left: 30px;
}
div.recruit-page section.company .company__school-pref {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 5px;
}
div.recruit-page section.company .company__school-list {
  margin: 0;
  padding: 0;
}
div.recruit-page section.company .company__school-list li {
  margin: 0 0 8px;
  padding: 0;
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
}
div.recruit-page section.company .company__school-list li a {
  color: #000;
  text-decoration: underline;
}
div.recruit-page section.company .company__school-list li a:hover {
  opacity: 0.7;
}
div.recruit-page section.company .company__school-area {
  font-size: 80%;
}
div.recruit-page section.company .company__outline {
  position: relative;
  z-index: 1;
  width: 540px;
  margin: 0 0 0 -50px;
  background: #ee3d96;
  padding: 40px 0 32px 86px;
  border-radius: 20px;
}
div.recruit-page section.company .company__outline dl {
  display: flex;
  width: 400px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #f878b8;
  margin-bottom: 18px;
}
div.recruit-page section.company .company__outline dl dt {
  flex: 0 0 100px;
  text-align: left;
  font-weight: 700;
}
div.recruit-page section.company .company__outline dl dd {
  margin-bottom: 6px;
  font-weight: 400;
}
div.recruit-page section.company .company__outline dl a.company__outline-link {
  color: #fff;
  text-decoration: none;
}
div.recruit-page section.company .company__outline dl a.company__outline-link i {
  font-size: 80%;
  position: relative;
  top: -6px;
  margin-left: 4px;
}
div.recruit-page section.company .company__ceo {
  display: flex;
  margin-bottom: 60px;
}
div.recruit-page section.company .company__ceo-photo {
  flex: 0 0 min(400px, 30%);
  text-align: center;
}
div.recruit-page section.company .company__ceo-photo img {
  width: 240px;
  max-width: 100%;
  border-radius: 500px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
div.recruit-page section.company .company__ceo-info {
  flex: 1 1 500px;
  padding: 0 40px;
}
div.recruit-page section.company .company__ceo-info h3 {
  margin-bottom: 36px;
  flex: 1 1 300px;
  color: #000;
  font-weight: 700;
  text-align: left;
}
div.recruit-page section.company .company__ceo-info h3 span {
  display: inline-block;
  font-size: 36px;
}
div.recruit-page section.company .company__ceo-info h3 span:first-child {
  font-size: 24px;
  margin-right: 16px;
}
div.recruit-page section.company .company__ceo-info-message {
  font-size: 18px;
}
div.recruit-page h2.section-title {
  margin-bottom: 36px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-weight: 700;
}
div.recruit-page h2.section-title > span {
  font-size: 36px;
  height: 56px;
  line-height: 56px;
  position: relative;
}
div.recruit-page h2.section-title i.title-icon {
  color: #e23434;
  font-size: 56px;
  margin-right: 8px;
  vertical-align: bottom;
}
div.recruit-page h2.section-title img.title-icon {
  display: inline-block;
  height: 60px;
  margin-right: 8px;
  vertical-align: bottom;
}
div.recruit-page h2.title-slash > span {
  display: inline-block;
  position: relative;
}
div.recruit-page h2.title-slash > span:before, div.recruit-page h2.title-slash > span:after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
div.recruit-page h2.title-slash > span:before {
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.recruit-page h2.title-slash > span:after {
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
@media screen and (max-width: 1020px) {
  div.recruit-page section.company {
    max-width: 1120px;
    width: auto;
  }
  div.recruit-page section.company .company__wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  div.recruit-page section.company .company__cover {
    width: 360px;
    border-radius: 20px;
    padding: 26px 16px 20px;
    margin: 16px 0 16px 0;
  }
  div.recruit-page section.company .company__name {
    margin-bottom: 20px;
  }
  div.recruit-page section.company .company__name span:first-child {
    font-size: 16px;
    margin-bottom: 6px;
  }
  div.recruit-page section.company .company__name span:last-child {
    font-size: 22px;
  }
  div.recruit-page section.company .company__school-pref {
    font-size: 13px;
  }
  div.recruit-page section.company .company__school-list li {
    font-size: 14px;
  }
  div.recruit-page section.company .company__school-area {
    font-size: 80%;
  }
  div.recruit-page section.company .company__outline {
    width: 480px;
    margin: 0 0 0 -24px;
    padding: 40px 0 32px 40px;
    border-radius: 20px;
  }
  div.recruit-page section.company .company__outline dl {
    width: 320px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 18px;
  }
  div.recruit-page section.company .company__outline dl dt {
    flex: 0 0 80px;
  }
  div.recruit-page section.company .company__outline dl dd {
    margin-bottom: 6px;
  }
  div.recruit-page section.company .company__outline dl a.company__outline-link i {
    top: -6px;
    margin-left: 4px;
  }
  div.recruit-page section.company .company__ceo {
    margin-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
  div.recruit-page section.company .company__ceo-photo {
    flex: 0 0 min(400px, 30%);
  }
  div.recruit-page section.company .company__ceo-photo img {
    width: 240px;
    max-width: 100%;
  }
  div.recruit-page section.company .company__ceo-info {
    flex: 1 1 500px;
    padding: 0 40px;
  }
  div.recruit-page section.company .company__ceo-info h3 {
    margin-bottom: 24px;
    flex: 1 1 300px;
  }
  div.recruit-page section.company .company__ceo-info h3 span {
    font-size: 26px;
  }
  div.recruit-page section.company .company__ceo-info h3 span:first-child {
    font-size: 16px;
    margin-right: 12px;
  }
  div.recruit-page section.company .company__ceo-info-message {
    font-size: 14px;
  }
  div.recruit-page section.park-eye-catch .center-area {
    width: auto;
  }
  div.recruit-page section.park-eye-catch .logo-lead .logo-wrap img {
    width: 80%;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  div.recruit-page h2.section-title {
    margin-bottom: 28px;
    height: 36px;
    line-height: 36px;
  }
  div.recruit-page h2.section-title > span {
    font-size: 22px;
    height: 36px;
    line-height: 36px;
  }
  div.recruit-page h2.section-title i.title-icon {
    font-size: 28px;
    margin-right: 5px;
  }
  div.recruit-page h2.section-title img.title-icon {
    height: 36px;
    margin-right: 5px;
  }
  div.recruit-page h2.title-slash > span:before, div.recruit-page h2.title-slash > span:after {
    width: 24px;
    height: 3px;
  }
  div.recruit-page h2.title-slash > span:before {
    left: -12px;
  }
  div.recruit-page h2.title-slash > span:after {
    right: -12px;
  }
  div.recruit-page section.park-eye-catch {
    background-image: url("/img/park/monitor/kv_sp.png");
    height: auto;
    padding-bottom: 0;
  }
  div.recruit-page section.park-eye-catch .center-area {
    width: auto;
    background: rgba(249, 249, 241, 0.9);
    height: auto;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  div.recruit-page section.park-eye-catch .logo-lead {
    display: block;
    margin-bottom: 40px;
  }
  div.recruit-page section.park-eye-catch .logo-lead .logo-wrap {
    margin-bottom: 30px;
  }
  div.recruit-page section.park-eye-catch .logo-lead .logo-wrap img {
    width: 50%;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 12px;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dt {
    font-size: 11px;
    padding: 2px 3px;
    margin-right: 0.1rem;
    border-radius: 4px;
  }
  div.recruit-page section.park-eye-catch .logo-lead .lead-wrap dl.attributes dd {
    display: inline-block;
    margin-right: 0.8rem;
  }
  div.recruit-page section.park-eye-catch .sub-lead {
    padding: 0 10px;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  div.recruit-page section.park-eye-catch .sub-lead-caution {
    font-size: 13px;
    width: auto;
  }
  div.recruit-page section.park-eye-catch .sub-lead-caution p {
    padding: 0 12px;
    margin-bottom: 2px;
  }
  div.recruit-page section.park-eye-catch .reg-flow__button-wrap a {
    border-width: 3px;
    padding: 8px 28px 8px 20px;
    font-size: 18px;
  }
  div.recruit-page section.park-eye-catch .reg-flow__button-wrap a:after {
    right: 0px;
    top: 12px;
    font-size: 110%;
  }
  div.recruit-page section.positions {
    width: auto;
    margin: 0 auto 160px;
    padding: 0 12px;
  }
  div.recruit-page section.positions div.position {
    margin-bottom: 60px;
  }
  div.recruit-page section.positions div.position h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  div.recruit-page section.positions div.position dl {
    font-size: 12px;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
  }
  div.recruit-page section.positions div.position dl dt {
    flex: 0 0 50px;
    text-align: center;
    font-size: 10px;
  }
  div.recruit-page section.positions div.position dl dd {
    margin-right: 0;
  }
  div.recruit-page section.positions div.position .desc {
    margin-top: 0px;
    font-size: 14px;
  }
  div.recruit-page section.services {
    width: auto;
  }
  div.recruit-page section.services div.service-detail {
    display: block;
  }
  div.recruit-page section.services div.service-detail .left {
    text-align: center;
    margin-bottom: 14px;
  }
  div.recruit-page section.services div.service-detail .left img {
    max-width: 70%;
  }
  div.recruit-page section.services div.service-detail .right {
    padding-left: 12px;
    padding-right: 12px;
  }
  div.recruit-page section.services div.service-detail .right h3 {
    font-size: 18px;
    font-weight: 700;
  }
  div.recruit-page section.services div.service-detail .right h3 a {
    color: #333;
    text-decoration: underline;
  }
  div.recruit-page section.services div.service-detail .right h3 a i {
    font-size: 60%;
    position: relative;
    top: -6px;
    margin-left: 8px;
  }
  div.recruit-page section.services div.service-detail .right .desc {
    font-size: 14px;
  }
  div.recruit-page section.company {
    width: auto;
  }
  div.recruit-page section.company .company__wrap {
    display: block;
  }
  div.recruit-page section.company .company__cover {
    width: auto;
    border: none;
    padding: 0 10px 0;
  }
  div.recruit-page section.company .company__name span:first-child {
    font-size: 16px;
  }
  div.recruit-page section.company .company__name span:last-child {
    font-size: 22px;
  }
  div.recruit-page section.company .company__schools {
    justify-content: center;
  }
  div.recruit-page section.company .company__school-wrap {
    width: 160px;
    margin-left: 0;
  }
  div.recruit-page section.company .company__school-pref {
    font-size: 12px;
  }
  div.recruit-page section.company .company__school-list li {
    font-size: 14px;
  }
  div.recruit-page section.company .company__outline {
    width: auto;
    margin: 0 10px 0;
    padding: 20px 10px 10px;
    border-radius: 10px;
  }
  div.recruit-page section.company .company__outline dl {
    width: auto;
    font-size: 12px;
  }
  div.recruit-page section.company .company__outline dl dt {
    flex: 0 0 90px;
  }
  div.recruit-page section.company .company__ceo {
    display: block;
    margin-bottom: 0px;
  }
  div.recruit-page section.company .company__ceo-photo {
    margin-bottom: 20px;
  }
  div.recruit-page section.company .company__ceo-photo img {
    max-width: 50vw;
  }
  div.recruit-page section.company .company__ceo-info {
    padding: 0 10px;
  }
  div.recruit-page section.company .company__ceo-info h3 {
    margin-bottom: 20px;
    text-align: center;
  }
  div.recruit-page section.company .company__ceo-info h3 span {
    font-size: 22px;
  }
  div.recruit-page section.company .company__ceo-info h3 span:first-child {
    font-size: 18px;
    margin-right: 10px;
  }
  div.recruit-page section.company .company__ceo-info-message {
    font-size: 14px;
  }
}

div.trial-event-page .trial-kv {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
div.trial-event-page .trial-kv img {
  width: 100%;
}
div.trial-event-page .section-title {
  height: auto;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 80px;
}
div.trial-event-page .section-title span {
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  top: 16px;
}
div.trial-event-page .section-title span::before {
  content: "";
  position: absolute;
  bottom: 20px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
  bottom: 5px;
}
div.trial-event-page .section-title span::after {
  content: "";
  position: absolute;
  bottom: 20px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
  bottom: 5px;
}
div.trial-event-page .w900 {
  max-width: 900px;
  margin: 0 auto 150px;
}
div.trial-event-page .section-content {
  font-size: 18px;
  margin-bottom: 50px;
}
div.trial-event-page .section-content--date {
  font-size: 24px;
  font-weight: 600;
}
div.trial-event-page .section-content--date .done {
  text-decoration-line: line-through;
  text-decoration-color: #666;
  color: #999;
  font-weight: 400;
}
div.trial-event-page .section-content--date .done:after {
  content: "終了";
  display: inline-block;
  font-size: 75%;
  margin-left: 10px;
}
div.trial-event-page .section-content__title {
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
div.trial-event-page .section-content--bold {
  font-weight: 600;
}
div.trial-event-page .section-img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
div.trial-event-page .section-img img {
  width: 45%;
}
div.trial-event-page .section-button {
  color: #cf1313;
  font-size: 20px;
  border: solid 3px #cf1313;
  line-height: 63px;
  display: flex;
  justify-content: center;
  width: 280px;
  height: 67px;
  margin: 100px auto;
  background-color: #ffffff;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
div.trial-event-page .section-button i {
  position: absolute;
  right: 20px;
}
div.trial-event-page .section-button:hover {
  opacity: 0.7;
  cursor: pointer;
}
div.trial-event-page .sponsor-content {
  font-size: 18px;
  margin-bottom: 80px;
}
div.trial-event-page .sponsor-content__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
div.trial-event-page .sponsor-content__sponsor {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
div.trial-event-page .sponsor-content__sponsor img {
  width: 150px;
  margin-right: 30px;
}
div.trial-event-page .sponsor-content__sponsor a {
  margin-bottom: 0;
  position: relative;
  color: #000000;
  text-decoration: none;
  display: block;
}
div.trial-event-page .sponsor-content__sponsor a:hover {
  opacity: 0.7;
}
div.trial-event-page .sponsor-content__sponsor a i {
  position: absolute;
  font-size: 12px;
  right: -15px;
  top: -4px;
}
div.trial-event-page .sponsor-content__teacher {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
div.trial-event-page .sponsor-content__teacher img {
  width: 180px;
  margin-right: 30px;
}
div.trial-event-page .sponsor-content__teacher p {
  margin-bottom: 0;
}
div.trial-event-page .sponsor-content__bold {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  div.trial-event-page .w900 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 120px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  div.trial-event-page .trial-kv {
    margin-bottom: 30px;
  }
  div.trial-event-page .section-title {
    margin-bottom: 50px;
  }
  div.trial-event-page .section-title span {
    font-size: 24px;
  }
  div.trial-event-page .section-title span::before {
    width: 24px;
    height: 2px;
    bottom: 2px;
    left: -10px;
  }
  div.trial-event-page .section-title span::after {
    width: 24px;
    height: 2px;
    bottom: 2px;
    right: -10px;
  }
  div.trial-event-page .section-img img {
    width: 48%;
  }
  div.trial-event-page .section-content--date {
    font-size: 22px;
  }
  div.trial-event-page .section-content--date .done:after {
    margin-left: 6px;
  }
  div.trial-event-page .section-content--bold {
    font-size: 18px;
  }
  div.trial-event-page .sponsor-content__sponsor {
    display: block;
  }
  div.trial-event-page .sponsor-content__sponsor img {
    margin-bottom: 10px;
  }
  div.trial-event-page .sponsor-content__sponsor a {
    font-size: 17px;
  }
  div.trial-event-page .sponsor-content__sponsor a i {
    font-size: 11px;
    right: -4px;
  }
  div.trial-event-page .sponsor-content__teacher {
    display: block;
  }
  div.trial-event-page .sponsor-content__teacher img {
    margin-bottom: 10px;
  }
  div.trial-event-page .sponsor-content__bold {
    margin-bottom: 10px;
  }
  div.trial-event-page .section-button {
    margin: 60px auto;
  }
}
div.trial-event-page .trial-kv {
  position: relative;
}
div.trial-event-page .trial-kv__title {
  position: absolute;
  top: 13%;
  left: 3%;
  width: 60%;
  font-size: min(50px, 5vw);
  margin-bottom: 0;
  color: #004AAD;
  font-weight: bold;
}
div.trial-event-page .trial-kv__title--small {
  font-size: min(40px, 3vw);
  margin-left: 1%;
}
div.trial-event-page .trial-kv__date-list {
  position: absolute;
  display: flex;
  justify-content: end;
  top: 15%;
  right: 1%;
  width: 40%;
  font-size: min(50px, 5vw);
  margin-bottom: 0;
  color: #FF6A0E;
  font-weight: bold;
}
div.trial-event-page .trial-kv__date-top {
  font-size: 120%;
  display: flex;
  align-items: baseline;
}
div.trial-event-page .trial-kv__date-top--small {
  font-size: 70%;
  margin: 0 5%;
  position: relative;
  bottom: 5px;
}
div.trial-event-page .trial-kv__date-week {
  height: min(3vw, 50px);
  width: min(3vw, 50px);
  border-radius: 50%;
  line-height: min(3vw, 50px);
  text-align: center;
  background: #FF6A0E;
  font-size: min(1.8vw, 25px);
  margin-left: 6%;
  color: #ffffff;
  position: relative;
  bottom: 5px;
}
div.trial-event-page .trial-kv__date-bottom {
  font-size: 54%;
  position: relative;
  bottom: min(20px, 16%);
}
div.trial-event-page .trial-kv__flow {
  position: absolute;
  top: 40%;
  height: 57%;
  width: min(22vw, 270px);
}
div.trial-event-page .trial-kv__flow img {
  width: min(22vw, 270px);
}
div.trial-event-page .trial-kv__flow--1 {
  left: min(5.2vw, 49px);
}
div.trial-event-page .trial-kv__flow--2 {
  left: 50%;
  transform: translateX(-50%);
}
div.trial-event-page .trial-kv__flow--3 {
  right: min(5.2vw, 49px);
}
div.trial-event-page .trial-kv__flow-txt {
  color: #4E8DDA;
  bottom: 1%;
  position: absolute;
  font-size: min(25px, 2.8vw);
  line-height: 110%;
  font-weight: 600;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: min(22vw, 270px);
}
div.trial-event-page .trial-kv__flow-txt--1 {
  bottom: 1%;
}
div.trial-event-page .trial-kv__flow-txt--2 {
  bottom: 5%;
}
div.trial-event-page .trial-kv__date + .trial-kv__date {
  margin-left: 7%;
}
@media screen and (max-width: 560px) {
  div.trial-event-page .trial-kv__date-top--small {
    bottom: 3px;
  }
  div.trial-event-page .trial-kv__date-week {
    bottom: 2px;
  }
}

div.event-detail-page section.park-eye-catch-pc {
  margin-bottom: 70px;
  position: relative;
}
div.event-detail-page section.park-eye-catch-pc img.kv {
  max-width: 100%;
}
div.event-detail-page section.park-eye-catch-sp {
  display: none;
  position: relative;
}
div.event-detail-page .kv-txt {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-weight: 600;
}
div.event-detail-page .kv-txt--pc {
  bottom: 2.4vw;
}
div.event-detail-page .kv-txt--pc .kv-txt-top {
  line-height: 2.4vw;
}
div.event-detail-page .kv-txt--pc .kv-txt-big {
  font-size: 2.4vw;
}
div.event-detail-page .kv-txt--pc .kv-txt-small {
  font-size: 2vw;
}
div.event-detail-page .kv-txt--sp {
  top: 50%;
  width: 100%;
}
div.event-detail-page .kv-txt--sp .kv-txt-top {
  line-height: 4.1vw;
}
div.event-detail-page .kv-txt--sp .kv-txt-bottom {
  line-height: 5.5vw;
}
div.event-detail-page .kv-txt--sp .kv-txt-big {
  font-size: 4.1vw;
}
div.event-detail-page .kv-txt--sp .kv-txt-small {
  font-size: 3.4vw;
}
div.event-detail-page .kv-txt .kv-txt-line {
  background: linear-gradient(transparent 75%, #F7D374 75%);
}
div.event-detail-page .section-title {
  height: auto;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 80px;
}
div.event-detail-page .section-title span {
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  top: 16px;
}
div.event-detail-page .section-title span::before, div.event-detail-page .section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 36px;
  height: 4px;
  background-color: #f00;
  border-radius: 2px;
}
div.event-detail-page .section-title span::before {
  left: -20px;
  transform: rotate(-115deg);
  transform-origin: left center;
}
div.event-detail-page .section-title span::after {
  right: -20px;
  transform: rotate(115deg);
  transform-origin: right center;
}
@media screen and (max-width: 767px) {
  div.event-detail-page .section-title {
    font-size: 22px;
    line-height: 44px;
    margin-bottom: 40px;
  }
  div.event-detail-page .section-title span {
    font-size: 22px;
  }
  div.event-detail-page .section-title span::before, div.event-detail-page .section-title span::after {
    bottom: 2px;
    width: 22px;
    height: 3px;
  }
  div.event-detail-page .section-title span::before {
    left: -12px;
  }
  div.event-detail-page .section-title span::after {
    right: -12px;
  }
}
div.event-detail-page .section-lead {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 180%;
  margin-top: -20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  div.event-detail-page .section-lead {
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
div.event-detail-page .event-cta {
  text-align: center;
}
div.event-detail-page .event-cta a.trial-btn {
  display: inline-block;
  position: relative;
  background: #fff;
  border: 2px solid #e23434;
  border-radius: 50px;
  width: 320px;
  color: #000;
  padding: 16px 0;
  font-weight: 700;
  text-decoration: none;
}
div.event-detail-page .event-cta a.trial-btn:hover {
  opacity: 0.7;
}
div.event-detail-page .event-cta a.trial-btn > span {
  display: block;
  text-align: center;
  font-size: 16px;
}
div.event-detail-page .event-cta a.trial-btn > span.second {
  font-size: 13px;
}
div.event-detail-page .event-cta a.trial-btn > span span.emp {
  font-size: 120%;
  margin-left: 4px;
  margin-right: 4px;
}
div.event-detail-page .event-cta a.trial-btn i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #e23434;
}
@media screen and (max-width: 767px) {
  div.event-detail-page .event-cta a.trial-btn {
    width: 280px;
    padding: 14px 0;
  }
  div.event-detail-page .event-cta a.trial-btn > span {
    font-size: 14px;
  }
  div.event-detail-page .event-cta a.trial-btn > span.second {
    font-size: 12px;
  }
  div.event-detail-page .event-cta a.trial-btn > span span.emp {
    font-size: 120%;
    margin-left: 3px;
    margin-right: 3px;
  }
}
div.event-detail-page .event-cta a.reg-btn.inactive {
  display: inline-block;
  pointer-events: none;
  border: 2px solid #ccc;
  color: #bbb;
  border-width: 3px;
  padding: 12px 40px 12px 34px;
  border-radius: 60px;
  border-width: 3px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
div.event-detail-page .event-cta a.reg-btn.inactive:after {
  color: #bbb;
  right: 2px;
  top: 14px;
}
div.event-detail-page > section {
  width: 900px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  max-width: 100vw;
}
div.event-detail-page > section.park-eye-catch-pc {
  width: auto;
}
div.event-detail-page > section.park-eye-catch-sp {
  width: auto;
}
div.event-detail-page > section.circle-event {
  width: 720px;
}
div.event-detail-page > section.about-us {
  width: 800px;
}
@media screen and (max-width: 767px) {
  div.event-detail-page > section {
    width: auto !important;
  }
  div.event-detail-page > section:not(.park-eye-catch-pc):not(.park-eye-catch-sp) {
    padding-left: 12px;
    padding-right: 12px;
  }
}
div.event-detail-page section.overview .overview-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
div.event-detail-page section.overview .overview-content .overview-content-left {
  flex: 0 0 60%;
}
div.event-detail-page section.overview .overview-content .overview-content-left h3 {
  font-size: 20px;
  font-weight: 700;
  padding-left: 48px;
  position: relative;
  margin-bottom: 28px;
}
div.event-detail-page section.overview .overview-content .overview-content-left h3 > span {
  display: block;
  text-align: left;
  line-height: 32px;
}
div.event-detail-page section.overview .overview-content .overview-content-left h3 > span .emp {
  font-size: 120%;
  margin-left: 2px;
  margin-right: 2px;
  color: #e23434;
}
div.event-detail-page section.overview .overview-content .overview-content-left h3: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;
  font-size: 36px;
  position: absolute;
  left: 0;
  content: "";
  color: #e23434;
  top: 50%;
  transform: translateY(-50%);
}
div.event-detail-page section.overview .overview-content .overview-content-left h3.overview-lesson-heading {
  margin-bottom: 20px;
}
div.event-detail-page section.overview .overview-content .overview-content-left h3.overview-lesson-heading:before {
  font-size: 28px;
  content: "";
  left: 4px;
}
div.event-detail-page section.overview .overview-content ul.overview-point-list {
  margin: 0;
  padding: 0 0 0 12px;
}
div.event-detail-page section.overview .overview-content ul.overview-point-list li {
  list-style-type: none;
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  margin-bottom: 10px;
}
div.event-detail-page section.overview .overview-content ul.overview-point-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;
  font-size: 120%;
  position: absolute;
  left: 0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
div.event-detail-page section.overview .overview-content .overview-lesson-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}
div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable {
  margin: 0;
  padding: 0 0 0 12px;
}
div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li {
  list-style-type: none;
  font-size: 18px;
  margin-bottom: 10px;
}
div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li > span {
  display: inline-block;
}
div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li .overview-lesson-time {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 2px 0;
  font-size: 14px;
  width: 3rem;
  text-align: center;
  margin-right: 4px;
}
div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li .overview-lesson-time:after {
  display: inline-block;
  content: "分";
  font-size: 80%;
  margin-left: 3px;
}
div.event-detail-page section.overview .overview-content .overview-content-right {
  flex: 0 0 40%;
  display: flex;
  flex-wrap: wrap;
}
div.event-detail-page section.overview .overview-content .overview-content-right .overview-zoom-image {
  padding: 4px;
}
div.event-detail-page section.overview .overview-content .overview-content-right .overview-zoom-image img {
  max-width: 100%;
}
div.event-detail-page section.overview .overview-content .overview-content-right .overview-sample-image {
  flex: 0 0 50%;
  padding: 4px;
}
div.event-detail-page section.overview .overview-content .overview-content-right .overview-sample-image img {
  max-width: 100%;
}
div.event-detail-page section.feature table.feature-tbl {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  font-size: 18px;
}
div.event-detail-page section.feature table.feature-tbl thead tr th {
  padding-bottom: 8px;
}
div.event-detail-page section.feature table.feature-tbl thead tr th.school {
  font-size: 90%;
  width: 220px;
}
div.event-detail-page section.feature table.feature-tbl thead tr th.park {
  width: 220px;
}
div.event-detail-page section.feature table.feature-tbl thead tr th.park img {
  width: 180px;
}
div.event-detail-page section.feature table.feature-tbl tbody tr {
  border-top: 1px solid #ccc;
}
div.event-detail-page section.feature table.feature-tbl tbody tr td {
  padding: 18px 20px;
}
div.event-detail-page section.feature table.feature-tbl tbody tr td.school {
  color: #666;
  font-size: 90%;
}
div.event-detail-page section.feature table.feature-tbl tbody tr td.park {
  font-weight: 700;
}
div.event-detail-page section.circle-event .circle-event-content {
  display: flex;
  justify-content: space-between;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left {
  flex: 0 0 48%;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left h3 {
  font-size: 20px;
  font-weight: 700;
  padding-left: 48px;
  position: relative;
  margin-bottom: 28px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left h3: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;
  font-size: 36px;
  position: absolute;
  left: 0;
  content: "";
  color: #e23434;
  top: 50%;
  transform: translateY(-50%);
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left ul.circle-event-list {
  margin: 0 0 30px 0;
  padding: 0 0 0 12px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left ul.circle-event-list li {
  list-style-type: none;
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  margin-bottom: 10px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left ul.circle-event-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;
  font-size: 120%;
  position: absolute;
  left: 0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left p.circle-event-notification {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left p.circle-event-caution {
  font-size: 14px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-right {
  flex: 0 0 48%;
  padding: 4px;
}
div.event-detail-page section.circle-event .circle-event-content .circle-event-content-right img {
  max-width: 100%;
}
div.event-detail-page section.about-us .about-us-content {
  font-size: 18px;
  margin-bottom: 80px;
}
div.event-detail-page section.about-us .about-us-content__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
div.event-detail-page section.about-us .about-us-content__company {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
div.event-detail-page section.about-us .about-us-content__company img {
  width: 150px;
  margin-right: 30px;
}
div.event-detail-page section.about-us .about-us-content__company a {
  margin-bottom: 0;
  position: relative;
  color: #000000;
  text-decoration: none;
  display: block;
}
div.event-detail-page section.about-us .about-us-content__company a:hover {
  opacity: 0.7;
}
div.event-detail-page section.about-us .about-us-content__company a i {
  position: absolute;
  font-size: 12px;
  right: -15px;
  top: -4px;
}
div.event-detail-page section.about-us .about-us-content__teacher {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
div.event-detail-page section.about-us .about-us-content__teacher img {
  width: 180px;
  margin-right: 30px;
  border-radius: 100px;
}
div.event-detail-page section.about-us .about-us-content__teacher p {
  margin-bottom: 0;
}
div.event-detail-page section.about-us .about-us-content__bold {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
div.event-detail-page section.price div.price__category {
  padding: 0;
  margin: 0 auto 60px;
  width: 700px;
}
div.event-detail-page section.price div.price__category .price__category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 48px;
}
div.event-detail-page section.price div.price__category .price__category-item-heading {
  flex: 0 0 40%;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
div.event-detail-page section.price div.price__category .price__category-item-caution {
  flex: 0 0 100%;
}
div.event-detail-page section.price div.price__category .price__list {
  margin: 0;
  padding: 0;
}
div.event-detail-page section.price div.price__category .price__list li {
  list-style-type: none;
  margin: 0 0 12px;
  padding: 0;
  line-height: 1;
}
div.event-detail-page section.price div.price__category .price__list-item {
  display: flex;
}
div.event-detail-page section.price div.price__category .price__list-item-title {
  display: inline-block;
  width: 140px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
}
div.event-detail-page section.price div.price__category .price__list-item-title--option {
  font-size: 18px;
  line-height: 24px;
}
div.event-detail-page section.price div.price__category .price__list-item-price {
  display: inline-block;
  font-weight: 700;
  width: 170px;
  text-align: right;
  padding-right: 10px;
  position: relative;
}
div.event-detail-page section.price div.price__category .price__list-item-price--yen {
  font-size: 28px;
}
div.event-detail-page section.price div.price__category .price__list-item-price--amount {
  font-size: 40px;
  position: relative;
}
div.event-detail-page section.price div.price__category .price__list-item-price .price-delete-line:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  border-top: 3px solid rgba(255, 0, 0, 0.7);
  border-bottom: 3px solid rgba(255, 0, 0, 0.7);
  top: 20px;
}
div.event-detail-page section.price div.price__category .price__list-item-unit {
  font-size: 20px;
  line-height: 40px;
}
div.event-detail-page section.price div.price__category .price__list-item-campaign {
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  color: #e23434;
}
div.event-detail-page section.price div.price__category .price__list-item-caution {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
  color: #299fd0;
}
div.event-detail-page section.price div.price__category .price__caution {
  margin: 28px 0 0;
  padding: 0;
}
div.event-detail-page section.price div.price__category .price__caution-item {
  font-size: 16px;
  list-style-type: none;
  margin: 0 0 6px;
  padding: 0;
}
div.event-detail-page section.price div.price__category .price__caution-item: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: "";
  color: #53B77F;
}
div.event-detail-page section.price div.price__category .price__caution-item .strong {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  div.event-detail-page section.park-eye-catch-pc {
    display: none;
  }
  div.event-detail-page section.park-eye-catch-sp {
    display: block;
    width: 100%;
    padding-top: 53px;
    margin-top: -53px;
    margin-bottom: 40px;
    background-color: #f9f9f1;
  }
  div.event-detail-page section.park-eye-catch-sp img {
    width: 100%;
  }
  div.event-detail-page section.overview .overview-content {
    display: block;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3 {
    font-size: 17px;
    padding-left: 0;
    text-align: center;
    margin-bottom: 24px;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3 > span {
    text-align: center;
    line-height: 32px;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3 > span .emp {
    font-size: 120%;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3:before {
    display: none;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3.overview-lesson-heading span {
    display: inline-block;
  }
  div.event-detail-page section.overview .overview-content .overview-content-left h3.overview-lesson-heading:before {
    display: inline-block;
    font-size: 22px;
    position: relative;
    top: 2px;
    transform: translateY(0);
  }
  div.event-detail-page section.overview .overview-content ul.overview-point-list {
    padding: 0 0 0 6px;
  }
  div.event-detail-page section.overview .overview-content ul.overview-point-list li {
    padding-left: 26px;
    font-size: 16px;
  }
  div.event-detail-page section.overview .overview-content .overview-lesson-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable {
    margin: 0 0 20px;
    padding: 0 0 0 4px;
  }
  div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li {
    font-size: 15px;
  }
  div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li .overview-lesson-time {
    padding: 0px 0;
    font-size: 12px;
    width: 2.4rem;
    margin-right: 4px;
  }
  div.event-detail-page section.overview .overview-content ul.overview-lesson-timetable li .overview-lesson-time:after {
    margin-left: 1px;
  }
  div.event-detail-page section.overview .overview-content .overview-content-right {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
  }
  div.event-detail-page section.feature table.feature-tbl {
    font-size: 14px;
  }
  div.event-detail-page section.feature table.feature-tbl thead tr th {
    padding-bottom: 8px;
  }
  div.event-detail-page section.feature table.feature-tbl thead tr th.school {
    font-size: 90%;
    width: 40vw;
  }
  div.event-detail-page section.feature table.feature-tbl thead tr th.park {
    width: 40vw;
    text-align: center;
  }
  div.event-detail-page section.feature table.feature-tbl thead tr th.park img {
    width: 30vw;
  }
  div.event-detail-page section.feature table.feature-tbl tbody tr td {
    padding: 12px 8px;
  }
  div.event-detail-page section.circle-event .circle-event-content {
    display: block;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left h3 {
    font-size: 18px;
    padding-left: 40px;
    margin-bottom: 24px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left h3:before {
    font-size: 24px;
    left: 12px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left ul.circle-event-list li {
    padding-left: 26px;
    font-size: 16px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left p.circle-event-notification {
    text-align: center;
    font-size: 15px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-left p.circle-event-caution {
    font-size: 12px;
    padding: 0 12px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-right {
    flex: 0 0 48%;
    padding: 4px;
  }
  div.event-detail-page section.circle-event .circle-event-content .circle-event-content-right img {
    max-width: 100%;
  }
  div.event-detail-page section.about-us .about-us-content {
    font-size: 14px;
  }
  div.event-detail-page section.about-us .about-us-content__company {
    display: block;
  }
  div.event-detail-page section.about-us .about-us-content__company img {
    margin-bottom: 10px;
  }
  div.event-detail-page section.about-us .about-us-content__company a {
    font-size: 16px;
  }
  div.event-detail-page section.about-us .about-us-content__company a i {
    font-size: 11px;
    right: 0px;
  }
  div.event-detail-page section.about-us .about-us-content__txt {
    font-size: 14px;
  }
  div.event-detail-page section.about-us .about-us-content__teacher {
    display: block;
    text-align: center;
  }
  div.event-detail-page section.about-us .about-us-content__teacher img {
    margin-bottom: 10px;
    margin-right: 0;
  }
  div.event-detail-page section.about-us .about-us-content__teacher p {
    text-align: left;
  }
  div.event-detail-page section.about-us .about-us-content__bold {
    margin-bottom: 10px;
  }
  div.event-detail-page section.price div.price__category {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
  div.event-detail-page section.price div.price__category .price__category-item {
    display: block;
    margin-bottom: 28px;
    padding: 26px 10px 32px;
  }
  div.event-detail-page section.price div.price__category .price__category-item-heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-title {
    width: 120px;
    font-size: 20px;
    line-height: 32px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-title--option {
    font-size: 15px;
    line-height: 18px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-price {
    width: 150px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-price--yen {
    font-size: 22px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-price--amount {
    font-size: 30px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-price .price-delete-line:after {
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    border-top: 3px solid rgba(255, 0, 0, 0.7);
    border-bottom: 3px solid rgba(255, 0, 0, 0.7);
    top: 14px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-unit {
    font-size: 16px;
    line-height: 28px;
  }
  div.event-detail-page section.price div.price__category .price__list-item-campaign {
    font-size: 18px;
    text-align: center;
  }
  div.event-detail-page section.price div.price__category .price__list-item-caution {
    font-size: 16px;
  }
  div.event-detail-page section.price div.price__category .price__caution-item {
    font-size: 14px;
  }
  div.event-detail-page section.price div.price__category .price__caution-item:before {
    margin-right: 2px;
  }
}

div.expert-page div.img-items {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  margin: 0 auto;
}
div.expert-page div.img-items div.img-item {
  display: flex;
  width: 330px;
  margin: 4px;
  background-color: #fafafa;
}
div.expert-page div.img-items div.img-item div.img-wrap {
  padding: 10px;
}
div.expert-page div.img-items div.img-item div.img-wrap img {
  max-width: 100%;
}

div.innovator-text-page button {
  border: 1px solid #777;
  border-radius: 3px;
  padding: 3px 8px;
  background-color: #eee;
}
div.innovator-text-page button:hover {
  background-color: #ddd;
}
div.innovator-text-page textarea {
  padding: 6px;
}
div.innovator-text-page input[type=text] {
  padding: 2px 6px;
}
div.innovator-text-page div.compress-app {
  /* 最後の行の下のマージンをなくす */
}
div.innovator-text-page div.compress-app .container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
div.innovator-text-page div.compress-app .row {
  display: flex;
  width: 100%;
}
div.innovator-text-page div.compress-app .columns {
  display: flex;
  width: 100%;
  justify-content: center;
}
div.innovator-text-page div.compress-app .column {
  margin: 10px;
}
div.innovator-text-page div.compress-app .column-left {
  width: 500px;
}
div.innovator-text-page div.compress-app .column-right {
  width: 300px;
}
div.innovator-text-page div.compress-app .column-right > *:not(:last-child) {
  margin-bottom: 20px;
}
div.innovator-text-page div.compress-app .text-field textarea, div.innovator-text-page div.compress-app .text-field div {
  width: 100%;
  height: 500px;
  resize: none;
  border: 1px solid grey;
  border-radius: 3px;
  white-space: pre-wrap;
  overflow-y: auto;
}
div.innovator-text-page div.compress-app .aliases {
  margin-bottom: 20px;
}
div.innovator-text-page div.compress-app .aliases > .alias {
  margin-bottom: 10px;
}
div.innovator-text-page div.compress-app .aliases label {
  margin-right: 5px;
  width: 20px;
  display: inline-block;
  text-align: center;
}
div.innovator-text-page div.compress-app span.alias {
  color: #ff0000;
  font-weight: bold;
}
div.innovator-text-page div.compress-app .text-stats-container {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-left: 30px;
}
div.innovator-text-page div.compress-app .text-stats-row {
  display: flex;
  justify-content: left;
  margin-bottom: 5px;
}
div.innovator-text-page div.compress-app .text-stats-row span {
  min-width: 120px;
}
div.innovator-text-page div.compress-app .text-stats-row:last-child {
  margin-top: 20px;
}
div.innovator-text-page div.compress-app .text-stats-row:last-child {
  margin-bottom: 0;
}
div.innovator-text-page div.compress-app .select-text-button {
  margin: 0 5px;
}
div.innovator-text-page div.spec-checker-app {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}
div.innovator-text-page div.spec-checker-app div.howtouse {
  margin-bottom: 40px;
}
div.innovator-text-page div.spec-checker-app div.howtouse h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
div.innovator-text-page div.spec-checker-app div.howtouse p {
  margin-bottom: 4px;
}
div.innovator-text-page div.spec-checker-app div.execute-btn-wrap {
  margin-bottom: 24px;
}
div.innovator-text-page div.spec-checker-app div.execute-btn-wrap button.execute-btn {
  font-size: 20px;
  padding: 7px 14px;
  background-color: #299fd0;
  border: none;
  border-radius: 6px;
  color: #fff;
}
div.innovator-text-page div.spec-checker-app div.logs {
  font-size: 18px;
  line-height: 1.6;
  color: #E23434;
}

.calendar-page {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.calendar-page .programming {
  color: #FFA500;
}
.calendar-page .technology {
  color: #f5667b;
}
.calendar-page .game {
  color: #4f4fb4;
}
.calendar-page h1.page-title {
  margin-bottom: 12px;
}
.calendar-page .calendar-caution {
  text-align: center;
  margin-bottom: 48px;
}
.calendar-page section.circle-time-pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .calendar-page section.circle-time-pc {
    display: none;
  }
}
.calendar-page section.circle-time-pc div.calendar-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 24px;
}
.calendar-page section.circle-time-pc div.calendar-heading h2.calendar-title {
  flex: 0 0 50%;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 700;
}
.calendar-page section.circle-time-pc div.calendar-heading div.legend {
  flex: 0 0 50%;
  text-align: right;
  font-size: 15px;
  padding-right: 12px;
}
.calendar-page section.circle-time-pc div.calendar-heading div.legend ul {
  margin: 0;
  padding: 0;
}
.calendar-page section.circle-time-pc div.calendar-heading div.legend ul li {
  margin: 0 0 0 1rem;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
.calendar-page section.circle-time-pc div.calendar-heading div.legend ul li i {
  margin-right: 4px;
}
.calendar-page section.circle-time-pc div.calendar-wrap {
  flex: 0 0 900px;
}
.calendar-page section.circle-time-pc div.calendar-wrap section.calendar {
  margin-bottom: 100px;
}
.calendar-page section.circle-time-pc div.leader-wrap {
  padding-left: 24px;
}
.calendar-page section.circle-time-pc div.leader-wrap h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader {
  text-align: center;
  margin-bottom: 40px;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .img-wrap {
  margin-bottom: 10px;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .img-wrap img {
  max-width: 70%;
  border-radius: 100%;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .position {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .kana {
  font-size: 11px;
  display: none;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .name {
  font-weight: 700;
  font-size: 16px;
}
.calendar-page section.circle-time-pc div.leader-wrap .leader .nickname {
  font-size: 15px;
}
.calendar-page section.circle-time-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .calendar-page section.circle-time-sp {
    display: block;
  }
}

.calendar-month table.schedule-tbl thead tr th {
  text-align: center;
  font-size: 18px;
}
.calendar-month table.schedule-tbl tbody tr td {
  padding: 12px 6px 12px 6px;
  font-weight: 700;
  width: 100px;
}
.calendar-month table.schedule-tbl tbody tr td div.date {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.calendar-month table.schedule-tbl tbody tr td.past div.date {
  color: #999;
}
.calendar-month table.schedule-tbl tbody tr td.empty {
  width: 75px;
}
.calendar-month table.schedule-tbl tbody tr td.empty div.date {
  color: #ccc;
}
.calendar-month table.schedule-tbl tbody tr td p.time {
  margin-bottom: 4px;
  font-size: 12px;
}
.calendar-month table.schedule-tbl tbody tr td p.title {
  margin-bottom: 10px;
  font-size: 14px;
}
.calendar-month table.schedule-tbl tbody tr td p.title:last-child {
  margin-bottom: 0;
}
.calendar-month table.schedule-tbl tbody tr td.past p.time {
  opacity: 0.5;
}
.calendar-month table.schedule-tbl tbody tr td.past p.title {
  opacity: 0.5;
}
.calendar-month table.schedule-tbl tbody tr td p.empty {
  min-height: 4rem;
  margin-bottom: 0;
}

div.calendar-month-sp {
  margin-bottom: 60px;
  padding-left: 10px;
  padding-right: 10px;
}
div.calendar-month-sp h2.calendar-title {
  font-size: 22px;
  font-weight: 700;
}
div.calendar-month-sp div.date-row {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
div.calendar-month-sp div.date-row .event-time {
  margin-bottom: 6px;
}
div.calendar-month-sp div.date-row .event-time .date {
  font-size: 14px;
}
div.calendar-month-sp div.date-row .event-time .date .num {
  font-size: 18px;
}
div.calendar-month-sp div.date-row .event-time .dow {
  margin-right: 8px;
}
div.calendar-month-sp div.date-row .event {
  display: flex;
}
div.calendar-month-sp div.date-row .event .desc {
  font-weight: 700;
}
div.calendar-month-sp div.date-row .event .desc .genre {
  display: inline-block;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #000;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 400;
}
div.calendar-month-sp div.date-row .event .desc .genre.programming {
  background: #FFA500;
  color: #fff;
  border-color: #FFA500;
}
div.calendar-month-sp div.date-row .event .desc .genre.technology {
  background: #f5667b;
  color: #fff;
  border-color: #f5667b;
}
div.calendar-month-sp div.date-row .event .desc .genre.game {
  background: #4f4fb4;
  color: #fff;
  border-color: #4f4fb4;
}

@media screen and (max-width: 767px) {
  .calendar-page {
    width: auto;
  }

  table.schedule-list-tbl {
    width: auto;
  }
}
/* --------------
特別商取引法の表示 ----
-------------- */
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;
  }
}

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