@charset "UTF-8";
/* --------------------------------
  各変数
-------------------------------- */
:root {
  --wd-base: 1024px;
  --wd-xxs: 598px;
  --wd-xs: 780px;
  --wd-s: 890px;
  --wd-m: 1240px;
  --ma-xxs: 1rem;
  --ma-xs: 2rem;
  --ma-s: 4rem;
  --ma-m: 6rem;
  --ma-l: 8rem;
  --ma-xl: 10rem;
  --ma-xxl: 12rem;
  --color-base: #fff;
  --color-main: #001B46;
  --color-ac: #E0F5FF;
  --color-ac2: #2c98cc;
  --color-ac3: #004F79;
  --color-text: #333;
}

/* --------------------------------
  scss cmn set
-------------------------------- */
/* --------------------------------
  commnon
-------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 480px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 480px) {
  .sp {
    display: none;
  }
}

.ws-nowrap {
  white-space: nowrap;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.fw-700 {
  font-weight: 700;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  transition: 0.4s;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width: 480px) {
  .page-top {
    bottom: 40px;
  }
}

.page-top__body {
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: #3295CC;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px #777777;
}

.page-top__arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -8px;
}

.link-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 10.8px;
  border-color: transparent transparent transparent #24B089;
}

.full-width {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.section:not(:first-child) {
  margin: 6rem 0 0;
}
@media screen and (min-width: 780px) {
  .section:not(:first-child) {
    margin: 6rem 0 0;
  }
}

.section--bg {
  background: #536278;
  padding: 6rem 0;
}
@media screen and (min-width: 780px) {
  .section--bg {
    padding: 6rem 0;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.container--base {
  max-width: var(--wd-base);
}

.container--xxs {
  max-width: var(--wd-xxs);
}

.container--xs {
  max-width: var(--wd-xs);
}

.container--s {
  max-width: var(--wd-s);
}

.container--m {
  max-width: var(--wd-m);
}

.container--full {
  margin: 0 calc(50% - 50vw);
  padding: 0;
}

.container-full {
  margin: 0 calc(50% - 50vw);
  padding: 0 10px;
}

.head-1 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.head-1--white {
  color: var(--color-base);
}

.head-1-inner {
  display: inline-block;
  padding-bottom: 10px;
  line-height: 1;
  border-bottom: 6px solid #000;
}

.head-1--white .head-1-inner {
  border-color: var(--color-base);
}

@media screen and (min-width: 480px) {
  .head-1 {
    font-size: 32px;
  }
}
.btn-1 {
  display: inline-block;
  padding: 18px 28px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background: rgb(2, 117, 178);
  background: linear-gradient(180deg, rgb(2, 117, 178) 8%, rgb(31, 47, 4) 100%);
  border: 1px solid #333;
  border-radius: 10vw;
  cursor: pointer;
}

.btn-1.btn-1--gray {
  background: rgb(105, 105, 105);
  background: linear-gradient(180deg, rgb(105, 105, 105) 8%, rgb(31, 47, 4) 100%);
  border: 1px solid #333;
}

.btn-1 img {
  display: inline-block;
  width: 20px;
  margin-left: 10px;
}

/* --------------------------------
  body
-------------------------------- */
body {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
}
@media screen and (min-width: 780px) {
  body {
    font-size: 1.6rem;
  }
}

/* --------------------------------
  header
-------------------------------- */
.header {
  width: 100%;
  color: var(--color-base);
  background: #0D1430;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.header-logo {
  max-width: 40px;
  margin-right: 20px;
}

