@charset "utf-8";
/* ページ内リンクの位置調整 */
section{
	margin-top: -60px;
	padding-top: 60px;
	}

h5 {
  background: #76c6bd;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
  color:#FFF;
}
.haikei{
	background: #76c6bd;/*背景色*/
	}
img{width:100%}

h6 {font-size: 150%;}

.w-15{width:15%;}

.h-15{height:15%;}

.bg-card{
	background-color:#76c6bd;
}

.font-clr-ff{
	color:#FFFFFF
}

.btn-icon {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #9ec34b;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px 8px 32px;
  border-radius: 4px;
  position: relative;
}

.btn-icon:before {
  font-family: "FontAwesome";
  content: "\f105";/* 好きなフォントアイコンを　*/
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -8px;
}

.btn-icon:hover {
  opacity: 0.8;
}

.school_h1 {
  position: relative;
  padding: 0.5rem 1rem calc(0.5rem + 10px);
  background: #73BEB5;
}

.school_h1:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #000;
}

.school_h2 {
  position: relative;
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #454545;
}

.school_h2:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #a8d4ff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


@media (min-width: 992px) {

 .school_h1 {
   font-size: 1.7vw;
 }

 .school_h2 {
   font-size: 1.5vw;
 }

}


/*中デバイス（タブレット, 992px 未満）*/
@media (max-width: 991.98px) {
	
 .school_h1 {
   font-size: 2vw;
 }

 .school_h2 {
   font-size: 1.5vw;
 }

}


/*小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767.98px) {

 .school_h1 {
   font-size: 3vw;
 }

 .school_h2 {
   font-size: 2.5vw;
 }

}


/* @include media-breakpoint-up(sm)
 極小デバイス（縦向きモバイル, 576px 未満）*/
 @media (max-width: 575.98px) {

 .school_h1 {
   font-size: 3vw;
 }

 .school_h2 {
   font-size: 2.7vw;
 }

}

.responsive {
width: 100%;
aspect-ratio: 16/9;
}


.test {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 20px 100px;
    border: 3px solid #000000;
}

.test:before {
    position: absolute;
    top: -107%;
    left: -24px;
    content: '';
    width: 100px;
    height: 100%;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    background: #000;
}
.test span {
    /*font-size: 50px;*/
    position: absolute;
    z-index: 1;
    top: 0;
    left: 18px;
    color: #fff;
}

.hoge ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0;
}
.hoge ol li {
  position: relative;
  padding: 0.5em;
  line-height: 1.5em;
  background: #f1f8ff;
  border-left : solid 35px #5c9ee7;
  margin-bottom: 5px;
}
.hoge ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -35px;
  width: 35px;
  height: 1em;
  line-height: 1;
  text-align: center;
}

/* checkbox effect */
.checkbox-effect:not(:checked) + label:before,
.checkbox-effect:checked + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #5a5a5a;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 20px;
}

.checkbox-effect:not(:checked) + label:after,
.checkbox-effect:checked + label:after {
  content: "";
  font-family: fontawesome;
  font-size: 21px;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  top: -2px;
  left: 1px;
  color: #C42021;
  text-shadow: 0px -1px 0px #fff;
  transform-origin: center center;
}

.checkbox-effect:not(:checked) + label:after {
  transform: scale(1, 0);
}

.checkbox-effect:checked + label:after {
  transform: scale(1, 1);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

/*.checkbox-block {
  display: flex;
  justify-content: space-between;
}*/

.checkbox-effect-1:not(:checked),
.checkbox-effect-1:checked {
  position: absolute;
  left: -9999px;
}

.checkbox-effect-label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

