.aboutpage-mv {
  background: url(/about/images/mv.jpg) no-repeat center;
  color: #fff;
  height: 300px;
  position: relative;
}

@media (max-width: 768px) {
  .aboutpage-mv {
    background: url(/about/images/mv_sp.jpg) no-repeat center;
    height: 177px;
    width: 100%;
  }
}

.aboutpage-mv .title {
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

@media (max-width: 768px) {
  .aboutpage-mv .title {
    white-space: nowrap;
    top: 55px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.about {
  width: 100%;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .about {
    margin-bottom: 40px;
  }
}

.about .about-introduce .right,
.about .about-introduce .left {
  margin: 120px 0;
}

@media (max-width: 768px) {

  .about .about-introduce .right,
  .about .about-introduce .left {
    margin: 80px 0 0;
  }
}

.about .about-ttl-main {
  font-size: 2.5rem;
  text-align: center;
  font-weight: normal;
  position: relative;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .about-ttl-main {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.3;
  }
}

.about .about-ttl-main span {
  color: #761d3d;
}

.about .about-ttl-main::before {
  content: '';
  display: block;
  width: 35px;
  height: 5px;
  background: url(/about/images/about_catch_dot.png) no-repeat center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .about .about-ttl-main::before {
    bottom: -15px;
  }
}

.about .about-ttl-sub {
  font-size: 1.875rem;
  text-align: center;
  font-weight: normal;
  position: relative;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .about-ttl-sub {
    font-size: 1.25rem;
  }
}

.about .about-ttl-sub::before {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background: #761d3d;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .about .about-ttl-sub::before {
    width: 35px;
    height: 4px;
    top: 36px;
  }
}

.about .about-btn {
  text-align: center;
}

@media (max-width: 768px) {
  .about .about-btn {
    margin-bottom: 0;
  }
}

.about .about-btn a {
  display: inline-block;
  border: 1px solid #31373e;
  text-align: center;
  padding: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #31373e;
  width: 360px;
  font-size: 1.125rem;
}

.about .about-btn a:hover {
  border: 1px solid #761d3d;
  color: #761d3d;
}

@media (max-width: 768px) {
  .about .about-btn a {
    width: 290px;
    padding: 12px 0;
  }
}

.about .about-navi {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 75px;
  list-style: none;
  background-color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: -40px auto;
  justify-content: center;
  box-shadow: 0px 3px 21px -8px #b8b8b8;
}

@media (max-width: 768px) {
  .about .about-navi {
    flex-wrap: wrap;
    height: auto;
    width: 90%;
    margin: -35px auto;
  }
}

.about .about-navi li {
  height: 100%;
  background-color: #fff;
}

@media (max-width: 768px) {
  .about .about-navi li {
    width: 49.5%;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
  }

  .about .about-navi li:last-child {
    width: 100%;
  }

  .about .about-navi li:nth-child(2n) {
    border-left: 1px solid #f5f5f5;
  }
}

.about .about-navi li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-bottom: 2px solid #fff;
  line-height: 1.35;
  text-decoration: none;
  color: #31373e;
  font-size: 1rem;
  margin: 0;
  padding: 0px 40px;
  box-sizing: border-box;
}

.about .about-navi li a:hover {
  border-bottom: 2px solid #b6a97e;
}

@media (max-width: 768px) {
  .about .about-navi li a {
    padding: 10px 0px;
    width: 100%;
    font-size: 0.875rem;
    min-height: 65px;
  }
}

.about .about-catch {
  padding: 165px 0 60px;
  background: url(/about/images/about_bg_img01.png) no-repeat top center;
}

@media (max-width: 768px) {
  .about .about-catch {
    padding: 75px 0 30px;
    background: url(/about/images/about_bg_img01_sp.png) no-repeat top center;
    background-size: 100%;
  }
}

.about .about-catch .about-catch-txt {
  text-align: center;
  margin: 60px auto 40px;
  line-height: 2;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about .about-catch .about-catch-txt {
    margin: 30px auto 40px;
    width: 90%;
    text-align: left;
    line-height: 1.55;
    font-size: 0.9375rem;
  }
}

.about .about-catch .about-catch-txt+.about-ttl-sub {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .about .about-catch .about-catch-txt+.about-ttl-sub {
    margin-top: 30px;
  }
}

.about .about-catch .about-catch-graph {
  width: 750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about .about-catch .about-catch-graph {
    width: 55%;
  }
}

.about .about-catch .about-catch-graph img {
  width: 100%;
}

.about .about-bnr {
  background-color: #f0efdf;
  box-shadow: 0px 3px 21px -8px #b8b8b8;
  width: 1200px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .about .about-bnr {
    flex-direction: column;
    width: 95%;
    margin: 30 auto 35px;
  }
}

.about .about-bnr .about-bnr-txtarea {
  padding: 75px 60px 50px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about .about-bnr .about-bnr-txtarea {
    width: 100%;
    padding: 30px 30px 40px;
  }
}

.about .about-bnr .about-bnr-ttl {
  font-size: 1.625rem;
  font-weight: normal;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about .about-bnr .about-bnr-ttl {
    font-size: 1.3125rem;
    margin-bottom: 5px;
  }
}

.about .about-bnr .about-bnr-ttl span {
  color: #761d3d;
}

.about .about-bnr .about-bnr-txt {
  font-size: 0.9375rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about .about-bnr .about-bnr-txt {
    font-size: 0.875rem;
  }
}

.about .about-bnr .about-bnr-img {
  margin: 0;
}

@media (max-width: 768px) {
  .about .about-bnr .about-bnr-img img {
    width: 100%;
  }
}

.about .about-bnr .about-btn a {
  width: 310px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about .about-bnr .about-btn a {
    width: 290px;
    margin-top: 15px;
  }
}

.about .about-recommend {
  display: flex;
  max-width: 1140px;
  margin: 60px auto 0;
}

@media (max-width: 768px) {
  .about .about-recommend {
    margin: 50px auto 0;
  }
}

@media (max-width: 768px) {
  .about .about-recommend-img {
    display: none;
  }
}

.about .about-recommend-list {
  list-style: none;
  margin: 8px 0 0 47px;
}

@media (max-width: 768px) {
  .about .about-recommend-list {
    margin: 0 auto;
    width: 90%;
  }
}

.about .about-recommend-list li {
  font-size: 1.125rem;
  padding-left: 30px;
  line-height: 3;
  background: url(/about/images/check_mark.png) no-repeat left 0 center;
}

@media (max-width: 768px) {
  .about .about-recommend-list li {
    font-size: 0.9375rem;
    line-height: 1.7;
    background: url(/about/images/check_mark.png) no-repeat top 5px left 0;
    background-size: 18px;
    margin-bottom: 11px;
  }
}

.about-reason {
  background-image: url(/about/images/aboutpage_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  margin: 0 auto 80px;
  text-align: center;
}

@media (max-width: 768px) and (max-width: 1024px) {
  .about-reason {
    margin: 40px auto 45px;
    padding: 35px 0 30px;
  }
}

@media (max-width: 768px) {
  .about-reason {
    margin: 40px auto 45px;
    padding: 35px 0 30px;
  }
}

.about-reason-ttl {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
}

.about-reason-ttl span {
  color: #761d3d;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .about-reason-ttl span {
    font-size: 1.5rem;
  }
}

.about-reason-ttl .f-futura {
  font-size: 3.4375rem;
  font-weight: normal;
  display: inline-block;
  margin: 0px 2px;
  line-height: 0;
}

.about-reason-ttl .accent {
  color: #761d3d;
}

@media (max-width: 768px) {
  .about-reason-ttl {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.7;
  }
}

.about-reason-btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  list-style: none;
}

