@charset "UTF-8";
/* フォントフェースの定義 */
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* 全体へのフォント適用 */
body,
body * {
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  /* デフォルトのウェイト */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#site-header {
  z-index: 99999;
}

ul, li {
  list-style: none;
  margin: 0;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.justify-content-center {
  justify-content: space-center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.aligin-itemes-center {
  align-items: center;
}

.aligin-itemes-stretch {
  align-items: stretch;
}

.under-line_120 {
  position: relative;
}
.under-line_120::after {
  position: absolute;
  content: "";
  width: 140%;
  left: 50%;
  bottom: -10%;
  border-bottom: 2px solid grey;
  transform: translateX(-50%);
  transition: width 1.5s ease;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.text-color-green {
  color: #0f0;
}

.text-color-blue {
  color: #00f;
}

.text-small {
  font-size: 0.8em;
}

.fw-bold {
  font-weight: bolder;
}

.fa-solid.fa-square-check, .fa-solid.fa-droplet {
  margin-right: 0.5em;
}

br.sp {
  display: none;
}
@media (max-width: 782px) {
  br.sp {
    display: block;
  }
}

/*************************************************************************************************************************/
.progress_hover {
  position: relative;
  overflow: hidden;
  color: #222;
  background-color: transparent;
}
.progress_hover span {
  position: relative;
  z-index: 1;
}
.progress_hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #ff0;
  z-index: 0;
  transition: width 0.5s ease;
}
.progress_hover:hover::before {
  width: 100%;
}

/*************************************************************************************************************************/
section {
  padding: 2rem 0;
}
@media (max-width: 782px) {
  section {
    padding: 1rem 0;
  }
}

#challenge-course-wrap {
  padding: 5rem 0;
}
#challenge-course-wrap p, #challenge-course-wrap li {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2;
}
#challenge-course-wrap table {
  border: 1px solid black;
}
#challenge-course-wrap table th a {
  color: #fff;
}
#challenge-course-wrap table td {
  font-size: 0.9em;
}

.section-body li {
  list-style: decimal !important;
}

.recruit_navigation {
  border-top: 2px solid grey;
  margin-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.recruit_navigation > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit_navigation > div a {
  width: 45%;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  padding: 1.5em 1.5rem;
  border: 1px solid grey;
  background: rgba(255, 255, 0, 0.2);
  margin: 0 auto 2rem;
}
.recruit_navigation > div a:hover {
  background: rgba(255, 255, 0, 0.7);
}
@media (max-width: 782px) {
  .recruit_navigation > div a {
    width: 45%;
  }
}
.recruit_navigation h4 {
  text-align: center;
  font-weight: bold;
  font-weight: 1.5em;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.navigation_link {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem auto;
}
.navigation_link .person_img_n3r {
  position: absolute;
  right: 0em;
  bottom: 0;
  height: 200%;
}
@media (max-width: 782px) {
  .navigation_link a {
    margin-bottom: 1.5rem;
  }
  .navigation_link .person_img_n3r {
    height: 100%;
    right: -8rem;
  }
}

.answer-bubble .answer-content, .question-bubble .question-content {
  position: relative;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 70%;
  margin: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.answer-bubble .answer-content::after, .question-bubble .question-content::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 15px;
}

.answer-bubble .answer-avatar, .question-bubble .question-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.question-bubble {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.question-bubble .question-avatar {
  background-color: rgba(0, 255, 0, 0.3);
  margin-right: 10px;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.question-bubble .question-content {
  background-color: rgba(0, 255, 0, 0.3);
  color: black;
  border-radius: 18px 18px 18px 5px;
  order: 2;
}
.question-bubble .question-content::after {
  left: -8px;
  border-right: 12px solid rgba(0, 255, 0, 0.3);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.answer-bubble {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 20px;
}
.answer-bubble .answer-avatar {
  background-color: #ff0;
  margin-left: 10px;
  order: 2;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.answer-bubble .answer-avatar img {
  height: 100%;
}
.answer-bubble .answer-content {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
  border-radius: 18px 18px 5px 18px;
  order: 1;
}
.answer-bubble .answer-content::after {
  right: -8px;
  border-left: 12px solid #f8f9fa;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.answer-bubble .answer-content div {
  line-height: 1.5;
}
.answer-bubble .answer-content div:not(:last-child) {
  margin-bottom: 8px;
}
.answer-bubble .answer-content .answer-content_link {
  display: flex;
  justify-content: end;
}
.answer-bubble .answer-content .answer-content_link a {
  padding: 0.25em 1em;
  border: 1px solid gray;
  border-radius: 5px;
  margin: 0.25em 0.5em;
  text-decoration: none;
  color: black;
  background-color: rgba(255, 255, 0, 0.3);
}
.answer-bubble .answer-content .answer-content_link a:hover {
  background-color: rgba(255, 255, 0, 0.7);
}

@media (max-width: 768px) {
  .question-bubble .bubble,
  .answer-bubble .bubble {
    max-width: 85%;
    padding: 10px 14px;
  }
  .question-bubble .avatar,
  .answer-bubble .avatar {
    width: 40px;
    height: 40px;
  }
}
#benefits_wrap .h4, #chllenge_wrap .h4 {
  display: flex;
  align-items: end;
  margin-bottom: 2em;
}
#benefits_wrap .h4 span, #chllenge_wrap .h4 span {
  font-size: 2.5rem;
}
#benefits_wrap .h4 img, #chllenge_wrap .h4 img {
  height: 8em;
  margin-left: 2em;
}
@media (max-width: 768px) {
  #benefits_wrap .h4, #chllenge_wrap .h4 {
    justify-content: space-between;
  }
  #benefits_wrap .h4 span, #chllenge_wrap .h4 span {
    font-size: 1.5rem;
  }
  #benefits_wrap .h4 img, #chllenge_wrap .h4 img {
    height: 5em;
  }
}
#benefits_wrap ul, #chllenge_wrap ul {
  margin-left: 2em;
  margin-bottom: 3em;
}
#benefits_wrap > div, #chllenge_wrap > div {
  margin-bottom: 3em;
}
#benefits_wrap strong.show_up, #chllenge_wrap strong.show_up {
  font-size: 1.25em;
  text-decoration: underline;
}

#relax_wrap .h4, #relax_wrap .fs-4 {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
  font-size: 2.5rem !important;
}
@media (max-width: 768px) {
  #relax_wrap .h4, #relax_wrap .fs-4 {
    font-size: 1.5rem !important;
  }
}
#relax_wrap .h4 span, #relax_wrap .fs-4 span {
  font-size: 2.5rem;
}
#relax_wrap .h4 img, #relax_wrap .fs-4 img {
  height: 8em;
  margin-left: 2em;
}
@media (max-width: 768px) {
  #relax_wrap .h4, #relax_wrap .fs-4 {
    justify-content: space-between;
  }
  #relax_wrap .h4 span, #relax_wrap .fs-4 span {
    font-size: 1.5rem;
  }
  #relax_wrap .h4 img, #relax_wrap .fs-4 img {
    height: 5em;
  }
}
#relax_wrap ul {
  margin-left: 1.5em;
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  #relax_wrap ul {
    margin-left: 1em;
  }
}
#relax_wrap > div {
  margin-bottom: 3em;
}/*# sourceMappingURL=challenge-course.css.map */