@charset "UTF-8";

/* ==========================
commmon
==========================*/

/* base
------------------------------------*/
article {
  width: 100%;
}

article * {
  box-sizing: border-box;
  line-height: 1.4;
}

article img {
  width: 100%;
  display: block;
}

article div.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

article ul.pankuzu {
  width: 980px;
  margin: 0 auto;
}

article div.content {
  padding-top: 50px;
  width: 100%;
}

div.content .inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
@media all and (max-width: 980px) {
  article ul.pankuzu {
    width: 94%;
    margin: 0 auto;
  }
  article div.wrapper div.content {
    width: 100%;
  }
  div.content .inner {
    width: 85%;
  }
}
@media all and (max-width: 480px) {
  article div.wrapper div.content {
    padding-top: 5px;
  }
  div.content .inner {
    width: 90%;
  }
}

/* 表示切替
------------------------------------*/
.pcc_none {
  display: none !important;
}
.spp_none {
  display: block !important;
}
@media all and (max-width: 767px) {
  .pcc_none {
    display: block !important;
  }

  .spp_none {
    display: none !important;
  }
}
/* utility
------------------------------------*/
.mb0 {
	margin-bottom: 0 !important;
}

/* color
------------------------------------*/

/*
main green :#52C8A7
main red #BB262C
*/
.f_gr {
  color: #52c8a7;
}
.f_or {
  color: #e69628;
}
.bg_gr {
  background-color: #52c8a7;
}
.bg_or {
  background-color: #e69628;
}

.psy {
  background-color: #5c8dcb;
}
.child {
  background-color: #daaaa1;
}

.hoiku {
  background-color: #a1c97f;
}
.syoku {
  background-color: #f0d05c;
}

.jyouhou {
  background-color: #37a3d7;
}
.manege {
  background-color: #c2baa2;
}
/* comporment
------------------------------------*/

