@charset "utf-8";

/* 学校紹介 about.html ********************/
.headmaster {
  margin-bottom: 80px;
}

.headmaster_comment {
  font-size: 16px;
  margin-top: 20px;
}

.headmaster_comment p + p {
  margin-top: 20px;
}

.headmaster_profile {
  margin-top: 40px;
  overflow: hidden;
}

.headmaster_profile p {
  text-align: right;
}

.headmaster_name {
  font-size: 24px;
}

.headmaster_pic {
  position: relative;
  margin: 30px 0 140px;
}

.headmaster_pic p {
  text-align: center;
  margin-top: 10px;
  line-height: 1.2;
}

.headmaster_pic li {
  opacity: 0;
}

.headmaster_pic li:nth-child(1) {
  text-align: center;
  margin: 0 auto;
  width: 50%;
  max-width: 300px;
  position: relative;
  z-index: 1;
  animation-delay: 1;
}

.headmaster_pic li:nth-child(2),
.headmaster_pic li:nth-child(3) {
  position: absolute;
  z-index: 2;
  bottom: 0;
}

.headmaster_pic li:nth-child(2) {
  width: 35%;
  right: 62%;
  animation-delay: 0.2s;
}

.headmaster_pic li:nth-child(3) {
  width: 17%;
  left: 70%;
  animation-delay: 0.4s;
}


/* 教師・スタッフ紹介 teacher.html ********************/
.teacherBody {
  position: relative;
}

.teacherMain .ttl_box {
  margin-bottom: 20px;
}

.teacher_list {
  justify-content: space-between;
  flex-wrap: wrap;
}

.teacher_list li {
  max-width: 160px;
  width: 30%;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.teacher_list li.teacher_detail {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;

  max-width: 100%;
  margin-bottom: 0;
}

.overLay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  z-index: 10;
}

.teacher_detail_inner {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 800px;
  padding: 40px;
}

.teacher_detail_avatar {
  width: 24%;
  max-width: 160px;
}

.teacher_detail_text {
  width: 76%;
  padding-left: 20px;
}

.teacher_detail_category {
  color: #f00;
  font-size: 13px;
}

