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

body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  font-style: normal;
  color: #000000;
}

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

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: #5A1F00;
}

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

h2 {
  font-size: 2rem;
  font-family: "游明朝体";
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  color: #5A1F00;
  font-family: "游明朝体";
}

img {
  width: 100%;
}

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

.container {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  section {
    padding: 100px 0 0 0;
  }
  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: rgba(255, 255, 255, 0.8);
}

.header_background {
  background-color: rgba(255, 255, 255, 0.8);
}

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

.top_logo a {
  color: #5A1F00;
}
.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: #5A1F00;
  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: #5A1F00;
  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: white;
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-45deg);
  background-color: white;
}

/* ナビゲーション */
.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: #5A1F00;
  background-size: cover;
  color: white;
  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: 50%;
  transform: translate(-50%, -50%);
}
.nav_sp_wrap li {
  list-style: none;
  margin-bottom: 20px;
  text-align: center;
  font-family: "游明朝体";
}

.nav_sp a {
  display: inline-block;
  padding: 5px 0;
  color: white;
  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: #5A1F00;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.15rem;
    font-family: "游明朝体";
  }
  .main_menu a:hover {
    color: white;
    text-shadow: 1px 1px 0 #5A1F00, -1px -1px 0 #5A1F00, -1px 1px 0 #5A1F00, 1px -1px 0 #5A1F00, 0px 1px 0 #5A1F00, -1px 0 #5A1F00, -1px 0 0 #5A1F00, 1px 0 0 #5A1F00;
  }
}
/*=============================================
共通部品
==============================================*/
.title {
  text-align: center;
  color: #5A1F00;
}

.title_text {
  margin-top: 30px;
}

/*=============================================
ボディー
==============================================*/
/*----- ヒーローイメージ -----*/
.hero_image {
  height: 90vh;
  position: relative;
}
.hero_image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.hero_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(90, 31, 0, 0.5);
}

