@charset "UTF-8";
/*=============================================
基本設定
==============================================*/
/*基本*/
html {
  font-size: 62.5%;
  font-size: 14px;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 18px;
  }
}
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  font-style: normal;
  color: #000000;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/*リセット/ノーマライズ/サニタイズ*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  font-weight: 0;
  color: #003A66;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/*----- TEL -----*/
@media only screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

p {
  line-height: 1.8rem;
  color: #003A66;
}

h1 {
  font-size: 3rem;
  font-family: "游明朝体";
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #003A66;
}

h3 {
  font-size: 1.3rem;
  color: #003A66;
}

img {
  width: 100%;
}

section {
  padding: 70px 0 0 0;
  position: relative;
}

article {
  padding: 50px 0;
}

.container {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  section {
    padding: 100px 0 0 0;
  }
  .container {
    padding: 0 40px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 62.5%;
    font-size: 16px;
    scroll-behavior: smooth;
  }
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  h3 {
    font-size: 1.5rem;
  }
}
/*=============================================
ヘッダー
==============================================*/
/*----- ヘッダー -----*/
header {
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: auto;
  background-color: #DFE9F0;
}

.header_background {
  background-color: rgba(223, 233, 240, 0.8);
}

.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.top_logo a {
  color: #003A66;
}
.top_logo a h1 {
  font-size: 1.3rem;
}

/* ハンバーガーメニュー */
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
}

.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #003A66;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before, .hamburger_menu__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #003A66;
  position: absolute;
  transition: all 0.5s;
}
.hamburger_menu__line::before {
  transform: translateY(-12px);
}
.hamburger_menu__line::after {
  transform: translateY(12px);
}

.hamburger_menu.open .hamburger_menu__line {
  background-color: transparent;
}
.hamburger_menu.open .hamburger_menu__line::before {
  transform: rotate(45deg);
  background-color: #003A66;
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-45deg);
  background-color: #003A66;
}

/* ナビゲーション */
.nav_sp_area {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -3000px;
  width: 100%;
  height: 100vh;
  transition: right 0.5s;
}

.nav_sp {
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  right: -1000px;
  width: 100%;
  height: 100vh;
  padding: 0px 10px 0;
  background-color: #DFE9F0;
  background-size: cover;
  color: #003A66;
  text-align: left;
  transition: right 0.5s;
}

