@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap);
html {
  color: rgb(70, 70, 70);
  font-family: "Noto Sans JP";
}

.sub-title {
  color: rgb(70, 70, 70);
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: bold;
  margin: 30px 0 10px 0;
  padding-top: 30px;
  position: relative;
  text-align: center;
}
.sub-title::before {
  content: "";
  background-color: lightseagreen;
  bottom: -10px;
  border-radius: 2px;
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 340px) {
  .sub-title {
    font-size: 0.9rem;
  }
}

.sub-title2 {
  color: rgb(70, 70, 70);
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: bold;
  margin: 50px 0 20px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sub-title2 {
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 340px) {
  .sub-title2 {
    font-size: 1rem;
  }
}

.header {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 99;
}
.header .title {
  font-family: Georgia;
  color: rgb(8, 65, 119);
  display: inline-block;
  font-family: "UD デジタル 教科書体";
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 10px 0 0px 0px;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: white;
  -webkit-text-fill-color: rgb(8, 65, 119);
}
@media screen and (max-height: 600px) {
  .header .title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .header .title {
    font-size: 1.5rem;
  }
}
.header .title--sub {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .header .title--sub {
    font-size: 0.7rem;
  }
}
.header .title-link {
  width: 160px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.header .menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: bold;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header .menu {
    font-size: 0.8rem;
  }
}
@media screen and (max-height: 600px) {
  .header .menu {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 480px) {
  .header .menu {
    font-size: 0.7rem;
  }
}
.header .menu li {
  border: solid grey;
  border-width: 0 1px 0 1px;
  margin-top: 10px;
  padding: 0 3% 0 3%;
}
.header .menu a,
.header .menu a:visited {
  color: rgb(70, 70, 70);
}
.header .menu a:hover {
  color: rgba(195, 195, 195, 0.5);
}
@media screen and (max-width: 480px) {
  .header .menu {
    background-color: rgb(255, 255, 255);
    border: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 50px;
    visibility: hidden;
    width: 70%;
    z-index: 99;
  }
  .header .menu li {
    border-width: 0;
    line-height: 3;
    margin: 5px 0;
  }
  .header .drawer-menu {
    background-color: rgb(199, 250, 250);
    border: none;
    border-radius: 20%;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 5px;
    width: 40px;
  }
  .header .drawer-menu__border {
    height: 40px;
    position: relative;
    width: 40px;
  }
  .header .drawer-menu__border span {
    background-color: grey;
    border-radius: 2px;
    height: 2px;
    position: absolute;
    right: calc(50% - 12.5px);
    width: 25px;
  }
  .header .drawer-menu__border span:nth-of-type(1) {
    top: 22%;
  }
  .header .drawer-menu__border span:nth-of-type(2) {
    top: 48%;
  }
  .header .drawer-menu__border span:nth-of-type(3) {
    bottom: 22%;
  }
  .header .drawer-fade-in {
    -webkit-animation: drawer-fade-in 0.2s;
            animation: drawer-fade-in 0.2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  @-webkit-keyframes drawer-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes drawer-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
      visibility: visible;
    }
  }
  .header .drawer-fade-out {
    -webkit-animation: drawer-fade-out 0.2s;
            animation: drawer-fade-out 0.2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  @-webkit-keyframes drawer-fade-out {
    from {
      opacity: 1;
      visibility: visible;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  @keyframes drawer-fade-out {
    from {
      opacity: 1;
      visibility: visible;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 0.5s;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.background {
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.background__img {
  filter: brightness(50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.insta_btn3 { /*ボタンの下地*/
  color: #FFF; /*文字・アイコン色*/
  border-radius: 14px; /*角丸に*/
  position: relative;
  display: block;
  height: 150px; /*高さ*/
  width: 150px; /*幅*/
  text-align: center; /*中身を中央寄せ*/
  padding-top: 12px; /*上側との余白*/
  box-sizing: border-box;
  font-size: 19px; /*文字のサイズ*/
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  text-decoration: none; /*下線は消す*/
  margin: 0 auto;
}
@media screen and (max-height: 600px) {
  .insta_btn3 {
    font-size: 12px; /*文字のサイズ*/
    height: 80px; /*高さ*/
    width: 80px; /*幅*/
  }
}
@media screen and (max-width: 480px) {
  .insta_btn3 {
    font-size: 12px; /*文字のサイズ*/
    height: 80px; /*高さ*/
    width: 80px; /*幅*/
  }
}

.insta_btn3:before { /*グラデーション②*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*全体を覆う*/
  height: 100%; /*全体を覆う*/
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 div {
  position: relative;
}

.insta_btn3 .fa-instagram {
  font-size: 100px; /*アイコンサイズ*/
  position: relative;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-height: 600px) {
  .insta_btn3 .fa-instagram {
    font-size: 40px; /*アイコンサイズ*/
  }
}
@media screen and (max-width: 480px) {
  .insta_btn3 .fa-instagram {
    font-size: 40px; /*アイコンサイズ*/
  }
}

.insta_btn3 .fa-instagram:hover { /*ホバーで一周回転*/
  transform: rotateX(360deg);
}

.not-found {
  color: white;
  position: relative;
  text-align: center;
  z-index: 50;
}

.footer {
  background-color: slategray;
  bottom: 0;
  color: white;
  display: flex;
  gap: 3%;
  justify-content: center;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.move-top-btn {
  background-color: rgba(128, 128, 128, 0.5);
  border: none;
  border-radius: 30%;
  bottom: 10px;
  color: white;
  font-weight: bold;
  font-size: 50px;
  height: 70px;
  opacity: 0;
  outline: none;
  padding: 5px 0px 50px 20px;
  position: fixed;
  right: 10px;
  transform: rotate(-90deg);
  transition-duration: 0.5s;
  width: 70px;
}
@media screen and (max-height: 600px) {
  .move-top-btn {
    font-size: 30px;
    height: 40px;
    padding: 0px 0px 2px 10px;
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .move-top-btn {
    font-size: 30px;
    height: 40px;
    padding: 0px 0px 2px 10px;
    width: 40px;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 0.5s;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.wrap-index .top {
  background-color: rgb(222, 235, 247);
  text-align: center;
  padding: 10px 0;
  border-radius: 20% 20% 0% 0%/15% 15% 0% 0%;
}
@media screen and (max-width: 480px) {
  .wrap-index .top {
    border-radius: 10% 10% 0% 0%/8% 8% 0% 0%;
  }
}
.wrap-index .top .top-penguin {
  position: relative;
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-height: 600px) {
  .wrap-index .top .top-penguin {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .top .top-penguin {
    width: auto;
  }
}
.wrap-index .top .top-penguin__img {
  height: 300px;
  margin: 10px 0;
  width: 450px;
}
@media screen and (max-height: 600px) {
  .wrap-index .top .top-penguin__img {
    height: 150px;
    margin: 10px 0;
    width: 225px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .top .top-penguin__img {
    height: 150px;
    margin: 10px 0;
    width: 225px;
  }
}
.wrap-index .top .top-penguin__dialog {
  color: rgb(46, 117, 182);
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: 45px;
  right: 72%;
}
@media screen and (max-height: 600px) {
  .wrap-index .top .top-penguin__dialog {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .top .top-penguin__dialog {
    font-size: 1.2rem;
  }
}
.wrap-index .top__text {
  color: rgb(70, 70, 70);
  font-family: "Noto Serif JP";
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-height: 600px) {
  .wrap-index .top__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .top__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .top__text {
    font-size: 1.5rem;
  }
}
.wrap-index .top__text--big {
  font-size: 6rem;
}
@media screen and (max-height: 600px) {
  .wrap-index .top__text--big {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .top__text--big {
    font-size: 3rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .top__text--big {
    font-size: 2.5rem;
  }
}
.wrap-index .feature-price {
  align-items: center;
  background-color: rgb(0, 42, 119);
  border-radius: 0% 0% 20% 20%/0% 0% 15% 15%;
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0px 0 20px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-height: 600px) {
  .wrap-index .feature-price {
    border-radius: 0% 0% 10% 10%/0% 0% 8% 8%;
    gap: 20px;
    padding: 5px 0 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price {
    border-radius: 0% 0% 10% 10%/0% 0% 8% 8%;
    gap: 0px;
    padding: 5px 0 35px 0;
  }
}
.wrap-index .feature-price .feature-price-title {
  color: rgb(0, 42, 119);
  height: 0px;
  font-size: 1px;
}
.wrap-index .feature-price .feature {
  margin-top: 10px;
}
.wrap-index .feature-price .feature ul {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .feature-price .feature ul {
    font-size: 1.2rem;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .feature-price .feature ul {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price .feature ul {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .feature-price .feature ul {
    font-size: 1rem;
  }
}
.wrap-index .feature-price .feature ul li {
  line-height: 1.5;
}
.wrap-index .feature-price .feature ul .yellow {
  color: rgb(246, 193, 19);
}
.wrap-index .feature-price .price {
  position: relative;
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price .price {
    margin-top: 10px;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .feature-price .price {
    margin-top: 10px;
  }
}
.wrap-index .feature-price .price table {
  border: 2px solid white;
  margin: 0 auto;
}
.wrap-index .feature-price .price table tr {
  border: 2px solid white;
}
.wrap-index .feature-price .price table th {
  border: 2px solid white;
  color: rgb(246, 193, 19);
  font-size: 1.6rem;
  padding: 30px 20px 30px 20px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .feature-price .price table th {
    font-size: 1.2rem;
    padding: 10px 10px 5px 10px;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .feature-price .price table th {
    font-size: 1rem;
    padding: 10px 10px 5px 10px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price .price table th {
    font-size: 1.3rem;
    padding: 10px 10px 5px 10px;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .feature-price .price table th {
    font-size: 1rem;
    padding: 10px 10px 5px 10px;
  }
}
.wrap-index .feature-price .price table td {
  border: 2px solid white;
  font-size: 1.6rem;
  padding: 10px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .wrap-index .feature-price .price table td {
    font-size: 1.2rem;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .feature-price .price table td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price .price table td {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .feature-price .price table td {
    font-size: 1rem;
  }
}
.wrap-index .feature-price .price .info {
  position: absolute;
  bottom: -40px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .feature-price .price .info {
    font-size: 0.8rem;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .feature-price .price .info {
    bottom: -25px;
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .feature-price .price .info {
    bottom: -32px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .feature-price .price .info {
    font-size: 0.6rem;
  }
}
.wrap-index .recommend {
  background-image: url("../img/back.jpg");
  margin-top: -20px;
  position: relative;
  z-index: 9;
}
.wrap-index .recommend .sub-title {
  padding-top: 30px;
}
.wrap-index .recommend .recommend-wrap {
  padding: 15px 0 20px 0;
}
.wrap-index .recommend .recommend-wrap__content {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-height: 600px) {
  .wrap-index .recommend .recommend-wrap__content {
    gap: 5px;
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .recommend .recommend-wrap__content {
    gap: 5px;
    margin: 0 auto;
    width: 90%;
  }
}
.wrap-index .recommend .recommend-wrap__content img {
  height: 120px;
  width: 120px;
}
@media screen and (max-height: 600px) {
  .wrap-index .recommend .recommend-wrap__content img {
    height: 80px;
    width: 80px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .recommend .recommend-wrap__content img {
    height: 80px;
    width: 80px;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .recommend .recommend-wrap__content img {
    height: 60px;
    width: 60px;
  }
}
.wrap-index .recommend .recommend-wrap__content h3 {
  display: inline;
  border-bottom: 8px double rgb(246, 193, 19);
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-height: 600px) {
  .wrap-index .recommend .recommend-wrap__content h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .recommend .recommend-wrap__content h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .recommend .recommend-wrap__content h3 {
    border-bottom: 4px double rgb(246, 193, 19);
    font-size: 1.1rem;
  }
}
.wrap-index .recommend .bottom-text {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .wrap-index .recommend .bottom-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .recommend .bottom-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .recommend .bottom-text {
    font-size: 1.2rem;
  }
}
.wrap-index .advan {
  color: rgb(70, 70, 70);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .wrap-index .advan {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .advan {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .advan {
    font-size: 0.7rem;
  }
}
.wrap-index .advan table {
  margin: 0 auto;
}
.wrap-index .advan table th {
  color: rgb(0, 42, 119);
  padding: 15px 20px 10px 20px;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .wrap-index .advan table th {
    padding: 8px 20px 8px 20px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .advan table th {
    padding: 8px 20px 8px 20px;
  }
}
.wrap-index .advan table td {
  border: 3px solid white;
  border-bottom: none;
  border-right: none;
  padding: 10px 20px;
  vertical-align: middle;
}
@media screen and (max-height: 600px) {
  .wrap-index .advan table td {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .advan table td {
    padding: 10px 5px;
  }
}
.wrap-index .advan table .onpro-th {
  background-color: rgb(0, 42, 119);
  border: 3px solid rgb(246, 193, 19);
  border-bottom: none;
  color: white;
}
.wrap-index .advan table .onpro-th--border {
  border-bottom: 3px solid rgb(246, 193, 19);
}
.wrap-index .advan table .onpro-td {
  border-left: 3px solid rgb(246, 193, 19);
  border-right: 3px solid rgb(246, 193, 19);
}
.wrap-index .advan table .onpro-td--border {
  border-bottom: 3px solid rgb(246, 193, 19);
}
.wrap-index .free,
.wrap-index .intro {
  margin: 20px 0;
}
@media screen and (max-height: 600px) {
  .wrap-index .free,
.wrap-index .intro {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .free,
.wrap-index .intro {
    margin: 10px 0 0 0;
  }
}
.wrap-index .free h2,
.wrap-index .intro h2 {
  align-items: center;
  background-color: rgb(0, 42, 119);
  color: rgb(246, 193, 19);
  display: flex;
  font-size: 3rem;
  height: 100px;
  justify-content: center;
  margin: 0;
}
@media screen and (max-height: 600px) {
  .wrap-index .free h2,
.wrap-index .intro h2 {
    font-size: 1.8rem;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .free h2,
.wrap-index .intro h2 {
    font-size: 1.8rem;
    height: 60px;
  }
}
.wrap-index .free .conditions,
.wrap-index .intro .conditions {
  background-color: rgb(0, 42, 119);
  color: white;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-height: 600px) {
  .wrap-index .free .conditions,
.wrap-index .intro .conditions {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .free .conditions,
.wrap-index .intro .conditions {
    font-size: 0.8rem;
    padding-bottom: 3px;
  }
}
.wrap-index .free {
  margin-bottom: 0;
}
.wrap-index .intro {
  margin-top: 0;
}
.wrap-index .intro h2 {
  height: 70px;
}
@media screen and (max-height: 600px) {
  .wrap-index .intro h2 {
    font-size: 1.6rem;
    height: 55px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .intro h2 {
    font-size: 1.6rem;
    height: 50px;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .intro h2 {
    font-size: 1.25rem;
    height: 50px;
  }
}
.wrap-index .learning {
  background-image: url("../img/back.jpg");
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .sub-title {
    margin: 0px 0 15px 0;
  }
}
.wrap-index .learning .sub-title2 {
  margin: 40px 0 15px 0;
}
@media screen and (max-height: 600px) {
  .wrap-index .learning .sub-title2 {
    margin: 30px 0 15px 0;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .sub-title2 {
    margin: 30px 0 15px 0;
  }
}
.wrap-index .learning .learning-wrap {
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (max-height: 600px) {
  .wrap-index .learning .learning-wrap {
    max-width: 350px;
    width: 98%;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .learning-wrap {
    max-width: 350px;
    width: 98%;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .learning-wrap {
    max-width: 300px;
    width: 98%;
  }
}
.wrap-index .learning .learning-wrap__title {
  border-bottom: 2px solid;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  width: 60%;
}
@media screen and (max-height: 600px) {
  .wrap-index .learning .learning-wrap__title {
    font-size: 1.5rem;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .learning-wrap__title {
    font-size: 1.5rem;
    width: 75%;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .learning .learning-wrap__title {
    font-size: 1.2rem;
    margin-left: 5px;
    width: 80%;
  }
}
.wrap-index .learning .learning-wrap__title--red {
  color: rgb(255, 79, 79);
}
.wrap-index .learning .learning-wrap__title--blue {
  color: rgb(52, 160, 231);
}
.wrap-index .learning .learning-wrap__title--green {
  color: rgb(34, 192, 34);
}
.wrap-index .learning .learning-wrap__title--yellow {
  color: rgb(184, 181, 1);
}
.wrap-index .learning .learning-wrap__text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-height: 600px) {
  .wrap-index .learning .learning-wrap__text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .learning .learning-wrap__text {
    font-size: 1.1rem;
  }
}
.wrap-index .material {
  margin-bottom: 30px;
}
.wrap-index .material .sub-title2 {
  margin: 30px 0 10px 0;
}
.wrap-index .material table {
  color: rgb(3, 44, 99);
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 auto;
}
@media screen and (max-height: 600px) {
  .wrap-index .material table {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .material table {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .material table {
    font-size: 0.8rem;
  }
}
.wrap-index .material table td {
  border-bottom: 1px solid grey;
  padding: 20px;
}
.wrap-index .material table td:last-child {
  border-top: 1px solid grey;
}
.wrap-index .tool {
  background-image: url("../img/back.jpg");
  line-height: 1.5;
  padding: 1px 0 30px 0;
}
.wrap-index .tool .tool-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .tool .tool-wrap {
    gap: 10px;
    margin-left: 60px;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .tool .tool-wrap {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .tool .tool-wrap {
    gap: 10px;
    margin-left: 0px;
  }
}
.wrap-index .tool .tool-wrap .tool-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.wrap-index .tool .tool-wrap .tool-content img {
  height: 150px;
  width: 120px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .tool .tool-wrap .tool-content img {
    height: 80px;
    width: 60px;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .tool .tool-wrap .tool-content img {
    height: 100px;
    width: 90px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .tool .tool-wrap .tool-content img {
    height: 100px;
    width: 90px;
  }
}
.wrap-index .tool .tool-wrap .tool-content .mark {
  display: block;
  font-size: 2rem;
  width: 100%;
}
@media screen and (max-height: 600px) {
  .wrap-index .tool .tool-wrap .tool-content .mark {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .tool .tool-wrap .tool-content .mark {
    font-size: 2rem;
  }
}
.wrap-index .tool .tool-wrap .tool-content .mark--circle {
  color: red;
}
.wrap-index .tool .tool-wrap .tool-content .mark--cross {
  color: blue;
}
.wrap-index .tool .tool-wrap .tool-content__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 10px 0;
}
@media screen and (max-width: 1024px) {
  .wrap-index .tool .tool-wrap .tool-content__text {
    font-size: 0.9rem;
  }
}
.wrap-index .form .sub-title {
  margin: 0;
}
.wrap-index .form .form-wrap {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 35px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .form .form-wrap {
    gap: 10px;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .form .form-wrap {
    gap: 10px;
    flex-direction: column;
    margin: 20px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .form .form-wrap {
    gap: 10px;
    flex-direction: column;
    margin: 20px;
  }
}
.wrap-index .form .form-wrap__content {
  border: 1px solid grey;
  border-radius: 50%;
  height: 300px;
  text-align: center;
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .form .form-wrap__content {
    height: 250px;
    width: 250px;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .form .form-wrap__content {
    height: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .form .form-wrap__content {
    height: 250px;
    width: 250px;
  }
}
.wrap-index .form .form-wrap__content .border {
  border-bottom: 1px solid;
  line-height: 1.5;
}
.wrap-index .form .form-wrap__content__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 30px 0 20px 0;
}
@media screen and (max-width: 1024px) {
  .wrap-index .form .form-wrap__content__title {
    font-size: 1.1rem;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .form .form-wrap__content__title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .form .form-wrap__content__title {
    font-size: 1.2rem;
  }
}
.wrap-index .form .form-wrap .line-wrap {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.wrap-index .form .form-wrap .line-wrap a {
  display: block;
}
.wrap-index .form .form-wrap .line-wrap .or {
  display: block;
  font-weight: bold;
  margin: 8px 0 3px 0;
}
.wrap-index .form .form-wrap .line-wrap .qr {
  height: 80px;
  width: 80px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .form .form-wrap .line-wrap .qr {
    height: 60px;
    width: 60px;
  }
}
.wrap-index .form .form-wrap .line-wrap .penguin {
  border: 1px solid grey;
  border-radius: 50%;
  height: 80px;
  width: 80px;
}
.wrap-index .form .form-wrap .done-text {
  display: block;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .wrap-index .form .form-wrap .done-text {
    font-size: 0.8rem;
  }
}
@media screen and (max-height: 600px) {
  .wrap-index .form .form-wrap .done-text {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .form .form-wrap .done-text {
    font-size: 0.8rem;
  }
}
.wrap-index .contact {
  background-image: url("../img/back.jpg");
  text-align: center;
}
.wrap-index .contact .imgs {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.wrap-index .contact p {
  display: block;
  line-height: 2;
  padding: 40px;
}
.wrap-index .contact .qr {
  height: 70px;
  width: 70px;
}
.wrap-index .self {
  padding: 1px 0 30px;
}
.wrap-index .self .self-content {
  border: 1px solid grey;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 98%;
}
@media screen and (max-height: 600px) {
  .wrap-index .self .self-content {
    align-items: center;
    flex-direction: column;
    font-size: 0.9rem;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .self .self-content {
    align-items: center;
    flex-direction: column;
    font-size: 0.9rem;
    padding: 10px;
  }
}
@media screen and (max-width: 340px) {
  .wrap-index .self .self-content {
    font-size: 0.8rem;
  }
}
.wrap-index .self .self-content img {
  border: 1px solid grey;
  border-radius: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
  width: 150px;
}
.wrap-index .self .self-content__text {
  line-height: 1.5;
  margin-left: 40px;
}
@media screen and (max-height: 600px) {
  .wrap-index .self .self-content__text {
    line-height: 1.8;
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .wrap-index .self .self-content__text {
    line-height: 1.8;
    margin-left: 0px;
  }
}
.wrap-index .self .self-content__text__title {
  display: block;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: -15px;
}
.wrap-index .self .link {
  border-bottom: 1px solid;
  color: rgb(0, 129, 129);
}
.wrap-index .self .link:hover {
  color: rgba(0, 129, 129, 0.452);
}