@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

/*--------------------------------
  リセット
  ---------------------------------*/
body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit !important;
  cursor: pointer;
}

a:hover {
  text-decoration: none !important;
  color: inherit;
  opacity: 0.8s;
  transition: all 0.8s;
}

img {
  max-width: 100%;
}

/*--------------------------------
  コンテンツ幅
  ---------------------------------*/
.content-l {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.content-m {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }
}

/*--------------------------------
  PC/SP
  表示非表示
  ---------------------------------*/
.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/*--------------------------------
  セクションタイトル
  ---------------------------------*/
.section-title {
  font-size: clamp(1.75rem, 3.78vw, 3.125rem);
  color: #0469bc;
  text-align: center;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
}
.section-title span {
  font-size: clamp(1rem, 1.54vw, 1.31rem);
  position: relative;
  padding-left: 30px;
  text-align: center;
}
.section-title span:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #00ffff 0%, #0032fa 100%);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*--------------------------------
 英字背景
---------------------------------*/
.bg-en {
  font-size: clamp(7rem, 11.7vw, 10rem);
  color: rgba(218, 218, 218, 0.1215686275);
  font-weight: bold;
  line-height: 1;
  width: 100%;
}

/*--------------------------------
 ヘッダー
---------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 200;
  background-color: #fff;
  width: 100%;
  display: flex !important;
  align-items: center;
  height: 84px;
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1803921569);
}
header .header-inner {
  max-width: 1320px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  display: flex;
  width: 100%;
}
header .header-inner .logo {
  width: clamp(250px, 2.3vw, 324px);
}
header .header-inner .global-nav {
  display: flex;
  flex-basis: 73%;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .global-nav .global-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 60%;
  margin-right: 2.9vw;
}
header .header-inner .global-nav .global-menu li {
  font-weight: bold;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 2;
}
header .header-inner .global-nav .btns {
  font-weight: bold;
  display: flex;
  font-size: 1rem;
  line-height: 2;
  flex-basis: 37%;
  justify-content: space-between;
}
header .header-inner .global-nav .btns li {
  width: 162px;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 50px;
}
header .header-inner .global-nav .btns li a {
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media (max-width: 768px) {
  header {
    padding: 0 5px;
    height: 70px;
  }
}
.red-btn {
  background: linear-gradient(0deg, #ff1654 0%, #ff668f 100%);
}

.blue-btn {
  background: #0469bc;
}

/*--------------------------------
 ハンバーガーメニュー
---------------------------------*/
.sp-menu {
  display: none;
}

.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}
.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

@media (max-width: 768px) {
  .hamburger-overlay {
    top: 11px;
  }
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #0033a0, #5ed0e6);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__list .btn {
  margin: 0 auto;
  margin-top: 30px;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.5s;
}
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff !important;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}

@media (max-width: 1000px) {
  .sp-menu {
    display: block;
  }
  header .header-inner .global-nav {
    display: none;
  }
}
/*--------------------------------
  メインビジュアル
  ---------------------------------*/