/* btn <a class="c-btn"><span></span></a> */
.c-btn {
  display: block;
  border-radius: 10px;
  padding: 1em 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.c-btn span {
  position: relative;
}

.c-btn span::after {
  content: "〉〉〉";
  letter-spacing: -0.5em;
  display: inline-block;
  margin-left: 5px;
}

.border {
  background: repeating-linear-gradient(
    45deg,
    #64c39d 0,
    #64c39d 1.2px,
    #fff 0,
    #fff 6px
  );
  width: 100%;
}

/* section title  .sec_ttl>.head>span.en+span.ja*/
.sec_ttl {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.sec_ttl::before {
  content: "";
  display: block;
  background: repeating-linear-gradient(
    45deg,
    #64c39d 0,
    #64c39d 1.2px,
    #fff 0,
    #fff 6px
  );
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.sec_ttl .head {
  background-color: #fff;
  padding: 0 40px 5px;
  display: inline-block;
  margin: 0 auto;
  font-weight: bold;
}

.sec_ttl .head .en {
  display: block;
  color: #52c8a7;
  font-family: Bebas;
  font-size: 45px;
  letter-spacing: 0.05em;
}

.sec_ttl .head .ja {
  font-size: 24px;
}
@media all and (max-width: 767px) {
  .sec_ttl {
    margin-bottom: 30px;
  }
  .sec_ttl::before {
    height: 50%;
    top: 0;
  }
  .sec_ttl .head {
    padding: 0;
    width: 80%;
  }
  .sec_ttl .head .en {
    font-size: 28px;
    line-height: 1;
  }

  .sec_ttl .head .ja {
    font-size: 20px;
  }
}
/* dots  ul.dots>li*4*/
ul.dots {
  width: auto;
  margin: 0 auto;
}

ul.dots li {
  border-radius: 50%;
  background-color: #52c8a7;
  margin-bottom: 20px;
  text-align: center;
  margin: 0 auto 10px;
  opacity: 0;
  transition: 0.3s linear;
}
ul.dots.active li {
  opacity: 1;
}
ul.dots li:nth-of-type(1) {
  width: 23px;
  height: 23px;
}

ul.dots li:nth-of-type(2) {
  width: 20px;
  height: 20px;
  transition-delay: 0.2s;
}

ul.dots li:nth-of-type(3) {
  width: 17px;
  height: 17px;
  transition-delay: 0.4s;
}

ul.dots li:nth-of-type(4) {
  width: 14px;
  height: 14px;
  transition-delay: 0.6s;
}

/* animation
------------------------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(5%);
  transition: 0.5s ease-in-out;
}
.fadeIn.active {
  transform: translateY(0);
  opacity: 1;
}

@media all and (max-width: 768px) {
  .fadeIn {
    transform: translateY(0);
    opacity: 1;
  }
}

/* main vidual
------------------------------------*/

article div.header_img {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================
commmon end
==========================*/

/* ↓↓↓↓　pre　↓↓↓↓ */

/* ==========================
commmon end
==========================*/

/* video smn
------------------------------------*/
.video-smn {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.video-smn::before {
  content: "";
  display: block;
  background-color: rgba(112, 123, 137, 0.7);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.video-smn:hover:before {
  opacity: 1;
}
.video-smn .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.video-smn:hover .overlay {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

.video-smn .overlay p {
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  font-size: 24px;
}

.video-smn .overlay .c-btn {
  width: 90%;
  margin: 0 auto;
  max-width: 550px;
  font-size: 26px;
}

.video-smn .overlay .c-btn:hover {
  background-color: #52c8a7;
}

@media all and (max-width: 768px) {
  .video-smn:hover:before {
    opacity: 0;
  }
  .video-smn:hover .overlay {
    transform: translateY(20px);
    opacity: 0;
    z-index: -1;
  }
  .video-smn.active:hover:before {
    opacity: 1;
  }
  .video-smn.active:hover .overlay {
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
  }
}
@media all and (max-width: 767px) {
  .video-smn .overlay p {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .video-smn .overlay .c-btn {
    font-size: 13px;
  }
}

/* to form
------------------------------------*/
.to_form {
  width: 100%;
  background: url(../img/opencampus_web/pre/goods_bg.jpg) no-repeat 50% 50% /
    cover;
  padding: 50px 0;
  margin: 0 auto 110px;
}

div.content .to_form .inner {
  max-width: 1000px;
  background-color: #fff;
  padding: 50px 4%;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.to_form .inner .txt_block {
  width: 55%;
  align-self: stretch;
}
.to_form .inner figure {
  width: 45%;
}
.to_form .inner .txt_block p {
  font-size: 30px;
  font-weight: bold;
  width: 100%;
  align-self: stretch;
  margin-bottom: 20px;
}
.to_form .inner .txt_block p.emph {
  font-size: 26px;
  margin-bottom: 0;
}
.to_form .inner .txt_block p span {
  display: inline-block;
}

.to_form .inner .txt_block p .bigger {
  font-size: 36px;
}

.to_form .inner .c-btn {
  font-size: 26px;
  width: 98%;
  margin: 30px auto 0;
  transition: 0.3s ease-in-out;
}

.to_form .inner .c-btn:hover {
  background-color: #bb262c;
}
@media all and (max-width: 1024px) {
  .to_form .inner .txt_block {
    width: 60%;
  }
  .to_form .inner figure {
    width: 40%;
  }
  .to_form .inner .txt_block p {
    font-size: 3vw;
  }
  .to_form .inner .txt_block p.emph {
    font-size: 26px;
  }

  .to_form .inner .txt_block p .bigger {
    font-size: 3.6vw;
  }
}

@media all and (max-width: 768px) {
  .to_form {
    background: url(../img/opencampus_web/pre/goods_bg_sp.jpg) no-repeat 50% 50% /
      cover;
    margin: 0 auto 60px;
  }

  div.content .to_form .inner {
    background-color: transparent;
    padding: 0;
  }

  .to_form .inner .txt_block {
    width: 100%;
    background-color: #fff;
    padding: 50px 5%;
    border-radius: 10px;
  }
  .to_form .inner figure {
    width: 100%;
    margin: 30px auto;
  }
  .to_form .inner .txt_block p {
    text-align: center;
    font-size: 30px;
  }
  .to_form .inner .txt_block p.emph {
    text-align: center;
    font-size: 26px;
  }

  .to_form .inner .txt_block p .bigger {
    font-size: 36px;
  }

  .to_form .inner .c-btn {
  }

  .to_form .inner .c-btn:hover {
    background-color: #e69628;
  }
}

@media all and (max-width: 767px) {
  .to_form .inner .txt_block {
    padding: 22px 4.5%;
  }
  .to_form .inner .txt_block p {
    font-size: 18px;
  }
  .to_form .inner .txt_block p .f_gr {
    font-size: 21px;
  }
  .to_form .inner .txt_block p.emph {
    font-size: 20px;
  }

  .to_form .inner .txt_block p .bigger {
    font-size: 28px;
  }

  .to_form .inner .c-btn {
    font-size: 19px;
  }
  .to_form .inner figure {
    margin: 15px auto;
  }
}

/* introduction
------------------------------------*/

#intro {
  margin: 0 auto 80px;
}
#intro .inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

#intro .inner p.pos_a {
  width: 200px;
  position: absolute;
  bottom: 45%;
  left: -20%;
  margin: auto;
  z-index: 1;
}

@media all and (max-width: 1024px) {
  #intro .inner p.pos_a {
    width: 150px;
    left: -15%;
  }
}
@media all and (max-width: 768px) {
  #intro .inner p.pc_none {
    width: 100%;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    position: relative;
    margin: 0 auto 30px;
  }
  #intro .inner p.pc_none::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
  #intro .inner p.pc_none span {
    background-color: #fff;
    padding: 0 1em;
  }
}

@media all and (max-width: 767px) {
  #intro {
    margin: 0 auto 40px;
  }
  #intro .inner p.pc_none {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

/* campus area
------------------------------------*/

#campus_area {
  margin: 0 auto 120px;
}

#campus_area .inner {
  max-width: 800px;
}
#campus_area .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#campus_area .inner ul li {
  width: calc(97% / 2);
}
#campus_area .inner ul li .c-btn {
  width: 100%;
  background-color: #efeaef;
  color: #000;
  font-size: 20px;
}

