@charset "shift-jis";
/* --------------------------------------------------------------------
  Financial Academy

  Style Info: /open_campus/index.html setting
-------------------------------------------------------------------- */
*,*::before,*::after {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

/* ------------------------------
main
------------------------------ */
.main {
  padding-bottom: 85px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .main {
    padding-bottom: 60px;
  }
}

/* ------------------------------
image
------------------------------ */
img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------
display
------------------------------ */
.pc {
  display: inherit;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
.sp_tab {
  display: none;
}
@media screen and (min-width: 600px) {
  .tab_pc {
    display: inherit;
  }
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
  .tab {
    display: inherit;
  }
  .sp {
    display: none;
  }
  .sp_tab {
    display: inherit;
  }
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
  .tab {
    display: none ;
  }
  .sp {
    display: inherit;
  }
  .tab_pc {
    display: none;
  }
}

/* ------------------------------
text
------------------------------ */
.txt_bold {
  font-weight: bold;
}

/* ------------------------------
background
------------------------------ */
.bg_gray {
  background-color: #f5f5f5;
}

/* ------------------------------
heading
------------------------------ */
.heading_01 {
  margin-bottom: 1em;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  .heading_01 {
    font-size: 30px;
  }
}

/* ------------------------------
button
------------------------------ */
/* btn_01 */
.btn_01 {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 1em;
  border: 1px solid #707070;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .btn_01 {
    font-size: 12px;
  }
}
/* fixed_btn */
.fixed_btn {
  position: fixed;
  z-index: 499;
  bottom: 80px;
  right: -2px;
  display: none;
}
.fixed_btn.is-show {
  display: block;
}
.fixed_btn:hover {
  opacity: 0.8;
}
.fixed_btn img {
  width: 212px;
}
.fixed_btn .btn_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .fixed_btn {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: rgba(107, 107, 107, 0.73);
  }
  .fixed_btn a {
    display: block;
    position: absolute;
    left: -4px;
    right: auto;
    bottom: 5px;
  }
  .fixed_btn img {
    width: 226px;
  }
  .fixed_btn .btn_sp {
    display: block;
  }
  .fixed_btn .btn_pc {
    display: none;
  }
}
/* ------------------------------
frame
------------------------------ */
.frame_content {
  position: relative;
  margin-bottom: 50px;
}
.frame_content::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: calc(100% - 90px);
  height: 100%;
  background-color: #fff;
  border: 2px solid;
  border-radius: 0 35px 35px 0;
  border-left-width: 0;
  content: '';
}
.frame_content::after {
  position: absolute;
  z-index: 1;
  top: 50px;
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 0 35px 0 0;
  content: '';
}
.frame_content.right::before {
  left: auto;
  right: 0;
  border-radius: 35px 0 0 35px;
  border-left-width: 2px;
  border-right-width: 0;
}
.frame_content.right::after {
  right: 0;
  border-radius: 35px 0 0 0;
}
.frame_content + .frame_content {
  margin-top: 150px;
}
@media screen and (max-width: 1439px) {
  .frame_content::before {
    width: calc(100% - 6.25vw);
  }
  .frame_content::after {
    width: calc(100% - 2.78vw);
  }
}
@media screen and (max-width: 699px) {
  .frame_content {
    margin-bottom: 80px;
  }
  .frame_content::before {
    width: calc(100% - 20px);
  }
  .frame_content::after {
    width: 100%;
    height: calc(100% + 30px);
  }
  .frame_content + .frame_content {
    margin-top: 150px;
  }
}

/* ------------------------------
frame_inner
------------------------------ */
.frame_inner {
  position: relative;
  z-index: 3;
  width: 92%;
  max-width: 1010px;
  margin:  0 auto;
  padding: 50px 0 100px;
}
@media screen and (max-width: 1229px) {
  .frame_inner {
    width: 80%;
  }
}
@media screen and (max-width: 999px) {
  .frame_inner {
    width: auto;
    margin: 0 calc(4.5% + 40px) 0 4.5%;
  }
  .frame_content.right .frame_inner {
    margin: 0 4.5% 0 calc(4.5% + 40px);
  }
}
@media screen and (max-width: 699px) {
  .frame_inner {
    margin: 0 calc(4.5% + 22px) 0 4.5%;
    padding: 80px 0 65px;
  }
  .frame_content.right .frame_inner {
    margin: 0 4.5% 0 calc(4.5% + 22px);
  }
}

/* ------------------------------
bg_deco
------------------------------ */
.bg_deco {
  position: absolute;
  bottom: -98px;
  right: 10px;
}
.frame_content.right .bg_deco {
  right: auto;
  left: 10px;
}
@media screen and (max-width: 699px) {
  .bg_deco {
    width: 126px;
    bottom: -105px;
    height: auto;
    right: -12px;
  }
  .frame_content.right .bg_deco {
    right: auto;
    left: -12px;
  }
}

