@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media print, screen and (min-width: 992px) {
  .no_pc {
    display: none !important;
  }
}

@media print, screen and (max-width: 992px) {
  .no_sp {
    display: none !important;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

.container {
  padding: 0 20px;
}

.over_hidden {
  overflow: hidden;
}

.c_table {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .c_table > tbody > tr {
    border-top: 1px solid #C1C1C1;
  }
  .c_table > tbody > tr:last-child {
    border-bottom: 1px solid #C1C1C1;
  }
}
.c_table > tbody > tr > th {
  width: 200px;
  padding: 25px 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  background-color: #F5F5F5;
}
@media print, screen and (max-width: 992px) {
  .c_table > tbody > tr > th {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 15px;
    padding: 20px;
  }
}
.c_table > tbody > tr > td {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  padding: 25px;
}
@media print, screen and (max-width: 992px) {
  .c_table > tbody > tr > td {
    display: block;
    font-size: 15px;
    padding: 20px;
  }
}

.c_course_title {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #333333;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 992px) {
  .c_course_title {
    font-size: 20px;
  }
}
.c_course_title::before {
  content: "";
  background-color: #0E6328;
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
  overflow: hidden;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0) !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  background-color: #FFFFFF;
  padding: 25px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media print, screen and (max-width: 992px) {
  header {
    padding: 12px 0;
  }
}
@media print, screen and (min-width: 992px) {
  header > .container {
    max-width: 1000px !important;
  }
}
@media print, screen and (max-width: 992px) {
  header > .container {
    max-width: 100% !important;
  }
}
header .h_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
header .h_flex > .h_logo > a > img {
  width: 68px;
}
@media print, screen and (min-width: 992px) {
  header .h_flex > .h_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 36px;
  }
}
@media print, screen and (max-width: 992px) {
  header .h_flex > .h_list {
    display: none;
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #FFFFFF;
    text-align: left;
    padding: 20px 20px 30px;
  }
}
header .h_flex > .h_list > .h_sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 43px;
}
@media print, screen and (max-width: 992px) {
  header .h_flex > .h_list > .h_sub {
    row-gap: 10px;
    text-align: left;
    margin-bottom: 25px;
  }
}
header .h_flex > .h_list > .h_sub > li {
  position: relative;
  margin-bottom: 0;
}
@media print, screen and (min-width: 992px) {
  header .h_flex > .h_list > .h_sub > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-45%);
    background-color: #E9E9E9;
    width: 1px;
    height: 30px;
  }
}
@media print, screen and (max-width: 992px) {
  header .h_flex > .h_list > .h_sub > li {
    width: 100%;
  }
}
header .h_flex > .h_list > .h_sub > li > a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #333333;
}
header .h_flex > .h_list > .h_contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .h_flex > .h_list > .h_contact > li {
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  header .h_flex > .h_list > .h_contact > li {
    width: 100%;
  }
}
header .h_flex > .h_list > .h_contact > li > a {
  display: inline-block;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
  background: #0E6328;
  border-radius: 40px;
  padding: 12px 40px;
}
@media print, screen and (max-width: 992px) {
  header .h_flex > .h_list > .h_contact > li > a {
    display: block;
    width: 300px;
    margin: auto;
  }
}
header .h_flex > .h_list > .h_contact > li > a:hover {
  opacity: 1;
  background-color: rgba(14, 99, 40, 0.7);
}
header .h_flex .h_menu {
  position: relative;
}
header .h_flex .h_menu > a {
  display: block;
  position: relative;
  text-align: center;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  z-index: 9900;
  opacity: 1;
}
header .h_flex .h_menu > a > span {
  display: block;
  position: relative;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background-color: #0E6328;
  border-radius: 50px;
}
header .h_flex .h_menu > a > span::before {
  content: "";
  display: block;
  position: relative;
  transition: 0.3s;
  top: -7px;
  left: 0;
  transform: translate(0%, -50%);
  width: 30px;
  height: 2px;
  background-color: #0E6328;
  border-radius: 50px;
}
header .h_flex .h_menu > a > span::after {
  content: "";
  display: block;
  position: relative;
  transition: 0.3s;
  top: 7px;
  left: 0;
  transform: translate(0%, -50%);
  width: 30px;
  height: 2px;
  background-color: #0E6328;
  border-radius: 50px;
}
header .h_flex .h_menu > a.is_open > span {
  width: 0;
}
header .h_flex .h_menu > a.is_open > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 0px;
  background-color: #0E6328;
}
header .h_flex .h_menu > a.is_open > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: -2px;
  background-color: #0E6328;
}