.hero_title {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero_title h2 {
  font-size: 1.15rem;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .hero_image {
    height: 100vh;
  }
  .hero_title {
    text-align: center;
  }
  .hero_title h1 {
    font-size: 62px;
    font-weight: 800;
  }
  .hero_title h2 {
    font-size: 26px;
    margin-top: 30px;
    font-weight: 500;
    line-height: 2.5rem;
  }
  .hero_title .hero_title_br {
    display: none;
  }
}
/*----- About -----*/
.about_text {
  text-align: center;
  margin-top: 30px;
}

.about_wrap {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.about_inner {
  position: relative;
  width: 30%;
}

.problem_top {
  background-color: #E9E1DD;
  padding: 30px 15px;
}
.problem_top h3 {
  text-align: center;
}

.problem_list {
  margin-top: 20px;
}
.problem_list li {
  position: relative;
  padding-left: 15px;
  margin-top: 10px;
  color: #5A1F00;
}
.problem_list li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #5A1F00;
}

.problem_bottom {
  background-color: #5A1F00;
  padding: 30px 0;
}

.problem_bottom_text {
  text-align: center;
  color: white;
}

.problem_image_pc {
  display: none;
}

.problem_image_sp {
  height: 350px;
}
.problem_image_sp img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media only screen and (min-width: 768px) {
  .problem_area {
    position: relative;
  }
  .problem_bottom, .problem_top {
    padding: 50px 0;
  }
  .problem_top {
    position: relative;
    height: auto;
  }
  .problem_top br {
    display: none;
  }
  .problem_top .problem_top_content {
    margin: 0 0 0 130px;
  }
  .problem_top .problem_top_content h3 {
    width: 80%;
    text-align: left;
  }
  .problem_bottom_text {
    width: 65%;
  }
  .problem_container {
    position: relative;
  }
  .problem_wrap {
    display: flex;
    align-items: stretch;
    height: 600px;
  }
  .problem_inner_left {
    width: 55%;
    height: 100%;
  }
  .problem_inner_right {
    flex-shrink: 0;
  }
  .problem_image_sp {
    display: none;
  }
  .problem_image_pc {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 35%;
  }
  .problem_image_pc img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .problem_list {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1080px) {
  .about_wrap {
    justify-content: center;
    margin-top: 30px;
  }
  .about_inner {
    width: 180px;
    margin: 0 30px;
  }
  .problem_top_content {
    margin: 0 0 0 130px;
  }
  .problem_top_content h3 {
    width: 80%;
    text-align: left;
  }
}
/*----- Curriculum -----*/
.curriculum_description {
  text-align: center;
  margin-top: 20px;
  line-height: 2rem;
}

.curriculum_inner {
  margin-top: 50px;
}

.step {
  text-align: center;
  font-size: 2rem;
  font-family: "游明朝体";
  font-weight: 800;
  margin-bottom: 20px;
}

.curriculum_inner_contents {
  text-align: center;
  margin: 10px 0;
}

.curriculum_inner_title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .curriculum_wrap {
    display: flex;
    margin-top: 50px;
  }
  .curriculum_inner {
    width: 30%;
    margin: 0 auto;
  }
}
.support_title {
  text-align: center;
}
.support_title h3 {
  font-weight: 800;
  font-size: 1.5rem;
}

.support_title_text {
  margin-top: 30px;
}

.support_wrap01, .support_wrap02 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.support_inner {
  position: relative;
  background-color: #E9E1DD;
  width: 140px;
  height: 100px;
  margin: 15px auto 0;
  padding: 10px 5px;
  text-align: center;
}
.support_inner p {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.support_inner_brown {
  background-color: #5A1F00;
}
.support_inner_brown .support_inner_text {
  color: white;
}

@media only screen and (min-width: 768px) {
  .support_wrap {
    flex-direction: row-reverse;
  }
  .support_wrap01 {
    margin-top: 50px;
  }
  .support_wrap02 {
    margin-top: 20px;
  }
  .support_inner {
    width: 150px;
    height: 110px;
    margin: 10px auto 0;
  }
  .support_wrap01 .support_inner:nth-child(even) {
    background-color: #5A1F00;
  }
  .support_wrap01 .support_inner:nth-child(even) .support_inner_text {
    color: white;
  }
  .support_wrap01 .support_inner:nth-child(odd) {
    background-color: #E9E1DD;
  }
  .support_wrap01 .support_inner:nth-child(odd) .support_inner_text {
    color: #5A1F00;
  }
  .support_wrap02 .support_inner:nth-child(even) {
    background-color: #E9E1DD;
  }
  .support_wrap02 .support_inner:nth-child(even) .support_inner_text {
    color: #5A1F00;
  }
  .support_wrap02 .support_inner:nth-child(odd) {
    background-color: #5A1F00;
  }
  .support_wrap02 .support_inner:nth-child(odd) .support_inner_text {
    color: white;
  }
}
@media only screen and (min-width: 1080px) {
  .support_inner {
    width: 200px;
    height: 150px;
    margin: 20px auto 0;
  }
  .support_inner p {
    font-size: 18px;
  }
}
/*----- Features -----*/
#features {
  padding: 70px 0;
}
#features .title {
  margin-bottom: 30px;
}

.features01 {
  background: url(../images/features_01.png);
  background-size: cover;
  background-position: center;
}

.features02 {
  background: url(../images/features_02.png);
  background-size: cover;
  background-position: center;
}

.features03 {
  background: url(../images/features_03.png);
  background-size: cover;
  background-position: right;
}

.features04 {
  background: url(../images/features_04.png);
  background-size: cover;
  background-position: right;
}

.features_content {
  background-color: rgba(90, 31, 0, 0.5);
}
.features_content h3 {
  color: white;
  margin-bottom: 30px;
  text-align: center;
}
.features_content p {
  color: white;
  margin-top: 20px;
}

.features_content_inner {
  padding: 35px 50px 50px;
  position: relative;
  top: auto;
  transform: translateY(0%);
}