/* ------------------------------
ttl_en
------------------------------ */
.frame_content .ttl_en {
  position: absolute;
  top: 30px;
  right: 8.33vw;
  z-index: 3;
}
@media screen and (min-width: 1440px) {
  .frame_content .ttl_en {
    right: 120px;
  }
}
@media screen and (max-width: 999px) {
  .frame_content .ttl_en {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .frame_content .ttl_en {
    top: 8px;
    right: 40px;
  }
}

/* ------------------------------
lead
------------------------------ */
.lead_01 {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .lead_01 {
    font-size: 16px;
    text-align: left;
  }
}

/* ------------------------------
mv
------------------------------ */
.mv {
  position: relative;
  height: 37.01vw;
  margin-bottom: 230px;
  padding-top: 13vw;
  background: url(/open_campus/img/index/mv.jpg) no-repeat left center / cover;
}
.mv h1 {
  padding-left: 15.28vw;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22hat%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2261.336%22%20height%3D%2246.417%22%20viewBox%3D%220%200%2061.336%2046.417%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_2420%22%20data-name%3D%22%E3%83%91%E3%82%B9%202420%22%20d%3D%22M30.668%2C0%2C0%2C15.749%2C30.668%2C31.331%2C61.336%2C15.749Z%22%20fill%3D%22%231b2569%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_2421%22%20data-name%3D%22%E3%83%91%E3%82%B9%202421%22%20d%3D%22M19%2C34l14.92%2C7.352L48.939%2C34v7.352L33.969%2C49.906%2C19%2C41.427Z%22%20transform%3D%22translate(-3.251%20-5.818)%22%20fill%3D%22%231b2569%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_2422%22%20data-name%3D%22%E3%83%91%E3%82%B9%202422%22%20d%3D%22M62.211%2C37.8h2.3l1.442%2C15.085H60.91Z%22%20transform%3D%22translate(-10.423%20-6.469)%22%20fill%3D%22%231b2569%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_2623%22%20data-name%3D%22%E3%83%91%E3%82%B9%202623%22%20d%3D%22M2%2C0A2.292%2C2.292%2C0%2C0%2C1%2C4%2C2.5%2C2.292%2C2.292%2C0%2C0%2C1%2C2%2C5%2C2.292%2C2.292%2C0%2C0%2C1%2C0%2C2.5%2C2.292%2C2.292%2C0%2C0%2C1%2C2%2C0Z%22%20transform%3D%22translate(51.336%2024.417)%22%20fill%3D%22%231b2569%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: 4.26vw auto;
  background-position: 10vw 0.5vw;
  font-size: 1.88vw;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.25em;
}
.mv h1 .strong {
  display: block;
  margin-bottom: 0.2em;
  font-family: "din-2014", sans-serif;
  font-size: 4.17vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
}
.mv .btn_list {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -188px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 880px;
}
.mv .mv_btn {
  display: block;
  position: relative;
  width: 230px;
  height: 230px;
  padding-top: 100px;
  background-color: #fff;
  background-repeat: no-repeat;
  border: 2px solid;
  border-radius: 50%;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
.mv .mv_btn::after {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  content: '';
}
.mv .mv_btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.mv .mv_btn:hover::after {
  bottom: 22px;
}
.mv .mv_btn.mv_btn_01 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2266.97%22%20height%3D%2246.204%22%20viewBox%3D%220%200%2066.97%2046.204%22%3E%3Cg%20transform%3D%22translate(0.875%20-80.637)%22%3E%3Cpath%20d%3D%22M32.61%2C80.637a5.1%2C5.1%2C0%2C0%2C1%2C3.61%2C1.51l11.771%2C11.93H61.024A5.077%2C5.077%2C0%2C0%2C1%2C66.1%2C99.148v26.818a.875.875%2C0%2C0%2C1-.875.875H36.007a.875.875%2C0%2C0%2C1-.875-.875v-13.6a2.522%2C2.522%2C0%2C1%2C0-5.044%2C0v13.6a.875.875%2C0%2C0%2C1-.875.875H0a.875.875%2C0%2C0%2C1-.875-.875V99.148A5.077%2C5.077%2C0%2C0%2C1%2C4.2%2C94.077H17.23L29%2C82.147A5.1%2C5.1%2C0%2C0%2C1%2C32.61%2C80.637Zm31.736%2C44.454V99.148a3.325%2C3.325%2C0%2C0%2C0-3.321-3.321h-13.4a.875.875%2C0%2C0%2C1-.623-.26L34.974%2C83.376a3.319%2C3.319%2C0%2C0%2C0-4.727%2C0L18.218%2C95.566a.875.875%2C0%2C0%2C1-.623.26H4.2A3.325%2C3.325%2C0%2C0%2C0%2C.875%2C99.148v25.943H28.338v-12.73a4.272%2C4.272%2C0%2C1%2C1%2C8.544%2C0v12.73ZM32.61%2C89.319a5.9%2C5.9%2C0%2C1%2C1-5.9%2C5.9A5.909%2C5.909%2C0%2C0%2C1%2C32.61%2C89.319Zm0%2C10.055a4.152%2C4.152%2C0%2C1%2C0-4.152-4.152A4.157%2C4.157%2C0%2C0%2C0%2C32.61%2C99.374Zm-25.892%2C9.8h3.533a.875.875%2C0%2C0%2C1%2C.875.875v6.522a.875.875%2C0%2C0%2C1-.875.875H6.718a.875.875%2C0%2C0%2C1-.875-.875v-6.522A.875.875%2C0%2C0%2C1%2C6.718%2C109.176Zm2.658%2C1.75H7.593V115.7H9.376Zm8.363-1.75h3.533a.875.875%2C0%2C0%2C1%2C.875.875v6.522a.875.875%2C0%2C0%2C1-.875.875H17.739a.875.875%2C0%2C0%2C1-.875-.875v-6.522A.875.875%2C0%2C0%2C1%2C17.739%2C109.176Zm2.658%2C1.75H18.614V115.7H20.4Zm23.55-1.75H47.48a.875.875%2C0%2C0%2C1%2C.875.875v6.522a.875.875%2C0%2C0%2C1-.875.875H43.947a.875.875%2C0%2C0%2C1-.875-.875v-6.522A.875.875%2C0%2C0%2C1%2C43.947%2C109.176Zm2.658%2C1.75H44.822V115.7h1.783Zm8.364-1.75H58.5a.875.875%2C0%2C0%2C1%2C.875.875v6.522a.875.875%2C0%2C0%2C1-.875.875H54.969a.875.875%2C0%2C0%2C1-.875-.875v-6.522A.875.875%2C0%2C0%2C1%2C54.969%2C109.176Zm2.657%2C1.75H55.844V115.7h1.782Z%22%20fill%3D%22%238a9f55%22%2F%3E%3Cpath%20d%3D%22M258.589%2C168.709H256a.875.875%2C0%2C0%2C1-.875-.875v-3.109a.875.875%2C0%2C1%2C1%2C1.75%2C0v2.234h1.718a.875.875%2C0%2C0%2C1%2C0%2C1.75Z%22%20transform%3D%22translate(-223.386%20-72.613)%22%20fill%3D%22%238a9f55%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: 50% 35px;
  border-color: #8a9f55;
}
.mv .mv_btn.mv_btn_01::after {
  border-color: #8a9f55;
}
.mv .mv_btn.mv_btn_02 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2254.065%22%20height%3D%2254.002%22%20viewBox%3D%220%200%2054.065%2054.002%22%3E%3Cg%20transform%3D%22translate(0.5)%22%3E%3Cpath%20d%3D%22M120%2C32h1.688v1.688H120Z%22%20transform%3D%22translate(-107.791%20-28.625)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M376%2C168h1.688v1.688H376Z%22%20transform%3D%22translate(-336.789%20-150.281)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M424%2C32h1.688v1.688H424Z%22%20transform%3D%22translate(-379.727%20-28.625)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M0%2C189.7H1.688v1.688H0Z%22%20transform%3D%22translate(-0.447%20-169.692)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M232%2C464h1.688v1.688H232Z%22%20transform%3D%22translate(-207.978%20-415.061)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M154.953%2C408a2.953%2C2.953%2C0%2C1%2C0%2C2.953%2C2.953A2.962%2C2.962%2C0%2C0%2C0%2C154.953%2C408Zm0%2C4.219a1.266%2C1.266%2C0%2C1%2C1%2C1.266-1.266A1.269%2C1.269%2C0%2C0%2C1%2C154.953%2C412.219Z%22%20transform%3D%22translate(-136.415%20-364.967)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M26.953%2C21.906A2.953%2C2.953%2C0%2C1%2C0%2C24%2C18.953%2C2.962%2C2.962%2C0%2C0%2C0%2C26.953%2C21.906Zm0-4.219a1.266%2C1.266%2C0%2C1%2C1-1.266%2C1.266A1.269%2C1.269%2C0%2C0%2C1%2C26.953%2C17.688Z%22%20transform%3D%22translate(-21.916%20-14.312)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M216.443%2C5.8l2.51%2C1.371%2C1.371%2C2.51a.837.837%2C0%2C0%2C0%2C1.477%2C0l1.371-2.51%2C2.51-1.371a.837.837%2C0%2C0%2C0%2C0-1.477l-2.51-1.371L221.8.443a.837.837%2C0%2C0%2C0-1.477%2C0l-1.371%2C2.51-2.51%2C1.371a.837.837%2C0%2C0%2C0%2C0%2C1.477Zm3.533-1.487a.865.865%2C0%2C0%2C0%2C.338-.338l.749-1.371.749%2C1.371a.865.865%2C0%2C0%2C0%2C.337.338l1.371.749-1.371.749a.865.865%2C0%2C0%2C0-.337.338l-.749%2C1.371-.749-1.371a.865.865%2C0%2C0%2C0-.338-.338l-1.371-.749Z%22%20transform%3D%22translate(-193.665)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M305.682%2C420.324l-2.51-1.371-1.371-2.51a.837.837%2C0%2C0%2C0-1.477%2C0l-1.371%2C2.51-2.51%2C1.371a.837.837%2C0%2C0%2C0%2C0%2C1.477l2.51%2C1.371%2C1.371%2C2.51a.837.837%2C0%2C0%2C0%2C1.477%2C0l1.371-2.51%2C2.51-1.371a.837.837%2C0%2C0%2C0%2C0-1.477Zm-3.533%2C1.487a.865.865%2C0%2C0%2C0-.338.337l-.749%2C1.371-.749-1.371a.864.864%2C0%2C0%2C0-.338-.337l-1.371-.749%2C1.371-.749a.865.865%2C0%2C0%2C0%2C.338-.338l.749-1.371.749%2C1.371a.865.865%2C0%2C0%2C0%2C.338.338l1.371.749Z%22%20transform%3D%22translate(-265.227%20-372.123)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M53.46%2C93.122%2C47.648%2C81.488V72.407a.835.835%2C0%2C0%2C0-.348-.686.85.85%2C0%2C0%2C0-.759-.116l-1.424.475V70.719a.841.841%2C0%2C0%2C0-.717-.833%2C23.617%2C23.617%2C0%2C0%2C0-7%2C0%2C23.911%2C23.911%2C0%2C0%2C0-10.052%2C4.05%2C32.192%2C32.192%2C0%2C0%2C0-8.2-3.2A44.609%2C44.609%2C0%2C0%2C0%2C8.8%2C69.875a.847.847%2C0%2C0%2C0-.812.844V72.08l-1.424-.475a.85.85%2C0%2C0%2C0-.759.116.835.835%2C0%2C0%2C0-.348.686v9.081L-.405%2C93.122A.78.78%2C0%2C0%2C0-.5%2C93.5v22.782H1.188V93.9l10-8.248A5.853%2C5.853%2C0%2C0%2C1%2C10.132%2C90.4L5.67%2C94.577a.838.838%2C0%2C0%2C0-.264.612V97.72a.846.846%2C0%2C0%2C0%2C.844.844%2C2.777%2C2.777%2C0%2C0%2C1%2C1.92%2C1.023c1%2C1.223%2C1.223%2C3.438.633%2C6.4l1.656.327a16.528%2C16.528%2C0%2C0%2C0%2C.359-3.628c.5-.032.981-.042%2C1.466-.042.032%2C1.846-.253%2C6.6-3.755%2C7.773a.839.839%2C0%2C0%2C0-.58.8v5.063H9.636V111.8c2.057-.918%2C3.438-2.89%2C4.029-5.738a15.5%2C15.5%2C0%2C0%2C0%2C.306-3.333%2C25.568%2C25.568%2C0%2C0%2C1%2C9.946%2C3.017.21.21%2C0%2C0%2C1%2C.116.19V107a.846.846%2C0%2C0%2C0%2C.844.844h5.063a.846.846%2C0%2C0%2C0%2C.844-.844V105.81a.249.249%2C0%2C0%2C1%2C.074-.169%2C14.853%2C14.853%2C0%2C0%2C1%2C8.259-3.111c-.042%2C2.183.3%2C7.478%2C4.314%2C9.271v4.483h1.688v-5.063a.849.849%2C0%2C0%2C0-.58-.8c-3.512-1.171-3.776-6.054-3.734-7.932.591.021%2C1.076.063%2C1.445.105a16.145%2C16.145%2C0%2C0%2C0%2C.348%2C3.723l1.656-.327c-.591-2.943-.38-5.147.612-6.381A2.814%2C2.814%2C0%2C0%2C1%2C46.8%2C98.554a.846.846%2C0%2C0%2C0%2C.844-.844V95.178a.838.838%2C0%2C0%2C0-.264-.612L42.934%2C90.4a5.812%2C5.812%2C0%2C0%2C1-1.055-4.746l10%2C8.248v22.381h1.688V93.5A.927.927%2C0%2C0%2C0%2C53.46%2C93.122Zm-3.28-2.806-2.531-2.088V85.253ZM45.961%2C73.578V86.846l-.844-.7V73.862Zm-37.97.285V86.108l-.844.7V73.578ZM5.459%2C88.2%2C2.907%2C90.306l2.552-5.063Zm5.875%2C3.386a.857.857%2C0%2C0%2C0%2C.095-.105%2C7.522%2C7.522%2C0%2C0%2C0%2C.928-7.636.829.829%2C0%2C0%2C0-.58-.443.813.813%2C0%2C0%2C0-.707.179L9.678%2C84.716V71.542a41.523%2C41.523%2C0%2C0%2C1%2C9.081.844%2C30.551%2C30.551%2C0%2C0%2C1%2C7.794%2C3.048v25.925A31.865%2C31.865%2C0%2C0%2C0%2C19.16%2C98.6a43.555%2C43.555%2C0%2C0%2C0-9.482-.886V93.143Zm-4.24%2C3.976.9-.833v2.616a5.383%2C5.383%2C0%2C0%2C0-.9-.338ZM29.8%2C104.323a1.9%2C1.9%2C0%2C0%2C0-.717%2C1.487v.348H25.71v-.232a1.888%2C1.888%2C0%2C0%2C0-.991-1.666%2C26.575%2C26.575%2C0%2C0%2C0-14.1-3.238%2C6.281%2C6.281%2C0%2C0%2C0-.57-1.624%2C41.2%2C41.2%2C0%2C0%2C1%2C8.712.844%2C30.573%2C30.573%2C0%2C0%2C1%2C8.216%2C3.28.825.825%2C0%2C0%2C0%2C.844%2C0%2C.189.189%2C0%2C0%2C0%2C.074-.053%2C22.228%2C22.228%2C0%2C0%2C1%2C9.756-4.061%2C21.681%2C21.681%2C0%2C0%2C1%2C5.421-.137%2C6.049%2C6.049%2C0%2C0%2C0-.612%2C1.656%2C17.008%2C17.008%2C0%2C0%2C0-12.657%2C3.4ZM45.961%2C97a4.369%2C4.369%2C0%2C0%2C0-.844.306V94.767l.844.791ZM41.278%2C83.4a.858.858%2C0%2C0%2C0-.58.443%2C7.52%2C7.52%2C0%2C0%2C0%2C.928%2C7.636.951.951%2C0%2C0%2C0%2C.095.105l1.709%2C1.6V97.6a23.1%2C23.1%2C0%2C0%2C0-6.033.127%2C23.748%2C23.748%2C0%2C0%2C0-9.155%2C3.46V75.371a21.736%2C21.736%2C0%2C0%2C1%2C15.188-3.913v13.3l-1.445-1.192a.859.859%2C0%2C0%2C0-.707-.169Z%22%20transform%3D%22translate(0%20-62.281)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M130.318%2C139.221l.833-1.466a21.03%2C21.03%2C0%2C0%2C0-12.351-2.637l.243%2C1.666A19.733%2C19.733%2C0%2C0%2C1%2C130.318%2C139.221Z%22%20transform%3D%22translate(-106.717%20-120.773)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M130.318%2C179.221l.833-1.466a21.03%2C21.03%2C0%2C0%2C0-12.351-2.637l.243%2C1.666A19.733%2C19.733%2C0%2C0%2C1%2C130.318%2C179.221Z%22%20transform%3D%22translate(-106.717%20-156.555)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M284%2C297.842l.833%2C1.466a19.564%2C19.564%2C0%2C0%2C1%2C11.275-2.426l.243-1.666A20.79%2C20.79%2C0%2C0%2C0%2C284%2C297.842Z%22%20transform%3D%22translate(-254.493%20-263.975)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M284%2C130.7l.833%2C1.466a19.564%2C19.564%2C0%2C0%2C1%2C11.275-2.426l.243-1.666A20.977%2C20.977%2C0%2C0%2C0%2C284%2C130.7Z%22%20transform%3D%22translate(-254.493%20-114.469)%22%20fill%3D%22%23e16f4e%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: 50% 31px;
  border-color: #e16f4e;
}
.mv .mv_btn.mv_btn_02::after {
  border-color: #e16f4e;
}
.mv .mv_btn.mv_btn_03 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2249.617%22%20height%3D%2249.602%22%20viewBox%3D%220%200%2049.617%2049.602%22%3E%3Cg%20transform%3D%22translate(-25.612%20486.25)%22%3E%3Cpath%20d%3D%22M38.548-485.808c-.16.171-.181.523-.181%2C2.765v2.562l-.715.181a4.975%2C4.975%2C0%2C0%2C0-3.683%2C5.465%2C5.616%2C5.616%2C0%2C0%2C0%2C1.078%2C2.412%2C2.079%2C2.079%2C0%2C0%2C1%2C.331.448%2C1.38%2C1.38%2C0%2C0%2C1-.566.064%2C5.619%2C5.619%2C0%2C0%2C0-4.6%2C2.978c-.694%2C1.324-.7%2C1.441-.7%2C8.828%2C0%2C6.479%2C0%2C6.629-.213%2C6.821a4.112%2C4.112%2C0%2C0%2C0-.907%2C1.708%2C4.3%2C4.3%2C0%2C0%2C0%2C1.067%2C4.056l.438.448-.534.278a6.929%2C6.929%2C0%2C0%2C0-3.32%2C4.248%2C20.6%2C20.6%2C0%2C0%2C0%2C.011%2C5.476c.149.149%2C2.508.171%2C24.38.171s24.231-.021%2C24.38-.171.171-.512.171-2.444a24.7%2C24.7%2C0%2C0%2C0-.117-2.85%2C8.683%2C8.683%2C0%2C0%2C0-.544-1.473%2C5.12%2C5.12%2C0%2C0%2C0-1.3-1.761%2C7.432%2C7.432%2C0%2C0%2C0-1.473-1.174l-.6-.31.363-.331a4.694%2C4.694%2C0%2C0%2C0%2C1.217-2.188%2C4.278%2C4.278%2C0%2C0%2C0-2.327-4.718%2C2.944%2C2.944%2C0%2C0%2C0-1.836-.352%2C2.944%2C2.944%2C0%2C0%2C0-1.836.352%2C4.671%2C4.671%2C0%2C0%2C0-2.124%2C2.231%2C3.817%2C3.817%2C0%2C0%2C0-.256%2C1.633%2C2.96%2C2.96%2C0%2C0%2C0%2C.342%2C1.729%2C4.9%2C4.9%2C0%2C0%2C0%2C.8%2C1.185l.47.47-.63.342a7.953%2C7.953%2C0%2C0%2C0-2.37%2C2.242%2C2.309%2C2.309%2C0%2C0%2C1-.374.544%2C2.73%2C2.73%2C0%2C0%2C1-.374-.544%2C7.953%2C7.953%2C0%2C0%2C0-2.37-2.242l-.619-.331.47-.491a5.479%2C5.479%2C0%2C0%2C0%2C.8-1.185%2C2.992%2C2.992%2C0%2C0%2C0%2C.331-1.719%2C3.817%2C3.817%2C0%2C0%2C0-.256-1.633%2C4.671%2C4.671%2C0%2C0%2C0-2.124-2.231%2C2.944%2C2.944%2C0%2C0%2C0-1.836-.352%2C2.944%2C2.944%2C0%2C0%2C0-1.836.352%2C4.671%2C4.671%2C0%2C0%2C0-2.124%2C2.231%2C3.817%2C3.817%2C0%2C0%2C0-.256%2C1.633%2C2.96%2C2.96%2C0%2C0%2C0%2C.342%2C1.729%2C4.9%2C4.9%2C0%2C0%2C0%2C.8%2C1.185l.47.47-.63.342a7.953%2C7.953%2C0%2C0%2C0-2.37%2C2.242%2C2.309%2C2.309%2C0%2C0%2C1-.374.544%2C1.371%2C1.371%2C0%2C0%2C1-.267-.4%2C8.088%2C8.088%2C0%2C0%2C0-2.37-2.327l-.737-.416.459-.459a4.244%2C4.244%2C0%2C0%2C0-1.142-6.693%2C5.493%2C5.493%2C0%2C0%2C0-1.174-.438l-.427-.075.021-1.879.032-1.889%2C13.108-.053c11.5-.043%2C13.119-.075%2C13.2-.214a11.344%2C11.344%2C0%2C0%2C0%2C.107-1.985c0-2.188%2C0-2.178-1.1-2.178h-.715V-474.29c0-10.867-.011-11.368-.192-11.528s-1.4-.181-15.36-.181C39.327-486%2C38.708-485.989%2C38.548-485.808Zm29.547%2C11.977V-463l-11.6.032-11.614.021v-3.416h2.284c2.231%2C0%2C2.306-.011%2C2.562-.246a64.765%2C64.765%2C0%2C0%2C0%2C4.707-6.255%2C2.775%2C2.775%2C0%2C0%2C0-1.206-3.288%2C2.072%2C2.072%2C0%2C0%2C0-1.409-.3c-1.356%2C0-1.548.149-3.48%2C2.562l-1.58%2C1.975h-2.22a20.415%2C20.415%2C0%2C0%2C1-2.22-.064%2C2.079%2C2.079%2C0%2C0%2C1%2C.331-.448%2C5.321%2C5.321%2C0%2C0%2C0%2C1.057-2.4%2C4.942%2C4.942%2C0%2C0%2C0-3.491-5.412l-.459-.139v-4.344l14.176.021%2C14.165.032Zm-27.785-4.942a3.592%2C3.592%2C0%2C0%2C1%2C.416%2C6.3%2C3.583%2C3.583%2C0%2C0%2C1-5.4-2.54%2C4.306%2C4.306%2C0%2C0%2C1%2C.395-2.156%2C4.01%2C4.01%2C0%2C0%2C1%2C2.22-1.793A4.928%2C4.928%2C0%2C0%2C1%2C40.309-478.773Zm12.147%2C3.8a1.589%2C1.589%2C0%2C0%2C1%2C.747%2C1.249c0%2C.48-.043.534-2.455%2C3.672l-1.761%2C2.295-2.466.011c-2.327%2C0-2.487.011-2.754.224l-.278.214v6.351c0%2C5.23-.021%2C6.341-.139%2C6.341a4.6%2C4.6%2C0%2C0%2C0-2.028%2C1.281%2C3.646%2C3.646%2C0%2C0%2C0-1.089%2C2.882%2C2.96%2C2.96%2C0%2C0%2C0%2C.342%2C1.729%2C4.9%2C4.9%2C0%2C0%2C0%2C.8%2C1.185l.47.47-.587.31a7.918%2C7.918%2C0%2C0%2C0-2.412%2C2.274%2C2.308%2C2.308%2C0%2C0%2C1-.374.544%2C1.371%2C1.371%2C0%2C0%2C1-.267-.4%2C8.087%2C8.087%2C0%2C0%2C0-2.37-2.327l-.737-.416.448-.438a5.87%2C5.87%2C0%2C0%2C0%2C.8-1.185%2C2.8%2C2.8%2C0%2C0%2C0%2C.363-1.751%2C3.665%2C3.665%2C0%2C0%2C0-.971-2.754l-.47-.534v-6.17c0-5.583-.021-6.18-.181-6.362a.727.727%2C0%2C0%2C0-.993.021c-.213.214-.213.352-.213%2C5.967v5.753l-.395-.107a7.576%2C7.576%2C0%2C0%2C0-2.348.075l-.246.075v-5.956c0-6.618.032-6.97.662-8.027a4.445%2C4.445%2C0%2C0%2C1%2C1.879-1.687l.608-.31%2C6.618-.053c4.12-.032%2C6.682-.1%2C6.789-.16a21.654%2C21.654%2C0%2C0%2C0%2C1.537-1.815c1.569-1.975%2C1.943-2.391%2C2.242-2.508A1.8%2C1.8%2C0%2C0%2C1%2C52.456-474.973Zm17.485%2C14.24-.032.833-12.51.032-12.521.021v-1.708h25.1Zm-36.293%2C7.568a2.918%2C2.918%2C0%2C0%2C1%2C.811%2C4.836%2C3.38%2C3.38%2C0%2C0%2C1-1.9.758%2C3.057%2C3.057%2C0%2C0%2C1-2.786-2.081A2.9%2C2.9%2C0%2C0%2C1%2C33.648-453.166Zm11.955.011a3.491%2C3.491%2C0%2C0%2C1%2C1.43%2C1.356%2C3.266%2C3.266%2C0%2C0%2C1%2C.278%2C1.164%2C2.009%2C2.009%2C0%2C0%2C1-.288%2C1.4%2C2.766%2C2.766%2C0%2C0%2C1-3.341%2C1.516%2C2.627%2C2.627%2C0%2C0%2C1-1.783-1.462%2C2.8%2C2.8%2C0%2C0%2C1%2C.619-3.437A2.859%2C2.859%2C0%2C0%2C1%2C45.6-453.155Zm12.083.085a2.828%2C2.828%2C0%2C0%2C1%2C1.27%2C3.885%2C2.627%2C2.627%2C0%2C0%2C1-1.783%2C1.462%2C2.766%2C2.766%2C0%2C0%2C1-3.341-1.516%2C2.01%2C2.01%2C0%2C0%2C1-.288-1.4%2C2.678%2C2.678%2C0%2C0%2C1%2C.939-2A2.768%2C2.768%2C0%2C0%2C1%2C57.687-453.069Zm11.849-.032a2.747%2C2.747%2C0%2C0%2C1%2C1.687%2C2.477%2C2.024%2C2.024%2C0%2C0%2C1-.31%2C1.441%2C2.828%2C2.828%2C0%2C0%2C1-3.96%2C1.217%2C2.788%2C2.788%2C0%2C0%2C1-1.462-2.54%2C2.751%2C2.751%2C0%2C0%2C1%2C.939-2.114A2.717%2C2.717%2C0%2C0%2C1%2C69.535-453.1ZM57.8-446.014a5.011%2C5.011%2C0%2C0%2C1%2C2.295%2C1.366c1.238%2C1.238%2C1.537%2C2.156%2C1.537%2C4.675v1.793l-5.252-.021-5.262-.032.011-1.815a6.844%2C6.844%2C0%2C0%2C1%2C.246-2.508%2C5.232%2C5.232%2C0%2C0%2C1%2C4.985-3.619A5.71%2C5.71%2C0%2C0%2C1%2C57.8-446.014Zm11.891-.011a5%2C5%2C0%2C0%2C1%2C2.348%2C1.388c1.249%2C1.238%2C1.548%2C2.167%2C1.548%2C4.718v1.74L68.34-438.2l-5.262-.032.011-1.815a6.844%2C6.844%2C0%2C0%2C1%2C.246-2.508A5.313%2C5.313%2C0%2C0%2C1%2C69.7-446.024Zm-35.973.107a5.228%2C5.228%2C0%2C0%2C1%2C2.476%2C1.4c1.238%2C1.217%2C1.676%2C2.6%2C1.612%2C5.113l-.032%2C1.174H27.211v-1.654a6.923%2C6.923%2C0%2C0%2C1%2C.246-2.4%2C5.1%2C5.1%2C0%2C0%2C1%2C3.277-3.448A4.906%2C4.906%2C0%2C0%2C1%2C33.723-445.918Zm12.489.171a5.142%2C5.142%2C0%2C0%2C1%2C2.989%2C2.7%2C7.47%2C7.47%2C0%2C0%2C1%2C.566%2C3.64l-.032%2C1.174H39.167l.011-1.708c.011-1.943.128-2.508.747-3.533a4.745%2C4.745%2C0%2C0%2C1%2C1.59-1.687%2C7.03%2C7.03%2C0%2C0%2C1%2C2.082-.854A6.906%2C6.906%2C0%2C0%2C1%2C46.212-445.747Z%22%20fill%3D%22%23d3ba57%22%2F%3E%3Cpath%20d%3D%22M53.876-486.25c15.208%2C0%2C15.277.009%2C15.529.247.274.242.274.283.274%2C11.713v11.1h.5c.555%2C0%2C.956%2C0%2C1.159.417a5.551%2C5.551%2C0%2C0%2C1%2C.159%2C2.011c0%2C.479-.012.959-.034%2C1.351-.036.647-.078.714-.111.767-.086.14-.245.174-.678.2-.358.024-.947.042-1.853.057-1.966.033-5.622.051-10.884.071l-12.863.052-.028%2C1.645-.019%2C1.665.218.038a5.687%2C5.687%2C0%2C0%2C1%2C1.243.46%2C4.416%2C4.416%2C0%2C0%2C1%2C2.38%2C3.25%2C4.4%2C4.4%2C0%2C0%2C1-1.17%2C3.841l-.229.229.45.254a8.382%2C8.382%2C0%2C0%2C1%2C2.467%2C2.426l.053.095c.044-.069.1-.153.15-.249a8.2%2C8.2%2C0%2C0%2C1%2C2.466-2.336l.337-.183-.233-.233a5.173%2C5.173%2C0%2C0%2C1-.851-1.257%2C3.172%2C3.172%2C0%2C0%2C1-.364-1.834%2C4.073%2C4.073%2C0%2C0%2C1%2C.275-1.729%2C4.9%2C4.9%2C0%2C0%2C1%2C2.246-2.36%2C3.153%2C3.153%2C0%2C0%2C1%2C1.946-.378%2C3.156%2C3.156%2C0%2C0%2C1%2C1.948.379%2C4.9%2C4.9%2C0%2C0%2C1%2C2.245%2C2.363%2C4.062%2C4.062%2C0%2C0%2C1%2C.274%2C1.722%2C3.245%2C3.245%2C0%2C0%2C1-.354%2C1.828l0%2C.006a5.688%2C5.688%2C0%2C0%2C1-.845%2C1.248l-.24.251.329.176a8.2%2C8.2%2C0%2C0%2C1%2C2.467%2C2.335c.066.109.119.193.161.259.045-.071.1-.157.154-.256a8.2%2C8.2%2C0%2C0%2C1%2C2.466-2.336l.337-.183-.233-.233a5.173%2C5.173%2C0%2C0%2C1-.851-1.257%2C3.173%2C3.173%2C0%2C0%2C1-.364-1.834%2C4.073%2C4.073%2C0%2C0%2C1%2C.275-1.729%2C4.9%2C4.9%2C0%2C0%2C1%2C2.246-2.36%2C3.153%2C3.153%2C0%2C0%2C1%2C1.946-.378%2C3.155%2C3.155%2C0%2C0%2C1%2C1.948.379%2C4.534%2C4.534%2C0%2C0%2C1%2C2.46%2C4.994%2C4.936%2C4.936%2C0%2C0%2C1-1.295%2C2.323l-.1.088.279.145a7.571%2C7.571%2C0%2C0%2C1%2C1.535%2C1.219%2C5.344%2C5.344%2C0%2C0%2C1%2C1.351%2C1.83%2C8.815%2C8.815%2C0%2C0%2C1%2C.564%2C1.53%2C24.823%2C24.823%2C0%2C0%2C1%2C.123%2C2.9c0%2C2.053-.017%2C2.407-.247%2C2.624-.133.133-.212.183-4.216.212-3.435.025-9.8.029-20.338.029s-16.9%2C0-20.338-.029c-4.012-.029-4.084-.079-4.217-.213-.079-.076-.258-.266-.261-2.624a19.191%2C19.191%2C0%2C0%2C1%2C.181-3.087%2C7.147%2C7.147%2C0%2C0%2C1%2C3.447-4.413l.236-.122-.2-.207a4.545%2C4.545%2C0%2C0%2C1-1.129-4.3%2C4.3%2C4.3%2C0%2C0%2C1%2C.98-1.824c.131-.118.131-1.241.131-6.635%2C0-7.4.014-7.572.733-8.944a5.866%2C5.866%2C0%2C0%2C1%2C4.822-3.112l.127%2C0-.083-.1a5.826%2C5.826%2C0%2C0%2C1-1.134-2.533%2C4.974%2C4.974%2C0%2C0%2C1%2C.832-3.59%2C5.158%2C5.158%2C0%2C0%2C1%2C3.038-2.159l.525-.133v-2.367c0-2.411.023-2.693.246-2.933.153-.172.293-.218%2C2.45-.246C42.8-486.247%2C46.494-486.25%2C53.876-486.25Zm15.19.623c-.4-.118-3.633-.123-15.19-.123-11.883%2C0-14.821%2C0-15.153.122a11.218%2C11.218%2C0%2C0%2C0-.107%2C2.585v2.756l-.9.229a4.737%2C4.737%2C0%2C0%2C0-3.5%2C5.182%2C5.345%2C5.345%2C0%2C0%2C0%2C1.019%2C2.288c.374.44.393.52.393.614%2C0%2C.29-.369.314-.816.314a5.34%2C5.34%2C0%2C0%2C0-4.38%2C2.845c-.676%2C1.289-.676%2C1.428-.676%2C8.711%2C0%2C3.263%2C0%2C4.9-.027%2C5.776s-.082%2C1.062-.269%2C1.231a3.911%2C3.911%2C0%2C0%2C0-.834%2C1.591%2C4.026%2C4.026%2C0%2C0%2C0%2C1%2C3.81L30.3-447l-.833.433a6.714%2C6.714%2C0%2C0%2C0-3.192%2C4.085%2C24.088%2C24.088%2C0%2C0%2C0-.049%2C5.216c.7.11%2C5.908.123%2C24.2.123%2C18.528%2C0%2C23.631-.013%2C24.222-.127a14.53%2C14.53%2C0%2C0%2C0%2C.079-2.238%2C24.53%2C24.53%2C0%2C0%2C0-.112-2.8%2C8.559%2C8.559%2C0%2C0%2C0-.526-1.418%2C4.881%2C4.881%2C0%2C0%2C0-1.25-1.688%2C7.3%2C7.3%2C0%2C0%2C0-1.414-1.131l-.917-.475.628-.573a4.433%2C4.433%2C0%2C0%2C0%2C1.141-2.055%2C4.035%2C4.035%2C0%2C0%2C0-2.193-4.442%2C2.722%2C2.722%2C0%2C0%2C0-1.725-.326%2C2.721%2C2.721%2C0%2C0%2C0-1.724.326%2C4.427%2C4.427%2C0%2C0%2C0-2%2C2.1%2C3.583%2C3.583%2C0%2C0%2C0-.239%2C1.545%2C2.721%2C2.721%2C0%2C0%2C0%2C.317%2C1.619%2C4.66%2C4.66%2C0%2C0%2C0%2C.752%2C1.115l.707.706-.924.5a7.7%2C7.7%2C0%2C0%2C0-2.274%2C2.149c-.381.667-.473.667-.589.667-.163%2C0-.229-.075-.587-.665a7.7%2C7.7%2C0%2C0%2C0-2.277-2.153l-.906-.484.7-.733a5.274%2C5.274%2C0%2C0%2C0%2C.752-1.117%2C2.754%2C2.754%2C0%2C0%2C0%2C.306-1.61%2C3.572%2C3.572%2C0%2C0%2C0-.237-1.538%2C4.427%2C4.427%2C0%2C0%2C0-2-2.1%2C2.724%2C2.724%2C0%2C0%2C0-1.726-.327%2C2.721%2C2.721%2C0%2C0%2C0-1.724.326%2C4.427%2C4.427%2C0%2C0%2C0-2%2C2.1%2C3.582%2C3.582%2C0%2C0%2C0-.239%2C1.545%2C2.721%2C2.721%2C0%2C0%2C0%2C.317%2C1.619%2C4.66%2C4.66%2C0%2C0%2C0%2C.752%2C1.115l.707.707-.924.5a7.7%2C7.7%2C0%2C0%2C0-2.274%2C2.149c-.381.667-.473.667-.589.667-.148%2C0-.239-.076-.486-.525a7.865%2C7.865%2C0%2C0%2C0-2.274-2.23l-1.023-.578.692-.692a3.9%2C3.9%2C0%2C0%2C0%2C1.033-3.406%2C3.921%2C3.921%2C0%2C0%2C0-2.111-2.886%2C5.271%2C5.271%2C0%2C0%2C0-1.1-.415l-.637-.111.024-2.091.036-2.135%2C13.353-.054c9.122-.034%2C12.384-.061%2C12.991-.152a17.659%2C17.659%2C0%2C0%2C0%2C.071-1.8%2C6.34%2C6.34%2C0%2C0%2C0-.108-1.792c-.056-.116-.162-.136-.71-.136h-1v-11.6C69.179-482.888%2C69.174-485.3%2C69.066-485.627Zm-29.562.658%2C14.426.022%2C14.415.033v22.168l-11.852.033-11.864.022v-3.916h2.534c2.136%2C0%2C2.213-.015%2C2.393-.18l0%2C0c.244-.213%2C1.257-1.482%2C2.463-3.085a36.522%2C36.522%2C0%2C0%2C0%2C2.173-3.064%2C2.517%2C2.517%2C0%2C0%2C0-1.1-2.99l0%2C0c-.39-.238-.51-.262-1.279-.262-1.216%2C0-1.354.057-3.285%2C2.468l-1.655%2C2.068h-2.34c-.579%2C0-1.138-.007-1.574-.02-.206-.006-.37-.013-.487-.021-.163-.011-.409-.027-.409-.273%2C0-.094.019-.173.39-.61a5.076%2C5.076%2C0%2C0%2C0%2C1-2.28A4.708%2C4.708%2C0%2C0%2C0%2C40.142-480l-.638-.193Zm28.341.553-13.916-.031L40-484.469v3.909l.281.085a5.234%2C5.234%2C0%2C0%2C1%2C2.9%2C2.185%2C5.018%2C5.018%2C0%2C0%2C1%2C.765%2C3.505%2C5.546%2C5.546%2C0%2C0%2C1-1.116%2C2.528l-.059.07c.375.014.991.027%2C1.761.027h2.1l1.5-1.881c1.916-2.393%2C2.177-2.656%2C3.675-2.656a2.328%2C2.328%2C0%2C0%2C1%2C1.537.334%2C3.019%2C3.019%2C0%2C0%2C1%2C1.315%2C3.583%2C61.452%2C61.452%2C0%2C0%2C1-4.777%2C6.36c-.338.309-.523.309-2.729.309H45.127v2.915l11.363-.021%2C11.354-.031ZM38.6-479.289a5.438%2C5.438%2C0%2C0%2C1%2C1.808.286%2C3.807%2C3.807%2C0%2C0%2C1%2C2.233%2C3.271%2C3.706%2C3.706%2C0%2C0%2C1-1.787%2C3.471%2C3.844%2C3.844%2C0%2C0%2C1-1.981.555%2C3.873%2C3.873%2C0%2C0%2C1-2.47-.894%2C3.786%2C3.786%2C0%2C0%2C1-1.326-2.38%2C4.547%2C4.547%2C0%2C0%2C1%2C.42-2.307%2C4.226%2C4.226%2C0%2C0%2C1%2C2.366-1.916A2.436%2C2.436%2C0%2C0%2C1%2C38.6-479.289Zm.273%2C7.083a3.345%2C3.345%2C0%2C0%2C0%2C1.723-.484%2C3.214%2C3.214%2C0%2C0%2C0%2C1.546-3.012%2C3.265%2C3.265%2C0%2C0%2C0-1.935-2.843%2C5%2C5%2C0%2C0%2C0-1.607-.244%2C2.084%2C2.084%2C0%2C0%2C0-.581.06%2C3.755%2C3.755%2C0%2C0%2C0-2.078%2C1.67%2C4.091%2C4.091%2C0%2C0%2C0-.371%2C2.007%2C3.288%2C3.288%2C0%2C0%2C0%2C1.151%2C2.068A3.372%2C3.372%2C0%2C0%2C0%2C38.873-472.206Zm12.914-3.142a1.832%2C1.832%2C0%2C0%2C1%2C.781.151%2C1.835%2C1.835%2C0%2C0%2C1%2C.885%2C1.473c0%2C.563-.046.623-2.474%2C3.782l-1.869%2C2.435-2.588.011c-2.209%2C0-2.4.013-2.6.169l-.184.141v6.228c0%2C2.442%2C0%2C4.153-.025%2C5.137-.01.468-.024.777-.043.973-.017.168-.048.48-.32.48a4.6%2C4.6%2C0%2C0%2C0-1.843%2C1.2%2C3.421%2C3.421%2C0%2C0%2C0-1.024%2C2.716%2C2.723%2C2.723%2C0%2C0%2C0%2C.317%2C1.62%2C4.661%2C4.661%2C0%2C0%2C0%2C.752%2C1.115l.709.709-.887.468a7.681%2C7.681%2C0%2C0%2C0-2.313%2C2.178c-.382.669-.483.669-.59.669-.148%2C0-.239-.076-.486-.525a7.865%2C7.865%2C0%2C0%2C0-2.274-2.23l-1.026-.58.684-.667a5.652%2C5.652%2C0%2C0%2C0%2C.755-1.121%2C2.568%2C2.568%2C0%2C0%2C0%2C.337-1.639%2C3.42%2C3.42%2C0%2C0%2C0-.907-2.586l-.534-.607v-6.264a49.838%2C49.838%2C0%2C0%2C0-.12-6.2.369.369%2C0%2C0%2C0-.274-.1.506.506%2C0%2C0%2C0-.353.134c-.14.14-.14.893-.14%2C5.79v6.08l-.71-.192a3.8%2C3.8%2C0%2C0%2C0-.764-.051%2C6.616%2C6.616%2C0%2C0%2C0-1.444.123l-.571.174v-6.294c0-6.659.033-7.04.7-8.155a4.682%2C4.682%2C0%2C0%2C1%2C1.984-1.783l.657-.334%2C6.677-.054c4.152-.032%2C6.31-.093%2C6.677-.141.158-.154.726-.823%2C1.455-1.74%2C1.628-2.049%2C1.983-2.441%2C2.342-2.584A1.723%2C1.723%2C0%2C0%2C1%2C51.787-475.348Zm-2.924%2C7.341%2C1.72-2.241c2.326-3.026%2C2.37-3.091%2C2.37-3.477a1.34%2C1.34%2C0%2C0%2C0-.611-1.027%2C1.4%2C1.4%2C0%2C0%2C0-.555-.1%2C1.24%2C1.24%2C0%2C0%2C0-.459.072l-.008%2C0c-.24.094-.659.571-2.137%2C2.431a20.574%2C20.574%2C0%2C0%2C1-1.6%2C1.874c-.077.046-.138.083-2.012.128-1.212.029-2.907.053-4.9.068l-6.559.053-.556.283a4.192%2C4.192%2C0%2C0%2C0-1.779%2C1.594c-.6%2C1-.625%2C1.369-.625%2C7.9v5.621a7.87%2C7.87%2C0%2C0%2C1%2C1.515-.124%2C4.316%2C4.316%2C0%2C0%2C1%2C.893.068l.081.022v-5.427c0-5.857%2C0-5.857.287-6.144a1%2C1%2C0%2C0%2C1%2C.706-.28.857.857%2C0%2C0%2C1%2C.651.271c.223.252.243.45.243%2C6.527v6.075l.407.463a3.9%2C3.9%2C0%2C0%2C1%2C1.034%2C2.917%2C3.041%2C3.041%2C0%2C0%2C1-.389%2C1.865%2C6.129%2C6.129%2C0%2C0%2C1-.844%2C1.246l-.006.006-.21.2.447.252a8.382%2C8.382%2C0%2C0%2C1%2C2.467%2C2.426l.053.095c.044-.069.1-.153.15-.249a8.2%2C8.2%2C0%2C0%2C1%2C2.515-2.372l.285-.15-.23-.23a5.173%2C5.173%2C0%2C0%2C1-.851-1.257%2C3.172%2C3.172%2C0%2C0%2C1-.364-1.834%2C3.89%2C3.89%2C0%2C0%2C1%2C1.156-3.052%2C5.34%2C5.34%2C0%2C0%2C1%2C2.029-1.336c.066-.533.071-2.808.071-6.116v-6.474l.375-.289c.337-.27.526-.276%2C2.906-.276Zm-4.236%2C6.2H70.233l-.083%2C2.154-12.75.033-12.772.022Zm25.086.5H45.127v1.207l12.271-.021%2C12.27-.031Zm-13.331%2C7.664a3.126%2C3.126%2C0%2C0%2C1%2C1.418.349%2C3.089%2C3.089%2C0%2C0%2C1%2C1.382%2C4.22%2C2.869%2C2.869%2C0%2C0%2C1-1.938%2C1.592%2C3.236%2C3.236%2C0%2C0%2C1-.9.13%2C3.02%2C3.02%2C0%2C0%2C1-2.736-1.776%2C2.245%2C2.245%2C0%2C0%2C1-.313-1.525%2C2.913%2C2.913%2C0%2C0%2C1%2C1.022-2.166A3.07%2C3.07%2C0%2C0%2C1%2C56.382-453.642Zm-.037%2C5.791a2.74%2C2.74%2C0%2C0%2C0%2C.76-.11%2C2.381%2C2.381%2C0%2C0%2C0%2C1.629-1.335%2C2.57%2C2.57%2C0%2C0%2C0-1.16-3.55%2C2.631%2C2.631%2C0%2C0%2C0-1.192-.3%2C2.578%2C2.578%2C0%2C0%2C0-1.73.7%2C2.429%2C2.429%2C0%2C0%2C0-.857%2C1.828%2C1.778%2C1.778%2C0%2C0%2C0%2C.262%2C1.268A2.532%2C2.532%2C0%2C0%2C0%2C56.345-447.851Zm-23.8-5.789a3.13%2C3.13%2C0%2C0%2C1%2C1.2.244%2C3.106%2C3.106%2C0%2C0%2C1%2C1.873%2C2.383%2C3.111%2C3.111%2C0%2C0%2C1-.992%2C2.87%2C3.636%2C3.636%2C0%2C0%2C1-2.066.821%2C3.327%2C3.327%2C0%2C0%2C1-3.026-2.263%2C3.13%2C3.13%2C0%2C0%2C1%2C.5-2.779A3.162%2C3.162%2C0%2C0%2C1%2C32.54-453.64Zm.019%2C5.818a3.116%2C3.116%2C0%2C0%2C0%2C1.736-.7%2C2.613%2C2.613%2C0%2C0%2C0%2C.828-2.411%2C2.609%2C2.609%2C0%2C0%2C0-1.571-2%2C2.634%2C2.634%2C0%2C0%2C0-1.012-.206%2C2.66%2C2.66%2C0%2C0%2C0-2.109%2C1.076%2C2.635%2C2.635%2C0%2C0%2C0-.418%2C2.34A2.8%2C2.8%2C0%2C0%2C0%2C32.559-447.822Zm11.9-5.817a3.182%2C3.182%2C0%2C0%2C1%2C1.237.254%2C3.72%2C3.72%2C0%2C0%2C1%2C1.555%2C1.47%2C3.5%2C3.5%2C0%2C0%2C1%2C.306%2C1.262%2C2.25%2C2.25%2C0%2C0%2C1-.314%2C1.528%2C3.019%2C3.019%2C0%2C0%2C1-2.735%2C1.774%2C3.239%2C3.239%2C0%2C0%2C1-.9-.13%2C2.867%2C2.867%2C0%2C0%2C1-1.936-1.59%2C3.033%2C3.033%2C0%2C0%2C1%2C.675-3.736A3.12%2C3.12%2C0%2C0%2C1%2C44.463-453.64Zm.049%2C5.788a2.531%2C2.531%2C0%2C0%2C0%2C2.287-1.5%2C1.783%2C1.783%2C0%2C0%2C0%2C.263-1.272%2C3.067%2C3.067%2C0%2C0%2C0-.248-1.061l0-.005a3.286%2C3.286%2C0%2C0%2C0-1.3-1.238%2C2.687%2C2.687%2C0%2C0%2C0-1.045-.216%2C2.627%2C2.627%2C0%2C0%2C0-1.777.7%2C2.549%2C2.549%2C0%2C0%2C0-.563%2C3.14%2C2.38%2C2.38%2C0%2C0%2C0%2C1.627%2C1.334A2.742%2C2.742%2C0%2C0%2C0%2C44.512-447.851Zm23.769-5.782a3.4%2C3.4%2C0%2C0%2C1%2C1.354.3%2C2.991%2C2.991%2C0%2C0%2C1%2C1.836%2C2.69%2C2.248%2C2.248%2C0%2C0%2C1-.336%2C1.57%2C3.088%2C3.088%2C0%2C0%2C1-2.745%2C1.729%2C3.252%2C3.252%2C0%2C0%2C1-1.557-.406%2C3.02%2C3.02%2C0%2C0%2C1-1.594-2.758%2C3%2C3%2C0%2C0%2C1%2C1.022-2.3A2.982%2C2.982%2C0%2C0%2C1%2C68.281-453.634Zm.109%2C5.793a2.6%2C2.6%2C0%2C0%2C0%2C2.3-1.459%2C1.79%2C1.79%2C0%2C0%2C0%2C.281-1.31%2C2.512%2C2.512%2C0%2C0%2C0-1.536-2.262%2C2.905%2C2.905%2C0%2C0%2C0-1.156-.262%2C2.5%2C2.5%2C0%2C0%2C0-1.685.7%2C2.512%2C2.512%2C0%2C0%2C0-.856%2C1.924%2C2.54%2C2.54%2C0%2C0%2C0%2C1.331%2C2.324A2.757%2C2.757%2C0%2C0%2C0%2C68.39-447.841Zm-.025%2C1.4a5.6%2C5.6%2C0%2C0%2C1%2C1.393.177%2C5.269%2C5.269%2C0%2C0%2C1%2C2.463%2C1.453c1.288%2C1.277%2C1.621%2C2.283%2C1.621%2C4.895v1.991l-5.5-.022-5.513-.034.012-2.065a6.992%2C6.992%2C0%2C0%2C1%2C.259-2.587A5.6%2C5.6%2C0%2C0%2C1%2C68.365-446.444Zm4.977%2C8.014v-1.489c0-2.5-.275-3.352-1.474-4.541a4.732%2C4.732%2C0%2C0%2C0-2.238-1.324%2C5.1%2C5.1%2C0%2C0%2C0-1.265-.161%2C5.1%2C5.1%2C0%2C0%2C0-4.795%2C3.47%2C6.684%2C6.684%2C0%2C0%2C0-.232%2C2.429l-.009%2C1.564%2C5.013.031Zm-16.883-8a5.936%2C5.936%2C0%2C0%2C1%2C1.413.17%2C5.254%2C5.254%2C0%2C0%2C1%2C2.4%2C1.43c1.279%2C1.279%2C1.61%2C2.277%2C1.61%2C4.852v2.044l-5.5-.022-5.513-.034.012-2.065a6.993%2C6.993%2C0%2C0%2C1%2C.259-2.587%2C5.641%2C5.641%2C0%2C0%2C1%2C2.006-2.752%2C5.472%2C5.472%2C0%2C0%2C1%2C3.215-1.036Zm4.927%2C8v-1.542c0-2.467-.274-3.308-1.464-4.5a4.787%2C4.787%2C0%2C0%2C0-2.189-1.3%2C5.471%2C5.471%2C0%2C0%2C0-1.274-.151h-.09a4.978%2C4.978%2C0%2C0%2C0-2.927.941%2C5.142%2C5.142%2C0%2C0%2C0-1.827%2C2.509%2C6.684%2C6.684%2C0%2C0%2C0-.232%2C2.429l-.009%2C1.564%2C5.013.031Zm-28.84-7.892a4.852%2C4.852%2C0%2C0%2C1%2C1.24.162%2C5.461%2C5.461%2C0%2C0%2C1%2C2.589%2C1.462c1.3%2C1.273%2C1.752%2C2.709%2C1.686%2C5.3l-.039%2C1.418H26.961v-1.9a7.161%2C7.161%2C0%2C0%2C1%2C.258-2.478%2C5.315%2C5.315%2C0%2C0%2C1%2C3.433-3.607A5.687%2C5.687%2C0%2C0%2C1%2C32.546-446.322Zm4.99%2C7.84.025-.931c.062-2.43-.355-3.766-1.537-4.928a4.986%2C4.986%2C0%2C0%2C0-2.364-1.335%2C4.357%2C4.357%2C0%2C0%2C0-1.114-.146%2C5.2%2C5.2%2C0%2C0%2C0-1.729.322%2C4.835%2C4.835%2C0%2C0%2C0-3.121%2C3.285%2C6.685%2C6.685%2C0%2C0%2C0-.235%2C2.331v1.4Zm6.587-7.818a7.484%2C7.484%2C0%2C0%2C1%2C2.177.32%2C5.384%2C5.384%2C0%2C0%2C1%2C3.125%2C2.825%2C7.646%2C7.646%2C0%2C0%2C1%2C.591%2C3.756l-.039%2C1.418H38.915l.012-1.959c.011-1.985.143-2.6.783-3.661a5.015%2C5.015%2C0%2C0%2C1%2C1.667-1.766%2C7.215%2C7.215%2C0%2C0%2C1%2C2.174-.891A3.309%2C3.309%2C0%2C0%2C1%2C44.123-446.3Zm5.368%2C7.818.025-.931a7.212%2C7.212%2C0%2C0%2C0-.54-3.523%2C4.908%2C4.908%2C0%2C0%2C0-2.85-2.575%2C6.963%2C6.963%2C0%2C0%2C0-2-.288%2C2.872%2C2.872%2C0%2C0%2C0-.482.033%2C6.836%2C6.836%2C0%2C0%2C0-1.988.816%2C4.5%2C4.5%2C0%2C0%2C0-1.515%2C1.607c-.595.985-.7%2C1.494-.712%2C3.406l-.009%2C1.457Z%22%20fill%3D%22%23d3ba57%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: 50% 40px;
  border-color: #d3ba57;
}
.mv .mv_btn.mv_btn_03::after {
  border-color: #d3ba57;
}
@media screen and (max-width: 879px) {
  .mv {
    margin-bottom: 26.14vw;
  }
  .mv .btn_list {
    bottom: -21.36vw;
  }
  .mv .mv_btn {
    width: 26.14vw;
    height: 26.14vw;
    padding-top: 11.36vw;
    font-size: 2.95vw;
  }
  .mv .mv_btn::after {
    bottom: 2.84vw;
    width: 1.36vw;
    height: 1.36vw;
  }
  .mv .mv_btn:hover::after {
    bottom: 2.5vw;
  }
  .mv .mv_btn.mv_btn_01 {
    background-size: 7.41vw auto;
    background-position: 50% 3.98vw;
  }
  .mv .mv_btn.mv_btn_02 {
    background-size: 6.14vw auto;
    background-position: 50% 3.52vw;
  }
  .mv .mv_btn.mv_btn_03 {
    background-size: 5.58vw auto;
    background-position: 50% 4.55vw;
  }
}
@media screen and (max-width: 699px) {
  .mv {
    height: 113.07vw;
    margin-bottom: 34.67vw;
    padding-top: 68.5vw;
    background: url(/open_campus/img/index/mv_sp.jpg) no-repeat left center / cover;
  }
  .mv h1 {
    padding-left: 17vw;
    background-size: 8.46vw auto;
    background-position: 5.33vw 0.5vw;
    font-size: 3.47vw;
  }
  .mv h1 .strong {
    font-size: 7.73vw;
  }
  .mv .btn_list {
    bottom: -27.47vw;
  }
  .mv .mv_btn {
    width: 30.93vw;
    height: 30.93vw;
    padding-top: 13.33vw;
    font-size: 4vw;
  }
  .mv .mv_btn::after {
    bottom: 2.67vw;
    width: 1.8vw;
    height: 1.8vw;
  }
  .mv .mv_btn.mv_btn_01 {
    background-size: 8.83vw auto;
    background-position: 50% 3.98vw;
  }
  .mv .mv_btn.mv_btn_02 {
    background-size: 7.32vw auto;
    background-position: 50% 3.52vw;
  }
  .mv .mv_btn.mv_btn_03 {
    background-size: 6.65vw auto;
    background-position: 50% 4.55vw;
  }
}