main {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
main .fv_section {
  position: relative;
}
main .fv_section > h1 {
  margin: 0;
}
main .top_section {
  position: relative;
  padding: 4rem 0;
}
@media print, screen and (max-width: 992px) {
  main .top_section {
    padding: 3rem 0;
  }
}
main .top_section > .container {
  max-width: 100% !important;
}
@media print, screen and (min-width: 992px) {
  main .top_section > .container {
    max-width: 1000px !important;
  }
}
main .top_section > .container > .about_box {
  margin-bottom: 5rem;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .about_box {
    margin-bottom: 3rem;
  }
}
main .top_section > .container > .about_box > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333333;
  border-left: 4px solid #0E6328;
  margin-bottom: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .about_box > h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
main .top_section > .container > .about_box > h2:first-child {
  margin-top: 0;
}
main .top_section > .container > .about_box > .about_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 30px;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .about_box > .about_flex {
    row-gap: 30px;
  }
}
main .top_section > .container > .about_box > .about_flex > img {
  width: 347px;
  flex-shrink: 0;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .about_box > .about_flex > img {
    width: 100%;
  }
}
main .top_section > .container > .about_box > .about_flex > p {
  flex: 1;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .about_box > .about_flex > p {
    flex: auto;
    font-size: 15px;
  }
}
main .top_section > .container > .want_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .want_flex {
    row-gap: 30px;
  }
}
main .top_section > .container > .want_flex > div {
  position: relative;
  width: 48%;
  padding: 30px 30px;
  background: #F8FAF9;
  border: 1px solid #E9E9E9;
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .want_flex > div {
    width: 100%;
    padding: 20px 20px;
  }
}
main .top_section > .container > .want_flex > div::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 190px;
  height: 229px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .want_flex > div::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 135px;
    height: 161px;
  }
}
main .top_section > .container > .want_flex > div:first-child::before {
  background-image: url(../images/top_want_01.png);
}
main .top_section > .container > .want_flex > div:last-child::before {
  background-image: url(../images/top_want_02.png);
}
main .top_section > .container > .want_flex > div > * {
  position: relative;
  z-index: 2;
}
main .top_section > .container > .want_flex > div > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .want_flex > div > h3 {
    font-size: 20px;
  }
}
main .top_section > .container > .want_flex > div > h3 > span {
  color: #0E6328;
}
main .top_section > .container > .want_flex > div > p {
  width: 236px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .top_section > .container > .want_flex > div > p {
    width: 207px;
    font-size: 15px;
  }
}
main .top_section > .container > .want_flex > div > a {
  display: inline-block;
  text-align: center;
  width: 240px;
  padding: 10px 0px;
  background: #0E6328;
  border-radius: 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
}
main .c_bread_section {
  position: relative;
  padding: 15px 0;
}
main .c_bread_section > .container {
  max-width: 100% !important;
}
@media print, screen and (min-width: 992px) {
  main .c_bread_section > .container {
    max-width: 1000px !important;
  }
}
main .c_bread_section > .container > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_bread_section > .container > p {
    row-gap: 5px;
  }
}
main .c_bread_section > .container > p > a {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #333333;
}
main .c_bread_section > .container > p > a::after {
  content: "\f054";
  font-size: 6px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 55%;
  right: -13px;
  transform: translateY(-50%);
  color: #9C9C9C;
}
main .c_bread_section > .container > p > span {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #0E6328;
}
main .c_bread_section > .container > p > span:not(:last-of-type)::after {
  content: "\f054";
  font-size: 0.7vw;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  top: 15%;
  right: -13px;
}
main .c_title_section {
  position: relative;
  overflow: hidden;
  background-color: #F7F7F7;
}
@media print, screen and (max-width: 992px) {
  main .c_title_section {
    padding: 50px 0;
  }
}
@media print, screen and (max-width: 992px) {
  main .c_title_section::before {
    content: "";
    background-image: url(../images/ico_title_sp.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
  }
}
main .c_title_section > .container {
  max-width: 100% !important;
}
@media print, screen and (min-width: 992px) {
  main .c_title_section > .container {
    max-width: 1000px !important;
  }
}
main .c_title_section > .container > h1 {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #0E6328;
  margin-bottom: 0;
  padding: 50px 12rem 50px 0;
}
@media print, screen and (max-width: 992px) {
  main .c_title_section > .container > h1 {
    font-size: 24px;
    padding: 0 3rem 0 0;
  }
}
@media print, screen and (min-width: 992px) {
  main .c_title_section > .container > h1::before {
    content: "";
    background-image: url(../images/ico_title.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 202px;
    height: 100%;
  }
}
main .c_about01_section {
  position: relative;
  padding: 3rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_about01_section {
    padding: 2rem 0;
  }
}
main .c_about01_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_about01_section > .container {
    max-width: 1000px !important;
  }
}
main .c_about01_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  color: #0E6328;
  margin-bottom: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about01_section > .container > h2 {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}
main .c_about01_section > .container > h2:first-child {
  margin-top: 0;
}
main .c_about01_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_about01_section > .container > p {
    font-size: 15px;
  }
}
main .c_about01_section > .container > div {
  max-width: 912px;
  background: #F8FAF9;
  border-radius: 10px;
  margin: 3rem auto 0;
  padding: 25px 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_about01_section > .container > div {
    max-width: 100%;
    margin: 1.5rem auto 0;
    padding: 20px 25px;
    font-size: 15px;
  }
}
main .c_about01_section > .container > div > span {
  font-weight: bold;
  color: #0E6328;
}
main .c_about02_section {
  position: relative;
  padding: 0 0 3rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section {
    padding: 2rem 0;
  }
}
main .c_about02_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_about02_section > .container {
    max-width: 1000px !important;
  }
}
main .c_about02_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333333;
  border-left: 4px solid #0E6328;
  margin-bottom: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
