@charset "UTF-8";
/*リセットcss
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

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

/* ルートフォント設定(PCファースト)
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (min-width: 1700px) {
  html {
    font-size: 0.5882352941vw;
  }
}
@media screen and (max-width: 1010px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1010 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(10 / 375 * 100vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* スクロール設定
***************************************************************/
html {
  scroll-padding-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 6rem;
  }
}

/* base（基本）設定
***************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

picture,
video,
img,
svg {
  width: 100%;
  height: 100%;
}

/* PC時は電話番号リンクを無効化
***************************************************************/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* アニメーション
***************************************************************/
/*下からふわっ */
.fade-in-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* mainレイアウト
***************************************************************/
.lp-seminar__main {
  overflow: visible;
  width: 100%;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__main {
    margin-top: 6rem;
  }
}

/* 共通inner
***************************************************************/
.lp-seminar__inner {
  position: relative;
  width: 100%;
  max-width: 101rem;
  height: inherit;
  padding: 0 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp-seminar__inner {
    width: 100%;
    max-width: 63.2rem;
    padding: 0 1.6rem;
  }
}

/* ヘッダー
***************************************************************/
.lp-seminar__header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
}

.lp-seminar____inner {
  display: grid;
  grid-template-columns: 17.3rem auto;
  gap: 2rem;
  padding-inline: 2rem;
  padding-block: 1rem;
  max-width: 101rem;
  margin-inline: auto;
  align-items: center;
  height: 7.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar____inner {
    padding-inline: 1.6rem;
    padding-block: 1rem;
    height: 6rem;
  }
}

.lp-seminar__header-logo {
  width: 19.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__header-logo {
    width: 12.2rem;
  }
}

.lp-seminar__header-logo-img {
  width: auto;
  height: auto;
}

.lp-seminar__header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.9rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__header-nav {
    gap: 0;
    justify-content: flex-end;
  }
}

.lp-seminar__header-nav-label {
  color: #ffffff;
  background-color: #000000;
  padding: 5px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 1rem;
  flex-shrink: 0;
}
.lp-seminar__header-nav-label img {
  max-width: 12.81px;
}

.lp-seminar__header-nav-text {
  text-align: center;
  width: 80%;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .lp-seminar__header-nav-text {
    display: none;
  }
}
.lp-seminar__header-nav-text span {
  color: #FE7F2D;
  font-size: 2rem;
}