.mv {
  width: 100%;
  background-size: cover;
  margin-top: 84px;
  position: relative;
}
.mv img {
  width: 100%;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv_inner {
  position: absolute;
  top: clamp(50px, 60%, 144px);
  left: 5%;
  z-index: 150;
}
@media (max-width: 500px) {
  .mv .mv_inner {
    left: 50%;
    transform: translateX(-50%);
  }
}
.mv .mv_inner .text .mv-title {
  font-size: clamp(2.375rem, 4.93vw, 4.1875rem);
  font-weight: bold;
  line-height: 1.8;
  color: #0469bc;
  margin-bottom: 54px;
}
.mv .mv_inner .text .mv-title span {
  background-color: #fff;
  padding: 0px 0.3em 0.1em;
}
@media (max-width: 768px) {
  .mv .mv_inner .text .mv-title span {
    padding: 0 15px;
  }
}
.mv .mv_inner .text .mv-txt {
  font-size: clamp(0.75rem, 1.54vw, 1.3125rem);
  line-height: 1.74;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 8.5px rgba(0, 0, 0, 0.84);
  margin-bottom: 32px;
}
.mv .mv_inner .text .sub-text {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0px 0px 8.5px rgba(0, 0, 0, 0.84);
}
.mv .mv_inner .btn {
  letter-spacing: 0.1em;
}

.btn {
  background: linear-gradient(0deg, #ff1654 0%, #ff668f 100%);
  color: #fff;
  padding: 20px 0;
  width: 338px;
  border-radius: 42px;
  position: relative;
  font-size: clamp(1rem, 1.54vw, 1.31rem);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.5019607843);
}
.btn:after {
  content: "";
  position: absolute;
  right: 1em;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
  top: 51%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .mv {
    margin-top: 70px;
  }
  .mv .mv_inner {
    top: 50px;
  }
}
.title-sub {
  position: relative;
  color: white;
  padding-left: 30px;
  font-size: clamp(1rem, 1.54vw, 1.31rem);
  display: inline-block;
  margin-bottom: 20px;
}
.title-sub:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #00ffff 0%, #0032fa 100%);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .title-sub {
    padding-left: 15px;
  }
  .title-sub:after {
    width: 14px;
    height: 14px;
  }
}
/*--------------------------------
  aboutセクション
  ---------------------------------*/
.upper {
  position: relative;
  z-index: 100;
  top: -40vh;
}
@media (max-width: 768px) {
  .upper {
    top: -40vh;
  }
}

.about {
  padding-top: 500px;
  color: #fff;
  padding-bottom: 200px;
  position: relative;
  background: linear-gradient(180deg, rgba(36, 122, 191, 0) 0%, rgba(27, 133, 219, 0.8) 12%, rgb(18, 113, 188) 50.08%, #226fad 100%);
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 154px;
  }
}
.about .circle {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(50% 50% at 50% 50%, #00e6ff 0%, #00e6ff 34%, rgba(0, 229, 255, 0) 100%);
  opacity: 0.43;
}
.about .circle._one {
  right: -9%;
  top: 33%;
}
.about .circle._two {
  left: -12%;
  top: 22%;
}
.about .circle._three {
  right: 10%;
  top: 60%;
}
.about .circle._four {
  right: 50%;
  top: 80%;
}
.about .about_inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 96px;
  align-items: center;
}
.about .about_inner .bg-en {
  position: absolute;
  top: 0;
}
.about .about_inner .txt {
  flex-basis: 46%;
}
@media (max-width: 768px) {
  .about .about_inner .txt {
    margin-bottom: 30px;
  }
}
.about .about_inner .txt h2.about-ttl {
  font-size: clamp(2.375rem, 3.68vw, 3.125rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 40px;
}
.about .about_inner .txt h2.about-ttl .sub02 {
  margin-left: 20px;
  font-size: 1.75rem;
}
.about .about_inner .txt h2.about-ttl .sub03 {
  font-size: clamp(1.3125rem, 2.79vw, 2.375rem);
  margin-top: 20px;
  display: block;
}
.about .about_inner .txt .about-txt p {
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 2;
  font-size: clamp(1rem, 1.32vw, 1.125rem);
}
.about .about_inner .img {
  flex-basis: 46%;
  max-width: 600px;
}
.about .photos .photos-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .about .photos .photos-inner {
    flex-direction: column;
  }
}
.about .photos .photos-inner .photo_item {
  flex-basis: 31%;
}
@media (max-width: 600px) {
  .about .photos .photos-inner .photo_item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 380px;
  }
  .about .about_inner {
    flex-direction: column;
  }
  .about .about_inner .txt h2.about-ttl .sub02 {
    margin-left: 0;
  }
}
/*--------------------------------
  reccomendセクション
  ---------------------------------*/