@media (max-width: 768px) {
  .about-reason-btn {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.about-reason-btn img:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .about-reason-btn img {
    width: 185px;
  }
}

.about-review {
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
  padding: 80px 0;
}

@media (max-width: 768px) {
  .about-review {
    background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 85%, #f4f4f4 85%, #fff 85%);
    padding: 35px 0 45px;
  }
}

.about-review .review {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1140px;
  margin: 60px auto 30px;
}

@media (max-width: 768px) {
  .about-review .review {
    background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 85%, #f4f4f4 85%, #fff 85%);
    margin: 50px auto 15px;
  }
}

.about-review .review-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .about-review .review-ttl {
    margin-bottom: 10px;
  }
}

.about-review .review-ttl ul {
  list-style: none;
  margin-left: 25px;
}

@media (max-width: 768px) {
  .about-review .review-ttl ul {
    margin-left: 10px;
  }
}

.about-review .review-ttl .name {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-review .review-ttl .name {
    font-size: 0.6875rem;
  }
}

.about-review .review-ttl .name span {
  font-size: 1.375rem;
}

@media (max-width: 768px) {
  .about-review .review-ttl .name span {
    font-size: 1rem;
  }
}

.about-review .review-ttl .level {
  display: flex;
}

@media (max-width: 768px) {
  .about-review .review-ttl .level {
    font-size: 0.75rem;
  }
}

