@charset "UTF-8";

html,
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}

body * {
  box-sizing: border-box;
}

p {
  margin-bottom: 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

/* --------------------------------------------
 * 　基本ブロック幅
 * -------------------------------------------- */
.w_inner {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  height: 20vh;
  background: #f2f2f2;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header ul {
  display: flex;
  gap: 20px;
}

.footer {
  height: 15vh;
  background: #ddd;
  margin-top: 100px;
}

/* --------------------------------------------
 * 　セミナー一覧
 * -------------------------------------------- */
.heading {
  font-size: 1.8125rem;
  font-weight: bold;
  margin-bottom: 45px;
  padding-bottom: 3px;
  border-bottom: 1px solid #222;
}

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

.seminar_wrap {
  margin-bottom: 150px;
}

.seminar_list li {
  margin-bottom: 30px;
}

.seminar_list li:last-child {
  margin-bottom: 0;
}

.seminar_list a {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .seminar_list a {
    display: block;
  }
}

.seminar_list a:hover {
  text-decoration: none;
}

.seminar_list a:hover .thumbnail img {
  scale: 1.1;
}

.seminar_list .application_close {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #D82347;
  color: #fff;
  padding: 5px 10px;
}

.seminar_list .thumbnail {
  flex: 1 1 380px;
  aspect-ratio: 380/250;
  overflow: hidden;
}

.seminar_list .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 0.3s;
}

.seminar_list .textarea {
  flex: 1 1 780px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .seminar_list .textarea {
    display: block;
  }
}

.seminar_list .date {
  font-size: 0.9375rem;
  margin-bottom: 5px;
}

.seminar_list .title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .seminar_list .title {
    font-size: 1.125rem;
  }
}

.seminar_list .excerpt {
  margin-bottom: auto;
}

.seminar_list .btn {
  align-self: flex-end;
  margin-top: 20px;
}

.seminar_past_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.seminar_past_list li {
  flex: 0 0 calc((100% - 60px) / 4);
}

@media screen and (max-width: 767px) {
  .seminar_past_list li {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

.seminar_past_list a {
  display: block;
}

.seminar_past_list a:hover {
  text-decoration: none;
}

.seminar_past_list a:hover .thumbnail img {
  scale: 1.1;
}

.seminar_past_list .thumbnail {
  aspect-ratio: 380/250;
  overflow: hidden;
  margin-bottom: 10px;
}

.seminar_past_list .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 0.3s;
}

.seminar_past_list .date {
  font-size: 0.75rem;
  margin-bottom: 5px;
}

.seminar_past_list .title {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.6;
}

.seminar_past_list .excerpt {
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.seminar_past_list .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 0.75rem;
}

/* --------------------------------------------
 * 　セミナー記事ページ
 * -------------------------------------------- */
.seminar h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .seminar h1 {
    font-size: 1.25rem;
  }
}

.seminar h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .seminar h2 {
    font-size: 1.25rem;
  }
}

.seminar_status {
  padding: 20px;
  background: #f2244a;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.seminar_content {
  background: #f2f2f2;
  padding: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  text-align: left;
  border: 1px solid #ddd;
  padding: 0.5em;
  background: #f2f2f2;
  width: 10.5em;
}

table td {
  text-align: left;
  border: 1px solid #ddd;
  padding: 0.5em;
}

table .note {
  font-size: 0.75rem;
  font-weight: 500;
}

.seminar_applicationform .close {
  background: #ffc9d3;
  padding: 100px;
  text-align: center;
}

.seminar_applicationform .form {
  background: #f2f2f2;
  padding: 100px;
  text-align: center;
}

.to_seminar_list {
  margin-top: 50px;
  text-align: center;
}

/* --------------------------------------------
 * 　製品
 * -------------------------------------------- */
.product ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.product li {
  flex: 0 0 calc((100% - 60px) / 4);
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .product li {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

.product li .thumbnail {
  margin-bottom: 5px;
}

.product li .title {
  font-weight: 500;
}

.product li .price {
  font-size: 0.875rem;
  font-weight: 500;
}

.product li .release {
  font-size: 0.875rem;
}

.sort {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.sort a {
  text-decoration: underline;
}

.sort a:hover {
  text-decoration: none;
}

.sort a._active {
  font-weight: bold;
}

/* --------------------------------------------
 * 　デフォルト記事用
 * -------------------------------------------- */
.post_content h1 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

.post_content h2 {
  font-size: 1.375rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #222;
}

@media screen and (max-width: 767px) {
  .post_content h2 {
    font-size: 1.25rem;
  }
}

.post_content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #222;
}

@media screen and (max-width: 767px) {
  .post_content h3 {
    font-size: 1.125rem;
  }
}

.post_content table {
  width: 100%;
  margin: 20px 0 20px;
}

.post_content table td {
  padding: 5px 5px 2px;
  border: 1px solid #ddd;
}

.post_content ol {
  list-style: decimal;
  margin-bottom: 20px;
  padding: 20px 20px 20px 40px;
  background: lightblue;
}

.post_content ul {
  list-style: disc;
  margin-bottom: 20px;
  padding: 20px 20px 20px 40px;
  background: lightblue;
}

.post_content figure {
  margin: 20px 0 20px;
}

.post_content figure figcaption {
  font-size: 13px;
  font-style: italic;
  color: #888;
}

.post_content blockquote {
  background: #f2f2f2;
  padding: 30px 30px 25px;
}

.post_content blockquote p:last-child {
  margin-bottom: 0;
}

.post_content img {
  margin: 20px 0 20px;
}

.post_content .wp-caption {
  font-size: 13px;
  color: #555;
}

/* --------------------------------------------
 * 　セミナー記事用
 * -------------------------------------------- */
.seminar_content h1 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

.seminar_content h2 {
  font-size: 1.375rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 5px dotted #000;
}

@media screen and (max-width: 767px) {
  .seminar_content h2 {
    font-size: 1.25rem;
  }
}

.seminar_content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #000;
}

@media screen and (max-width: 767px) {
  .seminar_content h3 {
    font-size: 1.125rem;
  }
}

.seminar_content table {
  width: 100%;
  margin: 20px 0 20px;
}

.seminar_content table td {
  padding: 5px 5px 2px;
  border: 1px solid #ddd;
}

.seminar_content ol {
  list-style: decimal;
  margin-bottom: 20px;
  padding: 20px 20px 20px 40px;
  background: lightblue;
}

.seminar_content ul {
  list-style: disc;
  margin-bottom: 20px;
  padding: 20px 20px 20px 40px;
  background: lightblue;
}

.seminar_content figure {
  margin: 20px 0 20px;
}

.seminar_content figure figcaption {
  font-size: 13px;
  font-style: italic;
  color: #888;
}

.seminar_content blockquote {
  background: #f2f2f2;
  padding: 30px 30px 25px;
}

.seminar_content blockquote p:last-child {
  margin-bottom: 0;
}

.seminar_content img {
  margin: 20px 0 20px;
}

.seminar_content .wp-caption {
  font-size: 13px;
  color: #555;
}

/* --------------------------------------------
 * 　サービス
 * -------------------------------------------- */
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

._trimRounded {
  border-radius: 15px;
  overflow: hidden;
}

.service__item {
  margin-bottom: 50px;
}

.serviceItem {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .serviceItem {
    display: block;
  }
}

.serviceItem__imgArea {
  flex: 1 1 450px;
}

@media screen and (max-width: 767px) {
  .serviceItem__imgArea {
    margin-bottom: 20px;
  }
}

.serviceItem__textArea {
  flex: 1 1 700px;
}

.serviceItem__img {
  width: 100%;
}

.serviceItem__heading {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.serviceItem__list {
  list-style: none;
}

.serviceItem__item {
  padding-top: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.banner {
  padding: 50px 50px 55px;
  background: #e5ebf0;
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .banner {
    padding: 35px;
  }
}

.banner__heading {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 45px;
  border-bottom: 1px solid #000;
}

.banner__container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .banner__container {
    display: block;
  }
}

.banner__item {
  flex: 0 1 50%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .banner__item {
    margin-bottom: 20px;
  }

  .banner__item:last-child {
    margin-bottom: 0;
  }
}

.banner__itemTitle {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner__itemNumber {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .banner__itemNumber {
    font-size: 1.375rem;
  }
}

.banner__note {
  font-size: 0.75rem;
}

.button {
  font-size: 1.125rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 1em 2em;
  color: #fff;
  background: #396091;
  border-radius: 5px;
  border: 1px solid #396091;
  transition: all ease 0.3s;
}

.button:hover {
  text-decoration: none;
  background: #fff;
  color: #396091;
}

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