@charset "UTF-8";
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  font-style: normal;
}

body {
  font-size: 10px;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*$inner-width: 1100px;*/
html,
body {
  height: 100%;
}
@media screen and (max-width: 768px) {
  html,
  body {
    min-width: 100%;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  color: #231815;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*-------------------------
  共通部分
--------------------------*/
.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
  }
}

.mod-inner {
  margin: 0 auto;
  width: 1000px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .mod-inner {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mod-inner {
    padding: 0 15px;
    width: 100%;
  }
}

.mod-inner__1100 {
  width: 1100px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .mod-inner__1100 {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mod-inner__1100 {
    padding: 0 15px;
    width: 100%;
  }
}

.mod-title {
  text-align: center;
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 768px) {
  .mod-title {
    margin: 0 0 30px;
    font-size: 24px;
    line-height: 1.4;
  }
}
.mod-title span {
  margin: 0 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .mod-title span {
    display: block;
    margin: 5px 0 0;
    font-size: 14px;
  }
}

/*-------------------------
  追従ヘッダーメニュー
--------------------------*/
.headerfollowing {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  padding: 10px 0;
  width: 100%;
  background: #000;
}

.headerfollowing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .headerfollowing-inner {
    padding: 0 4vw;
  }
}

.headerfollowing-logo {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .headerfollowing-logo {
    height: 30px;
  }
}
.headerfollowing-logo img {
  width: 187px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .headerfollowing-logo img {
    width: 140px;
    height: 30px;
  }
}
.headerfollowing-logo a {
  display: block;
  height: 100%;
}

#headerfollowing-menubtn {
  display: none;
}
@media screen and (max-width: 768px) {
  #headerfollowing-menubtn:checked + .headerfollowing-label span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #headerfollowing-menubtn:checked + .headerfollowing-label span::before, #headerfollowing-menubtn:checked + .headerfollowing-label span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  #headerfollowing-menubtn:checked ~ .headerfollowing-nav {
    left: 0;
    -webkit-box-shadow: 0 0 5rem rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 5rem rgba(0, 0, 0, 0.7);
  }
}

.headerfollowing-label {
  display: none;
}
@media screen and (max-width: 768px) {
  .headerfollowing-label {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    text-align: center;
    width: 40px;
    height: 100%;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
  }
  .headerfollowing-label span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 0.2em;
    background: #fff;
    -webkit-transition: transform .3s ease;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .headerfollowing-label span::before {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    -webkit-transition: transform .3s ease-in;
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    -webkit-transform: translateY(-0.7em);
    transform: translateY(-0.7em);
    content: "";
  }
  .headerfollowing-label span::after {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    -webkit-transition: transform .3s ease-in;
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    -webkit-transform: translateY(0.7em);
    transform: translateY(0.7em);
    content: "";
  }
}

@media screen and (max-width: 768px) {
  .headerfollowing-nav {
    position: fixed;
    top: 50px;
    left: -80%;
    margin: 0;
    padding: 20px;
    width: 80%;
    height: calc(100% - 50px);
    background: #000;
    z-index: 1000;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    opacity: 0.8;
  }
}

.headerfollowing-menulist {
  display: flex;
}
@media screen and (max-width: 768px) {
  .headerfollowing-menulist {
    flex-direction: column;
  }
}
.headerfollowing-menulist li {
  padding: 0 0 0 24px;
}
@media screen and (max-width: 768px) {
  .headerfollowing-menulist li {
    padding: 15px 0;
  }
}
.headerfollowing-menulist li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.headerfollowing-menulist li a:hover {
  opacity: 0.7;
}

/*--------------------------
  footer
---------------------------*/
.footer {
  width: 100%;
}

.footer__lp {
  background: #000;
}
.footer__lp .footer-inner {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .footer__lp .footer-inner {
    padding: 20px 0 60px;
  }
}
.footer__lp .footer-list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 5px;
}
@media screen and (max-width: 420px) {
  .footer__lp .footer-list ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__lp .footer-list ul li {
    margin: 0 0 5px;
  }
}
.footer__lp .footer-list ul li a {
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  text-decoration: underline;
  color: #FFF;
}
.footer__lp .footer-list ul li a:hover {
  text-decoration: none;
}
.footer__lp .footer-list ul li.logo img {
  width: 160px;
  height: 34px;
}
.footer__lp .footer-copyright {
  font-size: 12px;
  color: #FFF;
}