.about-review .review-ttl .level p {
  margin: 0;
}

.about-review .review-img {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-review .review-img {
    width: 66px;
  }
}

@media (max-width: 768px) {
  .about-review .review-img img {
    width: 100%;
  }
}

.about-review .review-txt {
  margin-bottom: 0;
  font-size: 0.975rem;
}

@media (max-width: 768px) {
  .about-review .review-txt {
    font-size: 0.875rem;
  }
}

.about-review .review>li {
  width: 542px;
  background-color: #fff;
  border-top: 1px solid #761d3d;
  margin: 25px 0;
  padding: 30px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-review .review>li {
    padding: 20px;
    width: 90%;
    margin: 0 auto 20px;
  }
}

.about-question {
  margin: 80px auto 100px;
}

@media (max-width: 768px) {
  .about-question {
    margin: 40px auto 50px;
    max-width: 90%;
  }
}

.about-question-list {
  list-style: none;
  max-width: 950px;
  margin: 80px auto;
  border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
  .about-question-list {
    margin: 50px auto 35px;
  }
}

.about-question-list li {
  line-height: 1;
}

.about-question-list li span {
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 768px) {
  .about-question-list li span {
    max-width: 280px;
  }
}

.about-question-list .f-futura {
  font-weight: normal;
  color: #b6a97e;
  margin-right: 10px;
  font-size: 1.75rem;
}

.about-question-ttl {
  padding: 30px 20px;
  position: relative;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 768px) {
  .about-question-ttl {
    padding: 20px 5px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.9375rem;
  }
}

.about-question-ttl:hover {
  background-color: #761d3d;
  color: #fff;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.about-question-ttl::before {
  content: '';
  display: block;
  background-color: #ccc;
  width: 20px;
  height: 2px;
  position: absolute;
  right: 25px;
  top: 45px;
}

.about-question-ttl::after {
  content: '';
  display: block;
  background-color: #ccc;
  width: 2px;
  height: 20px;
  position: absolute;
  right: 34px;
  top: 36px;
}

@media (max-width: 768px) {
  .about-question-ttl::before {
    content: '';
    display: block;
    background-color: #ccc;
    width: 16px;
    height: 2px;
    position: absolute;
    right: 9px;
    top: 35px;
  }

  .about-question-ttl::after {
    content: '';
    display: block;
    background-color: #ccc;
    width: 2px;
    height: 16px;
    position: absolute;
    right: 16px;
    top: 28px;
  }
}

.about-question-ttl.open::after {
  display: none;
}

@media (max-width: 768px) {
  .about-question-ttl.open::before {
    transform: translateY(-50%) rotate(-180deg);
    top: 35px;
  }
}

.about-question-txt {
  display: none;
  padding: 25px 35px 40px;
  line-height: 1.5;
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .about-question-txt {
    padding: 25px 15px 40px;
    font-size: 0.875rem;
  }
}

