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

/* ===============================================
セクション
=============================================== */
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  position: relative;
  z-index: 0;
  min-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}

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%;
  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;
}
@media screen and (max-width: 767px) {
  .f-img {
    width: 100%;
    margin: 0 auto;
    max-width: 480px;
  }
}

.f-shadow {
  filter: drop-shadow(3px 3px 4px #bdbdbd);
}

/* リボン
----------------------- */
.c-ribon {
  width: 100%;
  height: auto;
  padding: 30px 0;
  text-align: center;
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  position: relative;
  z-index: 0;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .c-ribon {
    font-size: 18px;
    font-feature-settings: "palt";
    padding: 20px 0;
  }
}
.c-ribon::after {
  position: absolute;
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 70px;
  height: 30px;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .c-ribon::after {
    width: 40px;
    height: 20px;
    bottom: -19px;
  }
}
.c-ribon span {
  color: yellow;
  font-size: 36px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-ribon span {
    font-size: 22px;
  }
}
.c-ribon--blue {
  background: #171B4A;
}
.c-ribon--blue::after {
  background: #171B4A;
}
.c-ribon--red {
  background: #70171a;
}
.c-ribon--red::after {
  background: #70171a;
}
.c-ribon--green {
  background: #014955;
}
.c-ribon--green::after {
  background: #014955;
}

/* 塾生・保護者の声
----------------------- */
.c-voice {
  padding: 20px 0 150px 0;
}
@media screen and (max-width: 767px) {
  .c-voice {
    padding: 20px 0 100px 0;
  }
}
.c-voice__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}
@media screen and (max-width: 860px) {
  .c-voice__wrapper {
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-voice__wrapper {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}
.c-voice__item {
  border-radius: 10px;
  display: flex;
  height: 100%;
  color: #fff;
  padding: 20px 5% 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-voice__item {
    padding: 20px 5% 20px;
    border-radius: 7px;
  }
}
.c-voice__item::after {
  position: absolute;
  content: "";
  width: 55px;
  height: 27px;
  bottom: -27px;
  right: 20%;
  mask-image: url(../img/voice_mask.png);
  mask-mode: alpha;
  mask-size: contain;
}
.c-voice__item--01 {
  background: #f5537c;
}
.c-voice__item--01::after {
  background: #f5537c;
}
.c-voice__item--02 {
  background: #2163a0;
}
.c-voice__item--02::after {
  background: #2163a0;
}
.c-voice__item--03 {
  background: #f6fa70;
  color: #000;
}
.c-voice__item--03::after {
  background: #f6fa70;
}
.c-voice__item--04 {
  background: #43DFB4;
  color: #000;
}
.c-voice__item--04::after {
  background: #43DFB4;
}
.c-voice__left {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-voice__left {
    width: 120px;
    padding-right: 10px;
  }
}
.c-voice__title {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 0 10px;
  border-radius: 7px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-voice__title {
    font-size: 18px;
    font-feature-settings: "palt";
    padding: 0 7px;
  }
}
.c-voice__right {
  width: calc(100% - 150px);
  font-feature-settings: "palt";
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-voice__right {
    font-size: 16px;
    width: calc(100% - 120px);
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .c-voice__pic {
    width: 85%;
  }
}

/* ===============================================
ヘッダー
=============================================== */
.p-header {
  position: absolute;
  width: 300px;
  height: auto;
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .p-header {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    width: 100%;
    background: #131738;
    height: 60px;
    position: relative;
  }
}
.p-header h1 {
  width: 100%;
  height: 100%;
  display: block;
}
.p-header__logo {
  height: 90px;
  padding: 14px 20px;
}
@media screen and (max-width: 1280px) {
  .p-header__logo {
    height: 60px;
    padding: 10px 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    height: 60px;
    padding: 10px;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  width: 100%;
  height: 100svh;
  background: url(../img/kv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 1600px) {
  .p-kv {
    height: 864px;
  }
}
@media screen and (max-width: 1400px) {
  .p-kv {
    height: 768px;
  }
}
@media screen and (max-width: 1280px) {
  .p-kv {
    height: 650px;
  }
}
@media screen and (max-width: 860px) {
  .p-kv {
    height: 570px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    background: url(../img/kv_sp.jpg) no-repeat center center/cover;
    height: 166vw;
    width: 100%;
  }
}

/* ===============================================
学力診断オープンテスト
=============================================== */
.p-opt {
  width: 100%;
  background: #DAE3F3;
  position: relative;
  z-index: 0;
}
.p-opt__area {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-opt__area {
    padding: 50px 0 60px;
  }
}
.p-opt__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-opt__list {
    flex-direction: column;
  }
}
.p-opt__item {
  width: calc(33% - 12px);
  background: #fff;
  box-shadow: 4px 4px 8px rgba(10, 12, 160, 0.1);
  color: #072968;
}
@media screen and (max-width: 767px) {
  .p-opt__item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.p-opt__item .head {
  background: linear-gradient(to right, #424c9e, #3071b8);
  text-align: center;
  line-height: 1.4;
  height: 100px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
}
.p-opt__item .head span {
  color: yellow;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-opt__item .head {
    height: 100%;
    padding: 16px 0;
  }
}
.p-opt__item .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 350px;
}
@media screen and (max-width: 767px) {
  .p-opt__item .body {
    height: 100%;
    padding: 30px;
  }
}
.p-opt__item .txt span {
  color: #f15a24;
}
@media screen and (max-width: 767px) {
  .p-opt__item .txt {
    line-height: 1.6;
    letter-spacing: 0px;
  }
}
.p-opt__sublist {
  width: 100%;
}
.p-opt__subitem {
  margin-bottom: 30px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
  z-index: 50;
}
.p-opt__subitem::after {
  position: absolute;
  content: "";
  background: url(../img/opt_check.png) no-repeat center center/cover;
  color: #DAE3F3;
  z-index: -1;
  width: 57px;
  height: 50px;
}
.p-opt__subitem span {
  color: #f15a24;
}

/* ===============================================
次年度生(プール生)登録
=============================================== */
.p-pool {
  background: #fffce3;
}
.p-pool__area {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-pool__area {
    padding: 50px 0 60px;
  }
}
.p-pool__top {
  width: 90%;
  background: #feedc7;
  border-radius: 10px;
  color: #072968;
  padding: 20px;
  font-size: 24px;
  text-align: center;
  font-feature-settings: "palt";
  font-weight: 700;
  margin: 20px auto 70px;
}
@media screen and (max-width: 767px) {
  .p-pool__top {
    font-size: 16px;
    width: 100%;
    max-width: 440px;
    padding: 20px 10px;
    margin: 0 auto 50px auto;
  }
}
.p-pool__top span {
  color: #B5252A;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-pool__top span {
    font-size: 16px;
  }
}
.p-pool__item {
  background: #fff;
  border: 3px solid #B5252A;
  border-radius: 10px;
  position: relative;
  height: 200px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-pool__item {
    max-width: 550px;
    font-size: 16px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
.p-pool__item:last-child {
  margin-bottom: 0;
}
.p-pool__item .num {
  width: 120px;
  height: auto;
  position: absolute;
  left: 20px;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .p-pool__item .num {
    width: 70px;
    left: 10px;
    top: -10px;
  }
}
.p-pool__item .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px 0 160px;
}
@media screen and (max-width: 767px) {
  .p-pool__item .wrapper {
    padding: 10px 20px;
  }
}
.p-pool__item .title {
  font-size: 30px;
  color: #072968;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-pool__item .title {
    font-size: 18px;
    padding-left: 70px;
    line-height: 1.5;
  }
}
.p-pool__item .title span {
  color: #d54e21;
}
@media screen and (max-width: 767px) {
  .p-pool__item p {
    margin: 10px 0;
  }
}

/* ===============================================
冬期講習無料キャンペーン実施中
=============================================== */
.p-winter_cmp {
  background: #d3f0ed;
}
.p-winter_cmp__area {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__area {
    padding: 50px 0 60px;
  }
}
.p-winter_cmp__balloon {
  margin: 0 auto;
  position: relative;
  background: #fff;
  border: 5px solid #014955;
  border-radius: 100px;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  padding: 20px 0;
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__balloon {
    font-size: 20px;
    border-radius: 30px;
    border: 3px solid #014955;
    padding: 20px 10px;
  }
}
.p-winter_cmp__balloon::before {
  content: "";
  position: absolute;
  bottom: -59px;
  left: 50%;
  margin-left: -15px;
  border: 30px solid transparent;
  border-top: 30px solid #FFF;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__balloon::before {
    border: 20px solid transparent;
    border-top: 20px solid #FFF;
    bottom: -39px;
  }
}
.p-winter_cmp__balloon::after {
  content: "";
  position: absolute;
  bottom: -71px;
  left: 50%;
  margin-left: -20px;
  border: 35px solid transparent;
  border-top: 35px solid #014955;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__balloon::after {
    border: 24px solid transparent;
    border-top: 24px solid #014955;
    bottom: -48px;
    margin-left: -19px;
  }
}
.p-winter_cmp__balloon span {
  color: #B5252A;
}
.p-winter_cmp__free {
  background: #B5252A;
  color: #fff;
  font-size: 48px;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1.2;
  padding: 30px 0;
  margin: 70px auto 20px;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__free {
    font-size: 23px;
    margin: 40px auto 20px;
  }
}
.p-winter_cmp__free span {
  color: yellow;
  font-size: 82px;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__free span {
    font-size: 40px;
  }
}
.p-winter_cmp__free p {
  position: relative;
  display: inline-block;
}
.p-winter_cmp__free p::before {
  content: "";
  position: absolute;
  background: url(../img/winter_cmp_l.png) no-repeat center center/contain;
  width: 86px;
  height: 160px;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__free p::before {
    width: 36px;
    height: 85px;
    left: -40px;
  }
}
.p-winter_cmp__free p::after {
  content: "";
  position: absolute;
  background: url(../img/winter_cmp_r.png) no-repeat center center/contain;
  width: 86px;
  height: 160px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__free p::after {
    width: 36px;
    height: 85px;
    right: -40px;
  }
}
.p-winter_cmp__caption {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-winter_cmp__caption {
    font-size: 14px;
  }
}

/* ===============================================
入塾テスト随時受付中
=============================================== */
.p-join {
  position: relative;
  overflow: hidden;
}
.p-join__bg {
  position: absolute;
  width: 55%;
  height: 100%;
  background: url(../img/join_bg.jpg) no-repeat center center/cover;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-join__bg {
    width: 100%;
    background: url(../img/join_bg.jpg) no-repeat center top/cover;
    transform: none;
    top: 120px;
  }
}
.p-join__area {
  padding: 50px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-join__area {
    padding: 40px 0 200px 0;
  }
}
.p-join__contents {
  position: relative;
  width: 650px;
}
@media screen and (max-width: 767px) {
  .p-join__contents {
    width: 100%;
  }
}
.p-join__yellow {
  background: #f6fa70;
  mix-blend-mode: multiply;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 20;
}
.p-join__wrapper {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-join__wrapper {
    padding: 20px 0;
  }
}
.p-join__subtitle {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 38px;
  padding: 0em 0.3em;
  margin-left: 30px;
  line-height: 1.8;
  background: #fff;
  font-feature-settings: "palt";
  position: relative;
  z-index: 50;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-join__subtitle {
    font-size: 23px;
    margin-left: 20px;
  }
}
.p-join__subtitle .red {
  color: #d4145a;
}
.p-join__subtitle .blue {
  color: #2e3192;
}
.p-join__title {
  font-size: 88px;
  line-height: 1.2;
  text-align: center;
  margin: 10px 0 20px 0;
  font-weight: 900;
  color: #2e3192;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-join__title {
    font-size: 54px;
  }
}
.p-join__title .red {
  color: #d4145a;
}
.p-join__contact {
  background: #d4145a;
  position: relative;
  z-index: 50;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 auto -70px auto;
  padding: 14px 0;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .p-join__contact {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ===============================================
塾名称変更のお知らせ
=============================================== */
.p-change {
  background: url(../img/change_bg.jpg) no-repeat center center/cover;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .p-change {
    padding: 70px 30px;
    background: url(../img/change_bg_sp.jpg) no-repeat center center/cover;
  }
}
.p-change__box {
  background: #fff;
  max-width: 650px;
  height: 470px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #072968;
}
@media screen and (max-width: 767px) {
  .p-change__box {
    height: 100%;
    padding: 20px 0;
    max-width: 490px;
  }
}
.p-change__box .top {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-change__box .top {
    font-size: 16px;
  }
}
.p-change__box .top span.middle {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-change__box .top span.middle {
    font-size: 21px;
  }
}
.p-change__box .top span.big {
  font-size: 42px;
  background: linear-gradient(to bottom, transparent 0%, transparent 80%, yellow 80%, yellow 95%, transparent 95%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .p-change__box .top span.big {
    font-size: 32px;
  }
}
.p-change__box .pic {
  width: 450px;
  margin: 26px 0;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-change__box .pic {
    width: 265px;
  }
}
.p-change__box p.small {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-change__box p.small {
    font-size: 16px;
  }
}

/* ===============================================
合格実績
=============================================== */
.p-goukaku {
  background: url(../img/goukaku_bg.jpg) no-repeat center center/cover;
  padding: 60px 0 40px;
}
@media screen and (max-width: 767px) {
  .p-goukaku {
    background: url(../img/goukaku_bg_sp.jpg) no-repeat center center/cover;
  }
}

/* ===============================================
2つの主義
=============================================== */
.p-syugi__top {
  background: url(../img/syugi_bg.jpg) no-repeat center center/cover;
  padding: 70px 0;
  position: relative;
  z-index: 0;
}
.p-syugi__top::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0.6;
  background-size: 30px 30px;
  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, transparent 1.5px, transparent 30px);
}
@media screen and (max-width: 767px) {
  .p-syugi__top {
    padding: 40px 0;
  }
  .p-syugi__top::after {
    background-size: 25px 25px;
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 25px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, transparent 1.5px, transparent 25px);
  }
}
.p-syugi__maintitle {
  position: relative;
  z-index: 50;
}
.p-syugi__toptitle {
  text-align: center;
  color: #fff;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-syugi__toptitle {
    padding: 30px 0 50px 0;
  }
}
.p-syugi__toptitle h3 {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-syugi__toptitle h3 {
    width: 85%;
  }
}
.p-syugi__toptitle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
  left: 0;
  top: 12px;
}
.p-syugi__toptitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
  left: 0;
  bottom: 12px;
}
.p-syugi__toptitle p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-syugi__toptitle p {
    font-size: 16px;
    position: relative;
    width: 100%;
  }
  .p-syugi__toptitle p::before {
    background: url(../img/icon_test.png) no-repeat center center/contain;
    content: "";
    position: absolute;
    width: 11vw;
    height: 12vw;
    bottom: -30px;
    left: 5px;
  }
  .p-syugi__toptitle p::after {
    background: url(../img/icon_pen.png) no-repeat center center/contain;
    content: "";
    position: absolute;
    width: 8vw;
    height: 8vw;
    bottom: -25px;
    right: 5px;
    z-index: 99;
  }
}
.p-syugi__toptitle--01 {
  background: #2163a0;
}
.p-syugi__toptitle--02 {
  background: #f5537c;
}
@media screen and (max-width: 767px) {
  .p-syugi__toptitle--02 p::before {
    background: url(../img/icon_note.png) no-repeat center center/contain;
  }
}
.p-syugi__content {
  background-size: 30px 30px;
  background-position: 50% 50%;
}
@media screen and (max-width: 767px) {
  .p-syugi__content {
    background-size: 25px 25px;
  }
}
.p-syugi__content--01 {
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #E9F4FA 1.5px, #E9F4FA 30px);
}
@media screen and (max-width: 767px) {
  .p-syugi__content--01 {
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 25px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #E9F4FA 1.5px, #E9F4FA 25px);
  }
}
.p-syugi__content--02 {
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 30px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #FFF6F9 1.5px, #FFF6F9 30px);
}
@media screen and (max-width: 767px) {
  .p-syugi__content--02 {
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 25px), repeating-linear-gradient(0deg, #fff, #fff 1.5px, #FFF6F9 1.5px, #FFF6F9 25px);
  }
}
.p-syugi .title {
  height: 84px;
  line-height: 84px;
  color: #fff;
  font-weight: 700;
  max-width: 530px;
  position: relative;
  z-index: 10;
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .p-syugi .title {
    font-size: 20px;
    height: 45px;
    line-height: 45px;
    max-width: 200px;
  }
}
.p-syugi .title::before {
  position: absolute;
  content: "";
  height: 84px;
  width: 100%;
  z-index: 0;
  left: -100%;
}
@media screen and (max-width: 767px) {
  .p-syugi .title::before {
    height: 45px;
  }
}
.p-syugi .title::after {
  position: absolute;
  content: "";
  height: 84px;
  width: 84px;
  clip-path: polygon(0 0, 100% 105%, 0 105%);
  right: -84px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-syugi .title::after {
    height: 45px;
    width: 45px;
    right: -45px;
    top: 0;
  }
}
.p-syugi .title--01 {
  background: #2163a0;
}
.p-syugi .title--01::before {
  background: #2163a0;
}
.p-syugi .title--01::after {
  background: #2163a0;
}
.p-syugi .title--02 {
  background: #f5537c;
}
.p-syugi .title--02::before {
  background: #f5537c;
}
.p-syugi .title--02::after {
  background: #f5537c;
}
.p-syugi .title p {
  position: relative;
  z-index: 10;
}
.p-syugi__item {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-syugi__item {
    padding: 40px 0;
  }
}
.p-syugi__item .txt {
  font-size: 24px;
  margin: 40px 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .txt {
    font-size: 15px;
    margin: 20px 0;
  }
}
.p-syugi__item .subtitle {
  font-size: 44px;
  color: #2163a0;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .subtitle {
    margin-top: 40px;
    font-size: 24px;
    font-feature-settings: "palt";
  }
}
.p-syugi__item .bgarea {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
.p-syugi__item .bgarea::before {
  position: absolute;
  content: "";
  height: 230px;
  width: 200%;
  transform: rotate(-6deg);
  left: -50%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .bgarea::before {
    transform: rotate(-10deg);
    height: 160px;
  }
}
.p-syugi__item .bgarea--01::before {
  background: #bbe1fa;
}
.p-syugi__item .bgarea--02::before {
  background: #fcdfe5;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .bgarea--l::before {
    transform: rotate(-10deg);
    height: 160px;
    top: 40%;
  }
}
.p-syugi__item .wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .wrapper {
    flex-direction: column;
  }
}
.p-syugi__item .wrapper .item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .p-syugi__item .wrapper .item {
    width: 90%;
    margin: 0 auto;
  }
}
.p-syugi__item .wrapper .item--02 {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-syugi__item .wrapper .item--02 {
    margin-top: 30px;
  }
}
.p-syugi__item .pic {
  position: relative;
  z-index: 0;
}