.header-text {
  font-size: calc(20px - 1.2vw);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header-text span {
  color: #FFF500;
}

@media screen and (min-width: 480px) {
  .header-logo {
    max-width: 50px;
  }
  .header-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 780px) {
  .header-text {
    font-size: 32px;
  }
}
/* --------------------------------
  mainWrapper
-------------------------------- */
/* --------------------------------
  MV
-------------------------------- */
.mv-inner {
  padding: 6rem 2rem;
  text-align: center;
}

.mv-text-1 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.mv-head {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  color: #36436B;
  border-bottom: 6px solid #36436B;
}
.mv-head span {
  color: #853334;
}

.mv-note {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.mv-note span {
  display: inline-block;
  padding: 0 6px;
  font-size: 18px;
  background: #F0F0F0;
  border: 1px solid #000;
}

.mv-note__date {
  margin-top: 8px;
}

.mv-btn {
  max-width: 280px;
  margin: 4rem auto 0;
}

@media screen and (min-width: 480px) {
  .mv-text-1 {
    font-size: calc(27px - 1.6vw);
  }
  .mv-head {
    font-size: calc(5.2rem - 2.3vw);
  }
  .mv-note {
    flex-direction: unset;
    justify-content: center;
    align-items: center;
  }
  .mv-note__date {
    margin-top: 0;
  }
}
@media screen and (min-width: 780px) {
  .mv-text-1 {
    font-size: 27px;
  }
  .mv-head {
    font-size: 5.2rem;
  }
}
/* --------------------------------
  講義要項
-------------------------------- */
.info,
.member {
  color: var(--color-base);
}

.info {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.info img {
  width: 68%;
  margin: 0 auto;
}

.info-text {
  margin: 20px 0 0;
}

@media screen and (min-width: 480px) {
  .info {
    flex-direction: unset;
    align-items: center;
  }
  .info img {
    width: auto;
  }
  .info-text {
    margin: 0 0 0 24px;
  }
}
.member {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.member-col {
  width: 100%;
  max-width: 320px;
}

.member-img {
  padding-top: 100%;
  border-radius: 50%;
}

.member-info {
  margin-top: 10px;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .member {
    gap: 40px;
    margin-top: 60px;
  }
}
/* --------------------------------
  テーブル
-------------------------------- */
.dl-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.dl-row dt,
.dl-row dd {
  margin: 0;
  padding: 6px 20px;
  border-bottom: 1px solid #ccc;
}

.dl-row dt {
  text-align: center;
  font-weight: bold;
  background: #f2f2f2;
  border-right: 1px solid #ccc;
}

.dl-row dt:last-of-type,
.dl-row dd:last-of-type {
  border-bottom: none;
}

@media screen and (min-width: 480px) {
  .dl-row {
    grid-template-columns: 140px 1fr;
  }
}
@media screen and (min-width: 780px) {
  .dl-row {
    grid-template-columns: 200px 1fr;
  }
}
.list {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.list-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 14px;
}

.list-item:not(:first-child) {
  border-top: 1px solid #ccc;
}

.list-marker {
  line-height: 1.4;
}

.list-note {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  font-weight: 700;
  background-color: #E0E0E0;
}

/* --------------------------------
  form
-------------------------------- */
.error-wrap {
  margin-top: 32px;
  padding: 10px;
  background: #E9F0F8;
}

.form-info {
  max-width: 548px;
  margin: 0 auto;
  color: var(--color-base);
}
.form-info a {
  color: #fff;
}

.form-info-col {
  display: flex;
}

.form-info-col::before {
  content: "◉";
  display: inline-block;
  margin-right: 4px;
}

.head-confirm {
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-base);
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form {
  margin-top: 32px;
  border: 1px solid #fff;
  border-radius: 6px;
  overflow: hidden;
}

.form-col:not(:first-child) {
  border-top: 1px solid #fff;
}

.form-col-l {
  display: flex;
  align-items: center;
  font-weight: 800;
  color: var(--color-main);
  background-color: #E9F0F8;
}

.form-col-r {
  flex: 1;
  align-items: center;
  background-color: #fff;
}

.form--check .form-col-r {
  background: #f5f5f5;
}

.form-col-l,
.form-col-r {
  padding: 16px;
}

@media screen and (min-width: 480px) {
  .form-col {
    display: flex;
    flex-wrap: wrap;
  }
  .form-col-l {
    width: 200px;
  }
}
.form-privacy {
  margin: 40px 0 0;
  text-align: center;
  font-size: 14px;
  position: relative;
}

.form-privacy-check {
  margin-top: 20px;
  font-size: 16px;
}

.form-privacy-check label,
.form-privacy-check input {
  cursor: pointer;
}

.required {
  display: block;
  padding: 2px 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  background-color: #D30000;
  border-radius: 6px;
}

.form-col-l span {
  width: 40px;
  margin: 0 6px 0 0;
  text-align: center;
}

.form-btn-area {
  width: 100%;
  max-width: 480px;
  margin: 40px auto 0;
  display: flex;
  position: relative;
}

.form-btn-area--1 {
  justify-content: center;
}

.form-btn-area--2 {
  justify-content: space-between;
}

.form-btn-area--ma-1 {
  margin-top: 6.8rem;
}

.form-btn-area-col {
  width: 48%;
}

.form-col input[type=text],
.form-col input[type=email],
.form-col textarea {
  padding: 16px 10px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.form-col input[type=text],
.form-col input[type=email],
.form-col select {
  width: 100%;
}

.form-col textarea {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.form-thanks {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2vw;
  text-align: center;
  background-color: #fff;
  border: 1px solid #707070;
}

/* --------------------------------
  footer
-------------------------------- */
.footer {
  background-color: #000;
}

.copyright {
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
}/*# sourceMappingURL=style.css.map */