p {
  font-size: 16px;
  color: #231815;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
  }
}

.for_measure {
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
}

.wrapper {
  overflow: hidden;
  background: #fad7d1;
  padding-inline: 20px;
}

.ref {
  font-size: 13px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .ref {
    font-size: 12px;
  }
}

.scroller {
  max-height: 100%;
}

.text {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 14px;
  }
}
.text.is-sm {
  font-size: 14px;
}

.lead {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 15px;
  }
}
.lead.is-lg {
  font-size: 22.4px;
}
@media screen and (max-width: 450px) {
  .lead.is-lg {
    font-size: 15px;
  }
}

.text_list.is-wide li:not(:first-of-type) {
  margin-top: 30px;
}
.text_list.is-shallow li:not(:first-of-type) {
  margin-top: 2px;
}
.text_list li {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .text_list li {
    font-size: 14px;
    padding-left: 20px;
  }
}
.text_list li:not(:first-of-type) {
  margin-top: 10px;
}
.text_list li:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #EFB21B;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .text_list li:before {
    top: 5px;
    width: 12px;
    height: 12px;
  }
}

.check_list li {
  font-size: 15.5px;
  font-weight: 700;
  position: relative;
  padding-left: 37px;
}
.check_list li:not(:first-of-type) {
  margin-top: 20px;
}
.check_list li:before {
  content: "";
  display: block;
  width: 29px;
  height: 27px;
  min-width: 29px;
  background: url(../img/common/icon_check.png) center/contain no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}

.reports {
  width: min(100% - 40px, 800px);
  margin-inline: auto;
}
@media screen and (max-width: 900px) {
  .reports {
    width: 607px;
  }
}
@media screen and (max-width: 768px) {
  .reports {
    width: 398px;
  }
}
@media screen and (max-width: 500px) {
  .reports {
    width: 320px;
  }
}
.reports li {
  padding-top: 10px;
  margin-inline: 10px;
}
.reports a {
  text-decoration: none;
  width: 100%;
}
.reports a:hover .img_report_profile {
  transform: translateY(-10px);
}
.reports .img_report_profile {
  width: 100%;
  transition: transform 0.3s;
}
.reports .card_info {
  padding-inline: 10px;
  padding-top: 15px;
}
.reports .card_text {
  padding-block: 2px;
  padding-inline: 5px;
  font-size: 14px;
  font-weight: 700;
  display: inline;
  background: white;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.reports .card_profile {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.link_more {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.link_more:hover:before {
  width: 100%;
}
.link_more:before {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #231815;
  transition: width 0.3s;
}
.link_more:after {
  content: "";
  display: block;
  width: 9px;
  height: 15px;
  background: url(../img/common/icon_link_arrow.png) center/contain no-repeat;
}

.btn_back {
  border: solid 2px #231815;
  background: #68a8dd;
  padding-block: 10px;
  padding-inline: 30px;
  font-size: 22px;
  border-radius: 50px;
  margin-inline: auto;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 4px;
  display: block;
  transition: scale 0.3s;
}
.btn_back:hover {
  scale: 1.1;
}

.qa_list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.qa_list .qa_item {
  text-align: left;
  padding-block: 15px;
  padding-inline: 25px;
  text-decoration: none;
  width: calc((100% - 40px) / 3);
  border: solid 3px #231815;
  border-radius: 50px;
  background: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  transition: scale 0.3s;
}
@media screen and (max-width: 900px) {
  .qa_list .qa_item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 450px) {
  .qa_list .qa_item {
    width: 100%;
  }
}
.qa_list .qa_item:hover {
  scale: 1.1;
}
.qa_list .qa_item:before {
  content: "";
  display: block;
  width: 35px;
  height: 40px;
  background: url(../img/common/icon_q.png) center/contain no-repeat;
  min-width: 35px;
}

.column_list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (max-width: 450px) {
  .column_list {
    row-gap: 15px;
  }
}
.column_list a {
  text-decoration: none;
  border: solid 3px #231815;
  border-radius: 50px;
  background: white;
  overflow: hidden;
  transition: scale 0.3s;
  column-gap: 25px;
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 767px) {
  .column_list a {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 450px) {
  .column_list a {
    border-radius: 30px;
    width: calc((100% - 15px) / 2);
  }
}
.column_list a:hover {
  scale: 1.05;
}
.column_list a .column_thumb {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .column_list a .column_thumb {
    height: 110px;
  }
}
.column_list a .column_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.column_list a .column_text {
  font-size: 19px;
  font-weight: 700;
  padding: 10px 20px 20px;
}
@media screen and (max-width: 450px) {
  .column_list a .column_text {
    font-size: 14px;
    padding: 10px 10px 20px;
  }
}

.exercise_list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 30px;
}
@media screen and (max-width: 450px) {
  .exercise_list {
    row-gap: 15px;
    column-gap: 15px;
  }
}
.exercise_list a {
  text-decoration: none;
  border: solid 3px #231815;
  border-radius: 50px;
  background: white;
  overflow: hidden;
  transition: scale 0.3s;
  column-gap: 25px;
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 767px) {
  .exercise_list a {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 450px) {
  .exercise_list a {
    border-radius: 30px;
    width: calc((100% - 15px) / 2);
  }
}
.exercise_list a:hover {
  scale: 1.05;
}
.exercise_list a .exercise_thumb {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .exercise_list a .exercise_thumb {
    height: 110px;
  }
}
.exercise_list a .exercise_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.exercise_list a .exercise_text {
  font-size: 19px;
  font-weight: 700;
  padding: 10px 20px 40px;
}
@media screen and (max-width: 450px) {
  .exercise_list a .exercise_text {
    font-size: 14px;
    padding: 10px 10px 20px;
  }
}

.ref {
  font-size: 10px;
  font-weight: 700;
}

.loading {
  background: #FED7D1;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  row-gap: 20px;
}
.loading .loading_img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .loading .loading_img {
    width: 60px;
  }
}
.loading .loading_text {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .loading .loading_text {
    font-size: 14px;
  }
}

.news {
  background: #FED7D1;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  row-gap: 20px;
  display: none;
}
.news .news_text {
  font-weight: 700;
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  .news .news_text {
    font-size: 18px;
  }
}
.news .news_msg {
  text-align: center;
  color: #ff726d;
  font-size: 48px;
  font-weight: 700;
  -webkit-text-stroke: 4px #231815;
  position: relative;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .news .news_msg {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .news .news_msg {
    -webkit-text-stroke: 3px #231815;
  }
}
.news .news_msg span {
  -webkit-text-stroke: 0 #ff726d;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.news .news_notice {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news .news_notice {
    font-size: 14px;
  }
}

.line-dot {
  height: 3px;
  width: 100%;
  background: url(../img/common/line_dot.png) top left/auto 100% repeat-x;
}