/* ヘッダー用CTA
***************************************************************/
.lp-seminar__header-nav-cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* 共通ボタン
***************************************************************/
.lp-seminar__button {
  height: 7rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2142857143;
  letter-spacing: 0em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 18.6rem;
  padding-inline: 1.9rem;
  background: #FE7F2D;
  border: 0.2rem solid transparent;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-seminar__button {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__button {
    max-width: 100%;
  }
}
.lp-seminar__button span:nth-child(1) {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button span:nth-child(1) {
    font-size: 1.4rem;
  }
}
.lp-seminar__button span:nth-child(2) {
  color: #FE7F2D;
  background-color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0em;
  display: block;
  width: 100%;
  text-align: center;
  height: 2.4rem;
  border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button span:nth-child(2) {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__button span:nth-child(2) {
    max-width: 14.8rem;
  }
}
@media (any-hover: hover) {
  .lp-seminar__button:hover {
    opacity: 0.7;
  }
}

.lp-seminar__button-header {
  height: 4rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2142857143;
  letter-spacing: 0em;
  white-space: nowrap;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 10.4rem;
  background: #FE7F2D;
  border: 0.2rem solid transparent;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button-header {
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .lp-seminar__button-header:hover {
    opacity: 0.7;
  }
}

.lp-seminar__button--blue {
  color: #ffffff;
  background: #0098BB;
}
.lp-seminar__button--blue span:nth-child(1) {
  color: #ffffff;
}
.lp-seminar__button--blue span:nth-child(2) {
  color: #0098BB;
  background-color: #ffffff;
}

.lp-seminar__button--m {
  height: 7.4rem;
  border-radius: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.8333333333;
  letter-spacing: 0em;
  gap: 0.6rem;
  width: 100%;
  max-width: 34rem;
  padding-inline: 7.7rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--m {
    font-size: 2.4rem;
  }
}
.lp-seminar__button--m span:nth-child(2) {
  max-width: 17.7rem;
  margin: 0 auto;
}

.lp-seminar__button--l {
  height: 14rem;
  border-radius: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.8333333333;
  letter-spacing: 0em;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  padding-inline: 7.7rem;
  border: 0.5rem solid #ffffff;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l {
    height: 12rem;
    gap: 1.2rem;
    padding-inline: 3.7rem;
  }
}
.lp-seminar__button--l span:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.8333333333;
  letter-spacing: 0em;
  position: relative;
  padding: 0 3.3rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(1) {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(1) {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.9090909091;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(1) {
    font-size: 2.2rem;
  }
}
.lp-seminar__button--l span:nth-child(1):before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.lp-seminar__button--l span:nth-child(1):after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.lp-seminar__button--l span:nth-child(2) {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.1em;
  height: 4.4rem;
  border-radius: 2.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(2) {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(2) {
    height: 4.2rem;
    border-radius: 2.1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2222222222;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__button--l span:nth-child(2) {
    font-size: 1.8rem;
  }
}

.lp-seminar__form-group label {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 0.9333333333;
  letter-spacing: 0em;
  margin-bottom: 8px;
  display: block;
}
@media screen and (max-width: 767px) {
  .lp-seminar__form-group label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__form-group label {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__form-group label {
    font-size: 1.4rem;
  }
}
.lp-seminar__form-group + .lp-seminar__form-group {
  margin-top: 2rem;
}

.lp-seminar__form-group-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}
.lp-seminar__form-group-set .lp-seminar__form-group {
  margin-top: 0;
}
.lp-seminar__form-group-set + .lp-seminar__form-group {
  margin-top: 2rem;
}

.lp-seminar__form-group-input {
  position: relative;
}
.lp-seminar__form-group-input input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F3F3F5;
  border: none;
  outline: none;
  padding: 9.5px 12px;
  font-size: 1.4rem;
  border-radius: 8px;
  width: 100%;
  height: 3.6rem;
}

.lp-seminar__form-select {
  position: relative;
}
.lp-seminar__form-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F3F3F5;
  border: none;
  outline: none;
  padding: 9.5px 12px;
  font-size: 1.4rem;
  border-radius: 8px;
  width: 100%;
  height: 3.6rem;
}
.lp-seminar__form-select:after {
  content: "";
  width: 8px;
  height: 4px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  background-image: url(../../img/seminar/icn_pulldown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.required {
  font-size: 1.2rem;
  font-weight: 700;
  color: #DD1C1A;
  background-color: rgba(255, 182, 185, 0.6);
  padding: 2.5px 5px;
  border-radius: 4px;
  margin-left: 4px;
}

.cap {
  font-size: 12px;
  color: #99A1AF;
}

.lp-seminar__form-btn-area {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__form-btn-area {
    grid-template-columns: 1fr;
  }
}

/* セクション共通見出し
***************************************************************/
.lp-seminar__section-head {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
}

.lp-seminar__section-head-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}

.lp-seminar__section-head-sub {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4285714286;
  letter-spacing: 0.0714285714em;
  color: #0098BB;
  font-family: "DM Sans", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  height: 36px;
  border-radius: 18px;
  border: solid 1px #0098BB;
  padding-inline: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__section-head-sub {
    font-size: 1.4rem;
  }
}
.lp-seminar__section-head-sub img {
  width: 18px;
}

.lp-seminar__section-head-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0em;
  color: #101828;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__section-head-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__section-head-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    margin-bottom: 0rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__section-head-title {
    font-size: 3rem;
  }
}

.lp-seminar__section-head-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #4A5565;
}
@media screen and (max-width: 767px) {
  .lp-seminar__section-head-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__section-head-text {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.7647058824;
    letter-spacing: 0em;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__section-head-text {
    font-size: 1.7rem;
  }
}

/* fv
***************************************************************/
.lp-seminar__fv {
  position: relative;
  padding-block: 3rem 4.8rem;
  background: url(../../img/seminar/img_fv--pc2.webp) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv {
    padding-block: 0 3rem;
  }
}

.lp-seminar__fv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .lp-seminar__fv-info {
    padding-top: 4rem;
  }
}

.lp-seminar__fv-label {
  color: #ffffff;
  background-color: #000000;
  padding: 5px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-label {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 5px 0;
  }
}
.lp-seminar__fv-label img {
  max-width: 12.81px;
}

.lp-seminar__fv-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.05em;
  color: #101828;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-title {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__fv-title {
    font-size: 3rem;
  }
}