.about-seminar {
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
  padding: 10px 0 80px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .about-seminar {
    background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 85%, #f4f4f4 85%, #fff 85%);
    padding: 20px 0 60px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

.about-seminar-detail {
  max-width: 1140px;
  margin: 160px auto 0;
  position: relative;
}

@media (max-width: 768px) {
  .about-seminar-detail {
    position: static;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
  }
}

.about-seminar-detail::after {
  content: '';
  display: block;
  clear: both;
}

.about-seminar-detail+.about-btn {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .about-seminar-detail+.about-btn {
    margin-top: 35px;
  }
}

.about-seminar-ttl {
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-seminar-ttl {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

.about-seminar-txt {
  background-color: #fff;
  box-shadow: 0px 3px 21px -8px #b8b8b8;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #414141;
  padding: 54px;
  box-sizing: border-box;
  width: 800px;
}

@media (max-width: 768px) {
  .about-seminar-txt {
    width: 95%;
    margin: 0 auto;
    padding: 24px;
  }

  .about-seminar-txt .list-style-dot li {
    margin-bottom: 5px;
    font-size: 0.975rem;
  }
}

.about-seminar-txt ::before {
  content: '';
  display: block;
  width: 3px;
  height: 40px;
  background-color: #761d3d;
  position: absolute;
  z-index: 1;
  top: 55px;
  left: 0;
}

@media (max-width: 768px) {
  .about-seminar-txt ::before {
    height: 30px;
    top: 30px;
  }
}

.about-seminar-txt dd {
  margin: 0;
}

.about-seminar-img {
  position: absolute;
  right: 0;
  top: -70px;
}

@media (max-width: 768px) {
  .about-seminar-img {
    position: static;
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-seminar-img img {
    width: 100%;
  }
}

.about .about-study {
  padding: 110px 0;
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
}

@media (max-width: 768px) {
  .about .about-study {
    padding: 40px 0 15px;
  }
}

.about .about-study .about-btn {
  margin: 20px auto;
  text-align: left;
}

@media (max-width: 768px) {
  .about .about-study .about-btn {
    margin: 20px auto;
  }
}

.about .about-study .about-study-detail {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .about .about-study .about-study-detail {
    width: 90%;
    margin: 0 auto 40px;
  }
}

.about .about-study .about-study-ttl_main {
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .about .about-study .about-study-ttl_main {
    padding-left: 20px;
    border-left: 3px solid #761d3d;
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
}

.about .about-study .about-study-list {
  margin: 0;
}

.about .about-study .about-study-list ul {
  margin: 0 0 25px;
  list-style: none;
}

.about .about-study .about-study-list li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}

.about .about-study .about-study-list li::before {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 6px;
  background-color: #b6a97e;
  position: absolute;
  top: 12px;
}

@media (max-width: 768px) {
  .about .about-study .about-study-list li {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}

.about .about-study .about-study-txtbox {
  width: 590px;
  padding-left: 55px;
  box-sizing: border-box;
  border-left: 1px solid #ccc;
  position: relative;
}

@media (max-width: 768px) {
  .about .about-study .about-study-txtbox {
    padding-left: 0;
    border-left: none;
    margin-bottom: 20px;
  }
}

.about .about-study .about-study-txtbox ::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 36px;
  background-color: #761d3d;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .about .about-study .about-study-txtbox ::before {
    display: none;
  }
}

.about .about-study .about-study-txtbox .about-study-ttl_sub {
  color: #761d3d;
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about .about-study .about-study-txtbox .about-study-ttl_sub {
    font-size: 1.25rem;
    margin: 15px 0 10px;
  }
}

.about .about-study .about-study-txtbox .about-study-txt {
  margin: 0 0 25px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about .about-study .about-study-txtbox .about-study-txt {
    font-size: 0.875rem;
    margin: 0 0 20px;
  }
}

.about .about-study .about-study-txtbox .about-study-btnarea {
  margin: 0 0 60px;
}

@media (max-width: 768px) {
  .about .about-study .about-study-txtbox .about-study-btnarea {
    margin: 0 0 40px;
  }
}

.about .about-study .about-study-img {
  width: 488px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about .about-study .about-study-img {
    width: 100%;
    margin: 0 auto;
  }
}

.about .about-study .about-study-img img {
  margin-bottom: 2px;
  width: 100%;
}

.about .about-instructor {
  padding: 100px 0 0;
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
}

@media (max-width: 768px) {
  .about .about-instructor {
    padding: 40px 0 15px;
  }
}

.about .about-instructor .about-btn {
  margin: 25px 0 0;
}

@media (max-width: 768px) {
  .about .about-instructor .about-btn {
    margin: 10px auto 45px;
  }
}

.about .about-instructor .about-instructor-detail {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-detail {
    width: 90%;
    margin: 0 auto 40px;
  }
}

.about .about-instructor .about-instructor-ttl {
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.3;
  padding-left: 55px;
  border-left: 3px solid #761d3d;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-ttl {
    padding-left: 20px;
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
}

.about .about-instructor .about-instructor-txtBox {
  width: 590px;
  box-sizing: border-box;
  border-left: 1px solid #ccc;
  margin-bottom: 110px;
  position: relative;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox {
    padding-left: 0px;
    border-left: none;
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
}

.about .about-instructor .about-instructor-txtBox ::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 36px;
  background-color: #761d3d;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox ::before {
    display: none;
  }
}

.about .about-instructor .about-instructor-txtBox .about-instructor-list {
  margin: 0;
  padding-left: 55px;
  list-style: none;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox .about-instructor-list {
    padding-left: 0;
  }
}

.about .about-instructor .about-instructor-txtBox .about-instructor-list li {
  padding-left: 15px;
  margin: 0 0 15px;
  position: relative;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox .about-instructor-list li {
    margin-bottom: 12px;
    line-height: 1.3;
  }
}

.about .about-instructor .about-instructor-txtBox .about-instructor-list li::before {
  display: block;
  content: '';
  background-color: #b6a97e;
  width: 5px;
  height: 5px;
  border-radius: 6px;
  position: absolute;
  top: 10px;
}

.about .about-instructor .about-instructor-txtBox dt {
  color: #761d3d;
  font-size: 1.375rem;
  font-weight: normal;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox dt {
    font-size: 1.25rem;
  }
}

.about .about-instructor .about-instructor-txtBox dd {
  margin: 5px 0 30px;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox dd {
    font-size: 0.9375rem;
    margin: 0 0 20px;
  }
}

.about .about-instructor .about-instructor-txtBox p {
  margin-bottom: 0;
  padding-left: 55px;
  text-align: left;
}

.about .about-instructor .about-instructor-txtBox .results {
  padding-top: 20px;
  padding-left: 55px;
  color: #761d3d;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox .results {
    padding-left: 0px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txtBox p {
    padding-left: 0;
    line-height: 1.7;
    font-size: 0.875rem;
  }
}

.about .about-instructor .about-instructor-txt {
  margin: 0 0 25px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-txt {
    font-size: 0.9375rem;
    margin: 0 0 30px;
  }
}

.about .about-instructor .about-instructor-img {
  width: 488px;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-img {
    width: 100%;
    margin: 0 auto;
  }
}

.about .about-instructor .about-instructor-img img {
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .about .about-instructor .about-instructor-img img {
    width: 100%;
  }
}

.about .about-support {
  padding: 110px 0 0;
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
}

@media (max-width: 768px) {
  .about .about-support {
    padding: 40px 0 15px;
  }
}

.about .about-support .about-btn {
  margin: 20px auto;
  text-align: left;
}

@media (max-width: 768px) {
  .about .about-support .about-btn {
    margin: 10px auto;
  }
}

.about .about-support .about-support-detail {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about .about-support .about-support-detail {
    width: 90%;
    margin: 0 auto 40px;
  }
}

.about .about-support .about-support-ttl_main {
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .about .about-support .about-support-ttl_main {
    padding-left: 20px;
    border-left: 3px solid #761d3d;
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
}

.about .about-support .about-support-list {
  margin: 0 0 50px;
}

.about .about-support .about-support-list ul {
  margin: 0 0 25px;
  list-style: none;
}

.about .about-support .about-support-list li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}

.about .about-support .about-support-list li::before {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 6px;
  background-color: #b6a97e;
  position: absolute;
  top: 12px;
}

.about .about-support .about-support-txtbox {
  width: 590px;
  padding-left: 55px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  border-left: 1px solid #ccc;
}

@media (max-width: 768px) {
  .about .about-support .about-support-txtbox {
    padding-left: 0;
    border-left: none;
    margin-bottom: 20px;
  }
}

.about .about-support .about-support-txtbox ::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 36px;
  background-color: #761d3d;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .about .about-support .about-support-txtbox ::before {
    display: none;
  }
}

.about .about-support .about-support-txtbox .about-support-ttl_sub {
  color: #761d3d;
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about .about-support .about-support-txtbox .about-support-ttl_sub {
    font-size: 1.25rem;
  }
}

.about .about-support .about-support-txtbox .about-support-txt {
  margin: 0 0 25px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about .about-support .about-support-txtbox .about-support-txt {
    font-size: 0.9375rem;
    margin: 0 0 20px;
  }
}

.about .about-support .about-support-txtbox .about-support-btnarea {
  margin: 0 0 60px;
}

@media (max-width: 768px) {
  .about .about-support .about-support-txtbox .about-support-btnarea {
    margin: 0 0 20px;
  }
}

.about .about-support .about-support-img {
  width: 488px;
  margin-bottom: 110px;
}

@media (max-width: 768px) {
  .about .about-support .about-support-img {
    width: 100%;
    margin: 0 auto;
  }
}

.about .about-support .about-support-img img {
  margin-bottom: 2px;
  width: 100%;
}

.about .about-meeting {
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 75%, #f4f4f4 75%, #fff 75%);
  padding: 80px 0 10px;
}

@media (max-width: 768px) {
  .about .about-meeting {
    background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 85%, #f4f4f4 85%, #fff 85%);
    padding: 40px 0 10px;
  }
}

.about .about-meeting .about-meeting-detail {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .about .about-meeting .about-meeting-detail {
    margin-bottom: 40px;
  }
}

.about .about-meeting .about-btn a {
  padding: 16px 30px;
}

@media (max-width: 768px) {
  .about .about-meeting .about-btn a {
    padding: 10px 30px;
    width: 220px;
  }
}

.about-slide-txt {
  background-color: #fff;
  box-shadow: 0px 3px 21px -8px #b8b8b8;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #414141;
  width: 542px;
  padding: 40px 44px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-slide-txt {
    width: 95%;
    padding: 20px 34px;
    margin: 0 auto;
  }
}

.about-slide-txt::before {
  content: '';
  display: block;
  width: 3px;
  height: 38px;
  background-color: #761d3d;
  position: absolute;
  top: 42px;
  left: 0;
}

@media (max-width: 768px) {
  .about-slide-txt::before {
    top: 22px;
    height: 34px;
  }
}

.about-slide-txt_nottl {
  background-color: #fff;
  box-shadow: 0px 3px 21px -8px #b8b8b8;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #414141;
  width: 542px;
  padding: 38px 44px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-slide-txt_nottl {
    width: 96%;
    padding: 30px 35px;
  }
}

.about-slide-txt_nottl::before {
  display: none;
}

.about-slide-txt_nottl p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-slide-txt_nottl p {
    font-size: 0.75rem;
  }
}

