@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.br-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-only {
    display: inline;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .md-flex {
    display: flex;
  }
}

section:not(.hero) {
  padding-block: clamp(40px, 20px + 2.78vw, 60px);
}

section.hero {
  padding-bottom: clamp(40px, 20px + 2.78vw, 60px);
}

.sec-wrap {
  max-width: 950px;
  margin-inline: auto;
  padding-inline: 25px;
}

.h-ttl {
  margin-bottom: clamp(30px, 20px + 1.39vw, 40px);
  color: #3D62AD;
  font-size: clamp(26px, 21.8621px + 1.1034vw, 30px);
  font-weight: 900;
  text-align: center;
}
.h-ttl::after {
  display: block;
  width: 15px;
  height: 15px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: #3D62AD;
  content: "";
}

.cta-btn {
  display: block;
  color: #FFFFFF;
  background: #3D62AD;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}
.cta-btn::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-bottom: 1px;
  margin-left: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transition: transform 0.2s ease;
}
@media (min-width: 769px) {
  .cta-btn:hover::after {
    transform: translateX(8px) rotate(45deg);
  }
}

.cta-btn--fixed {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  padding-block: clamp(16px, 14.2394px + 0.4695vw, 21px);
  padding-left: 0.5em;
  text-align: center;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  transition: all 0.2s ease;
}
.cta-btn--fixed.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta-btn--link {
  position: static;
  width: 300px;
  margin-inline: auto;
  padding: 20px 59px;
  border-radius: 9999px;
}

header {
  position: fixed;
  z-index: 1000;
  top: 2.08vh;
  right: 4.17vw;
}
@media (max-width: 768px) {
  header {
    top: 20px;
    right: 20px;
  }
}

.burger-btn {
  position: relative;
  z-index: 1001;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.burger-btn .burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background: #000000;
  transition: all 0.3s ease;
}
.burger-btn .burger-line:nth-child(1) {
  top: 4px;
}
.burger-btn .burger-line:nth-child(2) {
  top: 12px;
}
.burger-btn .burger-line:nth-child(3) {
  top: 20px;
}
.burger-btn.is-active .burger-line:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.burger-btn.is-active .burger-line:nth-child(2) {
  transform: scale(0);
  opacity: 0;
}
.burger-btn.is-active .burger-line:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

.page-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 22.22vw;
  min-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .page-nav {
    width: 100%;
  }
}
.page-nav.is-open {
  transform: translateX(0);
}

