@charset "UTF-8";
/* テーマAI */
main.theme-ai {
  --form-bg: var(--color-ai-blue-50);
  --form-border: var(--color-ai-blue-300);
  --form-text: var(--color-ai-blue-300);
}

/* テーマSmartHR */
main.theme-smarthr {
  --form-bg: var(--color-smarthr-50);
  --form-border: var(--color-smarthr-300);
  --form-text: var(--color-smarthr-300);
}

body {
  line-height: 1.7;
  color: var(--color-text-black);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
}

h2 {
  font-size: 2.56rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h3 {
  font-size: 2.1333rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 1.8286rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 0.09rem;
}

a {
  color: var(--color-blue300);
  text-decoration: underline;
  transition: 0.2s ease;
}
a:hover {
  color: var(--color-blue200);
  text-decoration: none;
}

ol li,
ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

blockquote {
  font-size: 1.4222rem;
  color: var(--color-text-gray);
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

table thead th {
  font-size: 1.4222rem;
  line-height: 2.1rem;
}
table tbody th {
  font-size: 1.4222rem;
}
table td {
  font-size: 1.4222rem;
}

:root {
  --color-white: #fff;
  --color-gray50: #fafafa;
  --color-gray100: #f4f4f4;
  --color-gray200: #e0e0e0;
  --color-gray300: #cccccc;
  --color-gray400: #999999;
  --color-red300: #ec5040;
  --color-red200: #f08070;
  --color-red100: #f6a79a;
  --color-red50: #fde7e3;
  --color-red10: #fef3f2;
  --color-blue300: #0075e1;
  --color-blue200: #4fa8eb;
  --color-blue100: #85c2ff;
  --color-blue50: #cce5ff;
  --color-blue10: #e6f3ff;
  --color-zeimu-bule: #0093d4;
  --color-romu300: #f17a00;
  --color-romu200: #ffb554;
  --color-romu100: #ffd89a;
  --color-romu50: #ffe4b2;
  --color-romu10: #fff4e6;
  --color-ai-red-300: #ad5565;
  --color-ai-red-200: #d16c7b;
  --color-ai-red-100: #d98995;
  --color-ai-red-50: #f5bac3;
  --color-ai-red-10: #fff0f2;
  --color-ai-blue-300: #4a516f;
  --color-ai-blue-200: #636c8e;
  --color-ai-blue-100: #7b819a;
  --color-ai-blue-50: #c5cbe1;
  --color-ai-blue-10: #f6f8ff;
  --color-smarthr-300: #00c4cc;
  --color-smarthr-200: #38bec4;
  --color-smarthr-50: #e8fcfc;
  --color-smarthr-10: #eeffff;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --line: 1px solid var(--color-grey-light-2);
  --color-back-black: #271d1d;
  --color-text-black: #333;
  --color-text-white: #fff;
  --color-text-gray: #757575;
  --btn-gradient: linear-gradient(90deg, #5ed5b3 0%, #94bfff 100%);
  --start-color: rgba(250, 250, 240, 0.2); /* #FAFAF0 + 透明度0.2 */
  --end-color: rgba(225, 122, 0, 0.2); /* #E17A00 + 透明度0.2 */
  --gradient: linear-gradient(
    to bottom right,
    var(--start-color),
    var(--end-color)
  );
  --gradient-colors: #ffd89a, #fff4e6;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 900px) {
  body {
    padding: 0;
  }
}

p {
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

a:hover,
a:hover img,
a:hover svg {
  filter: none !important;
}

.container p {
  line-break: strict;
  word-break: auto-phrase;
}

main {
  padding-top: 8rem;
}

a,
button {
  -webkit-tap-highlight-color: transparent; /* より個別に対応 */
  outline: none;
}

section.main-content {
  background: #f9f9f9;
}

.seminar__container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 4.8rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .seminar__container {
    flex-direction: column;
    gap: 0;
  }
}
.seminar__content {
  width: 65%;
  background-color: #ffffff;
  padding: 2rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .seminar__content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.seminar__badge {
  display: inline-block;
  background: var(--color-red300);
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.seminar .seminar__badge.is-closed {
  background: #ccc;
  color: #666;
}
.seminar__detail {
  width: 100%;
  border-collapse: collapse;
}
.seminar__detail th {
  text-align: left;
  padding: 2rem;
  border-bottom: solid 1.2px;
}
.seminar__detail td {
  padding: 2rem;
}
.seminar__detail tr {
  border-bottom: 1px solid #d9d9d9;
}
.seminar__detail tr:first-child {
  border-top: none;
}
.seminar__detail__description {
  margin-bottom: 32px;
  line-height: 1.8;
}
.seminar__detail__program, .seminar__detail__target {
  margin-bottom: 32px;
  padding-left: 20px;
}
.seminar__detail__program li, .seminar__detail__target li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.articleContents img {
  margin: 2rem 0;
  border-radius: 0.4rem;
  /* box-shadow: 2px 2px 8px 2px rgba(25, 25, 25, 0.1); */
  width: 100%;
  height: auto;
}

.seminar__aside {
  width: 35%;
  position: sticky;
  top: 120px;
  background-color: #ffffff;
  padding: 2rem;
  margin-top: 6rem;
}
@media (max-width: 900px) {
  .seminar__aside {
    width: 100%;
    position: static;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.seminar__aside .privacy-box p,
.seminar__aside .privacy-box ul,
.seminar__aside .privacy-box ul li {
  position: relative;
  line-height: 1.7;
  font-size: 12px;
  margin-bottom: 0.2rem;
}
.seminar__aside .privacy-box ul {
  list-style: disc;
  padding-left: 0;
  margin: 0.5rem 0 1rem;
}
.seminar__aside .privacy-box li {
  margin-left: 2rem;
}
.seminar__aside .privacy-box li::marker {
  color: #666;
  font-size: 0.8em;
}
.seminar__aside .privacy-box .wpcf7-checkbox {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/*# sourceMappingURL=seminar.css.map */