.teacher_detail_name {
  font-size: 22px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.teacher_detail_name span {
  font-size: 12px;
  padding-left: 20px;
}

.teacher_detail_comment {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
}

.teacher_detail_comment dt {
  font-weight: bold;
  padding-right: 20px;
}

.teacher_detail_comment dd {
  font-size: 15px;
}

.drop {
  position: relative;
  z-index: 1;
}

.teacher_list li.drop {
  z-index: 1;
}

.drop::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/*
.drop01::before {
  background: url(../img/teacher/drop01.png) center/contain no-repeat;
  width: 176px;
  height: 65px;
  right: 0;
  bottom: 10px;
}
*/

.drop02::before {
  background: url(../img/teacher/drop02.png) center/contain no-repeat;
  width: 87px;
  height: 153px;
  top: 80%;
  right: 108%;
}

.drop03::before {
  background: url(../img/teacher/drop03.png) center/contain no-repeat;
  width: 132px;
  height: 128px;
  top: 88%;
  right: 70%;
}

.drop04::before {
  background: url(../img/teacher/drop04.png) center/contain no-repeat;
  width: 153px;
  height: 135px;
  top: 91%;
  right: 70%;
}

.drop05::before {
  background: url(../img/teacher/drop05.png) center/contain no-repeat;
  width: 123px;
  height: 176px;
  bottom: 40%;
  right: -180%;
}

.drop06::before {
  background: url(../img/teacher/drop06.png) center/contain no-repeat;
  width: 141px;
  height: 99px;
  bottom: 105%;
  right: -100%;
}

.drop07::before {
  background: url(../img/teacher/drop07.png) center/95% auto no-repeat;
  width: 144px;
  height: 160px;
  top: 95%;
  right: -70%;
}

.drop08::before {
  background: url(../img/teacher/drop08.png) center/95% auto no-repeat;
  width: 91px;
  height: 180px;
  top: 85%;
  right: 105%;
}

.drop.animate::before {
  animation: drop ease-out 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.drop03.animate::before {
  animation-delay: 0.4s;
}

@keyframes drop {
  0% {
    transform: translate(0px, -140px);
    opacity: 0;
  }

  50% {
    transform: translate(0px, 10px);
    opacity: 1;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}




.left_in.animate {
  animation: left_in ease-out 0.6s;
}

.right_in.animate {
  animation: right_in ease-out 0.6s;
}

.bottom_in.animate {
  animation: bottom_in ease-out 0.6s;
}

.top_in.animate {
  animation: top_in ease-out 0.6s;
}

.left_in.animate,
.right_in.animate,
.bottom_in.animate,
.top_in.animate {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}





@keyframes left_in {
  0% {
    transform: translate(-300px, -0);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes right_in {
  0% {
    transform: translate(300px, -0);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes bottom_in {
  0% {
    transform: translate(0, 300px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes top_in {
  0% {
    transform: translate(0, -300px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}




.teacher_list p {
  line-height: 1.2;
  font-feature-settings: "palt";
}

.teacher_comment {
  color: #f00;
  font-size: 13px;
  margin-top: 10px;
}

.teacher_name {
  font-size: 24px;
  margin: 5px 0;
}

.teacher_name-middle {
  font-size: 20px;
}

.teacher_name-small {
  font-size: 18px;
}

.teacher_intention {
  text-align: center;
}

.teacher_set {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.teacher_set li {
  position: absolute;
  opacity: 0;
}

.teacher_set .teacher_set_cont01 {
  top: 0;
  left: 0;
}

.teacher_set .teacher_set_cont02 {
  top: 30px;
  left: 30%;
  animation-delay: 0.4s;
}

/*
.teacher_set .teacher_set_cont03 {
  top: 40px;
  left: 52%;
  animation-delay: 0.7s;
}
*/

.teacher_set .teacher_set_cont04 {
  top: 30px;
  left: 54%;
  animation-delay: 0.5s;
}

.teacher_set .teacher_set_cont05 {
  top: 10px;
  left: 70%;
  animation-delay: 0.3s;
}

.teacher_set .teacher_set_cont06 {
  bottom: 0;
  left: 10%;
  animation-delay: 0.2s;
}

.teacher_set .teacher_set_cont07 {
  bottom: 0;
  left: 40%;
  animation-delay: 0.6s;
}

.teacher_set .teacher_set_cont08 {
  bottom: 0;
  left: 63%;
  animation-delay: 0.8s;
}

/*
.teacher_set .teacher_set_cont09 {
  bottom: 0;
  right: 5%;
  animation-delay: 0.1s;
}
*/



/* 学生寮 dormitory.html ********************/
.dormitory_catch {
  font-size: 22px;
  font-weight: bold;
  color: #f00;
  line-height: 1.2;
  margin: 20px 0 10px;
}

.dormitory_read {
  font-size: 16px;
  margin-bottom: 40px;
}

.dormitory_typeSec {
  margin-bottom: 30px;
}

.dormitory_typeTtl {
  color: #f00;
  font-size: 22px;
}

.dormitory_typeTtl_sub {
  color: #565656;
  font-size: 0.8em;
  margin-left: 10px;

}

.dormitory_typeTtl_sub::before,
.dormitory_typeTtl_sub::after {
  content: '-';
  padding: 5px;
}

.dormitory_details {
  font-size: 16px;
  width: 100%;
  border-top: 2px solid #d2d2d2;
  border-right: 2px solid #d2d2d2;
  margin-top: 10px;
}

.dormitory_details th,
.dormitory_details td {
  padding: 10px 5px;
  border-left: 2px solid #d2d2d2;
  border-bottom: 2px solid #d2d2d2;
  line-height: 1.2;
  vertical-align: middle;
  text-align: center;
}

.dormitory_details th {
  background: #f4f5f9;
  font-weight: bold;
}

.dormitory_detailsNotes {
  text-align: right;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 10px;
}


/* コース案内 courseinfo.html ********************/

.mv {
  background-image: url(../img/courseinfo/mv.jpg);
}

.aspiration {
  justify-content: space-between;
}

.aspiration li {
  width: 32%;
  max-width: 200px;
  position: relative;
  z-index: 1;
}

.aspiration li::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.aspiration_ttl {
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 10px 2px;
  position: relative;
}

.aspiration_ttl::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 0 15px;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}

.aspiration_txt {
  padding: 30px 15px 20px;
  font-size: 16px;
  line-height: 1.2;
}

.aspiration_university::before {
  border: 2px solid #2aa738;
}

.aspiration_university .aspiration_ttl {
  background: #2aa738;
}

.aspiration_university .aspiration_ttl::before {
  border-color: #2aa738 transparent transparent transparent;
}

.aspiration_qualification::before {
  border: 2px solid #ffab08;
}

.aspiration_qualification .aspiration_ttl {
  background: #ffab08;
}

.aspiration_qualification .aspiration_ttl::before {
  border-color: #ffab08 transparent transparent transparent;
}

.aspiration_recruit::before {
  border: 2px solid #00afec;
}

.aspiration_recruit .aspiration_ttl {
  background: #00afec;
}

.aspiration_recruit .aspiration_ttl::before {
  border-color: #00afec transparent transparent transparent;
}

.aspiration_linkBtn {
  width: 320px;
  margin: 30px auto 80px;
}

.aspiration_linkBtn a {
  display: block;
  background: #f00;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding: 14px 2px;
  border-radius: 8px;
}

.aspiration_linkBtn a::after {
  content: '';
  display: inline-block;
  vertical-align: baseline;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
}

.courseinfo_read {
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}

.courseinfo_read_txt {
  width: 70%;
  font-size: 16px;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.courseinfo_read_txt::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  background: #fff;
  transform: rotate(45deg) translate(-60%);
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 2;
}

.courseinfo_read_txt-orabge,
.courseinfo_read_txt-orabge::before {
  border-color: #fc832d;
}

.courseinfo_read_txt-pink,
.courseinfo_read_txt-pink::before {
  border-color: #fc6891;
}

.courseinfo_read_txt-green,
.courseinfo_read_txt-green::before {
  border-color: #6ebc4a;
}

.courseinfo_read_avatar {
  width: 30%;
  max-width: 170px;
}

.courseinfo_cont dt {
  margin-bottom: 20px;
}

.courseinfo_cont dd {
  margin-bottom: 40px;
}

/* 志望別コース案内 course.html ********************/

.course_main .ttl_box {
  margin-bottom: 20px;
}

.course_nav {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
}

.course_nav li {
  width: 32%;
  background: #bbb;
}

.course_nav a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px 2px 15px;
  position: relative;
  z-index: 1;
}

.course_nav a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  z-index: 2;
}

.course_nav .course_nav_university {
  background: #2aa738;
}

.course_nav .course_nav_qualification {
  background: #ffab08;
}

.course_nav .course_nav_recruit {
  background: #00afec;
}

.course_sec {
  margin-bottom: 80px;
}

.course_ttl02 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin: 15px 0 5px;
}

.university .course_ttl02 {
  color: #00633d;
}

.qualification .course_ttl02 {
  color: #f47400;
}

.recruit .course_ttl02 {
  color: #008bda;
}

.course_subvisual {
  width: 40%;
  float: right;
  margin: 0 0 10px 10px;
}

.course_reason {
  margin: 15px 0;
}

.course_reason span {
  font-weight: bold;
  color: #0081cc;
}

.curriculum {
  margin: 30px 0 40px;
}

.curriculum_list {
  margin-top: 15px;
}

.curriculum_list li {
  margin-bottom: 20px;
  padding-left: 56px;
  position: relative;
  min-height: 40px;
}

.curriculum_primary {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  font-feature-settings: "palt";
}

.curriculum_list_number {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  width: 36px;
  padding-left: 5px;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
}

.curriculum_list_number::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 10px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.university .curriculum_list_number {
  background-color: #00633d;
}

.university .curriculum_list_number::before {
  border-color: transparent transparent transparent #00633d;
}

.qualification .curriculum_list_number {
  background: #f47400;
}

.qualification .curriculum_list_number::before {
  border-color: transparent transparent transparent #f47400;
}

.recruit .curriculum_list_number {
  background: #008bda;
}

.recruit .curriculum_list_number::before {
  border-color: transparent transparent transparent #008bda;
}


.university .linkBtn_balloon a {
  background-color: #97d79e;
}

.university .linkBtn_balloon a::before {
  background-color: #2db53c;
}

.university .linkBtn_balloon a::after {
  border-color: transparent transparent transparent #2db53c;
}

.qualification .linkBtn_balloon a {
  background-color: #ffd665;
}

.qualification .linkBtn_balloon a::before {
  background-color: #ffb909;
}

.qualification .linkBtn_balloon a::after {
  border-color: transparent transparent transparent #ffb909;
}

.recruit .linkBtn_balloon a {
  background-color: #7bd8f1;
}

.recruit .linkBtn_balloon a::before {
  background-color: #00bdf4;
}

.recruit .linkBtn_balloon a::after {
  border-color: transparent transparent transparent #00bdf4;
}

/* 聴講生 auditor.html ********************/
.auditor_main {
  font-size: 16px;
}

.auditor_main .ttl_box {
  margin: 60px 0 10px;
}

.auditor_main .ttl_circle {
  margin: 30px 0 10px;
  font-size: 18px;
  padding-bottom: 5px;
  background-size: 20px auto;
  line-height: 1.2;
  padding-left: 24px;
}

.auditor_main .ttl_circle-green {
  border-bottom: 3px dotted #2aa738;
  color: #2aa738;
}

.auditor_main .ttl_circle-orange {
  color: #ffab08;
  border-bottom: 3px dotted #ffab08;
}

.auditor_main .ttl_circle-blue {
  color: #008bda;
  border-bottom: 3px dotted #008bda;
}

.auditor_emp {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.auditor_emp-red {
  font-size: 20px;
  font-weight: bold;
  color: #f20a00;
  margin-bottom: 5px;
}

.auditor_sup {
  font-size: 14px;
}

.auditor_mtb {
  margin-bottom: 10px;
}

.action_necessary {
  margin-top: 80px;
  border: 4px solid #f20a00;
  border-radius: 4px;
  background: #ffffed;
  padding: 10px;
}

.action_necessary_ttl {
  font-size: 28px;
  color: #f20a00;
  font-weight: bold;
  margin-bottom: 20px;
}

.action_trouble {
  margin-top: 60px;
  border: 4px solid #252c41;
  border-radius: 4px;
}

/* 学校生活 life.html ********************/
.life_read {
  font-size: 20px;
  font-weight: bold;
  color: #f20a00;
  margin: 20px 0 10px;
}

.life_readSentence {
  font-size: 16px;
  line-height: 1.4;
}

.life_sec {
  margin-top: 60px;
}

.life_sec .ttl_circle {
  font-size: 16px;
  margin-bottom: 10px;
}

.lifeEvent_cont,
.lifeInteract_cont {
  flex-wrap: wrap;
  justify-content: space-between;
}

.lifeEvent_cont::after {
  content: "";
  display: block;
  width: 31%;
}

.lifeEvent_cont dl {
  width: 31%;
  margin-bottom: 30px;
}

.lifeInteract_cont dl {
  width: 48%;
  margin-bottom: 30px;
}

.lifeSchedule_cont dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*  align-content: center;*/
  margin-top: 40px;
}

.lifeSchedule_cont dt {
  width: 21%;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}

.lifeSchedule_cont dt::before {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  border-left: 4px dashed #333;
  position: absolute;
  right: 50%;
  margin-right: 20px;
  top: 100%;
}

.lifeSchedule_cont dl:last-child dt::before {
  display: none;
}

.lifeSchedule_cont dd {
  width: 79%;
  border: 3px solid #333;
  min-height: 93px;
  padding: 15px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.lifeSchedule_cont dd::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.lifeSchedule_admissi {
  background: url(../img/life/schedule_admission.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_sport {
  background: url(../img/life/schedule_sport.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_summer {
  background: url(../img/life/schedule_summer.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_autumn {
  background: url(../img/life/schedule_autumn.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_newyear {
  background: url(../img/life/schedule_newyear.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_graduate {
  background: url(../img/life/schedule_graduate.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_ceremony {
  background: url(../img/life/schedule_ceremony.jpg) right center/auto 100% no-repeat;
}

.lifeSchedule_cont dd p {
  width: 100%;
  position: relative;
  z-index: 3;
  font-size: 20px;
}

.lifeSchedule_cont dd p + p {
  margin-top: 5px;
}

/*学校内行事　モーダル*/
/**/
#cboxOverlay {
 background: #f9f9f9;
}
#cboxLoadedContent{
  background: #fff;
}
#cboxLoadedContent{
  padding:0;
  overflow: auto;
  -moz-box-shadow: 2px 4px 18px -4px rgba(0,0,0, 0.);
  -webkit-box-shadow: 2px 4px 18px -4px rgba(0,0,0, 0.5);
  box-shadow: 2px 4px 18px -4px rgba(0,0,0, 0.5);
  border-radius: 5px;
}
/*#cboxSlideshow,*/#cboxTitle{
  top:-30px;
}
#cboxPrevious, #cboxNext{
  top: -25px;
}
#cboxClose{
  top: -25.5px;
  right: 2px;
}

#colorbox, #cboxOverlay, #cboxWrapper{
 overflow:visible;
} 
#cboxTitle{
  color: #fff;
  background-color: #252c41;
  width: 100%;
  padding: 5px;
}

/* 卒業生の声 voice.html ********************/

.voice_sec {
  margin-bottom: 80px;
}

.voice_sec .ttl_circle {
  font-size: 16px;
  margin-bottom: 10px;
  font-feature-settings: 'palt';
}

.voice_cont dd {
  justify-content: space-between;
  margin-bottom: 40px;
}

.voice_avatar {
  width: 26%;
}

.voice_txt {
  width: 74%;
  line-height: 1.2;
  padding-left: 20px;
}

.voice_info p {
  text-align: right;
  font-size: 12px;
}

.voice_info .voice_name {
  font-size: 16px;
  margin: 20px 0 5px;
}

/* 入学案内 info.html ********************/
.infolow_read {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.infolow {
  padding: 0 20px;
}

.infoFlow_who {
  justify-content: space-between;
  margin-top: 30px;
}

.infoFlow_who li {
  width: 48%;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.infoFlow_who_student {
  background: #344159;
}

.infoFlow_who_school {
  background: #d70d19;
}

.infoFlow_flow {
  position: relative;
  z-index: 1;
}

.infoFlow_flow::before,
.infoFlow_flow::after {
  content: '';
  display: block;
  width: 48%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.infoFlow_flow::before {
  left: 0;
  background: #dcd9df;
}

.infoFlow_flow::after {
  right: 0;
  background: #f8e2d4;
}

.infoFlow_flow li {
  width: 48%;
  padding: 20px;
}

.infoFlow_flow_school {
  margin-left: auto;
}

.infoFlow_flow p {
  text-align: center;
  font-size: 16px;
}

.infoFlow_flow .infoFlow_flow_step {
  font-size: 22px;
  margin-bottom: 5px;
  color: #344159;
}

.infoFlow_flow_school .infoFlow_flow_step {
  color: #d70d19;
}

.infoFlow_flow_cont {
  border-bottom: 2px solid #fff;
  line-height: 1.4;
  padding-bottom: 10px;
}

.infoDoc {
  margin-top: 60px;
}

.infoDoc_list dt {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #252c41;
  line-height: 40px;
}

.infoDoc_list dt span {
  font-size: 16px;
}

.infoDoc_list dd {
  padding: 20px;
}

.infoDoc_btnList li {
  margin-bottom: 10px;
}

.infoDoc_btnList li a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #252c41 url(../img/common/icon_arrow-down-blue.svg) left 20px center/24px auto no-repeat;
  color: #fff;
  padding: 20px 5px 20px 50px;
  line-height: 1;
}

/* よくある質問 qa.html ********************/
.qa_list {
  margin-bottom: 40px;
}

.qa_list dt {
  font-size: 20px;
  line-height: 1.2;
  padding: 8px 0 0px 55px;
  position: relative;
  min-height: 40px;
}

.qa_list dt::before {
  content: 'Q';
  display: block;
  width: 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  background: #fad2bd;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.qa_list dd {
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  padding-left: 55px;
  min-height: 30px;
  margin-top: 10px;
}

.qa_list dd::before {
  content: 'A';
  display: block;
  width: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  background: #bbb5c1;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 18px;
}

.qa_list a {
  color: #f20a00;
}

/* アクセス access.html ********************/

.access_schoolTtl {
  margin: 40px 0 10px;
  border-bottom: 1px solid #252c41;
  padding-bottom: 10px;
}

.access_school {
  justify-content: space-between;
  margin-bottom: 60px;
}

.access_school_info {
  width: 40%;
}

.access_school_info p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: 'palt';
}

.access_school_info p + p {
  margin-top: 20px;
}

.access_school_gmap {
  width: 55%;
}

.access_school_gmap iframe {
  width: 100%;
}

.access_airport {
  margin-bottom: 80px;
}

/* お問い合わせ contact.html ********************/
.form dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
}

.form dt {
  background: #dddfe6;
  text-align: center;
  width: 20%;
  font-size: 12px;
  padding: 10px 0;
}

.form dt span {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #e83f48;
}

.form dd {
  padding: 10px 20px;
  width: 80%;
}

input,
textarea {
  border: 1px solid #333;
  padding: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
}

.education input {
  width: 50%;
}

.col {
  margin-top: 10px;
}

.submitBtn {
  background: #fd9535;
  border-bottom: solid 2px #d27d00;
  width: 200px;
  text-align: center;
  padding: 5px 10px;
  margin: 0 auto;
  display: block;
  margin-top: 40px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

/* 会社案内 company.html ********************/
.company_profile {
  margin-bottom: 80px;
}

.company_profile dl {
  border-bottom: 2px dotted #ccc;
  padding: 10px 0;
  display: flex;
  font-size: 16px;
}

.company_profile dt {
  width: 25%;
  font-weight: bold;
}

.company_profile dd {
  width: 75%;
}

.company_map iframe {
  width: 100%;
}


@media screen and (max-width:768px) {
  /* 学校案内 about.html ********************/

  .headmaster_pic {
    position: relative;
    margin: 30px 0 80px;
  }

  .headmaster_pic p.headmaster_name {
    font-size: 18px;
  }

  .headmaster_pic li:nth-child(1) {
    width: 60%;
  }

  .headmaster_pic li:nth-child(2) {
    right: 68%;
  }

  .headmaster_pic li:nth-child(3) {
    left: 75%;
  }

  /* 教師・スタッフ紹介 teacher.html ********************/
  .teacher_name {
    font-size: 18px;
    font-weight: bold;
  }

  .teacher_list li {
    margin-bottom: 100px;
  }

  .drop::before {
    background-size: 80% auto;
  }

  .drop02::before {
    top: 90%;
  }

  .drop04::before {
    top: 100%;
  }

  .drop07::before,
  .drop08::before {
    background-size: 75% auto;
  }

  .teacher_set {
    max-width: 400px;
    margin: 0 auto;
  }

  .teacher_set li img {
    transform: scale(0.5, 0.5);
    transform-origin: top left;
  }

  .teacher_set .teacher_set_cont06 {
    left: 10%;
  }

  .teacher_set .teacher_set_cont07 {
    left: 41%;
  }

  .teacher_set .teacher_set_cont08 {
    bottom: 3%;
    left: auto;
    right: 7%;
  }

  .teacher_set .teacher_set_cont08 img {
    transform-origin: top center;

  }


  .teacher_detail_inner {
    padding: 15px;
    display: block;
  }

  .teacher_detail_avatar {
    width: 70px;
    margin-bottom: 10px;
    position: absolute;
    top: 15px;
    left: 15px;
  }

  .teacher_detail_text {
    width: 100%;
    padding-left: 0;
  }

  .teacher_detail_who {
    padding-left: 80px;
    min-height: 90px;
  }

  .teacher_detail_name {
    font-size: 20px;
  }

  .teacher_detail_name span {
    display: block;
    padding-left: 0;
    margin-top: 5px;
  }

  .teacher_detail_comment dt {
    font-size: 15px;
  }

  .teacher_detail_comment dd {
    font-size: 14px;
  }

  .teacher_action {
    margin-top: -60px;
  }

  /* コース案内 courseinfo.html ********************/
  .aspiration {
    display: block;
  }

  .aspiration li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .courseinfo_read {
    padding: 10px;
  }

  .courseinfo_read_txt {
    font-size: 14px;
    padding: 10px;
  }

  .courseinfo_cont dt {
    margin-top: 20px;
  }

  /* 学校生活 life.html ********************/

  .lifeEvent_cont .ttl_circle,
  .lifeInteract .ttl_circle {
    font-size: 14px;
    background-size: 18px;
    padding-left: 25px;
  }

  .lifeEvent_cont dl {
    width: 48%;
  }

  .lifeSchedule_cont dt {
    width: 25%;
    padding-right: 15px;
    max-width: 120px;
  }

  .lifeSchedule_cont dt::before {
    margin-right: 5px;
  }

  .lifeSchedule_cont dd {
    width: 75%;
    padding: 8px;
    min-height: 60px;
    background: none;
  }

  .lifeSchedule_cont dd::before {
    width: 15px;
    height: 15px;
    left: -10px;
  }

  .lifeSchedule_cont dd p {
    font-size: 14px;
    line-height: 16px;
  }

  .lifeSchedule_cont .ttl_circle {
    background-size: 15px;
    padding-left: 22px;
  }


  /* 入学案内 info.html ********************/

  .infolow {
    padding: 0;
  }

  .infoFlow_who li {
    padding: 5px;
    font-size: 18px;
  }

  .infoFlow_flow li {
    padding: 10px;
  }

  .infoFlow_flow li:first-child {
    padding-top: 20px;
  }

  .infoFlow_flow p {
    font-size: 14px;
  }

  .infoFlow_flow .infoFlow_flow_step {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .infoFlow_flow_cont {
    padding-bottom: 15px;
  }

  .infoFlow_flow_cont br {
    display: none;
  }


  /* 卒業生の声 voice.html ********************/

  .voice_cont dd {
    display: block;
  }

  .voice_avatar {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 10px;
  }

  .voice_txt {
    width: 100%;
    padding: 0 10px;
    line-height: 1.3;
    font-size: 15px;
  }

  /* アクセス access.html ********************/

  .access_school {
    display: block;
  }

  .access_school_info {
    width: 100%;
  }

  .access_school_gmap {
    width: 100%;
    margin-top: 30px;
  }

  /* お問い合わせ contact.html ********************/
  .form dl {
    display: block;
    border-bottom: 2px solid #bbb;
    margin-bottom: 10px;
  }

  .form dt {
    background: #dddfe6;
    width: auto;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    text-align: left;
  }

  .form dt span {
    display: inline-block;
  }

  .form dd {
    width: 100%;
    padding: 10px 0;
  }

  /* 会社案内 company.html ********************/
  .company_profile dl {
    display: block;
    font-size: 14px;
  }

  .company_profile dt {
    width: 100%;
    margin-bottom: 10px;
  }

  .company_profile dd {
    width: 100%;
  }

}

@media screen and (max-width:440px) {

  /* 教師・スタッフ紹介 teacher.html ********************/
  .teacher_list li {
    width: 48%;
    margin-bottom: 120px;
  }

  .drop02::before {
    top: 100%;
    right: 90%;
  }

  .drop03::before {
    top: 100%;
    right: -55%;
  }

  .drop04::before {
    left: 65%;
  }

  .drop05::before {
    right: -120%;
    top: 20%;
  }

  .drop06::before {
    bottom: 108%;
    right: 0;
  }

  .drop07::before {
    top: 100%;
  }

  .drop08::before {
    top: 90%;
    right: -40%;
  }


}
