@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
.l-breadcrumbs-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 1220px) {
  .l-breadcrumbs-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.l-breadcrumbs.w .p-breadcrumbs__list, .l-breadcrumbs.w .p-breadcrumbs__list-item, .l-breadcrumbs.w .p-breadcrumbs__list-item a {
  color: #fff;
}
.l-breadcrumbs.w .p-breadcrumbs__list-item a::before {
  background-image: url(../../img/icon/ico_arrow_w.svg);
}
.l-breadcrumbs.h {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.l-breadcrumbs.b {
  background-color: #EDEFF4;
}

.p-breadcrumbs__list {
  width: 100%;
  color: #77808D;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-breadcrumbs__list-item {
  color: #77808D;
  font-size: 1.4rem;
  display: inline;
  position: relative;
}
.p-breadcrumbs__list-item a {
  color: #242E4D;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-breadcrumbs__list-item a:hover {
    color: #414f7b;
    text-decoration: none;
  }
}
.p-breadcrumbs__list-item:not(:last-child) {
  padding-right: 25px;
}
.p-breadcrumbs__list-item:not(:last-child)::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../../img/icon/ico_arrow_g2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  position: absolute;
  top: 50%;
  right: 2px;
  margin-top: 2px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .p-breadcrumbs__list-item:not(:last-child)::before {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

.l-form__wrapper {
  background-color: #EDEFF4;
  padding: 50px 40px;
}
@media screen and (max-width: 540px) {
  .l-form__wrapper {
    padding: 40px 20px;
  }
}
.l-form__wrapper.disabled {
  background-color: #DDD;
}
.l-form__list {
  margin-bottom: 20px;
}
.l-form__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .l-form__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.l-form__sub-list {
  padding-left: 1em;
}
.l-form__sub-item:not(:last-child) {
  margin-bottom: 10px;
}

.p-form {
  width: 330px;
  background-color: #fff;
  padding: 9px 10px;
  border: #DEDEDE solid 1px;
  border-radius: 5px;
  display: block;
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .p-form {
    width: 100%;
  }
}
.p-form.l {
  width: 100%;
}
.p-form.alert {
  background-color: #FCEDED;
  color: #F0A3A3;
  border-color: #F0A3A3;
}
.p-form.disabled {
  background-color: #E9EFF2 !important;
  border-color: #E9EFF2 !important;
}
.p-form.disabled:focus {
  border-color: #E9EFF2 !important;
}
.p-form:focus {
  border-color: #414f7b;
}
.p-form + .p-form, .p-form + .p-form__select {
  margin-top: 20px;
}
.p-form__details {
  width: 100%;
  height: 170px;
  line-height: 1.6;
  padding: 9px 15px;
  resize: none;
}
.p-form__search {
  width: 100%;
}
.p-form__search-wrap {
  width: 290px;
  display: block;
  position: relative;
}
@media screen and (max-width: 540px) {
  .p-form__search-wrap {
    width: 100%;
  }
}
.p-form__search-btn {
  width: 22px;
  height: 22px;
  background-image: url(../../img/icon/ico_search.svg);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  background-color: transparent;
  text-indent: -999em;
  border: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-form__select {
  width: 290px;
  padding: 9px 10px;
  border: #DEDEDE solid 1px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}
.p-form__select.l {
  width: 100%;
}
@media screen and (max-width: 540px) {
  .p-form__select {
    width: 100%;
  }
}
.p-form__select::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: #ddd solid 3px;
  border-right: #ddd solid 3px;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s ease;
}
.p-form__select.active::after {
  transform: translateY(-50%) rotate(-45deg);
}
.p-form__select-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-form__select.m {
  width: 120px;
}
.p-form__select.s {
  width: 90px;
}
.p-form__select + .p-form__select {
  margin-left: 10px;
}
.p-form__select + p {
  margin-left: 30px;
}
.p-form__select-placeholder {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  visibility: visible;
}
.p-form__select-placeholder::before {
  padding: 0.2em 0.5em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: attr(data-placeholder);
  visibility: hidden;
}
.p-form__select-box {
  display: none;
  width: 100%;
  height: auto;
  max-height: 150px;
  background-color: #FFF;
  list-style-type: none;
  border-radius: 5px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
  padding: 20px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  box-sizing: border-box;
  overflow-y: scroll;
  z-index: 1;
}
.p-form__select-box__options {
  display: list-item;
  -webkit-user-select: none;
          user-select: none;
  transition: 0.3s ease;
}
.p-form__select-box__options + .p-form__select-box__options {
  margin-top: 1em;
}
@media screen and (min-width: 769px) {
  .p-form__select-box__options:hover {
    color: #6d789b;
  }
}
.p-form__select.active {
  background-color: #EDEFF4;
}
.p-form__select.active .p-form__select-box {
  display: block;
  animation: fadeInUp 0.35s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.p-check {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.p-check__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
}
.p-check__wrap span {
  width: calc(100% - 30px);
  color: #242E4D;
}
.p-check__v {
  width: 20px !important;
  height: 20px;
  border: #DEDEDE solid 1px;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-right: 10px;
  outline: none;
  appearance: none;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}
.p-check__v::before {
  content: "";
  width: 9px;
  height: 5px;
  border-top: solid 2px #242E4D;
  border-right: solid 2px #242E4D;
  position: absolute;
  top: 6px;
  left: 5px;
  transform: rotate(135deg);
  opacity: 0;
  transition: 0.15s ease;
}
.p-check:checked + .p-check__v::before {
  opacity: 1;
}

.p-radio {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.p-radio__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
}
.p-radio__wrap span {
  width: calc(100% - 30px);
  color: #242E4D;
}
.p-radio__v {
  width: 20px !important;
  height: 20px;
  background-color: #fff;
  border: #DEDEDE solid 1px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  outline: none;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}
.p-radio__v::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #242E4D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.15s ease;
}
.p-radio:checked + .p-radio__v::before {
  opacity: 1;
}

.p-onof {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.p-onof__wrap {
  width: 60px;
  height: 32px;
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.p-onof__v {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: #DEDEDE solid 1px;
  border-radius: 60px;
  display: block;
  z-index: 0;
  transition: 0.15s ease;
}
.p-onof__v::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #DDDDDD;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 32px;
  transition: 0.15s ease;
}
.p-onof:checked + .p-onof__v::before {
  background-color: #242E4D;
  left: 4px;
}

.p-form__checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 20px;
}
.p-form__label {
  color: #242E4D;
  display: block;
  margin-bottom: 10px;
}
.p-form__label span {
  font-size: 1.4rem;
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 540px) {
  .p-form__label span {
    font-size: 1.2rem;
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.p-form__recaptcha {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .p-form__recaptcha {
    margin-bottom: 30px;
  }
}

div + input, div + textarea, p + input, p + textarea {
  margin-top: 50px;
}

input + h1, input + h2, input + h3, input + h4, input + h5, input + h6, textarea + h1, textarea + h2, textarea + h3, textarea + h4, textarea + h5, textarea + h6 {
  margin-top: 30px;
}

input:-internal-autofill-selected {
  background-color: #fff !important;
}

input::placeholder, textarea::placeholder {
  color: #AAAAAA;
}

input:-ms-input-placeholder, textarea:-ms-placeholder {
  color: #AAAAAA;
}

input::-ms-input-placeholder, textarea::-ms-placeholder {
  color: #AAAAAA;
}

select {
  appearance: none;
}

.l-frame-wrapper iframe {
  height: 100%;
  width: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.l-table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  border: #242E4D solid 1px;
}
.l-table th, .l-table td {
  vertical-align: middle;
  padding: 15px 40px;
}
@media screen and (max-width: 768px) {
  .l-table th, .l-table td {
    padding: 10px 20px;
  }
}
.l-table tr:not(:last-child) th {
  border-bottom: #fff solid 1px;
}
.l-table tr:not(:last-child) td {
  border-bottom: #242E4D solid 1px;
}
.l-table tr:not(:last-child) td.d {
  border-bottom: #242E4D dashed 1px;
}
.l-table th {
  width: 184px;
  background-color: #242E4D;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .l-table th {
    width: auto;
    min-width: 60px;
  }
}
.l-table th + th {
  border-left: #fff solid 1px;
}
.l-table td {
  background-color: #fff;
  text-align: left;
}
.l-table td + td {
  border-left: #242E4D dashed 1px;
}
.l-table td p {
  color: #242E4D;
}
.l-table__scr-wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-table__scr-wrapper {
    width: calc(100% + 20px);
    padding-bottom: 60px;
  }
  .l-table__scr-wrapper::after {
    content: "";
    width: 110px;
    height: 24px;
    background-image: url(../../img/icon/ico_scr_attention2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}
.l-table__scr-inner {
  padding: 1px;
}
@media screen and (max-width: 768px) {
  .l-table__scr-inner {
    display: block;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  .l-table__scr {
    width: 1000px;
  }
}
@media screen and (max-width: 540px) {
  .l-table__scr {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .l-table__scr th {
    width: 120px;
  }
}
.l-table__support tr td:last-child {
  color: #77808D;
}
.l-table__support tr td:last-child p {
  color: #77808D;
}

.l-search {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
  display: block;
  margin: 0 auto 80px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 540px) {
  .l-search {
    margin-bottom: 60px;
  }
}
.l-search__inner {
  padding: 35px 40px 40px;
}
@media screen and (max-width: 540px) {
  .l-search__inner {
    padding: 20px;
  }
}
.l-search__list {
  margin-bottom: 10px;
}
.l-search__item {
  padding-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
}
.l-search__item:not(:nth-of-type(1)) {
  padding-top: 20px;
  border-top: #C4C4C4 dashed 1px;
}

.p-search__head {
  background-color: #242E4D;
  height: 80px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .p-search__head {
    height: 60px;
    font-size: 1.6rem;
  }
}
.p-search__head::after {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../../img/icon/ico_close2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .p-search__head:hover {
    background-color: #414f7b;
  }
}
.p-search__head.is-closed::after {
  background-image: url(../../img/icon/ico_open2.svg);
}
.p-search__category-parent {
  width: 120px;
  height: 30px;
  background-color: #EDEFF4;
  color: #242E4D;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-right: 55px;
}
@media screen and (max-width: 768px) {
  .p-search__category-parent {
    margin: 0 auto 15px;
  }
}
.p-search__category-list {
  width: calc(100% - 175px);
  display: flex;
  flex-wrap: wrap;
  padding-top: 3px;
}
@media screen and (max-width: 768px) {
  .p-search__category-list {
    width: 100%;
    padding-top: 0;
  }
}
.p-search__category-list.l .p-search__category-item {
  margin-right: 20px;
}
.p-search__category-list.l .p-search__category-item:nth-of-type(even) {
  margin-right: 0;
}
@media screen and (max-width: 540px) {
  .p-search__category-list.l .p-search__category-item {
    margin-right: 0;
  }
}
.p-search__category-item {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.p-search__category-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .p-search__category-item:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-search__category-item:not(:last-child) {
    margin-right: 20px;
  }
}

.l-pagination {
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 540px) {
  .l-pagination {
    margin-top: 30px;
  }
}

.p-pagination__more {
  width: 115px;
  height: 100%;
  color: #242E4D;
  font-size: 1.6rem;
  text-decoration: none;
  border: #d5dae2 solid 1px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .p-pagination__more {
    width: 100px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .p-pagination__more:hover {
    color: #414f7b;
    border-color: #414f7b;
  }
}
.p-pagination__current {
  color: #242E4D;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 40px;
}
@media screen and (max-width: 540px) {
  .p-pagination__current {
    font-size: 1.4rem;
    padding: 0 25px;
  }
}

.l-case-mv {
  width: 100%;
  height: 520px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.l-case-mv__wrapper {
  margin-bottom: 75px;
}
@media screen and (max-width: 540px) {
  .l-case-mv__wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 540px) {
  .l-case-mv {
    height: 250px;
    margin-bottom: 20px;
  }
}
.l-case-anchor__list {
  background-color: #EDEFF4;
  margin-bottom: 40px;
}
.l-case-section__block::after {
  content: "";
  display: block;
  clear: both;
}
.l-case-section__block + .l-case-section__block, .l-case-section__block + p, .l-case-section__block + h3, .l-case-section__block + .p-case-section__img {
  margin-top: 55px;
}
.l-case-side__content {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  padding: 40px 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .l-case-side__content {
    padding: 30px 20px;
  }
}

.p-case-mv__ttl {
  color: #242E4D;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 540px) {
  .p-case-mv__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.p-case-mv__lead {
  color: #242E4D;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  .p-case-mv__lead {
    font-size: 1.6rem;
  }
}
.p-case-anchor__item {
  display: flex;
  align-items: center;
  padding: 15px 25px;
}
.p-case-anchor__item:not(:last-child) {
  border-bottom: #fff solid 1px;
}
@media screen and (max-width: 540px) {
  .p-case-anchor__item {
    display: block;
  }
}
.p-case-anchor__head {
  width: 130px;
  color: #242E4D;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 540px) {
  .p-case-anchor__head {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-case-anchor__head span {
  width: 20px;
  height: 20px;
  background-color: #242E4D;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.p-case-anchor__lead {
  width: calc(100% - 150px);
  color: #242E4D;
  display: block;
}
@media screen and (max-width: 540px) {
  .p-case-anchor__lead {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-case-anchor__lead:hover {
    color: #414f7b;
  }
}
.p-case-section__head {
  width: 170px;
  height: 40px;
  border: #242E4D solid 1px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .p-case-section__head {
    width: 152px;
    height: 36px;
  }
}
.p-case-section__head .num, .p-case-section__head .name {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-case-section__head .num {
  width: 40px;
  height: 100%;
  background-color: #242E4D;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  .p-case-section__head .num {
    width: 36px;
    font-size: 1.4rem;
  }
}
.p-case-section__head .name {
  width: calc(100% - 40px);
  color: #242E4D;
  font-size: 1.6rem;
}
@media screen and (max-width: 540px) {
  .p-case-section__head .name {
    width: calc(100% - 36px);
    font-size: 1.4rem;
  }
}
.p-case-section__ttl {
  color: #242E4D;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .p-case-section__ttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.p-case-section__txt {
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-case-section__txt + p {
  margin-top: 2em;
}
.p-case-section__txt + div {
  margin-top: 40px;
}
@media screen and (max-width: 540px) {
  .p-case-section__txt + div {
    margin-top: 25px;
  }
}
.p-case-section__txt + h3 {
  margin-top: 30px;
}
@media screen and (max-width: 540px) {
  .p-case-section__txt + h3 {
    margin-top: 25px;
  }
}
.p-case-section__img + p {
  margin-top: 40px;
}
@media screen and (max-width: 540px) {
  .p-case-section__img + p {
    margin-top: 25px;
  }
}
.p-case-section__img.left, .p-case-section__img.right {
  width: 48.75%;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .p-case-section__img.left, .p-case-section__img.right {
    width: 390px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 540px) {
  .p-case-section__img.left, .p-case-section__img.right {
    width: 100%;
    float: none !important;
    margin-bottom: 25px !important;
  }
}
.p-case-section__img.left {
  float: left;
  margin-right: 20px;
}
@media screen and (max-width: 540px) {
  .p-case-section__img.left {
    margin-right: 0;
  }
}
.p-case-section__img.right {
  float: right;
  margin-left: 20px;
}
@media screen and (max-width: 540px) {
  .p-case-section__img.right {
    margin-left: 0;
  }
}
.p-case-section__img.left .p-case-section__img-caption, .p-case-section__img.right .p-case-section__img-caption {
  text-align: center;
}
.p-case-section__img-caption {
  font-size: 1.4rem;
  text-align: left;
  margin-top: 15px;
}
@media screen and (max-width: 540px) {
  .p-case-section__img-caption {
    font-size: 1.2rem;
  }
}
.p-case-section__num-list {
  border: #d5dae2 solid 1px;
  padding: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .p-case-section__num-list {
    margin-bottom: 20px;
  }
}
.p-case-section__num-list li {
  text-indent: -1.5em;
  letter-spacing: 0.05em;
  padding-left: 1.5em;
  line-height: 2;
}
.p-case-movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .p-case-movie {
    margin-bottom: 30px;
  }
}
.p-case-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-case-company__logo {
  width: 100%;
  max-width: 235px;
  text-align: center;
  margin: 0 auto 15px;
}
@media screen and (max-width: 540px) {
  .p-case-company__logo {
    width: 205px;
  }
}
.p-case-company__name {
  color: #242E4D;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.p-case-company__data {
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .p-case-company__data {
    margin-bottom: 20px;
  }
}
.p-case-company__data tr:not(:last-child) {
  border-bottom: #fff solid 1px;
}
.p-case-company__data th, .p-case-company__data td {
  background-color: #EDEFF4;
  color: #242E4D;
  font-size: 1.4rem;
  text-align: left;
  padding: 10px;
}
.p-case-company__data td {
  line-height: 2;
}
.p-case-company__data th {
  width: 80px;
  border-right: #fff solid 1px;
}
.p-case-company__category {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px 31px;
  text-indent: -999em;
}
.p-case-company__category-wrapper {
  border-top: #d5dae2 solid 1px;
  padding-top: 25px;
}
@media screen and (max-width: 540px) {
  .p-case-company__category-wrapper {
    margin-top: 20px;
  }
}
.p-case-company__category-head {
  color: #242E4D;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .p-case-company__category-head {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.p-case-company__category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-case-company__category-list {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 540px) {
  .p-case-company__category-list {
    justify-content: center;
  }
}
.p-case-company__category-item {
  width: 100px;
  height: 31px;
  margin-bottom: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 540px) {
  .p-case-company__category-item {
    width: 92px;
    height: 29px;
  }
}
@media screen and (max-width: 540px) {
  .p-case-company__category {
    background-size: 92px 29px;
  }
}
.p-case-company__category.c1 {
  background-image: url(../../img/case/ctg1.svg?2022-07-01);
}
.p-case-company__category.c1.d {
  background-image: url(../../img/case/ctg1_d.svg);
}
.p-case-company__category.c2 {
  background-image: url(../../img/case/ctg2.svg?2022-07-01);
}
.p-case-company__category.c2.d {
  background-image: url(../../img/case/ctg2_d.svg);
}
.p-case-company__category.c3 {
  background-image: url(../../img/case/ctg3.svg?2022-07-01);
}
.p-case-company__category.c3.d {
  background-image: url(../../img/case/ctg3_d.svg);
}
.p-case-company__category.c4 {
  background-image: url(../../img/case/ctg4.svg?2022-07-01);
}
.p-case-company__category.c4.d {
  background-image: url(../../img/case/ctg4_d.svg);
}
.p-case-company__category.c5 {
  background-image: url(../../img/case/ctg5.svg?2022-07-01);
}
.p-case-company__category.c5.d {
  background-image: url(../../img/case/ctg5_d.svg);
}
.p-case-company__category.c6 {
  background-image: url(../../img/case/ctg6.svg?2022-07-01);
}
.p-case-company__category.c6.d {
  background-image: url(../../img/case/ctg6_d.svg);
}

.l-kh-mv {
  display: flex;
  flex-wrap: wrap;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .l-kh-mv {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-kh-mv {
    display: block;
  }
}
.l-kh-mv__lead {
  width: calc(100% - 380px);
  border-right: #d5dae2 solid 1px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .l-kh-mv__lead {
    width: 100%;
    border-right: none;
    border-bottom: #d5dae2 solid 1px;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.l-kh-mv__point {
  width: 380px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .l-kh-mv__point {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.l-kh-dl__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-kh-dl__wrapper {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .l-kh-dl__block {
    width: 100%;
  }
}
.l-kh-dl__thumb {
  width: calc(100% - 650px);
  max-width: 400px;
  text-align: center;
  margin: 25px auto 0;
}
@media screen and (max-width: 1024px) {
  .l-kh-dl__thumb {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.l-kh-dl__form {
  width: 650px;
}
@media screen and (max-width: 1024px) {
  .l-kh-dl__form {
    width: 100%;
  }
}

.p-kh__head {
  margin-bottom: 25px;
  margin-left: -9px;
}
@media screen and (max-width: 540px) {
  .p-kh__head {
    margin-left: -7px;
  }
}

.l-seminar__item {
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
}
.l-seminar__item + .l-seminar__item {
  margin-top: 40px;
}
@media screen and (max-width: 540px) {
  .l-seminar__item + .l-seminar__item {
    margin-top: 20px;
  }
}
.l-seminar__item.disabled {
  box-shadow: none;
}
.l-seminar__item-inner {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-seminar__item-inner {
    flex-flow: wrap-reverse;
    padding: 0;
  }
}
.l-seminar__l-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .l-seminar__l-head {
    margin-bottom: 15px;
  }
}
.l-seminar__l-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.p-seminar__thumb {
  width: 450px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .p-seminar__thumb {
    width: 400px;
    height: 267px;
  }
}
@media screen and (max-width: 768px) {
  .p-seminar__thumb {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .p-seminar__thumb {
    height: 225px;
  }
}
.p-seminar__txt-block {
  width: calc(100% - 465px);
}
@media screen and (max-width: 1024px) {
  .p-seminar__txt-block {
    width: calc(100% - 415px);
  }
}
@media screen and (max-width: 768px) {
  .p-seminar__txt-block {
    width: 100%;
    padding: 20px;
  }
}
.p-seminar__status {
  width: 165px;
  height: 30px;
  border-radius: 4px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-seminar__status-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media screen and (max-width: 540px) {
  .p-seminar__status-wrap {
    flex-flow: wrap-reverse;
  }
}
@media screen and (max-width: 540px) {
  .p-seminar__status {
    margin-bottom: 10px;
  }
}
.p-seminar__status.entry {
  background-color: #EDEFF4;
  color: #242E4D;
}
.p-seminar__status.disabled {
  background-color: #DDDDDD;
  color: #77808D;
}
.p-seminar__date {
  height: 50px;
  color: #242E4D;
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 28px;
  margin-right: 20px;
  margin-left: -25px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-seminar__date {
    height: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 540px) {
  .p-seminar__date {
    width: 100%;
    margin-right: 0;
    margin-left: -20px;
  }
}
.p-seminar__date::before, .p-seminar__date::after {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-seminar__date::before {
  height: 100%;
  background-color: #d5dae2;
}
.p-seminar__date::after {
  height: 16px;
  background-color: #242E4D;
}
.p-seminar__date.m {
  margin-left: 0;
}
.p-seminar__date.disabled {
  color: #AAAAAA;
}
.p-seminar__ttl {
  color: #242E4D;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .p-seminar__ttl {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.p-seminar__ttl.disabled {
  color: #AAAAAA;
}
.p-seminar__data-list {
  border: #d5dae2 solid 1px;
  margin-top: 20px;
}
.p-seminar__data-list tr:not(:last-child) {
  border-bottom: #d5dae2 solid 1px;
}
.p-seminar__data-list td {
  padding: 10px 15px;
}
@media screen and (max-width: 1024px) {
  .p-seminar__data-list td {
    width: 100%;
    display: block;
    padding: 15px;
  }
}
.p-seminar__data-list td + td {
  width: 50%;
  border-left: #d5dae2 solid 1px;
}
@media screen and (max-width: 1024px) {
  .p-seminar__data-list td + td {
    width: 100%;
    border-left: none;
    border-top: #d5dae2 solid 1px;
  }
}
.p-seminar__data-list td span {
  color: #242E4D;
  font-weight: bold;
  margin-right: 1em;
}
@media screen and (max-width: 320px) {
  .p-seminar__data-list td span {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .p-seminar__data-list td span.l {
    display: block;
  }
}
.p-seminar__data-list.disabled {
  border: none;
}
.p-seminar__data-list.disabled tr, .p-seminar__data-list.disabled td {
  border-color: #fff;
}
.p-seminar__data-list.disabled td {
  background-color: #EDEFF4;
  color: #AAAAAA;
}
.p-seminar__btn, .p-seminar__block {
  margin-bottom: 50px;
}
@media screen and (max-width: 540px) {
  .p-seminar__btn, .p-seminar__block {
    margin-bottom: 30px;
  }
}
.p-seminar__img {
  margin-bottom: 40px;
}
.p-seminar__img img {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.p-seminar__table {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-seminar__table {
    margin-bottom: 0;
  }
}
.p-seminar__prg-list {
  margin-bottom: 50px;
}
@media screen and (max-width: 540px) {
  .p-seminar__prg-list {
    margin-bottom: 30px;
  }
}
.p-seminar__prg-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-seminar__prg-theme, .p-seminar__prg-data {
  padding-left: 1em;
}
.p-seminar__prg-theme {
  color: #242E4D;
  font-weight: bold;
  position: relative;
}
.p-seminar__prg-theme::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #242E4D;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 540px) {
  .p-seminar__prg-theme::before {
    width: 6px;
    height: 6px;
  }
}
.p-seminar__spr-wrapper + .p-seminar__spr-wrapper {
  margin-top: 40px;
}
.p-seminar__spr-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .p-seminar__spr-inner {
    display: block;
  }
}
.p-seminar__spr-img {
  width: 140px;
}
@media screen and (max-width: 540px) {
  .p-seminar__spr-img {
    margin: 0 auto 20px;
  }
}
.p-seminar__spr-profile {
  width: calc(100% - 160px);
}
@media screen and (max-width: 540px) {
  .p-seminar__spr-profile {
    width: 100%;
  }
}
.p-seminar__spr-position {
  margin-bottom: 10px;
}
.p-seminar__spr-name {
  color: #242E4D;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-seminar__spr-txt {
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-seminar__spr-data__head {
  color: #242E4D;
  font-weight: bold;
  margin-bottom: 5px;
}
.p-seminar__form-wrapper {
  margin-bottom: 30px;
  padding-top: 100px;
  margin-top: -50px;
}
@media screen and (max-width: 540px) {
  .p-seminar__form-wrapper {
    padding-top: 60px;
    margin-top: -30px;
  }
}
.p-seminar__form-comp {
  color: #242E4D;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.p-seminar__form-comp.disabled {
  color: #77808D;
}
.p-seminar__form-comp + .p-seminar__form-txt {
  margin-top: 30px;
}
@media screen and (max-width: 540px) {
  .p-seminar__form-comp + .p-seminar__form-txt {
    margin-top: 20px;
  }
}
.p-seminar__form-txt {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .p-seminar__form-txt {
    text-align: left;
  }
}

.l-price__plan-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .l-price__plan-wrapper {
    width: 100%;
    display: block;
  }
}
.l-price__plan-item {
  width: calc((100% - 40px) / 3);
}
@media screen and (min-width: 1025px) {
  .l-price__plan-item {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .l-price__plan-item {
    width: 100%;
  }
}
.l-price__plan-inner {
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
  padding: 35px 30px 40px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .l-price__plan-inner {
    padding: 40px 20px 30px;
  }
}
.l-price__plan-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .l-price__plan-list {
    margin-bottom: 30px;
  }
}
.l-price__plan-list__wrapper {
  height: auto;
  padding-top: 68px;
  position: relative;
  overflow: auto;
}
@media screen and (max-width: 540px) {
  .l-price__plan-list__wrapper {
    padding-top: 40px;
  }
}
.l-price__plan-list__wrapper.js-omitted {
  height: 755px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .l-price__plan-list__wrapper.js-omitted {
    height: 660px;
  }
}
.l-price__plan-list__item {
  padding: 10px 20px;
}
@media screen and (max-width: 540px) {
  .l-price__plan-list__item {
    padding: 10px;
  }
}
.l-price__plan-list__item:nth-of-type(odd) {
  background-color: #F7F7F7;
}
.l-price__plan-tab__group {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-price__plan-tab__group {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    position: relative;
  }
}
.l-price__plan-tab__group-item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 540px) {
  .l-price__plan-tab__group-item {
    width: calc((100% - 6px) / 3);
  }
}
.l-price__plan-tab__group-item a {
  width: 100%;
  height: 60px;
  background-color: #AAAAAA;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .l-price__plan-tab__group-item a {
    height: 45px;
    font-size: 1.5rem;
    line-height: 1;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 320px) {
  .l-price__plan-tab__group-item a {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .l-price__plan-tab__group-item a:hover {
    opacity: 0.7;
  }
}
.l-price__plan-tab__group-item a::after {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.l-price__plan-tab__group-item a.current::after {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .l-price__plan-tab__group-item a.current:hover {
    opacity: 1;
  }
}
.l-price__plan-tab__group-item a.current.cM {
  background-color: #242E4D;
}
.l-price__plan-tab__group-item a.current.cM::after {
  background-color: #242E4D;
}
@media screen and (min-width: 769px) {
  .l-price__plan-tab__group-item a.current.cM:hover {
    background-color: #414f7b;
  }
}
.l-price__plan-tab__group-item a.current.cD {
  background-color: #3758a7;
}
.l-price__plan-tab__group-item a.current.cD::after {
  background-color: #3758a7;
}
@media screen and (min-width: 769px) {
  .l-price__plan-tab__group-item a.current.cD:hover {
    background-color: #7398f1;
  }
}
.l-price__plan-tab__group-item a.current.cDR {
  background-color: #008080;
}
.l-price__plan-tab__group-item a.current.cDR::after {
  background-color: #008080;
}
@media screen and (min-width: 769px) {
  .l-price__plan-tab__group-item a.current.cDR:hover {
    background-color: #129E9E;
  }
}
.l-price__table {
  border: none;
}
.l-price__table tr {
  border-color: #002680;
}
.l-price__table tr:last-child {
  border-right: #002680 solid 1px;
  border-left: #002680 solid 1px;
  border-bottom: #002680 solid 1px;
}
.l-price__table th.tH1, .l-price__table th.tH2, .l-price__table th.tH3, .l-price__table th.tH4, .l-price__table th.tH5 {
  height: 84px;
}
.l-price__table th.tH1 {
  background-color: #6B779D;
}
.l-price__table th.tH2 {
  background-color: #3A466C;
}
.l-price__table th.tH3 {
  background-color: #242E4D;
}
.l-price__table th.tH4 {
  background-color: #F2B84A;
}
.l-price__table th.tH5 {
  background-color: #E8A21C;
}
.l-price__support-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-price__support-wrapper {
    display: block;
  }
}
.l-price__support-wrapper.c3 .l-price__support-item {
  width: calc((100% - 40px) / 3);
}
.l-price__support-wrapper.c4 .l-price__support-item {
  width: calc((100% - 60px) / 4);
}
.l-price__support-item {
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .l-price__support-item {
    width: calc((100% - 20px) / 2) !important;
  }
  .l-price__support-item:nth-of-type(-n+2) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-price__support-item {
    width: 100% !important;
  }
  .l-price__support-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.l-price__support-item:nth-of-type(1) .p-price__support-ttl {
  background-color: #242E4D;
}
.l-price__support-item:nth-of-type(2) .p-price__support-ttl {
  background-color: #006280;
}
.l-price__support-item:nth-of-type(3) .p-price__support-ttl {
  background-color: #008080;
}
.l-price__support-item:nth-of-type(4) .p-price__support-ttl {
  background-color: #177E56;
}
.l-price__support-inner {
  padding: 24px 30px 30px;
}
@media screen and (max-width: 540px) {
  .l-price__support-inner {
    padding: 24px 20px 24px;
  }
}

.l-app__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-app__item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 540px) {
  .l-app__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.l-app__item.l {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-app__item.l {
    display: block;
  }
}
.l-app__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 540px) {
  .l-app__item {
    display: block;
  }
}
.l-app__inner {
  width: calc(100% - 430px);
}
@media (max-width: 900px) {
  .l-app__inner {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 540px) {
  .l-app__inner {
    width: 100%;
  }
}
.l-app__inner.l {
  width: calc(100% - 810px);
}
@media screen and (max-width: 1220px) {
  .l-app__inner.l {
    width: calc(100% - 660px);
  }
}
@media screen and (max-width: 1024px) {
  .l-app__inner.l {
    width: 100%;
  }
}
.l-app__flow-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-app__flow-list {
    justify-content: flex-start;
  }
}
.l-app__flow-item {
  width: calc(100%/5);
  position: relative;
  margin-left: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .l-app__flow-item {
    width: calc((100% - 100px) / 5);
  }
}
@media screen and (max-width: 768px) {
  .l-app__flow-item {
    width: calc((100% - 40px) / 3);
    margin-left: 0;
  }
}
@media (max-width: 768px) and (min-width: 501px) {
  .l-app__flow-item:nth-of-type(-n+3) {
    margin-bottom: 40px;
  }
  .l-app__flow-item:not(:nth-of-type(3n)) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 540px) {
  .l-app__flow-item {
    width: calc((100% - 20px) / 2);
  }
  .l-app__flow-item:nth-of-type(-n+4) {
    margin-bottom: 30px;
  }
  .l-app__flow-item:nth-of-type(odd) {
    margin-right: 20px;
  }
}

.p-price__lead-wrapper {
  width: 100%;
  max-width: 795px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
}
@media (max-width: 767px) {
  .p-price__lead-wrapper {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .p-price__lead-wrapper {
    margin-bottom: 40px;
  }
}
.p-price__lead-item {
  width: calc((100% - 20px) / 2);
  height: 190px;
  background-color: #EDEFF4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 767px) {
  .p-price__lead-item {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .p-price__lead-item {
    height: 165px;
  }
}
@media (max-width: 767px) {
  .p-price__lead-item:nth-of-type(2) {
    margin-top: 35px;
  }
}
.p-price__lead-item:nth-of-type(2)::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url(../../img/icon/ico_plus2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
  position: absolute;
  top: 50%;
  left: -42px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-price__lead-item:nth-of-type(2)::before {
    width: 56px;
    height: 56px;
    top: -44px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-price__lead-txt {
  color: #242E4D;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 540px) {
  .p-price__lead-txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 320px) {
  .p-price__lead-txt {
    font-size: 2.2rem;
  }
}
.p-price__lead-txt .accent {
  color: #242E4D;
}
.p-price__lead-txt .l {
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .p-price__lead-txt .l {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 540px) {
  .p-price__lead-txt .l {
    font-size: 2.4rem;
  }
}
.p-price__lead-txt .ll {
  font-size: 10.3rem;
  padding: 0 0.025em;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .p-price__lead-txt .ll {
    font-size: 9rem;
  }
}
@media screen and (max-width: 540px) {
  .p-price__lead-txt .ll {
    font-size: 8.6rem;
  }
}
.p-price__plan-name {
  height: 80px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-price__plan-name.cM {
  background-color: #242E4D;
}
.p-price__plan-name.cD {
  background-color: #3758a7;
}
.p-price__plan-name.cDR {
  background-color: #008080;
}
@media screen and (max-width: 1024px) {
  /*.p-price__plan-name {
    display: none;
  }*/
}
.p-price__plan-head {
  color: #242E4D;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .p-price__plan-head {
    font-size: 1.6rem;
  }
}
.p-price__plan-img {
  width: 220px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 540px) {
  .p-price__plan-img {
    width: 195px;
  }
}
.p-price__plan-list__head {
  margin-top: -38px;
}
@media screen and (max-width: 1024px) {
  .p-price__plan-list__head {
    margin-top: 0;
  }
}
.p-price__plan-open {
  width: 100%;
  background-color: #242E4D;
  height: 80px;
  color: #fff;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .p-price__plan-open {
    height: 55px;
    font-size: 1.4rem;
  }
}
.p-price__plan-open:after {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../../img/icon/ico_open2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .p-price__plan-open:after {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-price__plan-open:hover {
    background-color: #414f7b;
  }
}
.p-price__support-ttl {
  height: 90px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .p-price__support-ttl {
    height: 80px;
    font-size: 1.6rem;
  }
}
.p-price__support-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-price__support-list__item:first-child {
    min-height: 117px;
  }
}
.p-price__support-list__item:not(:first-child) {
  padding-top: 20px;
}
.p-price__support-list__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: #EBEBEB solid 1px;
}
.p-price__support-txt {
  width: 100%;
  color: #242E4D;
  line-height: 1.5;
  text-align: center;
}
.p-price__support-txt b {
  display: block;
}
.p-price__support-head {
  height: 30px;
  background-color: #EDEFF4;
  color: #242E4D;
  font-weight: bold;
  line-height: 1;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  /*.p-price__support-head {
    height: 25px;
    font-size: 1.2rem;
  }*/
}
.p-price__support-data {
  width: 100%;
}
.p-price__support-data li {
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}
.p-price__support-data li:not(:last-child) {
  margin-bottom: 5px;
}

.p-app__thumb {
  width: 390px;
}
@media (max-width: 900px) {
  .p-app__thumb {
    width: 300px;
  }
}
@media screen and (max-width: 540px) {
  .p-app__thumb {
    width: 280px;
    margin: 0 auto 20px;
  }
}
.p-app__thumb.l {
  width: 100%;
  max-width: 700px;
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
}
@media screen and (max-width: 1220px) {
  .p-app__thumb.l {
    max-width: 560px;
  }
}
@media screen and (max-width: 1024px) {
  .p-app__thumb.l {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 540px) {
  .p-app__thumb.l {
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
  }
}
.p-app__title {
  color: #242E4D;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 540px) {
  .p-app__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.p-app__title-num {
  width: 32px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  text-indent: -999em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  overflow: hidden;
}
.p-app__title-num.n1 {
  background-image: url(../../img/price/mobile/ico_num1.svg);
}
.p-app__title-num.n2 {
  background-image: url(../../img/price/mobile/ico_num2.svg);
}
.p-app__title-num.n3 {
  background-image: url(../../img/price/mobile/ico_num3.svg);
}
.p-app__title-num.n4 {
  background-image: url(../../img/price/mobile/ico_num4.svg);
}
.p-app__title-num.n5 {
  background-image: url(../../img/price/mobile/ico_num5.svg);
}
.p-app__txt {
  color: #242E4D;
  letter-spacing: 0.05em;
}
.p-app__txt + .p-app__txt {
  margin-top: 1.5em;
}
.p-app__flow-img {
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(11, 11, 11, 0.08);
  margin-bottom: 25px;
}
@media screen and (max-width: 540px) {
  .p-app__flow-img {
    margin-bottom: 20px;
  }
}
.p-app__flow-img__inner {
  overflow: hidden;
}
.p-app__flow-img img {
  transition: 0.3s ease;
}
.p-app__flow-img a {
  padding: 20px 20px 45px;
}
@media screen and (max-width: 540px) {
  .p-app__flow-img a {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .p-app__flow-img a:hover img {
    transform: scale(1.1);
  }
}
.p-app__flow-num {
  width: 55px;
  height: 55px;
  background-color: #7c87a1;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 540px) {
  .p-app__flow-num {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}
.p-app__flow-head {
  color: #242E4D;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .l-function__column {
    margin-top: -40px;
  }
}
.l-function__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 0 !important;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .l-function__item {
    padding: 0;
  }
}
@media screen and (max-width: 540px) {
  .l-function__item {
    display: block;
    margin-top: 40px;
  }
}

.p-function__thumb {
  width: 185px;
  height: 185px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .p-function__thumb {
    width: 240px;
    height: 240px;
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-function__thumb a:hover .p-function__thumb-inner {
    transform: scale(1.1);
  }
}
.p-function__thumb-inner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s ease;
}
.p-function__data {
  width: calc(100% - 205px);
}
@media screen and (max-width: 540px) {
  .p-function__data {
    width: 100%;
  }
}

#tinymce {
  padding: 20px !important;
}

.wp-editor {
  /* 要素寄せ */
}
.wp-editor h1, .wp-editor h2, .wp-editor h3, .wp-editor h4, .wp-editor h5, .wp-editor h6 {
  color: #242E4D;
  font-weight: bold;
}
.wp-editor h1 {
  font-size: 3.6rem;
  line-height: 1.4;
  margin: 50px 0;
  position: relative;
}
.wp-editor h2 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin: 40px 0;
  position: relative;
}
.wp-editor h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 40px 0;
  position: relative;
}
.wp-editor h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 30px 0 15px;
}
.wp-editor h5, .wp-editor h6 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 30px 0 15px;
}
.wp-editor > *:first-child {
  margin-top: 0;
}
.wp-editor p {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.wp-editor p + p {
  margin-top: 2em;
}
.wp-editor em {
  font-style: italic;
}
.wp-editor blockquote {
  background-color: #EDEFF4;
  line-height: 2;
  padding: 30px;
  margin: 40px 0;
}
.wp-editor ul, .wp-editor ol {
  margin-bottom: 40px;
  padding-left: 1.5em;
}
.wp-editor ul li, .wp-editor ol li {
  color: #242E4D;
  line-height: 2;
}
.wp-editor ul li {
  list-style: disc;
}
.wp-editor ol li {
  list-style: decimal;
}
.wp-editor li a {
  color: #242E4D;
}
.wp-editor img {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.wp-editor table {
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.wp-editor table th, .wp-editor table td {
  padding: 15px;
  line-height: 1.7;
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  min-width: 50px;
  font-size: 15px;
  line-height: 2;
}
.wp-editor table th p:last-child, .wp-editor table td p:last-child {
  margin-bottom: 0;
}
.wp-editor table th {
  background: #f9f9f9;
}
.wp-editor table td {
  background: #fff;
}
.wp-editor p, .wp-editor ul, .wp-editor ol, .wp-editor table, .wp-editor img, .wp-editor blockquote, .wp-editor .toc, .wp-editor .case-summary, .wp-editor .list-color1 {
  max-width: 735px;
  margin-bottom: 30px;
}
.wp-editor p > img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor p > img.alignnone, .wp-editor p > img.alignleft, .wp-editor p > img.aligncenter, .wp-editor p > img.alignright {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor ul > img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor ul > img.alignnone, .wp-editor ul > img.alignleft, .wp-editor ul > img.aligncenter, .wp-editor ul > img.alignright {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor ol > img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor ol > img.alignnone, .wp-editor ol > img.alignleft, .wp-editor ol > img.aligncenter, .wp-editor ol > img.alignright {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor table > img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor table > img.alignnone, .wp-editor table > img.alignleft, .wp-editor table > img.aligncenter, .wp-editor table > img.alignright {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-editor img {
  max-width: 100%;
}
.wp-editor img[width], .wp-editor img[height] {
  max-width: 100%;
}
.wp-editor img.frm-border {
  border: 1px solid #d5dae2;
}
.wp-editor .title-list {
  margin-top: -25px;
}
.wp-editor .title-list + p {
  margin-top: 20px;
}
.wp-editor .alignnone {
  margin: 4% 0 4%;
}
.wp-editor .alignleft {
  float: left;
  margin: 0 4% 4% 0;
  text-align: left;
}
.wp-editor .aligncenter {
  display: block;
  margin: 0 auto 4%;
  text-align: center;
}
.wp-editor .alignright {
  float: right;
  margin: 0 0 4% 4%;
  text-align: right;
}
.wp-editor .toc {
  margin-top: 20px;
  padding: 20px 30px;
  border: 1px solid #999;
  border-top: 5px solid #242E4D;
}
.wp-editor .toc-title {
  counter-reset: count 0;
  list-style-type: none;
  padding-left: 0;
}
.wp-editor .toc-title::before {
  display: block;
  color: #242E4D;
  content: "【目次】";
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}
.wp-editor .toc-title ol {
  counter-reset: count 0;
  list-style-type: none;
  padding-left: 1em;
}
.wp-editor .toc-title li {
  list-style: none;
}
.wp-editor .toc-title li::before {
  counter-increment: count 1;
  content: counters(count, "-") ". ";
}
.wp-editor .toc-title li a + p {
  display: none;
}
.wp-editor .case-summary {
  margin-top: 20px;
  padding: 20px 30px;
  background-color: #EDEFF4;
}
.wp-editor .list-color1 {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 20px 20px 20px 30px;
  background-color: #EDEFF4;
  color: #242E4D;
}
.wp-editor .list-color1 ul + p, .wp-editor .list-color1 ol + p {
  margin-top: 20px;
  margin-bottom: 0;
}
.wp-editor .toc ol {
  margin-bottom: 0;
}
.wp-editor .list-color1 ul, .wp-editor .list-color1 ol {
  margin-bottom: 0;
}
.wp-editor .underline {
  text-decoration: underline;
}
.wp-editor .revised {
  color: #999;
}

@media screen and (max-width: 500px) {
  .wp-editor h1 {
    font-size: 2.6rem !important;
    margin: 40px 0;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor h2 {
    font-size: 2.4rem;
    margin: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor h3 {
    font-size: 2rem;
    margin: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor h5, .wp-editor h6 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .wp-editor p {
    max-width: none;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor p {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor blockquote {
    padding: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .wp-editor ul, .wp-editor ol {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wp-editor img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wp-editor table th, .wp-editor table td {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1024px) {
  .wp-editor p, .wp-editor ul, .wp-editor ol, .wp-editor table, .wp-editor img, .wp-editor blockquote, .wp-editor .toc, .wp-editor .case-summary, .wp-editor .list-color1 {
    max-width: none;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wp-editor p, .wp-editor ul, .wp-editor ol, .wp-editor table {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wp-editor p > img {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor p > img.alignnone, .wp-editor p > img.alignleft, .wp-editor p > img.aligncenter, .wp-editor p > img.alignright {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor ul > img {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor ul > img.alignnone, .wp-editor ul > img.alignleft, .wp-editor ul > img.aligncenter, .wp-editor ul > img.alignright {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor ol > img {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor ol > img.alignnone, .wp-editor ol > img.alignleft, .wp-editor ol > img.aligncenter, .wp-editor ol > img.alignright {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor table > img {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
  .wp-editor table > img.alignnone, .wp-editor table > img.alignleft, .wp-editor table > img.aligncenter, .wp-editor table > img.alignright {
    margin: 0 auto 15px;
    float: none;
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .wp-editor .title-list {
    margin-top: -5px;
  }
}
@media screen and (max-width: 1024px) {
  .wp-editor .toc, .wp-editor .case-summary {
    padding: 15px;
  }
  .wp-editor .list-color1 {
    padding: 15px 15px 15px 20px;
  }
}
.cta_blog {
  width: 90%;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-left: 0;
  padding: 0;
  border: solid 1px #242E4D;
}

.cta_blog.cta_index {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .cta_blog.cta_index {
    padding: 0 20px;
  }
}

.cta_blog > a {
  display: block;
  width: 100%;
  background: #fff;
  text-decoration: none;
}
.cta_blog > a:hover {
  opacity: 0.75;
  text-decoration: none;
}
.cta_blog > a:hover p {
  text-decoration: underline;
  color: #242E4D;
}

.cta_blog_wp > a:hover .p-button {
  text-decoration: none;
}

.cta_blog p {
  margin: 0 !important;
  line-height: 1.5;
}
.cta_blog .box-title {
  display: inline-block;
  position: relative;
  top: -2px;
  margin-top: 0;
  padding: 2px 20px 2px 10px;
  background: #242E4D;
  color: #fff;
  font-size: 1.3rem;
}

.cta_blog_wp .box-title, .cta_blog_smnr .box-title {
  padding-right: 10px;
}

.cta_blog .box-title span::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../../img/icon/ico_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  position: absolute;
  top: 6px;
  right: 4px;
}
.cta_blog .box-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px 10px;
}
.cta_blog .cta-title {
  font-weight: bold;
}
.cta_blog .dl-btn, .cta_blog .srh-btn {
  margin-left: 15px;
}
.cta_blog .cta-img {
  width: 90px;
  margin-left: 15px;
}
.cta_blog .cta-img img {
  width: 100%;
  margin-bottom: 0;
}
.cta_blog .p-button {
  width: 190px;
}

.cta_blog_wp .p-button.ico.dl span::before {
  background-image: url(../../img/icon/ico_dl.svg);
}

.cta_blog_smnr .p-button.ico.arrow span {
  padding-left: 0;
  position: static;
  z-index: 1;
}
.cta_blog_smnr .p-button.ico.arrow span::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../../img/icon/ico_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform-origin: top;
  transform: translateY(-50%);
}

.cta_blog_case .co-name {
  font-size: 1.3rem;
}
.cta_blog_case .case-dis {
  font-size: 1.2rem;
}

.cta_blog_fnc .fnc-dis {
  font-size: 1.2rem;
}

.cta_blog.lc {
  padding-bottom: 20px;
  border-width: 3px;
}
.cta_blog.lc .box-content {
  flex-direction: column;
}
.cta_blog.lc .box-content p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.cta_blog.lc .dl-btn {
  margin: 25px 0 0;
}
.cta_blog.lc .p-button {
  width: 300px;
  max-width: initial;
  height: 60px;
}
.cta_blog.lc .p-button span {
  font-size: 1.7rem;
}
.cta_blog.cta_blog_ban {
  height: 200px;
  border: 0;
}
.cta_blog.cta_blog_ban02 {
  height: 240px;
  border: 0;
}
.cta_blog_ban .box-content .cta-img02 {
  width: 46%;
  height: 100%;
  margin: 0 auto 0 20px;
  padding: 0;
  text-align: center;
  display: flex;
}
.cta_blog_ban .box-content .cta-img02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .cta_blog {
    margin-left: auto;
  }
}
@media screen and (max-width: 500px) {
  .cta_blog .box-content {
    display: block;
    padding-bottom: 15px;
  }
  .cta_blog .p-button {
    margin-top: 10px;
  }
  .cta_blog .cta-img,   .cta_blog .cta-img02 {
    display: none !important;
  }
  .cta_blog.lc {
    padding-bottom: 15px;
  }
  .cta_blog.lc .box-content p {
    font-size: 1.7rem;
  }
  .cta_blog.lc .dl-btn {
    margin-top: 20px;
  }
  .cta_blog.lc .p-button {
    width: 80%;
    height: 50px;
    margin-top: 0;
  }
  .cta_blog.lc .p-button span {
    font-size: 1.5rem !important;
  }
  .cta_blog.cta_blog_ban03 .dl-btn, .cta_blog.cta_blog_ban04 .dl-btn {
    margin-left: 0px;
  }
}
/* here */
.cta_blog_ban > a {
  height: 100%;
  color: #fff;
  background: linear-gradient(to right, #242E4D 0%, #306cd3 100%);
  transition: 0.3s ease;
}
.cta_blog_ban02 > a {
  height: 100%;
  color: #fff;
  background: linear-gradient(to right, #008dd3 30%, #27c3d5 100%);
  transition: 0.3s ease;
}
.cta_blog_ban03 > a {
    background-image: url(../../img/common/cta_case-study-fs_bg.png); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cta_blog_ban04 > a {
    background-image: url(../../img/common/cta_case-study-logi_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta_blog_ban05 > a {
  background-image: url(../../img/common/cta_bnr_v-mgmt-gd_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #5d5d5d;
}
.cta_blog_ban06 > a {
  background-image: url(../../img/common/cta_bnr_sfdrvngl-mngmnt_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #5d5d5d;
}
.cta_blog_ban07 > a {
  background-image: url(../../img/common/cta_bnr_rprt-atmtn_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #797878;
}
.cta_blog_ban08 > a {
  background-image: url(../../img/common/cta_bnr_spapp-dynmc-mngmnt_
  bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #5d5d5d;
}

.cta_blog_ban .box-content {
  height: 100%;
  padding: 5px;
}
.cta_blog_ban .box-content .cta-img, .cta_blog_ban .box-content .box-wrap {
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.cta_blog_ban .box-content .box-wrap02 {
  width: 54%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}


.cta_blog_ban02 .box-content .cta-img {
  text-align: right;
}
.cta_blog_ban .cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% -15%;
}
.cta_blog_ban02 .cta-img img {
  width: auto;
  object-fit: contain;
  object-position: center;
}
.cta_blog_ban .box-content .box-wrap {
  padding: 10px;
}
.cta_blog_ban .box-wrap > div {
  height: 40%;
  margin-left: 0;
  display: flex;
  align-items: center;
}
.cta_blog_ban .box-wrap .dl-btn {
  height: 60%;
  margin-left: 0;
  flex-direction: column;
}
.cta_blog_ban .box-wrap p {
  margin: 0 auto !important;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.cta_blog_ban .box-wrap02 p {
  margin: 15px auto 10px !important;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff !important;
}
.cta_blog_ban .box-wrap02 p span {
  font-size: 1.6rem;
}
.cta_blog_ban02 .box-wrap p {
  font-size: 3rem;
}
.cta_blog_ban02 .p-button.cta {
  background-color: #1d66e4;
}
.cta_blog_ban > a:hover .box-wrap p {
  color: #fff;
}
.cta_blog_ban .p-button {
  width: 90%;
  height: 50px;
  margin: 10px auto 0;
  border: none;
}
.cta_blog_ban > a:hover p {
  text-decoration: none;
}
.cta_blog_ban .box-wrap .micro_copy, .cta_blog_ban .box-wrap02 .micro_copy {
  margin-top: 5px !important;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 375px) {
  .cta_blog_ban .box-wrap .micro_copy {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .cta_blog_ban .box-wrap p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .cta_blog.cta_blog_ban {
    height: 150px;
  }
  .cta_blog.cta_blog_ban03, .cta_blog.cta_blog_ban04, .cta_blog.cta_blog_ban06 {
    height: 185px;
  }
  .cta_blog_ban .box-wrap02 p {
    font-size: 1.9rem;
  }
  .cta_blog_ban .box-wrap02 p span {
    font-size: 1.4rem;
  }

  .cta_blog_ban .box-content .cta-img, .cta_blog_ban .box-content .box-wrap,   .cta_blog_ban .box-content .cta-img, .cta_blog_ban .box-content .box-wrap02 {
    width: 100%;
  }
  .cta_blog_ban .box-wrap > div, .cta_blog_ban .box-wrap .dl-btn {
    height: auto;
  }
  .cta_blog_ban .p-button {
    max-width: 250px;
    height: 40px;
  }
  .cta_blog_ban .p-button span {
    font-size: 1.5rem !important;
  }
}