/*-------------------------
  ページトップに戻るボタン
--------------------------*/
.lp-right-nav {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .lp-right-nav {
    width: 50px;
  }
}
.lp-right-nav a {
  display: block;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.lp-right-nav a:hover {
  opacity: 0.7;
}

/* MV */
.main-visual {
  margin: 60px 0 70px;
  width: 100%;
  background: url(../img/bg_header.png) top center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin: 50px 0 60px;
    background: none;
  }
}

.main-visual-img {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.main-visual-img img {
  width: 100%;
  max-width: 1200px;
  max-height: 700px;
}
@media screen and (max-width: 768px) {
  .main-visual-img {
    display: none;
  }
}

.main-visual-img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-visual-img-sp {
    display: block;
  }
}

/* 動画 */
.movie {
  text-align: center;
  margin: 0 auto 90px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .movie {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .movie {
    margin: 0 0 40px;
  }
}
.movie iframe {
  width: 800px;
  height: 450px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .movie iframe {
    width: 100%;
    height: calc(90vw / 16 * 9);
  }
}
@media screen and (max-width: 768px) {
  .movie iframe {
    width: 100%;
    height: calc(90vw / 16 * 9);
  }
}

/* 講座の特徴・この講座が目指すゴール */
#conclusion {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  #conclusion {
    margin: 0 0 60px;
  }
}

.conclusion_ttl {
  text-align: center;
  padding: 32px 15px;
  width: 100%;
  font-size: 34px;
  font-weight: bold;
  font-style: oblique;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  line-height: 1.4;
  background: #183883;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .conclusion_ttl {
    padding: 22px 15px 20px;
    font-size: 20px;
    line-height: 1.6;
  }
}
.conclusion_ttl span {
  font-size: 40px;
  font-weight: bold;
  font-style: oblique;
  color: #FFF462;
}
@media screen and (max-width: 768px) {
  .conclusion_ttl span {
    font-size: 26px;
  }
}

.conclusion_txt {
  background: url("../img/bg_conclusion_photo.png") no-repeat center top;
  background-size: cover;
}

.conclusion_txt_img {
  text-align: center;
  padding: 80px 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .conclusion_txt_img img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .conclusion_txt_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .conclusion_txt_img {
    display: none;
  }
}

.conclusion_txt_img_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .conclusion_txt_img_sp {
    display: block;
    padding: 20px 5px;
  }
}
@media screen and (max-width: 768px) {
  .conclusion_txt_img_sp img {
    width: 100%;
  }
}

/* ぜひご参加ください */
#join {
  margin: 0 0 60px;
  padding: 0 0 80px;
  background: url(../img/bg_join.png) no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #join {
    background-size: contain;
  }
}

.join_inner {
  margin: 0 auto;
  max-width: 960px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .join_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .join_inner {
    padding: 0 15px;
    width: 100%;
  }
}

.join_ttl {
  margin: 0 0 20px;
}
.join_ttl img {
  max-width: 100%;
}

.join_list ul {
  margin: 0 auto;
  width: 720px;
}
@media screen and (max-width: 768px) {
  .join_list ul {
    margin: 0 0 20px;
    width: 100%;
  }
}
.join_list ul li {
  margin: 0 auto 15px;
  padding: 0 0 0 1em;
  font-size: 18px;
  line-height: 1.4;
  text-indent: -1.9em;
}
@media screen and (max-width: 768px) {
  .join_list ul li {
    margin: 0 0 5px 6px;
    font-size: 16px;
  }
}
.join_list ul li::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  padding: 0 1em 0 0;
  width: 16px;
  height: 20px;
  background: url(../img/ic_check.png) no-repeat left top;
  background-size: 16px 20px;
}
@media screen and (max-width: 768px) {
  .join_list ul li::before {
    top: 4px;
  }
}

/* ケーススタディ・コンセプト */
#about {
  margin: 0 0 80px;
}

.about_inner {
  margin: 0 auto;
  max-width: 960px;
}
@media only screen and (min-width: 769px) and (max-width: 959px) {
  .about_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .about_inner {
    padding: 0 15px;
    width: 100%;
  }
}