/* ------------------------------
learning_space
------------------------------ */
.learning_space.frame_content::before {
  border-color: #8a9f55;
}
.learning_space.frame_content::after {
  background-color: rgba(138, 159, 85, 0.2);
}
.learning_space .style_list {
  margin-top: 70px;
}
.learning_space .style_list h3 {
  display: flex;
  align-items: center;
  min-height: 86px;
  margin-bottom: 1em;
  padding-left: 103px;
  background-repeat: no-repeat;
  background-position: left center;
  color: #8a9f55;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.learning_space .style_list h3 .txt_l {
  display: inline-block;
  margin-top: 0.2em;
  font-size: 28px;
  line-height: 1;
}
.learning_space .style_list .room h3 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2286%22%20height%3D%2286%22%20viewBox%3D%220%200%2086%2086%22%3E%3Cg%20transform%3D%22translate(-3880%20-2508)%22%3E%3Cpath%20d%3D%22M43%2C0A43%2C43%2C0%2C1%2C1%2C0%2C43%2C43%2C43%2C0%2C0%2C1%2C43%2C0Z%22%20transform%3D%22translate(3880%202508)%22%20fill%3D%22%238a9f55%22%2F%3E%3Cpath%20d%3D%22M39.016-485.8c-.166.177-.188.542-.188%2C2.867v2.656l-.742.188a5.158%2C5.158%2C0%2C0%2C0-3.819%2C5.667%2C5.824%2C5.824%2C0%2C0%2C0%2C1.118%2C2.5%2C2.156%2C2.156%2C0%2C0%2C1%2C.343.465%2C1.43%2C1.43%2C0%2C0%2C1-.587.066%2C5.826%2C5.826%2C0%2C0%2C0-4.771%2C3.088c-.719%2C1.372-.731%2C1.494-.731%2C9.154%2C0%2C6.719%2C0%2C6.874-.221%2C7.073a4.264%2C4.264%2C0%2C0%2C0-.941%2C1.771%2C4.456%2C4.456%2C0%2C0%2C0%2C1.107%2C4.206l.454.465-.553.288a7.185%2C7.185%2C0%2C0%2C0-3.442%2C4.405c-.244%2C1.052-.244%2C5.435.011%2C5.678.155.155%2C2.6.177%2C25.281.177s25.126-.022%2C25.281-.177.177-.531.177-2.535a25.611%2C25.611%2C0%2C0%2C0-.122-2.955%2C9.008%2C9.008%2C0%2C0%2C0-.564-1.527%2C5.31%2C5.31%2C0%2C0%2C0-1.35-1.826%2C7.705%2C7.705%2C0%2C0%2C0-1.527-1.217l-.62-.321.376-.343a4.867%2C4.867%2C0%2C0%2C0%2C1.262-2.269%2C4.436%2C4.436%2C0%2C0%2C0-2.413-4.892%2C3.053%2C3.053%2C0%2C0%2C0-1.9-.365%2C3.053%2C3.053%2C0%2C0%2C0-1.9.365%2C4.844%2C4.844%2C0%2C0%2C0-2.2%2C2.313%2C3.958%2C3.958%2C0%2C0%2C0-.266%2C1.694%2C3.069%2C3.069%2C0%2C0%2C0%2C.354%2C1.793%2C5.083%2C5.083%2C0%2C0%2C0%2C.83%2C1.229l.487.487-.653.354a8.246%2C8.246%2C0%2C0%2C0-2.457%2C2.324%2C2.394%2C2.394%2C0%2C0%2C1-.387.565%2C2.831%2C2.831%2C0%2C0%2C1-.387-.565%2C8.246%2C8.246%2C0%2C0%2C0-2.457-2.324l-.642-.343.487-.509a5.682%2C5.682%2C0%2C0%2C0%2C.83-1.229%2C3.1%2C3.1%2C0%2C0%2C0%2C.343-1.782%2C3.958%2C3.958%2C0%2C0%2C0-.266-1.694%2C4.844%2C4.844%2C0%2C0%2C0-2.2-2.313%2C3.053%2C3.053%2C0%2C0%2C0-1.9-.365%2C3.053%2C3.053%2C0%2C0%2C0-1.9.365%2C4.844%2C4.844%2C0%2C0%2C0-2.2%2C2.313%2C3.958%2C3.958%2C0%2C0%2C0-.266%2C1.694%2C3.069%2C3.069%2C0%2C0%2C0%2C.354%2C1.793%2C5.083%2C5.083%2C0%2C0%2C0%2C.83%2C1.229l.487.487-.653.354a8.246%2C8.246%2C0%2C0%2C0-2.457%2C2.324%2C2.394%2C2.394%2C0%2C0%2C1-.387.565%2C1.422%2C1.422%2C0%2C0%2C1-.277-.41%2C8.385%2C8.385%2C0%2C0%2C0-2.457-2.413l-.764-.432.476-.476a4.4%2C4.4%2C0%2C0%2C0-1.184-6.94%2C5.7%2C5.7%2C0%2C0%2C0-1.218-.454l-.443-.077.022-1.948.033-1.959%2C13.592-.055c11.921-.044%2C13.6-.077%2C13.692-.221a11.764%2C11.764%2C0%2C0%2C0%2C.111-2.059c0-2.269%2C0-2.258-1.14-2.258h-.742v-11.766c0-11.268-.011-11.788-.2-11.954S69.388-486%2C54.91-486C39.824-486%2C39.182-485.989%2C39.016-485.8Zm30.638%2C12.419v11.235l-12.032.033-12.043.022v-3.542h2.369c2.313%2C0%2C2.391-.011%2C2.656-.255a67.152%2C67.152%2C0%2C0%2C0%2C4.881-6.486%2C2.878%2C2.878%2C0%2C0%2C0-1.251-3.409%2C2.148%2C2.148%2C0%2C0%2C0-1.461-.31c-1.406%2C0-1.6.155-3.608%2C2.656l-1.638%2C2.048h-2.3a21.164%2C21.164%2C0%2C0%2C1-2.3-.066%2C2.156%2C2.156%2C0%2C0%2C1%2C.343-.465%2C5.517%2C5.517%2C0%2C0%2C0%2C1.1-2.49%2C5.125%2C5.125%2C0%2C0%2C0-3.619-5.612l-.476-.144v-4.5l14.7.022%2C14.688.033Zm-28.812-5.125a3.724%2C3.724%2C0%2C0%2C1%2C.432%2C6.53%2C3.715%2C3.715%2C0%2C0%2C1-5.6-2.634%2C4.465%2C4.465%2C0%2C0%2C1%2C.41-2.236%2C4.159%2C4.159%2C0%2C0%2C1%2C2.3-1.86A5.11%2C5.11%2C0%2C0%2C1%2C40.842-478.507Zm12.6%2C3.94a1.647%2C1.647%2C0%2C0%2C1%2C.775%2C1.3c0%2C.5-.044.553-2.546%2C3.808l-1.826%2C2.38-2.557.011c-2.413%2C0-2.579.011-2.856.232l-.288.221v6.586c0%2C5.424-.022%2C6.575-.144%2C6.575a4.768%2C4.768%2C0%2C0%2C0-2.1%2C1.328%2C3.781%2C3.781%2C0%2C0%2C0-1.129%2C2.989%2C3.069%2C3.069%2C0%2C0%2C0%2C.354%2C1.793%2C5.082%2C5.082%2C0%2C0%2C0%2C.83%2C1.229l.487.487-.609.321a8.211%2C8.211%2C0%2C0%2C0-2.5%2C2.358%2C2.394%2C2.394%2C0%2C0%2C1-.387.565%2C1.422%2C1.422%2C0%2C0%2C1-.277-.41%2C8.385%2C8.385%2C0%2C0%2C0-2.457-2.413l-.764-.432.465-.454a6.085%2C6.085%2C0%2C0%2C0%2C.83-1.229%2C2.9%2C2.9%2C0%2C0%2C0%2C.376-1.815A3.8%2C3.8%2C0%2C0%2C0%2C36.1-452l-.487-.553v-6.4c0-5.789-.022-6.409-.188-6.6a.754.754%2C0%2C0%2C0-1.029.022c-.221.221-.221.365-.221%2C6.187v5.966l-.41-.111a7.855%2C7.855%2C0%2C0%2C0-2.435.077l-.255.077V-459.5c0-6.863.033-7.228.686-8.324a4.609%2C4.609%2C0%2C0%2C1%2C1.948-1.749l.631-.321%2C6.863-.055c4.272-.033%2C6.929-.1%2C7.04-.166A22.433%2C22.433%2C0%2C0%2C0%2C49.841-472c1.627-2.048%2C2.014-2.479%2C2.324-2.6A1.861%2C1.861%2C0%2C0%2C1%2C53.438-474.566ZM71.569-459.8l-.033.863-12.972.033-12.983.022v-1.771H71.6Zm-37.633%2C7.848a3.026%2C3.026%2C0%2C0%2C1%2C.841%2C5.014%2C3.505%2C3.505%2C0%2C0%2C1-1.97.786%2C3.17%2C3.17%2C0%2C0%2C1-2.889-2.158A3.008%2C3.008%2C0%2C0%2C1%2C33.935-451.953Zm12.4.011a3.619%2C3.619%2C0%2C0%2C1%2C1.483%2C1.406%2C3.387%2C3.387%2C0%2C0%2C1%2C.288%2C1.206%2C2.084%2C2.084%2C0%2C0%2C1-.3%2C1.45%2C2.868%2C2.868%2C0%2C0%2C1-3.464%2C1.572%2C2.724%2C2.724%2C0%2C0%2C1-1.848-1.516%2C2.9%2C2.9%2C0%2C0%2C1%2C.642-3.564A2.965%2C2.965%2C0%2C0%2C1%2C46.332-451.942Zm12.53.089a2.933%2C2.933%2C0%2C0%2C1%2C1.317%2C4.029%2C2.724%2C2.724%2C0%2C0%2C1-1.848%2C1.516%2C2.868%2C2.868%2C0%2C0%2C1-3.464-1.572%2C2.084%2C2.084%2C0%2C0%2C1-.3-1.45%2C2.778%2C2.778%2C0%2C0%2C1%2C.974-2.07A2.87%2C2.87%2C0%2C0%2C1%2C58.862-451.853Zm12.286-.033a2.848%2C2.848%2C0%2C0%2C1%2C1.749%2C2.568%2C2.1%2C2.1%2C0%2C0%2C1-.321%2C1.494%2C2.932%2C2.932%2C0%2C0%2C1-4.106%2C1.262%2C2.891%2C2.891%2C0%2C0%2C1-1.516-2.634%2C2.853%2C2.853%2C0%2C0%2C1%2C.974-2.192A2.817%2C2.817%2C0%2C0%2C1%2C71.148-451.887Zm-12.164%2C7.35a5.2%2C5.2%2C0%2C0%2C1%2C2.38%2C1.417c1.284%2C1.284%2C1.594%2C2.236%2C1.594%2C4.848v1.86l-5.446-.022-5.457-.033.011-1.882a7.1%2C7.1%2C0%2C0%2C1%2C.255-2.6%2C5.425%2C5.425%2C0%2C0%2C1%2C5.169-3.752A5.922%2C5.922%2C0%2C0%2C1%2C58.984-444.537Zm12.33-.011a5.18%2C5.18%2C0%2C0%2C1%2C2.435%2C1.439c1.3%2C1.284%2C1.6%2C2.247%2C1.6%2C4.892v1.8l-5.446-.022-5.457-.033.011-1.882a7.1%2C7.1%2C0%2C0%2C1%2C.255-2.6A5.509%2C5.509%2C0%2C0%2C1%2C71.314-444.548Zm-37.3.111a5.42%2C5.42%2C0%2C0%2C1%2C2.568%2C1.45c1.284%2C1.262%2C1.738%2C2.7%2C1.671%2C5.3l-.033%2C1.218H27.261v-1.716a7.178%2C7.178%2C0%2C0%2C1%2C.255-2.49%2C5.288%2C5.288%2C0%2C0%2C1%2C3.4-3.575A5.088%2C5.088%2C0%2C0%2C1%2C34.013-444.437Zm12.95.177a5.332%2C5.332%2C0%2C0%2C1%2C3.1%2C2.8%2C7.746%2C7.746%2C0%2C0%2C1%2C.587%2C3.774l-.033%2C1.218H39.658l.011-1.771c.011-2.014.133-2.6.775-3.664a4.92%2C4.92%2C0%2C0%2C1%2C1.649-1.749%2C7.29%2C7.29%2C0%2C0%2C1%2C2.158-.885A7.16%2C7.16%2C0%2C0%2C1%2C46.963-444.26Z%22%20transform%3D%22translate(3871.672%203010.542)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.learning_space .style_list .zoom h3 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2286%22%20height%3D%2286%22%20viewBox%3D%220%200%2086%2086%22%3E%3Cg%20transform%3D%22translate(-3900%20-2608)%22%3E%3Cpath%20d%3D%22M43%2C0A43%2C43%2C0%2C1%2C1%2C0%2C43%2C43%2C43%2C0%2C0%2C1%2C43%2C0Z%22%20transform%3D%22translate(3900%202608)%22%20fill%3D%22%238a9f55%22%2F%3E%3Cpath%20d%3D%22M52.931%2C469.169H4.53A4.531%2C4.531%2C0%2C0%2C1%2C0%2C464.638v-1.347a.6.6%2C0%2C0%2C1%2C.591-.591h56.28a.6.6%2C0%2C0%2C1%2C.591.591v1.347A4.531%2C4.531%2C0%2C0%2C1%2C52.931%2C469.169ZM1.182%2C463.89v.756a3.356%2C3.356%2C0%2C0%2C0%2C3.349%2C3.349h48.4a3.356%2C3.356%2C0%2C0%2C0%2C3.349-3.349v-.756Z%22%20transform%3D%22translate(3914.27%202203.294)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M52.931%2C469.294H4.53a4.661%2C4.661%2C0%2C0%2C1-4.655-4.655v-1.347a.717.717%2C0%2C0%2C1%2C.716-.716h56.28a.717.717%2C0%2C0%2C1%2C.716.716v1.347A4.661%2C4.661%2C0%2C0%2C1%2C52.931%2C469.294ZM.591%2C462.825a.472.472%2C0%2C0%2C0-.466.466v1.347a4.41%2C4.41%2C0%2C0%2C0%2C4.405%2C4.405h48.4a4.41%2C4.41%2C0%2C0%2C0%2C4.405-4.405v-1.347a.472.472%2C0%2C0%2C0-.466-.466Zm52.34%2C5.295H4.53a3.478%2C3.478%2C0%2C0%2C1-3.474-3.474v-.881H56.4v.881A3.477%2C3.477%2C0%2C0%2C1%2C52.931%2C468.12Zm-51.624-4.1v.631A3.227%2C3.227%2C0%2C0%2C0%2C4.53%2C467.87h48.4a3.227%2C3.227%2C0%2C0%2C0%2C3.224-3.224v-.631Z%22%20transform%3D%22translate(3914.27%202203.294)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M521.958%2C132.142h-5.791A2.166%2C2.166%2C0%2C0%2C1%2C514%2C129.976V115.967a2.166%2C2.166%2C0%2C0%2C1%2C2.167-2.167h5.791a2.166%2C2.166%2C0%2C0%2C1%2C2.167%2C2.167v14.009A2.171%2C2.171%2C0%2C0%2C1%2C521.958%2C132.142Zm-5.8-17.153a.985.985%2C0%2C0%2C0-.985.985v14.009a.985.985%2C0%2C0%2C0%2C.985.985h5.8a.985.985%2C0%2C0%2C0%2C.985-.985V115.975a.985.985%2C0%2C0%2C0-.985-.985Z%22%20transform%3D%22translate(3440.768%202524.704)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M521.958%2C132.267h-5.791a2.294%2C2.294%2C0%2C0%2C1-2.292-2.292V115.967a2.294%2C2.294%2C0%2C0%2C1%2C2.292-2.292h5.791a2.294%2C2.294%2C0%2C0%2C1%2C2.292%2C2.292v14.009A2.294%2C2.294%2C0%2C0%2C1%2C521.958%2C132.267Zm-5.791-18.342a2.044%2C2.044%2C0%2C0%2C0-2.042%2C2.042v14.009a2.044%2C2.044%2C0%2C0%2C0%2C2.042%2C2.042h5.791A2.044%2C2.044%2C0%2C0%2C0%2C524%2C129.976V115.967a2.044%2C2.044%2C0%2C0%2C0-2.042-2.042Zm5.791%2C17.168h-5.8a1.111%2C1.111%2C0%2C0%2C1-1.11-1.11V115.975a1.111%2C1.111%2C0%2C0%2C1%2C1.11-1.11h5.8a1.111%2C1.111%2C0%2C0%2C1%2C1.11%2C1.11v14.009A1.111%2C1.111%2C0%2C0%2C1%2C521.958%2C131.093Zm-5.8-15.979a.861.861%2C0%2C0%2C0-.86.86v14.009a.861.861%2C0%2C0%2C0%2C.86.86h5.8a.861.861%2C0%2C0%2C0%2C.86-.86V115.975a.861.861%2C0%2C0%2C0-.86-.86Z%22%20transform%3D%22translate(3440.768%202524.704)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M519.7%2C369.982h-5.208a.591.591%2C0%2C1%2C1%2C0-1.182H519.7a.591.591%2C0%2C1%2C1%2C0%2C1.182Z%22%20transform%3D%22translate(3440.859%202289.795)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M519.7%2C370.107h-5.208a.716.716%2C0%2C1%2C1%2C0-1.432H519.7a.716.716%2C0%2C1%2C1%2C0%2C1.432Zm-5.208-1.182a.466.466%2C0%2C1%2C0%2C0%2C.932H519.7a.466.466%2C0%2C1%2C0%2C0-.932Z%22%20transform%3D%22translate(3440.859%202289.795)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M523.442%2C400.982h-8.951a.591.591%2C0%2C1%2C1%2C0-1.182h8.951a.591.591%2C0%2C0%2C1%2C0%2C1.182Z%22%20transform%3D%22translate(3440.859%202261.238)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M523.442%2C401.107h-8.951a.716.716%2C0%2C1%2C1%2C0-1.432h8.951a.716.716%2C0%2C0%2C1%2C0%2C1.432Zm-8.951-1.182a.466.466%2C0%2C1%2C0%2C0%2C.932h8.951a.466.466%2C0%2C0%2C0%2C0-.932Z%22%20transform%3D%22translate(3440.859%202261.238)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M192.18%2C19.272a6.611%2C6.611%2C0%2C0%2C1-5.429-3.033%2C17.008%2C17.008%2C0%2C0%2C1-2.639-6.87%2C7.616%2C7.616%2C0%2C0%2C1%2C1.623-6.35A8.457%2C8.457%2C0%2C0%2C1%2C192.18%2C0a8.368%2C8.368%2C0%2C0%2C1%2C6.358%2C2.947%2C7.782%2C7.782%2C0%2C0%2C1%2C1.718%2C6.406%2C16.213%2C16.213%2C0%2C0%2C1-2.616%2C6.886A6.685%2C6.685%2C0%2C0%2C1%2C192.18%2C19.272Zm0-18.09a7.41%2C7.41%2C0%2C0%2C0-5.539%2C2.584%2C6.376%2C6.376%2C0%2C0%2C0-1.371%2C5.381%2C15.847%2C15.847%2C0%2C0%2C0%2C2.435%2C6.39%2C5.424%2C5.424%2C0%2C0%2C0%2C4.467%2C2.545%2C5.487%2C5.487%2C0%2C0%2C0%2C4.5-2.545%2C15.044%2C15.044%2C0%2C0%2C0%2C2.4-6.382h0a6.519%2C6.519%2C0%2C0%2C0-1.45-5.452%2C7.231%2C7.231%2C0%2C0%2C0-5.444-2.521Z%22%20transform%3D%22translate(3744.789%202629.538)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M192.18%2C19.4a6.734%2C6.734%2C0%2C0%2C1-5.53-3.085%2C17.14%2C17.14%2C0%2C0%2C1-2.661-6.922%2C7.739%2C7.739%2C0%2C0%2C1%2C1.65-6.453A8.581%2C8.581%2C0%2C0%2C1%2C192.18-.125a8.462%2C8.462%2C0%2C0%2C1%2C6.454%2C2.991%2C7.9%2C7.9%2C0%2C0%2C1%2C1.746%2C6.507%2C16.338%2C16.338%2C0%2C0%2C1-2.638%2C6.94A6.8%2C6.8%2C0%2C0%2C1%2C192.18%2C19.4Zm0-19.272A8.329%2C8.329%2C0%2C0%2C0%2C185.831%2C3.1a7.493%2C7.493%2C0%2C0%2C0-1.6%2C6.248%2C16.894%2C16.894%2C0%2C0%2C0%2C2.618%2C6.82%2C6.494%2C6.494%2C0%2C0%2C0%2C5.327%2C2.982%2C6.562%2C6.562%2C0%2C0%2C0%2C5.359-2.982%2C16.091%2C16.091%2C0%2C0%2C0%2C2.593-6.833%2C7.657%2C7.657%2C0%2C0%2C0-1.689-6.3A8.213%2C8.213%2C0%2C0%2C0%2C192.18.125Zm-.008%2C18.082a5.539%2C5.539%2C0%2C0%2C1-4.569-2.6%2C15.977%2C15.977%2C0%2C0%2C1-2.456-6.441%2C6.5%2C6.5%2C0%2C0%2C1%2C1.4-5.484%2C7.529%2C7.529%2C0%2C0%2C1%2C5.635-2.629%2C7.359%2C7.359%2C0%2C0%2C1%2C5.54%2C2.565A6.636%2C6.636%2C0%2C0%2C1%2C199.2%2C9.176a15.16%2C15.16%2C0%2C0%2C1-2.425%2C6.435A5.584%2C5.584%2C0%2C0%2C1%2C192.172%2C18.207Zm.008-16.9a7.272%2C7.272%2C0%2C0%2C0-5.443%2C2.54%2C6.252%2C6.252%2C0%2C0%2C0-1.344%2C5.279%2C15.73%2C15.73%2C0%2C0%2C0%2C2.413%2C6.339%2C5.1%2C5.1%2C0%2C0%2C0%2C8.764%2C0%2C14.913%2C14.913%2C0%2C0%2C0%2C2.381-6.328%2C6.393%2C6.393%2C0%2C0%2C0-1.422-5.351A7.106%2C7.106%2C0%2C0%2C0%2C192.18%2C1.307Z%22%20transform%3D%22translate(3744.789%202629.538)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M378.295%2C51.8c-2.348%2C0-4.7-.008-7.3-.016a.591.591%2C0%2C0%2C1%2C0-1.182h0c5.192.016%2C9.415.016%2C14.576%2C0h0a.591.591%2C0%2C0%2C1%2C0%2C1.182c-2.569.008-4.917.016-7.272.016Z%22%20transform%3D%22translate(3573.053%202582.924)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M378.295%2C51.923c-2.142%2C0-4.32-.007-6.625-.014l-.679%2C0a.716.716%2C0%2C0%2C1%2C0-1.432c2.657.008%2C4.977.012%2C7.3.012s4.635%2C0%2C7.276-.012a.716.716%2C0%2C1%2C1%2C0%2C1.432l-.615%2C0C382.643%2C51.916%2C380.461%2C51.923%2C378.295%2C51.923Zm-7.3-1.2a.466.466%2C0%2C0%2C0%2C0%2C.932l.679%2C0c2.305.007%2C4.483.014%2C6.624.014%2C2.166%2C0%2C4.348-.007%2C6.657-.014l.615%2C0a.466.466%2C0%2C1%2C0%2C0-.932c-2.64.008-4.953.012-7.276.012S373.647%2C50.733%2C370.991%2C50.725Z%22%20transform%3D%22translate(3573.053%202582.924)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M87.9%2C84.392h-50.5A.6.6%2C0%2C0%2C1%2C36.8%2C83.8V53.861a.868.868%2C0%2C0%2C1%2C.016-.142%2C4.109%2C4.109%2C0%2C0%2C1%2C3.041-3.033.777.777%2C0%2C0%2C1%2C.134-.016c3.435%2C0%2C6.146%2C0%2C9.589-.016h0a.591.591%2C0%2C1%2C1%2C0%2C1.182c-3.427.016-6.122.016-9.526.016a2.894%2C2.894%2C0%2C0%2C0-2.08%2C2.088V83.21H87.3c-.024-3.845-.008-7.729.008-11.488.024-5.893.055-11.976-.079-17.988a2.537%2C2.537%2C0%2C0%2C0-1.97-1.8H85.24a31.774%2C31.774%2C0%2C0%2C0-3.309-.095c-.465%2C0-.938.008-1.45%2C0a.585.585%2C0%2C0%2C1-.583-.6.6.6%2C0%2C0%2C1%2C.6-.583c.5.008.977%2C0%2C1.434%2C0a31.825%2C31.825%2C0%2C0%2C1%2C3.412.1%2C3.666%2C3.666%2C0%2C0%2C1%2C3.033%2C2.687.614.614%2C0%2C0%2C1%2C.032.173c.142%2C6.059.11%2C12.189.087%2C18.114-.016%2C3.955-.039%2C8.037-.008%2C12.071a.592.592%2C0%2C0%2C1-.591.591Z%22%20transform%3D%22translate(3880.369%202582.878)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M87.9%2C84.517h-50.5a.717.717%2C0%2C0%2C1-.716-.716V53.861a.968.968%2C0%2C0%2C1%2C.017-.162l0-.01a4.237%2C4.237%2C0%2C0%2C1%2C3.134-3.125l.026%2C0a.779.779%2C0%2C0%2C1%2C.137-.015c3.433%2C0%2C6.145%2C0%2C9.588-.016a.716.716%2C0%2C1%2C1%2C0%2C1.432c-3.422.016-6.11.016-9.509.016a2.783%2C2.783%2C0%2C0%2C0-1.971%2C1.98V83.085H87.171c-.023-3.857-.006-7.842.009-11.363l0-.732c.023-5.643.047-11.477-.081-17.232a2.414%2C2.414%2C0%2C0%2C0-1.85-1.7h-.023c-.938-.086-1.772-.1-2.464-.1-.272%2C0-.544%2C0-.82%2C0h-.013c-.312%2C0-.624%2C0-.95%2C0-.184%2C0-.348%2C0-.5%2C0a.71.71%2C0%2C0%2C1-.706-.727.716.716%2C0%2C0%2C1%2C.724-.705c.152%2C0%2C.313%2C0%2C.494%2C0%2C.323%2C0%2C.635%2C0%2C.94%2C0h.009c.275%2C0%2C.546%2C0%2C.818%2C0%2C.727%2C0%2C1.6.013%2C2.6.107a3.789%2C3.789%2C0%2C0%2C1%2C3.14%2C2.772l0%2C.005a.727.727%2C0%2C0%2C1%2C.036.208c.136%2C5.821.112%2C11.717.089%2C17.418l-.009%2C2.1c-.015%2C3.493-.03%2C7.105%2C0%2C10.662a.717.717%2C0%2C0%2C1-.716.717ZM36.938%2C53.744a.739.739%2C0%2C0%2C0-.013.116V83.8a.472.472%2C0%2C0%2C0%2C.466.466H87.9a.467.467%2C0%2C0%2C0%2C.466-.466c-.028-3.557-.013-7.17%2C0-10.664l.009-2.1c.023-5.7.047-11.594-.089-17.414a.5.5%2C0%2C0%2C0-.026-.139%2C3.542%2C3.542%2C0%2C0%2C0-2.923-2.6c-.985-.093-1.855-.106-2.576-.106-.271%2C0-.542%2C0-.816%2C0h-.01c-.306%2C0-.617%2C0-.941%2C0-.182%2C0-.345%2C0-.5%2C0a.472.472%2C0%2C0%2C0-.472.458.46.46%2C0%2C0%2C0%2C.458.474c.154%2C0%2C.317%2C0%2C.5%2C0%2C.326%2C0%2C.64%2C0%2C.95%2C0h.012c.277%2C0%2C.549%2C0%2C.822%2C0%2C.7%2C0%2C1.535.012%2C2.481.1h.018a2.664%2C2.664%2C0%2C0%2C1%2C2.079%2C1.886l.007.019v.021c.128%2C5.765.1%2C11.608.082%2C17.259l0%2C.732c-.015%2C3.559-.032%2C7.592-.008%2C11.486v.126H37.849V53.923l0-.016a3.031%2C3.031%2C0%2C0%2C1%2C2.169-2.176l.016%2C0h.016c3.407%2C0%2C6.1%2C0%2C9.525-.016a.466.466%2C0%2C1%2C0%2C0-.932c-3.443.016-6.155.016-9.589.016a.558.558%2C0%2C0%2C0-.1.011l-.014%2C0A3.988%2C3.988%2C0%2C0%2C0%2C36.938%2C53.744Z%22%20transform%3D%22translate(3880.369%202582.878)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M185.591%2C138.428a.591.591%2C0%2C0%2C1%2C0-1.182c7.737-.039%2C14.419-.039%2C22.14-.039.362-.2.583-.418.583-.591V136.6c.158-7.044.158-13.891%2C0-20.935v-.016a.839.839%2C0%2C0%2C0-.717-.749c-1.513-.055-3.065-.032-4.562-.008l-2.025.024h0a.591.591%2C0%2C1%2C1%2C0-1.182c.67%2C0%2C1.355-.016%2C2.009-.024%2C1.521-.024%2C3.089-.047%2C4.641.016h.047a2.024%2C2.024%2C0%2C0%2C1%2C1.789%2C1.922c.158%2C7.06.158%2C13.914%2C0%2C20.974%2C0%2C.473-.236%2C1.15-1.347%2C1.7a.609.609%2C0%2C0%2C1-.268.063c-7.784.008-14.505.008-22.29.039Z%22%20transform%3D%22translate(3743.846%202524.808)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M185.591%2C138.553h0a.717.717%2C0%2C0%2C1-.716-.716.708.708%2C0%2C0%2C1%2C.716-.716c7.726-.039%2C14.393-.039%2C22.108-.039.337-.188.49-.372.49-.466V136.6c.158-7.044.158-13.89%2C0-20.932v-.019a.712.712%2C0%2C0%2C0-.6-.624c-.62-.023-1.293-.033-2.057-.033-.853%2C0-1.724.014-2.492.026l-2.025.024a.717.717%2C0%2C0%2C1-.717-.716.708.708%2C0%2C0%2C1%2C.716-.716c.453%2C0%2C.917-.007%2C1.366-.014l.641-.009c.744-.012%2C1.589-.025%2C2.414-.025s1.56.013%2C2.231.04h.059a2.16%2C2.16%2C0%2C0%2C1%2C1.9%2C2.046c.158%2C7.057.158%2C13.919%2C0%2C20.978%2C0%2C.5-.246%2C1.23-1.417%2C1.811a.737.737%2C0%2C0%2C1-.323.076l-4.234%2C0C197.622%2C138.522%2C191.932%2C138.527%2C185.591%2C138.553Zm22.139-1.221c-7.728%2C0-14.4%2C0-22.139.039a.461.461%2C0%2C0%2C0-.467.466.466.466%2C0%2C0%2C0%2C.466.466c6.341-.026%2C12.031-.03%2C18.055-.036l4.235%2C0a.483.483%2C0%2C0%2C0%2C.212-.05c1.057-.525%2C1.278-1.154%2C1.278-1.59.158-7.058.158-13.916%2C0-20.971a1.9%2C1.9%2C0%2C0%2C0-1.671-1.8h-.045c-.669-.027-1.4-.04-2.224-.04s-1.666.013-2.41.025l-.641.009c-.45.007-.916.014-1.37.014a.461.461%2C0%2C0%2C0-.466.466.466.466%2C0%2C0%2C0%2C.466.466l2.023-.024c.769-.012%2C1.64-.026%2C2.5-.026.77%2C0%2C1.448.011%2C2.072.034h.012a.965.965%2C0%2C0%2C1%2C.825.872v.016c.158%2C7.042.158%2C13.892%2C0%2C20.937v.013c0%2C.3-.406.569-.648.7l-.028.015Z%22%20transform%3D%22translate(3743.846%202524.808)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M92.641%2C138.6c-.488%2C0-.985-.008-1.481-.039H91.12a1.861%2C1.861%2C0%2C0%2C1-1.7-1.765c-.158-6.981-.158-14.072%2C0-21.053a2.009%2C2.009%2C0%2C0%2C1%2C1.867-1.844h.047c1.473-.055%2C2.718-.032%2C4.042-.016l1.891.024a.591.591%2C0%2C0%2C1%2C0%2C1.182h0c-.67%2C0-1.3-.016-1.907-.024-1.3-.024-2.521-.039-3.955.008-.418.055-.8.37-.8.67v.016c-.158%2C6.973-.158%2C14.04%2C0%2C21.013v.016c0%2C.315.323.544.646.591.749.039%2C1.458.039%2C2.214.032.552-.008%2C1.119-.008%2C1.71.008a.591.591%2C0%2C0%2C1-.032%2C1.182c-.567-.016-1.127-.008-1.67%2C0-.276-.008-.552%2C0-.835%2C0Z%22%20transform%3D%22translate(3832.005%202524.647)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M95.161%2C138.722h-.018c-.22-.006-.452-.009-.712-.009-.327%2C0-.66%2C0-.954.009h-.005c-.081%2C0-.17%2C0-.272%2C0-.184%2C0-.37%2C0-.559%2C0-.6%2C0-1.055-.012-1.485-.039H91.1a1.992%2C1.992%2C0%2C0%2C1-1.812-1.888c-.158-6.985-.158-14.07%2C0-21.057a2.14%2C2.14%2C0%2C0%2C1%2C1.978-1.965h.061c.627-.024%2C1.254-.035%2C1.97-.035.57%2C0%2C1.112.007%2C1.687.014l.387%2C0%2C1.891.024a.716.716%2C0%2C0%2C1%2C0%2C1.432c-.461%2C0-.9-.007-1.332-.015l-.577-.009c-.75-.014-1.383-.023-2.031-.023-.665%2C0-1.29.01-1.912.03-.384.053-.681.336-.681.545v.016c-.158%2C6.973-.158%2C14.041%2C0%2C21.01v.019c0%2C.241.27.426.534.466.458.024.938.035%2C1.511.035.2%2C0%2C.42%2C0%2C.689%2C0%2C.244%2C0%2C.471-.005.7-.005.355%2C0%2C.689%2C0%2C1.019.013a.716.716%2C0%2C0%2C1-.02%2C1.432Zm-.73-.259c.262%2C0%2C.5%2C0%2C.718.009h.012a.457.457%2C0%2C0%2C0%2C.467-.453.467.467%2C0%2C0%2C0-.453-.479c-.329-.009-.66-.013-1.013-.013-.223%2C0-.449%2C0-.692.005-.271%2C0-.49%2C0-.692%2C0-.58%2C0-1.066-.011-1.53-.036h-.012a.815.815%2C0%2C0%2C1-.753-.715v-.016c-.158-6.971-.158-14.043%2C0-21.016v-.013c0-.359.423-.73.9-.794H91.4c.626-.021%2C1.256-.031%2C1.926-.031.651%2C0%2C1.284.009%2C2.035.023l.577.009c.427.007.868.015%2C1.328.015a.466.466%2C0%2C0%2C0%2C0-.932l-1.893-.024-.387%2C0c-.574-.007-1.115-.014-1.683-.014-.713%2C0-1.337.011-1.965.034h-.045a1.887%2C1.887%2C0%2C0%2C0-1.75%2C1.72c-.158%2C6.985-.158%2C14.066%2C0%2C21.049a1.741%2C1.741%2C0%2C0%2C0%2C1.585%2C1.643h.04c.426.027.881.039%2C1.473.039.189%2C0%2C.375%2C0%2C.559%2C0%2C.1%2C0%2C.194%2C0%2C.277%2C0C93.771%2C138.467%2C94.1%2C138.463%2C94.432%2C138.463Z%22%20transform%3D%22translate(3832.005%202524.647)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M111.857%2C236.04a.587.587%2C0%2C0%2C1-.591-.575%2C19.391%2C19.391%2C0%2C0%2C1%2C1.962-7.84.4.4%2C0%2C0%2C1%2C.071-.126l.134-.181a7.662%2C7.662%2C0%2C0%2C1%2C2.97-3.278%2C14.387%2C14.387%2C0%2C0%2C1%2C2.931-1.473%2C6.887%2C6.887%2C0%2C0%2C0%2C2.553-2.033.591.591%2C0%2C1%2C1%2C.945.709%2C8.108%2C8.108%2C0%2C0%2C1-2.994%2C2.387l-.047.024a13.992%2C13.992%2C0%2C0%2C0-2.726%2C1.363%2C6.421%2C6.421%2C0%2C0%2C0-2.569%2C2.829.471.471%2C0%2C0%2C1-.071.118l-.134.181a18.308%2C18.308%2C0%2C0%2C0-1.836%2C7.288.6.6%2C0%2C0%2C1-.575.607Z%22%20transform%3D%22translate(3811.772%202426.597)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M111.882%2C236.165h-.025a.711.711%2C0%2C0%2C1-.716-.7%2C19.48%2C19.48%2C0%2C0%2C1%2C1.97-7.887.524.524%2C0%2C0%2C1%2C.09-.16l.123-.167a7.774%2C7.774%2C0%2C0%2C1%2C3.01-3.318%2C14.5%2C14.5%2C0%2C0%2C1%2C2.949-1.484%2C6.778%2C6.778%2C0%2C0%2C0%2C2.5-1.993.725.725%2C0%2C0%2C1%2C.575-.287.7.7%2C0%2C0%2C1%2C.428.144.717.717%2C0%2C0%2C1%2C.142%2C1%2C8.236%2C8.236%2C0%2C0%2C1-3.038%2C2.424l-.057.028a13.809%2C13.809%2C0%2C0%2C0-2.7%2C1.351%2C6.3%2C6.3%2C0%2C0%2C0-2.523%2C2.774.591.591%2C0%2C0%2C1-.088.146l-.122.165a18.146%2C18.146%2C0%2C0%2C0-1.82%2C7.223.717.717%2C0%2C0%2C1-.7.735Zm10.48-15.742a.474.474%2C0%2C0%2C0-.375.187%2C7.02%2C7.02%2C0%2C0%2C1-2.6%2C2.069l-.01%2C0a14.287%2C14.287%2C0%2C0%2C0-2.907%2C1.461%2C7.538%2C7.538%2C0%2C0%2C0-2.926%2C3.225l-.006.012-.142.192a.285.285%2C0%2C0%2C0-.053.091l0%2C.009a19.272%2C19.272%2C0%2C0%2C0-1.952%2C7.788.463.463%2C0%2C0%2C0%2C.466.453h.022a.472.472%2C0%2C0%2C0%2C.452-.479%2C18.389%2C18.389%2C0%2C0%2C1%2C1.846-7.34l.006-.014.143-.193a.363.363%2C0%2C0%2C0%2C.055-.09A6.527%2C6.527%2C0%2C0%2C1%2C117%2C224.913a14.3%2C14.3%2C0%2C0%2C1%2C2.744-1.373l.042-.021a7.994%2C7.994%2C0%2C0%2C0%2C2.95-2.35.467.467%2C0%2C0%2C0-.093-.653A.455.455%2C0%2C0%2C0%2C122.362%2C220.422Z%22%20transform%3D%22translate(3811.772%202426.597)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M326.18%2C236.412a.592.592%2C0%2C0%2C1-.591-.575%2C15.171%2C15.171%2C0%2C0%2C0-1.182-4.664c-.071-.189-.142-.386-.2-.567a10.26%2C10.26%2C0%2C0%2C0-1.781-3.364%2C17.125%2C17.125%2C0%2C0%2C0-4.893-3.443c-.906-.488-1.852-1-2.758-1.607a.433.433%2C0%2C0%2C1-.063-.047%2C3.026%2C3.026%2C0%2C0%2C1-.276-.276%2C1.793%2C1.793%2C0%2C0%2C0-.173-.173.592.592%2C0%2C1%2C1%2C.78-.89c.095.087.181.173.26.252a1.8%2C1.8%2C0%2C0%2C0%2C.173.173c.851.567%2C1.749%2C1.048%2C2.624%2C1.521a18.224%2C18.224%2C0%2C0%2C1%2C5.208%2C3.7%2C11.446%2C11.446%2C0%2C0%2C1%2C2.009%2C3.758c.071.189.134.37.2.567a16.353%2C16.353%2C0%2C0%2C1%2C1.261%2C5.043.6.6%2C0%2C0%2C1-.575.607.061.061%2C0%2C0%2C0-.024-.008Z%22%20transform%3D%22translate(3624.955%202426.264)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M326.177%2C236.546l-.018-.009a.72.72%2C0%2C0%2C1-.694-.7%2C14.9%2C14.9%2C0%2C0%2C0-1.155-4.571l-.02-.053c-.068-.181-.139-.378-.206-.569a10.138%2C10.138%2C0%2C0%2C0-1.755-3.321%2C17.034%2C17.034%2C0%2C0%2C0-4.86-3.418c-.862-.465-1.839-.991-2.768-1.613a.556.556%2C0%2C0%2C1-.078-.059%2C3.157%2C3.157%2C0%2C0%2C1-.284-.284%2C1.683%2C1.683%2C0%2C0%2C0-.162-.163.717.717%2C0%2C0%2C1%2C.944-1.079c.1.09.187.179.266.257l.006.007a1.667%2C1.667%2C0%2C0%2C0%2C.156.156c.808.538%2C1.667%2C1%2C2.5%2C1.451l.172.093a18.138%2C18.138%2C0%2C0%2C1%2C5.179%2C3.688%2C11.532%2C11.532%2C0%2C0%2C1%2C2.034%2C3.8c.049.13.093.255.141.388l.064.179.01.027a16.357%2C16.357%2C0%2C0%2C1%2C1.258%2C5.054.717.717%2C0%2C0%2C1-.7.735Zm-11.528-15.762a.464.464%2C0%2C0%2C0-.351.157.473.473%2C0%2C0%2C0%2C.043.659%2C1.913%2C1.913%2C0%2C0%2C1%2C.185.185%2C2.926%2C2.926%2C0%2C0%2C0%2C.264.264l.007.007a.423.423%2C0%2C0%2C0%2C.044.032c.92.616%2C1.891%2C1.139%2C2.748%2C1.6a17.227%2C17.227%2C0%2C0%2C1%2C4.926%2C3.469%2C10.371%2C10.371%2C0%2C0%2C1%2C1.806%2C3.406c.066.191.137.386.2.566l.02.054a15.081%2C15.081%2C0%2C0%2C1%2C1.17%2C4.651.468.468%2C0%2C0%2C0%2C.466.453.154.154%2C0%2C0%2C1%2C.044.007.473.473%2C0%2C0%2C0%2C.43-.477%2C16.171%2C16.171%2C0%2C0%2C0-1.243-4.975l-.01-.028-.065-.18c-.047-.132-.091-.257-.14-.386a11.3%2C11.3%2C0%2C0%2C0-1.985-3.718%2C17.94%2C17.94%2C0%2C0%2C0-5.112-3.635l-.172-.093c-.838-.453-1.7-.92-2.524-1.467l-.013-.01a1.915%2C1.915%2C0%2C0%2C1-.182-.182c-.076-.076-.162-.162-.253-.246A.467.467%2C0%2C0%2C0%2C314.649%2C220.784Z%22%20transform%3D%22translate(3624.955%202426.264)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M230.709%2C242.347a6.74%2C6.74%2C0%2C0%2C1-3.38-.693%2C3.037%2C3.037%2C0%2C0%2C1-1.529-2.8.591.591%2C0%2C1%2C1%2C1.182%2C0c0%2C1.079.425%2C2.316%2C3.719%2C2.316%2C1.773%2C0%2C3.876-.433%2C3.876-2.474a.591.591%2C0%2C0%2C1%2C1.182%2C0C235.775%2C241.015%2C233.931%2C242.347%2C230.709%2C242.347Z%22%20transform%3D%22translate(3706.26%202410.198)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M230.709%2C242.472a6.86%2C6.86%2C0%2C0%2C1-3.443-.71%2C3.149%2C3.149%2C0%2C0%2C1-1.591-2.913.716.716%2C0%2C1%2C1%2C1.432%2C0%2C1.768%2C1.768%2C0%2C0%2C0%2C.581%2C1.468%2C4.742%2C4.742%2C0%2C0%2C0%2C3.013.723c1.711%2C0%2C3.751-.408%2C3.751-2.349a.716.716%2C0%2C0%2C1%2C1.432%2C0%2C3.29%2C3.29%2C0%2C0%2C1-.933%2C2.435A5.882%2C5.882%2C0%2C0%2C1%2C230.709%2C242.472Zm-4.318-4.089a.472.472%2C0%2C0%2C0-.466.466%2C2.914%2C2.914%2C0%2C0%2C0%2C1.467%2C2.7%2C6.628%2C6.628%2C0%2C0%2C0%2C3.317.676%2C5.649%2C5.649%2C0%2C0%2C0%2C4.065-1.272%2C3.049%2C3.049%2C0%2C0%2C0%2C.861-2.258.466.466%2C0%2C1%2C0-.932%2C0c0%2C1.7-1.384%2C2.6-4%2C2.6a4.89%2C4.89%2C0%2C0%2C1-3.176-.784%2C2.059%2C2.059%2C0%2C0%2C1-.668-1.658A.472.472%2C0%2C0%2C0%2C226.391%2C238.383Z%22%20transform%3D%22translate(3706.26%202410.198)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.learning_space .style_list .movie h3 {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2286%22%20height%3D%2286%22%20viewBox%3D%220%200%2086%2086%22%3E%3Cg%20transform%3D%22translate(-3767%20-2508)%22%3E%3Cpath%20d%3D%22M43%2C0A43%2C43%2C0%2C1%2C1%2C0%2C43%2C43%2C43%2C0%2C0%2C1%2C43%2C0Z%22%20transform%3D%22translate(3767%202508)%22%20fill%3D%22%238a9f55%22%2F%3E%3Cpath%20d%3D%22M2.465-469.812a3.2%2C3.2%2C0%2C0%2C0-2.242%2C1.974C0-467.258%2C0-466.923%2C0-449.792c0%2C10.964.045%2C17.533.112%2C17.655a.871.871%2C0%2C0%2C0%2C.435.335.614.614%2C0%2C0%2C0%2C.658-.033%2C1.067%2C1.067%2C0%2C0%2C0%2C.4-.346c.033-.1.067-8.008.067-17.555v-17.376l.257-.379a1.82%2C1.82%2C0%2C0%2C1%2C.636-.569c.368-.19%2C1.684-.2%2C22.775-.2H47.724l.223-.29a1.066%2C1.066%2C0%2C0%2C0%2C.234-.446.981.981%2C0%2C0%2C0-.591-.825C47.178-469.968%2C3.2-469.957%2C2.465-469.812Z%22%20transform%3D%22translate(3781.448%202996.713)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M50.022-469.753a.783.783%2C0%2C0%2C0-.245%2C1.3c.245.234.357.245%2C2.32.245%2C2.309%2C0%2C2.621.078%2C3.078.77l.257.379v42.092l-.257.379a1.82%2C1.82%2C0%2C0%2C1-.636.569c-.368.19-1.84.2-25.987.2s-25.619-.011-25.987-.2a1.82%2C1.82%2C0%2C0%2C1-.636-.569c-.245-.368-.257-.468-.257-2.822v-2.443l-.279-.268a.919.919%2C0%2C0%2C0-.558-.279.919.919%2C0%2C0%2C0-.558.279L0-429.847v2.509c0%2C2.253.022%2C2.576.223%2C3.123a3.468%2C3.468%2C0%2C0%2C0%2C1.651%2C1.762l.524.257H54.706l.524-.257a3.468%2C3.468%2C0%2C0%2C0%2C1.651-1.762c.223-.6.223-.725.223-21.793s0-21.191-.223-21.793a3.468%2C3.468%2C0%2C0%2C0-1.651-1.762c-.491-.234-.691-.257-2.755-.29A9.955%2C9.955%2C0%2C0%2C0%2C50.022-469.753Z%22%20transform%3D%22translate(3781.448%202996.654)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M55.491-429.844a.92.92%2C0%2C0%2C0-.424.346c-.033.1-.067%2C1.238-.067%2C2.521%2C0%2C2.186.011%2C2.342.223%2C2.554s.368.223%2C2.9.223c2.6%2C0%2C2.677-.011%2C2.9-.245s.223-.379.223-2.576a15.846%2C15.846%2C0%2C0%2C0-.112-2.532c-.2-.368-.736-.446-3.056-.446A10.392%2C10.392%2C0%2C0%2C0%2C55.491-429.844Zm4.082%2C2.744v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3732.583%202961.24)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M141.768-429.6a.91.91%2C0%2C0%2C0-.48.346c-.223.279-.234.4-.2%2C2.6.033%2C2.086.056%2C2.331.245%2C2.543s.312.234%2C2.911.234%2C2.71-.011%2C2.911-.234.212-.435.212-2.621c0-3.156.268-2.889-2.933-2.9C143.106-429.644%2C141.9-429.633%2C141.768-429.6Zm3.959%2C2.844.033%2C1.2h-3.022V-426.7a5.505%2C5.505%2C0%2C0%2C1%2C.078-1.238%2C9.412%2C9.412%2C0%2C0%2C1%2C1.472-.045l1.405.034Z%22%20transform%3D%22translate(3656.109%202960.917)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M228.491-429.844a.92.92%2C0%2C0%2C0-.424.346c-.033.1-.067%2C1.238-.067%2C2.521%2C0%2C2.186.011%2C2.342.223%2C2.554s.368.223%2C2.9.223%2C2.688-.011%2C2.9-.223.223-.368.223-2.576a16.116%2C16.116%2C0%2C0%2C0-.112-2.554c-.2-.368-.736-.446-3.056-.446A10.392%2C10.392%2C0%2C0%2C0%2C228.491-429.844Zm4.082%2C2.744v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3578.877%202961.24)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M315.158-429.6a.885.885%2C0%2C0%2C0-.446.279c-.19.2-.212.446-.212%2C2.6%2C0%2C2.175.022%2C2.4.212%2C2.61s.312.234%2C2.911.234%2C2.71-.011%2C2.911-.234.212-.457.245-2.554l.033-2.32-.279-.312-.268-.323-2.443-.011C316.485-429.644%2C315.281-429.633%2C315.158-429.6Zm3.948%2C2.844.033%2C1.2h-3.022V-426.7a5.5%2C5.5%2C0%2C0%2C1%2C.078-1.238%2C9.412%2C9.412%2C0%2C0%2C1%2C1.472-.045l1.405.034Z%22%20transform%3D%22translate(3502.024%202960.917)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M401.491-429.844a.92.92%2C0%2C0%2C0-.424.346c-.033.1-.067%2C1.227-.067%2C2.5%2C0%2C2.175.011%2C2.331.223%2C2.554s.3.245%2C2.9.245c2.532%2C0%2C2.688-.011%2C2.9-.223s.223-.368.223-2.576a16.112%2C16.112%2C0%2C0%2C0-.112-2.554c-.2-.368-.736-.446-3.056-.446A10.392%2C10.392%2C0%2C0%2C0%2C401.491-429.844Zm4.082%2C2.744v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3425.172%202961.24)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M181.807-331.448a2.351%2C2.351%2C0%2C0%2C0-1.684%2C1.784c-.078.312-.123%2C2.844-.123%2C6.647%2C0%2C5.108.022%2C6.235.167%2C6.692a2.325%2C2.325%2C0%2C0%2C0%2C1.606%2C1.573%2C1.556%2C1.556%2C0%2C0%2C0%2C1.2-.011c.658-.212%2C12.135-5.9%2C12.859-6.38a2.334%2C2.334%2C0%2C0%2C0%2C0-3.881c-.669-.435-6.458-3.3-6.692-3.3a1.061%2C1.061%2C0%2C0%2C0-.491.234.815.815%2C0%2C0%2C0-.078%2C1.182c.123.112%2C1.628.9%2C3.346%2C1.762%2C3.279%2C1.628%2C3.48%2C1.773%2C3.234%2C2.32-.089.19-1.706%2C1.048-6.446%2C3.413-5.666%2C2.833-6.357%2C3.145-6.58%2C3.034a.9.9%2C0%2C0%2C1-.346-.413c-.145-.379-.145-12.2%2C0-12.581a.819.819%2C0%2C0%2C1%2C.346-.4c.212-.112.513%2C0%2C2.342.892%2C1.974.97%2C2.119%2C1.026%2C2.431.9a1.027%2C1.027%2C0%2C0%2C0%2C.468-.48c.257-.625.033-.814-2.242-1.952C183.056-331.448%2C182.5-331.615%2C181.807-331.448Z%22%20transform%3D%22translate(3621.523%202873.729)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M55.223-133.777c-.212.212-.223.368-.223%2C2.576a16.117%2C16.117%2C0%2C0%2C0%2C.112%2C2.554c.2.368.736.446%2C3.011.446s2.811-.078%2C3.011-.446a15.846%2C15.846%2C0%2C0%2C0%2C.112-2.532c0-2.2-.011-2.353-.223-2.576s-.3-.245-2.9-.245C55.591-134%2C55.435-133.989%2C55.223-133.777Zm4.35%2C2.677v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3732.583%202698.253)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M141.179-133.766c-.19.212-.212.457-.245%2C2.554l-.033%2C2.32.279.312.268.323h2.632c3.446%2C0%2C3.134.279%2C3.134-2.889%2C0-2.186-.022-2.409-.212-2.621s-.312-.234-2.911-.234S141.38-133.989%2C141.179-133.766Zm4.394%2C2.632-.033%2C1.2h-2.9l-.033-1.2-.033-1.193h3.034Z%22%20transform%3D%22translate(3656.263%202698.253)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M228.223-133.777c-.212.212-.223.368-.223%2C2.576a16.116%2C16.116%2C0%2C0%2C0%2C.112%2C2.554c.2.368.736.446%2C3.011.446s2.811-.078%2C3.011-.446a16.116%2C16.116%2C0%2C0%2C0%2C.112-2.554c0-2.208-.011-2.364-.223-2.576s-.368-.223-2.9-.223S228.435-133.989%2C228.223-133.777Zm4.35%2C2.677v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3578.877%202698.253)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M314.653-133.766c-.19.212-.212.435-.212%2C2.621%2C0%2C3.167-.312%2C2.889%2C3.134%2C2.889h2.632l.268-.323.279-.312-.033-2.32c-.034-2.1-.056-2.342-.245-2.554s-.312-.234-2.911-.234S314.854-133.989%2C314.653-133.766Zm4.394%2C2.632-.033%2C1.2h-2.9l-.033-1.2-.033-1.193h3.034Z%22%20transform%3D%22translate(3502.083%202698.253)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M401.223-133.755c-.212.223-.223.379-.223%2C2.576a15.852%2C15.852%2C0%2C0%2C0%2C.111%2C2.532c.2.368.736.446%2C3.011.446s2.811-.078%2C3.011-.446a16.112%2C16.112%2C0%2C0%2C0%2C.112-2.554c0-2.208-.011-2.364-.223-2.576s-.368-.223-2.9-.223C401.524-134%2C401.446-133.989%2C401.223-133.755Zm4.35%2C2.654v1.227h-2.9v-2.454h2.9Z%22%20transform%3D%22translate(3425.172%202698.253)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.learning_space .style_list .video {
  margin-bottom: 1em;
  border: 1px solid #8a9f55;
  border-radius: 10px;
  overflow: hidden;
}
.learning_space .style_list .video:hover {
  border-width: 2px;
}
.learning_space .style_list .video a:hover {
  opacity: 0.8;
}
.learning_space .style_list .video img {
  width: 100%;
}
.learning_space .style_list .video + p {
  padding: 0 1em
}
.learning_space .style_list p {
  letter-spacing: 0.1em;
}
.learning_space .style_list .movie {
  position: relative;
  padding: 50px 60px 40px;
  border: 1px solid #8a9f55;
  border-radius: 10px;
}
.learning_space .style_list .movie::before {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 81px;
  height: 81px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2281%22%20height%3D%2281%22%20viewBox%3D%220%200%2081%2081%22%3E%3Cg%20transform%3D%22translate(-680%20-1812)%22%3E%3Cpath%20d%3D%22M40.5%2C0A40.5%2C40.5%2C0%2C1%2C1%2C0%2C40.5%2C40.5%2C40.5%2C0%2C0%2C1%2C40.5%2C0Z%22%20transform%3D%22translate(680%201812)%22%20fill%3D%22%238a9f55%22%2F%3E%3Cpath%20d%3D%22M1.44-21.48H20.28v-2.76H1.44V-42.48H-1.44v18.24H-20.28v2.76H-1.44V-2.46H1.44Z%22%20transform%3D%22translate(721%201876)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}