.nav_sp_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.nav_sp_wrap ul {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.nav_sp_wrap li {
  list-style: none;
  margin-bottom: 20px;
  font-family: "游明朝体";
}
.nav_sp_wrap .menu_sub {
  font-size: 1rem;
  font-weight: 400;
}

.nav_sp a {
  display: inline-block;
  padding: 5px 0;
  color: #003A66;
  font-size: 26px;
  font-weight: 700;
}

.nav_sp_area.open {
  right: 0;
}
.nav_sp_area.open .nav_sp {
  right: 0;
}

.main_menu {
  display: none;
}

@media only screen and (min-width: 768px) {
  .main_menu {
    display: none;
  }
  .nav_sp_wrap li {
    margin-bottom: 30px;
  }
  .nav_sp {
    right: -850px;
  }
  .nav_sp a {
    font-size: 46px;
  }
}
@media only screen and (min-width: 1080px) {
  .hamburger_menu {
    display: none;
  }
  .nav_sp_area {
    display: none;
  }
  .main_menu {
    display: block;
  }
  .main_menu ul {
    display: flex;
  }
  .main_menu li {
    list-style: none;
    margin-right: 25px;
  }
  .main_menu a {
    color: #003A66;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    font-family: "游明朝体";
  }
  .main_menu .menu_sub {
    font-size: 0.8rem;
    font-weight: 400;
  }
}
/*=============================================
共通部品
==============================================*/
.section_title {
  margin: 20px 0;
}
.section_title .sub_title {
  font-family: "游明朝体";
  font-size: 1.1rem;
  border-bottom: 1px solid #003A66;
  margin-bottom: 10px;
  color: #003A66;
}
.section_title h2 {
  font-size: 1.3rem;
}
.section_title h2 .title_point {
  font-family: "游明朝体";
  font-size: 0.8rem;
  margin-left: 10px;
}

.section_text {
  font-size: 1rem;
  line-height: 2rem;
  color: #003A66;
}

.br_pc {
  display: none;
}

.section_image {
  margin: 20px 0;
}

.section_back_area {
  background-color: #DFE9F0;
  padding: 50px 0;
}

.section_title_back_area {
  background-color: #DFE9F0;
  padding: 20px 0;
}

@media only screen and (min-width: 768px) {
  .section_back_area {
    padding: 100px 0;
  }
  .section_title {
    display: table;
  }
  .section_title .sub_title {
    font-family: "游明朝体";
    font-size: 1.5rem;
    border-bottom: 1px solid #003A66;
    margin-bottom: 10px;
    color: #003A66;
  }
  .section_title h2 {
    font-size: 2rem;
  }
  .br_pc {
    display: block;
  }
}
/* スクロールすると要素がフェードイン */
.is-fadein {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.detail_button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px 0px 10px;
  background-color: #003A66;
  border-radius: 15px;
  box-shadow: 5px 5px 1px #dfe9f0;
  color: white;
  font-weight: 500;
  text-align: center;
}
.detail_button:hover {
  opacity: 0.8;
}
.detail_button .butoon_image {
  margin-left: 10px;
}
.detail_button .butoon_image img {
  width: 20px;
  height: auto;
}

@media only screen and (min-width: 1080px) {
  .detail_button {
    max-width: 500px;
    font-size: 1.5rem;
    border-radius: 20px;
    padding: 15px 0px 15px;
  }
}
/*----- FAQ -----*/
.faq_wrap {
  margin: 30px 0;
}

.faq_inner {
  padding: 10px;
}

.question {
  position: relative;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  background-color: #003A66;
  /*　closeというクラスがついたら形状変化　*/
}
.question::before, .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #003A66;
  right: 0;
}
.question::before {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.question::after {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.question.close::before {
  transform: rotate(45deg);
}
.question.close::after {
  transform: rotate(-45deg);
}

.question_text {
  color: white;
}

.answer {
  color: #003A66;
  display: none;
  font-size: 1rem;
}

.answer_text {
  color: #003A66;
}

.symbol {
  font-size: 1.5rem;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 700;
  margin-right: 10px;
}

.faq_inner_box {
  display: flex;
  width: 93%;
}
.faq_inner_box p {
  padding: 5px 0;
}

@media only screen and (min-width: 768px) {
  .symbol {
    margin-right: 30px;
  }
}
/*----- COMPANY -----*/
#company {
  padding: 70px 0;
}

.company_wrap {
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  color: #003A66;
}
.company_wrap dt {
  font-family: "游明朝体";
  margin-bottom: 10px;
}
.company_wrap dd {
  color: #000000;
  font-weight: 600;
  color: #003A66;
}
.company_wrap dd p {
  font-weight: 600;
  color: #003A66;
}
.company_wrap .font_size {
  font-weight: 600;
  font-size: 1.2rem;
}
.company_wrap a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.company_wrap a {
  color: #003A66;
}

@media only screen and (min-width: 768px) {
  #company {
    padding: 100px 0;
  }
  .company_table {
    width: 700px;
    margin: 30px auto 0;
  }
  .company_wrap {
    display: flex;
    align-items: center;
  }
  .company_wrap dt {
    width: 20%;
    font-size: 1.2rem;
  }
  .company_wrap dd {
    width: 80%;
    font-size: 1.2rem;
  }
  .company_wrap .font_size {
    font-size: 1.5rem;
  }
}
.scroll_contact_button {
  position: fixed;
  bottom: 0px;
  right: 10px;
  z-index: 9999;
}
.scroll_contact_button a {
  display: block;
  width: 350px;
}

@media only screen and (min-width: 768px) {
  .scroll_contact_button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
  }
  .scroll_contact_button a {
    display: block;
    width: 400px;
  }
}
/*=============================================
フッター
==============================================*/
footer {
  background-color: #003A66;
  color: white;
  padding: 50px 0 10px 0;
}

.footer_logo {
  text-align: center;
}
.footer_logo a {
  color: white;
  font-size: 2rem;
  font-family: "游明朝体";
}