.about_casestudy {
  position: relative;
}
@media screen and (max-width: 900px) {
  .about_casestudy {
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1100px) {
  .about_casestudy img {
    margin: 0 0 20px;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .about_casestudy_ttl {
    display: none;
  }
}
.about_casestudy_ttl_sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .about_casestudy_ttl_sp {
    display: block;
    overflow: hidden;
    margin: 0 0 10px;
  }
}

.about_casestudy_txt {
  position: absolute;
  top: 110px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #183883;
}
@media screen and (max-width: 900px) {
  .about_casestudy_txt {
    position: revert;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
  }
}

.about_casestudybox {
  display: flex;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .about_casestudybox {
    display: block;
  }
}

.about_casestudybox_txt {
  margin: 0 2% 0 0;
  width: 50%;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .about_casestudybox_txt {
    margin: 0 0 20px;
    width: 100%;
    font-size: 16px;
  }
}
.about_casestudybox_txt span {
  font-weight: bold;
}

.about_casestudybox_list {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .about_casestudybox_list {
    width: 100%;
  }
}
.about_casestudybox_list ul {
  margin: 0 0 0 20px;
  padding: 20px 20px;
  border: 2px solid #183883;
  background-color: rgba(25, 57, 131, 0.15);
}
@media screen and (max-width: 768px) {
  .about_casestudybox_list ul {
    margin: 0;
    padding: 20px 15px;
    border-top: none;
    width: 100%;
  }
}
.about_casestudybox_list ul li {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 6px;
}
.about_casestudybox_list ul li:last-child {
  margin: 0;
}
.about_casestudybox_list ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #183883;
}

.about_casestudybox_list_ttl {
  padding: 12px 20px 10px;
  width: 92%;
  font-size: 20px;
  font-weight: bold;
  background: #183883;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .about_casestudybox_list_ttl {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }
}
.about_casestudybox_list_ttl::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid #000;
  border-left: 20px solid transparent;
}
@media screen and (max-width: 768px) {
  .about_casestudybox_list_ttl::before {
    content: none;
  }
}

.about_concept {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .about_concept {
    background: none;
  }
}
.about_concept ul li {
  margin: 0 0 40px;
}
.about_concept ul li:last-child {
  margin: 0 auto;
}

.about_concept_number {
  position: relative;
  margin: 0 0 20px;
  font-size: 44px;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  color: #183883;
}
@media screen and (max-width: 768px) {
  .about_concept_number {
    font-size: 32px;
    margin: 0 0 20px 30px;
  }
}
.about_concept_number span {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .about_concept_number span {
    font-size: 50px;
  }
}
.about_concept_number::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -140px;
  width: 154px;
  height: 47px;
  background: url(../img/bg_about_concept_number.png) no-repeat right top;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about_concept_number::before {
    top: 5px;
  }
}

.about_concept_ttl {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: bold;
  font-style: oblique;
  font-family: YuMincho, 'Yu Mincho', serif;
  line-height: 1.3;
  color: #5F5433;
}
@media screen and (max-width: 768px) {
  .about_concept_ttl {
    font-size: 20px;
    line-height: 1.2;
  }
}

.about_concept_txt {
  font-size: 18px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .about_concept_txt {
    font-size: 16px;
  }
}
.about_concept_txt span {
  border-bottom: 3px dotted #DB4F2F;
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  color: #DB4F2F;
}
@media screen and (max-width: 768px) {
  .about_concept_txt span {
    font-size: 18px;
    line-height: 1.8;
  }
}

.about_concept_list ul li {
  margin: 0 0 30px;
}

.about_concept_list_ttl {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #183883;
}
@media screen and (max-width: 768px) {
  .about_concept_list_ttl {
    font-size: 20px;
    line-height: 1.2;
  }
}
.about_concept_list_ttl span {
  padding: 0 10px 0 0;
  font-size: 60px;
  font-weight: normal;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  color: #183883;
}
@media screen and (max-width: 768px) {
  .about_concept_list_ttl span {
    padding: 0 10px 2px 0;
  }
}

.about_concept_list_txt {
  margin: 0 0 0 40px;
  font-size: 16px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .about_concept_list_txt {
    margin: 0;
  }
}

/* 講師紹介 */
#lecture {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  #lecture {
    margin: 0 0 60px;
  }
}