/* ===============================================
手厚いサポート体制
=============================================== */
.p-support {
  background: url(../img/support_bg.jpg) no-repeat center center/cover;
  padding: 70px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-support {
    background: url(../img/support_bg_sp.jpg) repeat center bottom/cover;
    padding: 50px 0 0 0;
  }
}
.p-support__title {
  background: #fff;
  color: #072968;
  font-size: 44px;
  text-align: center;
  padding: 8px 0;
  border-radius: 50px;
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  box-shadow: 4px 4px 8px rgba(23, 24, 100, 0.3);
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-support__title {
    font-size: 24px;
    line-height: 1.3;
    padding: 10px 0;
  }
}
.p-support__title span {
  color: #FF2E63;
}
.p-support__wrapper {
  margin: 100px auto;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-support__wrapper {
    flex-direction: column;
    margin: 40px auto;
  }
}
.p-support__desc {
  width: 55%;
  background: #072968;
  border-radius: 0 20px 20px 0;
  padding: 40px 0;
  font-weight: 400;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-support__desc {
    width: 85%;
    border-radius: 10px;
    padding: 20px;
  }
}
.p-support__desc::after {
  position: absolute;
  z-index: 0;
  content: "";
  background: #072968;
  width: 120%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: -120%;
}
@media screen and (max-width: 767px) {
  .p-support__desc::after {
    display: none;
  }
}
.p-support__desc p {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 10;
  line-height: 1.8;
  font-feature-settings: "palt";
  padding-right: 30px;
  max-width: 450px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-support__desc p {
    padding-right: 0;
    font-size: 16px;
    line-height: 1.6;
  }
}
.p-support__desc p span {
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-support__desc p span {
    font-size: 14px;
  }
}
.p-support__pic {
  width: 65%;
  background: #fff;
  margin-left: -50px;
  border-radius: 20px;
  padding: 30px 40px 40px 90px;
  box-shadow: 4px 4px 8px rgba(23, 24, 100, 0.3);
}
@media screen and (max-width: 767px) {
  .p-support__pic {
    width: 100%;
    max-width: 450px;
    margin: -60px auto 0;
    padding: 75px 20px 40px 20px;
    border-radius: 10px;
  }
}
.p-support__subtitle {
  background: #072968;
  height: 240px;
  padding: 30px 0;
  text-align: center;
}
.p-support__subtitle p {
  font-size: 36px;
  color: #fff;
  text-align: center;
  background: #072968;
  position: relative;
  display: inline-block;
  padding: 10px 24px 0;
}
@media screen and (max-width: 767px) {
  .p-support__subtitle p {
    padding: 0 30px;
    line-height: 1.4;
  }
}
.p-support__subtitle p::before, .p-support__subtitle p::after {
  position: absolute;
  top: 0.8rem;
  height: 60px;
  content: "";
}
.p-support__subtitle p::before {
  border-left: solid 4px yellow;
  left: 0;
  transform: rotate(-30deg);
}
.p-support__subtitle p::after {
  border-right: solid 4px yellow;
  right: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .p-support__subtitle p {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-support__bgarea {
    background: #072968;
  }
}
.p-support__list {
  display: flex;
  justify-content: space-between;
  margin-top: -100px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-support__list {
    flex-direction: column;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
}
.p-support__item {
  background: #fff;
  border-radius: 10px;
  width: calc(33% - 15px);
  box-shadow: 4px 4px 8px rgba(23, 24, 100, 0.3);
  padding: 10px 20px 20px 20px;
}
@media screen and (max-width: 767px) {
  .p-support__item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 24px;
    padding: 20px;
  }
}
.p-support__item .title {
  height: 120px;
  text-align: center;
  font-size: 26px;
  color: #FF2E63;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-support__item .title {
    height: 100%;
    margin-bottom: 10px;
  }
}
.p-support__item .title span {
  font-size: 17px;
  color: #072968;
  display: block;
  margin-bottom: 8px;
  font-feature-settings: "palt";
}
.p-support__item .pic {
  width: 80%;
  margin: 0px auto 20px;
}
.p-support__item .pic img {
  border-radius: 20px;
}
.p-support__item .txt {
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-support__item .txt {
    font-weight: 400;
  }
}