.about-slide-ttl {
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-slide-ttl {
    font-size: 1.375rem;
    margin-bottom: 5px;
  }
}

.right {
  position: relative;
  text-align: right;
}

@media (max-width: 768px) {
  .right {
    display: flex;
    flex-direction: column;
    height: 420px;
  }
}

.right .about-slide-txt {
  position: absolute;
  bottom: -60px;
  left: 8%;
  z-index: 10;
  text-align: left;
}

@media (max-width: 768px) and (max-width: 1024px) {
  .right .about-slide-txt {
    left: 5%;
  }
}

@media (max-width: 768px) {
  .right .about-slide-txt {
    font-size: 0.75rem;
  }
}

.right .about-slide-txt_nottl {
  position: absolute;
  bottom: -60px;
  left: 8%;
  z-index: 10;
  text-align: left;
}

@media (max-width: 768px) and (max-width: 1024px) {
  .right .about-slide-txt_nottl {
    left: 5%;
  }
}

@media (max-width: 768px) {
  .right .about-slide-txt_nottl {
    left: 50%;
    transform: translateX(-50%);
  }
}

.right .about-slide-txt_nottl::before {
  display: none;
}

@media (max-width: 768px) {
  .right .about-slide-txt {
    position: relative;
    bottom: 0;
    left: 0;
  }
}

.right .swiper-container {
  display: inline-block;
}

@media (max-width: 768px) {
  .right .about-slide-img {
    position: relative;
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .right .about-slide-img img {
    width: 100%;
  }
}

.left {
  position: relative;
  text-align: left;
}

@media (max-width: 768px) {
  .left {
    display: flex;
    flex-direction: column;
    height: 460px;
  }
}

.left .about-slide-txt {
  position: absolute;
  bottom: -60px;
  right: 8%;
  z-index: 10;
  text-align: left;
}

@media (max-width: 768px) and (max-width: 1024px) {
  .left .about-slide-txt {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .left .about-slide-txt {
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 0.75rem;
  }
}

.left .about-slide-txt_nottl {
  position: absolute;
  bottom: -60px;
  left: 8%;
  z-index: 10;
  text-align: left;
}

@media (max-width: 768px) and (max-width: 1024px) {
  .left .about-slide-txt_nottl {
    left: 5%;
  }
}

.left .about-slide-txt_nottl::before {
  display: none;
}

.left .swiper-container {
  display: inline-block;
}

@media (max-width: 768px) {
  .left .about-slide-img {
    position: relative;
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) and (max-width: 1024px) {
  .left .about-slide-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .left .about-slide-img img {
    width: 100%;
  }
}