@charset "UTF-8";
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1024px;
  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%;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.l-container02 {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container02 {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l-container03 {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container03 {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

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

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

main {
  background: #fff;
  width: 100%;
}

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

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

/* ボタン
----------------------- */
.c-btn {
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  font-size: 28px;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}
.c-btn__link {
  background: #D3145A;
  color: #fff;
  border-radius: 50px;
}

/* 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;
}

/* リボン
----------------------- */
.c-ribon {
  width: 100%;
  background: #000;
  text-align: center;
  color: #fff;
  font-size: 28px;
  padding: 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-ribon {
    font-size: 16px;
    padding: 12px 0;
  }
}
.c-ribon::after {
  position: absolute;
  content: "";
  border-top: 30px solid #000;
  border-right: 40px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid transparent;
  bottom: -59px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .c-ribon::after {
    border-top: 20px solid #000;
    border-right: 23px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 23px solid transparent;
    bottom: -39px;
    z-index: 99;
  }
}
.c-ribon span {
  color: yellow;
}
.c-ribon--worry {
  background: #5a5a5a;
}
.c-ribon--worry::after {
  border-top: 30px solid #5a5a5a;
}
@media screen and (max-width: 767px) {
  .c-ribon--worry::after {
    border-top: 20px solid #5a5a5a;
  }
}
.c-ribon--message {
  background: #425D9E;
}
.c-ribon--message::after {
  border-top: 30px solid #425D9E;
}
@media screen and (max-width: 767px) {
  .c-ribon--message::after {
    border-top: 20px solid #425D9E;
  }
}
.c-ribon--feature {
  background: #005C56;
}
.c-ribon--feature::after {
  border-top: 30px solid #005C56;
}
@media screen and (max-width: 767px) {
  .c-ribon--feature::after {
    border-top: 20px solid #005C56;
  }
}
.c-ribon--feature {
  background: #005C56;
}
.c-ribon--feature::after {
  border-top: 30px solid #005C56;
}
@media screen and (max-width: 767px) {
  .c-ribon--feature::after {
    border-top: 20px solid #005C56;
  }
}
.c-ribon--strong {
  background: #4e4e72;
}
.c-ribon--strong::after {
  border-top: 30px solid #4e4e72;
}
@media screen and (max-width: 767px) {
  .c-ribon--strong::after {
    border-top: 20px solid #4e4e72;
  }
}

/* お申込みフォーム
----------------------- */
.c-form__item {
  margin: 20px 0;
}
.c-form__item input {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  background: #e6e6e6;
}
@media screen and (max-width: 767px) {
  .c-form__item input {
    padding: 8px;
    font-size: 16px;
  }
}
.c-form__item input::placeholder {
  color: #e7e7e7;
}
.c-form__item textarea {
  height: 100px;
  width: 100%;
  font-size: 16px;
  padding: 16px;
  background: #e6e6e6;
}
.c-form__item textarea::placeholder {
  color: #868686;
}
@media screen and (max-width: 767px) {
  .c-form__item textarea {
    font-size: 16px;
    padding: 8px;
  }
}
.c-form__title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-form__title {
    font-size: 16px;
  }
}
.c-form__require {
  color: #fff;
  background: #D3145A;
  padding: 0 7px 1px;
  font-size: 16px;
  margin-right: 10px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-form__require {
    font-size: 14px;
  }
}
.c-form__btnarea {
  text-align: center;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-form__btnarea {
    margin-top: 60px;
  }
}
.c-form__btn {
  height: 55px;
  text-align: center;
  color: #fff;
  background: #D3145A;
  font-size: 20px;
  width: 260px;
  transition: 0.3s;
  border-radius: 50px;
  letter-spacing: 1.5px;
}
.c-form__btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-form__btn {
    width: 90%;
    font-size: 18px;
  }
}
.c-form__privacy {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-form__privacy {
    font-size: 3.4vw;
    font-weight: 400;
    font-feature-settings: "palt";
  }
}
.c-form__privacy .c-form__title {
  letter-spacing: 1px;
}
.c-form__privacy .wrapper {
  margin: 20px 0 0;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.c-form__privacy input {
  margin-right: 10px;
}
.c-form__link {
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 10px 0;
  font-weight: 400;
  color: #292969;
}
@media screen and (max-width: 767px) {
  .c-form__link {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 6px;
  transform: rotate(50deg);
  width: 8px;
  height: 16px;
  border-right: 4px solid #D3145A;
  border-bottom: 4px solid #D3145A;
  content: "";
}

/* ===============================================
ヘッダー
=============================================== */
.p-header {
  height: 90px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-header {
    justify-content: center;
    padding-left: 0px;
    height: 70px;
  }
}
.p-header img {
  width: 210px;
  height: 54px;
}
@media screen and (max-width: 767px) {
  .p-header img {
    width: 158px;
    height: 41px;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  background: url(../img/kv_bg.jpg);
  background-repeat: no-repeat;
  height: calc(100svh - 90px);
  width: 100%;
  background-position: center;
  background-size: cover;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .p-kv {
    background: url(../img/kv_bg_tab.jpg);
    background-repeat: no-repeat;
    height: calc(100svh - 90px);
    width: 100%;
    background-position: center;
    background-size: cover;
    z-index: 10;
  }
}
@media screen and (max-width: 1280px) {
  .p-kv {
    height: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    padding-top: 70px;
    background: url(../img/kv_bg_sp.jpg);
    background-repeat: no-repeat;
    height: 165vw;
    width: 100%;
    background-position: top center;
    background-size: contain;
    min-width: 320px;
  }
}

/* ===============================================
合格実績
=============================================== */
.p-goukaku {
  padding: 30px 0 60px;
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, #C7EEF3, #C7EEF3 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #C7EEF3, #C7EEF3 1.5px, #fff 1.5px, #fff 30px);
}
@media screen and (max-width: 767px) {
  .p-goukaku {
    background-size: 18px 18px;
    background-image: repeating-linear-gradient(90deg, #C7EEF3, #C7EEF3 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #C7EEF3, #C7EEF3 1px, #fff 1px, #fff 30px);
  }
}
.p-goukaku p {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .p-goukaku p {
    font-size: 16px;
  }
}
.p-goukaku__pic {
  margin: 20px 0 50px;
}
@media screen and (max-width: 767px) {
  .p-goukaku__pic {
    width: 90%;
    margin: 20px auto 40px;
  }
}

/* ===============================================
正しい塾の選び方がわからない
=============================================== */
.p-choose {
  background-color: #626262;
}
.p-choose__top {
  background: url(../img/choose_bg01.jpg) no-repeat center top/cover;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-choose__top {
    background: url(../img/choose_bg01.jpg) no-repeat right -95px top/cover;
    padding: 20px 0 60px;
  }
}
.p-choose__big {
  font-size: 40px;
  color: yellow;
}
@media screen and (max-width: 767px) {
  .p-choose__big {
    font-size: 18px;
  }
}
.p-choose ul {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-choose ul {
    margin: 20px 0;
  }
}
.p-choose li {
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 20px;
  display: flex;
  height: 80px;
  align-items: center;
  position: relative;
  z-index: 0;
  padding-left: 180px;
}
@media screen and (max-width: 767px) {
  .p-choose li {
    height: 56px;
    margin-bottom: 15px;
    padding-left: 24px;
    font-size: 16px;
  }
}
.p-choose li span {
  position: relative;
  font-size: 42px;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-choose li span {
    font-size: 20px;
  }
}
.p-choose li span::before {
  content: "";
  border-radius: 50px;
  background: #00A99D;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-choose li span::before {
    width: 30px;
    height: 30px;
  }
}
.p-choose li p {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-choose li p {
    padding-left: 20px;
  }
}
.p-choose__btm {
  background: url(../img/choose_bg02.jpg) no-repeat center center/cover;
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-choose__btm {
    padding: 40px 0 170px;
  }
}
.p-choose__content {
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-choose__content {
    padding: 70px 0 30px 0;
  }
}
.p-choose__content p.big {
  font-size: 36px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-choose__content p.big {
    font-size: 22px;
  }
}
.p-choose__content p.big span.blue {
  color: #fff;
  background: #292969;
  padding: 0 0 0 10px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-choose__content p.big span.blue {
    padding: 0 0 0 10px;
  }
}
.p-choose__content p.big span.small {
  font-size: 28px;
}
.p-choose__content p.big span.red {
  color: #fff;
  background: #D3145A;
  padding: 0 10px;
  display: inline-block;
}
.p-choose__content p.txt {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-choose__content p.txt {
    font-size: 14px;
    text-align: left;
    padding: 0 5%;
  }
}
.p-choose__content::after {
  position: absolute;
  content: "";
  background: url(../img/choose_pic.png) no-repeat center center/contain;
  width: 324px;
  height: 259px;
  left: -150px;
  bottom: -20px;
}
@media screen and (max-width: 860px) {
  .p-choose__content::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-choose__content::after {
    display: block;
    left: 50%;
    bottom: -130px;
    transform: translateX(-50%);
    width: 205px;
    height: 164px;
  }
}
.p-choose__arrow {
  position: absolute;
  background: #626262;
  color: #fff;
  font-size: 24px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 130px;
  padding: 10px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 767px) {
  .p-choose__arrow {
    font-size: 16px;
    width: 95%;
    height: 90px;
    top: -60px;
  }
}
.p-choose__sokode {
  width: 148px;
  margin: 0 auto 10px;
}

/* ===============================================
駿台・浜学園の学習戦略
=============================================== */
.p-senryaku {
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #ebf5f3 1.5px, #ebf5f3 30px);
  padding: 40px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-senryaku {
    background-size: 18px 18px;
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1px, #ebf5f3 1px, #ebf5f3 30px);
    padding: 30px 0 0;
  }
}
.p-senryaku h2.big-title {
  font-size: 54px;
}
@media screen and (max-width: 767px) {
  .p-senryaku h2.big-title {
    font-size: 24px;
  }
}
.p-senryaku__title01 {
  width: 400px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-senryaku__title01 {
    width: 80%;
    margin: 20px auto 0;
  }
}
.p-senryaku__box {
  border: 3px solid #292969;
  background: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box {
    padding: 10px 5% 20px;
    text-align: left;
    font-size: 14px;
  }
}
.p-senryaku__box .title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #292969;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box .title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 6px;
    font-weight: 700;
  }
}
.p-senryaku__box .title span {
  color: #D3145A;
}
.p-senryaku__list {
  margin: 30px 0;
}
@media screen and (max-width: 440px) {
  .p-senryaku__list {
    margin: 50px 0;
  }
}
.p-senryaku__item {
  background: url(../img/senryaku_bg.png) no-repeat center center/contain;
  width: 100%;
  height: 590px;
  padding: 40px 0;
}
@media screen and (max-width: 440px) {
  .p-senryaku__item {
    background: url(../img/senryaku_bg_sp.png) no-repeat center center/contain;
    filter: drop-shadow(2px 2px 4px #d1d1d1);
    height: 100%;
    padding: 40px 0 0 0;
    margin-bottom: 20px;
  }
}
.p-senryaku__item p.red {
  color: #D3145A;
  font-size: 26px;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 3px;
  margin: 20px 0;
}
@media screen and (max-width: 440px) {
  .p-senryaku__item p.red {
    font-size: 20px;
    text-decoration-thickness: 2px;
    margin: 10px 0 0 0;
  }
}
.p-senryaku__item ul {
  width: 410px;
  margin: 30px auto 0;
}
@media screen and (max-width: 440px) {
  .p-senryaku__item ul {
    width: 100%;
    margin: 20px auto 0;
  }
}
.p-senryaku__item li {
  font-size: 20px;
  text-align: left;
  margin-bottom: 10px;
  padding-left: 60px;
}
@media screen and (max-width: 440px) {
  .p-senryaku__item li {
    font-size: 16px;
  }
}
.p-senryaku__item li i {
  padding-right: 5px;
}
.p-senryaku__title02 img {
  object-fit: contain;
  height: 90px;
  filter: drop-shadow(4px 4px 6px #e9cf89);
}
@media screen and (max-width: 440px) {
  .p-senryaku__title02 img {
    height: 70px;
  }
}
.p-senryaku__item-pic {
  width: 410px;
  height: 175px;
  margin: 30px auto 0;
}
@media screen and (max-width: 440px) {
  .p-senryaku__item-pic {
    width: 80%;
  }
}
.p-senryaku h3.middle-title {
  font-size: 36px;
  margin: 70px 0 65px;
}
@media screen and (max-width: 767px) {
  .p-senryaku h3.middle-title {
    font-size: 18px;
    margin: 0px 0 50px;
  }
}
.p-senryaku h3.middle-title span {
  color: #D3145A;
}
.p-senryaku__box02 {
  border: #292969 solid 3px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  padding: 50px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box02 {
    padding: 50px 0 40px;
  }
}
.p-senryaku__box02 img {
  width: 607px;
  height: 332px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box02 img {
    width: 95%;
    height: auto;
  }
}
.p-senryaku__box02 p {
  font-size: 24px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box02 p {
    font-size: 16px;
  }
}
.p-senryaku__box02::after {
  display: none;
  position: absolute;
  content: "";
  background: url(../img/senryaku_sunhama.png) no-repeat center center/contain;
  width: 284px;
  height: 147px;
  right: -80px;
  bottom: -50px;
}
@media screen and (max-width: 1280px) {
  .p-senryaku__box02::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-senryaku__box02::after {
    display: block;
    width: 163px;
    height: 84px;
    top: auto;
    right: auto;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
  }
}
.p-senryaku__box02-title {
  font-size: 20px;
  color: #fff;
  background: #292969;
  border-radius: 50px;
  display: inline-block;
  padding: 10px 20px;
  letter-spacing: 1.5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-senryaku__box02-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 7px 0px;
    width: 80%;
  }
}
.p-senryaku__box02-title span {
  color: yellow;
}
.p-senryaku__wrap {
  overflow: hidden;
}
.p-senryaku__merit {
  margin: 160px 0 0 0;
  background: #fff;
  border-top-right-radius: 2000px 600px;
  border-top-left-radius: 2000px 600px;
  border-bottom-right-radius: 2000px 600px;
  border-bottom-left-radius: 2000px 600px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit {
    margin: 90px 0 0 0;
    background: #fff;
    border-top-right-radius: 800px 600px;
    border-top-left-radius: 800px 600px;
    border-bottom-right-radius: 800px 600px;
    border-bottom-left-radius: 800px 600px;
    margin-left: -200px;
    margin-right: -200px;
    padding-left: 200px;
    padding-right: 200px;
    padding-bottom: 10px;
  }
}
.p-senryaku__merit .big-title {
  font-size: 50px;
  letter-spacing: 1.2;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit .big-title {
    font-size: 24px;
    padding-top: 30px;
  }
}
.p-senryaku__merit .big-title span {
  color: #D3145A;
}
.p-senryaku__merit ul {
  margin: 40px 0;
}
.p-senryaku__merit li {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 120px 1fr;
  height: 240px;
  width: 600px;
  margin: 70px auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li {
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr 120px;
    width: 100%;
    height: auto;
  }
}
.p-senryaku__merit li::after {
  position: absolute;
  content: "";
  width: 160%;
  height: 3px;
  background: #00A99D;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li::after {
    width: 85%;
  }
}
.p-senryaku__merit li:last-child::after {
  display: none;
}
.p-senryaku__merit li .title {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: left;
  font-size: 40px;
  color: #00756D;
  padding-left: 70px;
  padding-top: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li .title {
    font-size: 20px;
    padding-left: 50px;
    padding-top: 0px;
  }
}
.p-senryaku__merit li .title::before {
  position: absolute;
  content: "01";
  font-family: "Exo 2", sans-serif;
  color: #C7EEF3;
  font-size: 150px;
  z-index: -1;
  top: -70px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li .title::before {
    font-size: 74px;
    left: 0;
    top: -40px;
  }
}
.p-senryaku__merit li .title--03::before {
  content: "03";
}
.p-senryaku__merit li .txt {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li .txt {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-senryaku__merit li .pic {
  grid-column: 2/3;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li .pic {
    grid-column: 1/2;
    grid-row: 3/4;
    margin: 0 auto;
  }
}
.p-senryaku__merit li .pic img {
  height: 226px;
  width: 226px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li .pic img {
    height: 110px;
    width: 110px;
  }
}
.p-senryaku__merit li.middle {
  grid-template-columns: 1fr 290px;
  grid-template-rows: 1fr 120px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li.middle {
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr 120px;
    width: 100%;
  }
}
.p-senryaku__merit li.middle .title {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li.middle .title {
    grid-column: 1/2;
    font-size: 20px;
    padding-left: 50px;
    padding-top: 0px;
  }
}
.p-senryaku__merit li.middle .title::before {
  content: "02";
  left: auto;
  right: -40px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li.middle .title::before {
    font-size: 74px;
    right: auto;
    left: 0;
    top: -40px;
  }
}
.p-senryaku__merit li.middle .txt {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li.middle .txt {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-senryaku__merit li.middle .pic {
  grid-column: 1/2;
  grid-row: 1/3;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-senryaku__merit li.middle .pic {
    grid-column: 1/2;
    grid-row: 3/4;
    margin: 10px auto;
  }
}
.p-senryaku__last {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-senryaku__last {
    padding: 60px 0;
  }
}
.p-senryaku__last .title {
  font-size: 36px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-senryaku__last .title {
    font-size: 24px;
  }
}
.p-senryaku__last .title::before {
  position: absolute;
  top: 0.8rem;
  height: 5rem;
  content: "";
  border-left: solid 3px;
  left: 0;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .p-senryaku__last .title::before {
    top: -0.2em;
  }
}
.p-senryaku__last .title::after {
  position: absolute;
  top: 0.8rem;
  height: 5rem;
  content: "";
  border-right: solid 3px;
  right: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .p-senryaku__last .title::after {
    top: -0.2em;
  }
}
.p-senryaku__last ul {
  margin: 30px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.p-senryaku__last li {
  width: 260px;
  height: 260px;
  background: url(../img/senryaku_last_bg.png) no-repeat center center/contain;
  font-size: 24px;
}
@media screen and (max-width: 860px) {
  .p-senryaku__last li {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-senryaku__last li {
    font-size: 14px;
    height: 130px;
    background: url(../img/senryaku_last_bg.png) no-repeat top center/118px 130px;
  }
}
.p-senryaku__last li span {
  color: #D3145A;
}
.p-senryaku__last li .num {
  color: white;
  font-size: 36px;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 860px) {
  .p-senryaku__last li .num {
    font-size: 36px;
    padding: 10px 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-senryaku__last li .num {
    font-size: 16px;
    padding: 0;
    margin-bottom: 10px;
  }
}
.p-senryaku__last li img {
  width: 109px;
  height: 99px;
  padding-top: 10px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-senryaku__last li img {
    width: 46px;
    height: 43px;
    padding-top: 5px;
  }
}
.p-senryaku__last .big {
  font-size: 36px;
  line-height: 1.4;
}
.p-senryaku__last .big span {
  font-size: 50px;
  color: #D3145A;
}
@media screen and (max-width: 860px) {
  .p-senryaku__last .big {
    font-size: 24px;
  }
  .p-senryaku__last .big span {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-senryaku__last .big {
    font-size: 16px;
  }
  .p-senryaku__last .big span {
    font-size: 22px;
  }
}

/* ===============================================
CTA
=============================================== */
.p-cta {
  background: url(../img/cta_bg.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 70px 0 70px;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 40px 0 40px;
    background: url(../img/cta_bg_sp.jpg) no-repeat center center/cover;
  }
}
.p-cta__title {
  font-size: 43px;
  margin-bottom: 20px;
}
.p-cta__title span {
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  .p-cta__title span {
    font-size: 22px;
  }
}
@media screen and (max-width: 860px) {
  .p-cta__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.p-cta p {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-cta p {
    font-size: 18px;
  }
}
.p-cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-cta__wrapper {
    flex-direction: column-reverse;
  }
}
.p-cta__wrapper img {
  width: 303px;
  height: 178px;
}
@media screen and (max-width: 767px) {
  .p-cta__wrapper img {
    width: 252px;
    height: 148px;
    margin-top: 10px;
  }
}
.p-cta__balloon {
  background: url(../img/cta_balloon.png) no-repeat center center/contain;
  width: 291px;
  height: 138px;
  margin-left: 50px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-cta__balloon {
    background: url(../img/cta_balloon_sp.png) no-repeat center center/contain;
    margin-left: 0px;
    width: 224px;
    height: 106px;
  }
}
.p-cta__balloon p {
  font-size: 20px;
  letter-spacing: 0.5px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-cta__balloon p {
    font-size: 16px;
    padding-top: 20px;
    letter-spacing: 0px;
  }
}
.p-cta p.small {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cta p.small {
    font-size: 14px;
  }
}
.p-cta__btnarea {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-cta__btnarea {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}
.p-cta__btn {
  width: 400px;
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin-bottom: 16px;
    width: 85%;
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}
.p-cta__link {
  background: #D3145A;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 2px solid #fff;
}
.p-cta__link:hover {
  background: #fff;
  color: #D3145A;
  border: 2px solid #D3145A;
}
.p-cta__link i {
  padding-left: 5px;
  font-size: 24px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-cta__link i {
    font-size: 20px;
    padding-top: 2px;
  }
}

/* ===============================================
抱える悩みはそれぞれ違うんです
=============================================== */
.p-worry__top {
  background: url(../img/worry_bg01.jpg) no-repeat center center/cover;
  height: 407px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .p-worry__top {
    height: 193px;
  }
}
.p-worry__top .pic {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-worry__top .pic {
    width: 95%;
  }
}
.p-worry__top img {
  width: 783px;
  height: 379px;
}
@media screen and (max-width: 860px) {
  .p-worry__top img {
    width: 750px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-worry__top img {
    width: 100%;
  }
}
.p-worry__middle {
  background: url(../img/worry_bg02.jpg) no-repeat center bottom/cover;
  position: relative;
  height: 440px;
}
.p-worry__middle .pic {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-worry__middle .pic {
    width: 100%;
    bottom: 40px;
  }
}
.p-worry__middle img {
  width: auto;
  height: 370px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-worry__middle img {
    width: 100%;
  }
}
.p-worry__last ul {
  border-radius: 100px;
  border: 5px solid #00756D;
  padding: 30px;
  font-size: 22px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-worry__last ul {
    border: 2px solid #00756D;
    border-radius: 30px;
    font-size: 15px;
    padding: 20px;
    margin-top: 30px;
  }
}
.p-worry__last ul::after {
  background: url(../img/worry_arrow.png) no-repeat center center/contain;
  content: "";
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .p-worry__last ul::after {
    width: 40px;
    height: 34px;
    bottom: -26px;
  }
}
.p-worry__last li {
  padding-left: 40px;
  margin-bottom: 10px;
  position: relative;
}
.p-worry__last li span {
  color: #D3145A;
}
@media screen and (max-width: 767px) {
  .p-worry__last li {
    padding-left: 20px;
    margin-bottom: 14px;
  }
}
.p-worry__last li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  content: "●";
  color: #292969;
}
@media screen and (max-width: 767px) {
  .p-worry__last li::before {
    left: 0px;
    top: 10px;
  }
}
.p-worry__last li:last-child {
  margin-bottom: 0;
}
.p-worry__last .pic {
  margin: 40px auto 0;
  width: 325px;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-worry__last .pic {
    margin: 30px auto 0;
  }
}
.p-worry__last img {
  width: 325px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .p-worry__last img {
    width: 239px;
    height: 147px;
  }
}

/* ===============================================
SDGsカリキュラム受講の流れ 3STEP
=============================================== */
.p-step {
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #FFF7C7 1.5px, #FFF7C7 30px);
  border-top-right-radius: 2000px 600px;
  border-top-left-radius: 2000px 600px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
  margin-top: 80px;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-step {
    background-size: 18px 18px;
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1px, #FFF7C7 1px, #FFF7C7 30px);
    border-top-right-radius: 1000px 600px;
    border-top-left-radius: 1000px 600px;
    margin-left: -200px;
    margin-right: -200px;
    padding-left: 200px;
    padding-right: 200px;
  }
}
.p-step__wrap {
  overflow: hidden;
}
.p-step__triangle {
  width: 542px;
  height: 137px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-step__triangle {
    width: 336px;
    height: 85px;
    top: -50px;
  }
}
.p-step__txt {
  text-align: center;
  margin-top: -20px;
  font-feature-settings: "palt";
}
.p-step__black {
  background: #000;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  padding: 14px 0;
  margin: 30px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-step__black {
    font-size: 16px;
    padding: 7px 0;
    border-radius: 7px;
  }
}
.p-step__black::after {
  position: absolute;
  content: "";
  background: #000;
  width: 30px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  bottom: -20px;
  left: 30px;
}
.p-step__table {
  max-width: 640px;
  height: 331px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-step__table {
    width: 100%;
    height: 100%;
    max-width: 580px;
  }
}
.p-step__white {
  background: #fff;
  color: #D3145A;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  padding: 14px 0;
  margin: 30px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-step__white {
    font-size: 16px;
    padding: 7px 0;
    border-radius: 7px;
    margin: 16px 0;
  }
}
.p-step__flow {
  background: #292969;
  border-radius: 20px;
  margin: 50px 0 0 0;
  padding: 20px 60px 0px;
}
@media screen and (max-width: 860px) {
  .p-step__flow {
    padding: 20px 30px 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__flow {
    margin: 40px 0 20px 0;
    border-radius: 10px;
    padding: 20px 5% 0px;
  }
}
.p-step__title {
  background: #fff;
  border: 8px solid #292969;
  width: 80%;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
  z-index: 30;
  position: relative;
  padding: 10px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-step__title {
    border: 3px solid #292969;
    width: 90%;
    border-radius: 10px;
  }
}
.p-step__title .small {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-step__title .small {
    font-size: 14px;
  }
}
.p-step__title .middle {
  font-size: 33px;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .p-step__title .middle {
    font-size: 16px;
    margin-top: 0px;
  }
}
.p-step__title .big {
  font-size: 50px;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .p-step__title .big {
    font-size: 24px;
    margin-top: -10px;
  }
}
.p-step__title .big span {
  font-size: 76px;
  color: #D3145A;
}
@media screen and (max-width: 767px) {
  .p-step__title .big span {
    font-size: 36px;
  }
}
.p-step__content {
  background: #fff;
  border-radius: 20px 20px 0 0;
  margin-top: -60px;
  z-index: 0;
  position: relative;
  padding: 60px 40px 30px;
  position: relative;
}
@media screen and (max-width: 860px) {
  .p-step__content {
    padding: 120px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__content {
    border-radius: 7px;
    margin-top: -80px;
  }
}
.p-step__content::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-step__content .icon {
  position: absolute;
  right: 30px;
  text-align: center;
  background: #FFF7C7;
  border-radius: 10px;
  padding: 8px 14px;
  top: 70px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-step__content .icon {
    top: 100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.p-step__content ul {
  margin: 40px 0 0 0;
}
.p-step__content li {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: 26px 1fr 133px;
  margin-bottom: 60px;
}
.p-step__content li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 860px) {
  .p-step__content li {
    grid-template-columns: 110px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-step__content li {
    grid-template-columns: 65px 1fr;
    grid-template-rows: 65px 1fr 90px;
    margin-bottom: 40px;
  }
}
.p-step__content .num {
  grid-column: 1/2;
  grid-row: 1/3;
  width: 122px;
  height: 122px;
  background: linear-gradient(to right, #EA963A 0%, #E26C38 100%);
  color: #fff;
  display: flex;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 860px) {
  .p-step__content .num {
    width: 90px;
    height: 90px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__content .num {
    font-size: 14px;
    width: 64px;
    height: 64px;
  }
}
.p-step__content .num span {
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-step__content .num span {
    font-size: 20px;
  }
}
.p-step__content .num::after {
  position: absolute;
  content: "";
  height: 210px;
  width: 4px;
  background: linear-gradient(to right, #EA963A 0%, #E26C38 100%);
  bottom: -210px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-step__content .num::after {
    display: none;
  }
}
.p-step__content .num--last::after {
  height: 175px;
  bottom: -175px;
}
@media screen and (max-width: 860px) {
  .p-step__content .num::after {
    height: 300px;
    bottom: -300px;
  }
  .p-step__content .num--last::after {
    height: 180px;
    bottom: -180px;
  }
}
.p-step__content .title {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 24px;
  color: #D3145A;
}
@media screen and (max-width: 767px) {
  .p-step__content .title {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
  }
}
.p-step__content .txt {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 16px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-step__content .txt {
    grid-column: 1/3;
    grid-row: 2/3;
    font-size: 14px;
    margin-bottom: 10px;
    padding-top: 10px;
  }
}
.p-step__content .pic {
  grid-column: 2/3;
  grid-row: 3/4;
  width: 412px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-step__content .pic {
    grid-column: 1/3;
    grid-row: 3/4;
    width: 100%;
  }
  .p-step__content .pic img {
    max-width: 330px;
    margin: 0 auto;
  }
}
.p-step__end {
  background: #292969;
  color: #fff;
  text-align: center;
  font-size: 30px;
  padding: 80px 0 40px 0;
}
@media screen and (max-width: 767px) {
  .p-step__end {
    font-size: 18px;
  }
}
.p-step__end span {
  color: yellow;
}

/* ===============================================
受講者からの声
=============================================== */
.p-message {
  background: url(../img/message_bg.jpg) center center;
}
@media screen and (max-width: 767px) {
  .p-message {
    background-size: 400px;
    background-position: bottom right;
  }
}
.p-message__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 170px 0 90px;
  row-gap: 160px;
}
@media screen and (max-width: 767px) {
  .p-message__list {
    row-gap: 130px;
    padding: 140px 0 90px;
  }
}
.p-message__item {
  width: calc(50% - 20px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message__item {
    width: 100%;
  }
}
.p-message__circle {
  width: 190px;
  height: 190px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}
.p-message__box {
  background: #fff;
  position: relative;
  border-radius: 10px;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 80px 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-message__box {
    padding: 40px 20px 20px;
  }
}
.p-message__pic {
  width: 110px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-message__pic {
    width: 80px;
  }
}

/* ===============================================
復習テスト３つの特徴
=============================================== */
.p-feature__content {
  padding: 60px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__content {
    padding: 30px 0 50px;
  }
}
.p-feature__content p {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-feature__content p {
    padding: 0 0;
    width: 90%;
    line-height: 1.3;
  }
}
.p-feature__title {
  font-size: 36px;
  width: 75%;
  max-width: 1000px;
  background: linear-gradient(to right, #EA963A 0%, #E26C38 100%);
  color: #fff;
  border-radius: 10px;
  height: 83px;
  line-height: 70px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 20px;
    margin: 30px auto 0;
    height: 40px;
    line-height: 35px;
  }
}
.p-feature__title span.yellow {
  color: yellow;
}
.p-feature__title span.big {
  font-size: 63px;
}
@media screen and (max-width: 767px) {
  .p-feature__title span.big {
    font-size: 36px;
  }
}
.p-feature li {
  background: #e8f2f0;
  text-align: center;
  padding: 30px 0 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-feature li {
    padding: 0px 0 10px;
  }
}
.p-feature li .head {
  display: flex;
  align-items: center;
  width: 463px;
  margin: 0 auto 14px;
}
@media screen and (max-width: 767px) {
  .p-feature li .head {
    width: 95%;
    padding: 30px 0 10px;
  }
}
.p-feature li .num {
  background: linear-gradient(to right, #EA963A 0%, #E26C38 100%);
  color: #fff;
  font-size: 36px;
  width: 80px;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-feature li .num {
    width: 50px;
    height: 40px;
    font-size: 22px;
  }
}
.p-feature li .title {
  font-size: 24px;
  padding-left: 20px;
  line-height: 1.2;
  color: #292969;
}
@media screen and (max-width: 767px) {
  .p-feature li .title {
    font-size: 18px;
    text-align: left;
    padding-left: 10px;
  }
}
.p-feature li .title span {
  color: #D3145A;
}
.p-feature li .pic {
  width: 511px;
  height: 195px;
  margin: 14px auto 0;
}
@media screen and (max-width: 767px) {
  .p-feature li .pic {
    width: 95%;
    height: 123px;
    margin: 14px auto 10px;
    max-width: 340px;
  }
}
.p-feature__pic {
  width: 606px;
  height: 372px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-feature__pic {
    width: 85%;
    height: 414px;
    max-width: 340px;
  }
}
.p-feature__pic img {
  border: 3px solid #00A99D;
}
@media screen and (max-width: 767px) {
  .p-feature__pic img {
    padding: 5%;
  }
}
.p-feature p.last {
  font-size: 24px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature p.last {
    font-size: 18px;
    margin-top: 10px;
  }
}
.p-feature p.last span {
  color: #D3145A;
}

/* ===============================================
		塾の強み
		=============================================== */
.p-strong__content {
  background: #DDE9F5;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-strong__content {
    padding: 60px 0;
  }
}
.p-strong ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 676px;
  margin: 0 auto;
  column-gap: 40px;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-strong ul {
    column-gap: 0px;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    column-gap: 40px;
  }
}
.p-strong li {
  width: 316px;
}
@media screen and (max-width: 767px) {
  .p-strong li {
    width: 280px;
  }
}
.p-strong__head {
  width: 316px;
  height: 316px;
  filter: drop-shadow(4px 4px 6px #9295a7);
}
@media screen and (max-width: 767px) {
  .p-strong__head {
    width: 280px;
    height: 280px;
  }
}
.p-strong__head .title {
  height: 99px;
  position: relative;
}
.p-strong__head .title p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-strong__head .title p {
    font-size: 18px;
    bottom: 16px;
  }
}
.p-strong__head--01 {
  background: url(../img/strong01.png) no-repeat center center/cover;
}
.p-strong__head--02 {
  background: url(../img/strong02.png) no-repeat center center/cover;
}
.p-strong__head--03 {
  background: url(../img/strong03.png) no-repeat center center/cover;
}
.p-strong__head--04 {
  background: url(../img/strong04.png) no-repeat center center/cover;
}
.p-strong__body {
  width: 316px;
  height: 316px;
  background: #fff;
  border-radius: 50%;
  padding: 30px;
  margin-top: -40px;
  border: 3px solid #F7931E;
}
@media screen and (max-width: 767px) {
  .p-strong__body {
    width: 280px;
    height: 280px;
  }
}
.p-strong__body p {
  font-size: 16px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-strong__body p {
    font-size: 14px;
  }
}

/* ===============================================
コース内容
=============================================== */
.p-course__content {
  background: #F2F3F0;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-course__content {
    padding: 40px 0;
  }
}
.p-course ul {
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-course ul {
    padding: 30px 0;
  }
}
.p-course li {
  margin-bottom: 10px;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-course li {
    padding: 0 5%;
    margin-bottom: 30px;
  }
}
.p-course__head {
  background: #005C56;
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 40px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-course__head {
    padding: 14px 20px 20px;
  }
}
.p-course__head:hover {
  transition: 0.3s;
  opacity: 0.8;
  cursor: pointer;
}
.p-course__head .title {
  color: yellow;
  font-size: 27px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course__head .title {
    font-size: 18px;
  }
}
.p-course__head p {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-course__head p {
    font-size: 14px;
  }
}
.p-course__btn {
  background: #fff;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-course__btn {
    width: 36px;
    height: 36px;
    right: 14px;
    top: 14px;
  }
}
.p-course__btn:hover {
  background: yellow;
  transition: 0.3s;
}
.p-course__btn::after {
  position: absolute;
  content: "\f067";
  font-size: 30px;
  font-family: "fontawesome";
  font-weight: 900;
  color: #005C56;
  right: 13px;
  top: 4px;
}
@media screen and (max-width: 767px) {
  .p-course__btn::after {
    font-size: 24px;
    right: 8px;
    top: 3px;
  }
}
.p-course__head:hover .p-course__btn {
  background: yellow;
}
.p-course__head.open .p-course__btn::after {
  content: "\f068";
}
.p-course__body {
  display: none;
  padding: 10px 0;
}
.p-course__body.open {
  display: block;
}
.p-course p.big {
  font-size: 24px;
  text-align: center;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-course p.big {
    font-size: 18px;
  }
}
.p-course p.big span {
  color: #D3145A;
}

/* ===============================================
実際の口コミ
=============================================== */
.p-voice {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: 40px 0 20px;
  }
}
.p-voice h2 {
  font-size: 24px;
  text-align: center;
  letter-spacing: 2px;
}
.p-voice li {
  padding: 30px;
}
.p-voice li .wrapper {
  background: #FCF4CC;
  border-radius: 10px;
  padding: 10px;
  width: 704px;
}
@media screen and (max-width: 767px) {
  .p-voice li .wrapper {
    width: 300px;
  }
}
.p-voice li .border {
  border: 3px solid #F7931E;
  border-radius: 7px;
  padding: 10px;
  display: flex;
  align-items: center;
  height: 280px;
}
@media screen and (max-width: 767px) {
  .p-voice li .border {
    height: 100%;
    flex-direction: column;
  }
}
.p-voice li .head {
  width: 135px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .p-voice li .head {
    width: 98px;
    height: 98px;
  }
}
.p-voice li .body {
  width: calc(100% - 140px);
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-voice li .body {
    width: 100%;
  }
}
.p-voice li .title {
  color: #E07128;
  font-size: 22px;
  margin-bottom: 10px;
}
.p-voice li .title span {
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .p-voice li .title {
    font-size: 18px;
    text-align: center;
  }
}
.p-voice li p {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-voice li p {
    line-height: 1.6;
  }
}

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #F7931E;
  /*矢印の色*/
  border-right: 2px solid #F7931E;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}
@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    top: 20% !important;
  }
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 5% !important;
  transform: rotate(-135deg);
  width: 50px !important;
  height: 50px !important;
  z-index: 99;
}
.slick-prev::before {
  z-index: 99 !important;
  content: "" !important;
  background: url(../img/voice_prev.png) no-repeat center center/contain !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px !important;
  height: 50px !important;
  filter: drop-shadow(4px 4px 4px #5e3800);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 5% !important;
  transform: rotate(45deg);
  width: 50px !important;
  height: 50px !important;
}
.slick-next::before {
  z-index: 99 !important;
  content: "" !important;
  background: url(../img/voice_next.png) no-repeat center center/contain !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px !important;
  height: 50px !important;
  filter: drop-shadow(4px 4px 4px #5e3800);
}

/* ===============================================
期間限定キャンペーン
=============================================== */
.p-cmp {
  background: #425D9E;
  text-align: center;
  color: #fff;
  padding: 30px 0;
}
.p-cmp__title {
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  .p-cmp__title {
    font-size: 24px;
  }
}
.p-cmp__title span {
  color: yellow;
}
.p-cmp__box {
  border: 4px solid #fff;
  border-radius: 30px;
  position: relative;
  width: 670px;
  margin: 20px auto;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-cmp__box {
    width: 90%;
    padding: 20px 50px;
  }
}
.p-cmp__icon {
  position: absolute;
  width: 184px;
  height: 184px;
  left: -85px;
  top: -120px;
}
@media screen and (max-width: 767px) {
  .p-cmp__icon {
    width: 110px;
    height: 110px;
    left: -30px;
    top: -20px;
  }
}

/* ===============================================
お申込み・アクセスエリア背景
=============================================== */
.p-last {
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, #DDE8F6, #DDE8F6 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #DDE8F6, #DDE8F6 1.5px, #fff 1.5px, #fff 30px);
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .p-last {
    background-size: 18px 18px;
    background-image: repeating-linear-gradient(90deg, #DDE8F6, #DDE8F6 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #DDE8F6, #DDE8F6 1px, #fff 1px, #fff 30px);
  }
}

/* ===============================================
お申込み
=============================================== */
.p-contact {
  border: 5px solid #00A99D;
  background: #fff;
  border-radius: 30px;
  padding: 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 30px 5%;
    border: 3px solid #00A99D;
  }
}
.p-contact .title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #00756D;
}
@media screen and (max-width: 767px) {
  .p-contact .title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.p-contact__btnarea {
  width: 80%;
  height: 60px;
  line-height: 58px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact__btnarea {
    width: 90%;
    height: 50px;
    line-height: 45px;
  }
}
.p-contact__link {
  display: block;
  background: #D3145A;
  border: 3px solid #D3145A;
  color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  text-align: center;
  font-size: 24px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact__link {
    font-size: 18px;
  }
}
.p-contact__link:hover {
  background: #fff;
  border: 3px solid #D3145A;
  color: #D3145A;
  transition: 0.3s;
}

/* ===============================================
アクセスマップ
=============================================== */
.p-access {
  padding: 80px 0 200px;
}
.p-access__top-title {
  font-size: 36px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-access__top-title {
    font-size: 21px;
  }
}
.p-access__top-title::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #EA963A 24%, transparent 24%, transparent 76%, #EA963A 76%, #EA963A 100%);
  width: 100%;
  height: 5px;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-access__top-title::after {
    width: 95%;
    background: linear-gradient(to right, #EA963A 16%, transparent 16%, transparent 84%, #EA963A 84%, #EA963A 100%);
    height: 3px;
    top: 12px;
  }
}
.p-access__prefectures {
  font-size: 24px;
  margin-bottom: 10px;
}
.p-access__prefectures span {
  color: #D3145A;
  padding-right: 7px;
}
.p-access ul {
  display: grid;
  max-width: 720px;
  margin: 30px auto 60px;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  column-gap: 5%;
}
@media screen and (max-width: 767px) {
  .p-access ul {
    column-gap: 3%;
    grid-template-columns: 1fr;
  }
}
.p-access li {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-access__head {
  background: #005C56;
  color: #fff;
  text-align: center;
  padding: 7px;
  cursor: pointer;
  transition: 0.3s;
}
.p-access__head .border {
  border: 2px solid #fff;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-access__head:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.p-access__title {
  font-size: 24px;
  color: yellow;
}
.p-access__title span {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-top: 6px;
  font-weight: 400;
}
.p-access__btn {
  background: #fff;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  position: absolute;
  left: 30px;
  top: 40px;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-access__btn {
    left: 20px;
  }
}
.p-access__btn:hover {
  background: yellow;
  transition: 0.3s;
}
.p-access__btn::after {
  position: absolute;
  content: "\f067";
  font-size: 24px;
  font-family: "fontawesome";
  font-weight: 900;
  color: #005C56;
  left: 8px;
  top: 2px;
}
.p-access__head.open .p-access__btn::after {
  content: "\f068";
}
.p-access__head:hover .p-access__btn {
  background: yellow;
}
.p-access__body {
  background: #fff;
  border-right: 4px solid #005C56;
  border-left: 4px solid #005C56;
  border-bottom: 4px solid #005C56;
  padding: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-access__body {
    padding: 5%;
  }
}
.p-access__body dl {
  margin-bottom: 7px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  align-items: flex-start;
}
.p-access__body dt {
  width: 74px;
  position: relative;
  font-size: 15px;
}
.p-access__body dt::after {
  position: absolute;
  content: ":";
  right: 0;
}
.p-access__body dd {
  padding-left: 3px;
  width: calc(100% - 80px);
  vertical-align: middle;
}
.p-access__body dd span {
  font-size: 0.8em;
}
.p-access__body.open {
  display: block flex;
  flex-direction: column;
  justify-content: space-between;
  /* 無くても可 */
  align-items: stretch;
  /* 無くても可 */
  height: 100%;
  /* 親要素の高さに合わせる */
}
.p-access__map {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-bottom: 20px;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  background: #000;
  height: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-footer__logo {
  width: 213px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 158px;
    height: 41px;
  }
}

/* ===============================================
ページトップに戻る
=============================================== */
.p-pagetop {
  background: #fff;
  border: 3px solid #00756D;
  color: #00756D;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  flex-direction: column;
  position: fixed;
  bottom: 10vw;
  right: 60px;
  z-index: 9999;
  text-align: center;
  line-height: 0.5;
  letter-spacing: 1.2px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid #00756D;
  }
}
.p-pagetop:hover {
  transition: 0.3s;
  background: #fff;
  border: 3px solid #D3145A;
  color: #D3145A;
}
@media screen and (max-width: 767px) {
  .p-pagetop:hover {
    border: 2px solid #D3145A;
  }
}
.p-pagetop i {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-pagetop i {
    font-size: 24px;
  }
}
.p-pagetop p {
  font-size: 24px;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-pagetop p {
    font-size: 16px;
    margin-top: 0px;
  }
}

/* ===============================================
btm-cta
=============================================== */
.p-btm-cta {
  display: block;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  padding: 0vw 5vw;
  background-color: #00756D;
  display: flex;
  justify-content: center;
  column-gap: 3vw;
  min-height: 100px;
}
@media screen and (max-width: 1600px) {
  .p-btm-cta {
    padding: 0 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-btm-cta {
    width: 100%;
    min-width: 280px;
    height: 30vw;
    column-gap: 0;
    padding: 0;
    min-height: 60px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) and (max-width: 767px) {
  .p-btm-cta {
    height: 10vw;
  }
}
.p-btm-cta__contact {
  width: 30%;
  padding: 1vw 0;
}
@media screen and (max-width: 767px) {
  .p-btm-cta__contact {
    width: 50%;
    padding: 0vw;
  }
}
.p-btm-cta__tel {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-btm-cta__tel {
    width: 50%;
  }
}
.p-btm-cta__link {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-btm-cta__link {
    padding: 1vw 3vw;
  }
}
.p-btm-cta__link--contact {
  padding: 0.5vw 0.8vw;
  background: #D3145B;
  border-radius: 10px;
  filter: drop-shadow(8px 8px 0px #000);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-btm-cta__link--contact {
    filter: none;
    border-radius: 0px;
    padding: 0vw 2.8vw;
  }
}
.p-btm-cta__link--contact:hover {
  filter: drop-shadow(0px 0px 0px #000);
  transform: translateY(1px);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-btm-cta__link--contact:hover {
    transform: translateY(0px);
    filter: none;
  }
}
.p-btm-cta__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

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

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */