@charset "UTF-8";
/* ------------------------------------------------------
変数
------------------------------------------------------ */
:root {
  --primary: #9D1F2F;
  --secondary: #1C1817;
  --subprimary: #0F3568;
}

.subp-articles {
  padding: 70px 0 120px;
}
@media (max-width: 1024px) {
  .subp-articles {
    padding: 60px 0 100px;
  }
}
@media (max-width: 540px) {
  .subp-articles {
    padding: 30px 0 80px;
  }
}

/* =======================================================

articles(白ボックス)

======================================================= */
.articles__item--box {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .articles__item--box {
    margin-bottom: 20px;
  }
}
.articles__item--box:last-of-type {
  margin-bottom: 0;
}

.articles__link--box {
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: ease 0.3s opacity;
}
.articles__link--box:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .articles__link--box {
    padding: 30px;
  }
}
@media (max-width: 540px) {
  .articles__link--box {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.articles__img--box {
  transition: ease 0.2s opacity;
  width: 35%;
  min-width: 35%;
}
@media (max-width: 540px) {
  .articles__img--box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.articles__img--box img {
  width: 100%;
  height: 210px;
  min-height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .articles__img--box img {
    height: 170px;
    min-height: 170px;
  }
}
@media (max-width: 540px) {
  .articles__img--box img {
    width: 100%;
    height: 160px;
    min-height: 160px;
  }
}

.articles__txts--box {
  padding: 20px 0;
  padding-left: 50px;
}
@media (max-width: 1024px) {
  .articles__txts--box {
    padding: 0;
    padding-left: 20px;
  }
}
@media (max-width: 540px) {
  .articles__txts--box {
    padding-left: 0;
  }
}

.articles__title--box {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: ease 0.3s color;
  color: var(--secondary);
}
@media (max-width: 1024px) {
  .articles__title--box {
    font-size: 1.8rem;
  }
}
@media (max-width: 540px) {
  .articles__title--box {
    font-size: 1.5rem;
  }
}

.articles__hr {
  width: 80px;
  background: #000;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .articles__hr {
    margin: 15px 0;
  }
}
@media (max-width: 540px) {
  .articles__hr {
    margin: 10px 0;
  }
}

.articles__info--box {
  display: flex;
  align-items: center;
  padding-top: 5px;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .articles__info--box {
    padding-top: 5px;
  }
}

.articles__cate--color {
  font-weight: bold;
  color: #777;
  display: flex;
}
.articles__cate--color::before {
  content: "";
  display: block;
  width: 0.9em;
  height: 0.9em;
  background: var(--primary);
  margin-right: 5px;
}
.articles__cate--color.khaki::before {
  background: peru;
}
.articles__cate--color.blue::before {
  background: blue;
}
.articles__cate--color.green::before {
  background: green;
}
.articles__cate--color.gray::before {
  background: #A09C9C;
}

.articles__time {
  line-height: 1;
  color: #777;
  font-size: 1.7rem;
}
@media (max-width: 540px) {
  .articles__time {
    font-size: 1.5rem;
  }
}

.articles__new {
  border: var(--primary) 2px solid;
  color: var(--primary);
  background: #fff;
  padding: 0.1em 0.8em 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-weight: bold;
  border-radius: 2px;
}

/* =======================================================

articles(白ボックス) sm

======================================================= */
.articles__item--box.sm {
  margin-bottom: 20px;
}
.articles__item--box.sm:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .articles__item--box.sm {
    margin-bottom: 10px;
  }
}

.articles__link--box.sm {
  padding: 20px;
  flex-direction: row;
}
@media (max-width: 768px) {
  .articles__link--box.sm {
    align-items: unset;
  }
}
@media (max-width: 540px) {
  .articles__link--box.sm {
    padding: 10px;
  }
}
.articles__link--box.sm .articles__hr {
  margin: 10px 0;
}

.articles__img--box.sm {
  width: 35%;
  min-width: 35%;
  margin-bottom: 0;
}
.articles__img--box.sm img {
  height: 105px;
  min-height: 105px;
}
@media (max-width: 768px) {
  .articles__img--box.sm img {
    height: 120px;
    min-height: 120px;
  }
}
@media (max-width: 540px) {
  .articles__img--box.sm img {
    height: 90px;
    min-height: 90px;
  }
}

.articles__txts--box.sm {
  padding: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
@media (max-width: 540px) {
  .articles__txts--box.sm {
    padding-left: 10px;
  }
}

.articles__title--box.sm {
  font-size: 1.6rem;
  line-height: 1.4em;
}
@media (max-width: 540px) {
  .articles__title--box.sm {
    font-size: 1.3rem;
  }
}

.articles__info--box.sm {
  gap: 5px 15px;
  padding-top: 0;
}
@media (max-width: 540px) {
  .articles__info--box.sm {
    gap: 5px 10px;
  }
}
.articles__info--box.sm * {
  font-size: 1.4rem;
}
@media (max-width: 540px) {
  .articles__info--box.sm * {
    font-size: 1.2rem;
  }
}
.articles__info--box.sm .articles__new {
  font-size: 1.2rem;
  border-width: 1px;
}
@media (max-width: 540px) {
  .articles__info--box.sm .articles__new {
    font-size: 1rem;
  }
}

/* =======================================================

articles（罫線 - lg）

======================================================= */
.articles__item--box.line {
  box-shadow: none;
  border-bottom: var(--secondary) 1px solid;
  margin-bottom: 0;
}
.articles__item--box.line:last-of-type {
  border-bottom: unset;
}

.articles__link--box.line {
  box-shadow: none;
}
@media (max-width: 1024px) {
  .articles__link--box.line {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .articles__link--box.line {
    padding: 25px 0;
  }
}

.articles__info--box.line {
  padding-top: 0;
}

.articles__excerpt--box.line {
  padding-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.5rem;
}
@media (max-width: 540px) {
  .articles__excerpt--box.line {
    font-size: 1.3rem;
  }
}

/* =======================================================

articles(グリッド)

======================================================= */
.articles--grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  flex: 1 1;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 768px) {
  .articles--grid {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 540px) {
  .articles--grid {
    margin-left: 0;
    margin-right: 0;
  }
}

.articles__item--grid {
  width: calc(33.33% - 30px);
  margin: 0 15px 50px;
  display: flex;
}
@media (max-width: 1024px) {
  .articles__item--grid {
    width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .articles__item--grid {
    width: calc(50% - 20px);
    margin: 0 10px 40px;
  }
}
@media (max-width: 540px) {
  .articles__item--grid {
    width: 100%;
    margin: 0 0 30px;
    max-width: unset;
  }
}

.articles__link--grid {
  height: 100%;
  width: 100%;
  position: relative;
  transition: ease 0.3s opacity;
  display: flex;
  flex-direction: column;
}
.articles__link--grid .articles__new {
  position: absolute;
  left: 0;
  top: 0;
}
.articles__link--grid .articles__hr {
  margin-top: auto;
}
.articles__link--grid:hover {
  opacity: 0.6;
}

.articles__img--grid {
  width: 100%;
  height: 210px;
  transition: ease 0.2s opacity;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .articles__img--grid {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .articles__img--grid {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .articles__img--grid {
    height: 160px;
  }
}
.articles__img--grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}

.articles__title--grid {
  font-size: 2rem;
  margin-bottom: 0.8em;
  font-weight: bold;
  line-height: 1.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: ease 0.3s color;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .articles__title--grid {
    font-size: 1.8rem;
  }
}
@media (max-width: 540px) {
  .articles__title--grid {
    font-size: 1.5rem;
    min-height: unset;
  }
}

.articles__info--grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 5px;
}

.articles__cate--tag {
  font-weight: bold;
  color: #777;
}
.articles__cate--tag i {
  color: var(--primary);
  margin-right: 0.3em;
}

/* =======================================================

articles(グリッド) 関連記事

======================================================= */
.articles--grid.related {
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 768px) {
  .articles--grid.related {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -30px;
  }
}

.articles__link--grid.related .articles__new {
  font-size: 1.4rem;
  border-width: 1px;
}
@media (max-width: 540px) {
  .articles__link--grid.related .articles__new {
    font-size: 1.2rem;
  }
}
.articles__link--grid.related .articles__hr {
  margin: 10px 0;
  margin-top: auto;
}

.articles__item--grid.related {
  width: calc(33.33% - 20px);
  margin: 0 10px 30px;
}
@media (max-width: 768px) {
  .articles__item--grid.related {
    margin: 0 5px 30px;
    width: calc(33.33% - 10px);
  }
}
@media (max-width: 540px) {
  .articles__item--grid.related {
    width: calc(50% - 10px);
  }
}

.articles__img--grid.related {
  height: 160px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .articles__img--grid.related {
    height: 140px;
  }
}
@media (max-width: 540px) {
  .articles__img--grid.related {
    height: 110px;
  }
  .articles__img--grid.related img {
    border-radius: 3px;
  }
}

.articles__title--grid.related {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .articles__title--grid.related {
    font-size: 1.4rem;
  }
}
@media (max-width: 540px) {
  .articles__title--grid.related {
    font-size: 1.3rem;
    line-height: 1.4em;
  }
}

.articles__info--grid.related {
  gap: 5px 10px;
}
@media (max-width: 540px) {
  .articles__info--grid.related {
    gap: 5px 7px;
  }
}
.articles__info--grid.related * {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .articles__info--grid.related * {
    font-size: 1.3rem;
  }
}
@media (max-width: 540px) {
  .articles__info--grid.related * {
    font-size: 1.2rem;
  }
}

/* =======================================================

カテゴリタグ群

======================================================= */
.top-guide__categories {
  margin-bottom: 50px;
}
@media (max-width: 540px) {
  .top-guide__categories {
    margin-bottom: 30px;
  }
}

.bidGuide-categories {
  padding: 40px;
  background: #f5f5f5;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 540px) {
  .bidGuide-categories {
    padding: 20px;
  }
}

.bidGuide-categories__title {
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  max-width: 100%;
  color: var(--secondary);
}
@media (max-width: 540px) {
  .bidGuide-categories__title {
    margin-top: -30px;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }
}

.bidGuide-categories__list {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
@media (max-width: 540px) {
  .bidGuide-categories__list {
    gap: 10px;
  }
}

.bidGuide-categories__link {
  border: #aaa 1px solid;
  border-radius: 2px;
  padding: 0.5em 2.2em;
  background: #fff;
  display: block;
  line-height: 1em;
  color: #888;
  font-weight: bold;
  transition: ease 0.3s background-color, ease 0.3s color;
}
@media (max-width: 540px) {
  .bidGuide-categories__link {
    padding: 0.5em 0.8em;
  }
}
.bidGuide-categories__link i {
  color: var(--primary);
  margin-right: 0.5em;
  transition: ease 0.3s color;
}
.bidGuide-categories__link:hover {
  background: #aaa;
  color: #fff;
}
.bidGuide-categories__link:hover i {
  color: #fff;
}

.category-navbox {
  display: flex;
  width: 100%;
  gap: 1%;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 768px) {
  .category-navbox {
    flex-direction: column;
  }
}
.category-navbox .category-navbox_in_l {
  width: 20%;
}
.category-navbox .category-navbox_in_l ul.bidGuide-categories__list {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
.category-navbox .category-navbox_in_l ul.bidGuide-categories__list li.bidGuide-categories__item {
  width: 100%;
  height: 100%;
}
.category-navbox .category-navbox_in_l ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link {
  padding: 0.5em 1em;
  display: flex;
  line-height: 1.2em;
  align-items: center;
  height: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .category-navbox .category-navbox_in_l ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link {
    justify-content: center;
    align-items: center;
  }
}
.category-navbox .category-navbox_in_l ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link.current {
  border: var(--primary) 1px solid;
  background: var(--primary);
  color: #fff;
}
.category-navbox .category-navbox_in_l ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link.current i {
  color: #fff;
}
@media (max-width: 768px) {
  .category-navbox .category-navbox_in_l {
    width: 100%;
    margin-bottom: 5px;
  }
}
.category-navbox .category-navbox_in_r {
  width: 80%;
}
.category-navbox .category-navbox_in_r ul.bidGuide-categories__list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 1%;
}
.category-navbox .category-navbox_in_r ul.bidGuide-categories__list li.bidGuide-categories__item {
  display: block;
}
.category-navbox .category-navbox_in_r ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link {
  padding: 0.5em 1.2em;
  display: flex;
  line-height: 1.2em;
  align-items: center;
}
.category-navbox .category-navbox_in_r ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link.current {
  border: var(--primary) 1px solid;
  background: var(--primary);
  color: #fff;
}
.category-navbox .category-navbox_in_r ul.bidGuide-categories__list li.bidGuide-categories__item a.bidGuide-categories__link.current i {
  color: #fff;
}
@media (max-width: 768px) {
  .category-navbox .category-navbox_in_r {
    width: 100%;
  }
}

/* =======================================================

articles（罫線）

======================================================= */
.articles__item--line {
  border-bottom: #333 1px solid;
}
.articles__item--line:first-of-type {
  border-top: unset;
}
.articles__item--line:last-of-type {
  border-bottom: unset;
}
.articles__item--line:only-of-type {
  border-bottom: #333 1px solid;
}

.articles__link--line {
  padding: 40px;
  display: block;
  transition: ease 0.3s background-color;
}
@media (max-width: 1024px) {
  .articles__link--line {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .articles__link--line {
    padding: 30px 0;
  }
}
@media (max-width: 540px) {
  .articles__link--line {
    padding: 20px 0;
  }
}

.articles__img--line {
  width: 23%;
  min-width: 23%;
}
.articles__img--line img {
  height: 150px;
  min-height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 540px) {
  .articles__img--line img {
    min-height: 130px;
    height: 130px;
  }
}

.articles__info--line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 540px) {
  .articles__info--line {
    margin-bottom: 10px;
  }
}

.articles__ttls--line {
  position: relative;
  padding-right: 70px;
}
@media (max-width: 768px) {
  .articles__ttls--line {
    padding-right: 40px;
  }
}
.articles__ttls--line .i-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: #333 1px solid;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-size: 2.2rem;
  transition: ease 0.3s all;
}
@media (max-width: 1024px) {
  .articles__ttls--line .i-arrow {
    right: 0;
  }
}
@media (max-width: 768px) {
  .articles__ttls--line .i-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.8rem;
  }
}

.articles__title--line {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: ease 0.3s color;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .articles__title--line {
    font-size: 1.8rem;
  }
}
@media (max-width: 540px) {
  .articles__title--line {
    font-size: 1.5rem;
    min-height: 2.5em;
  }
}

.articles__cate {
  background: #A09C9C;
  border-radius: 3px;
  padding: 0.3em 1.8em 0.4em;
  line-height: 1em;
  color: #fff;
  font-weight: bold;
}

.articles__new--simple {
  color: var(--primary);
  line-height: 0;
  font-weight: bold;
  background: unset;
}

.articles__link--line:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.articles__link--line:hover .i-arrow {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

.articles__link--line.hs-img {
  display: flex;
}
@media (max-width: 540px) {
  .articles__link--line.hs-img {
    flex-direction: column;
  }
}

.articles__img--line {
  width: 23%;
  min-width: 23%;
}
@media (max-width: 768px) {
  .articles__img--line {
    width: 30%;
    min-width: 30%;
  }
}
@media (max-width: 540px) {
  .articles__img--line {
    margin-bottom: 15px;
    width: 100%;
    min-width: 100%;
  }
}
.articles__img--line img {
  height: 150px;
  min-height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .articles__img--line img {
    min-height: 130px;
    height: 130px;
  }
}
@media (max-width: 540px) {
  .articles__img--line img {
    min-height: 150px;
    height: 150px;
  }
}

.articles__txts--line {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .articles__txts--line {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .articles__txts--line {
    padding-left: 15px;
  }
}
@media (max-width: 540px) {
  .articles__txts--line {
    padding-left: 0;
  }
}

/* =======================================================

articles(入札アカデミー)

======================================================= */
.articles__item--grid.acd {
  width: calc(50% - 30px);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .articles__item--grid.acd {
    width: calc(50% - 20px);
  }
}
@media (max-width: 540px) {
  .articles__item--grid.acd {
    width: 100%;
  }
}

.articles__link--grid.acd {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.articles__link--grid.acd:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .articles__link--grid.acd {
    padding: 20px;
  }
}
.articles__link--grid.acd .articles__new {
  left: 30px;
  top: 30px;
}
@media (max-width: 768px) {
  .articles__link--grid.acd .articles__new {
    left: 20px;
    top: 20px;
  }
}
.articles__link--grid.acd .articles__hr {
  margin-top: 0;
}

.articles__img--grid.acd {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .articles__img--grid.acd {
    height: 290px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .articles__img--grid.acd {
    height: 250px;
  }
}

.academy__cates {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.articles__cate--acd {
  background: #FAF3F4;
  color: var(--primary);
  border-radius: 40px;
  font-size: 1.6rem;
  padding: 0.3em 1em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 540px) {
  .articles__cate--acd {
    font-size: 1.4rem;
  }
}

.articles__cate--seminarEnd {
  background: #666;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.3em 1em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 540px) {
  .articles__cate--seminarEnd {
    font-size: 1.4rem;
  }
}

.academys__item__infos dl {
  display: flex;
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.4em;
}
@media (max-width: 540px) {
  .academys__item__infos dl {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.academys__item__infos dl dt {
  font-weight: bold;
  max-width: 3em;
  min-width: 3em;
}
.academys__item__infos dl:last-child {
  margin-bottom: 0;
}
.academys__item__infos dl.overview dd {
  font-size: 1.5rem;
}
@media (max-width: 540px) {
  .academys__item__infos dl.overview dd {
    font-size: 1.4rem;
  }
}

/* =======================================================

カテゴリー別 記事一覧

======================================================= */
.categoryPage__ttl {
  padding-top: 10px;
  padding-bottom: 30px;
  font-size: 3rem;
  width: 100%;
  border-bottom: var(--secondary) 1px solid;
  font-weight: bold;
}
@media (max-width: 540px) {
  .categoryPage__ttl {
    font-size: 2.2rem;
    padding-bottom: 20px;
  }
}
.categoryPage__ttl i {
  color: var(--primary);
  margin-right: 0.3em;
}

/* =======================================================

articles(siedebar)

======================================================= */
.articles__item--sidebar {
  border-bottom: #111 1px solid;
  padding: 20px 0;
}
@media (max-width: 540px) {
  .articles__item--sidebar {
    padding: 15px 0;
  }
}
.articles__item--sidebar:first-of-type {
  padding-top: 0;
}
.articles__item--sidebar:last-of-type {
  padding-bottom: 0;
  border-bottom: unset;
}

.articles__link--sidebar {
  display: flex;
  align-items: flex-start;
  transition: ease 0.3s opacity;
}
.articles__link--sidebar:hover {
  opacity: 0.7;
}

.articles__info--sidebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}
.articles__info--sidebar .articles__cate--tag,
.articles__info--sidebar .articles__cate--color,
.articles__info--sidebar .articles__cate {
  font-size: 1.4rem;
}
@media (max-width: 540px) {
  .articles__info--sidebar .articles__cate--tag,
  .articles__info--sidebar .articles__cate--color,
  .articles__info--sidebar .articles__cate {
    font-size: 1.3rem;
  }
}
.articles__info--sidebar .articles__cate {
  font-size: 1.3rem;
  padding: 0.4em 1.2em;
  border-radius: 2px;
}
@media (max-width: 540px) {
  .articles__info--sidebar .articles__cate {
    font-size: 1.2rem;
  }
}
.articles__info--sidebar .articles__time {
  font-size: 1.4rem;
}
@media (max-width: 540px) {
  .articles__info--sidebar .articles__time {
    font-size: 1.3rem;
  }
}

.articles__thum--sidebar {
  width: 50%;
  margin-right: 5%;
  flex-shrink: 0;
}
.articles__thum--sidebar img {
  width: 120px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 920px) {
  .articles__thum--sidebar img {
    width: 100%;
    height: initial;
  }
}
@media (max-width: 1024px) {
  .articles__thum--sidebar {
    width: 50%;
  }
}
@media (max-width: 920px) {
  .articles__thum--sidebar {
    width: 50%;
    margin-right: 3%;
    flex-shrink: 0;
  }
}
@media (max-width: 540px) {
  .articles__thum--sidebar {
    width: 50%;
    margin-right: 2%;
    flex-shrink: 0;
  }
}

.articles__title--sidebar {
  color: var(--secondary);
  line-height: 1.4em;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .articles__title--sidebar {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .articles__title--sidebar {
    font-size: 1.6rem;
  }
}
@media (max-width: 540px) {
  .articles__title--sidebar {
    font-size: 1.4rem;
  }
}

/* =======================================================

article

======================================================= */
.article-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.article-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.6em;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .article-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 540px) {
  .article-title {
    font-size: 1.8rem;
  }
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 25px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .article-info {
    margin-bottom: 40px;
    gap: 10px 20px;
  }
}
@media (max-width: 540px) {
  .article-info {
    margin-bottom: 30px;
  }
}

.article-thumbnail {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .article-thumbnail {
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .article-thumbnail {
    margin-bottom: 30px;
  }
}
.article-thumbnail img {
  width: 100%;
  max-height: 600px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .article-thumbnail img {
    max-height: 500px;
  }
}
@media (max-width: 540px) {
  .article-thumbnail img {
    max-height: 250px;
  }
}

.article_guide-annotation {
  padding: 1.3em;
  border: var(--secondary) 1px solid;
  line-height: 1.6;
  margin-bottom: 50px;
  font-size: 0.9em;
  text-align: left;
}
@media (max-width: 540px) {
  .article_guide-annotation {
    margin-bottom: 30px;
    text-align: left;
  }
  .article_guide-annotation br {
    display: none;
  }
}

.article-content {
  margin-bottom: 50px;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .article-content {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .article-content {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
@media (max-width: 540px) {
  .article-content {
    font-size: 1.4rem;
  }
}
.article-content h2 {
  border-left: var(--primary) 12px solid;
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--secondary);
  padding-left: 0.8em;
  line-height: 1.6em;
  margin-top: 1.8em;
  margin-bottom: 1.5em;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .article-content h2 {
    border-left-width: 8px;
    font-size: 2.1rem;
  }
}
@media (max-width: 540px) {
  .article-content h2 {
    border-left-width: 4px;
    font-size: 1.7rem;
  }
}
.article-content h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--secondary);
  padding: 0 0 0.6em;
  border-bottom: var(--primary) 2px solid;
  line-height: 1.6em;
  margin-top: 1.8em;
  margin-bottom: 1.6em;
}
@media (max-width: 768px) {
  .article-content h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 540px) {
  .article-content h3 {
    font-size: 1.6rem;
  }
}
.article-content h4 {
  background: #faf4f2;
  font-size: 1.8rem;
  padding: 0.6em 0.8em;
  font-weight: bold;
  line-height: 1.6em;
  margin-top: 1.8em;
  margin-bottom: 1.6em;
}
@media (max-width: 768px) {
  .article-content h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 540px) {
  .article-content h4 {
    font-size: 1.5rem;
  }
}
.article-content table {
  border: #A09C9C 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 40px 0;
}
.article-content table th, .article-content table td {
  border: #A09C9C 1px solid;
  padding: 20px 17px;
  vertical-align: middle;
  line-height: 1.4em;
}
@media (max-width: 768px) {
  .article-content table th, .article-content table td {
    padding: 15px 10px;
  }
}
@media (max-width: 540px) {
  .article-content table th, .article-content table td {
    padding: 10px 7px;
  }
}
.article-content table th {
  background: #f5f5f5;
  font-weight: bold;
  font-size: 1.8rem;
  min-width: 8em;
}
@media (max-width: 768px) {
  .article-content table th {
    font-size: 1.4rem;
  }
}
.article-content a {
  text-decoration: underline;
  color: #2446ed;
}
.article-content a:hover {
  text-decoration: none;
}
.article-content mark {
  background: linear-gradient(transparent 70%, #ffff00 30%);
}
.article-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.article-content img.alignright {
  display: block;
  margin-left: auto;
}
.article-content ul,
.article-content ol {
  list-style: unset;
  padding-left: 1.5em;
}
.article-content ul li,
.article-content ol li {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}
.article-content ol {
  list-style: auto;
}
.article-content blockquote {
  padding: 20px;
  padding-left: 50px;
  position: relative;
  background: #f8f8f8;
}
@media (max-width: 540px) {
  .article-content blockquote {
    padding-left: 40px;
  }
}
.article-content blockquote::before {
  position: absolute;
  content: "“";
  color: #ddd;
  font-size: 6rem;
  font-weight: bold;
  left: 15px;
  top: 10px;
  line-height: 1em;
}
@media (max-width: 540px) {
  .article-content blockquote::before {
    font-size: 4rem;
  }
}
.article-content .ps-box01 {
  display: block;
  padding: 30px 0;
  margin: 30px auto;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* =======================================================

article(その他)

======================================================= */
.article--others {
  padding: 80px 0 60px;
  background: #f5f5f5;
}
@media (max-width: 540px) {
  .article--others {
    padding: 60px 0 40px;
  }
}

.article--others__block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .article--others__block {
    flex-direction: column;
  }
}

.article--others__col {
  width: calc(50% - 30px);
}
@media (max-width: 1024px) {
  .article--others__col {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .article--others__col {
    width: 100%;
    margin-top: 40px;
  }
  .article--others__col:first-of-type {
    margin-top: 0;
  }
}

.article--others__col .articles--box {
  margin-bottom: 20px;
}
.article--others__col .btns--right {
  justify-content: flex-end;
}

/* ==========================
  フローティングバナー（追従バナー）
========================== */
.post_rbbanner_area {
  display: inline-block;
  position: fixed;
  bottom: 0;
  right: 70px;
  max-width: 100%;
  z-index: 1000;
}
.post_rbbanner_area.js_close {
  display: none;
}
.post_rbbanner_area img {
  width: 300px;
  height: auto;
  transition: 0.3s;
}
.post_rbbanner_area img:hover {
  opacity: 0.8;
}
.post_rbbanner_area_close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: -20px;
  cursor: pointer;
  background: #fff;
  padding: 5px;
  filter: drop-shadow(0px 0px 4px rgba(192, 192, 192, 0.6));
}
.post_rbbanner_area_close span:nth-of-type(1) {
  position: absolute;
  top: 10px;
  right: 2px;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}
.post_rbbanner_area_close span:nth-of-type(2) {
  position: absolute;
  top: 3px;
  right: 9px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .post_rbbanner_area {
    display: none;
  }
}

/* =======================================================

目次

======================================================= */
#ez-toc-container {
  background: #F8F8F8 !important;
  padding: 35px !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  color: var(--secondary);
  width: auto;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
  border: none !important;
}
@media (max-width: 540px) {
  #ez-toc-container {
    padding: 20px !important;
    margin-bottom: 10px;
    border-radius: 5px !important;
  }
}

#ez-toc-container .ez-toc-title-container {
  display: flex !important;
  align-items: center !important;
}

#ez-toc-container p.ez-toc-title {
  font-weight: bold !important;
  font-size: 1.8rem !important;
}
@media (max-width: 540px) {
  #ez-toc-container p.ez-toc-title {
    font-size: 1.6rem !important;
  }
}

#ez-toc-container .ez-toc-title-toggle {
  margin-left: 10px;
}
#ez-toc-container .ez-toc-title-toggle a {
  text-decoration: none !important;
}
#ez-toc-container .ez-toc-title-toggle a input {
  display: none !important;
}
#ez-toc-container .ez-toc-title-toggle a label {
  display: none !important;
}
#ez-toc-container .ez-toc-title-toggle a::before {
  color: #aaa;
  content: "[非表示]";
  font-weight: bold;
  font-size: 1.4rem !important;
}
#ez-toc-container .ez-toc-title-toggle .ez-toc-icon-toggle-span {
  display: none;
}

#ez-toc-container.toc_close .ez-toc-title-toggle a::before {
  content: "[表示]";
}

#ez-toc-container ul li {
  line-height: 1.6 !important;
  margin-top: 15px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 540px) {
  #ez-toc-container ul li {
    font-size: 1.5rem !important;
    margin-top: 5px !important;
  }
}
#ez-toc-container ul li a {
  color: #111 !important;
  text-decoration: none !important;
}
#ez-toc-container ul li a:hover {
  text-decoration: underline !important;
}

.ez-toc-title-container p {
  font-weight: 600;
  margin: 0px;
}

ul.ez-toc-list {
  margin: 0 auto !important;
  padding-left: 20px !important;
}
@media (max-width: 540px) {
  ul.ez-toc-list {
    padding-top: 10px !important;
    padding-left: 15px !important;
  }
}

.ez-toc-list ul {
  counter-reset: hl_count;
  list-style: none;
  padding-left: 25px;
}

.ez-toc-list li {
  counter-increment: hl_count;
  font-weight: bold;
  position: relative;
}
.ez-toc-list li::marker {
  content: none;
}

.ez-toc-list li a:before {
  content: counters(hl_count, "-") !important;
  background-color: #A09C9C;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85em;
  text-align: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 0.3em;
}
@media (max-width: 540px) {
  .ez-toc-list li a:before {
    width: 20px;
    height: 20px;
    left: -25px;
    top: 3px;
  }
}