#campus_area .inner ul li .c-btn:hover {
  background-color: #52c8a7;
  color: #fff;
}

@media all and (max-width: 768px) {
  #campus_area {
    padding-top: 50px;
  }
  #campus_area .inner ul li .c-btn:hover {
    background-color: #efeaef;
    color: #000;
  }
}

@media all and (max-width: 767px) {
  #campus_area {
    padding-top: 0;
    margin-bottom: 80px;
  }
  #campus_area .inner ul li .c-btn {
    font-size: 14px;
  }
}

/* faculty
------------------------------------*/

#faculty {
  margin: 0 auto 160px;
}
.video-yub{
  margin-bottom: 30px;
  overflow: hidden;
}
.video-yub-faculty{
  margin-bottom: 20px;
  overflow: hidden;
}
.video-yub-faculty ,
.video-yub {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.video-yub-faculty iframe ,
.video-yub iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

#faculty .sec_ttl_wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto 70px;
}

#faculty .sec_ttl_wrapper div {
  width: 100%;
}

#faculty .sec_ttl {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(82, 200, 167, 0.8);
  padding: 15px 0;
  z-index: 1;
}

#faculty .sec_ttl::before {
  display: none;
}

#faculty .sec_ttl .head {
  background-color: transparent;
  padding: 0 40px 5px;
}

#faculty .sec_ttl .head .en {
  color: #fff;
}

#faculty .sec_ttl .head .ja {
  color: #fff;
}

#faculty .fac_ttl {
  width: 100%;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 0 auto 40px;
}
#faculty .fac_ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
#faculty .fac_ttl span {
  background-color: #fff;
  display: inline-block;
  padding: 0 1em;
}
#faculty .list01 {
  margin-bottom: 80px;
}
#faculty .inner ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#faculty .inner ul li {
  max-width: 390px;
  width: calc((100% - 120px) / 3);
  margin-left: 60px;
}

#faculty .inner ul li:nth-of-type(2) {
  transition-delay: 0.2s;
}

#faculty .inner ul li:nth-of-type(3) {
  transition-delay: 0.4s;
}

#faculty .inner ul li:first-of-type {
  margin-left: 0;
}

#faculty .inner ul li .video-smn {
  margin-bottom: 20px;
}
#faculty .inner ul li .video-smn .overlay p {
  margin-bottom: 10px;
  font-size: 20px;
}

#faculty .inner ul li .video-smn .overlay .c-btn {
  font-size: 15px;
}

#faculty .inner ul li .menu_ttl {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.1;
}
#faculty .inner ul li .menu_ttl span {
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}

#faculty .inner ul li .menu_sub_ttl {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 6px;
}
dd.fukushi_btn a{
	color: #5c8dcb;
}
dd.kodomo_btn a{
	color: #daaaa1;
}
dd.hoiku_btn a{
	color: #a1c97f;
}
dd.syoku_btn a{
	color: #f0d05c;
}
dd.jyouhou_btn a{
	color: #37a3d7;
}
dd.manege_btn a{
	color: #c2baa2;
}


dl.nenu_yub_list{
	width: 100%;
	padding: 0;
	margin: 0 0 10px 0;
	flex-direction: column;
}
dl.nenu_yub_list > dd {
  width: 100% !important;
  padding: 0 0 6px 0;
  margin: 0 0 6px 0 !important;
  list-style: decimal;
  border-bottom: 1px dotted #ccc;
  text-align: center;
}
/*
dl.nenu_yub_list > dd:before{
  content: "・";
  letter-spacing: -0.5em;
  display: inline-block;
  margin-right: 5px;
}
*/
dl.nenu_yub_list > dd a{
  transition:all 0.2s;
  display: block;
  padding: 0 0 0 0.5em;
  box-sizing: border-box;
}
dl.nenu_yub_list > dd a:hover{
	color: #bf3431;
}

#faculty .inner ul li > .c-btn {
  font-size: 14px;
  width: 80%;
  max-width: 225px;
  padding: 0.3em 0;
  margin: 0 auto;
}
#faculty .inner ul li > .c-btn.psy {
  border: 2px solid #5c8dcb;
}

#faculty .inner ul li > .c-btn.child {
  border: 2px solid #daaaa1;
}

#faculty .inner ul li > .c-btn.hoiku {
  border: 2px solid #a1c97f;
}

#faculty .inner ul li > .c-btn.syoku {
  border: 2px solid #f0d05c;
}

#faculty .inner ul li > .c-btn.jyouhou {
  border: 2px solid #37a3d7;
}

#faculty .inner ul li > .c-btn.manege {
  border: 2px solid #c2baa2;
}


#faculty .inner ul li > .c-btn:hover {
  background-color: #fff;
}
#faculty .inner ul li > .c-btn.psy:hover {
  color: #5c8dcb;
}
#faculty .inner ul li > .c-btn.child:hover {
  color: #daaaa1;
}