.learning_space .style_list .movie .img img {
  width: 100%;
  border-radius: 10px;
}
.learning_space .school_building {
  max-width: 880px;
  margin: 95px auto 0;
}
.learning_space .school_building h3 {
  position: relative;
  margin-bottom: 2em;
  color: #8a9f55;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.learning_space .school_building h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 1px solid #8a9f55;
  content: '';
}
.learning_space .school_building h3 span {
  position: relative;
  z-index: 2;
  padding: 0 2.5em;
  background-color: #fff;
}
.learning_space .school_building img {
  border-radius: 10px;
}
.learning_space .school_building h4 {
  margin-bottom: 0.8em;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.learning_space .school_building p {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.learning_space .school_building ul {
  margin-top: 1.5em;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.learning_space .school_building ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.learning_space .school_building .btn_01 {
  margin: 30px auto 0;
}
@media screen and (min-width: 600px) {
  .learning_space .style_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 90px;
  }
  .learning_space .style_list .movie {
    display: grid;
    grid-template-columns: 55% 40%;
    column-gap: 5%;
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .learning_space .style_list .movie h3 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .learning_space .style_list .movie p {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .learning_space .style_list .movie .img {
    grid-column: 2/3;
    grid-row: 1/3;
    text-align: center;
  }
  .learning_space .style_list .movie .img img {
    max-width: 322px;
  }
  .learning_space .school_building {
    display: grid;
    grid-template-columns: 41% 54%;
    column-gap: 5%;
  }
  .learning_space .school_building h3 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .learning_space .school_building .img {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .learning_space .school_building .txt {
    grid-column: 2/2;
    grid-row: 2/3;
    align-self: center;
  }
  .learning_space .school_building .btn {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .learning_space .ttl_en svg {
    width: 180px;
    height: auto;
  }
  .learning_space .style_list {
    column-gap: 2vw;
  }
  .learning_space .style_list .movie {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 599px) {
  .learning_space .heading_01 svg {
    width: 176px;
    height: auto;
  }
  .learning_space .ttl_en svg {
    width: 146px;
    height: auto;
  }
  .learning_space .style_list {
    margin-top: 40px;
  }
  .learning_space .style_list li + li {
    margin-top: 40px;
  }
  .learning_space .style_list h3 {
    min-height: 56px;
    margin-bottom: 0.8em;
    padding-left: 67px;
    font-size: 14px;
    background-size: 56px;
  }
  .learning_space .style_list h3 .txt_l {
    font-size: 24px;
  }
  .learning_space .style_list .video {
    margin-bottom: 0.8em;
  }
  .learning_space .style_list .movie {
    margin-top: 60px;
    padding: 50px 5% 40px;
  }
  .learning_space .style_list .movie::before {
    top: -30px;
    width: 61px;
    height: 61px;
  }
  .learning_space .style_list .movie h3 {
    margin-bottom: 1.2em;
  }
  .learning_space .style_list .movie .img {
    margin-top: 15px;
  }
  .learning_space .school_building {
    margin-top: 45px;
  }
  .learning_space .school_building h3 {
    margin-bottom: 1.2em;
    font-size: 18px;
  }
  .learning_space .school_building h3 span {
    padding: 0 1.2em;
  }
  .learning_space .school_building h4 {
    margin: 1em 0;
    font-size: 14px;
  }
  .learning_space .school_building p {
    font-size: 12px;
  }
  .learning_space .school_building ul {
    font-size: 12px;
  }
}

/* ------------------------------
learning_support
------------------------------ */
.learning_support.frame_content::before {
  border-color: #e16f4e;
}
.learning_support.frame_content::after {
  background-color: rgba(225, 111, 78, 0.2);
}
.learning_support .ttl_en {
  right: 3.47vw;
}
.learning_support .number_box {
  margin-top: 70px;
}
.learning_support h3 {
  display: flex;
  margin-bottom: 0.8em;
  align-items: center;
  color: #e16f4e;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.learning_support h3 .num {
  width: 86px;
  min-width: 86px;
  height: 86px;
  margin-right: 15px;
  background-color: #e16f4e;
  border-radius: 50%;
  font-family: "din-2014", sans-serif;
  color: #fff;
  font-size: 55px;
  font-weight: normal;
  text-align: center;
  line-height: 86px;
}
.learning_support h3 .txt_s {
  display: inline-block;
  margin-bottom: 0.3em;
  font-size: 20px;
}
.learning_support h3 + p,
.learning_support h3 + .txt {
  letter-spacing: 0.1em;
}
.learning_support .school_list,
.learning_support .howto_question_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.learning_support .school_list > li,
.learning_support .howto_question_list > li {
  display: flex;
  flex-direction: column;
  width: 32%;
}
.learning_support .school_list .video {
  margin-top: auto;
}
.learning_support .school_list .video a:hover {
  opacity: 0.8;
}
.learning_support .school_list img,
.learning_support .howto_question_list img {
  border-radius: 10px;
}
.learning_support .howto_question_list img {
  margin-top: auto;
}
.learning_support .school_list .video img {
  border: 1px solid #e16f4e;
}
.learning_support .school_list a:hover img {
  border-width: 2px;
}
.learning_support .school_list h4,
.learning_support .howto_question_list h4 {
  margin-bottom: 0.6em;
  padding-left: 0.4em;
  border-left: 5px solid #e16f4e;
  color: #e16f4e;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
}
.learning_support .howto_question_list .label_list {
  display: inline-flex;
  margin-top: 0.5em;
}
.learning_support .howto_question_list .label_list li {
  padding: 0.3em 0.7em;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.learning_support .howto_question_list .label_list li.classroom {
  background-color: #44a1c5;
}
.learning_support .howto_question_list .label_list li.zoom {
  background-color: #c36380;
}
.learning_support .howto_question_list .label_list li.movie {
  background-color: #7e678d;
}
.learning_support .howto_question_list .label_list li + li {
  margin-left: 5px;
}
.learning_support .txt_note {
  margin-top: 1.5em;
  font-size: 12px;
}
.learning_support .number_box.with_img .img img {
  display: none;
  border-radius: 10px;
}
.learning_support .number_box .video a:hover {
  opacity: 0.8;
}
.learning_support .number_box.with_img .img.video img {
  border: 1px solid #e16f4e;
}
.learning_support .number_box.with_img .img.video a:hover img {
  border-width: 2px;
}
.learning_support .number_box .btn_01 {
  margin: 25px auto 0;
}
@media screen and (min-width: 600px) {
  .learning_support h3 + p,
  .learning_support h3 + .txt {
    padding: 0 1em;
  }
  .learning_support .school_list > li:nth-child(n + 4) {
    margin-top: 40px;
  }
  .learning_support .school_list::after {
    display: block;
    width: 32%;
    content: '';
  }
  .learning_support .number_box.with_img {
    display: grid;
    grid-template-columns: 60% 36%;
    grid-template-rows: min-content 1fr;
    column-gap: 4%;
  }
  .learning_support .number_box.with_img h3 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .learning_support .number_box.with_img .txt {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .learning_support .number_box.with_img .img {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .learning_support .number_box.with_img .img .img_pc {
    display: inline-block;
  }
  .learning_support .number_box.with_img .img.align_btm {
    display: flex;
    align-items: end;
  }
}
@media screen and (min-width: 1440px) {
  .learning_support .ttl_en {
    right: 50px;
  }
}
@media screen and (max-width: 999px) {
  .learning_support .ttl_en svg {
    width: 220px;
    height: auto;
  }
}
@media screen and (max-width: 689px) {
  .learning_support .howto_question_list .label_list li {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .learning_support .heading_01 svg {
    width: 120px;
    height: auto;
  }
  .learning_support .ttl_en {
    right: 10px;
  }
  .learning_support .ttl_en svg {
    width: 174px;
  }
  .learning_support .number_box {
    margin-top: 40px;
  }
  .learning_support h3 {
    font-size: 18px;
  }
  .learning_support h3 .num {
    width: 50px;
    min-width: 50px;
    height: 50px;
    font-size: 36px;
    line-height: 50px;
  }
  .learning_support h3 .txt_s {
    font-size: 14px;
  }
  .learning_support .school_list,
  .learning_support .howto_question_list {
    margin-top: 20px;
  }
  .learning_support .school_list > li,
  .learning_support .howto_question_list > li {
    width: 48%;
  }
  .learning_support .school_list h4,
  .learning_support .howto_question_list h4 {
    font-size: 12px;
  }
  .learning_support .school_list > li:nth-child(n + 3),
  .learning_support .howto_question_list > li:nth-child(n + 3) {
    margin-top: 15px;
  }
  .learning_support .howto_question_list .label_list li {
    font-size: 10px;
    font-weight: normal;
  }
  .learning_support .howto_question_list .label_list li + li {
    margin-left: 3px;
  }
  .learning_support .number_box.with_img .img {
    margin-top: 1em;
  }
  .learning_support .number_box.with_img .img .img_sp {
    display: inline-block;
  }
  .learning_support .number_box.num6 {
    position: relative;
    padding-bottom: 65px;
  }
  .learning_support .number_box.num6 .btn_01 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ------------------------------
instructor
------------------------------ */
.instructor.frame_content::before {
  border-color: #d3ba57;
}
.instructor.frame_content::after {
  background-color: rgba(211, 186, 87, 0.2);
}
.instructor .instructor_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
.instructor .instructor_list > li {
  width: 23.5%;
  text-align: center;
  cursor: pointer;
}
.instructor .instructor_list > li:hover {

}
.instructor .instructor_list .thumbnail {
  margin-bottom: 8px;
  border: 1px solid #d3ba57;
  border-radius: 10px;
}
.instructor .instructor_list > li:hover .thumbnail {
  opacity: 0.8;
  border-width: 2px;
}
.instructor .label_list {
  display: inline-flex;
}
.instructor .label_list li {
  padding: 0.4em 0.4em;
  border: 1px solid;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 1;
}
.instructor .label_list li + li {
  margin-left: 0.5em;
}
.instructor .label_list .kabu {
  border-color: #5e76a7;
  color: #5e76a7;
}
.instructor .label_list .fudo {
  border-color: #44a1c5;
  color: #44a1c5;
}
.instructor .label_list .mf {
  border-color: #8a9f55;
  color: #8a9f55;
}
.instructor .label_list .kyouyou {
  border-color: #7e678d;
  color: #7e678d;
}
.instructor .label_list .rm {
  border-color: #e16f4e;
  color: #e16f4e;
}
.instructor .label_list .fx {
  border-color: #c36380;
  color: #c36380;
}
.instructor .instructor_list .name {
  font-size: 20px;
}
@media screen and (min-width: 870px) {
  .instructor .instructor_list > li:nth-child(n + 5) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 999px) {
  .instructor .ttl_en svg {
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 869px) {
  .instructor .instructor_list > li {
    width: 31%;
  }
  .instructor .instructor_list > li:nth-child(n + 4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 699px) {
  .instructor .instructor_list > li {
    width: 32%;
  }
}
@media screen and (max-width: 599px) {
  .instructor .heading_01 svg {
    width: 145px;
    height: auto;
  }
  .instructor .ttl_en svg {
    width: 112px;
  }
  .instructor .instructor_list {
    margin-top: 40px;
  }
  .instructor .instructor_list > li {
    width: 48%;
  }
  .instructor .instructor_list > li:nth-child(n + 3) {
    margin-top: 20px;
  }
  .instructor .instructor_list .thumbnail {
    margin-bottom: 5px;
  }
  .instructor .label_list li {
    font-size: 12px;
  }
  .instructor .label_list li + li {
    margin-left: 0.3em;
  }
  .instructor .instructor_list .name {
    font-size: 16px;
  }
}
/* modal */
.instructor .modal_instructor_wrap {
  display: none;
}
.instructor .modal_instructor_wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100%;
  height: 100vh;
}
.instructor .modal_instructor_wrap .modal_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(51, 51, 51, 0.6)
}
.instructor .instructor_detail {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 92%;
  max-width: 1015px;
  max-height: 90%;
  padding: 50px 5% 40px;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  overflow-y: scroll;
}
.instructor .instructor_detail .btn_close_top {
  position: absolute;
  top: 0;
  right: 15px;
  color: #6b6b6b;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}
.instructor .instructor_detail .btn_close_btm {
  margin-top: 3em;
  color: #6b6b6b;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.instructor .instructor_detail .btn_close_btm .txt_l {
  font-size: 21px;
}
.instructor .instructor_detail h3 {
  margin-bottom: 0.8em;
  padding-left: 18px;
  border-left: 5px solid #d3ba57;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
.instructor .instructor_profile .video a {
  display: block;
  position: relative;
}
.instructor .instructor_profile img {
  border-radius: 10px;
}
.instructor .instructor_profile .ico_start {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  border-radius: 10px;
}
.instructor .instructor_profile .ico_start svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.instructor .instructor_profile .catch {
  margin: 0.4em 0 0.8em;
  padding: 0.8em 1.5em;
  background: rgba(211, 186, 87, 0.2);
  border-radius: 10px;
  font-family: "Hiragino Mincho ProN W3", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "Hiragino Mincho ProN", "HG–¾’©E", "Ÿà–¾’©", YuMincho, "‚l‚r ‚o–¾’©", "‚l‚r –¾’©", serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.instructor .instructor_profile .catch span {
  position: relative;
}
.instructor .instructor_profile .catch span::before,
.instructor .instructor_profile .catch span::after {
  position: absolute;
  font-size: 40px;
}
.instructor .instructor_profile .catch span::before {
  top: -0.3em;
  left: -0.6em;
  content: 'g';
}
.instructor .instructor_profile .catch span::after {
  bottom: -0.5em;
  right: -0.6em;
  content: 'h';
}
.instructor .instructor_profile .history {
  letter-spacing: 0.1em;
}
.instructor .serve_seminar {
  margin-top: 50px;
  text-align: center;
}
.instructor .serve_seminar h4 {
  position: relative;
  margin-bottom: 2em;
  color: #5e76a7;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.instructor .serve_seminar h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px dashed #5e76a7;
  content: '';
}
.instructor .serve_seminar h4 span {
  display: inline-block;
  position: relative;
  padding: 0 1em;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .instructor .instructor_profile  {
    display: flex;
    justify-content: space-between;
  }
  .instructor .instructor_profile .video {
    width: 235px;
  }
  .instructor .instructor_profile .txt {
    width: calc(100% - (235px + 30px));
  }
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .instructor .instructor_detail {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (min-width: 600px) and (max-width: 749px) {
  .instructor .instructor_profile .video {
    width: 200px;
  }
  .instructor .instructor_profile .txt {
    width: calc(100% - (200px + 20px));
  }
}
@media screen and (max-width: 599px) {
  .instructor .instructor_detail {
    padding: 30px 4% 25px;
  }
  .instructor .instructor_detail .btn_close_top {
    right: 10px;
    font-size: 27px;
  }
  .instructor .instructor_detail .btn_close_btm {
    margin-top: 2em;
  }
  .instructor .instructor_detail h3 {
    font-size: 24px;
  }
  .instructor .instructor_profile .video {
    max-width: 184px;
    margin: 0 auto 20px;
  }
  .instructor .instructor_profile .ico_start svg {
    width: 41px;
    height: auto;
  }
  .instructor .instructor_profile .label_list {
    margin: 0 auto;
  }
  .instructor .instructor_profile .catch {
    font-size: 18px;
  }
  .instructor .instructor_profile .catch span {
    text-align: left;
  }
  .instructor .instructor_profile .catch span::before,
  .instructor .instructor_profile .catch span::after {
    font-size: 34px;
  }
  .instructor .instructor_profile .catch span::before {
    top: -0.2em;
  }
  .instructor .instructor_profile .catch span::after {
    bottom: -0.6em;
  }
  .instructor .serve_seminar {
    margin-top: 30px;
  }
  .instructor .serve_seminar h4 {
    font-size: 16px;
  }
  .instructor .serve_seminar h4 span {
    padding: 0 0.5em;
  }
}
/* serve_semina school_list */
.instructor .serve_seminar .school_list > li {
  border: 2px solid;
  text-align: left;
}
.instructor .serve_seminar .school_list h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
  margin-bottom: 10px;
  padding: 0.5em;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.instructor .serve_seminar .school_list h5 span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding-left: 62px;
  background-repeat: no-repeat;
  background-position: left center;
}
.instructor .serve_seminar .school_list .box_inner {
  padding: 0 6% 20px;
}
.instructor .serve_seminar .school_list .txt {
  font-size: 14px;
  line-height: 1.6;
}
.instructor .serve_seminar .school_list .tags {
  margin: 0.2em 0 0.5em;
}
.instructor .serve_seminar .school_list .tags li {
  display: inline-block;
  padding: 0.3em 0.5em;
  border: 1px solid;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 1;
}
.instructor .serve_seminar .school_list .tags li + li {
  margin-left: 2px;
}
.instructor .serve_seminar .school_list .img {
  margin-bottom: 0.5em;
}
.instructor .serve_seminar .school_list .img img {
  width: 100%;
  height: 56px;
  object-fit: cover;
}
.instructor .serve_seminar .school_list .strong {
  font-weight: bold;
}
.instructor .serve_seminar .school_list .link {
  margin-top: 0.5em;
  font-size: 14px;
  text-align: center;
}
.instructor .serve_seminar .school_list .btn_entry {
  display: block;
  position: relative;
  width: 100%;
  margin: 5px auto 0;
  padding: 0.8em 30px 0.8em 1em;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
.instructor .serve_seminar .school_list .btn_entry::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: '';
}
.instructor .serve_seminar .school_list .btn_entry::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
/* kabu */
.instructor .serve_seminar .school_list > li.kabu {
  border-color: #5e76a7;
}
.instructor .serve_seminar .school_list > li.kabu h5 {
  background: rgba(94, 118, 167, 0.1);
  color: #5e76a7;
}
.instructor .serve_seminar .school_list > li.kabu h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(17899%20-7520)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%236276a3%22%2F%3E%3Cpath%20d%3D%22M36.5.862c-1.8.474-3.339.881-3.425.9a.559.559%2C0%2C0%2C0-.294.641%2C4.232%2C4.232%2C0%2C0%2C0%2C.975.795c.788.541.895.641.835.748a18.13%2C18.13%2C0%2C0%2C1-1.756%2C2.177c-.7.748-.781.888-.668%2C1.182a.574.574%2C0%2C0%2C0%2C.634.22A15.131%2C15.131%2C0%2C0%2C0%2C35.77%2C3.9c.14-.34.027-.507-.648-.968a6.906%2C6.906%2C0%2C0%2C1-.621-.454c-.027-.053%2C5.028-1.382%2C5.074-1.329.013.013.134%2C1.075.26%2C2.357s.247%2C2.464.274%2C2.624l.04.294-.628-.434c-.7-.488-.861-.561-1.048-.454a6.379%2C6.379%2C0%2C0%2C0-.761.855%2C24.1%2C24.1%2C0%2C0%2C1-8.3%2C6.717%2C30.764%2C30.764%2C0%2C0%2C1-11.191%2C3.011c-.414.04-.454.034-.454-.08%2C0-.093.194-.187.988-.447a41.807%2C41.807%2C0%2C0%2C0%2C9.628-4.5c.715-.461%2C2.491-1.769%2C2.985-2.2.307-.26.354-.561.134-.781-.267-.267-.487-.227-.988.18a37.875%2C37.875%2C0%2C0%2C1-11.9%2C6.3%2C10.766%2C10.766%2C0%2C0%2C0-1.482.574%2C1.147%2C1.147%2C0%2C0%2C0%2C0%2C1.716c.334.26.574.294%2C1.489.207a29.286%2C29.286%2C0%2C0%2C0%2C16.219-6.31A28.987%2C28.987%2C0%2C0%2C0%2C38.1%2C7.505c.327-.408.607-.755.628-.781a5.185%2C5.185%2C0%2C0%2C1%2C.942.587%2C5.272%2C5.272%2C0%2C0%2C0%2C1.042.628.437.437%2C0%2C0%2C0%2C.454-.26c.073-.147.04-.668-.267-3.679C40.7%2C2.07%2C40.544.448%2C40.537.388c0-.2-.26-.394-.521-.387C39.883%2C0%2C38.3.394%2C36.5.862%22%20transform%3D%22translate(-17902.588%207528.579)%22%20fill%3D%22%235e76a7%22%2F%3E%3Cpath%20d%3D%22M26.074%2C48.2a1.6%2C1.6%2C0%2C0%2C0-.321.26c-.314.347-.307.147-.314%2C8.941v8.3h-1.6V59.175c0-6.51%2C0-6.524-.14-6.817a1.325%2C1.325%2C0%2C0%2C0-.414-.467l-.274-.18H20.873c-2.123%2C0-2.143%2C0-2.39.154a1.631%2C1.631%2C0%2C0%2C0-.4.4l-.153.247-.02%2C6.6-.013%2C6.59h-1.6V61.038c-.007-4.914-.007-4.968-.314-5.3a1.451%2C1.451%2C0%2C0%2C0-.374-.26c-.234-.127-.387-.133-2.377-.113l-2.123.02-.247.194c-.494.374-.507.447-.507%2C3.058a18.387%2C18.387%2C0%2C0%2C0%2C.073%2C2.484.513.513%2C0%2C0%2C0%2C.841.094c.027-.047.067-1.155.087-2.457l.033-2.37%2C1.9-.02a7.363%2C7.363%2C0%2C0%2C1%2C1.956.067c.027.047.053%2C2.15.053%2C4.674V65.7H11.351V64.209c0-1.476%2C0-1.5-.154-1.636a.47.47%2C0%2C0%2C0-.708.027c-.134.167-.14.26-.14%2C1.636V65.7h-1.6V62.907c0-1.709-.027-2.878-.067-3.031a1.373%2C1.373%2C0%2C0%2C0-.247-.454c-.334-.4-.347-.4-2.664-.4-2%2C0-2.123.007-2.357.14A1.356%2C1.356%2C0%2C0%2C0%2C3%2C59.535l-.167.247-.02%2C2.958L2.8%2C65.7H1.67a8.741%2C8.741%2C0%2C0%2C0-1.309.067.475.475%2C0%2C0%2C0-.227.788l.14.147H33.913l.14-.147a.475.475%2C0%2C0%2C0-.227-.788%2C8.857%2C8.857%2C0%2C0%2C0-1.315-.067H31.382V60.964c0-2.6-.02-4.787-.04-4.847a.628.628%2C0%2C0%2C0-.594-.26c-.381.093-.367-.094-.367%2C5.081V65.7h-3.94V57.465c0-4.52.027-8.266.054-8.313a7.388%2C7.388%2C0%2C0%2C1%2C1.956-.067l1.9.02.02%2C2.7c.013%2C2.671.02%2C2.7.16%2C2.858a.464.464%2C0%2C0%2C0%2C.714-.02c.134-.174.14-.247.14-2.918%2C0-2.651-.007-2.751-.14-3.031a1.025%2C1.025%2C0%2C0%2C0-.421-.454l-.287-.167H28.4c-1.956%2C0-2.143.013-2.33.127m-3.318%2C4.561c.06.06.08%2C1.6.08%2C6.51V65.7H18.9v-6.43c0-4.914.02-6.45.08-6.51a21%2C21%2C0%2C0%2C1%2C3.779%2C0M7.706%2C60.13c.02.06.04%2C1.335.04%2C2.838V65.7H3.806V62.907c0-1.536.02-2.818.047-2.838s.888-.047%2C1.93-.047c1.656%2C0%2C1.89.013%2C1.923.107%22%20transform%3D%22translate(-17890.094%207492.721)%22%20fill%3D%22%235e76a7%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.kabu .tags li {
  border-color: #5e76a7;
  color: #5e76a7;
}
.instructor .serve_seminar .school_list > li.kabu .strong {
  color: #5e76a7;
}
.instructor .serve_seminar .school_list > li.kabu .btn_entry {
  background-color: #5e76a7;
}
/* fudo */
.instructor .serve_seminar .school_list > li.fudo {
  border-color: #44a1c5;
}
.instructor .serve_seminar .school_list > li.fudo h5 {
  background: rgba(68, 161, 197, 0.1);
  color: #44a1c5;
}
.instructor .serve_seminar .school_list > li.fudo h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(17899%20-7520)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%235ba0c1%22%2F%3E%3Cpath%20d%3D%22M94.987%2C67.994a.458.458%2C0%2C0%2C1-.458-.458V66.2a.458.458%2C0%2C1%2C1%2C.916%2C0v1.333a.458.458%2C0%2C0%2C1-.458.458%22%20transform%3D%22translate(-17956.766%207481.581)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M33.67%2C32.074h-22a.458.458%2C0%2C0%2C1-.458-.458V3.665a.458.458%2C0%2C0%2C1%2C.392-.453L33.6%2C0a.458.458%2C0%2C0%2C1%2C.519.387.464.464%2C0%2C0%2C1%2C0%2C.066v9.586a.458.458%2C0%2C1%2C1-.916%2C0V.988L12.125%2C4.062v27.1H33.212v-8.8a.458.458%2C0%2C1%2C1%2C.916%2C0v9.256a.458.458%2C0%2C0%2C1-.458.458%22%20transform%3D%22translate(-17895.447%207529.963)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M94.987%2C50.722a.458.458%2C0%2C0%2C1-.458-.458V48.9a.458.458%2C0%2C1%2C1%2C.916%2C0v1.361a.458.458%2C0%2C0%2C1-.458.458%22%20transform%3D%22translate(-17956.766%207494.311)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M27.942%2C118.9H.458a.458.458%2C0%2C1%2C1%2C0-.916H27.942a.458.458%2C0%2C1%2C1%2C0%2C.916%22%20transform%3D%22translate(-17887.199%207443.133)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M74.6%2C25.76H71.856A.458.458%2C0%2C0%2C1%2C71.4%2C25.3V23.015a.458.458%2C0%2C0%2C1%2C.458-.458H74.6a.458.458%2C0%2C0%2C1%2C.458.458V25.3a.458.458%2C0%2C0%2C1-.458.458m-2.287-.916h1.829V23.473H72.315Z%22%20transform%3D%22translate(-17939.742%207513.363)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M50.888%2C25.76H48.145a.458.458%2C0%2C0%2C1-.458-.458V23.015a.458.458%2C0%2C0%2C1%2C.458-.458h2.743a.458.458%2C0%2C0%2C1%2C.458.458V25.3a.458.458%2C0%2C0%2C1-.458.458M48.6%2C24.844H50.43V23.473H48.6Z%22%20transform%3D%22translate(-17922.293%207513.363)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M27.178%2C25.76H24.433a.458.458%2C0%2C0%2C1-.458-.458V23.015a.458.458%2C0%2C0%2C1%2C.458-.458h2.745a.458.458%2C0%2C0%2C1%2C.458.458V25.3A.458.458%2C0%2C0%2C1%2C27.178%2C25.76Zm-2.287-.916H26.72V23.473H24.891Z%22%20transform%3D%22translate(-17904.844%207513.363)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M74.6%2C45.718H71.856a.458.458%2C0%2C0%2C1-.458-.458V42.969a.458.458%2C0%2C0%2C1%2C.458-.458H74.6a.458.458%2C0%2C0%2C1%2C.458.458V45.26a.458.458%2C0%2C0%2C1-.458.458M72.315%2C44.8h1.829V43.427H72.315Z%22%20transform%3D%22translate(-17939.742%207498.678)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M50.888%2C45.717H48.145a.458.458%2C0%2C0%2C1-.458-.458V42.968a.458.458%2C0%2C0%2C1%2C.458-.458h2.743a.458.458%2C0%2C0%2C1%2C.458.458v2.291a.458.458%2C0%2C0%2C1-.458.458M48.6%2C44.8H50.43V43.427H48.6Z%22%20transform%3D%22translate(-17922.293%207498.679)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M27.178%2C45.718H24.433a.458.458%2C0%2C0%2C1-.458-.458V42.969a.458.458%2C0%2C0%2C1%2C.458-.458h2.745a.458.458%2C0%2C0%2C1%2C.458.458V45.26A.458.458%2C0%2C0%2C1%2C27.178%2C45.718ZM24.891%2C44.8H26.72V43.427H24.891Z%22%20transform%3D%22translate(-17904.844%207498.678)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M74.6%2C65.683H71.856a.458.458%2C0%2C0%2C1-.458-.458V62.938a.458.458%2C0%2C0%2C1%2C.458-.458H74.6a.458.458%2C0%2C0%2C1%2C.458.458v2.287a.458.458%2C0%2C0%2C1-.458.458m-2.287-.916h1.829V63.4H72.315Z%22%20transform%3D%22translate(-17939.742%207483.982)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M50.888%2C65.683H48.145a.458.458%2C0%2C0%2C1-.458-.458V62.938a.458.458%2C0%2C0%2C1%2C.458-.458h2.743a.458.458%2C0%2C0%2C1%2C.458.458v2.287a.458.458%2C0%2C0%2C1-.458.458M48.6%2C64.767H50.43V63.4H48.6Z%22%20transform%3D%22translate(-17922.293%207483.982)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M27.178%2C65.683H24.433a.458.458%2C0%2C0%2C1-.458-.458V62.938a.458.458%2C0%2C0%2C1%2C.458-.458h2.745a.458.458%2C0%2C0%2C1%2C.458.458v2.287A.458.458%2C0%2C0%2C1%2C27.178%2C65.683Zm-2.287-.916H26.72V63.4H24.891Z%22%20transform%3D%22translate(-17904.844%207483.982)%22%20fill%3D%22%2344a1c5%22%2F%3E%3Cpath%20d%3D%22M46.792%2C94.65H39.476a.458.458%2C0%2C0%2C1-.458-.458v-8.7a.458.458%2C0%2C0%2C1%2C.458-.458h7.316a.458.458%2C0%2C0%2C1%2C.458.458v8.7a.458.458%2C0%2C0%2C1-.458.458m-6.858-.916h6.4V85.952h-6.4Z%22%20transform%3D%22translate(-17915.914%207467.383)%22%20fill%3D%22%2344a1c5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.fudo .tags li {
  border-color: #44a1c5;
  color: #44a1c5;
}
.instructor .serve_seminar .school_list > li.fudo .strong {
  color: #44a1c5;
}
.instructor .serve_seminar .school_list > li.fudo .btn_entry {
  background-color: #44a1c5;
}
/* mf */
.instructor .serve_seminar .school_list > li.mf {
  border-color: #8a9f55;
}
.instructor .serve_seminar .school_list > li.mf h5 {
  background: rgba(138, 159, 85, 0.1);
  color: #8a9f55;
}
.instructor .serve_seminar .school_list > li.mf h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(17899%20-7520)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M.157.157A.491.491%2C0%2C0%2C0%2C0%2C.5.491.491%2C0%2C0%2C0%2C.157.85l.151.157H4.1L4.252.85a.463.463%2C0%2C0%2C0%2C0-.693L4.1%2C0H.309Z%22%20transform%3D%22translate(-17890.789%207529.937)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M.157%2C8.264a.46.46%2C0%2C0%2C0%2C0%2C.693l.151.157H4.1l.151-.157a.463.463%2C0%2C0%2C0%2C0-.693L4.1%2C8.107H.309Z%22%20transform%3D%22translate(-17890.789%207523.846)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M15.03%2C8.177a14.128%2C14.128%2C0%2C0%2C0-7.812%2C3.15c-.347.277-.7.586-.781.674l-.157.164L5.265%2C11.157%2C4.251%2C10.149H.313l-.151.158a.463.463%2C0%2C0%2C0%2C0%2C.693l.151.157h3.5l.876.876.869.869-.428.529A14.084%2C14.084%2C0%2C0%2C0%2C2.046%2C21.6L2%2C22.421l.164.164.164.164H8.264l.145-.145c.126-.126.151-.233.183-.769A7.6%2C7.6%2C0%2C0%2C1%2C15.723%2C14.7c.536-.032.643-.057.769-.183l.145-.145V8.442l-.158-.151c-.139-.145-.2-.157-.674-.145-.29.006-.636.019-.775.032m.6%2C3.226v2.262l-.138.038a1.742%2C1.742%2C0%2C0%2C1-.334.038%2C9.39%2C9.39%2C0%2C0%2C0-1.89.441%2C8.565%2C8.565%2C0%2C0%2C0-5.2%2C5.2%2C9.411%2C9.411%2C0%2C0%2C0-.441%2C1.89%2C1.673%2C1.673%2C0%2C0%2C1-.038.327l-.038.145H3.022l.038-.46a13.226%2C13.226%2C0%2C0%2C1%2C2.835-7.188l.372-.479.794.787a3.7%2C3.7%2C0%2C0%2C0%2C.932.787.57.57%2C0%2C0%2C0%2C.58-.58%2C3.7%2C3.7%2C0%2C0%2C0-.787-.932L7%2C12.884l.3-.29a13.645%2C13.645%2C0%2C0%2C1%2C4.454-2.7%2C14.776%2C14.776%2C0%2C0%2C1%2C2.583-.624c.769-.094.914-.113%2C1.121-.126l.17-.006Z%22%20transform%3D%22translate(-17890.793%207523.819)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M29.929%2C16.3l-.164.163v1.959c0%2C2.4-.076%2C2.224.976%2C2.287a9.726%2C9.726%2C0%2C0%2C1%2C4.889%2C1.625%2C11.853%2C11.853%2C0%2C0%2C1%2C2.57%2C2.57%2C9.717%2C9.717%2C0%2C0%2C1%2C0%2C10.722%2C11.842%2C11.842%2C0%2C0%2C1-2.57%2C2.57%2C9.707%2C9.707%2C0%2C0%2C1-10.716%2C0%2C11.467%2C11.467%2C0%2C0%2C1-2.577-2.57%2C9.723%2C9.723%2C0%2C0%2C1-1.625-4.889c-.063-1.052.113-.976-2.287-.976H16.466l-.164.164-.164.164.038.806a14.172%2C14.172%2C0%2C0%2C0%2C2.829%2C7.862%2C18.178%2C18.178%2C0%2C0%2C0%2C2.784%2C2.784%2C14.44%2C14.44%2C0%2C0%2C0%2C6.621%2C2.715%2C19.317%2C19.317%2C0%2C0%2C0%2C3.906-.031%2C14.116%2C14.116%2C0%2C0%2C0%2C8.1-4.177%2C13.915%2C13.915%2C0%2C0%2C0%2C3.433-5.991%2C12.169%2C12.169%2C0%2C0%2C0%2C.491-3.761%2C12.055%2C12.055%2C0%2C0%2C0-.542-4A14.122%2C14.122%2C0%2C0%2C0%2C30.9%2C16.176l-.806-.038Zm1.821.957A13.186%2C13.186%2C0%2C0%2C1%2C43.342%2C29.374l.038.39L42.1%2C29.752l-1.279-.019-.019-.252a12.055%2C12.055%2C0%2C0%2C0-.435-2.3%2C10.56%2C10.56%2C0%2C0%2C0-7.547-7.169%2C10.417%2C10.417%2C0%2C0%2C0-1.165-.227c-.227-.025-.517-.057-.643-.076l-.239-.038V18.419c0-.964.019-1.254.082-1.254.038%2C0%2C.447.044.895.094M19.711%2C31.006c.019.132.05.422.076.649a10.465%2C10.465%2C0%2C0%2C0%2C.227%2C1.165%2C10.572%2C10.572%2C0%2C0%2C0%2C7.169%2C7.547%2C12.074%2C12.074%2C0%2C0%2C0%2C2.3.435l.252.019.019%2C1.279.012%2C1.279-.359-.038a13.232%2C13.232%2C0%2C0%2C1-4.9-1.323%2C13.02%2C13.02%2C0%2C0%2C1-6.98-8.757%2C18.768%2C18.768%2C0%2C0%2C1-.359-2.406c0-.063.29-.082%2C1.253-.082h1.254Zm23.631.157a13.4%2C13.4%2C0%2C0%2C1-2.489%2C6.81%2C17.291%2C17.291%2C0%2C0%2C1-2.879%2C2.879%2C13.4%2C13.4%2C0%2C0%2C1-6.81%2C2.488l-.391.038.013-1.279.019-1.279.5-.044A10.54%2C10.54%2C0%2C0%2C0%2C40.765%2C31.4a3.956%2C3.956%2C0%2C0%2C1%2C.063-.554c.013-.057.327-.076%2C1.285-.076h1.266Z%22%20transform%3D%22translate(-17902.914%207517.812)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M52.642%2C40.667a1.639%2C1.639%2C0%2C0%2C0-.359%2C1.26%2C6.23%2C6.23%2C0%2C0%2C0%2C.951%2C2.993l.246.428-.586.555a6.027%2C6.027%2C0%2C0%2C0-1.959%2C3.648c-.611%2C3.641.05%2C5.285%2C2.388%2C5.934a10.308%2C10.308%2C0%2C0%2C0%2C2.93.139%2C10.306%2C10.306%2C0%2C0%2C0%2C2.929-.139%2C3.132%2C3.132%2C0%2C0%2C0%2C2.526-2.671%2C10.226%2C10.226%2C0%2C0%2C0-.1-3.011%2C6.112%2C6.112%2C0%2C0%2C0-1.991-3.9l-.592-.555.283-.5a8.951%2C8.951%2C0%2C0%2C0%2C.851-2.142%2C4.832%2C4.832%2C0%2C0%2C0%2C.05-.945c-.025-.636-.164-1-.441-1.159-.157-.088-.2-.082-.472.019a5.9%2C5.9%2C0%2C0%2C1-1.877.535%2C1.473%2C1.473%2C0%2C0%2C1-.838-.114c-.283-.119-.353-.132-.51-.063a.626.626%2C0%2C0%2C0-.3.3l-.107.227-.1-.151a2.421%2C2.421%2C0%2C0%2C0-.277-.34.364.364%2C0%2C0%2C0-.41-.138c-.126.025-.409.056-.624.076a.99.99%2C0%2C0%2C1-.806-.189c-.479-.258-.586-.277-.806-.1m6.483%2C2.01a9.276%2C9.276%2C0%2C0%2C1-.844%2C1.94l-.271.46h-.687l.22-.441a2.167%2C2.167%2C0%2C0%2C0%2C.221-.6.549.549%2C0%2C0%2C0-.485-.472c-.283%2C0-.41.132-.712.75a3.419%2C3.419%2C0%2C0%2C1-.315.573%2C3.407%2C3.407%2C0%2C0%2C1-.315-.573c-.3-.618-.428-.75-.712-.75a.549.549%2C0%2C0%2C0-.485.472%2C2.166%2C2.166%2C0%2C0%2C0%2C.221.6l.22.441h-.687l-.265-.448a6.427%2C6.427%2C0%2C0%2C1-.939-2.494c0-.271.006-.283.145-.239a4.049%2C4.049%2C0%2C0%2C0%2C.737.069l.6.019.3.428a4.731%2C4.731%2C0%2C0%2C0%2C.466.567c.334.3.662.126.87-.46l.132-.372.567.019a4.564%2C4.564%2C0%2C0%2C0%2C1.808-.3l.271-.113.019.278a2.507%2C2.507%2C0%2C0%2C1-.076.643m-4.29%2C3.6a.509.509%2C0%2C0%2C0%2C.063.662.5.5%2C0%2C0%2C0%2C.6.094%2C1.654%2C1.654%2C0%2C0%2C0%2C.353-.5c.2-.371.265-.441.4-.441s.2.069.4.441a1.659%2C1.659%2C0%2C0%2C0%2C.353.5.5.5%2C0%2C0%2C0%2C.6-.094.509.509%2C0%2C0%2C0%2C.063-.662l-.1-.189h.346a.924.924%2C0%2C0%2C1%2C.712.277%2C5.294%2C5.294%2C0%2C0%2C1%2C1.9%2C3.225%2C7.59%2C7.59%2C0%2C0%2C1%2C.076%2C3.522%2C2.314%2C2.314%2C0%2C0%2C1-2.148%2C1.48%2C42.765%2C42.765%2C0%2C0%2C1-4.41%2C0%2C2.3%2C2.3%2C0%2C0%2C1-2.312-2.425%2C9.54%2C9.54%2C0%2C0%2C1%2C.674-3.924%2C4.541%2C4.541%2C0%2C0%2C1%2C1.474-1.884.919.919%2C0%2C0%2C1%2C.706-.271h.346Z%22%20transform%3D%22translate(-17928.896%207499.475)%22%20fill%3D%22%238f9e5e%22%2F%3E%3Cpath%20d%3D%22M69.305%2C71.463a.413.413%2C0%2C0%2C0-.415-.372.331.331%2C0%2C0%2C0-.277.168c-.255.459-.721%2C1.2-1.107%2C1.763-.015.022-.015.015-.058.022H67.17c-.044-.007-.051%2C0-.066-.022-.437-.648-.875-1.29-1.144-1.749a.343.343%2C0%2C0%2C0-.3-.189.379.379%2C0%2C0%2C0-.379.372.329.329%2C0%2C0%2C0%2C.073.219c.925%2C1.363.925%2C1.37.925%2C1.37s0%2C.007-.058.007c-.2%2C0-.35-.007-.452-.007h-.014a.291.291%2C0%2C0%2C0-.3.3.3.3%2C0%2C0%2C0%2C.328.306c.226-.007.517-.014.852-.014.029%2C0%2C.073.014.24.3a.274.274%2C0%2C0%2C1%2C.044.189c-.007.029-.007.044-.051.044-.474%2C0-.9%2C0-1.1-.007h-.014a.31.31%2C0%2C1%2C0%2C.029.619c.277-.015.67-.015%2C1.1-.015.022%2C0%2C.029.015.029.044v.925a.365.365%2C0%2C0%2C0%2C.386.364.344.344%2C0%2C0%2C0%2C.372-.342c0-.3-.007-.634-.007-.94a.027.027%2C0%2C0%2C1%2C.029-.029c.342%2C0%2C.67.007.962.007h.007a.314.314%2C0%2C0%2C0%2C.328-.313.309.309%2C0%2C0%2C0-.328-.306h-.007c-.2.007-.561.007-.955.007-.029%2C0-.044-.007-.051-.029a.394.394%2C0%2C0%2C1%2C.087-.277l.124-.16c.022-.044.014-.029.073-.044l.721.007h.007a.3.3%2C0%2C0%2C0%2C.313-.306.291.291%2C0%2C0%2C0-.313-.3h-.306c-.022%2C0-.029%2C0-.029-.007s.007-.014.015-.022c.962-1.457.962-1.465.962-1.581%22%20transform%3D%22translate(-17939.838%207476.528)%22%20fill%3D%22%238f9e5e%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.mf .tags li {
  border-color: #8a9f55;
  color: #8a9f55;
}
.instructor .serve_seminar .school_list > li.mf .strong {
  color: #8a9f55;
}
.instructor .serve_seminar .school_list > li.mf .btn_entry {
  background-color: #8a9f55;
}
/* kyouyou */
.instructor .serve_seminar .school_list > li.kyouyou {
  border-color: #7e678d;
}
.instructor .serve_seminar .school_list > li.kyouyou h5 {
  background: rgba(138, 159, 85, 0.1);
  color: #7e678d;
}
.instructor .serve_seminar .school_list > li.kyouyou h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(17899%20-7520)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%237e678d%22%2F%3E%3Cpath%20d%3D%22M11.734%2C0c.335.309.382.679-.044.929L7.626.949a1.058%2C1.058%2C0%2C0%2C0-.853.842v8.95a19.319%2C19.319%2C0%2C0%2C1%2C5.09.218c.322.064%2C1.523.475%2C1.664.469.121-.005.3-.2.427-.258a6.081%2C6.081%2C0%2C0%2C1%2C1.958-.115%2C1.371%2C1.371%2C0%2C0%2C1%2C.555%2C2.5c-.439.291-.733.133-1.187.258v1.767l.076.05a1.431%2C1.431%2C0%2C0%2C1%2C1.7%2C1.722%2C1.508%2C1.508%2C0%2C0%2C1-1.083.989%2C6.5%2C6.5%2C0%2C0%2C1-2.022-.116%2C4.171%2C4.171%2C0%2C0%2C1-.46-.325v1.884a2.611%2C2.611%2C0%2C0%2C1%2C2.169-.5%2C1.4%2C1.4%2C0%2C0%2C1%2C1.411%2C1.164c.124%2C1.155-.752%2C1.725-1.821%2C1.6v.942a1.413%2C1.413%2C0%2C1%2C1%2C.47%2C2.763%2C4.973%2C4.973%2C0%2C0%2C0-1.035.033c-.107.049-.409.319-.587.418a3.957%2C3.957%2C0%2C0%2C1-.733.3c-.02.027.126.23.126.281v1.6H27.341c.27%2C0%2C.618-.523.654-.791.227-1.673-.195-3.83%2C0-5.523a.473.473%2C0%2C1%2C1%2C.945%2C0c-.118%2C1.789.152%2C3.765%2C0%2C5.531a1.954%2C1.954%2C0%2C0%2C1-1.918%2C1.788H13.492a2.5%2C2.5%2C0%2C0%2C1-.028.569c-.329%2C1.548-4.222%2C2.168-5.528%2C2.2-.933.022-.8-.859-.314-.942a24.764%2C24.764%2C0%2C0%2C0%2C3.217-.489c.327-.1%2C1.71-.615%2C1.71-.99v-1.35a13.915%2C13.915%2C0%2C0%2C1-7.006%2C1.133%2C11.057%2C11.057%2C0%2C0%2C1-4.55-1.133v1.35c0%2C.161.557.527.711.608a13.391%2C13.391%2C0%2C0%2C0%2C4.111.914.492.492%2C0%2C0%2C1-.327.9%2C14.407%2C14.407%2C0%2C0%2C1-1.993-.274C2.387%2C31.674.171%2C31.1.049%2C29.742a16.944%2C16.944%2C0%2C0%2C1%2C.062-3.083C.3%2C25.982%2C1.3%2C25.44%2C1.934%2C25.244a4.541%2C4.541%2C0%2C0%2C1-.126-.59%2C22.444%2C22.444%2C0%2C0%2C1%2C0-2.454%2C2.027%2C2.027%2C0%2C0%2C1%2C.131-.621c-.762-.36-1.8-.788-1.889-1.76a19.92%2C19.92%2C0%2C0%2C1%2C0-2.829c.089-.827%2C1.064-1.339%2C1.748-1.611.071-.113-.026-1.916.017-2.275C2%2C11.582%2C4.593%2C11.065%2C5.823%2C10.86L5.838%2C1.8A1.984%2C1.984%2C0%2C0%2C1%2C7.4%2C0ZM7.325%2C11.638a10.394%2C10.394%2C0%2C0%2C0-4.05.974c-.718.473-.609.744.065%2C1.153%2C2.149%2C1.307%2C8.355%2C1.321%2C10.488-.022.8-.5.513-.864-.189-1.234-1.638-.864-4.483-.982-6.314-.872M15.91%2C12c-.3-.083-.944.061-1.288%2C0%2C.2.271.5.453.575.806a3.273%2C3.273%2C0%2C0%2C0%2C.648.009c.408-.075.346-.737.064-.815m-1.6%2C2.575a9.933%2C9.933%2C0%2C0%2C1-1.459.582%2C17.255%2C17.255%2C0%2C0%2C1-8.088.141%2C12.281%2C12.281%2C0%2C0%2C1-2.009-.723v1.288c0%2C.144.417.441.546.521%2C2.172%2C1.341%2C7.813%2C1.256%2C10.111.212.184-.084.9-.479.9-.671ZM10.6%2C18.215a17.088%2C17.088%2C0%2C0%2C1-6.328-.424%2C4.149%2C4.149%2C0%2C0%2C1-2.369-1.446c-.352.177-.8.365-.913.776-.02.386%2C1.04.836%2C1.367.953a16.01%2C16.01%2C0%2C0%2C0%2C7.376.372Zm3.643-.881c.5.026%2C2.138.388%2C1.87-.52-.088-.3-.833-.291-1.073-.22-.043.013-.644.5-.7.553s-.118.083-.095.187m-1.7%2C1.131a3.653%2C3.653%2C0%2C0%2C1-.864.424%2C16.369%2C16.369%2C0%2C0%2C1-9.829%2C0%2C3.651%2C3.651%2C0%2C0%2C1-.864-.424v1.35c0%2C.154.447.463.586.544%2C2.161%2C1.276%2C8.224%2C1.277%2C10.384%2C0%2C.139-.082.586-.39.586-.544Zm1.993%2C1.773a.5.5%2C0%2C0%2C0-.418.332c.2.1.55.471.733.517.416.107%2C1.564.1%2C1.24-.612-.156-.342-1.225-.3-1.554-.237m-1.885.813c-.112.015-.721.377-.926.458a16.867%2C16.867%2C0%2C0%2C1-7.934.525c-.253-.037-1.035-.342-1.045.04.078.322.51.576.791.716%2C2.259%2C1.127%2C7.356%2C1.1%2C9.676.145.34-.14%2C1.308-.574%2C1.028-1.051a3.221%2C3.221%2C0%2C0%2C0-1.59-.833m1.65%2C2.438a10.739%2C10.739%2C0%2C0%2C1-2.7.849%2C18.288%2C18.288%2C0%2C0%2C1-6.473-.062%2C8.233%2C8.233%2C0%2C0%2C1-2.384-.85v1.35c0%2C.121.405.409.523.482%2C2.176%2C1.343%2C7.811%2C1.29%2C10.113.232a2.521%2C2.521%2C0%2C0%2C0%2C.92-.651Zm.942.439.059.852c1.134.214%2C1.111-1.092-.059-.852M2.55%2C26.013C2.222%2C26.053%2C1%2C26.647%2C1%2C27.039c0%2C.481%2C1.319.935%2C1.706%2C1.053%2C2.091.634%2C7.857.848%2C9.562-.646.2-.175.51-.629.067-.63-.287%2C0-.918.2-1.27.244a16.521%2C16.521%2C0%2C0%2C1-7.619-.65c-.243-.1-.69-.422-.895-.4%22%20transform%3D%22translate(-17887.498%207529.919)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M171.88%2C0a2.022%2C2.022%2C0%2C0%2C1%2C1.507%2C1.665l0%2C18.216a.474.474%2C0%2C1%2C1-.946.061L172.4%2C1.581a.942.942%2C0%2C0%2C0-.866-.641h-13.5c-.474-.2-.447-.627-.1-.941Z%22%20transform%3D%22translate(-18031.943%207529.92)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M102.107%2C40.582H119.1a.483.483%2C0%2C0%2C1%2C.36.456l-.015%2C4.7a.626.626%2C0%2C0%2C1-.644.424l-16.619-.029c-.183-.048-.374-.166-.376-.378.136-1.508-.171-3.3%2C0-4.778.024-.2.086-.341.3-.394m16.41.929H102.753v3.706h15.67l.094-.094Z%22%20transform%3D%22translate(-17980.715%207492.743)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M212.29%2C229.423c1.172-.161%2C2.774-.029%2C2.655%2C1.525-.1%2C1.322-1.61%2C1.314-2.611%2C1.224a1.381%2C1.381%2C0%2C0%2C1-.044-2.75m.124.941a.44.44%2C0%2C0%2C0-.128.851%2C8.205%2C8.205%2C0%2C0%2C0%2C1.365.009.435.435%2C0%2C0%2C0%2C.039-.847%2C5.238%2C5.238%2C0%2C0%2C0-1.276-.013%22%20transform%3D%22translate(-18080.848%207319.795)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M212.181%2C273.686a5.323%2C5.323%2C0%2C0%2C1%2C2.041.128%2C1.38%2C1.38%2C0%2C0%2C1-.059%2C2.482%2C4.211%2C4.211%2C0%2C0%2C1-2.294%2C0%2C1.384%2C1.384%2C0%2C0%2C1%2C.313-2.607m.124.94a.431.431%2C0%2C0%2C0%2C.029.825%2C5.029%2C5.029%2C0%2C0%2C0%2C1.274.038c.486-.077.565-.718.164-.848a7.579%2C7.579%2C0%2C0%2C0-1.467-.015%22%20transform%3D%22translate(-18080.865%207279.236)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M266.186%2C229.441c1.165-.16%2C2.775-.016%2C2.655%2C1.525-.1%2C1.322-1.608%2C1.314-2.611%2C1.224a1.381%2C1.381%2C0%2C0%2C1-.044-2.75m.06.939a.446.446%2C0%2C0%2C0-.063.853%2C8.2%2C8.2%2C0%2C0%2C0%2C1.365.009.435.435%2C0%2C0%2C0%2C.039-.847%2C5.95%2C5.95%2C0%2C0%2C0-1.34-.015%22%20transform%3D%22translate(-18130.221%207319.776)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M266.076%2C273.686a5.323%2C5.323%2C0%2C0%2C1%2C2.041.128%2C1.388%2C1.388%2C0%2C0%2C1-.013%2C2.465%2C4.169%2C4.169%2C0%2C0%2C1-2.34.014%2C1.384%2C1.384%2C0%2C0%2C1%2C.313-2.607m.124.94a.431.431%2C0%2C0%2C0%2C.029.825%2C5.029%2C5.029%2C0%2C0%2C0%2C1.274.038c.486-.077.565-.718.164-.848a7.58%2C7.58%2C0%2C0%2C0-1.467-.015%22%20transform%3D%22translate(-18130.238%207279.236)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M266.106%2C131.367a4.338%2C4.338%2C0%2C0%2C1%2C2.308.236%2C1.385%2C1.385%2C0%2C0%2C1-.563%2C2.451%2C10.439%2C10.439%2C0%2C0%2C1-1.692-.007%2C1.378%2C1.378%2C0%2C0%2C1-.053-2.68m.187.941a.412.412%2C0%2C0%2C0-.049.775%2C5.638%2C5.638%2C0%2C0%2C0%2C1.609-.031.446.446%2C0%2C0%2C0-.08-.744%2C8.716%2C8.716%2C0%2C0%2C0-1.481%2C0%22%20transform%3D%22translate(-18130.33%207409.622)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M212.235%2C131.367a4.338%2C4.338%2C0%2C0%2C1%2C2.308.236%2C1.385%2C1.385%2C0%2C0%2C1-.563%2C2.451%2C10.438%2C10.438%2C0%2C0%2C1-1.692-.007%2C1.378%2C1.378%2C0%2C0%2C1-.053-2.68m.187.941a.412.412%2C0%2C0%2C0-.049.775%2C5.638%2C5.638%2C0%2C0%2C0%2C1.609-.031.446.446%2C0%2C0%2C0-.08-.744%2C8.716%2C8.716%2C0%2C0%2C0-1.481%2C0%22%20transform%3D%22translate(-18080.982%207409.622)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M212.137%2C186.01a4.338%2C4.338%2C0%2C0%2C1%2C2.308.236%2C1.385%2C1.385%2C0%2C0%2C1-.563%2C2.451%2C6.5%2C6.5%2C0%2C0%2C1-2.022-.116%2C1.379%2C1.379%2C0%2C0%2C1%2C.277-2.571m.187.94a.412.412%2C0%2C0%2C0-.049.775%2C5.639%2C5.639%2C0%2C0%2C0%2C1.609-.031.446.446%2C0%2C0%2C0-.08-.744%2C8.721%2C8.721%2C0%2C0%2C0-1.481%2C0%22%20transform%3D%22translate(-18080.885%207359.564)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M266.106%2C186.079a9.518%2C9.518%2C0%2C0%2C1%2C1.738-.01%2C1.378%2C1.378%2C0%2C0%2C1%2C.5%2C2.5%2C4.872%2C4.872%2C0%2C0%2C1-2.183.193%2C1.378%2C1.378%2C0%2C0%2C1-.053-2.68m.187.94a.412.412%2C0%2C0%2C0-.049.775%2C5.639%2C5.639%2C0%2C0%2C0%2C1.609-.031.446.446%2C0%2C0%2C0-.08-.744%2C8.721%2C8.721%2C0%2C0%2C0-1.481%2C0%22%20transform%3D%22translate(-18130.33%207359.495)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M29.276%2C94.059a.936.936%2C0%2C0%2C1-.39.143%2C10.178%2C10.178%2C0%2C0%2C1-1.631-.005.472.472%2C0%2C0%2C1-.053-.925%2C11.019%2C11.019%2C0%2C0%2C1%2C1.8-.009.5.5%2C0%2C0%2C1%2C.27.8%22%20transform%3D%22translate(-17912.092%207444.512)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M27.3%2C110.52a9.481%2C9.481%2C0%2C0%2C1%2C1.73%2C0%2C.476.476%2C0%2C0%2C1%2C.063.915%2C11.506%2C11.506%2C0%2C0%2C1-1.857%2C0%2C.465.465%2C0%2C0%2C1%2C.064-.914%22%20transform%3D%22translate(-17912.125%207428.71)%22%20fill%3D%22%237a688a%22%2F%3E%3Cpath%20d%3D%22M46.514%2C74.133c.56-.1.762.8.222.92a.473.473%2C0%2C1%2C1-.222-.92%22%20transform%3D%22translate(-17929.77%207462.014)%22%20fill%3D%22%237a688a%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.kyouyou .tags li {
  border-color: #7e678d;
  color: #7e678d;
}
.instructor .serve_seminar .school_list > li.kyouyou .strong {
  color: #7e678d;
}
.instructor .serve_seminar .school_list > li.kyouyou .btn_entry {
  background-color: #7e678d;
}
/* rm */
.instructor .serve_seminar .school_list > li.rm {
  border-color: #e16f4e;
}
.instructor .serve_seminar .school_list > li.rm h5 {
  background: rgba(225, 111, 78, 0.1);
  color: #e16f4e;
}
.instructor .serve_seminar .school_list > li.rm h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(17899%20-7520)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(-17899%207520)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M5.835%2C94.148c-1.28.985-2.185%2C2.924-4.07%2C2.645l-.051%2C14.362A.644.644%2C0%2C0%2C1%2C.475%2C111l0-14.791c-.471-1.08-.8-1.976.03-3.016%2C1.565-1.385%2C2.969-3.2%2C4.543-4.545a3.084%2C3.084%2C0%2C0%2C1%2C1.763-.815c2.336-.2%2C4.961.156%2C7.327%2C0%2C.352-.054.914.394%2C1.16.407.127.007.821-.372%2C1.146-.408a31.227%2C31.227%2C0%2C0%2C1%2C4.921.031%2C3.179%2C3.179%2C0%2C0%2C1%2C1.422.681c1.679%2C1.377%2C3.288%2C3.445%2C4.871%2C4.964a2.461%2C2.461%2C0%2C0%2C1-.126%2C2.5l0%2C14.723c.006.99-1.242%2C1.162-1.359.133V96.793c-1.485.257-2.287-.936-3.222-1.831l1.985%2C7.714a1.306%2C1.306%2C0%2C0%2C1-1.1%2C1.578c-.324.035-1.6-.1-1.735.113a.754.754%2C0%2C0%2C0-.065.325c-.126%2C1.49.151%2C3.206%2C0%2C4.682-.2%2C1.953-2.369%2C2.1-3.9%2C2a2.48%2C2.48%2C0%2C0%2C1-2.541-2.343v-4.714c-.067.022-.147-.068-.17-.068h-1.39v4.511a2.918%2C2.918%2C0%2C0%2C1-1.745%2C2.121%2C16.723%2C16.723%2C0%2C0%2C1-3.989.153%2C2.774%2C2.774%2C0%2C0%2C1-2.473-2.478ZM14.042%2C99.3a1.22%2C1.22%2C0%2C0%2C0%2C1.291-1.184c.215-2.411-.16-5.147-.01-7.592a1.609%2C1.609%2C0%2C0%2C0-1.448-1.4c-2.262-.2-4.912.1-7.2.067a2.912%2C2.912%2C0%2C0%2C0-.777.444C4.379%2C90.863%2C2.959%2C92.772%2C1.48%2C94.1a.879.879%2C0%2C0%2C0%2C1.3%2C1.169c1.141-.878%2C2.177-2.4%2C3.338-3.313.586-.344%2C1.058.027%2C1.072.663l.05%2C16.228a1.544%2C1.544%2C0%2C0%2C0%2C1.066.9h.984v-5.8c0-.173.441-.5.645-.5.187%2C0%2C.644.238.644.431v5.867h.984a1.506%2C1.506%2C0%2C0%2C0%2C1.186-1.391l0-12.747a.655.655%2C0%2C0%2C1%2C1.078-.34%2C2.069%2C2.069%2C0%2C0%2C1%2C.207.336Zm9.631%2C3.663L20.991%2C92.52c.38-.75.848-.5%2C1.362-.069.954.8%2C1.854%2C2.082%2C2.812%2C2.818a.891.891%2C0%2C1%2C0%2C1.19-1.326c-1.472-1.266-2.8-3.058-4.273-4.273a2.54%2C2.54%2C0%2C0%2C0-.967-.525%2C28.708%2C28.708%2C0%2C0%2C0-4.327-.019c-.116.01-.476.051-.5.177a3.225%2C3.225%2C0%2C0%2C1%2C.339%2C1.078c.225%2C2.607-.158%2C5.55-.02%2C8.192a2.533%2C2.533%2C0%2C0%2C1-2.56%2C2.019v2.374Zm-2.917%2C1.289h-3.8v5.053c0%2C.363.841.885%2C1.221.712V107.2c0-.259.43-.593.711-.581.247.011.646.352.646.581v2.815c.439.154%2C1.221-.332%2C1.221-.78Z%22%20transform%3D%22translate(-17886.977%207450.315)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M72.089%2C5.907c-3.316-3.316%2C2.019-8.241%2C5.03-4.657%2C2.842%2C3.383-1.991%2C7.7-5.03%2C4.657m1.993-4.5c-2.479.388-2.1%2C4.561.78%2C4.171a2.122%2C2.122%2C0%2C1%2C0-.78-4.171%22%20transform%3D%22translate(-17951.578%207530.122)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M173.927.477c4.456-.28%2C4.858%2C6.418.657%2C6.829-4.8.47-5.153-6.547-.657-6.829m-.206%2C1.354c-2.538.371-2.086%2C4.589.779%2C4.17a2.121%2C2.121%2C0%2C0%2C0-.779-4.17%22%20transform%3D%22translate(-18042.262%207529.695)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M102.965%2C172.5a.683.683%2C0%2C0%2C1%2C.308%2C1.328.683.683%2C0%2C1%2C1-.308-1.328%22%20transform%3D%22translate(-17980.123%207373.263)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M103.392%2C117.708a.686.686%2C0%2C1%2C1-.971.971c-.6-.608.363-1.571.971-.971%22%20transform%3D%22translate(-17979.945%207423.251)%22%20fill%3D%22%23d47556%22%2F%3E%3Cpath%20d%3D%22M103.392%2C146.116c-.608.6-1.571-.363-.971-.971a.686.686%2C0%2C1%2C1%2C.971.971%22%20transform%3D%22translate(-17979.943%207398.325)%22%20fill%3D%22%23d47556%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.rm .tags li {
  border-color: #e16f4e;
  color: #e16f4e;
}
.instructor .serve_seminar .school_list > li.rm .strong {
  color: #e16f4e;
}
.instructor .serve_seminar .school_list > li.rm .btn_entry {
  background-color: #e16f4e;
}
/* fx */
.instructor .serve_seminar .school_list > li.fx {
  border-color: #c36380;
}
.instructor .serve_seminar .school_list > li.fx h5 {
  background: rgba(225, 111, 78, 0.1);
  color: #c36380;
}
.instructor .serve_seminar .school_list > li.fx h5 span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2252%22%20viewBox%3D%220%200%2052%2052%22%3E%3Cg%20transform%3D%22translate(-1082%20-956)%22%3E%3Cpath%20d%3D%22M26%2C0A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(1082%20956)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M26%2C1a25.007%2C25.007%2C0%2C0%2C0-9.731%2C48.036A25.007%2C25.007%2C0%2C0%2C0%2C35.731%2C2.964%2C24.843%2C24.843%2C0%2C0%2C0%2C26%2C1m0-1A26%2C26%2C0%2C1%2C1%2C0%2C26%2C26%2C26%2C0%2C0%2C1%2C26%2C0Z%22%20transform%3D%22translate(1082%20956)%22%20fill%3D%22%23b05973%22%2F%3E%3Cpath%20d%3D%22M83.493%2C13.639a5.607%2C5.607%2C0%2C1%2C0-5.607%2C5.607%2C5.615%2C5.615%2C0%2C0%2C0%2C5.607-5.607m-10.195%2C0a4.588%2C4.588%2C0%2C1%2C1%2C4.588%2C4.588A4.593%2C4.593%2C0%2C0%2C1%2C73.3%2C13.639%22%20transform%3D%22translate(1038.071%20960.007)%22%20fill%3D%22%23c36380%22%2F%3E%3Cpath%20d%3D%22M31.6%2C7.647a7.646%2C7.646%2C0%2C1%2C0-10.4%2C7.124L20.179%2C15.8h-4.1l-3.568%2C4.078H6.4L.134%2C26.673l.752.695L6.85%2C20.9h6.123l3.568-4.078H20.6l1.714-1.714a7.684%2C7.684%2C0%2C0%2C0%2C1.446.172L21.2%2C17.842H16.567L13.508%2C21.92H7.417L0%2C30.394v1.211H29.565V12.827A7.6%2C7.6%2C0%2C0%2C0%2C31.6%2C7.647m-14.273%2C0a6.627%2C6.627%2C0%2C1%2C1%2C6.627%2C6.627%2C6.638%2C6.638%2C0%2C0%2C1-6.627-6.627m8.156%2C7.493V30.585H23.448V17.033l1.867-1.867c.057-.013.115-.013.172-.025m-3.867%2C3.721.809-.809V30.585H20.39V18.861ZM7.136%2C30.585H5.1V26.119l2.039-2.332Zm1.02-7.646h2.039v7.646H8.156Zm3.058%2C0h2.039v7.646H11.214Zm3.059-.338%2C2.039-2.721v10.7H14.273Zm3.058-3.74H19.37V30.585H17.331ZM4.078%2C27.285v3.3H1.185Zm22.429%2C3.3V14.847a7.666%2C7.666%2C0%2C0%2C0%2C2.039-1.1V30.585Z%22%20transform%3D%22translate(1092%20965.999)%22%20fill%3D%22%23c36380%22%2F%3E%3Cpath%20d%3D%22M9.051%2C44.327H10.07V42.288h1.02V36.171H10.07V34.132H9.051v2.039H8.031v6.117h1.02Zm0-7.136h1.02v4.078H9.051Z%22%20transform%3D%22translate(1086.008%20940.534)%22%20fill%3D%22%23c36380%22%2F%3E%3Cpath%20d%3D%22M25.113%2C37.284h1.019V35.245h1.02v-5.1h-1.02V28.109H25.113v2.039h-1.02v5.1h1.02Zm0-6.117h1.02v3.059h-1.02Z%22%20transform%3D%22translate(1074.023%20945.027)%22%20fill%3D%22%23c36380%22%2F%3E%3Cpath%20d%3D%22M41.175%2C26.226h1.019V24.187h1.02V20.109h-1.02V18.07H41.175v2.039h-1.02v4.078h1.02Zm0-5.1h1.02v2.039h-1.02Z%22%20transform%3D%22translate(1062.04%20952.518)%22%20fill%3D%22%23c36380%22%2F%3E%3Cpath%20d%3D%22M91.055%2C22.567a.361.361%2C0%2C0%2C0-.363-.325.289.289%2C0%2C0%2C0-.242.146c-.223.4-.631%2C1.051-.969%2C1.542-.013.019-.013.013-.051.019h-.242c-.038-.006-.045%2C0-.057-.019-.382-.567-.765-1.128-1-1.529a.3.3%2C0%2C0%2C0-.261-.166.332.332%2C0%2C0%2C0-.332.325.289.289%2C0%2C0%2C0%2C.064.191c.809%2C1.191.809%2C1.2.809%2C1.2s0%2C.006-.051.006c-.172%2C0-.306-.006-.4-.006h-.013a.254.254%2C0%2C0%2C0-.261.261.259.259%2C0%2C0%2C0%2C.287.268c.2-.006.452-.013.746-.013.025%2C0%2C.063.013.21.261a.24.24%2C0%2C0%2C1%2C.038.166c-.006.026-.006.038-.044.038-.414%2C0-.79%2C0-.962-.006h-.013a.271.271%2C0%2C1%2C0%2C.025.542c.242-.013.586-.013.962-.013.019%2C0%2C.025.013.025.038V26.3a.319.319%2C0%2C0%2C0%2C.338.319.3.3%2C0%2C0%2C0%2C.325-.3c0-.261-.006-.554-.006-.822a.023.023%2C0%2C0%2C1%2C.026-.026c.3%2C0%2C.586.006.841.006h.006a.275.275%2C0%2C0%2C0%2C.287-.274.27.27%2C0%2C0%2C0-.287-.268h-.006c-.178.006-.49.006-.835.006-.026%2C0-.038-.006-.045-.025a.345.345%2C0%2C0%2C1%2C.076-.242l.108-.14c.019-.038.013-.025.064-.038l.631.006h.006a.262.262%2C0%2C0%2C0%2C.274-.268.254.254%2C0%2C0%2C0-.274-.261h-.268c-.019%2C0-.025%2C0-.025-.006s.006-.013.013-.019c.841-1.274.841-1.281.841-1.383%22%20transform%3D%22translate(1026.687%20949.409)%22%20fill%3D%22%23c36380%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.instructor .serve_seminar .school_list > li.fx .tags li {
  border-color: #c36380;
  color: #c36380;
}
.instructor .serve_seminar .school_list > li.fx .strong {
  color: #c36380;
}
.instructor .serve_seminar .school_list > li.fx .btn_entry {
  background-color: #c36380;
}
@media screen and (min-width: 700px) {
  .instructor .serve_seminar .school_list {
    display: inline-flex;
    margin: 0 auto;
  }
  .instructor .serve_seminar .school_list > li {
    width: 48.5%;
    max-width: 340px;
  }
  .instructor .serve_seminar .school_list.col1 > li {
    width: auto;
  }
  .instructor .serve_seminar .school_list > li + li {
    margin-left: 30px;
  }
}
@media screen and (max-width: 699px) {
  .instructor .serve_seminar .school_list {
    max-width: 340px;
    margin: 0 auto;
  }
  .instructor .serve_seminar .school_list > li + li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .instructor .serve_seminar .school_list .tags li {
    font-size: 13px;
  }
}

/* ------------------------------
consul
------------------------------ */
.consul {
  margin-top: 150px;
  background-image: url(/open_campus/img/index/bg_deco_consul_01.png), url(/open_campus/img/index/bg_deco_consul_02.png), linear-gradient(to bottom, rgba(225,111,78,1) 0%,rgba(225,111,78,0.4) 100%);
  background-repeat: no-repeat;
  background-position: top 93px left 5%, bottom 24px right 5%, left top;
  border-radius: 35px 0 0 0;
}
.consul .inner {
  width: 92%;
  max-width: 1010px;
  margin: 0 auto;
  padding: 60px 0 70px;
}
.consul h2 {
  margin-bottom: 1em;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.consul h2 span {
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  padding-left: 120px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2286%22%20height%3D%2286%22%20viewBox%3D%220%200%2086%2086%22%3E%3Cg%20transform%3D%22translate(-3767%20-2508)%22%3E%3Cpath%20d%3D%22M43%2C0A43%2C43%2C0%2C1%2C1%2C0%2C43%2C43%2C43%2C0%2C0%2C1%2C43%2C0Z%22%20transform%3D%22translate(3767%202508)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M71.368-511.741a10.512%2C10.512%2C0%2C0%2C0-8.3%2C7.751c-.219.772-.219%2C1.022-.261%2C7.188l-.031%2C6.374-3.359.042c-3.213.042-3.4.063-4.361.313a10.693%2C10.693%2C0%2C0%2C0-7.292%2C6.886%2C9.333%2C9.333%2C0%2C0%2C0-.49%2C3.808%2C9.974%2C9.974%2C0%2C0%2C0%2C3.151%2C7.084l.949.939-.657.386a13.886%2C13.886%2C0%2C0%2C0-6.364%2C9.546c-.2%2C1.3-.146%2C1.711.282%2C2.222.5.626.835.72%2C2.389.72%2C1.325%2C0%2C1.388-.01%2C1.627-.261a.683.683%2C0%2C0%2C0%2C.063-1c-.188-.229-.292-.25-1.544-.3l-1.335-.052.031-.647a11.681%2C11.681%2C0%2C0%2C1%2C1.6-4.747%2C12.128%2C12.128%2C0%2C0%2C1%2C4.6-4.423l.918-.469.96.365a8.587%2C8.587%2C0%2C0%2C0%2C3.578.636%2C9.321%2C9.321%2C0%2C0%2C0%2C3.829-.7l.8-.3.657.334a13.2%2C13.2%2C0%2C0%2C1%2C4.455%2C3.944%2C13.935%2C13.935%2C0%2C0%2C1%2C1.617%2C3.474%2C8.541%2C8.541%2C0%2C0%2C1%2C.407%2C2.452c-.042.1-1.961.136-9.108.136-8.993%2C0-9.045%2C0-9.327.219a.7.7%2C0%2C0%2C0%2C0%2C1.127c.282.219.323.219%2C9.421.219%2C8.69%2C0%2C9.16-.01%2C9.567-.2a1.848%2C1.848%2C0%2C0%2C0%2C.657-.522c.4-.553.449-.939.282-2.066a13.708%2C13.708%2C0%2C0%2C0-6.9-9.994c-.156-.094-.094-.177.511-.709a11.032%2C11.032%2C0%2C0%2C0%2C3.38-6.28l.073-.626%2C8.659-.052c7.783-.042%2C8.69-.073%2C8.972-.219a1.887%2C1.887%2C0%2C0%2C0%2C.939-2.024A14.036%2C14.036%2C0%2C0%2C0%2C84-487.61l-.563-.8v-6.927a70.866%2C70.866%2C0%2C0%2C0-.156-7.845%2C10.314%2C10.314%2C0%2C0%2C0-2.7-5.435c-.532-.553-.7-.668-.981-.668a.769.769%2C0%2C0%2C0-.48%2C1.367%2C10.053%2C10.053%2C0%2C0%2C1%2C2.41%2C4.006l.292.939v16.171l-.23.428A3.072%2C3.072%2C0%2C0%2C1%2C80.111-485a2.807%2C2.807%2C0%2C0%2C1-3.2-.73c-.574-.689-.7-1.148-.751-2.859l-.052-1.575.626-.376a8.777%2C8.777%2C0%2C0%2C0%2C2.4-2.483%2C9.913%2C9.913%2C0%2C0%2C0%2C.626-1.4l.292-.835V-501.1l-.3-.928A7.219%2C7.219%2C0%2C0%2C0%2C76.2-506.17a2.218%2C2.218%2C0%2C0%2C0-1.586-.386A2.748%2C2.748%2C0%2C0%2C0%2C72-504.365a5.2%2C5.2%2C0%2C0%2C1-3.683%2C3.589%2C2.606%2C2.606%2C0%2C0%2C0-1.367.762c-.751.751-.866%2C1.231-.814%2C3.182a7.006%2C7.006%2C0%2C0%2C0%2C1.033%2C3.954%2C4.438%2C4.438%2C0%2C0%2C1%2C.386.741c-.021.021-.355.2-.762.407a15.08%2C15.08%2C0%2C0%2C0-1.5.97c-.459.344-.814.532-.866.48s-.073-2.754-.052-6.447c.031-7.094%2C0-6.75.814-8.482a8.835%2C8.835%2C0%2C0%2C1%2C5.686-4.83%2C7%2C7%2C0%2C0%2C1%2C2.233-.229%2C7.169%2C7.169%2C0%2C0%2C1%2C3.359.626c.73.3%2C1.064.313%2C1.346.031a.677.677%2C0%2C0%2C0%2C.177-.595c-.042-.48-.4-.73-1.554-1.116A10.48%2C10.48%2C0%2C0%2C0%2C71.368-511.741Zm4.246%2C7.011a5.883%2C5.883%2C0%2C0%2C1%2C2.326%2C2.431c.522%2C1.106.595%2C1.617.595%2C4.048%2C0%2C3.224-.292%2C4.194-1.68%2C5.581a5.252%2C5.252%2C0%2C0%2C1-7.449.073%2C5.717%2C5.717%2C0%2C0%2C1-1.721-4.569c0-1.628.115-1.815%2C1.408-2.212a7.162%2C7.162%2C0%2C0%2C0%2C4.476-4.663C73.893-505.022%2C74.571-505.252%2C75.615-504.73Zm-6.2%2C14.136.553.344.01.616a4.467%2C4.467%2C0%2C0%2C0%2C.563%2C2.441%2C3.131%2C3.131%2C0%2C0%2C0%2C4.131%2C1.022c.115-.042.25.115.5.605a4.507%2C4.507%2C0%2C0%2C0%2C2.087%2C1.972%2C2.992%2C2.992%2C0%2C0%2C0%2C1.794.334%2C2.954%2C2.954%2C0%2C0%2C0%2C1.826-.355%2C4.712%2C4.712%2C0%2C0%2C0%2C2-1.878l.313-.543.376.72a12.254%2C12.254%2C0%2C0%2C1%2C.689%2C1.648%2C11.2%2C11.2%2C0%2C0%2C1%2C.595%2C3.025c-.052.125-1.346.146-8.513.146h-8.45v-2.9a31.512%2C31.512%2C0%2C0%2C0-.115-3.349%2C4.931%2C4.931%2C0%2C0%2C0-1.148-2.139l-.522-.574.48-.323a14.224%2C14.224%2C0%2C0%2C1%2C2.17-1.148A4.079%2C4.079%2C0%2C0%2C1%2C69.418-490.594Zm3.745%2C1.064a8.171%2C8.171%2C0%2C0%2C0%2C1.127-.073l.282-.073v.626c0%2C1.085-.511%2C1.669-1.461%2C1.669-.918%2C0-1.408-.542-1.534-1.669l-.063-.636.407.073A7.431%2C7.431%2C0%2C0%2C0%2C73.163-489.53Zm-8.513%2C1.054a3.183%2C3.183%2C0%2C0%2C1%2C1.481%2C1.711c.209.553.209.73.177%2C4.5l-.042%2C3.912-.292.939a8.711%2C8.711%2C0%2C0%2C1-13.27%2C4.987%2C10.928%2C10.928%2C0%2C0%2C1-2.692-2.921%2C10.541%2C10.541%2C0%2C0%2C1-.814-1.8%2C5.986%2C5.986%2C0%2C0%2C1-.334-2.712%2C5.689%2C5.689%2C0%2C0%2C1%2C.344-2.733%2C9.048%2C9.048%2C0%2C0%2C1%2C2.024-3.391%2C8.909%2C8.909%2C0%2C0%2C1%2C3.568-2.379c1.179-.407%2C1.857-.459%2C5.634-.438l3.651.021Z%22%20transform%3D%22translate(3743.67%203036.184)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M1.1-468.823a1.713%2C1.713%2C0%2C0%2C0-.9.918c-.177.386-.2.772-.2%2C5.06%2C0%2C5.227%2C0%2C5.206.793%2C5.8l.386.3%2C5.143.031%2C5.133.031.386.908c.678%2C1.575.845%2C1.857%2C1.231%2C2.045a1.253%2C1.253%2C0%2C0%2C0%2C1.335-.073c.282-.188.469-.5.939-1.534l.574-1.3%2C1.774-.052c1.711-.052%2C1.794-.063%2C2.2-.334.824-.542.814-.459.814-5.821v-4.747l-.261-.459a1.81%2C1.81%2C0%2C0%2C0-.72-.709l-.459-.24h-8.93C2.389-468.99%2C1.377-468.969%2C1.1-468.823Zm2.3%2C3.161-1.774%2C1.774-.031-1.638c-.01-.9%2C0-1.7.021-1.774.042-.1.469-.136%2C1.8-.136H5.164Zm15.68-1.648a75.011%2C75.011%2C0%2C0%2C1%2C0%2C8.93%2C6.245%2C6.245%2C0%2C0%2C1-1.93.125%2C6.74%2C6.74%2C0%2C0%2C0-2.1.146c-.219.115-.4.417-.793%2C1.356a5.643%2C5.643%2C0%2C0%2C1-.574%2C1.158%2C7.539%2C7.539%2C0%2C0%2C1-.532-1.116%2C6.2%2C6.2%2C0%2C0%2C0-.647-1.283c-.188-.2-.365-.209-5.54-.261l-5.342-.052-.031-1.669-.031-1.659%2C2.9-2.9%2C2.9-2.9h5.79A45.031%2C45.031%2C0%2C0%2C1%2C19.071-467.31Z%22%20transform%3D%22translate(3783.292%202997.772)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M68.2-418.781a.78.78%2C0%2C0%2C0-.063%2C1.137c.2.2.344.209%2C4.423.209h4.225l.209-.271a.7.7%2C0%2C0%2C0-.042-1.033l-.25-.261H72.6C68.59-419%2C68.476-418.99%2C68.2-418.781Z%22%20transform%3D%22translate(3722.453%202952.989)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M319.216-174.763a4.5%2C4.5%2C0%2C0%2C0-.856%2C1.513l-.511%2C1.21h-1.523a12.158%2C12.158%2C0%2C0%2C0-1.94.115%2C2.146%2C2.146%2C0%2C0%2C0-1.294%2C1.294c-.156.553-.156%2C9.024%2C0%2C9.577a2.247%2C2.247%2C0%2C0%2C0%2C.417.751c.636.72.209.689%2C10.068.657l8.868-.031.428-.282a2.075%2C2.075%2C0%2C0%2C0%2C.647-.73c.209-.449.219-.584.219-5.122a48.1%2C48.1%2C0%2C0%2C0-.115-4.945%2C2.364%2C2.364%2C0%2C0%2C0-.981-1.054c-.271-.156-.918-.188-5.362-.229l-5.049-.052-.532-1.252c-.438-1-.605-1.294-.887-1.481A1.283%2C1.283%2C0%2C0%2C0%2C319.216-174.763Zm1.429%2C2.911a4.659%2C4.659%2C0%2C0%2C0%2C.689%2C1.273c.115.063%2C2.274.1%2C5.383.1a36.845%2C36.845%2C0%2C0%2C1%2C5.331.125%2C5.259%2C5.259%2C0%2C0%2C1%2C.125%2C1.742v1.627l-2.89%2C2.89-2.9%2C2.9h-5.811c-5.644%2C0-5.821-.01-5.926-.2a43.989%2C43.989%2C0%2C0%2C1-.1-4.486c0-3.745.021-4.3.167-4.434s.469-.167%2C2.076-.167c2.264%2C0%2C2.045.125%2C2.775-1.607a3.809%2C3.809%2C0%2C0%2C1%2C.522-1.022C320.114-173.062%2C320.364-172.5%2C320.646-171.852Zm11.413%2C10.516c-.094.115-.5.146-1.8.146h-1.68l1.774-1.774%2C1.774-1.774.031%2C1.627A5.465%2C5.465%2C0%2C0%2C1%2C332.059-161.336Z%22%20transform%3D%22translate(3502.969%202734.51)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M359.2-91.791a.922.922%2C0%2C0%2C0%2C.01%2C1.1.922.922%2C0%2C0%2C0%2C1.1-.01.922.922%2C0%2C0%2C0-.01-1.1A.922.922%2C0%2C0%2C0%2C359.2-91.791Z%22%20transform%3D%22translate(3461.724%202660.082)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M393.2-91.791a.922.922%2C0%2C0%2C0%2C.01%2C1.1.922.922%2C0%2C0%2C0%2C1.1-.01.922.922%2C0%2C0%2C0-.01-1.1A.922.922%2C0%2C0%2C0%2C393.2-91.791Z%22%20transform%3D%22translate(3431.271%202660.082)%22%20fill%3D%22%23e16f4e%22%2F%3E%3Cpath%20d%3D%22M427.2-91.791a.922.922%2C0%2C0%2C0%2C.01%2C1.1.922.922%2C0%2C0%2C0%2C1.1-.01.922.922%2C0%2C0%2C0-.01-1.1A.922.922%2C0%2C0%2C0%2C427.2-91.791Z%22%20transform%3D%22translate(3400.818%202660.082)%22%20fill%3D%22%23e16f4e%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: left center;
  text-align: left;
}
.consul .consul_box {
  padding: 35px 6% 27px;
  background: #fff;
  border-radius: 10px;
}
.consul .txt p {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.consul .txt .strong {
  margin-bottom: 0.6em;
  color: #e16f4e;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
.consul .btn_consul {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 2em auto 0;
  padding: 1em 30px 1em 1em;
  background: linear-gradient(to right, rgba(225,111,78,1) 0%,rgba(230,78,50,1) 75%);
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.consul .btn_consul::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: '';
}
.consul .btn_consul::after {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
.consul .btn_consul:hover {
  text-decoration: none;
  opacity: 0.8;
}
.consul .video img {
  border: 1px solid #e16f4e;
  border-radius: 10px;
}
.consul .video a:hover img {
  opacity: 0.8;
  border-width: 2px;
}
@media screen and (min-width: 600px) {
  .consul .consul_box {
    display: flex;
    justify-content: space-between;
  }
  .consul .consul_box .txt {
    width: 62%;
  }
  .consul .consul_box .video {
    width: 36.5%;
  }
}
@media screen and (max-width: 599px) {
  .consul {
    background-size: 120px auto, 120px auto, 100%;
    background-position: left top 60px, right bottom, left top;
  }
  .consul .inner {
    padding: 30px 0 50px;
  }
  .consul h2 {
    font-size: 24px;
  }
  .consul h2 span {
    min-height: 64px;
    padding-left: 80px;
    background-size: 64px;
  }
  .consul .consul_box {
    padding: 25px 6% 35px;
  }
  .consul .txt .strong {
    font-size: 18px;
  }
  .consul .btn_consul {
    margin-top: 1.5em;
  }
  .consul .video {
    margin-top: 35px;
    text-align: center;
  }
}

/* ------------------------------
fancybox
------------------------------ */
.fancybox-slide--iframe{
  width: 90%;
  left: 50%;
  transform: translateX(-50%) !important;
}
.fancybox-content {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 56.25%;
}
.fancybox-content iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
