@charset "UTF-8";
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
}
.l-container--large {
  max-width: 1160px;
}
@media screen and (max-width: 1280px) {
  .l-container--large {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-container--inner {
    padding: 0 0;
  }
}

/* セクションレイアウト
----------------------- */
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  color: #333;
  min-width: 1020px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ボタン
----------------------- */
.c-btn {
  width: 100%;
  height: 130px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn {
    height: 70px;
  }
}
.c-btn__area {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .c-btn__area {
    margin: 30px 0;
  }
}
.c-btn__link {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff300;
  display: grid;
  place-content: center;
  border-radius: 10px;
  box-shadow: 6px 6px 0px rgb(196, 173, 46);
  background-clip: padding-box;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    box-shadow: 3px 3px 0px rgb(196, 173, 46);
    place-content: center start;
    padding-left: 20px;
  }
}
@media screen and (max-width: 375px) {
  .c-btn__link {
    padding-left: 5px;
  }
}
.c-btn__link::after {
  position: absolute;
  content: "\f0a9";
  font-family: "fontawesome";
  font-weight: 900;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  font-size: 50px;
  color: #d4145a;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__link::after {
    font-size: 20px;
    right: 10px;
  }
}
@media screen and (max-width: 375px) {
  .c-btn__link::after {
    right: 5px;
  }
}
.c-btn__link .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__link .inner {
    column-gap: 24px;
  }
}
.c-btn__link .txt {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .c-btn__link .txt {
    font-size: 18px;
    font-weight: 900;
  }
}
@media screen and (max-width: 375px) {
  .c-btn__link .txt {
    font-size: 5vw;
  }
}
.c-btn__link .free-icon {
  background: #d4145a;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -1px;
  white-space: nowrap;
  padding-left: 3px;
  text-shadow: 2px 2px 3px #d4145a, -2px 2px 3px #d4145a, 2px -2px 3px #d4145a, -2px -2px 3px #d4145a;
}
@media screen and (max-width: 767px) {
  .c-btn__link .free-icon {
    height: 65px;
    width: 65px;
    font-size: 12px;
    line-height: 1;
  }
}
.c-btn__link .free-icon .free {
  font-size: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .c-btn__link .free-icon .free {
    font-size: 18px;
    margin-top: 2px;
    letter-spacing: 1px;
  }
}
.c-btn__link:hover {
  box-shadow: 0px 0px 0px rgb(196, 173, 46);
  transform: translateY(2px);
  transition: 0.3s;
  background: #ff6600;
  color: #fff;
}
.c-btn__link:hover::after {
  right: 30px;
  transition: 0.3s;
  color: yellow;
}
@media screen and (max-width: 767px) {
  .c-btn__link:hover::after {
    right: 10px;
  }
}

/* テーブル
----------------------- */
.c-table {
  border: 1px solid #d3d3d3;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-table {
    min-width: 500px;
    margin-bottom: 20px;
  }
}
.c-table th,
.c-table td {
  padding: 10px 20px;
  border: 1px solid #d3d3d3;
  font-size: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table th,
  .c-table td {
    padding: 10px 7px;
    font-size: 14px;
  }
}
.c-table th {
  background: #fffce3;
  text-align: center;
}
.c-table td {
  font-weight: 400;
  text-align: center;
}
.c-table .red {
  color: #d4145a;
  font-weight: 700;
}
.c-table .left {
  text-align: left;
}