main .c_about02_section > .container > h2:first-child {
  margin-top: 0;
}
main .c_about02_section > .container > .c_about02_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex {
    row-gap: 30px;
  }
}
main .c_about02_section > .container > .c_about02_flex:not(:last-child) {
  margin-bottom: 2rem;
}
main .c_about02_section > .container > .c_about02_flex > img {
  width: 263px;
  flex-shrink: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex > img {
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex > .c_txt {
    flex: 1;
  }
}
main .c_about02_section > .container > .c_about02_flex > .c_txt > span {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex > .c_txt > span {
    font-size: 12px;
  }
}
main .c_about02_section > .container > .c_about02_flex > .c_txt > h3 {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #333333;
  padding-bottom: 10px;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex > .c_txt > h3 {
    font-size: 18px;
    margin-top: 5px;
  }
}
main .c_about02_section > .container > .c_about02_flex > .c_txt > h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #0E6328 0 7%, #E9E9E9 7%);
  height: 3px;
  width: 100%;
}
main .c_about02_section > .container > .c_about02_flex > .c_txt > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_about02_section > .container > .c_about02_flex > .c_txt > p {
    font-size: 15px;
  }
}
main .c_about03_section {
  position: relative;
  background-image: url(../images/bg_about.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3.5rem 0 4rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section {
    padding: 3rem 0;
  }
}
main .c_about03_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_about03_section > .container {
    max-width: 1000px !important;
  }
}
main .c_about03_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333333;
  border-left: 4px solid #0E6328;
  margin-bottom: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
main .c_about03_section > .container > h2:first-child {
  margin-top: 0;
}
main .c_about03_section > .container > .c_about03_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > .c_about03_flex {
    row-gap: 1.5rem;
  }
}
main .c_about03_section > .container > .c_about03_flex > div {
  width: 48.5%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 25px 25px;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > .c_about03_flex > div {
    width: 100%;
    padding: 25px 20px;
  }
}
main .c_about03_section > .container > .c_about03_flex > div > h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  text-align: center;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > .c_about03_flex > div > h3 {
    row-gap: 15px;
  }
}
main .c_about03_section > .container > .c_about03_flex > div > h3 > img {
  flex-shrink: 0;
}
main .c_about03_section > .container > .c_about03_flex > div > h3 > img.ico_01 {
  width: 56px;
}
main .c_about03_section > .container > .c_about03_flex > div > h3 > img.ico_02 {
  width: 29.7px;
}
main .c_about03_section > .container > .c_about03_flex > div > h3 > span {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > .c_about03_flex > div > h3 > span {
    width: 100%;
    font-size: 16px;
  }
}
main .c_about03_section > .container > .c_about03_flex > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_about03_section > .container > .c_about03_flex > div > p {
    font-size: 15px;
  }
}
main .c_about04_section {
  position: relative;
  padding: 6rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section {
    padding: 3rem 0;
  }
}
main .c_about04_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_about04_section > .container {
    max-width: 1000px !important;
  }
}
main .c_about04_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333333;
  border-left: 4px solid #0E6328;
  margin-bottom: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section > .container > h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