#faculty .inner ul li > .c-btn.hoiku:hover {
  color: #a1c97f;
}

#faculty .inner ul li > .c-btn.syoku:hover {
  color: #f0d05c;
}

#faculty .inner ul li > .c-btn.jyouhou:hover {
  color: #37a3d7;
}
#faculty .inner ul li > .c-btn.manege:hover {
  color: #c2baa2;
}

@media all and (max-width: 1024px) {
  #faculty .inner ul li .video-smn .overlay p {
    font-size: 15px;
    line-height: 1.2;
  }

  #faculty .inner ul li .video-smn .overlay .c-btn {
    font-size: 13px;
  }
}

@media all and (max-width: 768px) {
  #faculty {
    margin: 0 auto 110px;
  }

  #faculty .sec_ttl_wrapper {
  }

  #faculty .sec_ttl_wrapper .head_img {
    margin-bottom: 50px;
  }

  #faculty .sec_ttl {
    position: relative;
    padding: 0;
    background-color: transparent;
  }

  #faculty .sec_ttl::before {
    display: block;
  }

  #faculty .sec_ttl .head {
    background-color: #fff;
    display: inline-block;
  }

  #faculty .sec_ttl .head .en {
    color: #52c8a7;
  }

  #faculty .sec_ttl .head .ja {
    color: #000;
  }
  #faculty .inner ul {
    flex-wrap: wrap;
  }
  #faculty .inner ul li {
    max-width: 100%;
    width: calc((100% - 60px) / 2);
    margin-left: 30px;
  }

  #faculty .inner ul li:nth-of-type(3) {
    margin-top: 40px;
    margin-left: 0;
  }

  #faculty .inner ul li .menu_ttl {
    font-size: 20px;
  }

  #faculty .list02 ul li:last-of-type .menu_ttl {
    line-height: 1;
    margin-bottom: 13px;
  }
  #faculty .list02 ul li:last-of-type .video-smn {
    margin-bottom: 15px;
  }
}

@media all and (max-width: 767px) {
  #faculty {
    margin: 0 auto 70px;
  }
  #faculty .sec_ttl_wrapper {
    margin: 0 auto 30px;
  }
  #faculty .sec_ttl {
    background-color: transparent;
  }
  #faculty .fac_ttl {
    font-size: 17px;
    margin-bottom: 30px;
  }

  #faculty .fac_ttl span {
    padding: 0 1em;
  }
  #faculty .list01 {
    margin-bottom: 40px;
  }
  #faculty .inner ul {
    flex-direction: column;
  }

  #faculty .inner ul li {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #000;
  }

  #faculty .inner ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  #faculty .inner ul li:nth-of-type(3) {
    margin-top: 0;
  }
  #faculty .inner ul li .video-smn {
    margin-bottom: 20px;
  }
  #faculty .inner ul li .video-smn .overlay p {
    margin-bottom: 10px;
    font-size: 15px;
  }

  #faculty .inner ul li .video-smn .overlay .c-btn {
    font-size: 13px;
  }

  #faculty .inner ul li .menu_ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }

}

/* q_a
------------------------------------*/

#q_a {
  margin: 0 auto;
}

#q_a .sec_ttl {
  margin: 0 auto 100px;
}

#q_a .inner {
  max-width: 980px;
  margin-bottom: 80px;
}

#q_a .cate_ttl {
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #52c8a7;
  width: 100%;
  padding: 1em 100px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
#q_a .cate_ttl::before,
#q_a .cate_ttl::after {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  transition: 0.3s ease-in-out;
}
#q_a .cate_ttl::before {
  background-image: url(../img/opencampus_web/open.png);
  opacity: 1;
}

#q_a .cate_ttl::after {
  background-image: url(../img/opencampus_web/close.png);
  opacity: 0;
}

#q_a .cate_ttl.active::before {
  background-image: url(../img/opencampus_web/open.png);
  opacity: 0;
}

#q_a .cate_ttl.active::after {
  background-image: url(../img/opencampus_web/close.png);
  opacity: 1;
}

#q_a .qa-wrapper {
  display: none;
}

#q_a .qa-wrapper dl {
  padding-top: 20px;
  width: 100%;
}

#q_a .qa-wrapper dl:not(:last-of-type) {
  margin-bottom: 40px;
}

#q_a .qa-wrapper dl dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
#q_a .qa-wrapper dl dd {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
#q_a .qa-wrapper .close-btn {
  width: 300px;
  margin: 40px auto 0;
  cursor: pointer;
}
#q_a .qa-wrapper .close-btn:hover {
  background-color: #e69628;
}
@media all and (max-width: 768px) {
  #q_a .sec_ttl {
    margin: 0 auto 80px;
  }
  #q_a .qa-wrapper dl dt {
    margin-bottom: 30px;
  }

  #q_a .qa-wrapper dl dd {
    justify-content: flex-start;
  }
  #q_a .qa-wrapper .close-btn:hover {
    background-color: #52c8a7;
  }
}

