@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;
  }
}

/* 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: #f0a53b;
}
.child {
  background-color: #0071b1;
}

.hoiku {
  background-color: #db3f7e;
}
.syoku {
  background-color: #81bb3f;
}

.jyouhou {
  background-color: #37a3d7;
}

/* 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 iframe {
  width: 100%;
  height: 450px;
}

#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 iframe {
    width: 100%;
    height: 200px;
  }
  #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;
}

#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;
}

#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 #f0a53b;
}

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

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

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

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

#faculty .inner ul li > .c-btn:hover {
  background-color: #fff;
}
#faculty .inner ul li > .c-btn.psy:hover {
  color: #f0a53b;
}
#faculty .inner ul li > .c-btn.child:hover {
  color: #0071b1;
}

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

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

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

@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;
  }

  #faculty .inner ul li > .c-btn {
  }
}

/* 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 0;
  text-align: center;
  border-radius: 10px;
  /* cursor: pointer; */
}
#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 0;
  }

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

  #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.kaz03 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;
  }
}