/* ===============================================
入塾の流れ
=============================================== */
.p-flow {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 40px 0;
  }
}
.p-flow__title {
  text-align: center;
  font-size: 45px;
  max-width: 440px;
  margin: 0 auto;
  border-top: 4px solid #005CC2;
  border-bottom: 4px solid #005CC2;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 24px;
    max-width: none;
    width: 80%;
    padding: 8px 0;
  }
}
.p-flow__pic {
  margin: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-flow__pic {
    margin: 40px auto;
    width: 90%;
  }
}

/* ===============================================
マップ
=============================================== */
.p-map {
  padding: 0 0 20vw 0;
}
@media screen and (max-width: 767px) {
  .p-map {
    padding: 0 0 50vw 0;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-map {
    padding: 0 0 24vw 0;
  }
}
.p-map__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 70px;
  column-gap: 60px;
}
@media screen and (max-width: 767px) {
  .p-map__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
  }
}
.p-map__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-map__p {
  font-size: 24px;
  color: #f19221;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-map__p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.p-map__map {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.p-map__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===============================================
CTA
=============================================== */
.p-cta {
  background: #005CC2;
  padding: 20px 90px;
  position: relative;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-cta {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 0;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta {
    height: 10vw;
    padding: 0;
    width: 100%;
  }
}
.p-cta__wrapper {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta__wrapper {
    column-gap: 0px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta__wrapper {
    height: 100%;
  }
}
.p-cta__btn {
  background: #ed1e79;
  border-radius: 10px;
  filter: drop-shadow(6px 6px 0px #000);
  transition: 0.3s;
}
.p-cta__btn:hover {
  background: #ff4a99;
  filter: drop-shadow(0px 0px 0px #000);
  transform: translateY(1px);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    border-radius: 0;
    filter: none;
    width: 50%;
  }
  .p-cta__btn:hover {
    background: #ed1e79;
    transform: translateY(0px);
    transition: 0.3s;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta__btn {
    height: 100%;
  }
}
.p-cta__btn-link {
  width: 100%;
  height: 100%;
  display: block;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-link {
    padding: 5%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta__btn-link {
    padding: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__tel {
    width: 50%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta__tel {
    height: 100%;
  }
}
.p-cta__tel-link {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-link {
    padding: 5%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta__tel-link {
    padding: 5px;
  }
}

/* ===============================================
CTA オープンテスト申込
=============================================== */
.p-cta_op {
  background: #005CC2;
  padding: 20px 90px;
  position: relative;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-cta_op {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta_op {
    padding: 0;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op {
    height: 10vw;
    padding: 0;
    width: 100%;
  }
}
.p-cta_op__wrapper {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta_op__wrapper {
    column-gap: 0px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op__wrapper {
    height: 100%;
  }
}
.p-cta_op__btn {
  background: #ed1e79;
  border-radius: 10px;
  filter: drop-shadow(6px 6px 0px #000);
  transition: 0.3s;
}
.p-cta_op__btn:hover {
  background: #ff4a99;
  filter: drop-shadow(0px 0px 0px #000);
  transform: translateY(1px);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta_op__btn {
    border-radius: 0;
    filter: none;
    width: 50%;
  }
  .p-cta_op__btn:hover {
    background: #ed1e79;
    transform: translateY(0px);
    transition: 0.3s;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op__btn {
    height: 100%;
  }
}
.p-cta_op__btn-link {
  width: 100%;
  height: 100%;
  display: block;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .p-cta_op__btn-link {
    padding: 5%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op__btn-link {
    padding: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta_op__tel {
    width: 50%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op__tel {
    height: 100%;
  }
}
.p-cta_op__tel-link {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-cta_op__tel-link {
    padding: 5%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .p-cta_op__tel-link {
    padding: 5px;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  background: #072968;
  padding: 40px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 20px 0;
    min-width: 100%;
  }
}
.p-footer__logo {
  width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 200px;
  }
}

/* レスポンシブ設定
----------------------- */
.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 */