.page-nav__list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 40px;
  height: 100%;
  margin-top: 35%;
}
.page-nav__list li a {
  display: block;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.hero {
  background: linear-gradient(180deg, #FFFFFF 64.9%, #DEEFFF 94.23%);
}

.hero__wrap {
  max-width: 1000px;
  margin-inline: auto;
  container-type: inline-size;
  container-name: hero-container;
}

@media (max-width: 768px) {
  .hero__ttl-wrap {
    flex-direction: column;
  }
}

.hero__seminar-ttl {
  position: relative;
  width: 1300px;
  max-width: 100%;
  margin-inline: auto;
  padding-top: max(30px, min(4.236111vw, 61px));
  padding-bottom: max(61px, min(1.97183vw + 58.26389px, 82px));
  background: url(../image/hero-bg.png) no-repeat center bottom;
  background-size: 716px auto;
}
@container hero-container (max-width: 830px) {
  .hero__seminar-ttl {
    background-size: 100% auto;
  }
}
@media (max-width: 768px) {
  .hero__seminar-ttl {
    background-size: 716px auto;
  }
}

.hero__ttl {
  max-width: 350px;
  margin-inline: auto;
  text-align: center;
}
@container hero-container (max-width: 830px) {
  .hero__ttl {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .hero__ttl {
    max-width: 238px;
  }
}

.hero__speaker {
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(calc(-98% + min((100vw - 1000px) * 0.3, 50px)));
}
.hero__speaker p {
  color: #3D62AD;
}
@media (max-width: 768px) {
  .hero__speaker {
    justify-content: center;
    transform: none;
    margin-inline: auto;
    margin-top: 100px;
  }
}
@media (max-width: 375px) {
  .hero__speaker {
    margin-top: 120px;
  }
}

.hero__speaker-photo {
  flex-shrink: 0;
  width: 190px;
}

.hero__speaker-prof {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 30px;
}

.hero__speaker-ttl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid #3D62AD;
  font-size: 16px;
  font-weight: 700;
}

.hero__speaker-corp {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}

.hero__speaker-pos {
  font-size: 12px;
  font-weight: 700;
}

.hero__speaker-name {
  font-size: 20px;
  font-weight: 700;
}

.hero__info {
  display: grid;
  place-content: center;
  position: absolute;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #3D62AD;
  color: #FFFFFF;
  font-weight: 700;
}

.hero__info-free {
  top: 20px;
  right: 5%;
  font-size: clamp(20px, 19.2958px + 0.1878vw, 22px);
}
@media (max-width: 768px) {
  .hero__info-free {
    top: 364px;
    left: calc(50% - 150px);
  }
}

.hero__info-capa {
  top: 147px;
  right: -7%;
  font-size: 16px;
}
.hero__info-capa p:nth-of-type(1) {
  margin-bottom: 10px;
  text-align: center;
}
.hero__info-capa p:nth-of-type(2) {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__info-capa {
    top: 364px;
    left: calc(50% + 15px);
  }
}

.hero__desc {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(28px, 26.2394px + 0.46948vw, 33px);
  color: #000000;
  font-size: clamp(12px, 10px + 0.5vw, 16px);
  font-weight: 700;
  text-align: center;
}

.overview {
  background: #DEEFFF;
}

.overview__wrap {
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: clamp(30px, 20px + 1.39vw, 40px);
}
@media (max-width: 768px) {
  .overview__wrap {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

.overview__item {
  justify-content: flex-start;
  align-items: center;
}
.overview__item span {
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
  font-weight: normal;
}
@media (max-width: 768px) {
  .overview__item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.overview__item + .overview__item {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .overview__item + .overview__item {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .overview__item dl {
    flex: 1;
    width: 100%;
  }
}
.overview__item dt {
  flex-shrink: 0;
  width: 70px;
  padding-block: 10px;
  margin-right: 1.5em;
  padding-right: 10px;
  border-right: 1px solid #000000;
  font-size: clamp(16px, 1.0417vw + 11.0937px, 20px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .overview__item dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid #000000;
  }
}
.overview__item .overview__target {
  padding-block: 36px;
}
@media (max-width: 768px) {
  .overview__item .overview__target {
    padding-block: 10px;
  }
}
.overview__item dd {
  font-size: clamp(14px, 0.47vw + 12.23px, 16px);
  font-weight: 700;
}

.overview__list-desc {
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
  font-weight: 400;
}

.overview__list {
  margin-bottom: 10px;
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
  font-weight: normal;
}
.overview__list li::before {
  content: "ー";
  margin-right: 0.5em;
}

span.overview__list-desc {
  font-weight: 700;
}

.overview__benefits {
  max-width: 312px;
  padding: 50px 40px;
  border-radius: 10px;
  background: #FFFFFF;
  font-size: 14px;
}
@media (max-width: 768px) {
  .overview__benefits {
    max-width: none;
    margin-top: 30px;
    padding: 25px 30px;
  }
}
.overview__benefits h3 {
  margin-bottom: clamp(20px, 16.4789px + 0.939vw, 30px);
  font-size: clamp(16px, 1.0417vw + 11.0937px, 20px);
  font-weight: 700;
}

.about-pmi {
  background: #FFFFFF;
}

.about-pmi__desc {
  margin-bottom: 20px;
  font-size: clamp(16px, 1.0417vw + 11.0937px, 20px);
  font-weight: 700;
}

.about-pmi__list {
  margin-bottom: clamp(30px, 20px + 1.39vw, 40px);
  font-size: clamp(14px, 0.47vw + 12.23px, 16px);
}
.about-pmi__list li {
  position: relative;
  padding-left: calc(clamp(14px, 0.47vw + 12.23px, 16px) + 10px);
  font-weight: 500;
}
.about-pmi__list li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: clamp(14px, 0.47vw + 12.23px, 16px);
  height: clamp(14px, 0.47vw + 12.23px, 16px);
  border-radius: 50%;
  background-color: #000000;
  content: "";
}
.about-pmi__list > * + * {
  margin-top: 10px;
}

.sessions {
  background: linear-gradient(180deg, #EBF5FF 0%, #B7D4F2 100%);
}

.sessions__description {
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  margin-bottom: clamp(30px, 20px + 1.39vw, 40px);
  font-size: clamp(14px, 0.47vw + 12.23px, 16px);
  font-weight: 700;
}
@media (max-width: 375px) {
  .sessions__description {
    justify-content: flex-start;
  }
}
.sessions__description p:nth-of-type(3) {
  align-self: flex-end;
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
}

.sessions__list {
  gap: 30px;
  margin-bottom: clamp(30px, 20px + 1.39vw, 40px);
}
@media (max-width: 768px) {
  .sessions__list {
    flex-direction: column;
    align-items: center;
  }
}

.session-card {
  flex-direction: column;
  width: 280px;
  padding-block: 15px 30px;
  padding-inline: 15px;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(61, 98, 173, 0.2);
  background: #FFFFFF;
}

.session-card__header {
  width: 100px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.session-card__date {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: solid 2px #000000;
  font-size: 14px;
  font-weight: 700;
}

.session-year {
  font-size: 12px;
}

.session-md {
  font-size: 20px;
}

.session-card__ttl {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.session-card__desc {
  margin-bottom: 15px;
  font-size: 12px;
}

.session-card__guest-info {
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: auto;
}
.session-card__guest-info dt {
  flex-shrink: 0;
  padding: 5px;
  border-radius: 20px;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}
.session-card__guest-info dd {
  font-size: 14px;
  font-weight: 700;
}

.support__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support__item {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  max-width: 889px;
}
.support__item dt {
  flex-shrink: 0;
  width: 79px;
  padding: 5px;
  border-radius: 20px;
  background: #000000;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.support__item dd {
  padding-top: 0.2em;
  font-size: clamp(14px, 0.47vw + 12.23px, 16px);
  font-weight: 700;
}
.support__item dd span {
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
}
.support__item:last-of-type dd {
  padding-top: 0.1em;
  font-weight: normal;
}

.support__note {
  margin-top: 20px;
  font-size: clamp(12px, 0.47vw + 10.23px, 14px);
}

footer {
  padding-top: clamp(40px, 20px + 2.78vw, 60px);
  padding-bottom: 70px;
  background: #3D62AD;
}

.site-info__wrap {
  justify-content: flex-start;
  gap: 40px 100px;
}
@media (max-width: 768px) {
  .site-info__wrap {
    flex-direction: column;
    align-items: center;
  }
}

.site-info__entity {
  -moz-column-gap: 40px;
       column-gap: 40px;
  min-width: 300px;
}
@media (max-width: 768px) {
  .site-info__entity {
    flex-direction: column;
    align-items: flex-start;
  }
}

.h-info {
  flex-shrink: 0;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 900;
}

.site-info__contact p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  word-break: break-all;
}
.site-info__contact p:first-child {
  margin-bottom: 20px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .site-info__contact p:first-child {
    margin-bottom: 10px;
  }
}
.site-info__contact p span {
  margin-left: 1em;
  font-size: 16px;
}
.site-info__contact a {
  text-decoration: underline;
}/*# sourceMappingURL=pmi-gunma.css.map */