@media all and (max-width: 767px) {
  #q_a {
    margin: 0 auto;
  }

  #q_a .sec_ttl {
    margin: 0 auto 40px;
  }

  #q_a .inner {
    margin-bottom: 40px;
  }

  #q_a .cate_ttl {
    font-size: 16px;
    padding: 1em 50px;
  }

 #q_a .cate_ttl::before,
  #q_a .cate_ttl::after {
    right: 10px;
    width: 30px;
  }

  #q_a .qa-wrapper {
    width: 95%;
    margin: 0 auto;
  }

  #q_a .qa-wrapper dl dt {
    justify-content: space-between;
  }

  #q_a .qa-wrapper dl dd {
    justify-content: space-between;
  }
}

/* 吹き出し */

#q_a .qa-wrapper dl .txt {
  width: 70%;
  position: relative;
  padding: 15px 30px;
  border-radius: 10px;
}

#q_a .qa-wrapper dl .txt::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 20px;
  margin: auto;
}

#q_a .qa-wrapper dl .q_txt {
  background-color: #52c8a7;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 19px;
}

#q_a .qa-wrapper dl .a_txt {
  background-color: #ebecee;
}

#q_a .qa-wrapper dl .a_txt p {
  font-size: 16px;
  line-height: 1.8;
}

#q_a .qa-wrapper dl .q_txt::before {
  border-width: 10px 15px 10px 0;
  border-color: transparent #52c8a7 transparent transparent;
  left: -14px;
  top: 0;
  bottom: 0;
}

#q_a .qa-wrapper dl .a_txt::before {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ebecee;
  right: -14px;
}

@media all and (max-width: 768px) {
  #q_a .qa-wrapper dl .txt {
    width: 80%;
    padding: 15px;
  }

  #q_a .qa-wrapper dl .txt::before {
  }

  #q_a .qa-wrapper dl .a_txt {
    order: 2;
  }

  #q_a .qa-wrapper dl .a_txt p {
  }

  #q_a .qa-wrapper dl .q_txt::before {
    left: -14px;
  }

  #q_a .qa-wrapper dl .a_txt::before {
    border-width: 10px 15px 10px 0;
    border-color: transparent #ebecee transparent transparent;
    right: inherit;
    left: -15px;
  }
}
@media all and (max-width: 767px) {
  #q_a .qa-wrapper dl .txt {
    width: 78%;

    border-radius: 5px;
  }

  #q_a .qa-wrapper dl .txt::before {
  }

  #q_a .qa-wrapper dl .q_txt {
    font-size: 16px;
  }

  #q_a .qa-wrapper dl .a_txt {
  }

  #q_a .qa-wrapper dl .a_txt p {
    font-size: 14px;
  }

  #q_a .qa-wrapper dl .q_txt::before,
  #q_a .qa-wrapper dl .a_txt::before {
    border-width: 8px 10px 8px 0;
    left: -9px;
  }
}
/* アイコン */

#q_a .qa-wrapper dl .stu,
#q_a .qa-wrapper dl .teacher {
  width: 15%;
  position: relative;
}

#q_a .qa-wrapper dl .stu {
  text-align: left;
}
#q_a .qa-wrapper dl .teacher {
  text-align: right;
}

#q_a .qa-wrapper dl .stu span,
#q_a .qa-wrapper dl .teacher span {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-size: 100% auto;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  position: relative;
}

#q_a .qa-wrapper dl .hisa01,
#q_a .qa-wrapper dl .hisa02,
#q_a .qa-wrapper dl .hisa03 {
  margin-top: -45px;
}

#q_a .qa-wrapper dl .hisa01 span,
#q_a .qa-wrapper dl .hisa02 span,
#q_a .qa-wrapper dl .hisa03 span {
  height: 135px;
}

#q_a .qa-wrapper dl .stu.girl01 span {
  background-image: url(../img/opencampus_web/girl01.png);
}

#q_a .qa-wrapper dl .stu.girl02 span {
  background-image: url(../img/opencampus_web/girl02.png);
}
#q_a .qa-wrapper dl .stu.boy01 span {
  background-image: url(../img/opencampus_web/boy01.png);
}

#q_a .qa-wrapper dl .stu.boy02 span {
  background-image: url(../img/opencampus_web/boy02.png);
}

#q_a .qa-wrapper dl .teacher.hisa01 span {
  background-image: url(../img/opencampus_web/hisa01.png);
}
#q_a .qa-wrapper dl .teacher.hisa02 span {
  background-image: url(../img/opencampus_web/hisa02.png);
}
#q_a .qa-wrapper dl .teacher.hisa03 span {
  background-image: url(../img/opencampus_web/hisa03.png);
}
#q_a .qa-wrapper dl .teacher.kaz01 span {
  background-image: url(../img/opencampus_web/kazmin01.png);
}
#q_a .qa-wrapper dl .teacher.kaz02 span {
  background-image: url(../img/opencampus_web/kazmin02.png);
}
#q_a .qa-wrapper dl .teacher.kazå03 span {
  background-image: url(../img/opencampus_web/kazmin03.png);
}

@media all and (max-width: 768px) {
  #q_a .qa-wrapper dl .stu,
  #q_a .qa-wrapper dl .teacher {
    width: 20%;
  }
  #q_a .qa-wrapper dl .teacher {
    order: 1;
    text-align: left;
  }
  #q_a .qa-wrapper dl .hisa01,
  #q_a .qa-wrapper dl .hisa02,
  #q_a .qa-wrapper dl .hisa03 {
    margin-top: -15px;
  }
}

@media all and (max-width: 767px) {
  #q_a .qa-wrapper dl .stu span,
  #q_a .qa-wrapper dl .teacher span {
    display: inline-block;
    width: 50px;
    height: 50px;
  }
  #q_a .qa-wrapper dl .hisa01,
  #q_a .qa-wrapper dl .hisa02,
  #q_a .qa-wrapper dl .hisa03 {
    margin-top: -15px;
  }

  #q_a .qa-wrapper dl .hisa01 span,
  #q_a .qa-wrapper dl .hisa02 span,
  #q_a .qa-wrapper dl .hisa03 span {
    height: 65px;
  }
}

/* 下部テキスト */

#q_a .dots {
  margin: 0 auto 50px;
}
#q_a p.stir {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

#q_a .example {
  max-width: 830px;
  margin: 0 auto;
  border: 1px solid #52c8a7;
  border-radius: 10px;
  position: relative;
  padding: 25px 30px;
}

#q_a .example .pos_a {
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: -0.7em;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
  line-height: 1;
}

#q_a .example .pos_a span {
  display: inline-block;
  padding: 0 1em;
  background-color: #fff;
}

#q_a .example .txt {
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
}

#q_a .example .txt span {
  font-weight: bold;
}

@media all and (max-width: 768px) {
  #q_a p.stir {
    font-size: 27px;
  }
  #q_a p.stir span {
    font-size: 32px;
  }
  #q_a .example .txt {
    font-size: 20px;
  }
}

@media all and (max-width: 767px) {
  #q_a .dots {
    margin: 0 auto 25px;
  }
  #q_a p.stir {
    font-size: 16px;
    margin: 0 auto 40px;
  }
  #q_a p.stir span {
    font-size: 20px;
  }
  #q_a .example {
    padding: 40px 5px;
  }

  #q_a .example .pos_a {
    font-size: 18px;
  }

  #q_a .example .pos_a span {
  }

  #q_a .example .txt {
    font-size: 14px;
  }

  #q_a .example .txt span {
  }
}

/* contact
------------------------------------*/
#contact {
}

#contact .dots {
  margin-bottom: 50px;
}

#contact .inner {
}

#contact .inner p.ttl {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

#contact .inner p.ttl span {
  font-size: 34px;
}

#contact .inner > p:not(.ttl) {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}
#contact .inner ul.form-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 830px;
  margin: 0 auto 90px;
}
#contact .inner ul.form-link li {
  width: calc(98% / 2);
}

#contact .inner ul.form-link li .c-btn {
  font-size: 26px;
  background-color: #efeaef;
  color: #000;
}

#contact .inner ul.form-link li .c-btn:hover {
  background-color: #52c8a7;
  color: #fff;
}

#contact .inner p.inquiry {
  width: 100%;
  position: relative;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

#contact .inner p.inquiry::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

#contact .inner .block p.inquiry span {
  background-color: #fff;
  padding: 0 1em;
}

#contact .inner .block .name {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

#contact .inner .block ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#contact .inner .block ul li {
  margin: 0 0.5em;
  font-size: 24px;
  font-weight: bold;
}

#contact .inner .block .mail-link {
  display: block;
  font-size: 15px;
  text-align: center;
}
@media all and (max-width: 768px) {
  #contact .inner ul.form-link li .c-btn:hover {
    background-color: #efeaef;
    color: #000;
  }
}