#ez-toc-container ul ul li {
  font-size: 1.6rem !important;
  font-weight: normal;
  position: relative;
  margin-top: 10px !important;
}
@media (max-width: 540px) {
  #ez-toc-container ul ul li {
    margin-top: 5px !important;
    font-size: 1.4rem !important;
  }
}

.ez-toc-list ul li a {
  padding-left: 1em;
}
.ez-toc-list ul li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  background-color: #555;
  border-radius: 50%;
  font-size: 0.85em;
  text-align: center;
  width: 6px;
  height: 6px;
  display: inline-block;
}

/* =======================================================

汎用性のあるボタンリンク

======================================================= */
a.article-cmnButton {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  height: 90px;
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  transition: ease 0.3s opacity;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  font-size: 2.2rem;
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 0 45px;
}
@media (max-width: 540px) {
  a.article-cmnButton {
    height: 65px;
    font-size: 1.7rem;
    margin: 20px auto;
    padding: 0 30px;
  }
}
a.article-cmnButton:hover {
  opacity: 0.7;
}
a.article-cmnButton.blank::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1;
}
@media (max-width: 540px) {
  a.article-cmnButton.blank::after {
    right: 15px;
  }
}
a.article-cmnButton.njss {
  background: #053A73;
}
a.article-cmnButton.yellow {
  background: #9D7B1F;
}
a.article-cmnButton.orange {
  background: #BA471D;
}
a.article-cmnButton.red {
  background: var(--primary);
}

