@charset "UTF-8";
.hidden-lg {
  display: block;
}
@media screen and (max-width: 1024px) {
  .hidden-lg {
    display: none;
  }
}

.btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-weight: bolder;
  padding: 1.2em 3em;
  transition: all 200ms linear;
}
.btn.btn-orange {
  color: #fff;
  background-color: #ff6b08;
}
.btn.btn-orange:hover {
  background-color: #ff8a3b;
}
.btn.btn-round {
  border-radius: 50px;
}
.btn.btn-shadow {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.btn.btn-shadow:hover {
  box-shadow: none;
}

/* --------------------------------
 Portfolio - Table
-------------------------------- */
.skill_list_container {
  margin-bottom: 2em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: 1em;
}
.skill_list_container h2 {
  font-size: 20px;
  margin: 1em auto 0.5em !important;
  text-align: center;
}

.skill_list {
  margin: 1.6em auto 0;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.skill_list .skill {
  width: 33%;
  padding: 0 2px;
}
.skill_list .skill .skill_header {
  text-align: center;
  padding: 1em 0 0;
  color: #fff;
  height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-bottom: 3px;
}
.skill_list .skill .skill_header .skill_header__icon img {
  width: 80px;
}
.skill_list .skill .skill_header .skill_header__title {
  font-size: 1rem;
  font-weight: bolder;
  line-height: 1.2;
  margin: 0.5em auto 0.2em;
}
.skill_list .skill.skill_a .skill_header {
  background: #e16060;
}
.skill_list .skill.skill_b .skill_header {
  background: #4779c4;
}
.skill_list .skill.skill_c .skill_header {
  background: #edb848;
}
.skill_list .skill .skill_body ul {
  padding: 0;
  margin: 0;
}
.skill_list .skill .skill_body ul li {
  list-style: none;
  padding: 1em 1.2em 0.5em 1.2em;
  position: relative;
  height: 88px;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 200ms linear;
}
.skill_list .skill .skill_body ul li a {
  text-decoration: none;
}
.skill_list .skill .skill_body ul li span {
  display: inline-block;
  letter-spacing: -4px;
  z-index: 1;
  font-size: 3rem;
  font-weight: bolder;
  font-family: "Century Gothic", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
.skill_list .skill .skill_body ul li p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  z-index: 2;
  z-index: 99;
}
.skill_list .skill .skill_body ul li.done {
  cursor: default;
}
.skill_list .skill .skill_body ul li.done p, .skill_list .skill .skill_body ul li.done span {
  color: #0a781d !important;
}
.skill_list .skill .skill_body ul li.done:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(113, 229, 148, 0.3411764706);
  background-image: url(../img/medal.svg);
  background-position: 99% 90%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.skill_list .skill .skill_body ul li.done:after {
  z-index: 3;
  left: 0;
  top: 0;
  line-height: 1;
  padding: 3px 12px;
  font-size: 0.65rem;
  position: absolute;
  background: rgba(16, 177, 42, 0.6509803922);
  color: #fff;
  content: "習得済み";
}
.skill_list .skill.skill_a .skill_body ul li {
  background: #fcefef;
}
.skill_list .skill.skill_a .skill_body ul li:hover {
  background: #ffdbdb;
}
.skill_list .skill.skill_a .skill_body ul li.done:hover {
  background: #fcefef;
}
.skill_list .skill.skill_a .skill_body ul li span {
  color: #e16060;
}
.skill_list .skill.skill_b .skill_body ul li {
  background: #ecf1f9;
}
.skill_list .skill.skill_b .skill_body ul li:hover {
  background: #d3dff2;
}
.skill_list .skill.skill_b .skill_body ul li.done:hover {
  background: #ecf1f9;
}
.skill_list .skill.skill_b .skill_body ul li span {
  color: #4779c4;
}
.skill_list .skill.skill_c .skill_body ul li {
  background: #fdf8ec;
}
.skill_list .skill.skill_c .skill_body ul li:hover {
  background: #fdefcd;
}
.skill_list .skill.skill_c .skill_body ul li.done:hover {
  background: #fdf8ec;
}
.skill_list .skill.skill_c .skill_body ul li span {
  color: #edb848;
}
@media screen and (max-width: 1024px) {
  .skill_list .skill .skill_body ul li {
    height: 70px;
  }
  .skill_list .skill .skill_body ul li span {
    font-size: 2.4rem;
  }
  .skill_list .skill .skill_body ul li p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 600px) {
  .skill_list {
    display: block;
  }
  .skill_list .skill {
    width: 100%;
  }
  .skill_list .skill .skill_header {
    height: auto;
    padding: 1em 0 0.6em;
    margin-top: 1.4em;
    margin-bottom: 3px;
  }
  .skill_list .skill .skill_header .skill_header__icon img {
    width: auto;
    height: 44px;
  }
  .skill_list .skill .skill_header .skill_header__title {
    margin: 0.6em auto 0.2em;
    font-size: 0.9rem;
  }
  .skill_list .skill .skill_body ul li {
    height: auto;
    padding: 0.8em 1.2em;
  }
  .skill_list .skill .skill_body ul li span {
    font-size: 2.5rem;
  }
  .skill_list .skill .skill_body ul li p {
    font-size: 0.7rem;
  }
}

.lity-content {
  background: #fff;
  max-width: 800px;
  padding: 2em 4em;
  border-radius: 6px;
  width: 80vw;
}
.lity-content h3 {
  text-align: center;
}
.lity-content ul {
  margin: 0;
  padding: 0;
}
.lity-content ul li {
  margin: 0 0 0.6em;
  padding: 0;
}
.lity-content ul li a {
  color: #00aa31;
}
@media screen and (max-width: 600px) {
  .lity-content {
    padding: 1.2em 1.2em 1.2em 3em;
  }
  .lity-content h3 {
    font-size: 1rem;
  }
  .lity-content ul li {
    font-size: 0.8rem;
  }
}

/* --------------------------------
 ハンドブック一覧
-------------------------------- */
#handbooks {
  padding: 4em;
}
#handbooks .lead p {
  font-size: 1rem;
  line-height: 1.6;
}
#handbooks .handbook_list {
  width: 100%;
  background: #fff;
  border-radius: 6px;
}
#handbooks .handbook_list ul {
  padding: 2em;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
}
#handbooks .handbook_list ul li {
  list-style: none;
  margin: 0;
  width: 25%;
  padding: 0.4em;
}
#handbooks .handbook_list ul li a {
  border: 1px solid #e9e9e9;
  padding: 1em;
  border-radius: 4px;
  display: flex;
  flex-flow: column;
  align-items: center;
  transition: all 200ms linear;
  background: transparent;
  height: 100%;
  position: relative;
}
#handbooks .handbook_list ul li a:before, #handbooks .handbook_list ul li a:after {
  position: absolute;
  opacity: 0;
  transition: all 200ms linear;
}
#handbooks .handbook_list ul li a:before {
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  z-index: 2;
}
#handbooks .handbook_list ul li a:after {
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 0.8em;
  border-radius: 40px;
  content: "ダウンロード";
  white-space: nowrap;
  font-size: 0.8rem;
  color: #fff;
  background: #00ae3d;
}
#handbooks .handbook_list ul li a:hover {
  background: #fefef9;
  border: 1px solid #ece3c3;
}
#handbooks .handbook_list ul li a:hover:before {
  opacity: 1;
}
#handbooks .handbook_list ul li a:hover:after {
  opacity: 1;
}
#handbooks .handbook_list ul li a img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 0.6em;
}
#handbooks .handbook_list ul li a span {
  font-size: 0.7rem;
  line-height: 1.3;
  color: #111;
}
#handbooks .handbook_list ul li a span i {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: #d53d31;
}
@media screen and (max-width: 1280px) {
  #handbooks {
    padding: 3em 1.4em;
  }
  #handbooks .lead p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  #handbooks .handbook_list ul {
    padding: 1.2em;
  }
  #handbooks .handbook_list ul li {
    width: 33.33%;
    padding: 0.4em;
  }
}
@media screen and (max-width: 600px) {
  #handbooks {
    padding: 2.2em 1em;
  }
  #handbooks .lead p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  #handbooks .handbook_list ul {
    padding: 1em;
  }
  #handbooks .handbook_list ul li {
    width: 50%;
    padding: 0.4em;
  }
  #handbooks .handbook_list ul li a {
    padding: 0.6em;
  }
}