.lp-seminar__fv-title-img {
  max-width: 46rem;
  margin: 0 auto;
}

.lp-seminar__fv-date {
  background-color: #ffffff;
  border: solid 5px #50C3DC;
  border-radius: 2rem;
  padding: 5rem 0rem 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 17rem;
  grid-gap: 0rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-date {
    margin-top: 11rem;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    padding: 3.2rem 1.6rem 1.6rem;
  }
}
.lp-seminar__fv-date:before {
  content: "";
  width: 100%;
  max-width: 44rem;
  height: 20rem;
  background-image: url(../../img/seminar/img_fv-date--pc2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -16rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-date:before {
    max-width: calc(100% - 32px);
    top: -11rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-date-item {
    text-align: center;
  }
}
.lp-seminar__fv-date-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
  padding: 0 15px;
  border-radius: 1.2rem;
  color: #0098BB;
  border: solid 1px #0098BB;
  display: inline-block;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-date-item h4 {
    margin: 0 auto;
  }
}
.lp-seminar__fv-date-item p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-date-item p {
    text-align: left;
  }
}
.lp-seminar__fv-date-item p:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #0098BB;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
.lp-seminar__fv-date-item p span {
  font-size: 1.3rem;
}
.lp-seminar__fv-date-item:nth-child(2) h4 {
  color: #FE7F2D;
  border: solid 1px #FE7F2D;
}
.lp-seminar__fv-date-item:nth-child(2) p:before {
  background-color: #FE7F2D;
}

@media screen and (max-width: 767px) {
  .lp-seminar__fv-date-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.lp-seminar__fv-form {
  padding-top: 1.8rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-form {
    padding: 0rem;
  }
}

.lp-seminar__fv-form-inner {
  height: 100%;
  background-color: #ffffff;
  border-radius: 2.4rem;
  box-shadow: 10px 25px 50px -12px rgba(0, 0, 0, 0.1);
  padding: 3.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-form-inner {
    border-radius: 2rem;
  }
}
.lp-seminar__fv-application {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__fv-application {
    display: none;
  }
}

.lp-seminar__fv-application-inner {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}

.lp-seminar__fv-basics-area {
  width: 50%;
  min-height: 14rem;
  border-radius: 20px;
  border: 5px solid #ffffff;
  background: #0098BB;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp-seminar__fv-basics-lead {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.lp-seminar__fv-basics-lead::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-image: url(../../img/seminar/img_fv-lead__pc-l.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: -3.4rem;
  transform: translateY(-50%);
}
.lp-seminar__fv-basics-lead::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-image: url(../../img/seminar/img_fv-lead__pc-r.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: -3.4rem;
  transform: translateY(-50%);
}

.lp-seminar__fv-basics-btn {
  border-radius: 2.2rem;
  background: #FFF;
  width: 31.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}
.lp-seminar__fv-basics-btn a {
  display: block;
  text-align: center;
  color: #0098BB;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 100% */
  letter-spacing: 0.2rem;
}

.lp-seminar__fv-advanced-area {
  width: 50%;
  min-height: 14rem;
  border-radius: 2rem;
  border: 5px solid #ffffff;
  background: #FE7F2D;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp-seminar__fv-advanced-lead {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.lp-seminar__fv-advanced-lead::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-image: url(../../img/seminar/img_fv-lead__pc-l.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: -3.4rem;
  transform: translateY(-50%);
}
.lp-seminar__fv-advanced-lead::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-image: url(../../img/seminar/img_fv-lead__pc-r.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: -3.4rem;
  transform: translateY(-50%);
}

.lp-seminar__fv-advanced-btn {
  border-radius: 2.2rem;
  background: #FFF;
  width: 31.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}
.lp-seminar__fv-advanced-btn a {
  display: block;
  text-align: center;
  color: #0098BB;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 100% */
  letter-spacing: 0.2rem;
}

/* about
***************************************************************/
.lp-seminar__about {
  padding-block: 0;
  position: relative;
}

.lp-seminar__about-head {
  background-color: #0098BB;
  padding-bottom: 9rem;
  position: relative;
  padding-top: 5rem;
}
.lp-seminar__about-head:after {
  content: "";
  width: 9.067rem;
  height: 5rem;
  display: block;
  background-image: url(../../img/seminar/img_about-arrow--pc.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-head:after {
    bottom: 1.5rem;
  }
}

.lp-seminar__about-case-top {
  margin-top: 3.2rem;
}

.lp-seminar__about-case-top h3 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-case-top h3 {
    font-size: 2.8rem;
  }
}

.lp-seminar__about-case-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-case-box {
    display: block;
  }
}