/* =======================================================

NJSS訴求

======================================================= */
.njss-appeal {
  margin: 50px 0;
  border-radius: 15px;
  width: 100%;
  background: #F8F8F8;
  padding: 35px;
  position: relative;
  overflow: hidden;
}
.njss-appeal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  background: #F1F1F1;
  z-index: 1;
}
@media (max-width: 540px) {
  .njss-appeal {
    padding: 30px 20px;
    border-radius: 10px;
  }
}

.njss-appeal__head {
  display: flex;
  z-index: 2;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  gap: 10px;
}
@media (max-width: 540px) {
  .njss-appeal__head {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

.njss-appeal__logo {
  width: 50%;
  text-align: center;
}
@media (max-width: 540px) {
  .njss-appeal__logo {
    width: 100%;
  }
  .njss-appeal__logo img {
    max-width: 200px;
  }
}

.njss-appeal__ttl {
  width: 50%;
  font-size: 1.8rem;
  line-height: 1.8;
  display: block;
}
.njss-appeal__ttl .red {
  font-weight: bold !important;
  color: var(--primary);
}
@media (max-width: 540px) {
  .njss-appeal__ttl {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.6;
  }
}

.njss-appeal__pcImage {
  text-align: center;
  z-index: 2;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 540px) {
  .njss-appeal__pcImage img {
    width: 90%;
    max-width: 360px;
  }
}

ul.njss-appeal__list {
  display: flex;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 30px;
  padding-left: 0;
}
@media (max-width: 540px) {
  ul.njss-appeal__list {
    gap: 10px;
    max-width: 310px;
    margin: 0 auto 20px;
  }
}
ul.njss-appeal__list li {
  list-style-type: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.4em !important;
  margin-bottom: 0;
}
@media (max-width: 540px) {
  ul.njss-appeal__list li {
    width: 100% !important;
    font-size: 1.5rem;
  }
}
ul.njss-appeal__list li:nth-child(odd) {
  width: calc(45% - 5px);
}
ul.njss-appeal__list li:nth-child(even) {
  width: calc(55% - 5px);
}
ul.njss-appeal__list li .ico {
  margin-right: 5px;
}
@media (max-width: 540px) {
  ul.njss-appeal__list li .ico {
    width: 40px;
  }
}

ul.njss-appeal__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
  position: relative;
  gap: 10px 20px;
  padding-left: 0;
}
ul.njss-appeal__btns li {
  width: 100%;
  max-width: 650px;
  list-style-type: none;
  margin-bottom: 0;
}
@media (max-width: 540px) {
  ul.njss-appeal__btns li {
    width: 100%;
    max-width: 360px;
  }
}

a.njss-appeal__btn {
  display: block;
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff !important;
  font-size: 1.9rem;
  text-align: center;
  border-radius: 5px;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-decoration: none;
  transition: ease 0.3s opacity;
  font-weight: bold;
  gap: 5px;
}
@media (max-width: 540px) {
  a.njss-appeal__btn {
    height: 50px;
    font-size: 1.6rem;
  }
}
a.njss-appeal__btn i {
  position: absolute;
  right: 20px;
}
a.njss-appeal__btn:hover {
  opacity: 0.8;
}
a.njss-appeal__btn.njss {
  background: #0f3568;
}
@media (max-width: 540px) {
  a.njss-appeal__btn.njss img {
    width: 60px;
  }
}
a.njss-appeal__btn.trial {
  background: var(--primary);
}

/* =======================================================

article(アカデミー)

======================================================= */
.article-topInfo--acd {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 15px;
}
.article-topInfo--acd .articles__cate--acd {
  margin-right: unset;
  margin-bottom: 0;
}

.article-info--acd {
  display: flex;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 30px;
  min-height: 140px;
  margin-bottom: 30px;
}
@media (max-width: 540px) {
  .article-info--acd {
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
  }
}
.article-info--acd dl {
  width: 100%;
  max-width: 100%;
  min-width: 50%;
  font-size: 1.8rem;
}
@media (max-width: 540px) {
  .article-info--acd dl {
    max-width: 100%;
    min-width: 100%;
    font-size: 1.5rem;
  }
}
.article-info--acd dl:nth-child(2) {
  padding-left: 20px;
  border-left: #ddd 1px solid;
}
@media (max-width: 540px) {
  .article-info--acd dl:nth-child(2) {
    padding-left: 0;
    padding-top: 15px;
    border-left: none;
    border-top: #ddd 1px solid;
  }
}
.article-info--acd dl:first-child {
  padding-right: 20px;
}
@media (max-width: 540px) {
  .article-info--acd dl:first-child {
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.article-info--acd dt {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.article-info--acd dt i {
  color: var(--primary);
  margin-right: 0.3em;
}
.article-info--acd dd {
  line-height: 1.6em;
}

.article-toFormBtn--acd {
  display: block;
  width: 100%;
  border: var(--primary) 1px solid;
  border-radius: 40px;
  padding: 1em;
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  box-shadow: 0 5px rgba(157, 31, 47, 0.1);
  font-size: 1.9rem;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}
@media (max-width: 540px) {
  .article-toFormBtn--acd {
    font-size: 1.5rem;
  }
}
.article-toFormBtn--acd i {
  font-size: 1.1em;
  margin-right: 0.5em;
}
.article-toFormBtn--acd:hover {
  background-color: var(--primary);
  color: #fff;
}
.article-toFormBtn--acd:hover i {
  color: #fff;
}
.article-toFormBtn--acd.close {
  background-color: #666;
  color: #fff;
  box-shadow: unset;
  border: unset;
}

/* =======================================================

入札アカデミー　フォーム

======================================================= */
.academy-request {
  padding: 70px 0;
  margin-top: -50px;
  background: #f5f5f5;
}
@media (max-width: 540px) {
  .academy-request {
    padding: 40px 0;
  }
}

.academy-request__title {
  text-align: center;
  font-size: 3rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1em;
}
@media (max-width: 768px) {
  .academy-request__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 540px) {
  .academy-request__title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}

.academy-request__form {
  padding: 50px;
  border: #ddd 1px solid;
  background: #fff;
  max-width: 850px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .academy-request__form {
    padding: 30px 20px;
  }
}

.academy-request__form .mktoForm {
  width: 100% !important;
  font-size: 16px !important;
  padding: 0 !important;
}
@media (max-width: 540px) {
  .academy-request__form .mktoForm {
    font-size: 1.4rem !important;
  }
}

.mktoForm .mktoFormCol {
  float: none !important;
  width: 100% !important;
}
@media (max-width: 540px) {
  .mktoForm .mktoFormCol {
    margin-bottom: 15px !important;
  }
}

.mktoForm .mktoFieldWrap {
  float: none !important;
  width: 100% !important;
}

.mktoForm .mktoLabel {
  float: none !important;
  margin-bottom: 10px;
  width: 100% !important;
  display: inline-block;
}

.mktoForm .mktoAsterix {
  float: none !important;
  display: inline-block !important;
}

.mktoForm input,
.mktoForm textarea,
.mktoForm select {
  display: block !important;
  width: 100% !important;
  border-radius: 7px !important;
  padding: 0.7em 1em !important;
  border: #ccc 1px solid !important;
  font-weight: normal !important;
  height: auto !important;
}
@media (max-width: 768px) {
  .mktoForm input,
  .mktoForm textarea,
  .mktoForm select {
    padding: 0.5em 0.7em !important;
    font-size: 1.5rem !important;
    border-radius: 5px !important;
  }
}
.mktoForm input::-moz-placeholder, .mktoForm textarea::-moz-placeholder, .mktoForm select::-moz-placeholder {
  color: #bbb !important;
}
.mktoForm input::placeholder,
.mktoForm textarea::placeholder,
.mktoForm select::placeholder {
  color: #bbb !important;
}
.mktoForm input:focus,
.mktoForm textarea:focus,
.mktoForm select:focus {
  outline: unset !important;
  border: var(--primary) 1px solid !important;
  background: #fff !important;
  box-shadow: 0 0 10px rgba(157, 31, 47, 0.2) !important;
}
@supports (-ms-ime-align: auto) {
  .mktoForm input,
  .mktoForm textarea,
  .mktoForm select {
    -webkit-font-smoothing: auto !important;
  }
}
.mktoForm input,
.mktoForm select {
  line-height: 1em !important;
}
.mktoForm textarea {
  line-height: 1.6em !important;
}
.mktoForm select {
  padding: 0.9em 1em !important;
  padding-right: 15px !important;
  background-image: url(../imgs/select-arrow.png);
  background-repeat: no-repeat;
  background-size: 8px 6px;
  background-position: right 10px center;
}
@media (max-width: 768px) {
  .mktoForm select {
    padding: 0.7em 0.7em !important;
  }
}

.mktoButtonRow {
  width: 100%;
  padding-top: 25px !important;
}
@media (max-width: 540px) {
  .mktoButtonRow {
    padding-top: 15px !important;
  }
}

.mktoButtonWrap {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
  background: var(--secondary) !important;
  color: #fff !important;
  width: 400px !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  height: 60px !important;
  font-weight: bold !important;
  transition: ease 0.3s opacity !important;
  position: relative !important;
  font-size: 1.8rem !important;
  border: none !important;
}
@media (max-width: 768px) {
  .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
    font-size: 1.7rem !important;
  }
}
@media (max-width: 540px) {
  .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
    font-size: 1.5rem !important;
  }
}
.mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover {
  opacity: 0.7 !important;
}

.form__item.line {
  border-bottom: #ddd 1px solid;
  padding-bottom: 30px;
}
.form__item.line dt {
  margin-bottom: 15px;
}

#privacy_agreetment {
  margin-right: auto;
  width: auto !important;
}/*# sourceMappingURL=article.css.map */