.lecture_inner {
  margin: 0 auto;
  max-width: 1100px;
}
@media only screen and (min-width: 769px) and (max-width: 1099px) {
  .lecture_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .lecture_inner {
    padding: 0 15px;
    width: 100%;
  }
}

.lecture_ttl {
  margin: 0 0  20px;
  font-size: 30px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .lecture_ttl {
    text-align: center;
  }
}
.lecture_ttl span {
  display: inline-block;
  padding: 0 12px;
  border-right: 2px solid #333;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
}
.lecture_ttl span:first-child {
  border-left: 2px solid #333;
}

.lecture_name {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
}
@media screen and (max-width: 768px) {
  .lecture_name {
    text-align: center;
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.4;
  }
}
.lecture_name span {
  display: inline-block;
  padding: 0 8px;
  font-size: 32px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
}
@media screen and (max-width: 768px) {
  .lecture_name span {
    margin: 5px 0 0;
    padding: 0 10px 0 0;
    font-size: 30px;
  }
}

.lecture_profile {
  display: flex;
  padding: 0 0 100px;
  background: url(../img/ph_sato.png) no-repeat right bottom;
  background-size: 320px;
}
@media only screen and (min-width: 769px) and (max-width: 1099px) {
  .lecture_profile {
    background-size: 23%;
  }
}
@media screen and (max-width: 768px) {
  .lecture_profile {
    flex-wrap: wrap;
    background: none;
  }
}

.lecture_profile_ttl {
  margin: 0 0 5px -10px;
  font-size: 18px;
  font-weight: bold;
}

.lecture_profile_biography {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .lecture_profile_biography {
    margin: 0 0 20px;
  }
}

.lecture_profile_biography_list dl {
  display: flex;
  margin: 0 0 10px;
}
.lecture_profile_biography_list dl:last-child {
  margin: 0;
}
.lecture_profile_biography_list dl dt, .lecture_profile_biography_list dl dd {
  width: calc(100% - 80px);
  font-size: 16px;
  line-height: 1.6;
}
.lecture_profile_biography_list dl dt {
  width: 80px;
}

.lecture_profile_book_list ul li {
  margin: 0 0 10px;
  padding: 0 0 0 1em;
  font-size: 16px;
  line-height: 1.6;
  text-indent: -1em;
}
.lecture_profile_book_list ul li::before {
  content: "●";
  position: relative;
  top: -3px;
  font-size: 6px;
}

.lecture_message {
  position: relative;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #ffffff 50%, #ffffff 100%), linear-gradient(180deg, #003586 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 1em 100%, 100% 1.97em;
}
@media screen and (max-width: 768px) {
  .lecture_message {
    background-size: 1em 100%, 100% 2.8em;
  }
}
.lecture_message::before {
  content: '';
  position: absolute;
  top: -84px;
  left: -60px;
  width: 1160px;
  height: 150px;
  background: url(../img/ttl_lecture_message.png) no-repeat left top;
}
@media only screen and (min-width: 769px) and (max-width: 1100px) {
  .lecture_message::before {
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .lecture_message::before {
    top: -35px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url(../img/ttl_lecture_message_sp.png) no-repeat left top;
  }
}
.lecture_message p {
  padding: 34px 0 5px;
  text-indent: 1em;
  font-size: 18px;
  line-height: 1.72;
}
@media screen and (max-width: 768px) {
  .lecture_message p {
    padding: 29px 0 0;
    font-size: 16px;
    line-height: 1.75;
  }
}

/* 講座プログラム */
#program {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  #program {
    margin: 0 0 60px;
  }
}

.program_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
@media only screen and (min-width: 769px) and (max-width: 1099px) {
  .program_inner {
    padding: 0 15px;
  }
}

.program_ttl {
  margin: 0 0 40px;
  padding: 20px 15px;
  background: #183883;
}
@media screen and (max-width: 768px) {
  .program_ttl {
    margin: 0 0 20px;
  }
}

.program_ttl_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .program_ttl_inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.program_ttl_maintxt {
  margin: 0 10px 0 0;
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .program_ttl_maintxt {
    margin: 0 0 10px;
    font-size: 24px;
  }
}

.program_list ul li {
  display: flex;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .program_list ul li {
    flex-direction: column;
  }
}
.program_list ul li:last-child {
  margin: 0;
}