/* --------------------------------
 BuddyBoss  - 講座
-------------------------------- */
@media screen and (max-width: 768px) {
  .bb-grid {
    margin-top: 2em;
  }
}

.wpProQuiz_content .wpProQuiz_results > div > .wpProQuiz_button {
  background: #fff;
}

/* --------------------------------
 BuddyBoss  - Community
-------------------------------- */
.groups-header #item-header-content .group-actions-absolute .groups-meta .group-subscription {
  background-color: #46c262 !important;
  border-color: #46c262;
}

#whats-new-form #bp-activity-privacy-point * {
  color: #000000 !important;
}

#user-status-huddle #bp-activity-privacy-point .group-privacy-point-icon img {
  display: none !important;
}

/* --------------------------------
 BuddyBoss  - Forum
-------------------------------- */
#bbpress-forums .bs-item-list:not(.bb-tag-items-list) .bs-item-wrap.bs-header-item {
  margin-bottom: 20px;
}

/* --------------------------------
 LearnDash Customize
-------------------------------- */
.learndash-wrapper .ld-item-list .ld-section-heading .ld-expand-button .ld-text,
.learndash-wrapper .ld-item-list-item .ld-item-list-item-preview .ld-icon-arrow-down:before {
  color: #fff;
}

body #bbpress-forums .bp-list .action .generic-button a, body #buddypress .bp-list .action .generic-button a {
  background: #fff;
}

