@charset "UTF-8";
/* ----------------------------------------------
    セミナー一覧
---------------------------------------------- */
.seminar-list__container {
  width: 884px;
}
@media screen and (max-width: 767px) {
  .seminar-list__container {
    width: 100%;
  }
}

.seminar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px 20px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .seminar__list {
    display: block;
    margin-bottom: 40px;
  }
}

.seminar__item {
  width: 406px;
}
@media screen and (max-width: 767px) {
  .seminar__item {
    width: 100%;
  }
}
.seminar__item a {
  display: block;
}

@media screen and (max-width: 767px) {
  .seminar__item:not(:last-of-type) {
    margin-bottom: 56px;
  }
}

.seminar__item-img-box {
  width: 100%;
  height: auto;
  aspect-ratio: 406/241;
  margin-bottom: 16px;
}
.seminar__item-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.seminar__item-cat {
  margin-right: 20px;
}
.seminar__item-cat-item {
  display: inline-block;
  background-color: #2654b5;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding: 3px 6px;
}
@media screen and (max-width: 767px) {
  .seminar__item-cat-item {
    font-size: 1.2rem;
  }
}

.seminar__item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .seminar__item-title {
    font-size: 1.6rem;
  }
}

.thumb-wrap {
  margin-bottom: 16px;
}
.thumb-wrap img {
  width: auto;
  max-width: 100%;
}

.seminar__item-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 14px;
  margin-top: 20px;
}
.seminar__item-tag-item {
  font-size: 1.3rem;
  color: #21177c;
  line-height: 1;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .seminar__item-tag-item {
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------
    セミナー詳細
---------------------------------------------- */
#single-seminar .inner.single-seminar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 104px;
}
@media screen and (max-width: 767px) {
  #single-seminar .inner.single-seminar-inner {
    display: block;
    width: 100%;
    padding: 40px 0 64px;
  }
}

.single__container {
  width: 547px;
}
@media screen and (max-width: 767px) {
  .single__container {
    width: 100%;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .single__inner {
    width: 88%;
    margin: auto;
  }
}

.single__content {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .single__content {
    font-size: 1.4rem;
  }
}

.thumb-wrap {
  margin-bottom: 32px;
}
.single__recommend {
  background-color: #fff;
  padding: 24px 16px;
  margin-top: 32px;
}
.single__recommend-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.single__recommend-item {
  text-indent: -24px;
  margin-left: 24px;
}
.single__recommend-item::before {
  content: "";
  display: inline-block;
  background: url(../img/common/icon-check.svg) no-repeat center/contain;
  width: 16px;
  height: 30px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  margin-right: 8px;
}

.seminar-form {
  width: 547px;
}
@media screen and (max-width: 767px) {
  .seminar-form {
    width: 100%;
  }
}

.seminar-form__text {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .seminar-form__text {
    font-size: 1.4rem;
  }
}

.seminar-form__wrap {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.11);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.11);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .seminar-form__wrap {
    padding: 40px 16px;
  }
}
.seminar-form__wrap dl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .seminar-form__wrap dl {
    margin-bottom: 20px;
  }
}
.seminar-form__wrap dt,
.seminar-form__wrap dd {
  font-size: 1.4rem;
}
.seminar-form__wrap dt {
  font-weight: 700;
  margin-bottom: 4px;
}
.seminar-form__wrap .caution {
  color: #be2c3b;
}
.seminar-form__wrap input:not([type=checkbox]):not([type=submit]),
.seminar-form__wrap select {
  display: block;
  background-color: #f4f4f4;
  width: 100%;
  height: auto;
  border-radius: 4px;
  padding: 11px 16px;
}
.seminar-form__wrap input::-webkit-input-placeholder {
  color: #929292;
}
.seminar-form__wrap input::-moz-placeholder {
  color: #929292;
}
.seminar-form__wrap input:-ms-input-placeholder {
  color: #929292;
}
.seminar-form__wrap input::-ms-input-placeholder {
  color: #929292;
}
.seminar-form__wrap input::placeholder {
  color: #929292;
}
.seminar-form__wrap .privacy-btn {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .seminar-form__wrap .privacy-btn {
    font-size: 1.4rem;
  }
}
.seminar-form__wrap .privacy-btn .wpcf7-list-item {
  margin: 0;
}
.seminar-form__wrap .privacy-btn label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.seminar-form__wrap .privacy-btn input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f4f4f4;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  position: relative;
  margin-right: 6px;
}
.seminar-form__wrap .privacy-btn input[type=checkbox]:checked::before {
  content: "";
  display: block;
  background: none;
  border-radius: 0;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 16px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.seminar-form__wrap .privacy-btn a {
  color: #21177c;
  text-decoration: underline;
}
.seminar-form__wrap .privacy-btn a::after {
  content: "";
  display: inline-block;
  background: url(../img/contact/icon-link.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 4px;
}
@media screen and (max-width: 767px) {
  .seminar-form__wrap .privacy-btn a::after {
    width: 14px;
    height: 14px;
  }
}

.submit-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.submit-btn input[type=submit] {
  display: block;
  background-color: #be2c3b;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width: 200px;
  height: 56px;
  border-radius: 40px;
}

.re-seminar-btn {
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.re-seminar-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #be2c3b;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  width: 200px;
  height: 56px;
  border-radius: 40px;
}

/* js */
.re-seminar-btn.js-show {
  display: block;
}

/* contact form7 */
.wpcf7 form.sent .wpcf7-response-output {
  margin-top: 0;
}/*# sourceMappingURL=seminar.css.map */