main .c_about04_section > .container > h2:first-child {
  margin-top: 0;
}
main .c_about04_section > .container > .c_about_table {
  overflow: scroll;
}
main .c_about04_section > .container > .c_about_table table {
  width: 100%;
  text-align: center;
  border-collapse: separate;
  border-spacing: 10px 0;
  white-space: unset;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section > .container > .c_about_table table {
    width: 418px;
    border-spacing: 5px 0;
  }
}
main .c_about04_section > .container > .c_about_table table > thead > tr > td {
  padding: 20px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  background-color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section > .container > .c_about_table table > thead > tr > td {
    font-size: 13px;
  }
}
main .c_about04_section > .container > .c_about_table table > thead > tr > td:last-child {
  background-color: #646464;
}
main .c_about04_section > .container > .c_about_table table > tbody > tr > th {
  width: 200px;
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  background-color: #F5F5F5;
  border-bottom: 1px dashed #9C9C9C;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section > .container > .c_about_table table > tbody > tr > th {
    width: 90px;
    padding: 10px 5px;
    font-size: 12px;
  }
}
main .c_about04_section > .container > .c_about_table table > tbody > tr > td {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  border-bottom: 1px dashed #747474;
  padding: 20px;
}
main .c_about04_section > .container > .c_about_table table > tbody > tr > td:first-of-type {
  font-weight: 700;
  color: #0E6328;
  background-color: rgba(14, 99, 40, 0.1);
  border-bottom: 1px dashed #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_about04_section > .container > .c_about_table table > tbody > tr > td {
    font-size: 13px;
    padding: 10px;
  }
}
main .c_about04_section > .container > .c_about_table table > tbody > tr:last-of-type > th, main .c_about04_section > .container > .c_about_table table > tbody > tr:last-of-type td {
  border: none;
}
main .c_course01_section {
  position: relative;
  padding: 4rem 0;
  background: #F8FAF9;
}
@media print, screen and (max-width: 992px) {
  main .c_course01_section {
    padding: 2rem 0 14rem;
  }
}
main .c_course01_section::before {
  content: "";
  background-image: url(../images/course_01.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media print, screen and (max-width: 992px) {
  main .c_course01_section::before {
    background-image: url(../images/course_01_sp.png);
    background-position: center top;
    width: 100%;
    height: 248px;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
}
main .c_course01_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course01_section > .container {
    max-width: 1000px !important;
  }
}
main .c_course01_section > .container > .c_course01_box > p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #000000;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course01_section > .container > .c_course01_box > p {
    font-size: 18px;
  }
}
main .c_course01_section > .container > .c_course01_box > h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 160%;
  color: #0E6328;
  margin: 1.5rem 0 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course01_section > .container > .c_course01_box > h1 {
    font-size: 28px;
  }
}
main .c_course01_section > .container > .c_course01_box > a {
  display: inline-block;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  width: 240px;
  padding: 10px 0;
  background: #0E6328;
  border-radius: 40px;
}
@media print, screen and (max-width: 992px) {
  main .c_course01_section > .container > .c_course01_box > a {
    font-size: 15px;
  }
}
main .c_course01_section > .container > .c_course01_box > a.discount {
  background-color: #FF6C0F;
}
main .c_course02_section {
  position: relative;
  text-align: center;
  padding: 3rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section {
    padding: 2rem 0 4rem;
  }
}
main .c_course02_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course02_section > .container {
    max-width: 1020px !important;
  }
}
main .c_course02_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 180%;
  color: #0E6328;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > h2 {
    font-size: 24px;
  }
}
main .c_course02_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > p {
    text-align: left;
    font-size: 15px;
  }
}
main .c_course02_section > .container > p > span {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FDED84 0);
}
main .c_course02_section > .container > h3 {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #0E6328;
  margin: 3rem 0 0;
}
main .c_course02_section > .container > h3::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #0E6328;
  position: absolute;
  top: 50%;
  left: -6%;
  transform: translateY(-50%) rotate(65.56deg);
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > h3::before {
    left: -10%;
  }
}
main .c_course02_section > .container > h3::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #0E6328;
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%) rotate(-65.56deg);
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > h3::after {
    right: -10%;
  }
}
main .c_course02_section > .container > h3 > span {
  background-image: radial-gradient(circle at center, #0E6328 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.4em; /* 縦方向の位置調整 */
}
main .c_course02_section > .container > .c_course02_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > .c_course02_flex {
    justify-content: center;
    row-gap: 1.5rem;
    margin-top: 1rem;
  }
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub {
  position: relative;
  width: 44%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > .c_course02_flex > .c_course02_sub {
    width: 100%;
    padding: 0 15px;
    column-gap: 10px;
  }
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub::before {
  content: "";
  background-color: #F8FAF9;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > * {
  position: relative;
  z-index: 2;
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > img {
  width: 127px;
  flex-shrink: 0;
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt {
  flex: 1;
  text-align: left;
  transform: translateY(5px);
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt > h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt > h4 {
    font-size: 16px;
  }
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt > ul > li {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_course02_section > .container > .c_course02_flex > .c_course02_sub > .c_course02_txt > ul > li {
    font-size: 12px;
  }
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub:last-of-type > .c_course02_txt > h4 {
  color: #333333;
}
main .c_course02_section > .container > .c_course02_flex > .c_course02_sub:last-of-type > .c_course02_txt > ul > li {
  color: #333333;
}
main .c_course02_section > .container > .c_course02_flex > p {
  position: relative;
  width: 50px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  margin-bottom: 0;
  transform: translateY(10px);
}
main .c_course02_section > .container > .c_course02_flex > p::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333333;
  border-radius: 50%;
  z-index: -1;
}
main .c_course03_section {
  position: relative;
  text-align: center;
  padding: 3rem 0;
  background: rgba(14, 99, 40, 0.05);
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section {
    padding: 2rem 0 3rem;
  }
}
main .c_course03_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course03_section > .container {
    max-width: 1020px !important;
  }
}
main .c_course03_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 180%;
  color: #0E6328;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > h2 {
    font-size: 24px;
  }
}
main .c_course03_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > p {
    text-align: left;
    font-size: 15px;
  }
}
main .c_course03_section > .container > p > span {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FDED84 0);
}
main .c_course03_section > .container > span {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #0E6328;
  margin: 3rem 0 1rem;
}
main .c_course03_section > .container > .c_course03_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > .c_course03_flex {
    row-gap: 1.5rem;
  }
}
main .c_course03_section > .container > .c_course03_flex > div {
  width: 31%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(14, 99, 40, 0.1);
  border-radius: 8px;
  padding: 15px 15px;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > .c_course03_flex > div {
    width: 100%;
  }
}
main .c_course03_section > .container > .c_course03_flex > div > p {
  position: relative;
  width: 50px;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  color: #0E6328;
  padding-bottom: 10px;
  margin-bottom: 0;
}
main .c_course03_section > .container > .c_course03_flex > div > p::before {
  content: "";
  background-color: rgba(14, 99, 40, 0.4);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
}
main .c_course03_section > .container > .c_course03_flex > div > p > span {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: rgba(14, 99, 40, 0.4);
  margin-bottom: 7px;
}
main .c_course03_section > .container > .c_course03_flex > div > h4 {
  flex: 1;
  text-align: left;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: #0E6328;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > .c_course03_flex > div > h4 {
    font-size: 16px;
  }
}
main .c_course03_section > .container > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  color: #0E6328;
  margin: 2.5rem 0 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course03_section > .container > h3 {
    text-align: left;
    font-size: 20px;
  }
}
main .c_course04_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background-color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section {
    padding: 2rem 0;
  }
}
main .c_course04_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course04_section > .container {
    max-width: 1000px !important;
  }
}
main .c_course04_section > .container > h2 {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #FFFFFF;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section > .container > h2 {
    font-size: 20px;
    line-height: 180%;
  }
}
main .c_course04_section > .container > h2::before {
  content: "";
  background-color: #FFFFFF;
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
main .c_course04_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section > .container > p {
    text-align: left;
    font-size: 15px;
  }
}
main .c_course04_section > .container > ul {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section > .container > ul {
    row-gap: 1rem;
    margin: 2rem 0 0;
  }
}
main .c_course04_section > .container > ul > li {
  width: 19%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 15px 5px;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section > .container > ul > li {
    width: 100%;
  }
}
main .c_course04_section > .container > ul > li > img {
  width: 56px;
}
main .c_course04_section > .container > ul > li > p {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  color: #0E6328;
  margin: 10px 0 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course04_section > .container > ul > li > p {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  main .c_course04_section > .container > ul > li:nth-child(3) > p {
    margin-top: 20px;
  }
}
main .c_course05_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background: #F8FAF9;
}
@media print, screen and (max-width: 992px) {
  main .c_course05_section {
    padding: 2rem 0;
  }
}
main .c_course05_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course05_section > .container {
    max-width: 1000px !important;
  }
}
main .c_course05_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course05_section > .container > p {
    text-align: left;
    font-size: 15px;
  }
}
main .c_course05_section > .container > p > span {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FDED84 0);
}
main .c_course05_section > .container > div {
  max-width: 722px;
  margin: 2rem auto 4rem;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px 10px 30px;
}
@media print, screen and (max-width: 992px) {
  main .c_course05_section > .container > div {
    padding: 20px 10px;
    margin: 2rem auto 3rem;
  }
}
main .c_course05_section > .container > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
main .c_course05_section > .container > div > div > span {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
  background-color: #0E6328;
  width: 72px;
  padding: 8px 0;
}
main .c_course05_section > .container > div > div > p {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #0E6328;
  margin-bottom: 0;
}
main .c_course05_section > .container > div > div > p > span {
  font-size: 16px;
}
main .c_course05_section > .container > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #333333;
  margin: 1rem 0 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course05_section > .container > div > p {
    text-align: left;
    font-size: 12px;
    line-height: 140%;
  }
}
main .c_course06_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background-image: url(../images/bg_course06.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section {
    padding: 2rem 0;
  }
}
main .c_course06_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course06_section > .container {
    max-width: 800px !important;
  }
}
main .c_course06_section > .container > div {
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid #C1C1C1;
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div {
    padding: 20px 15px;
  }
}
main .c_course06_section > .container > div:not(:last-child) {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 992px) {
  main .c_course06_section > .container > div > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
main .c_course06_section > .container > div > div > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div > div > h3 {
    font-size: 18px;
  }
}
main .c_course06_section > .container > div > table {
  width: 100%;
  margin-top: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div > table {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  main .c_course06_section > .container > div > table > tbody > tr:first-child {
    border-bottom: 1px solid #E9E9E9;
  }
}
main .c_course06_section > .container > div > table > tbody > tr > th {
  width: 188px;
  padding: 20px 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  background-color: #F5F5F5;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div > table > tbody > tr > th {
    width: 100%;
    display: block;
  }
}
main .c_course06_section > .container > div > table > tbody > tr > td {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #333333;
  padding: 20px;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div > table > tbody > tr > td {
    display: block;
    font-size: 15px;
    padding: 20px;
  }
}
main .c_course06_section > .container > div a {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  padding: 10px 0px;
  width: 240px;
  background: #0E6328;
  border-radius: 40px;
}
main .c_course06_section > .container > div a.point_none {
  pointer-events: none;
  background: #D9D9D9;
}
@media print, screen and (max-width: 992px) {
  main .c_course06_section > .container > div a {
    font-size: 15px;
  }
}
main .c_course07_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background-color: #FFFFFF;
}
@media print, screen and (max-width: 992px) {
  main .c_course07_section {
    padding: 2rem 0;
  }
}
main .c_course07_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course07_section > .container {
    max-width: 800px !important;
  }
}
main .c_course07_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #333333;
}
main .c_course07_section > .container > table {
  width: 100%;
  margin-top: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course07_section > .container > table {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  main .c_course07_section > .container > table > tbody > tr {
    border-top: 1px solid #C1C1C1;
  }
  main .c_course07_section > .container > table > tbody > tr:last-child {
    border-bottom: 1px solid #C1C1C1;
  }
}
main .c_course07_section > .container > table > tbody > tr > th {
  width: 188px;
  padding: 20px 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #333333;
  background-color: #F3F7F4;
}
@media print, screen and (max-width: 992px) {
  main .c_course07_section > .container > table > tbody > tr > th {
    width: 100%;
    display: block;
  }
}
main .c_course07_section > .container > table > tbody > tr > td {
  text-align: left;
  padding: 20px;
}
@media print, screen and (max-width: 992px) {
  main .c_course07_section > .container > table > tbody > tr > td {
    display: block;
  }
}
main .c_course07_section > .container > table > tbody > tr > td > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #0E6328;
}
main .c_course07_section > .container > table > tbody > tr > td > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
main .c_course07_section > .container > table > tbody > tr > td > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .c_course07_section > .container > table > tbody > tr > td > ul > li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
}
main .c_course08_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background: rgba(14, 99, 40, 0.05);
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section {
    padding: 2rem 0;
  }
}
main .c_course08_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course08_section > .container {
    max-width: 900px !important;
  }
}
main .c_course08_section > .container > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div {
    text-align: left;
    justify-content: center;
    row-gap: 2rem;
  }
}
main .c_course08_section > .container > div::before {
  content: "";
  background-color: #D9D9D9;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div::before {
    width: 4px;
    height: 100%;
  }
}
main .c_course08_section > .container > div > div {
  width: 22%;
  padding: 24px 10px;
  background: #FFFFFF;
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div > div {
    width: 300px;
    padding: 20px 15px;
  }
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div > div > h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 15px;
  }
}
main .c_course08_section > .container > div > div > h3 > p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: #0E6328;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div > div > h3 > p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 5px;
    line-height: normal;
  }
}
main .c_course08_section > .container > div > div > h3 > p > span {
  display: block;
  font-size: 12px;
}
main .c_course08_section > .container > div > div > h3 > span {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > div > div > h3 > span {
    line-height: normal;
  }
}
main .c_course08_section > .container > div > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
}
main .c_course08_section > .container > div > div:last-child > h3 > p {
  font-size: 18px;
}
@media print, screen and (min-width: 992px) {
  main .c_course08_section > .container > div > div:last-child > h3 > p {
    height: 39.59px;
    line-height: 39.59px;
  }
}
main .c_course08_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_course08_section > .container > p {
    text-align: left;
    font-size: 15px;
    line-height: 180%;
  }
}
main .c_course09_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background-color: #FFFFFF;
}
@media print, screen and (max-width: 992px) {
  main .c_course09_section {
    padding: 3rem 0;
  }
}
main .c_course09_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course09_section > .container {
    max-width: 800px !important;
  }
}
main .c_course09_section > .container > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .c_course09_section > .container > ul > li {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  padding: 20px 0;
  border-top: 1px solid #D9D9D9;
}
main .c_course09_section > .container > ul > li:last-child {
  border-bottom: 1px solid #D9D9D9;
}
@media print, screen and (max-width: 992px) {
  main .c_course09_section > .container > ul > li {
    row-gap: 1rem;
  }
}
main .c_course09_section > .container > ul > li > span {
  display: inline-block;
  width: 120px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #333333;
  flex-shrink: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course09_section > .container > ul > li > span {
    width: auto;
    text-align: left;
  }
}
main .c_course09_section > .container > ul > li > p {
  flex: 1;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course09_section > .container > ul > li > p {
    width: 100%;
    flex: auto;
  }
}
main .c_course10_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background-image: url(../images/bg_course10.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media print, screen and (max-width: 992px) {
  main .c_course10_section {
    padding: 3rem 0;
    background-image: url(../images/bg_course10_sp.png);
  }
}
main .c_course10_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course10_section > .container {
    max-width: 1000px !important;
  }
}
main .c_course10_section > .container > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  color: #0E6328;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course10_section > .container > h3 {
    font-size: 18px;
  }
}
main .c_course10_section > .container > p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  color: #333333;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course10_section > .container > p {
    text-align: left;
    font-size: 15px;
  }
}
main .c_course_faq_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background: #F8FAF9;
}
@media print, screen and (max-width: 992px) {
  main .c_course_faq_section {
    padding: 3rem 0;
  }
}
main .c_course_faq_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course_faq_section > .container {
    max-width: 960px !important;
  }
}
main .c_course_faq_section > .container > div {
  text-align: left;
  padding: 28px 24px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  main .c_course_faq_section > .container > div {
    padding: 20px 15px;
  }
}
main .c_course_faq_section > .container > div:not(:last-child) {
  margin-bottom: 1.5rem;
}
main .c_course_faq_section > .container > div > h3 {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  margin-bottom: 1rem;
  padding-left: 2.2em;
}
@media print, screen and (max-width: 992px) {
  main .c_course_faq_section > .container > div > h3 {
    font-size: 15px;
  }
}
main .c_course_faq_section > .container > div > h3::before {
  content: "Q";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #0E6328;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course_faq_section > .container > div > h3::before {
    top: -5px;
  }
}
main .c_course_faq_section > .container > div > p {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin-bottom: 0;
  padding-left: 2.2em;
}
@media print, screen and (max-width: 992px) {
  main .c_course_faq_section > .container > div > p {
    font-size: 15px;
  }
}
main .c_course_faq_section > .container > div > p::before {
  content: "A";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #747474;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 1px;
}
main .c_course_cta_section {
  position: relative;
  text-align: center;
  padding: 3rem 0;
  background-color: #0E6328;
}
@media print, screen and (max-width: 992px) {
  main .c_course_cta_section {
    padding: 2rem 0;
  }
}
main .c_course_cta_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_course_cta_section > .container {
    max-width: 900px !important;
  }
}
main .c_course_cta_section > .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
}
@media print, screen and (max-width: 992px) {
  main .c_course_cta_section > .container > div {
    row-gap: 2rem;
  }
}
main .c_course_cta_section > .container > div > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_course_cta_section > .container > div > h2 {
    width: 100%;
    font-size: 20px;
    line-height: 180%;
  }
}
main .c_course_cta_section > .container > div > a {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #0E6328;
  padding: 8px 0;
  width: 240px;
  background: #FFFFFF;
  border: 4px solid rgba(14, 99, 40, 0.3);
  border-radius: 40px;
}
@media print, screen and (max-width: 992px) {
  main .c_course_cta_section > .container > div > a {
    font-size: 15px;
  }
}
main .c_overview_section {
  position: relative;
  padding: 4rem 0 6rem;
}
@media print, screen and (max-width: 992px) {
  main .c_overview_section {
    padding: 3rem 0;
  }
}
main .c_overview_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_overview_section > .container {
    max-width: 1000px !important;
  }
}
main .c_overview_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333333;
  border-left: 4px solid #0E6328;
  margin-bottom: 2.5rem;
  margin-top: 4rem;
}
@media print, screen and (max-width: 992px) {
  main .c_overview_section > .container > h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
main .c_overview_section > .container > h2:first-child {
  margin-top: 0;
}
main .c_overview_section > .container > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 200%;
  color: #0E6328;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 992px) {
  main .c_overview_section > .container > h3 {
    font-size: 18px;
  }
}
main .c_overview_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #333333;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_overview_section > .container > p {
    font-size: 15px;
  }
}
main .c_overview_section > .container > p.t_right {
  font-weight: 700;
  text-align: right;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  main .c_overview_section > .container > p.t_right {
    font-size: 16px;
  }
}
main .c_overview_section > .container > ol {
  padding: 0 0 0 1em;
  margin: 0;
}
main .c_overview_section > .container > ol > li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #333333;
}
main .c_privacy_section {
  position: relative;
  padding: 4rem 0 6rem;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section {
    padding: 3rem 0;
  }
}
main .c_privacy_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_privacy_section > .container {
    max-width: 800px !important;
  }
}
main .c_privacy_section > .container > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.04em;
  color: #0E6328;
  margin: 2.5rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > h2 {
    font-size: 20px;
    margin: 2rem 0 1rem;
  }
}
main .c_privacy_section > .container > h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.04em;
  color: #333333;
  margin-top: 2.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > h3 {
    font-size: 16px;
    margin-top: 1.5rem;
  }
}
main .c_privacy_section > .container > h3:first-child {
  margin-top: 0;
}
main .c_privacy_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > p {
    font-size: 15px;
  }
}
main .c_privacy_section > .container > p:last-of-type {
  margin-bottom: 0;
}
main .c_privacy_section > .container > a {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 220%;
  letter-spacing: 0.04em;
  text-decoration-line: underline;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > a {
    font-size: 15px;
  }
}
main .c_privacy_section > .container > a::after {
  content: "\f35d";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: -1.5em;
  color: #0E6328;
}
main .c_privacy_section > .container > div {
  background-color: #F8FAF9;
  padding: 50px 80px;
  margin-top: 3rem;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > div {
    padding: 40px 20px;
    margin-top: 2.5rem;
  }
}
main .c_privacy_section > .container > div > h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #0E6328;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > div > h2 {
    font-size: 20px;
  }
}
main .c_privacy_section > .container > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #333333;
  margin-bottom: 0;
}
main .c_privacy_section > .container > div > p:first-of-type {
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > div > p:first-of-type {
    text-align: center;
  }
}
@media print, screen and (max-width: 992px) {
  main .c_privacy_section > .container > div > p {
    font-size: 15px;
  }
}
main .c_tokusho_section {
  position: relative;
  padding: 4rem 0 6rem;
}
@media print, screen and (max-width: 992px) {
  main .c_tokusho_section {
    padding: 3rem 0;
  }
}
main .c_tokusho_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_tokusho_section > .container {
    max-width: 1000px !important;
  }
}
main .c_contact_section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_contact_section {
    padding: 3rem 0;
  }
}
main .c_contact_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_contact_section > .container {
    max-width: 800px !important;
  }
}
main .c_contact_section > .container form {
  background: #FFFFFF;
  box-shadow: 0px 0px 54px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 3rem 15px;
}
@media print, screen and (max-width: 992px) {
  main .c_contact_section > .container form {
    padding: 2rem 15px;
  }
}
main .c_contact_section > .container form .form_box {
  max-width: 500px;
  margin: auto;
  text-align: left;
}
main .c_contact_section > .container form .form_box > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
main .c_contact_section > .container form .form_box > ul > li:first-child {
  margin-bottom: 10px;
}
main .c_contact_section > .container form .form_box > ul > li:first-child p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  margin-bottom: 0;
}
main .c_contact_section > .container form .form_box > ul > li:first-child.required p::after {
  content: "必須";
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 100%;
  color: #FFFFFF;
  padding: 3px 5px 4px;
  background: #D00101;
  border-radius: 2px;
  transform: translateY(1px);
}
main .c_contact_section > .container form .form_box > ul > li:last-child {
  position: relative;
  width: 100%;
}
main .c_contact_section > .container form .form_box > ul > li:last-child input[type=text], main .c_contact_section > .container form .form_box > ul > li:last-child input[type=email], main .c_contact_section > .container form .form_box > ul > li:last-child input[type=tel], main .c_contact_section > .container form .form_box > ul > li:last-child textarea {
  width: 100%;
  padding: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  background: #FFFFFF;
  height: auto;
}
main .c_contact_section > .container form .form_box > ul > li:last-child input[type=text]::placeholder, main .c_contact_section > .container form .form_box > ul > li:last-child input[type=email]::placeholder, main .c_contact_section > .container form .form_box > ul > li:last-child input[type=tel]::placeholder, main .c_contact_section > .container form .form_box > ul > li:last-child textarea::placeholder {
  color: #E0E0E0;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2.5em;
  row-gap: 10px;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio > .wpcf7-list-item {
  margin: 0;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio > .wpcf7-list-item.first {
  margin: 0;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio > .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio > .wpcf7-list-item > label > input[type=radio] {
  appearance: none;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  cursor: pointer;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .wpcf7-radio > .wpcf7-list-item > label > input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 9999px;
  background-color: #0E6328;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .date_txt {
  width: 100%;
  margin-top: 5px;
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #333333;
}
main .c_contact_section > .container form .form_box > ul > li:last-child .date_age {
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
main .c_contact_section > .container form .form_box > ul > li:last-child.date_list > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
}
main .c_contact_section > .container form .form_box > ul > li:last-child.date_list > p input[type=text], main .c_contact_section > .container form .form_box > ul > li:last-child.date_list > p input[type=number] {
  padding: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  width: 140px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  height: auto;
}
main .c_contact_section > .container form .form_check {
  margin: 2rem 0;
}
main .c_contact_section > .container form .form_check > p {
  margin-bottom: 0;
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item {
  margin: 0;
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item label {
  display: flex;
  align-items: center;
  column-gap: 15px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item label > input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #E9E9E9;
  border-radius: 2px;
  cursor: pointer;
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item label > input[type=checkbox]:checked {
  background-color: #0E6328;
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item label > input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 16px;
  height: 8px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}
main .c_contact_section > .container form .form_check > p .wpcf7-acceptance > .wpcf7-list-item label > .wpcf7-list-item-label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
main .c_contact_section > .container form .form_check > p a {
  color: #000000;
  text-decoration: underline;
}
main .c_contact_section > .container form .form_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  column-gap: 20px;
}
main .c_contact_section > .container form .form_flex .submit_btn {
  position: relative;
}
main .c_contact_section > .container form .form_flex .submit_btn input {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  padding: 10px 10px;
  width: 240px;
  background: #0E6328;
  border-radius: 40px;
  border: none;
  transition: 0.5s;
}
main .c_contact_section > .container form .form_flex .submit_btn input:hover {
  opacity: 0.7;
}
main .c_contact_section > .container form .form_flex .wpcf7-spinner {
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
main .c_thanks_section {
  position: relative;
  text-align: center;
  padding: 4rem 0;
}
@media print, screen and (max-width: 992px) {
  main .c_thanks_section {
    padding: 3rem 0;
  }
}
main .c_thanks_section > .container {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  main .c_thanks_section > .container {
    max-width: 900px !important;
  }
}
main .c_thanks_section > .container > h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 0.04em;
  color: #333333;
}
@media print, screen and (max-width: 992px) {
  main .c_thanks_section > .container > h2 {
    font-size: 20px;
  }
}
main .c_thanks_section > .container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 240%;
  letter-spacing: 0.04em;
  color: #333333;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 992px) {
  main .c_thanks_section > .container > p {
    font-size: 15px;
  }
}
main .c_thanks_section > .container > a {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  padding: 10px;
  width: 240px;
  background: #0E6328;
  border-radius: 40px;
}

.bg_section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15;
}
.bg_section.is_bg {
  display: block;
}

footer {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid #E9E9E9;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media print, screen and (max-width: 992px) {
  footer {
    padding: 1rem 0 0;
  }
}
footer > .container {
  max-width: 100%;
}
@media print, screen and (min-width: 992px) {
  footer > .container {
    max-width: 1000px;
  }
}
@media print, screen and (min-width: 992px) {
  footer > .container > .f_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media print, screen and (max-width: 992px) {
  footer > .container > .f_flex {
    text-align: center;
  }
}
@media print, screen and (max-width: 992px) {
  footer > .container > .f_flex > .f_list {
    width: 100%;
    margin-bottom: 1rem;
  }
}
footer > .container > .f_flex > .f_list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 43px;
}
@media print, screen and (max-width: 992px) {
  footer > .container > .f_flex > .f_list > ul {
    row-gap: 10px;
  }
}
footer > .container > .f_flex > .f_list > ul > li {
  position: relative;
}
@media print, screen and (max-width: 992px) {
  footer > .container > .f_flex > .f_list > ul > li {
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  footer > .container > .f_flex > .f_list > ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-45%);
    background-color: #E9E9E9;
    width: 1px;
    height: 20px;
  }
}
footer > .container > .f_flex > .f_list > ul > li > a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #747474;
}
footer > .container > .f_flex > p {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  color: #747474;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  footer > .container > .f_flex > p {
    color: #FFFFFF;
    background-color: #333333;
    padding: 15px 0;
    margin: 0 -20px;
  }
}