@media all and (max-width: 767px) {
  #contact {
  }

  #contact .dots {
    margin-bottom: 30px;
  }

  #contact .inner {
  }

  #contact .inner p.ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }

  #contact .inner p.ttl span {
    font-size: 20px;
  }

  #contact .inner > p:not(.ttl) {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #contact .inner ul.form-link {
    margin: 0 auto 40px;
  }
  #contact .inner ul.form-link li {
  }

  #contact .inner ul.form-link li .c-btn {
    font-size: 15px;
  }

  #contact .inner ul.form-link li .c-btn:hover {
  }

  #contact .inner p.inquiry {
    font-size: 18px;
    margin-bottom: 15px;
  }

  #contact .inner p.inquiry::before {
  }

  #contact .inner .block p.inquiry span {
  }

  #contact .inner .block .name {
    font-size: 24px;
  }

  #contact .inner .block ul {
    margin-bottom: 10px;
  }

  #contact .inner .block ul li {
    font-size: 15px;
  }

  #contact .inner .block .mail-link {
    font-size: 12px;
  }
}
.post-password-form{
	max-width: 980px;
	margin: 0 auto 60px;
	padding: 0 0 0;
}
@media all and (max-width: 767px) {
.post-password-form{
	padding: 0 10px 0;
}
}
/*andou*/
.qa-list{
	width: 100%;
	margin: 0 0 0 0;
	padding: 20px 0 0;
	display: flex;
	flex-direction: column;
}
.qa-list p{
	text-align: center;
	border-bottom: 1px dotted #cccccc;
	margin: 0 auto 10px;
	max-width: 100%;
}
.clr_fu{
	color: #5c8dcb;
	font-weight: bold;
}
.clr_ko{
	color: #daaaa1;
	font-weight: bold;
}
.clr_ho{
	color: #a1c97f;
	font-weight: bold;
}
.clr_sho{
	color: #f0d05c;
	font-weight: bold;
}
.clr_jyo{
	color: #37a3d7;
	font-weight: bold;
}
.sec_chara{
	width: 100%;
	margin: 0 0 20px 0;
	padding: 0;
}
ul.chara_set{
	max-width: 200px;
	margin: 0 auto 0;
	padding: 0 15px;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
ul.chara_set li{
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0;
}
ul.chara_set li figure img{
	width: 100%;
	margin: 0 0 6px 0;
}
ul.cate_set{
	width: 100%;
	margin: 0 auto 0;
	padding: 30px 15px 0;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
ul.cate_set li{
	width: 18%;
	margin: 0 0 10px 0;
	padding: 0;
}
.cate-btn {
  display: block;
  border-radius: 10px;
  padding: 0.5em 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 768px) {
.cate-btn {
  font-size: 13px;
}
}
.cate-btn span {
  position: relative;
}

.cate-btn span::after {
  content: "〉〉〉";
  letter-spacing: -0.5em;
  display: inline-block;
  margin-left: 5px;
}
.bg_fu{
	background-color: #5c8dcb;
	border: 2px solid #5c8dcb;
}
.bg_fu:hover{
	background-color: #ffffff;
	border: 2px solid #5c8dcb;
	color: #5c8dcb;
}
.bg_ko{
	background-color: #daaaa1;
	border: 2px solid #daaaa1;
}
.bg_ko:hover{
	background-color: #ffffff;
	border: 2px solid #daaaa1;
	color: #daaaa1;
}
.bg_ho{
	background-color: #a1c97f;
	border: 2px solid #a1c97f;
}
.bg_ho:hover{
	background-color: #ffffff;
	border: 2px solid #a1c97f;
	color: #a1c97f;
}
.bg_sho{
	background-color: #f0d05c;
	border: 2px solid #f0d05c;
}
.bg_sho:hover{
	background-color: #ffffff;
	border: 2px solid #f0d05c;
	color: #f0d05c;
}
.bg_jyo{
	background-color: #37a3d7;
	border: 2px solid #37a3d7;
}
.bg_jyo:hover{
	background-color: #ffffff;
	border: 2px solid #37a3d7;
	color: #37a3d7;
}
#message p.faculty {
	position: relative;
	margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
#message p.faculty span {
  background-color: #fff;
  padding: 0 1em;
}
@media all and (max-width: 767px) {
#message p.faculty {
  font-size: 18px;
}
}
#message p.faculty::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
#message div.content{
	padding-top: 0;
}
#message div.content .inner {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}
.mes_item{
	width: 100%;
	margin: 0 0 40px 0;
}
.mes_ttl{
	background-color: #333333;
	color: #ffffff;
	font-size: 24px;
	text-align: center;
	padding: 0.3em 0;
	font-weight: bold;
	border-radius: 10px 10px 0 0;
}
.mes_ttl.fu{
	background-color: #5c8dcb;
}
.mes_box.fu{
	background-color: #fffaf3;
}
.mes_detail_sub_set li span.fu{
	color: #5c8dcb;
}
.mes_ttl.ko{
	background-color: #daaaa1;
}
.mes_box.ko{
	background-color: #fffaf3;
}
.mes_detail_sub_set li span.ko{
	color: #daaaa1;
}
.mes_ttl.ho{
	background-color: #a1c97f;
}
.mes_box.ho{
	background-color: #fffaf3;
}
.mes_detail_sub_set li span.ho{
	color: #a1c97f;
}
.mes_ttl.sho{
	background-color: #f0d05c;
}
.mes_box.sho{
	background-color: #fffaf3;
}
.mes_detail_sub_set li span.sho{
	color: #f0d05c;
}
.mes_ttl.jyo{
	background-color: #37a3d7;
}
.mes_box.jyo{
	background-color: #f5fafd;
}
.mes_detail_sub_set li span.jyo{
	color: #37a3d7;
}
.mes_ttl.ma{
	background-color: #c2baa2;
}
.mes_box.ma{
	background-color: #fffaf3;
}
.mes_detail_sub_set li span.ma{
	color: #c2baa2;
}