.recommend {
  border-radius: 90px 90px 0 0;
  position: relative;
  top: -100px;
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .recommend {
    border-radius: 45px 45px 0 0;
    padding-bottom: 0;
  }
}
.recommend .bg-en {
  writing-mode: vertical-rl;
  color: rgba(218, 218, 218, 0.48);
  position: absolute;
  z-index: 0;
  width: auto;
  top: 80px;
}
@media (max-width: 768px) {
  .recommend .bg-en {
    top: 130px;
    left: -10px;
  }
}
.recommend .recommend-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 84%;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .recommend .recommend-wrap {
    width: 90%;
    flex-direction: column;
  }
}
.recommend .recommend-wrap .recommend_item {
  flex-basis: 48%;
  box-shadow: 9px 2.55186px 7.6px rgba(0, 0, 0, 0.25);
  border-radius: 0px 30px 0px 0px;
  padding: 50px 0;
  margin-bottom: 32px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .recommend .recommend-wrap .recommend_item {
    padding: 30px 20px;
  }
}
.recommend .recommend-wrap .recommend_item .recommend_item-inner {
  width: 78%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .recommend .recommend-wrap .recommend_item .recommend_item-inner {
    width: 100%;
    padding-left: 0;
  }
}
.recommend .recommend-wrap .recommend_item .title {
  font-size: clamp(1.25rem, 1.76vw, 1.5rem);
  color: #0469bc;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.recommend .recommend-wrap .recommend_item .title:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0469bc;
  border-right: 0;
  top: 8px;
}
.recommend .recommend-wrap .recommend_item .txt {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 1.76;
  letter-spacing: 0.1em;
}

/*--------------------------------
  CTAセクション
  ---------------------------------*/
.cta {
  background-image: url(https://www.senryakushien.org/wp/wp-content/themes/rcnt/images/mg/cta_bg.jpg);
  padding: 88px 0;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 900px) {
  .cta {
    padding: 40px 0;
  }
}
.cta .cta_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 741px;
}
.cta .cta_inner .cta-text {
  color: #fff;
  font-size: clamp(1.3125rem, 2.79vw, 2.375rem);
  text-align: center;
  line-height: 1.74;
  margin-bottom: 48px;
}
.cta .cta_inner .btn {
  margin: 0 auto;
}

.bg-en.center {
  position: absolute;
  top: 130px;
  color: rgba(218, 218, 218, 0.48);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: -1;
}
@media (max-width: 900px) {
  .bg-en.center {
    font-size: 2.5rem;
    white-space: nowrap;
    top: 74px;
  }
}

/*--------------------------------
  戦略MG研修で学べることセクション
  ---------------------------------*/