.lp-seminar__about-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-seminar__about-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.7777777778;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__about-text {
    font-size: 1.8rem;
  }
}

.lp-seminar__about-text--2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.0357142857em;
  color: #ffffff;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--2 {
    font-size: 2.8rem;
  }
}
.lp-seminar__about-text--2:before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: #00AED4;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--2:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5714285714;
    letter-spacing: 0.0357142857em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__about-text--2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--2 span {
    position: relative;
  }
  .lp-seminar__about-text--2 span:before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #00AED4;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
}

.lp-seminar__about-body {
  position: relative;
  padding-top: 10.6rem;
  padding-bottom: 8.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-body {
    padding-top: 6.8rem;
    padding-bottom: 6.2rem;
  }
}
.lp-seminar__about-body:after {
  content: "";
  width: 6.7rem;
  height: 3.8rem;
  display: block;
  background-image: url(../../img/seminar/img_about-arrow--pc.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
}

.lp-seminar__about-body-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0em;
  text-align: center;
  color: #101828;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-body-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-body-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4285714286;
    letter-spacing: -0.0357142857em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__about-body-title {
    font-size: 2.8rem;
  }
}

.lp-seminar__about-body-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  text-align: center;
  color: #4A5565;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-body-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-body-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    text-align: left;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__about-body-text {
    font-size: 1.8rem;
  }
}

.lp-seminar__about-case-title {
  text-align: center;
  margin-bottom: 2.8rem;
}

.lp-seminar__about-case-title-img {
  margin: 0 auto;
  max-width: 64.2rem;
}

.lp-seminar__about-case {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-case {
    grid-template-columns: 1fr;
  }
}

.lp-seminar__about-case-item {
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 2px 2px 15px -1px rgba(0, 0, 0, 0.1);
  padding: 2.9rem 1.4rem;
}
.lp-seminar__about-case-item figure {
  margin-bottom: 1.6rem;
}
.lp-seminar__about-case-item h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.0225em;
  color: #101828;
  text-align: center;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-case-item h3 {
    font-size: 2rem;
  }
}
.lp-seminar__about-case-item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -0.019375em;
  color: #4A5565;
  text-align: left;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-case-item p {
    font-size: 1.6rem;
  }
}

.lp-seminar__about-text--3 {
  text-align: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 {
    margin-bottom: 3.2rem;
  }
}
.lp-seminar__about-text--3 h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0em;
  color: #101828;
  position: relative;
  display: inline-block;
  margin-bottom: 2.55rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 h3 {
    font-size: 2.6rem;
  }
}
.lp-seminar__about-text--3 h3 .blue {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.5384615385;
  letter-spacing: 0em;
  color: #0098BB;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 h3 .blue {
    font-size: 2.6rem;
  }
}
.lp-seminar__about-text--3 h3 .line {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 h3 .line:before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: rgba(186, 231, 243, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
}
.lp-seminar__about-text--3 h3:before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: rgba(186, 231, 243, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 h3:before {
    display: none;
  }
}
.lp-seminar__about-text--3 p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #101828;
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__about-text--3 p {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.7777777778;
    letter-spacing: 0.0555555556em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__about-text--3 p {
    font-size: 1.8rem;
  }
}

/* cta
***************************************************************/
.lp-seminar__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__cta {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}

/* curriculum
***************************************************************/
.lp-seminar__curriculum {
  padding-block: 6.4rem;
  background: #E6F5F8;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum {
    padding-block: 3.2rem 6rem;
  }
}