.footer_menu {
  text-align: center;
  margin: 30px 0;
}
.footer_menu li {
  margin-top: 10px;
}
.footer_menu li a {
  color: white;
  font-family: "游明朝体";
  font-size: 1.2rem;
}

.copyright {
  text-align: center;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 700px;
    margin: 0px auto 30px;
  }
  .footer_menu li {
    margin: 30px 20px 0 20px;
  }
}
@media only screen and (min-width: 1080px) {
  .footer_menu {
    width: 850px;
  }
  .footer_menu li {
    margin: 30px 30px 0 30px;
  }
}
/*=============================================
プライバシーポリシー
==============================================*/
.policy_list {
  margin: 30px 0 0 30px;
}
.policy_list li {
  list-style: square;
}

.policy_contact {
  margin-top: 20px;
}
.policy_contact li {
  margin-bottom: 5px;
}
.policy_contact li a {
  color: #003A66;
}

/*----- 共通部品 -----*/
.support_title, .reason_title, .curriculum_title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .support_title, .curriculum_title {
    text-align: center;
    font-size: 1.3rem;
  }
}
.hero_image_wrap {
  position: relative;
}

.hero_image_sp img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_title_sp {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%);
  width: 80%;
}

.hero_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .hero_image_wrap {
    position: relative;
  }
  .hero_image_pc img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
  .hero_title_pc {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
  }
  .hero_pc {
    display: block;
  }
  .hero_sp {
    display: none;
  }
}
/*----- ABOUT -----*/
#about {
  padding: 0px;
}

.about_inner {
  margin-bottom: 80px;
}

.about_title {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about_text {
  margin-top: 20px;
}
.about_text li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.about_text li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #003A66;
  border-radius: 50%;
}

.promotion_video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 20px;
}
.promotion_video video {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .about_wrap {
    width: 50%;
    margin: 0 auto;
  }
  .about_text .br_pc {
    display: none;
  }
}
@media only screen and (min-width: 1080px) {
  .about_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .about_inner {
    flex-basis: 30%;
    margin-bottom: 0px;
  }
  .about_text .br_pc {
    display: block;
  }
}
/*----- REASON -----*/
.reason_wrap {
  width: 70%;
  margin: 30px auto;
}

.reason_image {
  margin: 20px 0;
}

.reason_name {
  width: 150px;
  margin: 0 auto 30px;
}

.reason_list {
  width: 90%;
  margin: 0 auto 30px;
}
.reason_list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.reason_list li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #003A66;
  border-radius: 50%;
}

