
/* ==========================================================================
   mv
   ========================================================================== */
.mv .ttl {
  width: 100%;
  padding: 0.3em 0.5em 0.1em;
  background-color: #c36380;
  color: #fff;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
}
.mv .ttl span::before {
  background-image: url(/guidance/images/strength/icn_no4_white.svg);
}
.mv .bg {
  width: 100%;
  height: 0;
  padding-top: 460px;
  background-image: url(/guidance/images/strength/teachers_mv.jpg);
  background-position:50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .mv {
    width: 100%;
  }
  .mv .ttl {
    font-size: 18px;
  }
  .mv .bg {
    padding-top: 180px;
  }
}

.lead-top {
  margin-bottom: 50px;
}
.teachers-list {
  display: flex;
  flex-wrap: wrap;
}
.teachers-list > .item {
  width: 23%;
  margin-bottom: 30px;
}
.teachers-list > .item:nth-child(odd) {
  margin-right: 2.5%;
}
.teachers-list > .item:nth-child(4n+2) {
  margin-right: 2.5%;
}
.teachers-list > .item .box {
  color: #333333;
  text-decoration: none;
}
.teachers-list > .item .box .info {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.teachers-list > .item .box .info .name {
  margin-bottom: 0;
  white-space: nowrap;
  margin-right: 5px;
}
.teachers-list > .item .box .info .charge-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 10px;
}
.teachers-list > .item .box .info .charge-list .item:not(:first-child) {
  margin-top: 3px;
}
.teachers-list > .item .modal .head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.teachers-list > .item .modal .head img {
  width: 40%;
}
.teachers-list > .item .modal .head .info-wrap {
  width: 55%;
  margin-left: 5%;
}

.teachers-list > .item .modal .head .info .name {
  font-size: 24px;
}
.teachers-list > .item .modal .head .info .charge-list .item {
  font-size: 18px;
  margin-bottom: 10px;
}
.teachers-list > .item .modal .head .info-wrap .detail {
  margin-bottom: 0;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .teachers-list {
    justify-content: space-between;
  }
  .teachers-list > .item {
    width: 48%;
    margin-bottom: 20px;
  }
  .teachers-list > .item:nth-child(odd) {
    margin-right: 0;
  }
  .teachers-list > .item:nth-child(4n+2) {
    margin-right: 0;
  }
  .teachers-list > .item .modal .head {
    display: block;
    overflow: hidden;
  }
  .teachers-list > .item .modal .head img {
    float: left;
  }
  .teachers-list > .item .modal .head .info .name {
    font-size: 20px;
  }
  .teachers-list > .item .modal .head .info .charge-list .item {
    font-size: 16px;
  }
  .teachers-list > .item .modal .head .info-wrap {
    width: auto;
    margin-left: 0;
  }
  .teachers-list > .item .modal .head .info-wrap .detail {
    clear: both;
    padding-top: 10px;
    font-size: 14px;
  }
  .teachers-list > .item .modal .head .info {
    width: 55%;
    float: left;
    margin-left: 5%;
  }
}



/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 600;
}
.modal__container {
  background-color: #fff;
  padding: 30px;
  width: 88%;
  max-width: 700px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 700;
  position: relative;
}
@media screen and (max-width: 599px) {
  .modal__container {
    padding: 25px 15px;
  }
}
.modal__close {
  background: transparent;
  border: 0;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 16px;
}
.modal__close:hover {
  cursor: pointer;
}
.modal__close:before { content: "\2715"; }

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes mmfadeOut {
  from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes mmslideIn {
  from { transform: translateY(15%); }
  to { transform: translateY(0); }
}
@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
  outline: none;
}

/* ------------------------------
three_reason
------------------------------ */
.three_reason {
  margin-bottom: 65px;
}
