.flexCenterCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexBetCenter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flexEndCenter {
  display: flex;
  justify-content: end;
  align-items: center;
}

.flexBetEnd {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.flexBetStretch {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.flexCenterStretch {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.flexStartStretch {
  display: flex;
  justify-content: start;
  align-items: stretch;
}

.flexCenterEnd {
  display: flex;
  justify-content: center;
  align-items: end;
}

.flexStartStrech {
  display: flex;
  justify-content: start;
  align-items: stretch;
}

.flexStartEnd {
  display: flex;
  justify-content: start;
  align-items: end;
}

.flexStartCenter {
  display: flex;
  justify-content: start;
  align-items: center;
}

.flexStartStart {
  display: flex;
  justify-content: start;
  align-items: start;
}

.flexCenterCenterVer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flexStartCenterVer {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.flexStartStartVer {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

.flexCenterStartVer {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.flexCenterEndVer {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.flexBetCenterVer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

main {
  width: 100%;
  height: 100vh;
}

.background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background-top {
  background-image: url(../img/top.svg);
}
.background-typing {
  background-image: url(../img/typing.png);
}
.background-reviewTest {
  background-image: url(../img/reviewTest.png);
}
.background-ondoku {
  background-image: url(../img/ondoku.png);
}
.background-event {
  background-image: url(../img/event.png);
}
.background-news {
  background-image: url(../img/news.png);
}
.background-lesson {
  background-image: url(../img/lesson.svg);
  background-repeat: repeat;
}

.inner {
  width: 95%;
  margin: auto;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header_logo {
  width: 200px;
  height: auto;
  border: none;
}
.header_text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  padding: 7.5px 30px;
  line-height: 1;
  background: #38A9FF;
  border: 1.5px solid #fff;
  border-radius: 18.639px;
  cursor: pointer;
}
.header_inner {
  width: 95%;
  margin: 5px auto;
}
.header_logout {
  display: none;
}
.header_logout.active {
  display: block;
  background: #38A9FF;
  border: 1.5px solid #fff;
  color: #fff;
  text-align: center;
  margin: 7.5px 0 0 auto;
  padding: 10px 40px;
  line-height: 1;
  font-weight: 700;
  border-radius: 18.639px;
}

.login {
  background-image: url(../img/login.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 100%;
}
.login_label {
  font-size: 29px;
  color: #fff;
  font-weight: 900;
  padding-left: 20px;
  margin-bottom: 5px;
  display: block;
}
.login_input {
  width: calc(100% - 40px);
  height: 97.7594px;
  border-radius: 5px;
  border: none;
  padding: 0 20px;
  margin: auto;
  font-size: 26.5px;
  font-weight: 900;
}
.login_input::-webkit-input-placeholder {
  color: #B2B2B2;
}
.login_input:-moz-placeholder {
  color: #B2B2B2;
}
.login_input::-moz-placeholder {
  color: #B2B2B2;
}
.login_input:-ms-input-placeholder {
  color: #B2B2B2;
}
.login_inner {
  width: 597.42px;
  height: 541.8965px;
  margin: auto;
}
.login_form {
  width: 100%;
  height: 100%;
}
.login_item {
  width: 100%;
}
.login_item-id {
  margin-bottom: 25px;
}
.login_item-pass {
  margin-bottom: 20px;
}
.login_item-check {
  margin-bottom: 40px;
}
.login_check {
  display: none;
  position: relative;
}
.login_check + label {
  padding-left: 40px;
  position: relative;
}
.login_check + label::before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-radius: 4px;
  background-color: transparent;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.login_check:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  width: 14px;
  height: 7px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: white;
  transform: rotate(-45deg);
  left: 5.5px;
  top: 2.5px;
}
.login_label-check {
  font-size: 19.86px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.login_btn {
  width: 302.4716px;
  height: 81.5662px;
  border-radius: 44.1611px;
  border: 3.5px solid white;
  background: #F37853;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}
.login_link {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.top {
  height: 100%;
  width: 100%;
  margin: auto;
}
.top_wrap {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.top_wrap span {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: 48%;
  top: 35%;
  width: 100%;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  color: #42210B;
}
.top_wrap-event {
  top: 24%;
  left: 6%;
}
.top_wrap-lesson {
  top: 30%;
  right: 5%;
}
.top_wrap-typing {
  left: 5%;
  bottom: 3%;
}
.top_wrap-ondoku {
  right: 7.5%;
  bottom: 3%;
}
.top_wrap-library {
  top: 2.35%;
  right: 35%;
  z-index: 1;
}
.top_span-library {
  font-size: 25px;
}
.top_inner {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.top_btn {
  position: absolute;
  display: block;
  z-index: 4;
}
.top_btn-event {
  width: 31%;
  height: 38%;
  left: 6%;
  top: 0;
}
.top_btn-lesson {
  width: 31%;
  height: 39%;
  top: 4%;
  right: 4%;
}
.top_btn-typing {
  width: 25%;
  height: 54%;
  left: 1%;
  bottom: 3%;
}
.top_btn-ondoku {
  width: 25%;
  height: 47.5%;
  right: 2%;
  bottom: 3%;
}
.top_btn-library {
  width: calc((100vw - 120px) * 250 / 1920);
  height: 10%;
  top: 2%;
  right: 35%;
  z-index: 101;
}
.top_mainImg {
  width: 97.5%;
  margin: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.top_img {
  width: calc((100vw - 120px) * 377 / 1920);
}
.top_img-news {
  width: calc((100vw - 120px) * 550 / 1920);
}
.top_img-library {
  width: calc((100vw - 120px) * 250 / 1920);
}
.top_news {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 27%;
  z-index: 3;
}
.top_texts {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  top: 45%;
}
.top_texts .flexStartStartVer {
  width: 77.5%;
  margin: 0 auto;
}
.top_heading {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 25px;
  font-weight: 900;
  color: #42210B;
  text-align: center;
  line-height: 1;
  margin-bottom: 12.5px;
  border: 2px solid #8E610D;
  padding: 5px 40px;
  border-radius: 30px;
}
.top_link {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #42210B;
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title {
  width: 25%;
  position: absolute;
  top: -30px;
  left: -35px;
}
.title_text {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 22.5%;
  font-size: 20px;
  color: white;
  font-weight: 900;
  width: 100%;
  text-align: center;
}
.title_text-lesson {
  font-size: 20px;
  top: 24%;
}
.title_text-taipingu {
  font-size: 18px;
}
.title_text-result {
  font-size: 25px;
  top: 10%;
  line-height: 1.2;
}
.title_text-result span {
  font-size: 20px;
}
.title_img {
  width: 100%;
}
.title-taipingu {
  width: 20%;
  top: -5%;
  left: 30px;
}
.title-nokeybord {
  width: 20%;
  top: 0;
  left: 30px;
}
.title-result {
  width: 40%;
  top: -12.5%;
  left: 50%;
  max-width: 500px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.content {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.content-top {
  height: calc(100vh - 120px);
  width: 100%;
}
.content-test {
  height: calc(100vh - 120px);
  width: 100%;
}
.content-noTitle {
  height: calc(100vh - 170px);
  width: 100%;
}
.content-lesson {
  justify-content: start;
}
.content_inner {
  width: 85%;
  opacity: 0;
  background-image: url(../img/taipinguMenu.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin: auto;
}
.content_inner-testResult {
  width: 87.5%;
  height: 46.4282210595vw;
}
.content_inner-noBack {
  width: 87.5%;
  background: none;
}

.menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.menu_item {
  margin-bottom: 10px;
}
.menu_item-next {
  background: #FFF;
  border: 1px solid #000;
}
.menu_item-img {
  position: relative;
  width: 12%;
  margin-bottom: 0px;
}
.menu_item-img a {
  position: absolute;
  top: 22.5%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #42210B;
  font-size: 23px;
  font-weight: 900;
}
.menu_item-btn {
  width: 50%;
}
.menu_list {
  gap: 30px;
}
.menu_list-right {
  gap: 15px;
  width: 25%;
  min-width: 500px;
}
.menu_wrap {
  width: 100%;
}
.menu_link-left {
  display: block;
  background: #8E610D;
  color: #fff;
  font-size: 27.5px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  padding: 10px 75px;
  border-radius: 30px;
  border: 2px solid white;
  position: relative;
}
.menu_link-left::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: white;
  transform: rotate(45deg);
  left: 15px;
  top: 15px;
}

.menu_link-top {
  display: block;
  background: #8E610D;
  color: #fff;
  font-size: 27.5px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  padding: 10px 75px;
  border-radius: 30px;
  border: 2px solid white;
  position: relative;
}
.menu_link-top::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: white;
  transform: rotate(45deg);
  left: 15px;
  top: 15px;
}
.menu_img {
  width: 100%;
}
.menu_btn {
  display: block;
  font-size: 29px;
  font-weight: 900;
  text-align: center;
  padding: 10px 25px;
  line-height: 1;
}
.menu_btn-1 {
  color: white;
  background: #0071BB;
  border-radius: 30px;
  border: 3px solid white;
}
.menu_btn-2 {
  color: white;
  background: #FF3056;
  border-radius: 30px;
  border: 3px solid white;
}

.taipinguMenu_inner {
  width: 82.5%;
  height: 77.5%;
  position: relative;
  overflow-y: scroll;
}
.taipinguMenu_inner-2 {
  height: 55%;
  overflow-x: hidden;
}
.taipinguMenu_list {
  margin: auto;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 10px;
}
.taipinguMenu_list-1 {
  gap: 25px;
  margin-bottom: 30px;
}
.taipinguMenu_list-2 {
  gap: 30px 50px;
  padding-top: 20px;
  counter-reset: number 0;
}
.taipinguMenu_item {
  position: relative;
}
.taipinguMenu_item-1 {
  width: calc(25% - 30px);
}
.taipinguMenu_item-1 a {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 10px 0px #C69600);
  background: linear-gradient(0deg, #E6DBB6 8%, #EBE0C0 10%, #F6EDD7 16%, #FCF5E5 21%, #FFF8EA 25%, #FFF9EF 30%, #FFFDFB 43%, #FFF 57%);
  border-radius: 20px;
  border: 5px solid #C69600;
  padding: 22.5px 0;
}
.taipinguMenu_item-2 {
  width: calc(20% - 55px);
}
.taipinguMenu_item-2 a {
  width: 100%;
  display: block;
  background: linear-gradient(0deg, #E6DBB6 8%, #EBE0C0 11%, #F6EDD7 19%, #FCF5E5 27%, #FFF8EA 33%, #FFF 65%);
  border-radius: 50%;
  border: 5px solid #8E610D;
  padding: 0;
}
.taipinguMenu_item-2 a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.taipinguMenu_item-2 a::after {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  color: white;
  background: #8E610D;
  top: 0;
  right: -10%;
  font-size: 32.5px;
  font-weight: 900;
  border-radius: 50%;
  line-height: 1;
  width: 35%;
  padding: 7.5% 0px 10%;
  text-align: center;
}
.taipinguMenu_item-1gray a {
  filter: drop-shadow(0px 10px 0px #856920);
}
.taipinguMenu_item-1gray a::before {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: rgba(21, 21, 21, 0.3137254902);
  border-radius: 20px;
  z-index: 1;
}
.taipinguMenu_item-2gray a::before {
  position: relative;
  background: rgba(21, 21, 21, 0.3137254902);
  width: 100%;
  border-radius: 50%;
  z-index: 5;
}
.taipinguMenu_item-2gray a::after {
  color: #ADABA9;
  background: #5F4517;
  z-index: 2;
}
.taipinguMenu_img-category1 {
  height: 10.5263157895vh;
  margin: 0 auto;
  display: block;
}
.taipinguMenu_img-category1-done {
  height: 7.6923076923vh;
  margin-bottom: 10px;
}
.taipinguMenu_img-category2 {
  width: 50%;
  margin: 0 auto;
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.taipinguMenu_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.taipinguMenu_text {
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
}
.taipinguMenu_text-2 {
  margin: 0;
}
.taipinguMenu_titleImg {
  width: 30%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -17.5%;
}
.taipinguMenu_heading {
  font-size: 38px;
  font-weight: 900;
  background: #8E610D;
  padding: 20px 0;
  width: 75%;
  line-height: 1;
  border-radius: 50px;
  text-align: center;
  color: white;
}
.taipinguMenu_wrap {
  position: relative;
  margin: 0px auto 40px;
  width: 50%;
}

.taipingu {
  position: relative;
  margin: auto;
  height: 100%;
}
.taipingu_img {
  width: 200px;
  display: block;
}
.taipingu_img-keyboard {
  width: 42.5%;
}
.taipingu_movie {
  width: 80%;
  height: 80%;
  border: 1px solid #000;
}
.taipingu_wrap {
  width: 90%;
  height: 100%;
  background: white;
  margin-bottom: 20px;
  border-radius: 20px;
}
.taipingu_wrap-nokeybord {
  height: 85%;
  padding-top: 40px;
}
.taipingu_texts {
  color: #42210B;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
}
.taipingu_text {
  color: #8E610D;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.taipingu_text-start {
  font-size: 40px;
  color: #42210B;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid #8E610D;
  line-height: 1;
  padding: 25px 75px;
  letter-spacing: 0.25em;
}
.taipingu_card {
  border: 1px solid #42210B;
  padding: 20px 0 0;
  color: #42210B;
  text-align: center;
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
  display: block;
  width: 125px;
  margin-right: 15px;
  overflow: hidden;
  line-height: 166px;
  height: 166px;
  display: block;
}
.taipingu_card-bottom span {
  display: block;
  line-height: 1;
  margin-top: -25px;
}
.taipingu_moji {
  color: #42210B;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.taipingu_moji-space {
  border-right: 3.5px solid #42210B;
  border-bottom: 3.5px solid #42210B;
  border-left: 3.5px solid #42210B;
  width: 3%;
  height: 12.5px;
}
.taipingu_moji-mane {
  margin-bottom: 5px;
  margin: 0 auto 10px;
  padding: 0;
}
.taipingu_list {
  flex-wrap: wrap;
  gap: 5px 10px;
  width: 85%;
  max-width: 1200px;
  margin: auto;
}
.taipingu_list-mane {
  margin: 0;
}
.taipingu_list-nokeybord {
  margin: auto;
}
.taipingu_group {
  width: 100%;
  margin: auto;
}
.taipingu_group-borderB {
  position: relative;
}
.taipingu_group-borderB::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  background: #42210B;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.taipingu_gatya {
  color: #42210B;
  text-align: center;
  font-size: 140px;
  font-weight: 400;
  width: 121.929px;
  padding: 0;
  border: 3px solid #42210B;
  background: #FFF;
  line-height: 166px;
  height: 166px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  overflow: hidden;
}
.taipingu_gatya-bottom p {
  margin-bottom: 50px;
}
.taipingu_mane {
  max-width: 1200px;
  width: 85%;
  margin: 20px auto 20px;
  border-bottom: 1px solid #42210B;
}
.taipingu_line {
  width: 82.5%;
  margin: auto;
  height: 1px;
  background: #42210B;
}
.taipingu_tango {
  color: #42210B;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.taipingu_imgs {
  margin-right: 50px;
}
.taipingu_imgs img {
  margin: auto -15px;
}

#space_line:not(:has(.active)) {
  display: none;
}

#a_line:not(:has(.active)) {
  display: none;
}

#a_line g:not(.active) {
  display: none;
}

#q_line:not(:has(.active)) {
  display: none;
}

#q_line g:not(.active) {
  display: none;
}

#z_line:not(:has(.active)) {
  display: none;
}

#z_line g:not(.active) {
  display: none;
}

#space_line-2:not(:has(.active)) {
  display: none;
}

#a_line-2:not(:has(.active)) {
  display: none;
}

#a_line-2 g:not(.active) {
  display: none;
}

#q_line-2:not(:has(.active)) {
  display: none;
}

#q_line-2 g:not(.active) {
  display: none;
}

#z_line-2:not(:has(.active)) {
  display: none;
}

#z_line-2 g:not(.active) {
  display: none;
}

.active g {
  display: block !important;
}

.typing_title {
  color: #42210B;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
}
.typing_title-sentence {
  margin-bottom: 10px;
}
.typing_texts {
  position: relative;
  height: 62.5%;
}
.typing_coution {
  position: absolute;
  top: 60%;
  left: -60px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #42210B;
  width: 50px;
}
.typing_text {
  line-height: 1;
  color: #42210B;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 110px;
  font-weight: 500;
  min-width: 150px;
}
.typing_text span {
  border-bottom: 7.5px solid #42210B;
  width: 50px;
  display: block;
  margin: 0 7.5px;
}
.typing_kanji {
  position: relative;
}
.typing_rubi {
  font-size: 22.5px;
  font-weight: 400;
  position: absolute;
  width: 100%;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.taipinguResult_inner {
  background: white;
  border-radius: 20px;
  width: 90%;
  height: 90%;
  margin: auto;
  position: relative;
}
.taipinguResult_inner-last {
  height: 575px;
}
.taipinguResult_title {
  width: 57.5%;
  position: absolute;
  top: -90px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.taipinguResult_wrap-top {
  margin-bottom: 20px;
}
.taipinguResult_wrap-middle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 2.5%;
}
.taipinguResult_wrap-bottom {
  gap: 20px;
  width: 90%;
  margin: 0 auto 2.5%;
}
.taipinguResult_list {
  gap: 10px;
}
.taipinguResult_heading {
  font-size: 130px;
  font-weight: 900;
  color: #42210B;
  margin-left: 20px;
  line-height: 1;
  margin-left: 30px;
}
.taipinguResult_heading-small {
  font-size: 72.5px;
  font-weight: 700;
}
.taipinguResult_heading-big {
  font-size: 97.5px;
  margin-top: 4%;
  text-align: center;
}
.taipinguResult_coution {
  color: white;
  font-size: 30px;
  font-weight: 900;
  background: #8E610D;
  padding: 7.55px 40px;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 40px;
}
.taipinguResult_number {
  color: #42210B;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.taipinguResult_unit {
  text-align: center;
  border: 2px solid #8E610D;
  width: calc(50% - 10px);
  padding: 20px 0 10px;
  border-radius: 20px;
}
.taipinguResult_text {
  color: #42210B;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
.taipinguResult_text-big {
  color: #42210B;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  width: 30%;
}
.taipinguResult_text-small {
  color: #42210B;
  font-size: 30px;
  font-weight: 700;
  height: 100%;
}
.taipinguResult_text span {
  display: block;
  margin-left: 40px;
}
.taipinguResult_img {
  width: 37.5%;
  margin: 0 auto;
  display: block;
}
.taipinguResult_img-again {
  width: 70%;
}
.taipinguResult_img-perfect {
  width: 50%;
}
.taipinguResult_texts {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  height: 10%;
}

:root {
  --score: 0;
}

.rate {
  position: relative;
  width: calc(498.5665px + 0.4em);
  height: 99.7133px;
  font-size: 99.7133px;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1;
}
.rate-result {
  color: #FF3056;
  position: absolute;
  top: 0;
  left: 0;
}
.rate-default {
  color: #c4c4c4;
}
.rate-last {
  margin: 50px auto 30px;
}

.reviewTest {
  position: relative;
}
.reviewTest_img {
  width: 791px;
  height: 433px;
}
.reviewTest_btn {
  color: #42210B;
  background: #FFEF00;
  border-radius: 50px;
  border: 3px solid #C69600;
  margin-top: 15px;
  text-align: center;
  font-size: 22.5px;
  font-weight: 900;
  width: 22.5%;
  height: 7.5%;
}
.reviewTest_inner {
  width: 85%;
  height: 75%;
  position: relative;
  margin: 25px auto 0;
  background: white;
  border-radius: 20px;
}

.reviewMaster_graph {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 38%;
  height: 76%;
  font-weight: 700;
  background-image: radial-gradient(#f2f2f2 30%, transparent 31%), conic-gradient(#00C2C4 0% var(--graph), #d9d9d9 var(--graph) 100%);
  border-radius: 50%;
  position: relative;
  vertical-align: bottom;
}
.reviewMaster_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  vertical-align: bottom;
}
.reviewMaster_text-small {
  line-height: 2;
  font-size: 40px;
  vertical-align: bottom;
}

.lesson {
  width: 82.5%;
  height: 100%;
  position: relative;
  margin: auto;
}
.lesson_inner {
  width: 100%;
  height: 85vh;
  margin-top: 10%;
  position: relative;
  margin: 2.5% auto auto;
  overflow: scroll;
}
.lesson_movie {
  width: 100%;
  height: 100%;
}

circle[class^=active] {
  display: none;
}

.testResult {
  width: 90%;
  margin: 0 auto 0;
  overflow: hidden;
}
.testResult_img {
  display: block;
  margin: 0 auto;
  min-width: 250px;
}
.testResult_img-1 {
  width: 27.5%;
}
.testResult_img-2 {
  width: 25%;
}
.testResult_wrap {
  background: white;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 72.5%;
}
.testResult_wrap-scroll {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testResult_table {
  flex: 1;
  overflow-y: auto;
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
  overflow-y: scroll;
}
.testResult_thead {
  padding: 0 5px 10px;
}
.testResult_thead span {
  font-size: 22.5px;
  font-weight: 900;
  color: #42210B;
  border: 2px solid #42210B;
  border-radius: 10px;
  text-align: center;
  display: block;
}
.testResult_thead-1 {
  width: 10%;
}
.testResult_thead-2 {
  width: 50%;
}
.testResult_thead-3, .testResult_thead-4 {
  width: 17%;
}
.testResult_tbody {
  margin: 0 10px;
}
.testResult_tr:nth-child(even) {
  background: #E8F3FF;
}
.testResult_tr:nth-child(odd) {
  background: #D8ECFF;
}
.testResult_td {
  font-size: 22.5px;
  font-weight: 900;
  color: #42210B;
  text-align: center;
  line-height: 1;
  padding: 10px 5px;
}
.testResult_td:not(:last-child) {
  border-right: 5px solid white;
}
.testResult_td-left {
  text-align: left;
  padding-left: 20px;
}

.reviewQuestion {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  width: 95%;
  height: 100%;
}
.reviewQuestion_item {
  width: 32px;
  height: 32px;
  border: 2px solid #42210B;
}
.reviewQuestion_item-active {
  background: #F37853;
  border: 2px solid #F37853;
  color: white;
}
.reviewQuestion_item-done {
  background: #42210B;
  border: 2px solid #42210B;
  color: white;
}
.reviewQuestion_link {
  color: #42210B;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 22.5px;
  font-weight: 700;
  line-height: 32px;
}
.reviewQuestion_link-active, .reviewQuestion_link-done {
  color: white;
}
.reviewQuestion_list {
  margin-bottom: 20px;
  gap: 7.5px;
  height: 32px;
}
.reviewQuestion_wrap {
  margin-bottom: 20px;
  width: 90%;
  height: 42.5%;
  border-radius: 15px;
}
.reviewQuestion_wrap-question {
  background: rgba(255, 255, 255, 0.262745098);
  margin: 10px auto;
}
.reviewQuestion_wrap-answer {
  background: white;
  margin: 10px auto;
}
.reviewQuestion_question, .reviewQuestion_answer {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}
.reviewQuestion_btns {
  width: 100%;
  margin-top: 1.5%;
}
.reviewQuestion_btn {
  display: block;
  color: #fff;
  font-size: 22.5px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  padding: 10px 6%;
  border-radius: 30px;
  position: relative;
}
.reviewQuestion_btn::before {
  position: absolute;
  width: 12.5px;
  height: 12.5px;
  border-bottom: 2.5px solid;
  border-left: 2.5px solid;
  border-color: white;
}
.reviewQuestion_btn-prev {
  background: #419FDD;
}
.reviewQuestion_btn-prev::before {
  content: "";
  transform: rotate(45deg);
  left: 17.5px;
  top: 15px;
}
.reviewQuestion_btn-next {
  background: #F37853;
}
.reviewQuestion_btn-next::before {
  content: "";
  transform: rotate(225deg);
  right: 17.5px;
  top: 15px;
}

.ondokuMenu {
  position: relative;
}
.ondokuMenu_inner {
  width: 80%;
  height: 60%;
  overflow-y: scroll;
  position: relative;
}
.ondokuMenu_inner-2 {
  height: 55%;
  overflow-x: hidden;
}
.ondokuMenu_list {
  margin: auto;
  flex-wrap: wrap;
  width: 100%;
}
.ondokuMenu_list-1 {
  gap: 40px;
}
.ondokuMenu_list-2 {
  gap: 30px 50px;
  padding-top: 40px;
  counter-reset: number 0;
}
.ondokuMenu_group {
  width: calc(20% - 55px);
}
.ondokuMenu_item {
  position: relative;
  width: calc(25% - 40px);
}
.ondokuMenu_item-1 a {
  height: 100%;
  filter: drop-shadow(0px 10px 0px #C69600);
  background: linear-gradient(0deg, #E6DBB6 8%, #EBE0C0 10%, #F6EDD7 16%, #FCF5E5 21%, #FFF8EA 25%, #FFF9EF 30%, #FFFDFB 43%, #FFF 57%);
  border-radius: 20px;
  border: 5px solid #C69600;
  padding: 22.5px 0;
}
.ondokuMenu_item-2 {
  width: 100%;
  background: linear-gradient(0deg, #E6DBB6 8%, #EBE0C0 11%, #F6EDD7 19%, #FCF5E5 27%, #FFF8EA 33%, #FFF 65%);
  border-radius: 50%;
  border: 5px solid #8E610D;
  padding: 0;
}
.ondokuMenu_item-2::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.ondokuMenu_item-1gray a {
  filter: drop-shadow(0px 12.5px 0px #856920);
}
.ondokuMenu_item-1gray a::before {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: rgba(21, 21, 21, 0.3137254902);
  border-radius: 20px;
  z-index: 1;
}
.ondokuMenu_item-2gray::before {
  background: rgba(21, 21, 21, 0.3137254902);
  width: 100%;
  border-radius: 50%;
  z-index: 1;
}
.ondokuMenu_item-2gray::after {
  color: #ADABA9;
  background: #5F4517;
  z-index: 2;
}
.ondokuMenu_img-category1 {
  width: 60%;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}
.ondokuMenu_img-category1-done {
  width: 27.5%;
  margin-bottom: 5%;
}
.ondokuMenu_img-category2 {
  width: 30%;
  margin: 0 auto;
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ondokuMenu_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ondokuMenu_text {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
  color: #42210B;
  letter-spacing: 0.1em;
}
.ondokuMenu_text-2 {
  margin: 0;
}
.ondokuMenu_text-brown {
  color: #8E610D;
  font-size: 32px;
  margin-left: 2.5px;
}
.ondokuMenu_titleImg {
  width: 30%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -17.5%;
}
.ondokuMenu_heading {
  font-size: 38px;
  font-weight: 900;
  background: #8E610D;
  padding: 20px 0;
  width: 75%;
  line-height: 1;
  border-radius: 50px;
  text-align: center;
  color: white;
}
.ondokuMenu_wrap {
  position: relative;
  margin: 0px auto 40px;
  width: 50%;
}
.ondokuMenu_content {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 10%;
  left: 12%;
  background: white;
  border-radius: 20px;
  z-index: 3;
}
.ondokuMenu_close {
  position: absolute;
  top: 5%;
  right: 4%;
  z-index: 4;
}

.icon-close {
  color: #42210B;
  width: 24px;
  height: 24px;
  position: relative;
}

.icon-close:before,
.icon-close:after {
  content: "";
  position: absolute;
  top: 0px;
  width: 39px;
  height: 4px;
  background-color: currentColor;
  z-index: 5;
}

.icon-close:before {
  transform: rotate(-45deg);
}

.icon-close:after {
  transform: rotate(45deg);
}

.event_inner {
  width: 75%;
}
.event_list {
  width: 100%;
  margin: auto;
  gap: 30px;
}
.event_item {
  width: 60%;
  position: relative;
}
.event_text {
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  color: #42210B;
  position: absolute;
  width: 100%;
  bottom: 22.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.event_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.newses {
  padding: 30px 0;
}
.newses_inner {
  width: 95%;
  max-width: 1200px;
}
.newses_wrap {
  background: white;
  border-radius: 20px;
  width: 100%;
  height: calc(100% - 60px);
  min-height: 525px;
}
.newses_pagenation {
  gap: 7.5px;
  margin-top: 20px;
}
.newses_unit {
  font-size: 29px;
  font-weight: 900;
  color: #42210B;
  text-align: center;
  line-height: 1;
  border: 2px solid #42210B;
  background: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.newses_unit-active {
  background: #42210B;
  color: white;
}
.newses_heading {
  font-size: 30px;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 1;
  margin-top: 20px;
  background: #F37853;
  padding: 10px 50px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
.newses_list {
  width: 95%;
  max-width: 1000px;
  margin: 50px auto 0;
  overflow-y: hidden;
}
.newses_item {
  padding: 0 5px 10px;
  border-bottom: 1px solid #42210B;
  margin-bottom: 30px;
}
.newses_date {
  font-size: 23px;
  font-weight: 700;
  color: #42210B;
  margin-right: 75px;
}
.newses_title {
  font-size: 24px;
  font-weight: 900;
  color: #42210B;
}

.news_inner {
  background: white;
  border-radius: 20px;
  width: 80%;
  height: calc(85% - 100px);
  max-height: 500px;
  margin: auto;
  padding: 50px 0;
}
.news_date {
  font-size: 19px;
  font-weight: 900;
  color: #42210B;
}
.news_title {
  font-size: 26px;
  font-weight: 900;
  color: #42210B;
  padding-bottom: 10px;
}
.news_texts {
  border-bottom: 1px solid #42210B;
  width: 90%;
  max-width: 1200px;
  margin: 0px auto 20px;
}
.news_text {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 20px;
  font-size: 23px;
  font-weight: 500;
  color: #42210B;
  line-height: 2;
}

.library {
  position: relative;
}
.library_inner {
  width: 85%;
  height: 60%;
  overflow-y: scroll;
  position: relative;
}
.library_inner-2 {
  width: 87.5%;
  height: 55%;
  overflow-x: hidden;
}
.library_list {
  margin: auto;
  flex-wrap: wrap;
  width: 100%;
}
.library_list-1 {
  gap: 30px;
}
.library_list-2 {
  gap: 20px;
}
.library_group {
  width: calc(20% - 20px);
}
.library_group a {
  width: 100%;
  display: block;
  padding-top: 100%;
  background-image: url(../img/typing_library.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.library_item {
  position: relative;
  width: calc(25% - 35px);
  padding-left: 10px;
}
.library_item-1 a {
  height: 100%;
  width: calc(100% - 50px);
  filter: drop-shadow(0px 10px 0px #C69600);
  background: linear-gradient(0deg, #E6DBB6 8%, #EBE0C0 10%, #F6EDD7 16%, #FCF5E5 21%, #FFF8EA 25%, #FFF9EF 30%, #FFFDFB 43%, #FFF 57%);
  border-radius: 20px;
  border: 5px solid #C69600;
  padding: 22.5px 25px;
}
.library_item-2 {
  position: absolute;
  width: 90%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding-left: 0px;
}
.library_text {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-top: 0px;
  color: #42210B;
  letter-spacing: 0.1em;
}
.library_text-2 {
  margin: 0;
}
.library_text-brown {
  color: #8E610D;
  font-size: 18px;
}
.library_titleImg {
  width: 30%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -17.5%;
}
.library_heading {
  font-size: 30px;
  font-weight: 900;
  background: #8E610D;
  padding: 20px 15px;
  width: 85%;
  line-height: 1.2;
  border-radius: 50px;
  text-align: center;
  color: white;
}
.library_wrap {
  position: relative;
  margin: 0px auto 40px;
  width: 50%;
}
.library_content {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 10%;
  left: 12%;
  background: white;
  border-radius: 20px;
  z-index: 3;
}
.library_close {
  position: absolute;
  top: 5%;
  right: 4%;
  z-index: 4;
}

/* タイピングの文字数が25文字以上の場合のstyle */
.typing_text.typing_text-small {
  font-size: 40px;
}