.program_list ul li:last-child {
  margin: 0;
}

.program_list_left {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 20px 0 0;
  width: 150px;
  background: #183883;
}
@media screen and (max-width: 768px) {
  .program_list_left {
    margin: 0 0 10px;
    width: 100%;
  }
}

.program_list_num {
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .program_list_num {
    padding: 10px;
  }
}
.program_list_num span {
  padding: 0 5px;
  font-size: 36px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', serif;
}

.program_list_right {
  width: calc(100% - 170px);
}
@media screen and (max-width: 768px) {
  .program_list_right {
    padding: 0 15px;
    width: 100%;
  }
}

.program_list_ttl {
  display: block;
  margin: 0 0 20px;
  padding: 5px 0 10px;
  border-bottom: dotted 2px #333;
  font-size: 26px;
  font-weight: bold;
  color: #DB4F2E;
}
@media screen and (max-width: 768px) {
  .program_list_ttl {
    font-size: 20px;
    line-height: 1.2;
  }
}

.program_list_detail ul li {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px;
}
.program_list_detail ul li:last-child {
  margin: 0;
}

.program_list_detail_ttl {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: bold;
  color: #183883;
}
@media screen and (max-width: 768px) {
  .program_list_detail_ttl {
    margin: 0 0 10px;
    padding: 0 0 0 1.9em;
    font-size: 18px;
    text-indent: -1.9em;
    line-height: 1.2;
  }
}
.program_list_detail_ttl span {
  position: relative;
  top: -2px;
  margin: 0 8px 0 0;
  padding: 0 8px;
  font-size: 20px;
  background: #183883;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .program_list_detail_ttl span {
    top: -1px;
    padding: 0 8px 0 7px;
    font-size: 18px;
  }
}

.program_list_detail_list ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .program_list_detail_list ul {
    flex-direction: column;
  }
}
.program_list_detail_list ul li {
  display: inline-block;
  margin: 0 20px 10px 0 !important;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .program_list_detail_list ul li {
    margin: 0 0 5px !important;
    padding: 0 0 0 1em;
    font-size: 16px;
    line-height: 1.4;
    text-indent: -1em;
  }
}
.program_list_detail_list ul li::before {
  content: "●";
  position: relative;
  top: -1px;
  color: #AA9D82;
}

.program_list_detail_practice {
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .program_list_detail_practice {
    flex-direction: column;
    align-items: flex-start;
  }
}
.program_list_detail_practice span {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 5px;
  font-size: 14px;
  background: #AA9D82;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .program_list_detail_practice span {
    margin: 0 0 5px;
  }
}

.program-caution {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0 0;
  font-size: 14px;
  line-height: 1.5;
  text-indent: -14px;
  color: #FF0000;
}
@media screen and (max-width: 768px) {
  .program-caution {
    padding: 0 15px 0 28px;
  }
}

/* 受講料 */
#fee {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  #fee {
    margin: 0 0 60px;
  }
}

.fee_inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1140px;
}
@media screen and (max-width: 768px) {
  .fee_inner {
    padding: 0 15px;
    width: 100%;
  }
}

.fee_ttl {
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  background: #DB4F2F;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .fee_ttl {
    font-size: 16px;
    line-height: 1.2;
  }
}

.fee_price {
  display: flex;
  margin: 0 0 15px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .fee_price {
    display: block;
    border: 1px solid #000;
  }
}

.fee_price_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  text-align: center;
  min-width: 200px;
  font-size: 30px;
  line-height: 1.4;
  background: #E6E6E7;
}
@media screen and (max-width: 768px) {
  .fee_price_ttl {
    font-size: 20px;
    padding: 5px 0;
  }
}
.fee_price_ttl span {
  font-size: 16px;
}

.fee_price_info {
  width: 100%;
}

.fee_price_info_block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fee_price_info_block {
    display: block;
    padding: 10px;
  }
}
.fee_price_info_block:not(:last-child) {
  border-bottom: 3px dashed #000;
}
@media screen and (max-width: 768px) {
  .fee_price_info_block:not(:last-child) {
    border-bottom: 2px dashed #000;
  }
}
.fee_price_info_block p {
  text-align: right;
  margin: 0 15px 0 0;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .fee_price_info_block p {
    text-align: center;
    margin: 0 0 5px;
    font-size: 14px;
  }
}
.fee_price_info_block.fee_price_info_block__special {
  color: #FF0000;
}