.lp-seminar__curriculum-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.4rem;
    margin-block-start: 2.4rem;
  }
}

.lp-seminar__curriculum-card {
  display: grid;
  grid-template-rows: 7.5rem auto;
}

.lp-seminar__curriculum-card-img {
  text-align: center;
  margin-bottom: 1.6rem;
}
.lp-seminar__curriculum-card-img h3 img {
  max-width: 26.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum-card-img h3 img {
    max-width: 22rem;
  }
}

.lp-seminar__curriculum-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.07);
  padding: 3.2rem 2.4rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum-card-body {
    margin-block-start: 0;
    gap: 1.2rem;
  }
}
.lp-seminar__curriculum-card-body ul {
  padding-left: 2.8rem;
  margin-bottom: 1rem;
}
.lp-seminar__curriculum-card-body ul li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  color: #4A5565;
  padding: 3px 0;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum-card-body ul li {
    font-size: 1.4rem;
  }
}
.lp-seminar__curriculum-card-body ul li:before {
  content: "・";
  color: #0098BB;
}

.lp-seminar__curriculum-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #0098BB;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__curriculum-card-title {
    font-size: 1.6rem;
  }
}
.lp-seminar__curriculum-card-title img {
  width: 2rem;
}

.lp-seminar__curriculum-btn {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding-top: 3rem;
  text-align: center;
}
.lp-seminar__curriculum-btn .lp-seminar__button {
  margin: 0 auto;
}

/* event
***************************************************************/
.lp-seminar__event {
  padding-block: 6.4rem;
  background-color: #F7F6F4;
}
@media screen and (max-width: 767px) {
  .lp-seminar__event {
    padding-block: 4.8rem 6rem;
  }
}

.lp-seminar__event-container {
  margin-block-start: 4.8rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-container {
    margin-block-start: 3.2rem;
  }
}

.lp-seminar__event-contents {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 3.2rem 5rem;
  box-shadow: 4px 4px 20px -1px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-contents {
    border-radius: 20px;
    padding: 2.4rem 2rem;
  }
}

.lp-seminar__event-step + .lp-seminar__event-step {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2.4rem;
  margin-top: 2.4rem;
}

.lp-seminar__event-step-num {
  margin-bottom: 1rem;
}

.lp-seminar__event-step-num-text {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.0035em;
  color: #101828;
  display: flex;
  grid-gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-step-num-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-step-num-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.8333333333;
    letter-spacing: 0.0038888889em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__event-step-num-text {
    font-size: 1.8rem;
  }
}
.lp-seminar__event-step-num-text img {
  width: 28px;
}

.lp-seminar__event-step-body {
  flex: 1;
}

.lp-seminar__event-step-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6277777778;
  letter-spacing: 0em;
  color: #4A5565;
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-step-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__event-step-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.83125;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__event-step-text {
    font-size: 1.6rem;
  }
}
.lp-seminar__event-step-text b {
  color: #0098BB;
}

/* support
***************************************************************/
.lp-seminar__support {
  padding-block: 9.6rem;
  background: #126C84;
}
@media screen and (max-width: 767px) {
  .lp-seminar__support {
    padding-block: 4.8rem 6rem;
    padding-inline: 1.6rem;
  }
}

.lp-seminar__support-head {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__support-head {
    margin-bottom: 4rem;
  }
}

.lp-seminar__support-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__support-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__support-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5833333333;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__support-title {
    font-size: 2.4rem;
  }
}

.lp-seminar__support-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-seminar__support-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-seminar__support-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .lp-seminar__support-text {
    font-size: 1.6rem;
  }
}

/* ディスプレイ表示切り替え
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */
