<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/* ===============
base
=============== */
/* リセット */
#base{
  width: auto;
}
div#cont{
  margin: 0;
}
#bc_footer{
  margin-top: 1px;
}
@media screen and (max-width: 768px){
  body{
    width: auto !important;
  }
  #header{
    width: 95%;
  }
  #footer{
    width: 95%;
  }
  .to_page_top{
    bottom: 64px !important;
  }
}

/* ===============
lauout
=============== */
/* ラッパー */
.l_wrap{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
.l_wrap__main{
  order: 2;
  width: 920px;
}
.l_wrap__nav{
  order: 1;
  width: 230px;
}
@media screen and (max-width: 768px){
  .l_wrap{
    width: auto;
  }
  .l_wrap__main{
    width: auto;
  }
  .l_wrap__nav{
    display: none;
  }
}


/* ナビ */
.l_nav{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.l_nav__item{
  display: flex;
  width: 100%;
}
.l_nav__target{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.l_nav--main{
  border-left: 1px dotted;
  border-right: 1px dotted;
}
.l_nav--main .l_nav__item + .l_nav__item{
  border-left: 1px dotted;
}
@media screen and (max-width: 768px){
  .l_nav--main{
    flex-wrap: wrap;
    margin: -1px;
  }
  .l_nav--main .l_nav__item{
    width: 33.333%;
    border: 1px dotted;
  }
}

/* ===============
module
=============== */
/* ボタン */
.m_btn{
  display: flex;
  align-items: stretch;
  color: inherit;
}
.m_btn::before{
  content: "";
  display: block;
  width: 0;
}
.m_btn__target{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}
.m_btn--main{
  justify-content: center;
  font-size: 24px;
}
.m_btn--main::before{
  height: 4em;
}
.m_btn--main .m_btn__target{
  padding: 0 5em;
  border: 6px solid #5558A4;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  background: #5558A4;
  letter-spacing: .1em;
  transition: .3s color, .3s background;
}
.m_btn--main .m_btn__target:hover{
  background: #fff;
  color: #5558A4;
}
.m_btn--keyvisual{
  font-size: 13px;
}
.m_btn--keyvisual::before{
  height: 1.8em;
}
.m_btn--keyvisual &gt; .m_btn__target{
  width: 100%;
  border-radius: 8px;
  background: #5558A4;
  color: #fff;
  transition: .3s opacity;
}
.m_btn--keyvisual &gt; .m_btn__target:hover{
  opacity: .7;
}
@media screen and (max-width: 768px){
  .m_btn--keyvisual{
    width: 33.333%;
  }
  .m_btn--keyvisual::before{
    height: 2.5em;
  }
}
@media screen and (max-width: 599px){
  .m_btn--main{
    font-size: 16px;
  }
  .m_btn--main .m_btn__target{
    width: 100%;
    padding: 0;
  }
}

/* アイコン */
.m_hasIco{
  position: relative;
  display: block;
}
.m_hasIco::before{
  content: "";
  position: absolute;
  left: 0;
  display: block;
}
.m_hasIco--dot{
  padding-left: 1em;
}
.m_hasIco--dot::before{
  content: "・";
}
.m_hasIco--ast{
  padding-left: 1em;
}
.m_hasIco--ast::before{
  content: "※";
}
.m_hasIco--curcleTheme{
  padding-left: 1.2em;
}
.m_hasIco--curcleTheme::before{
  content: "●";
  color: #5558a4;
}
.m_hasIco--linkTheme{
  padding-left: 24px;
}
.m_hasIco--linkTheme::before{
  content: "\f0c1";
  top: -4px;
  color: #5558a4;
  font-size: 20px;
  font-family: "FontAwesome";
}
/* リンク */
.m_link{
  color: #052674;
  text-decoration: underline;
}
.m_link:hover{
  color: #052674;
  text-decoration: none;
}

/* ローカルナビのラッパー */
.m_localNavWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px #aaa;
}
.m_localNavWrap__logo{
  flex: 0 0 140px;
  text-align: center;
}
.m_localNavWrap__logoLink{
  color: inherit;
  text-decoration: none;
  transition: .3s opacity;
}
.m_localNavWrap__logoLink:hover{
  opacity: .7;
  color: inherit;
  text-decoration: none;
}
.m_localNavWrap__body{
  flex: 0 0 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.m_localNavWrap__nav{
  flex: 1 0 auto;
}
.m_localNavWrap__btnList{
  flex: 0 0 140px;
  padding: 0 8px;
}
.m_localNavWrap__btn + .m_localNavWrap__btn{
  margin-top: 6px;
}
@media screen and (max-width: 768px){
  .m_localNavWrap{
    position: relative;
    display: block;
  }
  .m_localNavWrap__body{
    display: block;
  }
  .m_localNavWrap__logo{
    display: none;
  }
  .m_localNavWrap__btnList{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, .7);
  }
  .m_localNavWrap__btn + .m_localNavWrap__btn{
    margin: 0 0 0 16px;
  }
}

/* ローカルナビ */
.m_localNav{
  height: 5em;
  text-align: center;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: .3s opacity;
}
.m_localNav:hover{
  opacity: .7;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .m_localNav{
    height: 4.5em;
  }
}
@media screen and (max-width: 599px){
  .m_localNav{
    font-size: 13px;
  }
}

/* FAQラッパー */
.m_faqWrap{}
.m_faqWrap__body{}
.m_faqWrap__item + .m_faqWrap__item{
  margin-top: 32px;
}
.m_faqWrap__body + .m_faqWrap__footer{
  margin-top: 40px;
}
.m_faqWrap__footerTtl{
  margin-bottom: 20px;
  color: #5558A5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.m_faqWrap__img{
  text-align: center;
}
.m_faqWrap__imgLink{
  display: inline-block;
  line-height: 1;
  color: inherit;
  transition: .3s opacity;
}
.m_faqWrap__imgLink:hover{
  opacity: .7;
}
.m_faqWrap__imgLink img{
  max-width: 100%;
  height: auto;
}
/* FAQ */
.m_faq{
  padding: 30px;
  border-radius: 12px;
  box-shadow: 2px 2px 12px #333;
  background: #fff;
}
.m_faq__item + .m_faq__item{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #808080; 
}
.m_faq__msg{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 55px;
  padding-left: 64px;
}
.m_faq__msg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 55px;
  height: 55px;
  margin: auto 0;
  background: no-repeat center center / contain;
}
.m_faq__msg--q{
  color: #8C8802;
}
.m_faq__msg--q::before{
  background-image: url("/resource/img/online/education-online-support-service_q.png");
}
.m_faq__msg--a::before{
  background-image: url("/resource/img/online/education-online-support-service_a.png");
}
@media screen and (max-width: 599px){
  .m_faq{
    padding: 16px;
  }
  .m_faq__msg{
    min-height: 40px;
    padding-left: 48px;
  }
  .m_faq__msg::before{
    bottom: auto;
    width: 40px;
    height: 40px;
  }
}
/* 脚注 */
.m_footnote{
  font-size: 12px;
  color: #4d4d4d;
}
</pre></body></html>