@charset "UTF-8";
/*ブレイクポイントを設定*/
/*メディアクエリ用のミックスイン*/
.download__btn {
  display: flex;
  justify-content: space-between;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .download__btn {
    flex-direction: column;
    width: 280px;
  }
}
.download__btn_link {
  display: block;
  width: 280px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .download__btn_link {
    max-width: 280px;
    width: 100%;
  }
  .download__btn_link + .download__btn_link {
    margin-top: 20px;
  }
}

.document__tabs {
  display: flex;
  width: 580px;
  list-style: none !important;
  margin: 80px 0 0 !important;
  padding: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .document__tabs {
    width: 100%;
    margin-top: 30px;
  }
}
.document__tabs_item {
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}
.document__tabs_link {
  display: block;
  width: 100%;
  padding: 15px 0;
  border-bottom: 5px solid #BBBBBB;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #BBB;
}
.document__tabs_current {
  border-bottom: 5px solid #282D67;
  background: #282D67;
  color: #FFF9D9;
}

.hidden-header-navigation ul {
  display: flex;
}
.hidden-header-navigation ul li {
  max-width: 100%;
  width: 100% !important;
  float: none !important;
}
.hidden-header-navigation--list--staff {
  background: url(../img/common/nav_staff.png) 50% 50% no-repeat;
  background-size: cover;
}

.contact-section + #post-paging {
  margin-top: 40px;
}

/* ─── member list を Flexbox で３列／２列に ─── */
.entry-content .member__list {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* PC：１行３列 */
.entry-content .member__list_item {
  flex: 0 1 calc(33.333% - 40px);
  margin: 20px;
  box-sizing: border-box;
}

/* スマホ：１行２列 */
@media only screen and (max-width: 767px) {
  .entry-content .member__list_item {
    flex: 0 1 calc(50% - 30px);
    margin: 15px;
  }
}


.entry-content .member__list_cont {
  margin: 16px 0 0;
  position: relative;
}
.entry-content .member__list_name {
  margin: 0 0 20px;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  color: #252B67;
}
.entry-content .member__list_youtube {
  margin: 16px 0 0;
  position: relative;
}
.entry-content .member__list_youtube img {
  width: 88px;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__list_name {
    font-size: 18px;
  }
}
.entry-content .member__list_department {
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  color: #414141;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__list_department {
    font-size: 11px;
  }
}
.entry-content .member__list_department-ttl {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #828282;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__list_department-ttl {
    font-size: 11px;
  }
}
.entry-content .member__sns {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  list-style: none;
}
.entry-content .member__sns_item {
  width: 25px;
}
.entry-content .member__sns_item + .member__sns_item {
  margin-left: 10px;
}
.entry-content .member__sns_link {
  display: block;
}
.entry-content .member__modal {
  display: flex;
  justify-content: space-between;
  max-height: calc(100vh - 120px);
  padding: 40px;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__modal {
    flex-direction: column;
    padding: 20px;
  }
}
.entry-content .member__modal_thumb {
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__modal_thumb {
    width: 100%;
    margin: 0 0 20px;
  }
}
.entry-content .member__modal_cont {
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .entry-content .member__modal_cont {
    width: 100%;
  }
}
.entry-content .member__desc + .member__desc {
  margin-top: 25px;
}
.entry-content .member__desc_ttl {
  margin: 0 0 10px;
  line-height: 1.33;
  font-size: 14px;
  font-weight: bold;
  color: #4168AA;
}
.entry-content .member__desc_cont {
  font-size: 14px;
}
.entry-content .modal__btn {
  cursor: pointer;
}
.entry-content .modal__wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.entry-content .modal__wrap_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.entry-content .modal__wrap_item {
  max-width: 680px;
  width: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  z-index: 2;
}
.entry-content .modal__close {
  width: 35px;
  height: 35px;
  position: absolute;
  top: -47px;
  right: -47px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .entry-content .modal__close {
    right: 0;
  }
}
.entry-content .modal__close::before, .entry-content .modal__close::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
}
.entry-content .modal__close::before {
  transform: translateY(-50%) rotate(45deg);
}
.entry-content .modal__close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.l-single-conten__gray-wrap {
  margin: 0 15px 3.2rem;
  padding: 20px;
  border: 1px solid #e96b83;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  background: #ffeef0;
}
@media only screen and (max-width: 767px) {
  .l-single-conten__gray-wrap {
    margin: 0 0 1.6rem;
  }
}/*# sourceMappingURL=new_common.css.map */

.l-disclaimer {
    margin: 0 15px 3.2rem;
    padding: 20px;
    border: 1px solid #dddddd;
    box-shadow: 1px 1px 1px rgba(0,0,0,.16);
    box-sizing: border-box;
    background: #fafafa;
    font-size: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .l-disclaimer {
    margin: 0 0 1.6rem;
  }
}

#pagination .current {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 0 2px;
  line-height: 34px;
  text-align: center;
  font-weight: 700;
}

#pagination .prev,
#pagination .next {
  transform: translateY(11px);
}

#pagination .prev::before,
#pagination .next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  position: absolute;
  top: 50%;
  left: 50%;
}

#pagination .prev {
  margin: 0 16px 0 2px;
}

#pagination .prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

#pagination .next {
  margin: 0 2px 0 16px;
}

#pagination .next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#pagination .next:hover::before,
#pagination .prev:hover::before {
  border-top-color: #FFF;
  border-right-color: #FFF;
}

@media screen and (max-width: 768px) {
  .js-slider {
    padding-bottom: 2rem;
  }
}

.js-slider .slick-dots {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .js-slider .slick-dots {
    bottom: 0;
  }
}

.js-slider .slick-dots li {
  width: 36px;
  height: 6px;
  background: #cfcfcf;
  overflow: hidden;
  opacity: 1;
}

.js-slider .slick-dots li button {
  width: 36px;
  min-width: initial;
  height: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  background: transparent;
  overflow: hidden;
  text-indent: -99999px;
}

.js-slider .slick-dots li.slick-active {
  background: #272d68;
}

.js-slider .slick-arrow {
  width: 40px;
  min-width: initial;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .js-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.js-slider .slick-prev {
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  left: 30px;
}

@media screen and (max-width: 768px) {
  .js-slider .slick-prev {
    left: 15px;
  }
}

.js-slider .slick-next {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  right: 30px;
}

@media screen and (max-width: 768px) {
  .js-slider .slick-next {
    right: 15px;
  }
}