.fee_price_info_price {
  font-size: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fee_price_info_price {
    text-align: center;
    margin: 0;
    font-size: 25px;
  }
}
.fee_price_info_price span {
  margin: 0 5px 0 0;
  font-size: 45px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fee_price_info_price span {
    font-size: 35px;
  }
}

/* オンライン研修 */
.ondemand {
  display: flex;
  justify-content: center;
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .ondemand {
    margin: 0 15px 60px;
  }
}

.ondemand-inner {
  position: relative;
  margin: 0 20px;
  padding: 20px;
  width: 100%;
  max-width: 960px;
  border: 5px solid #4978BC;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .ondemand-inner {
    margin: 0;
  }
}

.ondemand-ttl {
  text-align: center;
  margin-bottom: 10px;
}
.ondemand-ttl span {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.7;
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, #ddf2fc 60%);
  color: #02407E;
}
@media screen and (max-width: 768px) {
  .ondemand-ttl span {
    font-size: 18px;
    line-height: 1.5;
  }
}

.ondemand-info ul li {
  padding: 0 0 5px 22px;
  text-indent: -22px;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 768px) {
  .ondemand-info ul li {
    padding: 0 0 5px 20px;
    text-indent: -20px;
    font-size: 14px;
  }
}
.ondemand-info ul li::before {
  content: "●";
  position: relative;
  top: -1px;
  padding: 0 5px 0 0;
  color: #02407E;
}
.ondemand-info ul li span {
  display: block;
  padding: 0 0 0 16px;
  text-indent: -16px;
  color: #FF3366;
}
.ondemand-info ul li span::before {
  content: "◎";
}
.ondemand-info ul li.ondemand-notice {
  margin: 5px 0 0;
  padding: 0 0 5px 18px;
  text-indent: -18px;
  font-size: 13px;
}
.ondemand-info ul li.ondemand-notice::before {
  content: "※";
}

.ondemand-icon {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .ondemand-icon {
    display: none;
  }
}

/* お問い合わせ */
.contactform {
  padding: 90px 0 70px;
  background: #EFEFEF;
}
@media screen and (max-width: 768px) {
  .contactform {
    padding: 60px 0 40px;
  }
}

.applicationform-table-radio ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0 0;
}
.applicationform-table-radio ul li label input[type="radio"] {
  position: relative;
  top: 4px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
}

.applicationform-table table tr td select.short {
  margin: 0;
  width: 250px;
}
.applicationform-table table tr.required-name2-box, .applicationform-table table tr.required-name3-box, .applicationform-table table tr.required-name4-box {
  display: none;
}
.applicationform-table table tr.required-name2-box.open, .applicationform-table table tr.required-name3-box.open, .applicationform-table table tr.required-name4-box.open {
  display: block;
}

.applicationform-table-checklist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .applicationform-table-checklist ul li label {
    margin: 0;
  }
}
.applicationform-table-checklist ul li input {
  margin: 0 5px 0 0;
}
.applicationform-table-checklist ul li textarea {
  margin: 10px 0 0;
}
.applicationform-table-checklist ul li:last-child {
  width: 100%;
}

/* お問い合わせ 確認画面用 */
.applicationform-confirm {
  margin: 0 0 80px;
  padding: 80px 0 70px;
  background: #e6e6ef;
}
@media screen and (max-width: 1180px) {
  .applicationform-confirm {
    padding: 50px 15px 40px;
  }
}
.applicationform-confirm .applicationform-confirm-inner {
  margin: 0 auto;
  width: 1180px;
}
@media screen and (max-width: 1180px) {
  .applicationform-confirm .applicationform-confirm-inner {
    width: 100%;
  }
}
.applicationform-confirm .applicationform-confirm-title {
  text-align: center;
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: bold;
  color: #192347;
}
@media screen and (max-width: 768px) {
  .applicationform-confirm .applicationform-confirm-title {
    margin: 0 0 30px;
    font-size: 24px;
  }
}

/* お問い合わせ 確認画面・完了画面用 */
.seminarlp-confirm #container,
.seminarlp-thanks #container {
  background: #FFF;
}