.mes_box{
	background-color: #cccccc;
	padding: 2em;
	border-radius: 0 0 10px 10px;
	box-sizing: border-box;
}
.mes_detail_set{
	width: 100%;
	margin: 0 auto 0;
	padding: 0;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
.mes_detail_set > li:first-child{
	width: 73%;
}
.mes_detail_set > li:last-child{
	width: 23%;
}
.mes_detail_set > li .ttl{
	width: 100%;
	font-size: 22px;
	padding: 0;
	margin: 0 0 16px 0;
	font-weight: bold;
}
@media all and (max-width: 767px) {
.mes_box{
	background-color: #cccccc;
	padding: 1.2em;
	border-radius: 0 0 10px 10px;
	box-sizing: border-box;
}
.mes_detail_set > li:first-child{
	width: 100%;
	order: 2;
}
.mes_detail_set > li:last-child{
	width: 100%;
	order: 1;
	margin: 0 0 10px 0;
}
.mes_detail_set > li .ttl{
	font-size: 18px;
}
}
.mes_detail_set > li p{
	width: 100%;
	padding: 0;
	margin: 0 0 16px 0;
	font-size: 16px;
	line-height: 1.8;
}
.mes_detail_sub_set{
	width: 100%;
	margin: 0 auto 0;
	padding: 0;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
.mes_detail_sub_set > li{
	width: 100%;
	background-color: #ffffff;
	padding: 0.6em;
}
.mes_detail_sub_set > li > p{
	font-size: 14px;
}

@media all and (max-width: 767px) {
.mes_detail_sub_set > li{
	width: 100%;
	background-color: #ffffff;
	padding: 0.6em;
	margin: 0 0 10px 0;
}
}
.mes_detail_sub_set > li span{
	color: #cccccc;
	font-size: 15px;
	font-weight: bold;
}
.mes_detail_sub_set > li span p{
	font-size: 12px;
}
.mes_detail_set > li .name{
	text-align: center;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 10px 0;
}
.mes_detail_set > li .name span{
	text-align: center;
	font-size: 14px;
	margin-right: 10px;
	font-weight: normal;
}
.mes_detail_set > li .position p{
	text-align: center;
	font-size: 14px;
	flex-wrap: wrap;
	font-weight: normal;
	line-height: 1.4;
	margin: 0 0 14px 0;
}

.mes_detail_set > li > figure{
	width: 100%;
	margin: 0 auto;
}
@media all and (max-width: 767px) {
.mes_detail_set > li .name{
	font-size: 20px;
}
.mes_detail_set > li .name span{
	font-size: 14px;
}
.mes_detail_set > li > figure{
	width: 60%;
	margin: 0 auto;
}
}
.lady{
	text-align: center;
	margin: auto;
	padding: 20px 0;
	font-size: 20px;
	background-color: #eee;
}






/* q_a
------------------------------------*/

#speech {
  margin: 0 auto;
}

#speech .sec_ttl {
  margin: 0 auto 100px;
}

#speech .inner {
	width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

#speech .list01 {
  margin-bottom: 80px;
}
#speech .inner ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#speech .inner ul li {
  max-width: 390px;
  width: calc((100% - 120px) / 3);
  margin-left: 60px;
}

#speech .inner ul li:nth-of-type(2) {
  transition-delay: 0.2s;
}

#speech .inner ul li:nth-of-type(3) {
  transition-delay: 0.4s;
}

#speech .inner ul li:first-of-type {
  margin-left: 0;
}

#speech .inner ul li .video-smn {
  margin-bottom: 20px;
}
#speech .inner ul li .video-smn .overlay p {
  margin-bottom: 10px;
  font-size: 20px;
}

#speech .inner ul li .video-smn .overlay .c-btn {
  font-size: 15px;
}

#speech .inner ul li .menu_ttl {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.1;
}
#speech .inner ul li .menu_ttl span {
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}

#speech .inner ul li .menu_sub_ttl {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 6px;
}
#speech .fac_ttl {
  width: 100%;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 0 auto 40px;
}
#speech .fac_ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
#speech .fac_ttl span {
  background-color: #fff;
  display: inline-block;
  padding: 0 1em;
}
#speech .list01 {
  margin-bottom: 80px;
}
@media all and (max-width: 767px) {
  #speech {
    margin: 0 auto 70px;
  }
  #speech .sec_ttl_wrapper {
    margin: 0 auto 30px;
  }
  #speech .sec_ttl {
    background-color: transparent;
    margin-bottom: 30px;
  }
  #speech .fac_ttl {
    font-size: 17px;
    margin-bottom: 30px;
  }

  #speech .fac_ttl span {
    padding: 0 1em;
  }
  #speech .list01 {
    margin-bottom: 40px;
  }
  #speech .inner ul {
    flex-direction: column;
  }

  #speech .inner ul li {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #000;
  }

  #speech .inner ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  #speech .inner ul li:nth-of-type(3) {
    margin-top: 0;
  }
  #speech .inner ul li .video-smn {
    margin-bottom: 20px;
  }
  #speech .inner ul li .video-smn .overlay p {
    margin-bottom: 10px;
    font-size: 15px;
  }

  #speech .inner ul li .video-smn .overlay .c-btn {
    font-size: 13px;
  }

  #speech .inner ul li .menu_ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