/* 見出しタイトル
----------------------- */
/* Inview
----------------------- */
.fadeIn {
  opacity: 0;
  transition: 3s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2.5s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2.5s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* simplebar
----------------------- */
.simplebar-track {
  background: #f0f0f0;
  /* バーの背景色を設定できます*/
  border-radius: 50px;
  /* バーに丸みをもたせる*/
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  /* デフォルトだと薄くなっています。*/
}

.simplebar-track .simplebar-scrollbar::before {
  background: #c7c7c7;
  /* ここでバーの色を設定 */
}

@media screen and (max-width: 767px) {
  .simplebar-track.simplebar-vertical {
    width: 8px;
  }
}
/* ===============================================
ヘッダー
=============================================== */
.p-header {
  position: absolute;
  height: 85px;
  width: 240px;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 999;
}
@media screen and (max-width: 1280px) {
  .p-header {
    height: 70px;
    width: 197px;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    position: static;
    height: 50px;
    width: 100%;
  }
}
.p-header__link {
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__link {
    grid-template-columns: 1fr;
    width: 100%;
    place-items: center;
  }
}
.p-header__logo {
  width: 195px;
}
@media screen and (max-width: 1280px) {
  .p-header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 120px;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  background: url(../img/kv_bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: 780px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-kv {
    background: url(../img/kv_bg_sp.jpg) repeat right -20px/cover;
  }
}
.p-kv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  background: #fff;
  bottom: 0px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-kv::after {
    height: 120px;
  }
}
.p-kv__contents {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  height: 600px;
}
@media screen and (max-width: 1280px) {
  .p-kv__contents {
    max-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__contents {
    height: 680px;
  }
}
.p-kv__main {
  position: absolute;
  top: 40px;
  left: 12.5vw;
  z-index: 30;
  width: 531px;
  height: 460px;
}
@media screen and (max-width: 1280px) {
  .p-kv__main {
    left: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__main {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 325px;
    height: 275px;
  }
}
.p-kv__title-area {
  position: absolute;
  width: 555px;
  height: 365px;
}
@media screen and (max-width: 767px) {
  .p-kv__title-area {
    width: 338px;
    height: 218px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-kv__btn-area {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateX(10px);
  width: 400px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .p-kv__btn-area {
    width: 85vw;
    max-width: 380px;
    height: 45px;
    bottom: 0px;
    transform: translateX(-50%) translateX(0);
  }
}
.p-kv__link {
  background: linear-gradient(to right, #fb5b3b, #d4145a);
  border-radius: 50px;
  border: 3px solid #fff;
  box-shadow: 6px 6px 0px #2e3192;
  background-clip: padding-box;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 28px;
  padding-bottom: 2px;
  position: relative;
  transition: 0.3s;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-kv__link {
    font-size: 20px;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
    box-shadow: 5px 5px 0px #2e3192;
  }
}
.p-kv__link::after {
  position: absolute;
  content: "\f0a9";
  font-family: "fontawesome";
  font-weight: 900;
  color: yellow;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-kv__link::after {
    right: 5%;
  }
}
.p-kv__link:hover {
  background: #fff300;
  opacity: 1;
  transition: 0.3s;
  color: #1b1464;
  transform: translateY(1.5px);
  box-shadow: 0px 0px 0px #2e3192;
}
.p-kv__link:hover::after {
  color: #d4145a;
  right: 16px;
  transition: 0.3s;
}
.p-kv__person {
  position: absolute;
  bottom: -160px;
  right: 7vw;
  z-index: 10;
  width: 808px;
  height: 762px;
}
@media screen and (max-width: 1290px) {
  .p-kv__person {
    right: 0vw;
  }
}
@media screen and (max-width: 1280px) {
  .p-kv__person {
    width: 700px;
    height: 660px;
    right: -1vw;
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__person {
    width: 500px;
    height: 472px;
    left: 50%;
    transform: translateX(-50%) translateX(-35px);
    bottom: -30px;
  }
}
.p-kv__icon {
  position: absolute;
  bottom: -40px;
  right: 4.5vw;
  z-index: 40;
  width: 357px;
  height: 309px;
}
@media screen and (max-width: 1280px) {
  .p-kv__icon {
    width: 300px;
    height: 260px;
    right: 1vw;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__icon {
    width: 220px;
    height: 193px;
    bottom: 20px;
  }
}

/* ===============================================
こんな方にオススメです
=============================================== */
.p-recommend {
  padding: 0px 0;
  margin-top: -90px;
}
@media screen and (max-width: 1280px) {
  .p-recommend {
    margin-top: -140px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend {
    margin-top: -70px;
  }
}
.p-recommend__box {
  position: relative;
  z-index: 999;
  background: #fffce3;
  border: 5px solid #fbb03b;
  border-radius: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recommend__box {
    border: 3px solid #fbb03b;
    padding: 20px 5% 0;
  }
}
.p-recommend__title {
  text-align: center;
  font-size: 45px;
  color: #1b1464;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-recommend__title {
    font-size: 22px;
  }
}
.p-recommend__title::before {
  position: absolute;
  content: "";
  background: url(../img/recommend_title.png) no-repeat center center/contain;
  left: -34px;
  bottom: 12px;
  height: 40px;
  width: 35px;
}
@media screen and (max-width: 767px) {
  .p-recommend__title::before {
    height: 22px;
    width: 20px;
    left: -24px;
    bottom: 5px;
  }
}
.p-recommend__title::after {
  position: absolute;
  content: "";
  background: url(../img/recommend_title.png) no-repeat center center/contain;
  right: -34px;
  bottom: 12px;
  transform: scaleX(-1);
  height: 40px;
  width: 35px;
}
@media screen and (max-width: 767px) {
  .p-recommend__title::after {
    height: 22px;
    width: 20px;
    right: -24px;
    bottom: 5px;
  }
}
.p-recommend__title span.red {
  color: #d4145a;
}
.p-recommend__list {
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.p-recommend__item {
  border-top: 2px solid #ccc;
  font-size: 24px;
  padding: 20px 0 20px 90px;
  flex-grow: 1;
  position: relative;
}
.p-recommend__item::before {
  position: absolute;
  content: "";
  background: url(../img/recommend_check.png) no-repeat center center/contain;
  top: 2px;
  left: 10px;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .p-recommend__item::before {
    width: 40px;
    height: 40px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%) translateY(-3px);
  }
}
@media screen and (max-width: 1280px) {
  .p-recommend__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend__item {
    padding: 16px 0 16px 50px;
    font-size: 16px;
  }
}
.p-recommend span.yellow {
  background: yellow;
}
.p-recommend__item:nth-child(1) {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recommend__item:nth-child(1) {
    flex-shrink: 1;
  }
}
.p-recommend__item:nth-child(2) {
  flex-grow: 1;
}
.p-recommend__item:last-child {
  border-bottom: 2px solid #ccc;
}

/* ===============================================
公開学力テストとは？
=============================================== */
.p-whats {
  background: #f2f2f2;
  position: relative;
  padding: 120px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-whats {
    padding: 60px 0 30px;
  }
}
.p-whats::before {
  position: absolute;
  content: "";
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
}
.p-whats__wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-whats__wrapper {
    flex-direction: column;
  }
}
.p-whats__title-area {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #01a0ca;
  margin-top: -24px;
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  filter: drop-shadow(7px 5px 0px rgba(0, 55, 87, 0.7));
}
@media screen and (max-width: 767px) {
  .p-whats__title-area {
    width: 180px;
    height: 180px;
    margin: -10px auto 0;
    filter: drop-shadow(-5px 5px 0px rgba(0, 55, 87, 0.7));
  }
}
.p-whats__title-area::after {
  position: absolute;
  content: "";
  background: url(../img/whats_ballon.png) no-repeat center center/contain;
  width: 61px;
  height: 44px;
  bottom: 10px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-whats__title-area::after {
    transform: scaleX(-1) rotate(80deg);
    transform-origin: center;
    right: 10px;
    bottom: 0px;
    width: 40px;
  }
}
.p-whats__en {
  position: absolute;
  font-family: "Exo", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  opacity: 0.6;
  top: 24px;
  left: 50px;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .p-whats__en {
    font-size: 26px;
    top: 16px;
    left: 30px;
  }
}
.p-whats__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  font-feature-settings: "palt";
  color: #fff300;
}
@media screen and (max-width: 767px) {
  .p-whats__title {
    font-size: 28px;
  }
}
.p-whats__txt {
  width: calc(100% - 370px);
  padding-top: 110px;
  font-size: 26px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-whats__txt {
    font-size: 16px;
    text-align: center;
    width: 100%;
    padding-top: 30px;
  }
}
.p-whats__txt .pink {
  color: #d4145a;
}

/* ===============================================
5つのメリット
=============================================== */
.p-merit {
  padding: 90px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-merit {
    padding: 60px 0;
  }
}
.p-merit__maintitle-area {
  display: grid;
  place-content: center;
}
.p-merit__maintitle-inner {
  height: 100%;
  position: relative;
  transform: translateX(-50px);
}
@media screen and (max-width: 767px) {
  .p-merit__maintitle-inner {
    transform: translateX(-10px);
    overflow: hidden;
  }
}
.p-merit__sub {
  position: absolute;
  display: inline-block;
  font-size: 32px;
  width: 100%;
  height: 40px;
  left: 178px;
  top: -10px;
  text-decoration: underline;
  text-decoration-color: #fff300;
  text-underline-offset: 10px;
  text-decoration-thickness: 5px;
}
@media screen and (max-width: 767px) {
  .p-merit__sub {
    left: 105px;
    top: -5px;
    font-size: 18px;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
  }
}
.p-merit__maintitle {
  font-size: 54px;
  color: #1b1464;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto;
  place-items: center end;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-merit__maintitle {
    font-size: 31px;
  }
}
.p-merit__maintitle .five {
  font-size: 110px;
  font-family: "Exo", sans-serif;
  color: yellow;
  background: #1b1464;
  width: 170px;
  height: 170px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  display: grid;
  place-content: center;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-merit__maintitle .five {
    width: 96px;
    height: 96px;
    font-size: 67px;
    margin-right: 7px;
  }
}
.p-merit__maintitle .merit {
  font-size: 70px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-merit__maintitle .merit {
    font-size: 40px;
  }
}
.p-merit__list {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-merit__list {
    margin: 40px 0;
  }
}
.p-merit__item {
  margin-bottom: 20px;
}
.p-merit__title-area {
  background: #01a0ca;
  height: 100%;
  border-right: 20px solid #1b1464;
  display: flex;
  margin: 40px 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-merit__title-area {
    border-right: 7px solid #1b1464;
    height: 100%;
    margin: 30px 0;
  }
}
.p-merit__num {
  background: #1b1464;
  color: yellow;
  line-height: 1;
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  place-items: end center;
}
@media screen and (max-width: 767px) {
  .p-merit__num {
    padding: 10px 5px;
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
    width: 50px;
    row-gap: 5px;
  }
}
.p-merit__num::after {
  background: #1b1464;
  width: 15px;
  height: 100%;
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-merit__num::after {
    right: -7px;
    width: 7px;
  }
}
.p-merit__num .sub {
  font-size: 16px;
  padding: 0 5px 10px 10px;
}
@media screen and (max-width: 767px) {
  .p-merit__num .sub {
    font-size: 10px;
    padding: 0 0 0 0;
  }
}
.p-merit__num .number {
  font-family: "Exo", sans-serif;
  font-size: 60px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-merit__num .number {
    font-size: 35px;
    padding: 0 0 0 0;
  }
}
.p-merit__title {
  color: #fff;
  font-size: 26px;
  display: grid;
  place-content: center;
  padding: 20px 0 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-merit__title {
    font-size: 18px;
    line-height: 1.4;
    padding: 10px 0 10px 16px;
  }
}
.p-merit__btnarea {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-merit__btnarea {
    margin: 30px 0 60px;
  }
}
.p-merit__subtitle {
  background: #f2f2f2;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 24px;
  color: #1b1464;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .p-merit__subtitle {
    font-size: 16px;
    height: auto;
    padding: 10px 0;
    text-align: center;
    line-height: 1.4;
  }
}
.p-merit__pic {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-merit__pic {
    margin: 30px 0 60px;
  }
}
.p-merit__pic--small {
  margin: 0 0 0 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-merit__pic--small {
    flex: 0 1 auto;
  }
}
.p-merit__pic img.img-merit04 {
  max-width: 300px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-merit__pic img.img-merit04 {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
.p-merit__wrapper {
  display: flex;
  margin: 60px 0;
  column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-merit__wrapper {
    margin: 30px 0;
    flex-direction: column;
  }
}
.p-merit__feature {
  font-size: 26px;
  color: #1b1464;
  border-bottom: 2px solid #1b1464;
  width: 90%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-merit__feature {
    font-size: 22px;
  }
}
.p-merit__txt--nowrap {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-merit__txt--nowrap {
    flex: 0 1 auto;
  }
}

/* ===============================================
公開学力テスト募集要項
=============================================== */
.p-guidelines {
  background: #f2f2f2;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-guidelines {
    padding: 60px 0;
  }
}
.p-guidelines__contents {
  background: #fff;
  border-radius: 20px;
  padding: 80px 0 0px;
  display: grid;
  place-content: center;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .p-guidelines__contents {
    padding: 40px 0 0px;
  }
}
.p-guidelines__maintitle {
  display: inline-block;
  font-size: 36px;
  text-align: center;
  padding: 0 40px;
  border-bottom: 4px solid #d4145a;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-guidelines__maintitle {
    font-size: 20px;
    border-bottom: 2px solid #d4145a;
    padding: 0 20px;
  }
}
.p-guidelines__inner {
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .p-guidelines__inner {
    padding: 20px 0;
  }
}
.p-guidelines__list {
  margin: 70px 0;
}
@media screen and (max-width: 767px) {
  .p-guidelines__list {
    margin: 40px 0 30px;
  }
}
.p-guidelines__title {
  background: #1b1464;
  color: #fff;
  height: 50px;
  font-size: 22px;
  padding-left: 30px;
  display: grid;
  place-content: center start;
}
@media screen and (max-width: 767px) {
  .p-guidelines__title {
    height: 100%;
    font-size: 16px;
    padding: 10px 5%;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: calc(5% + 1em);
  }
}
.p-guidelines__title .small {
  font-size: 0.9em;
}
.p-guidelines__table-caption {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-guidelines__table-caption {
    font-size: 12px;
    margin: 20px 0 0 0;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-guidelines__table-caption li {
    margin-bottom: 5px;
  }
}
.p-guidelines__caption-item {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-guidelines__caption-item {
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.p-guidelines__btnarea {
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .p-guidelines__btnarea {
    margin: 30px auto;
  }
}
.p-guidelines__cmp {
  border: #e94729 5px solid;
  border-radius: 20px;
  margin: 70px 0 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp {
    border: #e94729 3px solid;
    flex-direction: column;
    margin: 30px 0;
  }
}
.p-guidelines__cmp-head {
  background: #e94729;
  padding: 20px 10px 20px 20px;
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 10px;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head {
    padding: 5px 10px;
    width: 100%;
    justify-content: center;
    border-radius: 10px 10px 0 0;
  }
}
.p-guidelines__cmp-head::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  background: #e94729;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head::after {
    width: 100%;
    height: 22px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -21px;
  }
}
.p-guidelines__cmp-head .balloon {
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  place-items: center;
  line-height: 1.1;
  font-weight: 900;
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head .balloon {
    width: 76px;
    height: 76px;
  }
}
.p-guidelines__cmp-head .balloon .glade {
  font-size: 18px;
  color: #1b1464;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head .balloon .glade {
    font-size: 12px;
  }
}
.p-guidelines__cmp-head .balloon .free {
  font-size: 38px;
  color: #c1272d;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head .balloon .free {
    font-size: 24px;
  }
}
.p-guidelines__cmp-head .autumn-cmp {
  font-size: 44px;
  color: #fff300;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 1280px) {
  .p-guidelines__cmp-head .autumn-cmp {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-head .autumn-cmp {
    font-size: 28px;
  }
}
@media screen and (max-width: 420px) {
  .p-guidelines__cmp-head .autumn-cmp {
    font-size: 7vw;
  }
}
.p-guidelines__cmp-body {
  display: grid;
  place-content: center;
  padding: 0 0 0 60px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-body {
    padding-left: 0px;
    padding: 30px 0 20px 0;
  }
}
.p-guidelines__cmp-body .txt {
  color: #1b1464;
  font-size: 30px;
}
@media screen and (max-width: 1280px) {
  .p-guidelines__cmp-body .txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 420px) {
  .p-guidelines__cmp-body .txt {
    font-size: 5.8vw;
  }
}
.p-guidelines__cmp-body .big {
  color: #c1272d;
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 1280px) {
  .p-guidelines__cmp-body .big {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-body .big {
    font-size: 30px;
  }
}
@media screen and (max-width: 420px) {
  .p-guidelines__cmp-body .big {
    font-size: 7.7vw;
  }
}
.p-guidelines__cmp-body .caption {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-guidelines__cmp-body .caption {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .p-guidelines__cmp-body .caption {
    font-size: 3.5vw;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  height: 120px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: 90px;
  }
}
.p-footer__logo {
  width: 251px;
  height: 72px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 160px;
    height: 46px;
  }
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-sp03-only {
  display: none;
}
@media screen and (max-width: 375px) {
  .u-sp03-only {
    display: block;
  }
}

.u-pc-none {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-pc-none {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

/* テキスト設定
----------------------- */
.u-txt {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-txt {
    font-size: 16px;
    line-height: 1.6;
  }
}
.u-txt__list {
  font-size: 22px;
  padding-left: 20px;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-txt__list {
    font-size: 16px;
    padding-left: 14px;
    line-height: 1.6;
  }
}
.u-txt__item {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .u-txt__item {
    margin-bottom: 7px;
  }
}
.u-txt__item::before {
  position: absolute;
  left: -34px;
  top: -14px;
  content: "・";
  font-size: 40px;
  color: #1b1464;
}
@media screen and (max-width: 767px) {
  .u-txt__item::before {
    font-size: 30px;
    left: -24px;
    top: -12px;
  }
}/*# sourceMappingURL=style.css.map */