@charset "UTF-8";
.noto-sans-jp-100 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.montserrat-100 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.noto-sans-jp-200 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.montserrat-200 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.noto-sans-jp-300 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-300 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-500 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.noto-sans-jp-600 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-600 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp-800 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.montserrat-800 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.noto-sans-jp-900 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.montserrat-900 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/* Base - 基本的なHTML要素 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 16px;
  color: #0A0A0A;
  overflow-x: hidden;
  line-height: 1.8;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #0A0A0A;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #0A0A0A;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

picture {
  display: block;
  font-size: 0;
}

dl, dd {
  margin: auto;
}

/* Layout - ページの骨組み */
.l-header {
  padding-top: 1.25rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 1.25rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .l-header {
    padding-top: 1.125rem;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding-top: 1rem;
  }
}
@media (max-width: 1200px) {
  .l-header {
    padding-bottom: 1.125rem;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding-bottom: 1rem;
  }
}

.l-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-main {
  width: 100%;
  margin: auto;
}

.l-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #135088 0%, #023564 100%);
}

.l-main {
  background: rgba(255, 255, 255, 0.95); /* 半透明の白背景 */
  min-height: 100vh;
}

/* Component - 再利用できる部品のみ */
/*** PC/SP表示対応 ***/
.c-pcnone {
  display: none;
}
@media (max-width: 768px) {
  .c-pcnone {
    display: block;
  }
}

.c-spnone {
  display: none;
}
@media (min-width: 768px) {
  .c-spnone {
    display: block;
  }
}

/*** ハンバーガーメニュー ***/
.c-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.875rem 0.75rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  border-radius: 0.25rem;
  position: relative;
  width: 3rem;
  height: 3rem;
}
.c-hamburger__line {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.c-hamburger:hover {
  background: -webkit-gradient(linear, left top, right bottom, from(#1330ce), to(#1f84ee));
  background: linear-gradient(to bottom right, #1330ce 0%, #1f84ee 100%);
}

.c-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  padding: 0.875rem 0.75rem;
  border-radius: 0.25rem;
  position: relative;
  width: 3rem;
  height: 3rem;
}
.c-close__line {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #0F269F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.c-close__line:nth-child(1) {
  -webkit-transform: translateY(0.0625rem) rotate(45deg);
          transform: translateY(0.0625rem) rotate(45deg);
}
.c-close__line:nth-child(2) {
  -webkit-transform: translateY(-0.0625rem) rotate(-45deg);
          transform: translateY(-0.0625rem) rotate(-45deg);
}
.c-close:hover {
  opacity: 0.8;
}

/*** ロゴ ***/
.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 8.9375rem;
  max-width: 8.9375rem;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
}
@media (max-width: 1200px) {
  .c-logo {
    max-width: 7.875rem;
  }
}
@media (max-width: 768px) {
  .c-logo {
    max-width: 6.75rem;
  }
}
.c-logo img {
  width: 100%;
  height: auto;
}

/*** ボタン ***/
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
}
.c-button--red {
  background: -webkit-gradient(linear, left top, right bottom, from(#DE133E), to(#EF3A6B));
  background: linear-gradient(to bottom right, #DE133E 0%, #EF3A6B 100%);
}
.c-button--blue {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}
.c-button--white {
  background-color: #FFFFFF;
  border: 0.125rem solid #0F269F;
  border-radius: 3.125rem;
  color: #0F269F;
}
.c-button__icon {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
}

.c-button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 20.9375rem;
  margin: 3.5rem auto 0;
}

.c-button-arrow {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.c-button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.375rem solid #0F269F;
}
.c-button-arrow.c-button-arrow-red::after {
  border-left: 0.375rem solid #DF1540;
}
.c-button-arrow.c-button-arrow-contrast::after {
  border-left: 0;
  border-right: 0.375rem solid #0F269F;
}

.c-button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

/*** コンテンツ内の見出し ***/
.c-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.375rem;
  text-align: center;
}
.c-title__text {
  font-size: 2rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .c-title__text {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .c-title__text {
    font-size: 1.5rem;
  }
}
.c-title__text img {
  width: 9.4375rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 2.25rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  vertical-align: sub;
}
@media (max-width: 1200px) {
  .c-title__text img {
    width: 8.9375rem;
  }
}
@media (max-width: 768px) {
  .c-title__text img {
    width: 8.375rem;
  }
}
@media (max-width: 1200px) {
  .c-title__text img {
    height: 2.125rem;
  }
}
@media (max-width: 768px) {
  .c-title__text img {
    height: 2rem;
  }
}
.c-title::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 10rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#ACB6E5), to(#86FDE8));
  background: linear-gradient(to right, #ACB6E5 0%, #86FDE8 100%);
}
@media (max-width: 1200px) {
  .c-title::after {
    width: 11.25rem;
  }
}
@media (max-width: 768px) {
  .c-title::after {
    width: 12.5rem;
  }
}
.c-title span {
  font-size: 3rem;
}
@media (max-width: 1200px) {
  .c-title span {
    font-size: 2.5rem;
  }
}
.c-title__text-special {
  font-size: 3rem !important;
}
.c-title.c-title__red-text::after {
  background: -webkit-gradient(linear, left top, right top, from(#DDD6F3), to(#FAACA8));
  background: linear-gradient(to right, #DDD6F3 0%, #FAACA8 100%);
}

/*** 三角形 ***/
.c-triangle::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 15rem;
  height: 2.5rem;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%);
}
.c-triangle--darkgray::before {
  background: #F4F5FC;
}
.c-triangle--bluelight::before {
  background: #F2F4FD;
}
.c-triangle--white::before {
  background: #FFFFFF;
}

/*** アコーディオンのボタン ***/
.c-accordion {
  position: relative;
  width: 2rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 2rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #959595;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 1200px) {
  .c-accordion {
    width: 1.75rem;
  }
}
@media (max-width: 768px) {
  .c-accordion {
    width: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .c-accordion {
    height: 1.75rem;
  }
}
@media (max-width: 768px) {
  .c-accordion {
    height: 1.5rem;
  }
}
.c-accordion:hover {
  background-color: #afafaf;
}
.c-accordion span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 0.125rem;
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 1200px) {
  .c-accordion span {
    width: 0.875rem;
  }
}
@media (max-width: 768px) {
  .c-accordion span {
    width: 0.75rem;
  }
}
.c-accordion span:first-child {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-accordion span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-accordion.is-open span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/*** スライダー ***/
.swiper {
  padding: 1rem 0 !important;
  /* Swiperナビゲーションのカスタマイズ */
  /* モバイル対応 */
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 2rem;
  height: 2rem;
  background-color: #0F269F;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  font-size: 0;
}
.swiper .swiper-button-next::after {
  left: 53%;
  border-left: 0.5rem solid #FFFFFF;
}
.swiper .swiper-button-prev::after {
  left: 47%;
  border-right: 0.5rem solid #FFFFFF;
}
.swiper .swiper-button-next {
  right: 1.375rem;
}
.swiper .swiper-button-prev {
  left: 1.375rem;
}
@media (max-width: 768px) {
  .swiper .swiper-button-next {
    right: 1.125rem;
  }
  .swiper .swiper-button-prev {
    left: 1.125rem;
  }
}

/* ページネーション */
.navigation.pagination {
  margin: 2.5rem 0;
  text-align: center;
}
.navigation .screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
}
.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .navigation .nav-links {
    gap: 0.25rem;
  }
}
.navigation .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #FFFFFF;
  border: 0.0625rem solid #959595;
  border-radius: 50%;
  text-decoration: none;
  color: #959595;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .navigation .page-numbers {
    padding: 8px 12px;
    min-width: 40px;
    font-size: 14px;
  }
}
.navigation .page-numbers.current {
  color: #FFFFFF;
  background-color: #0F269F;
  border-color: #0F269F;
  font-weight: 700;
  pointer-events: none;
}
.navigation .page-numbers.prev, .navigation .page-numbers.next {
  font-weight: 700;
}
.navigation .page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
}

