  html {
  font-size: 62.5%;
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/*body {
-ms-overflow-style: none;  for Internet Explorer, Edge
scrollbar-width: none;  for Firefox
overflow-y: scroll;
}*/
/*body::-webkit-scrollbar {
display: none; for Chrome, Safari, and Opera
}*/

form,
input,
textarea {
  -moz-user-select: all !important;
  -webkit-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
  -webkit-user-select: text !important;
}

* {
  -moz-user-select: none;
  /* -webkit-user-select: none; */
  /* -ms-user-select: none; */
  /* user-select: none; */
  -ms-overflow-style: none;
  /* IE and Edge hide scrollbar bar*/
  /* scrollbar-width: none; */
  /* Firefox hide scrollbar bar */
}

*::-webkit-scrollbar {
  /* chrome hide scrollbar bar */
  /* display: none; */
}
/* BODY{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
} */
/* amit custom radio */

.radiocontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */

.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.imgopencampus{
    padding: 3%;
    border: 1px solid #ccc;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}
/* Create a custom checkbox */



.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #eee;
}
/* uturefonts; */

.type-wrap {
  position: relative;
  top: 30px;
}

.video-title {
  font-family: futurefonts;
  font-size: 8rem;
  font-weight: bold;
  text-align: center;
}

.video-sub-title {
  font-size: 5rem;
  font-family: futurefonts;
  font-weight: bold;
  text-align: center;
}
/* On mouse-over, add a grey background color */

.radiocontainer:hover input~.checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */

.radiocontainer input:checked~.checkmark {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */

.radiocontainer:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */

.radiocontainer input:checked~.checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */

.radiocontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom-select {
  position: relative;
  /*  font-family: Arial;*/
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: rgba(59, 92, 147, 1);
}
/*style the arrow inside the select element:*/

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/

.select-items {
  position: absolute;
  background-color: rgba(59, 92, 147, 1);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* amit custom select */

html,
body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

*:before,
*:after,
.full-content {
  box-sizing: border-box;
  overflow: hidden;
}

.full-content {
  overflow-x: hidden;
  position: relative;
}

.flex-item-left:hover {
  color: #80C606 !important;
}

head {
  display: none;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides>li:first-child {
  display: block;
}

html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

a {
  background-color: transparent;
  text-decoration: none;
}
/* for mb navigation */

.mb_nav ul li a:hover {
  background-color: #92c245;
  color: #fde428;
  transition: all 0.5s ease 0s;
}

.toggle-menu ul {
  display: table;
  width: 35px;
}

.toggle-menu ul li {
  width: 100%;
  height: 5px;
  background-color: #002e5b;
  margin-bottom: 4px;
}

.toggle-menu {
  float: right;
  padding: 8px 0px;
  display: inline-block;
  cursor: pointer;
}

.toggle-menu ul li:last-child {
  margin-bottom: 0px;
}
/* amit custom radio */

.radiocontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */

.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */

.radiocontainer:hover input~.checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */

.radiocontainer input:checked~.checkmark {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */

.radiocontainer:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */

.radiocontainer input:checked~.checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */

.radiocontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom-select {
  position: relative;
  /*  font-family: Arial;*/
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: rgba(59, 92, 147, 1);
}
/*style the arrow inside the select element:*/

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/

.select-items {
  position: absolute;
  background-color: rgba(59, 92, 147, 1);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* amit custom select */
/* pratima css */

.container_mobile {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  margin-top: 5px;
}

.tel {
  font-size: 2.9rem;
  color: #8bc34a;
}

.tel :hover {
  color: #c5e1a5;
}

.section_b {
  /* max-height:760px; */
  /* background: blue; */
}

.jibc_tt {
  color: rgba(146, 171, 49, 255);
  font-size: 3.2rem;
  font-weight: 300;
  margin: 0;
}

.jibc_tt_1 {
  color: #000000;
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.jibc_tt_2 {
  color: #000000;
  font-size: 3rem;
  font-weight: 300;
  margin-top: 1rem;
  line-height: 2;
  text-align: center;
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc_c_g {
  color: #000;
  padding: 1.5rem;
  text-align: center;
  font-size: 20px;
}

.desc_tt {
  text-align: center;
  font-size: 2rem;
  color: #000;
  margin-top: -5px;
}

.responsive {
  padding: 0 0.4rem 0;
  text-align: center;
}

.container_gallery {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.container_about {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0 0 4rem 0;
  padding: 0 0 4rem 0;
}

.container_section_b {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: 0 0 4rem 0;
  /* padding: 0 0 4rem 0; */
}

.section_c {
  /* background: blue; */
}

.oc_tt_centered_nw {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}



.open_news {
  position: relative;
}

.open_news img {
  width: 100%;
  height: 450px;
  opacity: 0.3;
  object-fit: cover;
}

.open_news_dt {
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  flex-wrap: wrap;
}

.open_news_dt_l {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}

.open_news_dt_r {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 2;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}

.hr_news {
  height: 1px;
  width: 100%;
  background: #000;
  border: none;
}

.dt_tt {
  font-size: 2rem;
  color: #7a930b;
}

.dt_tt_r {
  font-size: 2rem;
  line-height: 1.6;
}

.dt_tt_r:hover {
  cursor: pointer;
}

.read_more_n {
  margin-left: 39%;
  font-size: 1.4rem;
  /* margin-top: 46px; */
  color: #424242;
}

.read_more_n:hover {
  color: #000;
}

.page {
  margin: auto;
  padding: 0 0 4rem 0;
}
.center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-responsive {
  display: flex;
  flex-wrap: wrap;
  font-size: 3rem;
  text-align: center;
  margin: 0 0 3rem 0;
  padding: 0 0 3rem 0;
}

.flex-responsive-left {
  flex: 2;
}

.flex-responsive-right {
  flex: 1.5;
}

.comment-img {
  position: relative;
  height: 420px;
}

.comment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* pratima css end */

img {
  border-style: none;
}
/*=======Global Css=================*/

* {
  outline: none;
}
/*======Page Header=============*/

.top-header .container {
  display: flex;
  flex: 1;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
/*=================Menu Navigation===============*/

.main-header .container {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

.container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
}

.nav-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 20px;
}

.nav-desktop .top_tt,
.nav-desktop .top_tt a {
  font-size: 1.4rem;
  /*    font-family: 'Raleway', sans-serif;*/
  font-weight: 300;
  color: #3a3a3a;
}

.top_tt a:hover {
  color: #80C606;
}
.top_tt a:focus{
  color: #80C606;
}
.box_tt a{
  background: #8bc34b !important;
  border-radius: 10px;
  padding: 4px 7px;
  color: #fff!important;
}
.box_tt a:hover{
  background: #fff !important;
  border: 1px solid #8bc34b;
  color: #000!important;
}

.nav-desktop li {
  padding: 1rem;
}

.nav-desktop ul ul {
  position: absolute;
  display: none;
  margin: 0;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

ul>li {
  position: relative;
}

.nav-desktop .sub-menu {
  top: 100%;
  left: 0;
}

.sub-menu li:hover {
  background: rgba(0, 0, 0, 0.12);
}
/*======Event UPcomming pratima========*/

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
  z-index: 1999;
  background: #ffffff;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  text-align: center;
  border-right: #000000 solid 1px;
  border-left: #000000 solid 1px;
  width: 450px;
}

.flex-item-left {
  display: flex;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  flex: 1;
  border-right: #000000 solid 1px;
  border-left: #000000 solid 1px;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.flex-item-left :hover {
  color: #80C606 !important;
}

.flex-item-left a {
  color: #000000;
}

.flex-item-left a :hover {
  color: #80C606;
}

.flex-container_tt :hover {
  color: #80C606;
}

.flex-container_tt {
  margin: 0.1rem;
}

.events-section .container {
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 6.25em;
}

.event-wrap {
  width: 75%;
  position: relative;
  margin: 0 0 5rem 0;
  padding: 0 0 5rem 0;
}

.event-wrap .img-wrap {
  height: 450px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-wrap .details {
  width: 70%;
  position: absolute;
  right: -181px;
  top: 3.5%;
  border-bottom: 454px solid rgba(146, 171, 49, 0.7);
  border-left: 191px solid transparent;
  border-right: 0px solid transparent;
  background: transparent;
}

.bottom-center {
  position: absolute;
  top: 70%;
  /* left: 50%; */
  /* transform: translate(40%, -50%); */
  font-weight: 900;
  color: #ffffff;
  font-size: 4.5rem;
  z-index: 1500;
  text-align-last: end;
  z-index: auto;
}

.flexs_1 {
  display: flex;
  justify-content: center;
  align-content: center;
}

.flexs {
  display: flex;
  justify-content: center;
  align-content: center;
}

.top-right {
  position: absolute;
  top: 20px;
  right: 12.2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}

.jibc_btt_1 {
  color: #ffffff;
  font-size: 2rem;
  margin-top: 5px;
  font-weight: 300;
}

.jibc_btt_2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-top: 5px;
  font-weight: 300;
  line-height: 2;
}

.open_campus {
  height: 370px;
  background-image: url("../images/top_10.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.oc_tt_centered {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  /*    text-align-last: end;*/
}

.section_f {}

.oc_date {
  width: 303px;
  height: 340px;
  background-color: White;
  opacity: 0.7;
  display: block;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 225px;
  color: #000000;
  /* overflow-y: scroll; */
}

.oc_date_1 {
  /* display: flex;
flex-direction: column;
align-content: flex-start;
justify-content: flex-start;
align-items: center;
margin: 33rem 0 4rem 0;
flex-wrap: nowrap; */
  text-align: center;
}

.oc_date_btt {
  color: #000000;
  font-size: 1.9rem;
  font-weight: 600;
  /* margin: 15px; */
  text-align: center;
}

.oc_date_tt {
  color: #000000;
  font-size: 1.8rem;
  line-height: .6;
  font-weight: 600;
  /* margin-left: 50px; */
}

.op {
  margin-top: 40px;
}

.btn_kifu{
  color: white;
  background-color: #8bc34a;
  border-radius: 15px;
  text-align: center;
  padding: 1rem 1.7rem 1rem 1.7rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.btn_kifu:hover {
  opacity: 0.6;
}



.btn_read_open_cmp {
  /* float: right; */
  color: white;
  background-color: black;
  border-radius: 15px;
  text-align: center;
  padding: 1rem 1.7rem 1rem 1.7rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.btn_read_open_cmp:hover {
  opacity: 0.6;
}

.btn_read {
  float: right;
  color: white;
  background-color: black;
  border-radius: 15px;
  text-align: center;
  padding: 1rem 1.7rem 1rem 1.7rem;
  margin-right: 2rem;
  font-size: 1.4rem;
  display: inline-table;
}

.btn_read:hover {
  opacity: 0.6;
}

.responsive_top {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.section_a {
  padding-top: 9rem;
}

.section_a .btn_top {
  background-color: #fff;
  color: red;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 163px;
  height: 63px;
  border: red solid 1px;
}

.text-top {
  position: absolute;
  bottom: -1.7rem;
  right: 14.8rem;
  background-color: transparent;
  color: white;
  width: 163px;
  height: 63px;
}

.logo_top {
  height: 9vh;
  margin-left: 2rem !important;
}

.logo_top:hover {
  opacity: 0.5;
}

.top_bollon {
  position: absolute;
  top: 1.5rem;
  left: 11px
}

.vl {
  border-right: 1.5px solid #000;
  margin-left: 1rem;
}

.mb_head {
  display: none;
}

.top-heading {
  text-transform: uppercase;
  margin-bottom: 1.1667em;
}

.gakka_soukhai_mobile {
  display: none;
}

.page_padding {
  width: 100%;
  padding: 0 1rem 0 1rem;
}
/*for top video*/

.video-body {
  margin: 0;
  overflow: hidden;
  overflow-x:hidden;
}

.video-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  /*  font-family: "Nunito Sans", sans-serif;*/
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
/* .video-section img {if top video tittle in top
margin-top: -15%;
} */

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}
/*end top video*/
/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (max-width: 1366px) {
  
  .logo_top {
      height: 12vh;
  }
  .flex-container {
      font-size: 1.2rem;
      width: 300px;
      margin-right: 56px;
  }
  .nav-desktop .top_tt,
  .nav-desktop .top_tt a {
      font-size: 1.4rem;
      margin: 3px;
  }
  .section_a {
      padding-top: 9rem !important;
  }
  .event-wrap .details {
      width: 100% !important;
  }
  .bottom-center {
      font-size: 4rem !important;
      top: 75% !important;
  }
  .bottom-center-bottom {
      top: 81% !important;
  }
  .page {
      margin: auto !important;
      padding: auto !important;
  }
  .open_news_dt {
      width: 80%;
  }
  .oc_date {
      right: 13px;
  }
  .video-section {
      height: 77vh;
  }
}

@media only screen and (max-width: 980px) {
  .mb-header {
      padding: 15px 0px;
  }
  #logo {
      padding: 0px;
  }
  input[type=checkbox] {
      position: absolute;
      top: -9999px;
      left: -9999px;
      background: none;
  }
  input[type=checkbox]:fous {
      background: none;
  }
  input[type=checkbox]:checked~.mb_nav {
      display: block;
  }
  .mb_nav {
      display: none;
      position: absolute;
      right: 0px;
      top: 77px;
      background-color: #7dad2f;
      padding: 10px;
      z-index: 99;
  }
  .mb_nav ul {
      width: auto;
  }
  .mb_nav ul li {
      float: none;
      padding: 0px;
      width: 100%;
      display: table;
  }
  .mb_nav ul li a {
      color: #FFF;
      font-size: 15px;
      padding: 10px 20px;
      display: block;
      border-bottom: 1px solid rgba(225, 225, 225, 0.3);
  }
  .mb_nav ul li a i {
      color: #fde428;
      padding-right: 13px;
  }
}
/* end mb navigation */
/* for ipad_pro */

@media screen and (max-width: 1024px) {
  .logo_top {
      height: 5vh !important;
  }
  .nav-desktop {
      margin-right: 0px;
      margin-left: -57px;
  }
  .flex-container {
      font-size: 1rem;
      width: 300px;
  }
  .nav-desktop .top_tt,
  .nav-desktop .top_tt a {
      font-size: 1.2rem;
  }
  .section_a {
      padding-top: 9.8rem !important;
  }
  .event-wrap .details {
      width: 100% !important;
  }
  .bottom-center {
      font-size: 4rem !important;
      top: 75% !important;
  }
  .bottom-center-bottom {
      top: 81% !important;
  }
  .page {
      margin: auto !important;
      padding: auto !important;
  }
  .open_news_dt {
      width: 80%;
  }
  .oc_date {
      right: 13px;
  }
  .video-section {
      height: 70vh;
  }
  /*
.video-section img {
margin-top: -30%;
}
*/
}
/* end pad_pro */

@media screen and (max-width: 1023px) {
  .video-title {
      font-size: 3.1rem;
  }
  .video-sub-title {
      font-size: 1.95rem;
  }
  .logo_top {
      height: 9vh !important;
  }
  .gakka_soukhai {
      display: none !important;
  }
  .heading_it1 {
      margin-top: 10px!important;
  }
  .menu-list {
      display: block !important;
  }
  .gakka_soukhai_mobile {
      display: block;
  }
  .comment-img img {
      height: auto !important;
  }
  .comment-img {
      height: auto !important;
      padding-bottom: 30px;
  }
  /* for section_b */
  .container_gallery {
      display: flex;
      flex-direction: column !important;
      align-content: center;
      justify-content: center;
      align-items: center;
  }
  /* .gallery {
      margin-bottom: 25px;
  } */
  .section_a {
      padding-top: 6.8rem !important;
  }

  .flex-responsive {
      display: flex;
      flex-direction: column !important;
      align-content: center !important;
      align-items: center;
  }
  .share-content {
      top: 25%;
  }
  .event-wrap .details {
      width: 109% !important;
  }
  .event-wrap {
      width: 70% !important;
  }
  .bottom-center {
      font-size: 2.8rem !important;
      top: 80% !important;
  }
  .jibc_btt_1 {
      font-size: 1.8rem
  }
  .jibc_btt_2 {
      font-size: 1.4rem !important;
  }
  .top-right {
      right: 8rem !important;
  }
  .open_news_dt {
      width: 95%;
  }
  .read_more_n {
      margin-left: 30% !important;
  }
  .pc_head {
      display: none;
  }
  .mb_head {
      display: block;
  }
  /*====navigation=====*/
  .menu-list {
      flex-direction: column;
  }
  .nav-desktop {
      display: none;
      width: 250px;
  }
  .nav-desktop li,
  .nav-desktop li a {
      font-size: 1.4rem;
  }
  .nav-desktop ul ul {
      position: static;
  }
  .oc_date {
      width: 215px;
      height: 308px;
      right: -4px;
  }
  .oc_date_btt {
      font-size: 1.2rem;
  }
  .oc_date_tt {
      font-size: 1.0rem;
  }
  .video-section {
      height: 55vh;
  }
  .video-section img {
      /* margin-top: -15%; */
      width: 90%;
  }
  .mb-header {
      padding: 15px 0px;
  }
  #logo {
      padding: 0px;
  }
  input[type=checkbox] {
      position: absolute;
      top: -9999px;
      left: -9999px;
      background: none;
  }
  input[type=checkbox]:fous {
      background: none;
  }
  input[type=checkbox]:checked~.mb_nav {
      display: block;
  }
  .mb_nav {
      display: none;
      position: absolute;
      right: 0px;
      top: 77px;
      background-color: #7dad2f;
      padding: 10px;
      z-index: 99;
  }
  .mb_nav ul {
      width: auto;
  }
  .mb_nav ul li {
      float: none;
      padding: 0px;
      width: 100%;
      display: table;
  }
  .mb_nav ul li a {
      color: #FFF;
      font-size: 15px;
      padding: 10px 20px;
      display: block;
      border-bottom: 1px solid rgba(225, 225, 225, 0.3);
  }
  .mb_nav ul li a i {
      color: #fde428;
      padding-right: 13px;
  }
  .swiper {
    height: 310px!important;
}
}
/* for under ipad */

@media screen and (max-width: 767px) {
  .video-title {
      font-size: 2.1rem;
  }
  .video-sub-title {
      font-size: 1.25rem;
  }
  .event-wrap {
      width: 100% !important;
      margin: auto;
  }
  .event-wrap .img-wrap {
      height: 220px !important;
  }
  .event-wrap .details {
      width: 90% !important;
      position: absolute;
      right: 1px;
      top: 3.5%;
      border-bottom: 220px solid rgba(146, 171, 49, 0.7) !important;
      border-left: 140px solid transparent !important;
  }
  .jibc_btt_2 {
      display: none;
  }
  .jibc_tt_2 {
      font-size: 2.4rem;
      margin-top: 0rem;
  }
  .section_d {
      padding: 0;
  }
  .container_section_b {
      margin: 0;
  }
  .bottom-center {
      font-size: 2rem !important;
      top: 63% !important;
  }
  .top-right {
      right: 7rem !important;
  }
  .jibc_btt_1 {
      font-size: 1.4rem !important;
      line-height: 1.7;
  }
  .container {
      max-width: 450px;
  }
  .section_a {
      padding-top: 8rem !important;
  }
  .dt_tt_r {
      font-size: 1.6rem !important;
      margin: 0;
  }
  .dt_tt {
      font-size: 1.7rem;
      margin: 0;
  }
  .jibc_tt {
      font-size: 2.7rem;
  }
  .open_news_dt_r {
      /* margin-bottom: 10px; */
  }
  .swiper-slide {
    width: auto!important;
    height: auto!important;
    margin-right: 5px!important;
}
.gallery img {
    width: 330px!important;
    height: auto!important;
}
.tel{
  display: none;
}
/* .mb{
  display: block!important;
}
.pc{
  display: none;
} */
}

@media screen and (max-width: 550px) {
  .video-title {
      font-size: 2.1rem;
  }
  .video-sub-title {
      font-size: 1.25rem;
  }

  .comment-img img {
      width: 95% !important;
      min-width: inherit !important;
  }
  .tel {
      font-size: 1.6rem;
  }
  .section_a {
      padding-top: 5rem !important;
  }
  .mb_nav {
      top: 100px;
  }
  .video-section img {
      /* margin-top: -50%; */
      width: 90%;
  }
  .button2 {
      padding: 15px 11px!important;
  }
  .swiper {
    height: 320px!important;
}
iframe {
    width: 320px!important;
}
  /* .button {
padding: 15px 11px!important;

} */
}
  /* start of moblie type navigation css */
  @media screen and (max-width: 820px) {
      .mobile-container {
          max-width: 480px;
          margin: auto;
          background-color: #555;
          height: 500px;
          color: white;
          border-radius: 10px;
      }
      .share-content {
          right: 5px;
      }
      .oc_date_btt {
          font-size: 0.8rem;
          margin: 3px;
      }
      .oc_date_tt {
          font-size: 1.2rem;
          margin: 10px;
          line-height: .3;
      }
      .oc_date {
          /* width: 178px; */
          height: 140px;
          right: 0px;
      }
      .btn_read_open_cmp {
          padding: .5rem 1rem 1rem .5rem;
      }
      .oc_tt_centered {
          width: 80%;
          text-align-last: center;
      }
      .op {
          margin-top: 15px !important;
      }
  }
  @media only screen and (min-width: 0px) and (max-width: 430px) {

    /* .btn_kifu,
    .fa-play:before {
      color: #000000;
    } */
      .type-wrap {
          position: relative;
          top: 40px;
      }
      .video-title {
          font-size: 2.1rem;
      }
      .video-sub-title {
          font-size: 1.25rem;
          display: flex;
          position: relative;
          top: -10px;
      }
      .op {
          margin-top: 15px !important;
      }
      .btn_read_open_cmp {
          padding: 0.5rem;
          font-size: xx-small;
      }
      .top-right {
          right: 6rem !important;
      }
      .event-wrap .details {
          width: 98% !important;
      }
      .bottom-center {
          font-size: 1.5rem !important;
          top: 69% !important;
      }
      .jibc_btt_1 {
          font-size: 1.3rem !important;
          line-height: 1.7;
      }
      .dt_tt_r {
          font-size: 1.4rem !important;
          margin: 0;
      }
      .dt_tt {
          font-size: 1.5rem;
          margin: 0;
      }
      .jibc_tt {
          font-size: 2rem;
      }
      .tel {
          font-size: 1.5rem;
          display: none;
      }
      .logo_top {
          height: 9vh !important;
      }
      .logo_top {
          height: 9vh !important;
      }
      .section_a {
          padding-top: 6rem !important;
      }
      .toggle-menu ul {
          width: 30px;
      }
      .mb_nav {
          top: 80px;
      }
      .jibc_tt_2 {
          font-size: 1.8rem;
      }
      .sentences {
          padding: 0 3rem 0 3rem !important;
      }
      .scrollToTopBtn {
          font-size: 30px;
          line-height: 40px;
          width: 40px;
          right: 20px;
      }
  }
  @media screen and (max-width: 280px) {
      .heading_small_mbl {
          margin-right: 1px;
      }
      .mb_nav {
          top: 73px;
          width: 89%;
      }
      .sentences {
          padding: 0 5rem 0 5rem !important;
      }
  }
  @media screen and (max-device-width: 2500px) and (min-device-width:222) {

  }
    /* for slide php */

    @media only screen and (min-width: 1000px) {
      .imgopencampus{
        width: 65%!important;
      }
    }