@media only screen and (min-width: 768px) {
  #features {
    padding: 100px 0;
  }
  .features03 {
    background-position: center;
  }
  .features04 {
    background-position: center;
  }
  .features_item {
    position: relative;
    height: 580px;
  }
  .features_content {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(90, 31, 0, 0.7);
  }
  .features_item:nth-child(odd) .features_content {
    right: auto;
    left: 0px;
  }
  .features_content_inner {
    width: 100%;
    padding: 70px 30px 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
  }
  .features_content_inner h3 {
    font-size: 28px;
  }
  .features_content_text {
    margin-top: 50px;
  }
  .features_content_text p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 1080px) {
  .features_item {
    height: 580px;
  }
  .features_content_inner {
    padding: 70px 50px 70px;
  }
}
/*----- FLOW -----*/
#flow {
  background-color: rgba(90, 31, 0, 0.1);
  padding: 70px 0;
}

.flow_wrap {
  margin-top: 30px;
}

.flow_inner {
  background-color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.flow_inner p .pc {
  display: none;
}

.flow_inner_title {
  font-family: "游明朝体";
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #5A1F00;
}

.allow_down {
  width: 0;
  height: 0;
  border-top: solid 20px #5A1F00;
  border-right: solid 20px transparent;
  border-bottom: solid 20px transparent;
  border-left: solid 20px transparent;
  margin: 25px auto 0px;
}

@media only screen and (min-width: 768px) {
  .flow_inner {
    width: 75%;
    margin: 0 auto;
    padding: 40px;
  }
  .flow_inner P .pc {
    display: block;
  }
  .flow_inner_title {
    font-size: 2rem;
  }
}
/*----- Course -----*/
.course_wrap {
  margin-top: 30px;
}

.course_inner {
  background-color: #E9E1DD;
  text-align: center;
  padding: 50px 0;
  width: 90%;
  margin: 0 auto 30px;
}
.course_inner p {
  font-weight: 800;
}

.course_title {
  font-family: "游明朝体";
  font-size: 1.8rem;
  font-weight: 800;
}

.course_period {
  font-size: 1.3rem;
  margin: 20px 0;
}

.course_price {
  font-size: 1.5rem;
}
.course_price span {
  font-size: 1rem;
}

@media only screen and (min-width: 768px) {
  .course_wrap {
    display: flex;
    margin-top: 30px;
  }
  .course_inner {
    width: 300px;
  }
}
@media only screen and (min-width: 1080px) {
  .course_wrap {
    justify-content: center;
  }
  .course_inner {
    width: 400px;
    margin: 0 30px;
  }
}
/*----- FAQ -----*/
.faq_wrap {
  margin: 30px 0;
}

.faq_inner {
  padding: 10px;
}

.question {
  position: relative;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  background-color: #5A1F00;
  /*　closeというクラスがついたら形状変化　*/
}
.question::before, .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: white;
  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: #5A1F00;
  display: none;
  font-size: 1rem;
}

.answer_text {
  color: #000000;
}

.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: #5A1F00;
}
.company_wrap dt {
  font-family: "游明朝体";
  margin-bottom: 10px;
  font-weight: 800;
}
.company_wrap dd {
  color: #000000;
  font-weight: 500;
  color: #5A1F00;
}
.company_wrap dd p {
  font-weight: 500;
  color: #5A1F00;
}
.company_wrap .font_size {
  font-weight: 500;
  font-size: 1.2rem;
}
.company_wrap a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.company_wrap a {
  color: #5A1F00;
}

@media only screen and (min-width: 768px) {
  #company {
    padding: 100px 0;
  }
  .company_table {
    width: 800px;
    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;
  }
}
/*=============================================
フッター
==============================================*/
footer {
  background-color: #5A1F00;
  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: #5A1F00;
}

/*=============================================
特商法
==============================================*/
.commercial_title {
  font-family: "游明朝体";
  font-size: 2rem;
  font-weight: 700;
  color: #5A1F00;
  margin: 30px 0;
}

.commercial_table dl {
  margin-bottom: 30px;
}
.commercial_table dt {
  margin-bottom: 10px;
  font-weight: 700;
}/*# sourceMappingURL=nca.css.map */