/* Project - サイト固有 */
/*** ヘッダー ***/
.p-header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header.is-scrolled {
  background: linear-gradient(102deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 100%);
  -webkit-backdrop-filter: blur(0.78125rem);
          backdrop-filter: blur(0.78125rem);
  -webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 90rem;
  width: 100%;
  padding: 0 1.25rem;
}
.p-header__logo {
  max-width: 8.9375rem;
}
.p-header__logo-link {
  display: block;
}
.p-header__logo-link img {
  width: 100%;
}
.p-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.p-header__nav {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1000;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 18.75rem;
  height: 100vh;
  padding: 5rem 1.25rem 8.75rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-header__nav::-webkit-scrollbar {
  display: none;
}
.p-header__nav.is-open {
  right: 0;
}
.p-header__hamburger-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.p-header__hamburger-contact .p-header__contact {
  display: block;
}
.p-header__hamburger-contact .c-button {
  width: 100%;
  font-size: 1rem;
}
.p-header__nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1001;
}
.p-header--close .c-close__line:nth-child(1) {
  -webkit-transform: translateY(0.375rem) rotate(45deg);
          transform: translateY(0.375rem) rotate(45deg);
}
.p-header--close .c-close__line:nth-child(2) {
  opacity: 0;
}
.p-header--close .c-close__line:nth-child(3) {
  -webkit-transform: translateY(-0.375rem) rotate(-45deg);
          transform: translateY(-0.375rem) rotate(-45deg);
}
.p-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
}
@media (max-width: 1200px) {
  .p-header__contact {
    display: none;
  }
}
.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
}
.p-header__nav-item {
  width: 100%;
}
.p-header__nav-item a {
  font-size: 1.125rem;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 0.0625rem dashed #F2F4FD;
  color: #FFFFFF;
}
.p-header__nav-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/*** フッター ***/
.p-footer {
  background-color: #0F269F;
  padding-top: 1.875rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 0.5rem;
}
@media (max-width: 1200px) {
  .p-footer {
    padding-top: 1.375rem;
  }
}
@media (max-width: 768px) {
  .p-footer {
    padding-top: 0.9375rem;
  }
}
@media (max-width: 768px) {
  .p-footer {
    padding-bottom: 3.8125rem;
  }
}
.p-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #FFFFFF;
  font-size: 0.875rem;
}