.wpProQuiz_AnswerMessage p {
  text-align: left;
}

.wpProQuiz_quiz {
  display: block !important;
}

.learndash-wrapper .ld-item-list .ld-section-heading .ld-expand-button .ld-icon {
  color: #fff !important;
}

.bb-cover-list-item .ld-status.ld-status-complete {
  padding-left: 3em;
  background-color: #d41813 !important;
}
.bb-cover-list-item .ld-status.ld-status-complete:before {
  position: absolute;
  top: -10px;
  left: 0;
  content: "";
  display: inline-block;
  width: 32px;
  height: 44px;
  background: url(../img/medal.svg) center center no-repeat;
  background-size: 32px 44px;
}

.learndash-wrapper .learndash-complete .ld-item-list-item-preview .ld-item-title > span:first-child {
  text-decoration: none !important;
  color: #999;
}
.learndash-wrapper .learndash-complete .ld-item-list-item-preview .ld-item-title > span:first-child:after {
  content: "完了";
  background: #ff7828;
  color: #fff;
  font-size: 0.7rem;
  margin-left: 0.6em;
  padding: 0.2em 0.6em;
  border-radius: 30px;
}

.btn__next {
  display: block;
  margin-top: 1.2em !important;
}
.btn__next a {
  background: #FF7038;
  color: #fff;
  padding: calc(0.367em + 2px) calc(2.333em + 2px);
  font-size: 1em;
}
.btn__next a:hover {
  background: #FF6016;
}

.btn__share {
  display: block;
  margin-top: 1.2em !important;
}
.btn__share a {
  background: #ffe728;
  color: #111;
  padding: calc(0.367em + 2px) calc(2.333em + 2px);
  font-size: 1em;
}
.btn__share a:hover {
  background: #fee203;
}

.ld-progress-bar .ld-progress-bar-percentage {
  background: #FF6016;
}

#certificate_list .bb-certificate-wrap:before {
  background-color: #ffe55c !important;
}

/* --------------------------------
 非表示設定
-------------------------------- */
#xprofile-settings-default-data,
.li#export-personal-li.bp-personal-sub-tab,
.bbp_topic_tags_wrapper,
.header-total-reply-count,
.bb-course-type,
#profile-edit-form ul li:nth-child(2) {
  display: none !important;
}

.bb-course-points {
  text-indent: -9999px;
}

.bbp-form legend {
  display: none !important;
}

#bbp-forum-0 {
  display: none;
}

.bbp-pagination.bbp-pagination {
  display: none !important;
}

#activation-form label {
  color: #fff;
}
#activation-form #key {
  display: none !important;
}

/* --------------------------------
 Footer Caption
-------------------------------- */
#page .footer-bottom {
  padding-top: 20px !important;
}

.footer__caption {
  padding: 1em 0 0;
  text-align: left;
}
.footer__caption .flex {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.footer__caption .flex p {
  font-size: 0.8rem;
  margin: 0 3em 0 0;
  line-height: 1.5;
}
.footer__caption .flex div {
  margin-right: 2em;
}
.footer__caption .flex div img {
  height: 40px;
  width: auto;
}
.footer__caption .flex div.himawari {
  margin-left: auto;
}
.footer__caption .flex div.himawari img {
  height: 77px;
  width: auto;
}
@media screen and (max-width: 600px) {
  .footer__caption {
    padding: 1em 0 0;
  }
  .footer__caption .flex {
    flex-wrap: wrap;
  }
  .footer__caption .flex p {
    text-align: center;
    width: 100%;
    font-size: 0.7rem;
    margin: 1em auto;
    line-height: 1.5;
  }
  .footer__caption .flex div {
    width: 50%;
    margin: 0;
    text-align: center;
  }
  .footer__caption .flex div img {
    height: 36px;
    width: auto;
  }
  .footer__caption .flex div.himawari {
    margin-right: auto;
  }
}
/*# sourceMappingURL=custom.css.map */