@charset "UTF-8";
body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans", "Noto Sans JP", YuGothic, YuGothicM, "メイリオ",
    sans-serif;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    background-color: #fff;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

p,
li,
dt,
dd,
h1,
h2,
h3,
h4 {
  line-height: 1.7;
  font-weight: normal;
}

p {
  font-size: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
h2 span.ttl-small {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
  h2 span.ttl-small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3,
h4 {
  font-weight: bold;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.small__text {
  font-size: 1rem;
}

.middle__text {
  font-size: 1.3rem;
}

/* button */
.btn-common {
  max-width: 288px;
}
.btn-common a {
  display: block;
  line-height: 64px;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #ff9060;
  color: #fff;
  text-align: center;
}
.btn-common a:hover {
  box-shadow: 0 5px 10px #333;
  transform: translate(0, -5px);
}
@media screen and (max-width: 767px) {
  .btn-common a {
    font-size: 0.8rem !important;
    line-height: 40px;
  }
  .btn-common a:first-of-type {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.btn-common .btn-text {
  display: block;
  font-weight: bold;
  color: #f7b524;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.micro_tp1,
.micro_tp2,
.micro_tp3,
.micro_tp4 {
  position: relative;
}

.btn-anm a:hover {
  box-shadow: 0 5px 10px #333;
  transform: translate(0, -5px);
}

/*       .btn-common .btn-text::before, .btn-common .btn-text::after {
        content: "";
        width: 2px;
        height: 20px;
        background-color: #F7B524;
        position: absolute;
        top: 4px; }
      .btn-common .btn-text::before {
        -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        transform: rotate(-25deg);
        left: 4px; }
      .btn-common .btn-text::after {
        -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        transform: rotate(25deg);
        right: 4px; } */

/* .btn-common span {
      display: block;
      font-weight: bold;
      color: #F7B524;
      text-align: center;
      margin-bottom: 16px;
      position: relative; }
      .btn-common span::before, .btn-common span::after {
        content: "";
        width: 2px;
        height: 20px;
        background-color: #F7B524;
        position: absolute;
        top: 4px; }
      .btn-common span::before {
        -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        transform: rotate(-25deg);
        left: 16px; }
      .btn-common span::after {
        -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        transform: rotate(25deg);
        right: 16px; } */

/* link-s */
.link-s a {
  display: block;
  color: #f7b524;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  padding-left: 18px;
}
.link-s a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #f7b524;
  border-right: 2px solid #f7b524;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 12px;
  margin-bottom: 2px;
  position: absolute;
  top: 10px;
  left: 0;
}

/* float */
.f-l {
  float: left;
}

.f-r {
  float: right;
}

/* smartphone */
@media screen and (min-width: 767px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none !important;
  }
  .pc-tb-only {
    display: block;
  }
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .pc-tb_only {
    display: block;
  }
  .sp-only {
    display: block;
  }
  .br-pc {
    display: none !important;
  }
  .br-sp {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc-tb-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}

@media screen and (min-width: 320px) {
  .ssp-only {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .ssp-only {
    display: block;
  }
}

/* layout */
.content-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .content-wrap {
    margin: 0 20px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t-l {
  text-align: left;
}

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

.t-r {
  text-align: right;
}

.fixed {
  position: fixed;
  width: 100%;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.marker {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(60%, #f7b524)
  );
  background: -webkit-linear-gradient(transparent 60%, #f7b524 60%);
  background: -o-linear-gradient(transparent 60%, #f7b524 60%);
  background: linear-gradient(transparent 60%, #f7b524 60%);
}

.fixed-area {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 16px 0;
  z-index: 999;
}

.fixed-area .btn-common {
  max-width: 100%;
}

.fixed-area .btn-common a {
  max-width: 100%;
}

.fixed-area.cv-fixed {
  display: block;
}

.mainvisual-area {
  height: 100vh;
  min-height: 700px;
  max-height: 700px;
  background-image: url(../img/mainvisual-bg-j.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.mainvisual-area h1 {
  padding-top: 40px;
  width: 60%;
  margin-bottom: 60px;
  margin-left: -5%;
}
.mainvisual-area ul {
  margin-bottom: 20px;
}
.mainvisual-area ul li {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: bold;
  color: #000000;
  margin-bottom: 50px;
}
.mainvisual-area .logo {
  width: 230px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.mainvisual-area .btn-common a {
  height: auto;
  line-height: 1.5;
  padding: 5px;
}
.mainvisual-area p {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  background-color: #ff9060;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .mainvisual-area {
    height: 520px;
    min-height: 520px;
  }
  .mainvisual-area h1 {
    width: 55%;
    margin-left: 0;
    margin-bottom: 60px;
    padding-top: 32px;
  }
  .mainvisual-area ul {
    margin-bottom: 24px;
  }
  .mainvisual-area ul li {
    font-size: 2.5rem;
  }
  .mainvisual-area .btn-common {
    max-width: 280px;
  }
  .mainvisual-area .btn-common span {
    font-size: 0.75rem;
  }
  .mainvisual-area .btn-common a {
    height: 56px;
    max-width: 280px;
    font-size: 1rem;
  }
  .mainvisual-area .middle__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual-area {
    height: 1080px;
    min-height: 1080px;
    max-width: 1080px;
    background-image: url(../img/sp/mainvisual-bg-j.jpg);
    background-position: center;
    background-size: cover;
  }
  .mainvisual-area h1 {
    width: 100%;
    max-width: 560px;
    margin-bottom: inherit;
    margin-left: inherit;
    margin: 0 auto 40px;
    padding-top: 550px;
  }
  .mainvisual-area ul {
    text-align: center;
    margin-bottom: 40px;
  }
  .mainvisual-area ul li {
    font-size: 2.5rem;
  }
  .mainvisual-area .btn-common {
    margin: 0 auto;
    max-width: 400px;
  }
  .mainvisual-area .btn-common span {
    font-size: 1rem;
  }
  .mainvisual-area .btn-common a {
    max-width: 400px;
    height: 45px;
    line-height: 1.5;
    font-size: 1rem;
    padding: 0;
  }
  .mainvisual-area .logo {
    width: 150px;
    position: absolute;
    bottom: inherit;
    right: inherit;
    top: 20px;
    left: 20px;
  }
  .mainvisual-area p {
    margin: 0 auto 10px;
    display: block;
    width: 200px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual-area {
    height: 610px;
    min-height: 610px;
  }
  .mainvisual-area h1 {
    max-width: 400px;
    margin: 0 auto 20px;
    padding-top: 250px;
  }
  .mainvisual-area ul {
    margin-bottom: 16px;
  }
  .mainvisual-area ul li,
  .mainvisual-area .middle__text,
  .mainvisual-area .small__text {
    font-size: 2rem;
  }
  .mainvisual-area .btn-common a {
    font-size: 0.75px;
  }
  .mainvisual-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 400px) {
  .mainvisual-area {
    height: 590px;
    min-height: 590px;
  }
}
@media screen and (max-width: 320px) {
  .mainvisual-area .btn-common span {
    font-size: 0.875rem;
  }
  .mainvisual-area .btn-common span::before,
  .mainvisual-area .btn-common span::after {
    height: 16px;
  }
}

/* テストトピックス */
.test-topic-area {
  background-color: #f0ff96;
  padding: 80px 0;
}
.test-topic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 10px solid #000000;
  padding-left: 30px;
  margin-bottom: 40px;
}
.test-topic h2 {
  text-align: left;
  line-height: 1.2;
  margin-bottom: 20px;
}
.test-topic-btn {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .test-topic {
    display: block;
  }
  .test-topic-btn {
    margin-top: 20px;
  }
}
.test-topic-btn a {
  height: auto;
  line-height: 2.5;
  padding: 5px;
  display: inline-block;
  width: 250px;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #ff9060;
  color: #fff;
  text-align: center;
}

/* 表のスタイル */
.table01 table,
.table01 td,
.table01 th {
  border: 1px solid #707070;
  border-collapse: collapse;
}
.table01 table {
  width: 100%;
}
.table01 td,
.table01 th {
  padding: 3px;
  background-color: #fff;
  text-align: center;
  line-height: 2.2em;
}
.table01 th {
  background: #f7f8fc;
}
.bg-yellow td {
  background: #f7ffc6;
}
@media screen and (max-width: 767px) {
  .table01 td,
  .table01 th {
    font-size: 12px;
  }
}

.insight-area {
  padding: 80px 0;
}
.insight-area h2 {
  margin-bottom: 40px;
}
.insight-area h2 span:first-of-type {
  display: block;
  width: 260px;
  margin: 0 auto 16px;
}
.insight-area .insight-list {
  background-color: #ebecfc;
  padding: 56px 0;
  padding-left: 15%;
  position: relative;
}
.insight-area .insight-list::after {
  content: "";
  display: block;
  width: 214px;
  height: 270px;
  background-image: url(../img/insight-img.png);
  background-size: contain;
  position: absolute;
  bottom: -40px;
  right: 12px;
}
.insight-area .insight-list li {
  width: calc(100% - 240px);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}
.insight-area .insight-list li:last-of-type {
  margin-bottom: 0;
}
.insight-area .insight-list li::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../img/insight-check.svg);
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .insight-area {
    padding: 80px 0 100px;
  }
  .insight-area h2 {
    margin-bottom: 40px;
  }
  .insight-area h2 span:first-of-type {
    width: 156px;
    margin: 0 auto 16px;
  }
  .insight-area .insight-list {
    padding-left: inherit;
    padding: 32px 20px 106px;
  }
  .insight-area .insight-list::after {
    width: 136px;
    height: 172px;
    bottom: -76px;
    right: -15px;
  }
  .insight-area .insight-list li {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 24px;
    padding-left: 36px;
  }
  .insight-area .insight-list li::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}

.about-area {
  padding: 155px 0 112px;
  background-color: #9196ff;
  position: relative;
}
.about-area::before {
  content: "";
  width: 100%;
  height: 80px;
  background-image: url(../img/arrow.png);
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-area h2 {
  color: #fff;
  margin-bottom: 40px;
}
.about-area h2 .ttl-small {
  display: block;
}
.about-area .sub-ttl {
  width: 403px;
  margin: 0 auto 56px;
}
.about-area .about-list {
  margin-bottom: 16px;
}
.about-area .about-list li {
  width: 48%;
  background-color: #fff;
  padding: 40px 20px;
  margin-bottom: 48px;
}
.about-area .about-list li .left {
  width: 33%;
}
.about-area .about-list li .right {
  width: 60%;
}
.about-area .about-list li .right h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.about-area .about-list li:last-of-type .left .img {
  max-width: 120px;
  margin: 0 auto;
}
.about-area .test-sample {
  padding: 56px;
  border: 2px solid #fff;
  color: #fff;
  margin-bottom: 50px;
}
.about-area .test-sample h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.about-area .test-sample .left {
  width: 42%;
}
.about-area .test-sample .right {
  width: calc(100% - 42% - 5%);
}
@media screen and (max-width: 767px) {
  .about-area {
    padding: 128px 0 80px;
  }
  .about-area::before {
    height: 64px;
    background-image: url(../img/sp/arrow.png);
    background-size: 100% 100%;
  }
  .about-area h2 {
    margin-bottom: 32px;
  }
  .about-area .sub-ttl {
    width: 90%;
    margin: 0 auto 50px;
  }
  .about-area .about-list {
    margin-bottom: 24px;
  }
  .about-area .about-list li {
    width: 100%;
    padding: 20px 20px 20px 12px;
    margin-bottom: 24px;
  }
  .about-area .about-list li .left {
    width: 30%;
  }
  .about-area .about-list li .right {
    width: 65%;
  }
  .about-area .about-list li .right h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  .about-area .about-list li .right p {
    font-size: 0.875rem;
  }
  .about-area .about-list li:last-of-type .left .img {
    max-width: 80px;
  }
  .about-area .test-sample {
    padding: 24px 20px;
  }
  .about-area .test-sample h3 {
    font-size: 1.5rem;
  }
  .about-area .test-sample .left,
  .about-area .test-sample .right {
    width: 100%;
  }
  .about-area .test-sample .left {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 320px) {
  .about-area .about-list li .right h3 {
    font-size: 1rem;
  }
  .about-area .test-sample h3 {
    font-size: 1.25rem;
  }
}

.school-area {
  background-color: #f0ff96;
  padding: 70px 0;
}
.school-area .content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
.school-area .content-wrap img {
  width: 143px;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  flex-shrink: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.scroll-infinity__item--text {
  display: inline-block;
  font-size: 24px;
  border: 2px solid #000;
  text-align: center;
  margin-right: 10px;
  padding: 5px 50px;
}

@media screen and (max-width: 767px) {
  .school-area .content-wrap {
    display: block;
  }
  .school-area .content-wrap img {
    width: 100px;
    margin: 20px auto 0;
    display: block;
  }
  .scroll-infinity__item--text {
    display: inline-block;
    font-size: 16px;
    border: 2px solid #000;
    text-align: center;
    margin-right: 10px;
    padding: 5px 20px;
  }
}

.merit-area {
  padding: 112px 0;
}
.merit-area h2 {
  margin-bottom: 48px;
}
.merit-area .merit-list li {
  width: 28.7%;
}
.merit-area .merit-list li span {
  display: block;
  color: #ff9060;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
.merit-area .merit-list li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 224px;
  margin: 0 auto 32px;
}
.merit-area .merit-list li:first-of-type .img {
  max-width: 75%;
}
.merit-area .merit-list li:nth-of-type(2) .img {
  max-width: 75%;
}
.merit-area .merit-list li:nth-of-type(3) .img {
  max-width: 75%;
}
.merit-area .merit-list li h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 16px;
}

.merit-2 {
  background-color: #ff9060;
  padding: 50px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
  color: #fff;
}
.merit-2 img {
  width: 15%;
}
.merit-2 h3 {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .merit-area {
    padding: 80px 0;
  }
  .merit-area h2 {
    margin-bottom: 40px;
  }
  .merit-area .merit-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .merit-area .merit-list li .img {
    display: block;
    height: auto;
  }
  .merit-area .merit-list li:first-of-type .img {
    max-width: 75%;
  }
  /* .merit-area .merit-list li:nth-of-type(2) .img {
          max-width: 190px; }
        .merit-area .merit-list li:nth-of-type(3) {
          margin-bottom: 0; }
        .merit-area .merit-list li:nth-of-type(3) .img {
          max-width: 241px; } */
  .merit-2 {
    display: block;
    padding: 20px;
  }
  .merit-2 img {
    width: 150px;
    margin: 0 auto;
    display: block;
  }
  .merit-2 h3 {
    margin: 20px 0 15px;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .merit-area .merit-list li h3 {
    font-size: 1.25rem;
  }
}

.summary-area {
  display: block;
  background-image: url(../img/summary-bg-j.jpg);
  background-size: cover;
  width: 100%;
  position: relative;
}
.summary-area::before {
  content: "";
  display: block;
  padding-top: 32.9%;
}
.summary-area .summary-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.summary-area h2 {
  width: 53.4%;
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .summary-area {
    background-image: url(../img/sp/summary-bg-j.jpg);
    background-size: cover;
  }
  .summary-area::before {
    padding-top: 90.6%;
  }
  .summary-area h2 {
    width: 63.6%;
    right: 0;
    top: 70%;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}
@media screen and (max-width: 480px) {
  .summary-area h2 {
    width: 93.6%;
    top: 240px;
  }
}

.junior-area {
  padding: 64px 0;
}
.junior-area .content-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.junior-area .left {
  width: 70%;
}
.junior-area .right {
  width: 27.7%;
}
.junior-area h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.junior-area p {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .junior-area {
    padding: 160px 0 64px;
  }
  .junior-area .content-wrap {
    position: relative;
  }
  .junior-area .left {
    width: 100%;
  }
  .junior-area .left h2 {
    width: 70%;
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
  .junior-area .left p {
    margin-bottom: 32px;
  }
  .junior-area .right {
    width: 30%;
    max-width: 118px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.voice-area {
  padding: 112px 0;
  background-color: #ebecfc;
}
.voice-area h2 {
  margin-bottom: 64px;
}
.voice-area h3 {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
}
.voice-area h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.voice-area .voice-content {
  background-color: #fff;
  padding: 56px;
}
.voice-area .voice-list li {
  width: 48%;
  padding: 24px 24px 48px;
  border: 1px solid #000;
  margin-bottom: 40px;
  position: relative;
}
.voice-area .voice-list li:nth-of-type(3),
.voice-area .voice-list li:last-of-type {
  margin-bottom: 0;
}
.voice-area .voice-list li h4 {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 12px;
}
.voice-area .voice-list li .name {
  display: block;
  text-align: right;
  font-size: 0.875rem;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.voice-area .child-content {
  margin-bottom: 64px;
}
.voice-area .child-content h3::after {
  width: 77px;
  height: 64px;
  background-image: url(../img/voice-img-01.png);
  background-size: contain;
  right: -90px;
}
.voice-area .parent-content h3::after {
  width: 60px;
  height: 75px;
  background-image: url(../img/voice-img-02.png);
  background-size: contain;
  right: -72px;
}
.voice-area .teacher-content h3::after {
  width: 80px;
  height: 80px;
  background-image: url(../img/voice-img-03.png);
  background-size: contain;
  right: -84px;
}
@media screen and (max-width: 767px) {
  .voice-area {
    padding: 180px 0;
  }
  .voice-area h2 {
    margin-bottom: 56px;
  }
  .voice-area h3 {
    font-size: 1.125rem;
  }
  .voice-area .voice-content {
    padding: 40px 20px;
  }
  .voice-area .voice-list li {
    width: 100%;
    padding: 24px 20px 48px;
    margin-bottom: 24px;
  }
  .voice-area .voice-list li:nth-of-type(3) {
    margin-bottom: 24px;
  }
  .voice-area .voice-list li:last-of-type {
    margin-bottom: 0;
  }
  .voice-area .voice-list li h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .voice-area .voice-list li p {
    font-size: 0.875rem;
  }
  .voice-area .voice-list li .name {
    right: 20px;
  }
  .voice-area .child-content {
    margin-bottom: 48px;
  }
  .voice-area .child-content h3::after {
    width: 58px;
    height: 48px;
    right: -70px;
  }
  .voice-area .parent-content h3::after {
    width: 50px;
    height: 62px;
    right: -64px;
  }
}

.mtv-area {
  padding: 112px 0;
}
.mtv-area h2 {
  margin-bottom: 64px;
}
.mtv-area table {
  border-spacing: inherit;
  margin-bottom: 64px;
}
.mtv-area table th {
  background-color: #ff9060;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  padding: 12px 0 5px;
}
.mtv-area table th::before {
  display: inline-block;
  font-size: 2rem;
  color: #f0ff96;
  margin-right: 8px;
  margin-bottom: 7px;
}
.mtv-area table th:first-of-type,
.mtv-area table th:nth-of-type(2) {
  border-right: 4px solid #fff;
}
.mtv-area table th:first-of-type::before {
  content: "1";
}
.mtv-area table th:nth-of-type(2)::before {
  content: "2";
}
.mtv-area table th:nth-of-type(3)::before {
  content: "3";
}
.mtv-area table td {
  background-color: #ebecfc;
}
.mtv-area table td:first-of-type,
.mtv-area table td:nth-of-type(2) {
  border-right: 4px solid #fff;
}
.mtv-area table .mtv-01 td {
  vertical-align: top;
  padding: 32px;
}
.mtv-area table .mtv-02 td {
  vertical-align: bottom;
  padding: 0 24px 24px;
}
.mtv-area .title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .mtv-area {
    padding: 80px 0;
  }
  .mtv-area h2 {
    margin-bottom: 56px;
    margin-top: 70px;
  }
  .mtv-area .mtv-list {
    margin-bottom: 56px;
  }
  .mtv-area .mtv-list h3 {
    background-color: #ff9060;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
    text-align: center;
    padding: 8px 0;
  }
  .mtv-area .mtv-list h3::before {
    display: inline-block;
    font-size: 1.5rem;
    color: #f0ff96;
    margin-right: 8px;
  }
  .mtv-area .mtv-list li {
    max-width: 480px;
    margin: 0 auto 40px;
  }
  .mtv-area .mtv-list li:first-of-type h3::before {
    content: "1";
  }
  .mtv-area .mtv-list li:nth-of-type(2) h3::before {
    content: "2";
  }
  .mtv-area .mtv-list li:nth-of-type(3) {
    margin-bottom: 0;
  }
  .mtv-area .mtv-list li:nth-of-type(3) h3::before {
    content: "3";
  }
  .mtv-area .mtv-list p {
    background-color: #ebecfc;
  }
  .mtv-area .mtv-list .mtv-01 {
    padding: 20px;
  }
  .mtv-area .mtv-list .mtv-02 {
    padding: 0 20px 20px;
  }
  .mtv-area .title {
    font-size: 1.5rem;
  }
}

.faq-area {
  padding: 80px 0;
  background-color: #077f83;
}
.faq-area h2 {
  color: #fff;
  margin-bottom: 64px;
}
.faq-area .faq-list > li {
  margin-bottom: 40px;
}
.faq-area .faq-list > li h3 {
  font-size: 1.25rem;
  background-color: #280091;
  color: #fff;
  padding: 16px 24px;
}
.faq-area .faq-list > li .answer {
  background-color: #fff;
  padding: 24px;
}
.faq-area .faq-list > li .answer p:first-of-type {
  margin-bottom: 1em;
}
.faq-area .faq-list > li .answer p:nth-of-type(2) {
  margin-bottom: 4px;
}
.faq-area .faq-list > li .answer li {
  line-height: 1.8;
}
.faq-area .faq-list > li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .faq-area {
    padding: 80px 0;
  }
  .faq-area h2 {
    margin-bottom: 56px;
  }
  .faq-area .faq-list > li h3 {
    font-size: 1.125rem;
    padding: 16px 20px;
  }
  .faq-area .faq-list > li .answer {
    padding: 20px;
  }
}
@media screen and (max-width: 320px) {
  .faq-area .faq-list > li h3 {
    font-size: 1rem;
  }
  .faq-area .faq-list > li .answer p,
  .faq-area .faq-list > li .answer a {
    font-size: 0.875rem;
  }
}

/* 追加コンテンツ */
.test-type-area {
  background-color: #9196ff;
  padding: 80px 0;
}
.test-type-area h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
}
.test-type-txt {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 40px;
}
.test-type-txt span {
  color: #f0ff96;
}
.test-type-box {
  background-color: #fff;
  padding: 80px;
}
.test-type-box:first-of-type {
  margin-bottom: 50px;
}
.test-type-box h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.test-type-box-txt {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.test-type-box-txt2 {
  margin-bottom: 15px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.test-type-box-txt2::before {
  display: inline-block;
  margin: 0 3px 0 8px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 100%;
  background: #ff9060;
}
.test-type-box img {
  width: 100%;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .test-type-area h2 {
    font-size: 1.5rem;
  }
  .test-type-txt {
    margin: 40px 0;
    font-size: 1rem;
  }
  .test-type-box {
    padding: 40px 20px;
  }
  .test-type-box h3 {
    font-size: 1.5rem;
  }
  .test-type-box-txt {
    font-size: 1rem;
  }
}

.test-result-area {
  padding: 80px 0;
  background-color: #9196ff;
  color: #fff;
}
.test-result-area h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
}
.test-result-area h3 {
  margin-bottom: 30px;
}
.test-result-area h3:first-letter {
  color: #f0ff96;
}
.test-result-box {
  display: flex;
  justify-content: space-between;
}
.test-result-box-left,
.test-result-box-right {
  width: 48%;
}
.test-result-box p {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .test-result-area h2 {
    font-size: 1.5rem;
  }
  .test-result-box {
    display: block;
  }
  .test-result-box-left,
  .test-result-box-right {
    width: 100%;
  }
  .test-result-box-left {
    margin-bottom: 40px;
  }
}

.test-schedule-area {
  background-color: #ebecfc;
  padding: 80px 0;
}
.test-schedule-area h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.test-schedule-area h3 {
  margin: 30px 0 10px;
}
@media screen and (max-width: 767px) {
  .test-schedule-area h2 {
    font-size: 1.5rem;
  }
}

.test-detail-area {
  background-color: #f0ff96;
  padding: 80px 0;
}
.test-detail-area h2 {
  width: 402px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.test-detail-box {
  text-align: center;
}
.test-date p {
  font-size: 1.2rem;
  font-weight: 700;
}
.test-date-txt {
  text-align: center;
}
.test-detail-box2 {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.test-place {
  width: calc(100% * 2-20px);
  background-color: #fff;
}
.test-place h3 {
  background-color: #9196ff;
  color: #fff;
  text-align: center;
}
.test-place p {
  margin: 20px;
}
.test-place p span {
  font-weight: 600;
}
.test-place iframe {
  width: 41vw;
  max-width: 500px;
  height: 27.5vw;
  max-height: 339px;
  margin: 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .test-detail-area h2 {
    width: 250px;
  }
  .test-detail-box {
    display: block;
  }
  .test-date {
    width: 100%;
  }
  .test-date p {
    margin-bottom: 20px;
  }
  .test-detail-box2 {
    display: block;
  }
  .test-place {
    width: 100%;
    margin-bottom: 20px;
  }
  .test-place iframe {
    width: 79vw;
    height: 40vw;
    margin: 0 20px 20px;
  }
}

.test-study-area {
  padding: 80px 0;
}
.test-study-area h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.test-study-txt {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}
.test-study-area h3 {
  text-align: center;
  font-size: 1.15rem;
  line-height: 2em;
  text-align: center;
  color: #fff;
  background-color: #9196ff;
  margin: 80px 0 40px;
}
.test-study-box {
  display: flex;
  align-items: flex-start;
  gap: 65px;
  margin: 0px 50px 50px;
}
.test-study-box img {
  width: 200px;
  height: auto;
}
.test-study-box-txtarea {
  width: calc(100% - 200px);
}
.test-study-box-txtarea-wide {
  width: 100%;
}
.test-study-box hr {
  margin: 20px 0;
}
.test-study-btn {
  margin: 20px 0;
}
.test-study-btn a {
  height: auto;
  line-height: 2;
  padding: 5px 60px;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #ff9060;
  color: #fff;
  text-align: center;
}
.download,
.pageopen,
.contact {
  position: relative;
}
.download::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 22px;
  background-image: url(../img/icon-download.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.pageopen::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 22px;
  background-image: url(../img/icon-pageopen.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.contact::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 22px;
  background-image: url(../img/icon-arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  .test-study-area h2 {
    font-size: 1.5rem;
  }
  .test-study-txt {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }
  .test-study-box {
    display: block;
    gap: 65px;
    margin: 0px 0px 30px 0px;
  }
  .test-study-box img {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
  }
  .test-study-box-txtarea {
    width: 100%;
  }
  .test-study-btn {
    margin: 20px auto 50px;
    width: 90%;
  }
  .test-study-btn a {
    font-size: 1rem;
    width: 100%;
    padding: 5px 40px;
  }
}
/* 追加コンテンツここまで */

.cv-area {
  padding: 112px 0;
  background-color: #f0ff96;
}
.cv-area .sub-ttl {
  width: 394px;
  margin: 0 auto 16px;
}
.cv-area h2 {
  margin-bottom: 64px;
}
.cv-area .info-list {
  margin-bottom: 80px;
}
.cv-area p {
  width: 394px;
  height: 56px;
  background: #9196ff;
  clip-path: polygon(0% 100%, 5% 0%, 100% 0%, 95% 100%);
  color: #fff;
  text-align: center;
  line-height: 56px;
  font-weight: bold;
  font-size: 24px;
}
.cv-area dl {
  text-align: left;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.cv-area dl:first-of-type {
  width: 26%;
  border-left: 1px solid #000;
}
.cv-area dl:nth-of-type(2) {
  width: 23%;
}
.cv-area dl:last-of-type {
  width: 51%;
}
.cv-area dt {
  font-weight: bold;
  background-color: #e2eeef;
}
.cv-area dt,
.cv-area dd {
  padding: 16px 24px;
}

.cv-area .btn-list {
  max-width: 800px;
  margin: 0 auto;
}
.cv-area .btn-common {
  margin: 0 auto;
  max-width: 280px;
}

.cv-area .btn-common a:hover {
  box-shadow: 0 5px 10px #808080;
  transform: translate(0, -5px);
}

.cv-area .btn-common a {
  max-width: 100%;
}

.cv-area .test-place {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .cv-area {
    padding: 80px 0;
  }
  .cv-area .sub-ttl {
    width: 285px;
    margin: 0 auto 24px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .cv-area h2 {
    margin-bottom: 48px;
  }
  .cv-area .info-list {
    margin-bottom: 48px;
  }
  .cv-area dl {
    border-bottom: none;
    border-left: 1px solid #000;
  }
  .cv-area dl:first-of-type,
  .cv-area dl:nth-of-type(2),
  .cv-area dl:last-of-type {
    width: 100%;
  }
  .cv-area dl:last-of-type {
    border-bottom: 1px solid #000;
  }
  .cv-area dt,
  .cv-area dd {
    padding: 16px 20px;
  }

  .cv-area .btn-common {
    width: 100%;
    max-width: 288px;
    margin: 0 auto 24px;
  }
  .cv-area .btn-common a {
    line-height: 1.5;
    padding: 10px 0;
  }
}

/* img effect  ------- cover fadeIn */
.imgEffectAnime_fadeIn {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime_fadeIn;
  animation-name: imgEffectAnime_fadeIn;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- top-dowm */
.imgEffectAnime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime;
  animation-name: imgEffectAnime;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- left-right */
.imgEffectAnime_left_right {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime_left_right;
  animation-name: imgEffectAnime_left_right;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_left_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes imgEffectAnime_left_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* img effect  ------- right - left */
.imgEffectAnime_right_left {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime_right_left;
  animation-name: imgEffectAnime_right_left;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_right_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes imgEffectAnime_right_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* img effect  ------- _bottom_top */
.imgEffectAnime_bottom_top {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime_bottom_top;
  animation-name: imgEffectAnime_bottom_top;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_bottom_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_bottom_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- cover fade in */
.imgEffectAnime_bg_cover {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: imgEffectAnime_bg_cover;
  animation-name: imgEffectAnime_bg_cover;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_bg_cover {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_bg_cover {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* footer */
footer {
  background-color: #000;
  padding: 24px 0;
  text-align: center;
  color: #fff;
}
footer small {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  footer {
    text-align: center;
    padding: 16px 0;
  }
  footer small {
    font-size: 0.75rem;
  }
}

/* 20220214 add */
.cv-area .btn-top {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f7b524;
}

.cv-area .btn-top span {
  position: relative;
}

.cv-area .btn-top span::before,
.cv-area .btn-top span::after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #f7b524;
  position: absolute;
  top: 4px;
}

.cv-area .btn-top span::before {
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
  left: -20px;
}

.cv-area .btn-top span::after {
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(25deg);
  right: -20px;
}

@media screen and (max-width: 767px) {
  .cv-area .btn-top {
    font-size: 14px;
  }
}

@media screen and (max-width: 350px) {
  .cv-area .btn-top {
    font-size: 11.5px;
  }
}