/*** Hero ***/
.p-hero {
  width: 100%;
  padding-top: 8.75rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 3.125rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  background: #FFFFFF url(../images/lp/fv-bg.png) center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .p-hero {
    padding-top: 7.5rem;
  }
}
@media (max-width: 768px) {
  .p-hero {
    padding-top: 6.25rem;
  }
}
@media (max-width: 1200px) {
  .p-hero {
    padding-bottom: 2.5625rem;
  }
}
@media (max-width: 768px) {
  .p-hero {
    padding-bottom: 2rem;
  }
}
.p-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "lead logo" "appeal logo" "button logo";
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 73.125rem;
  margin: auto;
}
@media (max-width: 1200px) {
  .p-hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "lead" "logo" "appeal" "button";
  }
}
.p-hero__lead {
  grid-area: lead;
  margin-bottom: 2.5rem;
  -webkit-transition: margin-bottom 0.3s ease;
  transition: margin-bottom 0.3s ease;
  font-size: 2rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1200px) {
  .p-hero__lead {
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 768px) {
  .p-hero__lead {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1200px) {
  .p-hero__lead {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-hero__lead {
    font-size: 1rem;
  }
}
.p-hero__lead span {
  font-size: 2.5rem;
  font-size: 2.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
}
@media (max-width: 1200px) {
  .p-hero__lead span {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-hero__lead span {
    font-size: 1.5rem;
  }
}
.p-hero__logo {
  grid-area: logo;
  max-width: 33.625rem;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .p-hero__logo {
    max-width: 26.625rem;
  }
}
@media (max-width: 768px) {
  .p-hero__logo {
    max-width: 19.625rem;
  }
}
.p-hero__logo img {
  width: 100%;
  height: auto;
}
.p-hero__appeal {
  grid-area: appeal;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  max-width: 31.25rem;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
  width: 100%;
  height: 11rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  margin-bottom: 1.125rem;
  -webkit-transition: margin-bottom 0.3s ease;
  transition: margin-bottom 0.3s ease;
  padding: 1.125rem 1.125rem 0;
  background: url(../images/lp/fv-border.svg) 0 0/contain no-repeat;
}
@media (max-width: 1200px) {
  .p-hero__appeal {
    max-width: 26.5625rem;
  }
}
@media (max-width: 768px) {
  .p-hero__appeal {
    max-width: 21.875rem;
  }
}
@media (max-width: 1200px) {
  .p-hero__appeal {
    height: 10.1875rem;
  }
}
@media (max-width: 768px) {
  .p-hero__appeal {
    height: 9.3125rem;
  }
}
@media (max-width: 1200px) {
  .p-hero__appeal {
    margin-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .p-hero__appeal {
    margin-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .p-hero__appeal {
    padding: 0.875rem 0.875rem 0;
  }
}
.p-hero__blue {
  width: 100%;
  border-radius: 0.5rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  font-size: 2.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  text-align: center;
  line-height: 1.54;
}
@media (max-width: 1200px) {
  .p-hero__blue {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-hero__blue {
    font-size: 1.5rem;
  }
}
.p-hero__red {
  width: 100%;
  border-radius: 0.5rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#DE133E), to(#EF3A6B));
  background: linear-gradient(to bottom right, #DE133E 0%, #EF3A6B 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  text-align: center;
  line-height: 1.54;
}
@media (max-width: 1200px) {
  .p-hero__red {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-hero__red {
    font-size: 1rem;
  }
}
.p-hero__red span {
  font-size: 2.25rem;
  font-size: 2.25rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
}
@media (max-width: 1200px) {
  .p-hero__red span {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .p-hero__red span {
    font-size: 1.5rem;
  }
}
.p-hero__button {
  grid-area: button;
  max-width: 25rem;
}

/*** こんなお悩みありませんか？ ***/
.p-problem__inner {
  padding-top: 5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 3.75rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background: #F4F5FC url(../images/lp/problem-bg.png) center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .p-problem__inner {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-problem__inner {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-problem__inner {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 768px) {
  .p-problem__inner {
    padding-bottom: 2.5rem;
  }
}
.p-problem__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
}
.p-problem__card {
  overflow: hidden;
  width: 13.75rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .p-problem__card {
    width: 100%;
  }
}
.p-problem__image {
  max-width: 13.75rem;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
  margin: auto;
}
@media (max-width: 1200px) {
  .p-problem__image {
    max-width: 14.375rem;
  }
}
@media (max-width: 768px) {
  .p-problem__image {
    max-width: 15rem;
  }
}
.p-problem__image img {
  width: 100%;
}
.p-problem__text {
  padding: 0.5rem 0.625rem 0.75rem;
}

/*** 学びの新たな選択肢を地⽅に住む中学⽣のために ento が提供します ***/
.p-proposal {
  position: relative;
  padding-top: 4.5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 4rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.4375rem;
  padding-right: 0.4375rem;
  background: #FFFFFF url(../images/lp/proposal-bg.png) center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .p-proposal {
    padding-top: 4.25rem;
  }
}
@media (max-width: 768px) {
  .p-proposal {
    padding-top: 4rem;
  }
}
@media (max-width: 1200px) {
  .p-proposal {
    padding-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .p-proposal {
    padding-bottom: 2rem;
  }
}
.p-proposal__inner {
  width: 100%;
  max-width: 65rem;
  margin: auto;
  padding: 2rem;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
  background: linear-gradient(102deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 100%);
  -webkit-box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(0.78125rem);
          backdrop-filter: blur(0.78125rem);
  border-radius: 2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.35);
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1200px) {
  .p-proposal__inner {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-proposal__inner {
    padding: 1rem;
  }
}
.p-proposal__text {
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .p-proposal__text {
    text-align: left;
  }
}

/*** ento は、⽣徒・親御様のお悩みを解決します ***/
.p-solution {
  padding-top: 7.5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 7.5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .p-solution {
    padding-top: 6.25rem;
  }
}
@media (max-width: 768px) {
  .p-solution {
    padding-top: 5rem;
  }
}
@media (max-width: 1200px) {
  .p-solution {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 768px) {
  .p-solution {
    padding-bottom: 5rem;
  }
}
.p-solution__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  padding: 0 0.9375rem;
}
.p-solution__border {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  margin: auto;
  padding: 0.375rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.p-solution__border:nth-child(2) .p-solution__contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-solution__border:nth-child(2) .p-solution__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-solution__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
  border-radius: 1.75rem;
  background-color: #FFFFFF;
}
@media (max-width: 1200px) {
  .p-solution__contents {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .p-solution__contents {
    gap: 0.5rem;
  }
}
@media (max-width: 1200px) {
  .p-solution__contents {
    padding: 1.625rem;
  }
}
@media (max-width: 768px) {
  .p-solution__contents {
    padding: 0.9375rem;
  }
}
@media (max-width: 768px) {
  .p-solution__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-solution__image {
  max-width: 25rem;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
}
@media (max-width: 1200px) {
  .p-solution__image {
    max-width: 22.5rem;
  }
}
@media (max-width: 768px) {
  .p-solution__image {
    max-width: 20rem;
  }
}
.p-solution__image img {
  width: 100%;
  height: auto;
}
.p-solution__detail {
  max-width: 37.5rem;
}
.p-solution__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-solution__header {
    gap: 0.3125rem;
  }
}
.p-solution__number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 768px) {
  .p-solution__number {
    font-size: 3.75rem;
  }
}
.p-solution__title {
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .p-solution__title {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .p-solution__title {
    font-size: 1.125rem;
  }
}

/*** すでに多くの中学生が実力を実感しています ***/
.p-realize {
  padding-bottom: 7.5rem;
}
.p-realize__card {
  overflow: hidden;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  width: 25rem !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .p-realize__card {
    width: 22.5rem !important;
  }
}
@media (max-width: 768px) {
  .p-realize__card {
    width: calc(100vw - 60px) !important;
    max-width: 20rem;
  }
}
.p-realize__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  padding: 1rem 0.25rem;
}
@media (max-width: 1200px) {
  .p-realize__visual {
    gap: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .p-realize__visual {
    gap: 0.5625rem;
  }
}
.p-realize__person span {
  display: block;
  margin-bottom: 1rem;
}
.p-realize__image {
  width: 7.5rem;
  height: 7.5rem;
}
.p-realize__image img {
  width: 100%;
}
.p-realize__sticker {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
  background: url(../images/lp/realize-sticker.png) center center/contain no-repeat;
}
.p-realize__sticker-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 1.75rem;
  word-break: keep-all;
  text-align: center;
  line-height: 1.1;
}
.p-realize__text {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1.875rem;
  -webkit-transition: padding-right 0.3s ease;
  transition: padding-right 0.3s ease;
  padding-left: 1.875rem;
  -webkit-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
  background-color: #F2F4FD;
}
@media (max-width: 1200px) {
  .p-realize__text {
    padding-right: 1.4375rem;
  }
}
@media (max-width: 768px) {
  .p-realize__text {
    padding-right: 1rem;
  }
}
@media (max-width: 1200px) {
  .p-realize__text {
    padding-left: 1.4375rem;
  }
}
@media (max-width: 768px) {
  .p-realize__text {
    padding-left: 1rem;
  }
}

/*** ＼無料体験・お問い合わせはこちらから／ ***/
.p-cta {
  background: url(../images/lp/cta-bg.png) center center/cover no-repeat;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .p-cta {
    padding: 3.125rem 0;
  }
}
.p-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
.p-cta__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  font-size: 2.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 1200px) {
  .p-cta__lead {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .p-cta__lead {
    font-size: 2rem;
  }
}
.p-cta__lead-text {
  position: relative;
  display: block;
}
.p-cta__lead-text::before, .p-cta__lead-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.125rem;
  height: 3.125rem;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .p-cta__lead-text::before, .p-cta__lead-text::after {
    height: 5rem;
  }
}
.p-cta__lead-text::before {
  left: -1.25rem;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .p-cta__lead-text::before {
    left: -2.5rem;
    -webkit-transform: translate(0, -50%) rotate(-30deg);
            transform: translate(0, -50%) rotate(-30deg);
  }
}
.p-cta__lead-text::after {
  right: -1.25rem;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
@media (max-width: 768px) {
  .p-cta__lead-text::after {
    right: -2.5rem;
    -webkit-transform: translate(0, -50%) rotate(30deg);
            transform: translate(0, -50%) rotate(30deg);
  }
}
@media (max-width: 768px) {
  .p-cta__lead-text .none {
    display: none;
  }
}
.p-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .p-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-cta__contact {
  background-color: #FFFFFF;
  padding: 0.375rem;
  border-radius: 2.5rem;
}
.p-cta__contact a {
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
}
.p-cta__contact a .c-button-arrow {
  width: 1.375rem;
  height: 1.375rem;
}
.p-cta__contact a .c-button-arrow::after {
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.5rem solid #0F269F;
}
.p-cta__contact a .c-button-arrow.c-button-arrow-red::after {
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.5rem solid #DF1540;
}
.p-cta__contact:last-child {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}

/*** entoの塾としての4つの強み ***/
.p-strengths {
  padding: 7.5rem 0 0.625rem;
}
@media (max-width: 768px) {
  .p-strengths {
    padding: 3.125rem 0;
  }
}
.p-strengths__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media (max-width: 768px) {
  .p-strengths__flexbox {
    gap: 1.875rem;
  }
}
.p-strengths__item {
  position: relative;
  width: 100%;
}
@media (max-width: 1200px) {
  .p-strengths__item {
    padding: 0 0.9375rem;
  }
}
.p-strengths__item:nth-child(even) .p-strengths__bg {
  background-color: #FEF5F7;
  left: unset;
  right: 0;
}
.p-strengths__item:nth-child(even) .p-strengths__contents {
  background: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 160px), #FEF5F7 calc(100% - 160px), #FEF5F7 100%);
  grid-template-columns: 1fr 27.5rem;
  padding-left: 5rem;
  padding-right: 0;
}
@media (max-width: 1200px) {
  .p-strengths__item:nth-child(even) .p-strengths__contents {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 0rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-strengths__item:nth-child(even) .p-strengths__image {
  grid-column: 2;
}
@media (max-width: 1200px) {
  .p-strengths__item:nth-child(even) .p-strengths__image {
    grid-row: 2;
    grid-column: 1;
  }
}
.p-strengths__item:nth-child(even) .p-strengths__header {
  grid-column: 1;
}
@media (max-width: 1200px) {
  .p-strengths__item:nth-child(even) .p-strengths__header {
    grid-row: 1;
    grid-column: 1;
  }
}
.p-strengths__item:nth-child(even) .p-strengths__text {
  grid-column: 1;
}
@media (max-width: 1200px) {
  .p-strengths__item:nth-child(even) .p-strengths__text {
    grid-row: 3;
    grid-column: 1;
    background-color: #FEF5F7;
  }
}
.p-strengths__item:nth-child(even) .p-strengths__number {
  background: -webkit-gradient(linear, left top, right bottom, from(#DE133E), to(#EF3A6B));
  background: linear-gradient(to bottom right, #DE133E 0%, #EF3A6B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-strengths__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 80%;
  height: 10rem;
  background-color: #F2F4FD;
}
@media (max-width: 1200px) {
  .p-strengths__bg {
    display: none;
  }
}
.p-strengths__contents {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 27.5rem 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 3.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 75rem;
  margin: auto;
  padding-right: 5rem;
  background: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 160px), #F2F4FD calc(100% - 160px), #F2F4FD 100%);
}
@media (max-width: 1200px) {
  .p-strengths__contents {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 0;
    padding-right: 0;
  }
}
.p-strengths__image {
  grid-row: 1/3;
  grid-column: 1;
  max-width: 27.5rem;
}
.p-strengths__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .p-strengths__image {
    grid-row: 2;
    grid-column: 1;
  }
}
.p-strengths__header {
  grid-row: 1;
  grid-column: 2;
  align-self: start;
  position: relative;
}
@media (max-width: 1200px) {
  .p-strengths__header {
    grid-row: 1;
    grid-column: 1;
  }
}
.p-strengths__text {
  grid-row: 2;
  grid-column: 2;
  min-height: 14.375rem;
}
@media (max-width: 1200px) {
  .p-strengths__text {
    grid-row: 3;
    grid-column: 1;
    min-height: unset;
    background-color: #F2F4FD;
    padding: 0.5rem 0.75rem;
  }
}
.p-strengths__number {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  font-size: 7.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.16;
}
@media (max-width: 1200px) {
  .p-strengths__number {
    font-size: 6.875rem;
  }
}
@media (max-width: 768px) {
  .p-strengths__number {
    font-size: 6.25rem;
  }
}
.p-strengths__title {
  position: relative;
  z-index: 1;
  display: block;
  padding: 2.375rem 0 0 2.0625rem;
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .p-strengths__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .p-strengths__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .p-strengths__title {
    padding: 2.1875rem 0 0 0;
  }
}

/*** コース内容 ***/
.p-course {
  position: relative;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(65%, #F2F4FD), to(#C5CCEB));
  background: linear-gradient(to right top, #F2F4FD 65%, #C5CCEB 100%);
  padding: 7.5rem 0;
}
.p-course::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  width: 100%;
  height: 4.5rem;
  background: #FFFFFF;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}
.p-course::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 4.5rem;
  background: #FFFFFF;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
}
.p-course__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  padding: 1.875rem 0.9375rem 0;
}
.p-course__card {
  position: relative;
  max-width: 28.75rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  background-color: #FFFFFF;
}
.p-course__card:last-child .p-course__name {
  background: -webkit-gradient(linear, left top, right bottom, from(#DE133E), to(#EF3A6B));
  background: linear-gradient(to bottom right, #DE133E 0%, #EF3A6B 100%);
}
.p-course__name {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0.5rem 1rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  border-radius: 1.5rem;
  word-break: keep-all;
}
@media (max-width: 1200px) {
  .p-course__name {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .p-course__name {
    font-size: 1.25rem;
  }
}
.p-course__image {
  overflow: hidden;
  max-width: 28.75rem;
  border-radius: 1rem 1rem 0 0;
  padding-top: 0.625rem;
}
.p-course__image img {
  width: 100%;
  height: auto;
}
.p-course__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5625rem 0.75rem;
  border-radius: 0 0 1rem 1rem;
}

/*** オンライン授業実施時間 ***/
.p-lesson__inner {
  padding: 0 0.9375rem;
}
.p-lesson__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-lesson__flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lesson__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.p-lesson__data dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.p-lesson__data dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 2.5rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  font-size: 1.25rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .p-lesson__data dl dt {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .p-lesson__data dl dt {
    font-size: 1.5rem;
  }
}
.p-lesson__data dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 2.5rem;
  -webkit-box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
}
.p-lesson__attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.p-lesson__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-lesson__number {
  display: block;
  width: 3.125rem;
}
.p-lesson__text {
  display: block;
  width: calc(100% - 3.125rem);
}

/*** 他にも豊富なサービスをご提供しています ***/
.p-etc {
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  .p-etc {
    padding: 5rem 0;
  }
}
.p-etc__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  max-width: 54.125rem;
  margin: auto;
  padding: 0 0.9375rem;
}
.p-etc__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  padding: 1rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .p-etc__contents {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-etc__contents {
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .p-etc__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 32rem;
    margin: auto;
    padding: 1.25rem 0.9375rem;
  }
}
.p-etc__image {
  max-width: 20rem;
}
.p-etc__image img {
  width: 100%;
  height: auto;
}
.p-etc__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  max-width: 30rem;
}
@media (max-width: 768px) {
  .p-etc__detail {
    gap: 0.625rem;
  }
}
.p-etc__title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-etc__title {
    font-size: 1.125rem;
  }
}

/*** 受講までの流れ ***/
.p-flow {
  padding-top: 5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  background-color: #F5F5F5;
}
@media (max-width: 1200px) {
  .p-flow {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-flow {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-flow {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-flow {
    padding-bottom: 2.5rem;
  }
}
.p-flow__inner {
  padding: 0 0.9375rem;
}
.p-flow__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 62.5rem;
  margin: auto;
}
.p-flow__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  width: 100%;
  padding: 1.75rem 2rem;
  background-color: #F2F4FD;
}
@media (max-width: 1200px) {
  .p-flow__contents {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .p-flow__contents {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .p-flow__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.75rem 2rem 1.75rem;
  }
}
.p-flow__contents:nth-child(even) {
  background-color: #FFFFFF;
}
.p-flow__image {
  overflow: hidden;
  max-width: 15rem;
  border-radius: 1rem;
}
.p-flow__image img {
  width: 100%;
  height: auto;
}
.p-flow__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  max-width: 40rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .p-flow__detail {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-flow__detail {
    gap: 1rem;
  }
}
.p-flow__sub {
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #D9D9D9;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-flow__sub span {
  font-size: 2.5rem;
}
.p-flow__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-flow__text a {
  text-decoration: underline;
}

/*** 料金プラン ***/
.p-plan {
  padding-top: 6.25rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 0.625rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .p-plan {
    padding-top: 5.625rem;
  }
}
@media (max-width: 768px) {
  .p-plan {
    padding-top: 5rem;
  }
}
@media (max-width: 1200px) {
  .p-plan {
    padding-bottom: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .p-plan {
    padding-bottom: 2rem;
  }
}
.p-plan__inner {
  padding: 0 0.9375rem;
}
.p-plan__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  max-width: 62.5rem;
  margin: auto auto 2rem;
}
.p-plan__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
@media (max-width: 1200px) {
  .p-plan__flexbox {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .p-plan__flexbox {
    gap: 1rem;
  }
}
.p-plan__item {
  max-width: 28.75rem;
  width: 100%;
}
.p-plan__border {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  border-radius: 1.5rem;
}
.p-plan__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 1.125rem 0;
  background-color: #FFFFFF;
  border-radius: 1.25rem;
}
.p-plan__target {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-plan__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 1.75rem;
  font-weight: 700;
  word-break: keep-all;
}
.p-plan__number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-plan__tax {
    font-size: 1.125rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    vertical-align: top;
    line-height: 1.2;
    height: 3.375rem;
  }
}
.p-plan__sub {
  display: block;
  text-align: right;
}
@media (max-width: 768px) {
  .p-plan__sub {
    max-width: 460px;
    margin: auto;
    text-align: left;
  }
}
.p-plan__admission {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  max-width: 50rem;
  margin: auto;
  border: 0.125rem solid #0F269F;
  border-radius: 2.5rem;
}
@media (max-width: 768px) {
  .p-plan__admission {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 28.75rem;
    border-radius: 2rem;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.p-plan__free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  max-width: 15rem;
  width: 100%;
  height: 100%;
  background-color: #0F269F;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-plan__free {
    max-width: unset;
  }
}
.p-plan__free span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  font-weight: 700;
}
.p-plan__free span.p-plan__free-max {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  font-weight: 700;
}
.p-plan__text {
  padding: 0 1.25rem;
  font-weight: 700;
}

/*** 担当教師 ***/
.p-teacher {
  position: relative;
  background: -webkit-gradient(linear, left bottom, right top, from(#FFD5DD), color-stop(44%, #FEF5F7));
  background: linear-gradient(to right top, #FFD5DD 0%, #FEF5F7 44%);
  padding: 7.5rem 0;
}
.p-teacher::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  width: 100%;
  height: 4.5rem;
  background: #FFFFFF;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}
.p-teacher::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 4.5rem;
  background: #FFFFFF;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
}
.p-teacher__inner {
  padding: 0 0.9375rem;
}
.p-teacher__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .p-teacher__flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-teacher__image {
  max-width: 17.375rem;
}
.p-teacher__image img {
  width: 100%;
  height: auto;
}
.p-teacher__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  max-width: 33.125rem;
}
.p-teacher__name {
  font-size: 1.5rem;
}
.p-teacher__works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.p-teacher__appeal {
  font-size: 2rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1200px) {
  .p-teacher__appeal {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-teacher__appeal {
    font-size: 1.5rem;
  }
}
.p-teacher__appeal img:first-child {
  width: 2.25rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: auto;
}
@media (max-width: 1200px) {
  .p-teacher__appeal img:first-child {
    width: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-teacher__appeal img:first-child {
    width: 1.5rem;
  }
}
.p-teacher__appeal img:last-child {
  width: 8.9375rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: auto;
}
@media (max-width: 1200px) {
  .p-teacher__appeal img:last-child {
    width: 7.625rem;
  }
}
@media (max-width: 768px) {
  .p-teacher__appeal img:last-child {
    width: 6.3125rem;
  }
}
.p-teacher__works-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
@media (max-width: 1200px) {
  .p-teacher__works-flexbox {
    gap: 3.25rem;
  }
}
@media (max-width: 768px) {
  .p-teacher__works-flexbox {
    gap: 1.5rem;
  }
}
.p-teacher__works-item {
  max-width: 28.75rem;
  width: 100%;
  padding: 0.25rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}
.p-teacher__works-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.p-teacher__works-title {
  width: 100%;
  padding: 0.5rem 0;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.p-teacher__works-text {
  width: 100%;
  padding: 1.5rem 0;
  background-color: #FFFFFF;
  font-size: 1.125rem;
  text-align: center;
}

/*** 保護者様の声 ***/
.p-voice__inner {
  padding-bottom: 7.5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .p-voice__inner {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 768px) {
  .p-voice__inner {
    padding-bottom: 5rem;
  }
}
.p-voice__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-voice__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  max-width: 19.6875rem !important;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-voice__card {
    width: calc(100vw - 60px) !important;
    max-width: 19.6875rem;
  }
}
.p-voice__text {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem 0.75rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem 1.5rem 1.5rem 0.25rem;
  font-weight: 700;
}
.p-voice__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-voice__image {
  max-width: 4rem;
}
.p-voice__image img {
  width: 100%;
}

/*** ブログ ***/
.p-blog__inner {
  padding-top: 7.5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 7.5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .p-blog__inner {
    padding-top: 6.25rem;
  }
}
@media (max-width: 768px) {
  .p-blog__inner {
    padding-top: 5rem;
  }
}
@media (max-width: 1200px) {
  .p-blog__inner {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 768px) {
  .p-blog__inner {
    padding-bottom: 5rem;
  }
}
.p-blog__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-blog__card {
  width: 18.75rem !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-blog__card {
    width: calc(100vw - 60px) !important;
    max-width: 18.75rem;
  }
}
.p-blog__card-inner {
  display: block;
  max-width: 18.125rem;
  margin-left: 0.625rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}
.p-blog__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  max-width: 18.125rem;
  min-height: 12.5rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background: url(../images/lp/blog-bg.png) center center/cover no-repeat;
  text-align: center;
}
.p-blog__image span {
  display: block;
  font-weight: 700;
  word-break: break-all;
}
.p-blog__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  min-height: 7.1875rem;
  padding: 0.5rem 1rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #FFFFFF;
}
.p-blog__category {
  position: absolute;
  top: -1rem;
  left: -0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5.125rem;
  height: 1.5rem;
  padding: 0 0.625rem;
  background: #0F269F;
  color: #FFFFFF;
  font-size: 0.75rem;
}
.p-blog__category::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  width: 0.625rem;
  height: 0.25rem;
  background: #9796F0;
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
}
.p-blog__category::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.375rem;
  width: 0.375rem;
  height: 1.5rem;
  background: #0F269F;
  -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 0% 100%);
}
.p-blog__date {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  text-align: right;
}

/* ブログ一覧ページ */
.blog-archive__inner {
  padding-top: 10rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 7.5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .blog-archive__inner {
    padding-top: 8.75rem;
  }
}
@media (max-width: 768px) {
  .blog-archive__inner {
    padding-top: 7.5rem;
  }
}
@media (max-width: 1200px) {
  .blog-archive__inner {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 768px) {
  .blog-archive__inner {
    padding-bottom: 5rem;
  }
}
.blog-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 1.875rem;
  max-width: 60rem;
  margin: auto;
}

/* ブログ詳細ページ */
.blog-detail {
  padding-top: 10rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 7.5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 1200px) {
  .blog-detail {
    padding-top: 8.75rem;
  }
}
@media (max-width: 768px) {
  .blog-detail {
    padding-top: 7.5rem;
  }
}
@media (max-width: 1200px) {
  .blog-detail {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 768px) {
  .blog-detail {
    padding-bottom: 5rem;
  }
}
.blog-detail__inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.blog-detail__header {
  margin-bottom: 2rem;
}
.blog-detail__meta {
  margin-bottom: 1rem;
}
.blog-detail__category {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 0.1875rem;
  font-size: 0.875rem;
  margin-right: 1rem;
}
.blog-detail__date {
  color: #959595;
  font-size: 0.875rem;
}
.blog-detail__title {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
}
.blog-detail__image {
  margin-bottom: 2rem;
  text-align: center;
}
.blog-detail__image img {
  max-width: 100%;
  height: auto;
}
.blog-detail__content {
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.blog-detail__nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
@media (max-width: 1200px) {
  .blog-detail__nav-buttons {
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .blog-detail__nav-buttons {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .blog-detail__nav-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-detail__nav-button {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  gap: 0.5rem;
  padding: 0.5rem;
}
.blog-detail__nav-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 100%;
  height: 0.0625rem;
  background-color: #0F269F;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-detail__nav-button--prev:hover::after {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.blog-detail__nav-button--next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.blog-detail__nav-button--next:hover::after {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.blog-detail__nav-button--disabled {
  color: #959595;
}
.blog-detail__nav-button--disabled::after {
  background-color: #959595;
}
.blog-detail__nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .blog-detail__nav-block {
    max-width: unset;
  }
}
.blog-detail__nav-label {
  font-size: 0.75rem;
}
.blog-detail__nav-title {
  font-size: 0.875rem;
}

/*** ento を立ち上げたきっかけ ***/
.p-opportunity__inner {
  padding-top: 3.75rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 3.75rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background: url(../images/lp/opportunity-bg.png) center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .p-opportunity__inner {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-opportunity__inner {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-opportunity__inner {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-opportunity__inner {
    padding-bottom: 2.5rem;
  }
}
.p-opportunity__text {
  max-width: 64rem;
  margin: auto;
}

/*** ento の思い ***/
.p-mind__inner {
  padding-top: 3.75rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 3.75rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background: url(../images/lp/mind-bg.png) center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .p-mind__inner {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-mind__inner {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-mind__inner {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-mind__inner {
    padding-bottom: 2.5rem;
  }
}
.p-mind .c-title::after {
  background: -webkit-gradient(linear, left top, right top, from(#DDD6F3), to(#FAACA8));
  background: linear-gradient(to right, #DDD6F3 0%, #FAACA8 100%);
}
.p-mind__text {
  max-width: 64rem;
  margin: auto;
}
.p-mind__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1rem 0;
}
.p-mind__header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.p-mind__address {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-mind__address {
    text-align: left;
  }
}

/*** よくあるご質問 ***/
.p-faq__inner {
  padding-top: 3.75rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 3.75rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background: -webkit-gradient(linear, left bottom, right top, from(#C8CFEC), color-stop(20%, #F0F2FD), color-stop(80%, #F2F4FD), to(#C8CFEC));
  background: linear-gradient(to right top, #C8CFEC 0%, #F0F2FD 20%, #F2F4FD 80%, #C8CFEC 100%);
}
@media (max-width: 1200px) {
  .p-faq__inner {
    padding-top: 4.375rem;
  }
}
@media (max-width: 768px) {
  .p-faq__inner {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__inner {
    padding-bottom: 4.375rem;
  }
}
@media (max-width: 768px) {
  .p-faq__inner {
    padding-bottom: 2.5rem;
  }
}
.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
  max-width: 62.5rem;
  margin: auto;
}
@media (max-width: 1200px) {
  .p-faq__list {
    gap: 2.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__list {
    gap: 1.5rem;
  }
}
.p-faq__item {
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  padding-top: 1.5625rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-left: 3.125rem;
  -webkit-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
  padding-right: 3.125rem;
  -webkit-transition: padding-right 0.3s ease;
  transition: padding-right 0.3s ease;
  padding-bottom: 1.5625rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media (max-width: 1200px) {
  .p-faq__item {
    padding-top: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__item {
    padding-top: 1rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__item {
    padding-left: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__item {
    padding-left: 1rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__item {
    padding-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__item {
    padding-right: 1rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__item {
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__item {
    padding-bottom: 1rem;
  }
}
.p-faq__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-faq__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  max-width: 41.875rem;
}
.p-faq__question-mark {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 2.5rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .p-faq__question-mark {
    width: 2rem;
  }
}
@media (max-width: 768px) {
  .p-faq__question-mark {
    width: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__question-mark {
    height: 2rem;
  }
}
@media (max-width: 768px) {
  .p-faq__question-mark {
    height: 1.5rem;
  }
}
.p-faq__question-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .p-faq__question-mark span {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-faq__question-mark span {
    font-size: 1rem;
  }
}
.p-faq__question-detail {
  font-size: 1.125rem;
  font-weight: 500;
}
.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  margin-top: 1.5rem;
  -webkit-transition: margin-top 0.3s ease;
  transition: margin-top 0.3s ease;
  padding-top: 1.5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  border-top: 0.125rem solid #D9D9D9;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  will-change: max-height, opacity, padding, margin;
}
@media (max-width: 1200px) {
  .p-faq__answer {
    margin-top: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer {
    margin-top: 1rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__answer {
    padding-top: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer {
    padding-top: 1rem;
  }
}
.p-faq__answer-mark {
  display: block;
  width: 2.5rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 2.5rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  padding: 0.125rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1200px) {
  .p-faq__answer-mark {
    width: 2rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer-mark {
    width: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__answer-mark {
    height: 2rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer-mark {
    height: 1.5rem;
  }
}
.p-faq__answer-mark div {
  position: relative;
  width: 2.25rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  height: 2.25rem;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  border-radius: 50%;
  background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  font-weight: 500;
  background-color: #FFFFFF;
}
@media (max-width: 1200px) {
  .p-faq__answer-mark div {
    width: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer-mark div {
    width: 1.25rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__answer-mark div {
    height: 1.75rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer-mark div {
    height: 1.25rem;
  }
}
@media (max-width: 1200px) {
  .p-faq__answer-mark div {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-faq__answer-mark div {
    font-size: 1rem;
  }
}
.p-faq__answer-mark div span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.p-faq__answer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-faq__answer-text img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

/*** お問い合わせフォーム ***/
.p-contact {
  background-color: #FEF5F7;
  padding-top: 5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  padding-bottom: 5rem;
  -webkit-transition: padding-bottom 0.3s ease;
  transition: padding-bottom 0.3s ease;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
@media (max-width: 1200px) {
  .p-contact {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-contact {
    padding-top: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .p-contact {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-contact {
    padding-bottom: 2.5rem;
  }
}
.p-contact__inner {
  padding: 2.5rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem;
  background-color: #FFFFFF;
  max-width: 67.5rem;
  margin: auto;
}
@media (max-width: 1200px) {
  .p-contact__inner {
    max-width: 48.75rem;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .p-contact__inner {
    padding: 2.5rem 1rem;
  }
}
.p-contact__lead {
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-contact__lead {
    margin-bottom: 3rem;
    text-align: left;
  }
}
.p-contact__contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
@media (max-width: 1200px) {
  .p-contact__contact-buttons {
    gap: 3.25rem;
  }
}
@media (max-width: 768px) {
  .p-contact__contact-buttons {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-contact__contact-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact__contact-buttons-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 20rem;
  height: 6.25rem;
  border-radius: 1.5rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}
.p-contact__contact-buttons-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  color: #FFFFFF;
}
.p-contact__contact-buttons-number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-contact__contact-buttons-text {
  font-size: 1.125rem;
}
.p-contact__contact-buttons-line {
  display: block;
  width: 20rem;
  height: 6.25rem;
  padding: 0.25rem;
  border-radius: 1.5rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}
.p-contact__contact-buttons-line-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  border-radius: 1.125rem;
  background-color: #FFFFFF;
}
.p-contact__contact-buttons-line-inner .p-contact__contact-buttons-detail {
  gap: 1.5rem;
}
.p-contact__contact-buttons-line-inner .p-contact__contact-buttons-text {
  color: #0A0A0A;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-contact__form {
  max-width: 62.5rem;
  margin: auto;
  padding-top: 5rem;
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
}
@media (max-width: 1200px) {
  .p-contact__form {
    padding-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-contact__form {
    padding-top: 2.5rem;
  }
}
.p-contact__formlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 1200px) {
  .p-contact__formlist {
    max-width: 40rem;
    margin: auto;
  }
}
.p-contact__formbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .p-contact__formbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.p-contact__formbox:first-child .p-contact__formbox-title label {
  cursor: unset;
}
.p-contact__formbox-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 17.5rem;
  width: 100%;
  max-height: 1.875rem;
  margin: 0;
  padding: 0.625rem 0 0 0;
  border: none;
}
@media (max-width: 768px) {
  .p-contact__formbox-title {
    max-width: unset;
  }
}
.p-contact__formbox-title legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 17.5rem;
  width: 100%;
  max-height: 1.875rem;
  padding: 0.625rem 0 0 0;
}
@media (max-width: 768px) {
  .p-contact__formbox-title legend {
    max-width: unset;
  }
}
.p-contact__formbox-title label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
}
.p-contact__formbox-text {
  padding-left: 0.75rem;
  border-left: 0.25rem solid #0F269F;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-contact__formbox-must {
  padding: 0.125rem 0.5rem;
  border-radius: 0.9375rem;
  background-color: #DF1540;
  color: #FFFFFF;
  font-size: 0.625rem;
}
.p-contact__formbox-radio .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: auto;
  padding-top: 0.625rem;
}
.p-contact__formbox-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0.5rem;
  cursor: pointer;
}
.p-contact__formbox-radio .wpcf7-list-item input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid #D9D9D9;
  border-radius: 50%;
  margin: 0;
}
.p-contact__formbox-radio .wpcf7-list-item input[type=radio]:checked {
  border-color: #0F269F;
  background-color: #0F269F;
  position: relative;
}
.p-contact__formbox-radio .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.p-contact .wpcf7-form-control-wrap {
  max-width: 40rem;
  width: 100%;
  min-height: 2.5rem;
}
.p-contact__formbox-textbox, .p-contact__formbox-textarea {
  max-width: 40rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 0.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(15, 38, 159, 0.2);
  font-size: 1.125rem;
}
.p-contact__formbox-textbox:focus, .p-contact__formbox-textarea:focus {
  outline: none;
  border-color: #0F269F;
  -webkit-box-shadow: 0 0 0.5rem rgba(15, 38, 159, 0.3);
          box-shadow: 0 0 0.5rem rgba(15, 38, 159, 0.3);
}
.p-contact__formbox-textarea {
  min-height: 12.5rem;
  resize: vertical;
}
.p-contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
}
.p-contact .wpcf7-submit {
  padding: 0.75rem 3rem 0.75rem 2rem;
  border: 0;
  background: url(../images/lp/contact-arrow.svg) right 1rem center no-repeat, -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: url(../images/lp/contact-arrow.svg) right 1rem center no-repeat, linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
  background-size: 1rem 1rem, cover;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-contact .wpcf7-submit:hover {
  opacity: 0.8;
}
.p-contact--thanks {
  padding-top: 7.5rem;
  background-color: #FFFFFF;
}
.p-contact__thanks-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.p-contact__thanks-text p {
  text-align: center;
}

/*** SP固定ボタン（画面下部に固定） ***/
.p-fixed {
  display: none;
}
@media (max-width: 768px) {
  .p-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .p-fixed.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-fixed__item {
  width: 100%;
}
.p-fixed__button {
  display: block;
  background: -webkit-gradient(linear, left top, right bottom, from(#DE133E), to(#EF3A6B));
  background: linear-gradient(to bottom right, #DE133E 0%, #EF3A6B 100%);
  color: #FFFFFF;
  text-align: center;
  padding-block: 12px;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-fixed__button:hover {
  opacity: 1;
}
.p-fixed__button--blue {
  background: -webkit-gradient(linear, left top, right bottom, from(#0F259F), to(#0F6BCB));
  background: linear-gradient(to bottom right, #0F259F 0%, #0F6BCB 100%);
}/*# sourceMappingURL=style.css.map */