.learn {
  position: relative;
  overflow: hidden;
}
.learn .graph {
  width: 67%;
  margin: 0 auto;
  margin-bottom: 112px;
}
@media (max-width: 900px) {
  .learn .graph {
    width: 95%;
    margin-bottom: 40px;
  }
}
.learn .learn_item {
  background: #ffffff;
  box-shadow: 0px 0px 26.5px rgba(0, 0, 0, 0.26);
  border-radius: 0px 58px 0px 0px;
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .learn .learn_item {
    border-radius: 0px 25px 0px 0px;
    margin-bottom: 32px;
  }
}
.learn .learn_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 66px 66px 0; /* top right bottom left */
  border-color: transparent transparent #0077cc transparent;
  transform: rotate(90deg);
}
@media (max-width: 900px) {
  .learn .learn_item:before {
    border-width: 0 40px 40px 0;
  }
}
.learn .learn_item.rev {
  border-radius: 58px 0px 0px 0px;
}
.learn .learn_item.rev .learn_item-inner {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .learn .learn_item.rev .learn_item-inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 900px) {
  .learn .learn_item.rev {
    border-radius: 25px 0px 0px 0px;
  }
}
.learn .learn_item.rev::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* ←左ではなく右に配置 */
  left: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 66px 66px; /* top right bottom left */
  border-color: transparent transparent transparent #0077cc;
}
@media (max-width: 900px) {
  .learn .learn_item.rev::before {
    border-width: 0 0 40px 40px;
  }
}
.learn .learn_item .learn_item-inner {
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .learn .learn_item .learn_item-inner {
    flex-direction: column-reverse;
    padding: 50px 20px;
  }
}
.learn .learn_item .learn_item-inner .text {
  flex-basis: 45.5%;
}
.learn .learn_item .learn_item-inner .text .title {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
.learn .learn_item .learn_item-inner .text .title .num {
  display: inline-block;
  font-size: clamp(3.125rem, 6.62vw, 5.625rem);
  background: linear-gradient(304.23deg, #043b7b -44.25%, #0075fb 103.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: "Roboto Condensed", sans-serif !important;
  margin-right: 20px;
}
.learn .learn_item .learn_item-inner .text .title p {
  font-size: clamp(1.5rem, 2.06vw, 1.75rem);
  font-weight: bold;
  color: #0469bc;
  line-height: 1.75;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .learn .learn_item .learn_item-inner .text .title p {
    line-height: 1.4;
  }
}
.learn .learn_item .learn_item-inner .text .txt {
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .learn .learn_item .learn_item-inner .text .txt {
    margin-bottom: 24px;
  }
}
.learn .learn_item .learn_item-inner .text .txt p {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  margin-bottom: 5px;
  line-height: 1.65;
}
.learn .learn_item .learn_item-inner .img {
  flex-basis: 46%;
}
@media (max-width: 900px) {
  .learn .learn_item .learn_item-inner .img {
    margin-bottom: 16px;
  }
  .learn .learn_item .learn_item-inner .img img {
    width: 100%;
  }
}
.learn .learn_item .list {
  padding: 24px;
  background-color: #f1f1f1;
}
@media (max-width: 900px) {
  .learn .learn_item .list {
    padding: 15px;
  }
}
.learn .learn_item .list .list_title {
  color: #fff;
  background: linear-gradient(304.23deg, #043b7b -44.25%, #0075fb 103.59%);
  padding: 8px 0;
  text-align: center;
  width: 200px;
  border-radius: 47.6px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .learn .learn_item .list .list_title {
    margin: 0 auto 16px;
  }
}
.learn .learn_item .list ul li {
  display: flex;
  align-items: center;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .learn .learn_item .list ul li {
    align-items: start;
  }
}
.learn .learn_item .list ul li img {
  margin-right: 15px;
}
@media (max-width: 900px) {
  .learn .learn_item .list ul li img {
    width: 25px;
  }
}

/*--------------------------------
  他の研修との違い
  ---------------------------------*/
.difference {
  position: relative;
  background: linear-gradient(304.23deg, #043b7b -44.25%, #0075fb 103.59%);
}
.difference .section-title {
  color: #fff;
}
.difference .bg-en {
  color: rgba(218, 218, 218, 0.1215686275);
  z-index: 0;
}
.difference .difference_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .difference .difference_wrap {
    flex-direction: column;
  }
}
.difference .difference_wrap .difference_item {
  flex-basis: 31.5%;
  background-color: #fff;
  padding: 40px;
  border-radius: 0 30px 0 0;
  text-align: center;
}
@media (max-width: 900px) {
  .difference .difference_wrap .difference_item {
    margin-bottom: 40px;
    padding: 40px 20px;
  }
}
.difference .difference_wrap .difference_item .difference_item-title {
  text-align: center;
  margin-bottom: 32px;
}
.difference .difference_wrap .difference_item .difference_item-title img {
  width: 40px;
}
.difference .difference_wrap .difference_item .difference_item-title h3 {
  font-size: clamp(1.125rem, 1.54vw, 2.25rem);
  font-size: clamp(1.125rem, 2.65vw, 1.3125rem);
  text-align: center;
  color: #0469bc;
}
.difference .difference_wrap .difference_item .difference_img {
  margin-bottom: 40px;
}
.difference .difference_wrap .difference_item .difference_txt {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 1.75;
  text-align: left;
}

/*--------------------------------
  タイムテーブルセクション
  ---------------------------------*/
.time_table {
  background-color: #00489a;
  position: relative;
  background-image: url(https://www.senryakushien.org/wp/wp-content/themes/rcnt/images/mg/tametable_bg.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.time_table .section-title {
  color: #fff;
}
.time_table .bg-en {
  color: rgba(218, 218, 218, 0.1215686275);
  z-index: 0;
}
.time_table .time_table-wrap {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.time_table .time_table-wrap .time_table-txt {
  color: #fff;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 2;
  margin-bottom: 48px;
}
.time_table .time_table-wrap table {
  width: 100%;
  max-width: 882px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 16px;
  font-size: clamp(1.125rem, 1.76vw, 1.125rem);
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif !important;
}
.time_table .time_table-wrap table .table-title {
  text-align: center;
}
.time_table .time_table-wrap thead th {
  background-color: #005bac;
  font-family: "Noto Sans JP", sans-serif !important;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
}
.time_table .time_table-wrap tbody td {
  background-color: white;
  font-family: "Noto Sans JP", sans-serif !important;
  padding: 12px;
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.time_table .time_table-wrap .time {
  width: 30%;
  padding-left: 64px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .time_table .time_table-wrap .time {
    padding-left: 32px;
  }
}
.time_table .time_table-wrap .time::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  width: 2px;
  background-color: #005bac;
}
.time_table .time_table-wrap .content {
  width: 70%;
  font-weight: bold;
  padding-left: 105px;
}
@media (max-width: 768px) {
  .time_table .time_table-wrap .content {
    padding-left: 32px;
  }
}

/*--------------------------------
  スライダーの設定
  ---------------------------------*/
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  padding: 10px 15px;
  background-color: #0469bc;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .swiper-button-next {
    right: -3vw;
  }
  .swiper-button-prev {
    left: -3vw;
  }
}
.swiper_wrap {
  padding: 2vw 3vw;
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 2000px;
  margin-bottom: 104px;
}
.swiper_wrap .swiper {
  overflow: visible;
}
.swiper_wrap .swiper .swiper-slide {
  height: auto;
}
.swiper_wrap .swiper .swiper-slide:not(.swiper-slide-visible) .voice-item {
  pointer-events: none;
  opacity: 0.3;
}
.swiper_wrap .swiper .swiper-slide:not(.swiper-slide-visible) .instractor-item {
  pointer-events: none;
  opacity: 0.3;
}

/*--------------------------------
  お客様の声セクション
  ---------------------------------*/
.voice {
  position: relative;
  overflow: hidden;
}
.voice .voice-item {
  height: 100%;
}
.voice .voice-item {
  border: 1px solid #0469bc;
  border-radius: 8px;
  padding: 2em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.voice .voice-item .person {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.voice .voice-item .person .personal-info {
  margin-left: 20px;
}
.voice .voice-item .person .personal-info .initial {
  margin-bottom: 8px;
}
.voice .voice-item .title {
  font-size: clamp(1.125rem, 1.47vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 16px;
}

.elementary {
  background-image: url(https://www.senryakushien.org/wp/wp-content/themes/rcnt/images/mg/elementary_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 0;
}
.elementary .elementary_wrap {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 768px) {
  .elementary .elementary_wrap {
    flex-direction: column;
  }
}
.elementary .elementary_wrap .txt {
  flex-basis: 45%;
}
.elementary .elementary_wrap .txt .title {
  font-size: clamp(1.75rem, 2.65vw, 2.25rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.66;
  margin-bottom: 32px;
}
.elementary .elementary_wrap .txt p {
  color: #fff;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 2;
}
@media (max-width: 768px) {
  .elementary .elementary_wrap .txt p {
    margin-bottom: 30px;
  }
}
.elementary .elementary_wrap .img {
  flex-basis: 39%;
}

.movie {
  padding: 124px 0 0;
}
@media (max-width: 768px) {
  .movie {
    padding: 64px 0 0;
  }
}
.movie .movie_txt {
  font-size: clamp(1.5rem, 2.06vw, 1.75rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 64px;
}
.movie .movie_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .movie .movie_wrap {
    flex-direction: column;
  }
}
.movie .movie_wrap .movie_item {
  flex-basis: 48%;
  margin-bottom: 30px;
}
.movie .movie_wrap .movie_item iframe {
  height: 400px;
}
@media (max-width: 500px) {
  .movie .movie_wrap .movie_item iframe {
    height: 220px;
  }
}

/*--------------------------------
  費用についてセクション
  ---------------------------------*/
.price {
  background-color: #0469bc;
  padding-bottom: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .price {
    padding-bottom: 120px;
  }
}
.price .section-title {
  color: #fff;
}
.price .bg-en {
  color: rgba(218, 218, 218, 0.1215686275);
  z-index: 0;
}
.price .price_wrap {
  display: flex;
  justify-content: space-between;
  width: 93%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .price .price_wrap {
    flex-direction: column;
    align-items: start;
  }
}
.price .price_wrap .price_item {
  flex-basis: 47.7%;
  padding: 50px 30px;
  background: #ffffff;
  box-shadow: 0px 0px 26.5px rgba(0, 0, 0, 0.26);
  border-radius: 0px 58px 0px 0px;
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .price .price_wrap .price_item {
    border-radius: 0px 30px 0px 0px;
    margin: 0 auto 64px;
    width: 100%;
    max-width: 400px;
  }
}
.price .price_wrap .price_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent transparent #0077cc transparent;
  transform: rotate(90deg);
}
.price .price_wrap .price_item .course {
  font-size: 1.3125rem;
  color: #0469bc;
  margin-bottom: 16px;
  font-weight: bold;
}
.price .price_wrap .price_item .normal_price {
  color: #ff0000;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.price .price_wrap .price_item .price_num {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.price .price_wrap .price_item .price_num .arrow {
  width: 38px;
  height: 19px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .price .price_wrap .price_item .price_num .arrow {
    display: none;
  }
}
.price .price_wrap .price_item .price_num .icon {
  width: 65px;
  height: 65px;
}
@media (max-width: 900px) {
  .price .price_wrap .price_item .price_num .icon {
    position: absolute;
    top: 11%;
    right: 5%;
  }
}
.price .price_wrap .price_item .price_num .campaign {
  font-size: clamp(1.5rem, 2.06vw, 1.75rem);
  color: #ff0000;
  margin-bottom: 8px;
}
.price .price_wrap .price_item .price_num p {
  font-size: 2.375rem;
  line-height: 1;
}
.price .price_wrap .price_item .price_num p span {
  font-size: 1.75rem;
}
@media (max-width: 900px) {
  .price .price_wrap .price_item .price_num p span {
    font-size: 0.5em;
  }
}
.price .lower_text {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
}
.price .lower_text .price_txt {
  color: #fff;
}
.price .lower_text .price_txt li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
  font-size: clamp(0.875rem, 1.18vw, 1rem);
}
.price .lower_text p {
  color: #fff;
  margin-bottom: 48px;
}
.price .kaisai_toshi {
  background-color: #fff;
  padding: 62px 0 30px;
  position: relative;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: bold;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  word-break: keep-all;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .price .kaisai_toshi {
    padding: 50px 10px 20px;
  }
}
.price .kaisai_toshi .tag {
  background: linear-gradient(304.23deg, #043b7b -44.25%, #0075fb 103.59%);
  color: #fff;
  padding: 8px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(1rem, 1.32vw, 1.125rem);
  font-weight: normal;
}
.price .banner {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/*--------------------------------
  お申し込みの流れセクション
  ---------------------------------*/
section.apply {
  margin-bottom: 63px;
  border-radius: 90px 90px 0 0;
  position: relative;
  top: -70px;
  background-color: #fff;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  section.apply {
    border-radius: 45px 45px 0 0;
    overflow: hidden;
  }
}
section.apply .bg-en {
  top: -48px;
  z-index: 1;
}
@media (max-width: 768px) {
  section.apply .bg-en {
    top: 74px;
    z-index: 0;
  }
}

.bg-en {
  top: -48px;
}

.apply-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 700px;
}

.step-header {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.step-header .icon {
  flex-basis: 10%;
}
.step-header h3 {
  flex-basis: 85%;
}
@media (max-width: 600px) {
  .step-header .icon {
    flex-basis: 15%;
  }
  .step-header .icon img {
    vertical-align: bottom;
  }
}

.apply-step {
  gap: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: dashed 1px #545454;
}
@media (max-width: 900px) {
  .apply-step .step {
    flex-basis: 20%;
  }
}

.apply-step-inner {
  flex-basis: 80%;
}

.step-header h3 {
  font-size: clamp(1.4rem, 1.75vw, 1.5rem);
  color: #0469bc;
}

.apply-step-inner p {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 1.75;
}

/*--------------------------------
  インストラクターセクション
  ---------------------------------*/
.instractor {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}
.instractor .sub_text {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
  line-height: 2;
  margin: 0 auto 48px;
  text-align: center;
  width: 80%;
  max-width: 1000px;
}
.instractor .instractor-item {
  border: 1px solid #0469bc;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 100%;
}
.instractor .instractor-item .person {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}
.instractor .instractor-item .person p img {
  width: 100px !important;
  height: auto;
}
.instractor .instractor-item .person .personal-info {
  flex-basis: 70%;
}
.instractor .instractor-item .person .personal-info .initial {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.25rem;
}
.instractor .instractor-item .person .personal-info .tags .tag {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 5px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.instractor .instractor-item .person .description {
  font-size: clamp(0.875rem, 1.18vw, 1rem);
}

/* FAQ */
/*--------------------------------
 FAQ
---------------------------------*/
section.faq {
  background-color: #0469bc;
  position: relative;
  margin-bottom: 0 !important;
}
section.faq.section-padding {
  padding: 120px 0 !important;
}
@media (max-width: 768px) {
  section.faq.section-padding {
    padding: 64px 0 !important;
  }
}
section.faq .section-title {
  color: #fff;
}
section.faq .bg-en {
  color: rgba(218, 218, 218, 0.1215686275);
  z-index: 0;
}

.faq-inner {
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}

.p-question__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-question__contents {
    gap: 0;
  }
}

.p-question__accordion-list {
  width: 100%;
  border: 1px solid #00309f;
  border-radius: 5px;
  background: #ffffff;
  position: relative;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.p-question__accordion-box {
  display: flex;
  line-height: 1.5;
  background-color: #ecfaff;
  gap: 2.2%;
  padding: 30px 0;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .p-question__accordion-box {
    padding-left: 16px;
  }
}

.p-question__accordion-box p.a {
  color: #cd403e;
  font-weight: bold;
  font-size: 1.125rem;
}

.p-question__accordion-box p.answer {
  flex-basis: 85%;
  font-size: clamp(0.875rem, 1.38vw, 1.125rem);
  letter-spacing: 0.05em;
}

.p-question__accordion-title h3 {
  width: 80.5%;
  /* font-size: clamp(0.875rem, 1.38vw, 1.125rem); */
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  color: #00309f;
  text-indent: -1em;
  padding-left: 1em;
}

.p-question {
  width: 90%;
  max-width: 996px;
  padding: 19px 0 42px;
}

.p-question__accordion-title {
  cursor: pointer;
  position: relative;
  padding: 29px 0 29px 4%;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-question__accordion-title {
    padding: 16px 0 16px 4%;
  }
}

.p-question__accordion-text {
  padding: 0 3.6% 23px 0;
}
@media (max-width: 768px) {
  .p-question__accordion-text {
    margin-left: 20px;
  }
}

.p-question__accordion-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50% !important;
  right: 30px !important;
  transform: translateY(-50%) rotate(135deg) !important;
  width: 10px;
  height: 10px;
  border-top: 3px solid #00309f;
  border-right: 3px solid #00309f;
  transition: 0.3s;
  margin: 0 !important;
}

.p-question__accordion-title.open::after {
  transform: rotate(-45deg) !important;
}

.p-question__accordion-text {
  display: none;
}

footer {
  margin-top: -200px !important;
}

.pagetop {
  z-index: 200;
}

.grecaptcha-badge {
  z-index: 200;
}
/*# sourceMappingURL=mg-page.css.map */