.reason_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .reason_sp {
    display: none;
  }
  .reason_pc {
    display: block;
  }
  .reason_title_pc {
    margin: 30px 0;
  }
  .reason_wrap_pc {
    margin-bottom: 80px;
  }
  .reason_wrap_pc .container {
    position: relative;
  }
  .reason_right {
    width: 400px;
    margin-left: auto;
  }
  .reason_left {
    position: absolute;
    top: -300px;
    left: 0;
    width: 300px;
    margin: 0 0 0 40px;
  }
  .reason_list_pc {
    margin: 0 auto 30px;
  }
  .reason_list_pc li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }
  .reason_list_pc li::before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #003A66;
    border-radius: 50%;
  }
  .reason_name_pc {
    width: 80%;
    margin: 20px auto;
  }
}
@media only screen and (min-width: 1080px) {
  .reason_title_pc {
    width: 80%;
    margin: 50px auto;
  }
  .reason_right {
    width: 550px;
  }
  .reason_left {
    position: absolute;
    top: -300px;
    left: 80px;
    width: 350px;
    margin: 0 0 0 40px;
  }
  .reason_list_pc {
    font-size: 1.2rem;
  }
  .reason_image {
    margin: 50px 0 0 0;
  }
}
/*----- SUPPORT -----*/
.support_wrap {
  margin: 0 auto;
  padding: 50px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.support_inner {
  flex-basis: 45%;
  margin-bottom: 50px;
}

.support_image img {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.support_text {
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .support_title {
    text-align: center;
    font-size: 1.3rem;
  }
  .support_inner {
    flex-basis: 32%;
  }
}
@media only screen and (min-width: 1080px) {
  .support_image img {
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/*----- CONTENT BUISINESS -----*/
.content_buisiness_title {
  width: 250px;
  margin: 0 auto;
}

.content_buisiness_wrap {
  margin: 0 auto;
  padding: 50px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: baseline;
}

.content_buisiness_inner {
  flex-basis: 80%;
  margin-bottom: 50px;
  text-align: center;
}
.content_buisiness_inner:last-child {
  margin-bottom: 10px;
}

.content_buisiness_image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.arrow_right {
  flex-basis: 90%;
  margin: -30px auto;
  text-align: center;
}
.arrow_right img {
  width: 40px;
  margin: 0 auto;
  transform: rotate(90deg);
}

.content_buisiness_text {
  text-align: center;
  margin: 10px 0 80px 0;
  font-weight: 600;
  font-size: 2rem;
}

.cb_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .content_buisiness_title {
    width: 350px;
  }
  .content_buisiness_inner {
    flex-basis: 28%;
  }
  .content_buisiness_image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .cb_sp {
    display: none;
  }
  .cb_pc {
    display: block;
    flex-basis: 100%;
  }
  .cb_pc .content_buisiness_image img {
    width: 100%;
  }
}
@media only screen and (min-width: 1080px) {
  .content_buisiness_image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/*----- CURRICULUM -----*/
.curriculum_wrap {
  padding: 50px 0;
}

.curriculum_inner {
  position: relative;
  margin-bottom: 80px;
}
.curriculum_inner:last-child {
  margin-bottom: 0px;
}

.step_image {
  position: absolute;
  top: -30px;
  left: 0;
}
.step_image img {
  width: 80px;
}

.curriculum_subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.curriculum_image {
  width: 80%;
  margin: 0 auto;
}

.curriculum_text {
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .curriculum_inner {
    width: 60%;
    margin: 0 auto 80px;
  }
  .step_image {
    position: absolute;
    top: -30px;
    left: 0;
  }
  .step_image img {
    width: 100px;
  }
}
@media only screen and (min-width: 1080px) {
  .curriculum_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 80px 0;
  }
  .curriculum_inner {
    flex-basis: 30%;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step_image img {
    width: 80px;
  }
  .curriculum_image {
    margin: auto 0;
  }
}
/*----- PLAN -----*/
/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.tab li {
  width: 50%;
  text-align: center;
}

.tab li a {
  display: block;
  background: #ddd;
  color: #003A66;
  padding: 15px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #003A66;
  color: white;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #DFE9F0;
  border: 1px solid #003A66;
  padding: 30px 15px;
  position: relative;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.recommend {
  position: absolute;
  top: -80px;
  left: -20px;
  width: 50px;
  height: 50px;
}
.recommend img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .recommend {
    position: absolute;
    top: -70px;
    left: -20px;
    width: 80px;
    height: 80px;
  }
  .recommend img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.price_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 30px 0;
}

.plice_title {
  background-color: white;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.plice_month {
  font-weight: 700;
  font-size: 1.2rem;
}

.plice_total span {
  font-size: 1.5rem;
  font-weight: 700;
}

/*ベーシックコース限定*/
.gentei_area {
  background-color: white;
  padding: 20px;
}

.gentei_contents {
  padding: 20px 10px;
}

.gentei_title {
  font-weight: 700;
  font-size: 1.2rem;
}

.gentei_list li .br_pc {
  display: none;
}
.gentei_list li span {
  font-size: 0.8rem;
}

.gentei_text {
  background-color: #DFE9F0;
  padding: 10px;
  margin-top: 10px;
}
.gentei_text .br_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .area {
    padding: 50px 30px;
  }
  .plice_title {
    padding: 5px 80px;
  }
  .plice_total {
    font-size: 1.2rem;
  }
  .plice_total span {
    font-size: 2.5rem;
    margin-right: 5px;
  }
  .plice_month {
    font-size: 1.8rem;
  }
  .gentei_area {
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }
  .gentei_contents {
    padding: 0;
  }
  .gentei_title {
    margin-bottom: 15px;
  }
  .gentei_list {
    padding-right: 20px;
  }
  .gentei_list li {
    font-size: 1.1rem;
  }
  .gentei_list li span {
    font-size: 1rem;
  }
  .gentei_text {
    padding: 20px;
    margin-top: 30px;
    font-size: 1.1rem;
  }
  .gentei_text .br_pc {
    display: block;
  }
  .gentei_image {
    width: 430px;
    height: 340px;
  }
  .gentei_image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*カリキュラム*/
.plan_carriculum_area {
  padding-top: 50px;
}

.plan_carriculum_title {
  background-color: #003A66;
  color: white;
  display: table;
  padding: 5px 20px;
}

.plan_carriculum_wrap {
  background-color: white;
  padding: 20px;
}

.plan_curriculum_image {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .plan_carriculum_title {
    font-size: 1.2rem;
    padding: 10px 30px;
  }
  .plan_carriculum_wrap {
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }
  .plan_carriculum_contents {
    width: 500px;
    height: 360px;
  }
  .plan_carriculum_contents img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .plan_curriculum_image {
    margin-top: 0;
    margin-left: 20px;
    width: 430px;
    height: 330px;
  }
  .plan_curriculum_image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.plan_carriculum_wrap dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #003A66;
  padding: 10px 0;
  margin: 0;
}
.plan_carriculum_wrap dl:last-child {
  border: none;
}
.plan_carriculum_wrap dd {
  margin-right: 5px;
}

@media only screen and (min-width: 768px) {
  .plan_carriculum_service_wrap {
    display: block;
  }
  .plan_carriculum_wrap dl {
    padding: 20px 0;
    font-size: 1.1rem;
  }
  .plan_carriculum_wrap dl br {
    display: none;
  }
  .plan_carriculum_wrap dd {
    margin-right: 100px;
  }
}
.light_plan_carriculum_contents {
  height: auto;
}

.light_contents {
  padding: 10px 0px;
}

.light_text {
  background-color: #DFE9F0;
  padding: 10px;
}
.light_text .br_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .light_plan_area {
    position: relative;
  }
  .light_text {
    padding: 30px 50px;
  }
  .light_plan_carriculum_area {
    padding: 0;
    margin: -90px 0;
  }
  .light_plan_service_area {
    padding-top: 150px;
  }
}
/*----- VOICE -----*/
#voice .section_back_area {
  padding: 0px;
}

.voice_wrap {
  padding: 60px 0;
}

.voice_inner {
  position: relative;
  display: flex;
  align-items: center;
}

.voice_book {
  width: 40%;
  margin: 0 auto;
}

.voice_topic {
  position: absolute;
  width: 80px;
  top: -65px;
  left: -5px;
}

.voice_subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0 20px;
}

.voice_student {
  width: 40%;
}
.voice_student img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.voice_text {
  margin-bottom: 30px;
}

.voice_area_pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .voice_wrap {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .voice_topic {
    position: absolute;
    width: 120px;
    top: -65px;
    left: -25px;
  }
  .voice_button a {
    display: block;
    width: 400px;
    margin: 0 auto;
  }
  .voice_button a:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 1080px) {
  .voice_area_sp {
    display: none;
  }
  .voice_area_pc {
    display: block;
  }
  .voice_wrap {
    max-width: 100%;
    padding: 80px 0;
    position: relative;
  }
  .voice_button_pc {
    position: absolute;
    bottom: 50px;
    right: 100px;
  }
  .voice_button_pc a {
    display: block;
    width: 500px;
  }
  .voice_button_pc a:hover {
    opacity: 0.8;
  }
  .button_left {
    position: absolute;
    bottom: 50px;
    left: 100px;
  }
}
.faq_button a {
  display: block;
  width: 300px;
  border: 2px solid #003A66;
  border-radius: 25px;
  text-align: center;
  color: #003A66;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 0;
  margin: 0 auto;
}
.faq_button a:hover {
  background-color: #003A66;
  color: white;
}

@media only screen and (min-width: 768px) {
  .faq_button a {
    width: 400px;
    padding: 20px 0;
    border-radius: 35px;
  }
}
/*----- CONSULTATION -----*/
.consultation_inner {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.consultation_text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .consultation_wrap {
    display: flex;
  }
  .consultation_inner {
    flex-basis: 32%;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1080px) {
  .consultation_inner {
    flex-basis: 28%;
    margin-bottom: 0px;
  }
}/*# sourceMappingURL=top.css.map */