@charset "UTF-8";
/* c-accordion */
.c-accordion__item {
  border-radius: 0.9375rem;
  background: #fff;
  padding: 0 25px;
  padding: 0 1.5625rem;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-accordion__item {
    padding: 0 1.25rem;
  }
}
.c-accordion__item + .c-accordion__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__item + .c-accordion__item {
    margin-top: 0.9375rem;
  }
}
.c-accordion__item.active {
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
}

.c-accordion__item-header {
  cursor: pointer;
  padding: 35px 100px 35px 20px;
  padding: 2.1875rem 6.25rem 2.1875rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-header {
    padding: 1.5625rem 2.5rem 1.5625rem 0;
  }
}
.c-accordion__item-header::after, .c-accordion__item-header::before {
  position: absolute;
  content: "";
  width: 25px;
  width: 1.5625rem;
  height: 3px;
  height: 0.1875rem;
  background: #999;
  top: 50px;
  top: 3.125rem;
  right: 4px;
  right: 0.25rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-header::after, .c-accordion__item-header::before {
    width: 1.25rem;
    height: 0.125rem;
    top: 2.1875rem;
  }
}
.c-accordion__item-header::before {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-accordion__item-header.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.c-accordion__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-accordion__item-question, .c-accordion__item-answer {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 18px;
  margin-right: 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-question, .c-accordion__item-answer {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-right: 0.75rem;
  }
}

.c-accordion__item-question {
  color: #0058fa;
}

.c-accordion__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-title {
    font-size: 1rem;
  }
}

.c-accordion__item-body {
  display: none;
  border-top: 1px dashed #999;
  border-top: 0.0625rem dashed #999;
  padding: 25px 72px 40px 20px;
  padding: 1.5625rem 4.5rem 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-body {
    padding: 0.9375rem 0 1.25rem;
  }
}

.c-accordion__item-answer {
  color: #999;
}

.c-accordion__item-text {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-accordion__item-text {
    font-size: 0.9375rem;
  }
}

/* c-anchor */
.c-anchor {
  padding-top: 35px;
  padding-top: 2.1875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-anchor {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}
.c-anchor .l-inner {
  max-width: 1240px;
  max-width: 77.5rem;
}

.c-anchor--half .c-anchor__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.625rem);
          flex: 0 1 calc(50% - 0.625rem);
}

.c-anchor__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-anchor__items {
    display: block;
  }
}

.c-anchor__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
}
@media screen and (max-width: 768px) {
  .c-anchor__item + .c-anchor__item {
    margin-top: 1.25rem;
  }
}

.c-anchor__item-inner {
  display: block;
}

.c-anchor__item-subtitle {
  text-align: center;
  width: 265px;
  width: 16.5625rem;
  max-width: 100%;
  font-weight: 700;
  color: #fff;
  background: #0058fa;
  border-radius: 1.25rem;
  margin: 0 auto -20px;
  margin: 0 auto -1.25rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-anchor__item-subtitle {
    font-size: 0.9375rem;
    width: 12.5rem;
  }
}

.c-anchor__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 150px;
  min-height: 9.375rem;
  background: #e5f3fc;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 0.9375rem;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-anchor__item-body {
    min-height: 6.875rem;
  }
}
.c-anchor__item-body::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  bottom: 0.625rem;
  background: url(../img/common/arrow_icon_004.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .c-anchor__item-body::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.c-anchor__item-title {
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-anchor__item-title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

/* c-banner */
.c-banner {
  background: #f3f3f3;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (max-width: 768px) {
  .c-banner {
    padding: 3.125rem 0;
  }
}

.c-banner__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  gap: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-banner__items {
    display: block;
  }
}

.c-banner__item {
  display: block;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-banner__item + .c-banner__item {
    margin-top: 1.25rem;
  }
}
.c-banner__item:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* c-breadcrumb */
.c-breadcrumb {
  padding: 20px 0;
  padding: 1.25rem 0;
}

.c-breadcrumb__item {
  display: inline;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 18px;
  margin-left: 1.125rem;
  position: relative;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  position: absolute;
  content: ">";
  top: 0;
  left: -14px;
  left: -0.875rem;
  color: #999;
}
.c-breadcrumb__item a, .c-breadcrumb__item span {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 0;
  padding: 0.625rem 0;
}
.c-breadcrumb__item a {
  color: #999;
}

.c-btn {
  display: block;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  border: 3px solid #212121;
  border: 0.1875rem solid #212121;
  border-radius: 0.9375rem;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.c-btn::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow_icon_001.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-btn:hover {
  color: #fff;
  background: #212121;
  opacity: 1;
}
.c-btn:hover::after {
  background: url(../img/common/arrow_icon_003.png) no-repeat center/contain;
}

.c-btn--white {
  color: #0058fa;
  border-color: #0058fa;
}
.c-btn--white::after {
  background: url(../img/common/arrow_icon_002.png) no-repeat center/contain;
}
.c-btn--white:hover {
  color: #fff;
  background: #0058fa;
  border-color: #0058fa;
}
.c-btn--white:hover::after {
  background: url(../img/common/arrow_icon_003.png) no-repeat center/contain;
}

.c-btn--blue {
  color: #fff;
  background: #0058fa;
  border-color: #0058fa;
}
.c-btn--blue::after {
  background: url(../img/common/arrow_icon_003.png) no-repeat center/contain;
}
.c-btn--blue:hover {
  color: #0058fa;
  background: #fff;
}
.c-btn--blue:hover::after {
  background: url(../img/common/arrow_icon_002.png) no-repeat center/contain;
}

.c-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.c-btns .c-btn {
  width: 300px;
  width: 18.75rem;
  padding: 15px 30px;
  padding: 0.9375rem 1.875rem;
  font-size: 16px;
  font-size: 1rem;
}
.c-btns .c-btn::after {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  right: 15px;
  right: 0.9375rem;
}

/* c-card */
.c-card__inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.c-card__inner::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  right: 15px;
  right: 0.9375rem;
  bottom: 15px;
  bottom: 0.9375rem;
  background: url(../img/common/arrow_icon_006.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-card__inner:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  opacity: 1;
}
.c-card__inner:hover::after {
  background: url(../img/common/arrow_icon_007.png) no-repeat center/contain;
}
.c-card__inner:hover .c-card__company,
.c-card__inner:hover .c-card__subtitle,
.c-card__inner:hover .c-card__title,
.c-card__inner:hover .c-card__download {
  color: #0058fa;
}

.c-card__img-wrapper {
  background: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
.c-card__img-wrapper .c-card__img {
  width: 230px;
  width: 14.375rem;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  padding-top: 0;
}
.c-card__img-wrapper .c-card__img img {
  position: static;
}

.c-card__img {
  width: 100%;
  padding-top: 58.9743589744%;
  position: relative;
  border-radius: 1.25rem 1.25rem 0 0;
}
.c-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}
.c-card__img.outline-white {
  outline: 2px #fff solid !important;
  outline-offset: -2px !important;
}
.c-card__body {
  min-height: 202px;
  min-height: 12.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 20px 15px 15px;
  padding: 1.25rem 0.9375rem 0.9375rem;
}

.c-card__company {
  color: #222;
  padding: 0 17px;
  padding: 0 1.0625rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-card__company {
    font-size: 0.9375rem;
    padding: 0;
  }
}

.c-card__subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 17px;
  padding: 0 1.0625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-card__subtitle {
    padding: 0;
  }
}

.c-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 17px;
  padding: 0 1.0625rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-card__title {
    font-size: 1.125rem;
    padding: 0;
  }
}

.c-card__text {
  line-height: 1.75;
  padding: 0 17px;
  padding: 0 1.0625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-card__text {
    font-size: 0.9375rem;
    padding: 0;
  }
}

.c-card__category {
  margin-top: auto;
}
.c-card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #212121;
  border: 0.0625rem solid #212121;
  padding: 2px 13px;
  padding: 0.125rem 0.8125rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.c-card__category span.recommend {
  color: #0058fa;
  background: #fff;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
}
.c-card__category span:nth-child(odd) {
  color: #fff;
  background: #212121;
}

.c-card__download {
  position: absolute;
  bottom: 16px;
  bottom: 1rem;
  right: 43px;
  right: 2.6875rem;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* c-category */
.c-category {
  border-radius: 1.25rem;
  background: #f3f3f3;
  padding: 40px 100px;
  padding: 2.5rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .c-category {
    padding: 1.875rem 1.25rem;
  }
}

.c-category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 18px;
  gap: 1.125rem 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-category__items {
    display: block;
  }
}

.c-category__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 0.9rem);
          flex: 0 1 calc(25% - 0.9rem);
}
@media screen and (max-width: 768px) {
  .c-category__item + .c-category__item {
    margin-top: 0.625rem;
  }
}
.c-category__item a,
.c-category__item span {
  text-align: center;
  display: block;
  font-weight: 700;
  border-radius: 1.5625rem;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-category__item a,
  .c-category__item span {
    font-size: 0.9375rem;
  }
}
.c-category__item span {
  color: #fff;
  background: #0058fa;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
}
.c-category__item a {
  color: #333;
  background: #fff;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
.c-category__item a:hover {
  opacity: 1;
  color: #fff;
  background: #0058fa;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
}
.c-category__item.is-current a {
  color: #fff;
  background: #0058fa;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
}

/* c-entitle */
.c-entitle {
  font-weight: 700;
  color: #0058fa;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-entitle {
    font-size: 0.875rem;
  }
}

/* c-floating */
.c-floating {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}

.c-floating__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-floating__item {
    width: 4.375rem;
    height: 4.375rem;
    padding-top: 0.3125rem;
  }
}
.c-floating__item:first-child {
  background: #eee;
}
.c-floating__item:first-child .c-floating__item-icon {
  width: 51px;
  width: 3.1875rem;
}
@media screen and (max-width: 768px) {
  .c-floating__item:first-child .c-floating__item-icon {
    width: 1.875rem;
  }
}
.c-floating__item:nth-child(2) {
  background: #0058fa;
}
.c-floating__item:nth-child(2) .c-floating__item-icon {
  width: 34px;
  width: 2.125rem;
}
@media screen and (max-width: 768px) {
  .c-floating__item:nth-child(2) .c-floating__item-icon {
    width: 1.5625rem;
  }
}
.c-floating__item:nth-child(2) .c-floating__item-text {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-floating__item:nth-child(2) .c-floating__item-text {
    font-size: 0.5625rem;
  }
}
.c-floating__item:nth-child(3) {
  background: #212121;
}
.c-floating__item:nth-child(3) .c-floating__item-icon {
  width: 43px;
  width: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .c-floating__item:nth-child(3) .c-floating__item-icon {
    width: 1.5625rem;
  }
}
.c-floating__item:nth-child(3) .c-floating__item-text {
  color: #fff;
}

.c-floating__item-icon {
  margin: 0 auto;
}

.c-floating__item-text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-floating__item-text {
    font-size: 0.625rem;
    margin-top: 0.4375rem;
  }
}

/* c-logo-slider */
.c-logo-slider {
  padding-top: 22px;
  padding-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .c-logo-slider {
    padding-top: 0.625rem;
  }
}

.c-logo-slider__items {
  display: none;
}
.c-logo-slider__items.slick-initialized {
  display: block;
}
.c-logo-slider__items + .c-logo-slider__items {
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (max-width: 768px) {
  .c-logo-slider__items + .c-logo-slider__items {
    margin-top: -0.625rem;
  }
}

.c-logo-slider__item {
  margin: 0 5px;
  margin: 0 0.3125rem;
}

/* c-menu */
.c-menu .c-category {
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
}
.c-menu .c-category__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 0.9rem);
          flex: 0 1 calc(20% - 0.9rem);
}

.c-menu__item {
  display: none;
}
.c-menu__item.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* c-pagetop */
.c-pagetop {
  position: fixed;
  right: 47px;
  right: 2.9375rem;
  bottom: 60px;
  bottom: 3.75rem;
  z-index: 10;
  width: 76px;
  width: 4.75rem;
}
@media screen and (max-width: 768px) {
  .c-pagetop {
    right: 0.9375rem;
    bottom: 1.5625rem;
    width: 3.125rem;
  }
}
.c-pagetop button:hover {
  opacity: 1;
}

/* c-scene-card */
.c-scene-card__inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.c-scene-card__inner::after {
  position: absolute;
  content: "";
  right: 15px;
  right: 0.9375rem;
  bottom: 15px;
  bottom: 0.9375rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_icon_006.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-scene-card__inner:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  opacity: 1;
}
.c-scene-card__inner:hover::after {
  background: url(../img/common/arrow_icon_007.png) no-repeat center/contain;
}
.c-scene-card__inner:hover .c-scene-card__title {
  color: #0058fa;
}

.c-scene-card__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 130px;
  min-height: 8.125rem;
  background: #eee;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.c-scene-card__img {
  width: 65px;
  width: 4.0625rem;
  max-width: 100%;
  margin: 0 auto;
}
.c-scene-card__img.width-up {
  width: 100px;
  width: 6.25rem;
}

.c-scene-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 152px;
  min-height: 9.5rem;
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 25px 28px 35px;
  padding: 1.5625rem 1.75rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .c-scene-card__body {
    min-height: unset;
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.c-scene-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-scene-card__title {
    font-size: 1.125rem;
  }
}

.c-scene-card__text {
  line-height: 1.75;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-scene-card__text {
    font-size: 0.9375rem;
  }
}

.c-scene-card__category {
  margin-top: auto;
}
.c-scene-card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background: #212121;
  border-radius: 0.75rem;
  padding: 2px 13px;
  padding: 0.125rem 0.8125rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

/* c-subtitle */
/* c-tab */
.c-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-tab.current {
  background: #0058fa;
  color: #fff;
}

.c-tab__item {
  text-align: center;
  width: 50%;
}
.c-tab__item button {
  display: block;
  width: 100%;
  font-weight: 700;
  color: #fff;
  background: #aaa;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .c-tab__item button {
    font-size: 0.9375rem;
    border-radius: 0.9375rem 0.9375rem 0 0;
    padding: 0.75rem 0.625rem;
  }
}
.c-tab__item button:hover {
  opacity: 1;
  background: #0058fa;
}
.c-tab__item.current button {
  background: #0058fa;
}

/* c-title */
.c-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 1vw;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

/* 基本スタイル */
html {
  font-family: "Noto Sans JP", serif;
  color: #212121;
  font-weight: 500;
  line-height: 1.5;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  button:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* l-article */
.l-article {
  width: 66.666%;
}
@media screen and (max-width: 768px) {
  .l-article {
    width: 100%;
  }
}

/* l-btn */
.l-btn {
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}

/* l-content */
.l-content {
  background: #f3f3f3;
  padding: 165px 0 120px;
  padding: 10.3125rem 0 7.5rem;
  margin-top: -80px;
  margin-top: -5rem;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding: 6.25rem 0 3.75rem;
    margin-top: -2.5rem;
  }
}

/* l-footer　*/
/* l-header */
.l-inner {
  width: 100%;
  max-width: 1330px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1600px) {
  .l-inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-inner.mt0 {
  margin-top: 0 !important;
}
.l-inner.mb0 {
  margin-bottom: 0 !important;
}
.l-inner.mt72 {
  margin-top: 72px !important;
  margin-top: 4.5rem !important;
}
@media screen and (max-width: 1200px) {
  .l-inner.mt72 {
    margin-top: 3.375rem !important;
  }
}
.l-inner.mb72 {
  margin-bottom: 72px !important;
  margin-bottom: 4.5rem !important;
}
@media screen and (max-width: 1200px) {
  .l-inner.mb72 {
    margin-bottom: 3.375rem !important;
  }
}
.l-inner.bg-gray {
  background-color: #f3f3f3;
}

/* l-main */
.l-main {
  overflow: hidden;
}

/* l-page */
.l-page {
  padding: 10px 0 120px;
  padding: 0.625rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .l-page {
    padding-bottom: 3.75rem;
  }
}

/* l-section */
.l-section:not(:first-of-type) {
  margin-top: 115px;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .l-section:not(:first-of-type) {
    margin-top: 3.75rem;
  }
}
.l-section section {
  padding: 0;
}

/* l-sidebar */
.l-sidebar {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .l-sidebar {
    width: 100%;
    margin-top: 3.75rem;
  }
}

/* l-single */
.l-single {
  background: #f3f3f3;
  margin-top: 125px;
  margin-top: 7.8125rem;
  padding: 40px 0 120px;
  padding: 2.5rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .l-single {
    margin-top: 4.375rem;
    padding: 1.25rem 0 3.75rem;
  }
}
.l-single.pb0 {
  padding-bottom: 0 !important;
}

/* l-wrapper */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    display: block;
  }
}

/* p-archive-case */
.p-archive-case__unit + .p-archive-case__unit {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__unit + .p-archive-case__unit {
    margin-top: 3.75rem;
  }
}

.p-archive-case__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__cards {
    margin-top: 1.25rem;
  }
}
.p-archive-case__cards .c-card__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__cards .c-card__title {
    margin-bottom: 0.9375rem;
  }
}
.p-archive-case__cards .c-card__category {
  padding: 0 17px;
  padding: 0 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__cards .c-card__category {
    padding: 0;
  }
}

.p-archive-case__tab {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__tab {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.p-archive-case__footer {
  padding: 115px 0 120px;
  padding: 7.1875rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__footer {
    padding: 3.75rem 0;
  }
}
.p-archive-case__footer .p-introduction__item {
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  border-radius: 0.625rem;
}

.p-archive-case__free {
  margin-top: 100px;
  margin-top: 6.25rem;
}
.p-archive-case__free .p-free {
  background: #f3f3f3;
}
.p-archive-case__free .p-free__box {
  background: #fff;
}

/* p-single-case */
.p-single-case__content {
  background: #fff;
  border-radius: 1.875rem;
  padding: 110px 110px 120px;
  padding: 6.875rem 6.875rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__content {
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-single-case__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-single-case__title {
    font-size: 1.5rem;
  }
}

.p-single-case__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__subtitle {
    font-size: 1.125rem;
  }
}

.p-single-case__category {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__category {
    margin-top: 1.875rem;
  }
}
.p-single-case__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #212121;
  border: 0.0625rem solid #212121;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  padding: 1px 12px;
  padding: 0.0625rem 0.75rem;
}

.p-single-case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #f3f3f3;
  border-top: 0.0625rem solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  border-bottom: 0.0625rem solid #f3f3f3;
  padding: 32px 0;
  padding: 2rem 0;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__header {
    display: block;
    padding: 1.25rem 0;
    margin-top: 2.5rem;
  }
}

.p-single-case__logo {
  width: 270px;
  width: 16.875rem;
  min-width: 270px;
  min-width: 16.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__logo {
    margin: 0 auto;
  }
}

.p-single-case__text {
  line-height: 1.75;
  color: #333;
  margin-left: 53px;
  margin-left: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__text {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-single-case__post > h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 35px;
  padding-left: 2.1875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-case__post > h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }
}
.p-single-case__post > h2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  top: 1rem;
  width: 18px;
  width: 1.125rem;
  height: 3px;
  height: 0.1875rem;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-case__post > h2::before {
    top: 0.875rem;
    width: 0.75rem;
  }
}
.p-single-case__post > p,
.p-single-case__post .clear-fix p {
  line-height: 1.75;
  color: #333;
  margin-block: 1.25em;
}
@media screen and (max-width: 768px) {
  .p-single-case__post > p,
  .p-single-case__post .clear-fix p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-single-case__post > p,
  .p-single-case__post .clear-fix p {
    font-size: 0.9375rem;
  }
}
.p-single-case__post > p a,
.p-single-case__post .clear-fix p a {
  display: inline-block;
  width: 100%;
  word-break: break-all;
  color: #0058fa;
}
.p-single-case__post > figure:not(:last-child),
.p-single-case__post > ul:not(:last-child),
.p-single-case__post > ol:not(:last-child) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
.p-single-case__post > li {
  padding-left: 1em;
  position: relative;
}
.p-single-case__post > li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-single-case__post .clear-fix {
  zoom: 1;
}
.p-single-case__post .clear-fix:before, .p-single-case__post .clear-fix:after {
  content: "";
  display: table;
  height: 0;
  visibility: hidden;
}
.p-single-case__post .clear-fix:after {
  clear: both;
}
.p-single-case__post .capimg {
  max-width: 500px;
  max-width: 31.25rem;
  background-color: whitesmoke;
}
@media screen and (max-width: 768px) {
  .p-single-case__post .capimg {
    max-width: 9.375rem;
  }
}
.p-single-case__post .capimg.imgL {
  margin-right: 20px;
  float: left;
}
.p-single-case__post .capimg.imgR {
  margin-left: 20px;
  float: right;
}
.p-single-case__post .capimg > span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0.35em 0.75em;
}
@media screen and (max-width: 768px) {
  .p-single-case__post .capimg > span {
    font-size: 0.75rem;
  }
}
.p-single-case__post .p-single__box p {
  line-height: 1.75;
  color: #333;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-case__post .p-single__box p {
    font-size: 0.9375rem;
  }
}
.p-single-case__post .p-single__box p a {
  display: inline-block;
  width: 100%;
  word-break: break-all;
  color: #0058fa;
}

.p-single__before-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single__before-after {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.5rem;
    gap: 2rem 0;
  }
}
.p-single__before-after .before,
.p-single__before-after .after {
  width: calc(50% - 1.5625rem);
  border-radius: 1.25rem;
  background: #f3f3f3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-single__before-after .before,
  .p-single__before-after .after {
    width: 100%;
  }
}
.p-single__before-after .before dt,
.p-single__before-after .after dt {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-single__before-after .before dt,
  .p-single__before-after .after dt {
    font-size: 1.125rem;
    margin-bottom: 0.3125rem;
  }
}
.p-single__before-after .before dd,
.p-single__before-after .after dd {
  font-size: 16px;
  font-size: 1rem;
  padding: 1em 1.5em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single__before-after .before dd,
  .p-single__before-after .after dd {
    font-size: 0.875rem;
    padding: 0.5em 1em;
    margin-bottom: 0.3125rem;
  }
}
.p-single__before-after .before dt {
  background: #333;
}
.p-single__before-after .after dt {
  background: #0058fa;
}
.p-single__before-after .after::after {
  content: "";
  display: block;
  clear: both;
}

.p-single__pointlist-ttl {
  color: #0058fa;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-block: 1em 0.25em;
}
@media screen and (max-width: 768px) {
  .p-single__pointlist-ttl {
    font-size: 1.125rem;
  }
}

/* p-archive-column */
.p-archive-column__slider {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-column__slider {
    margin-bottom: 2.5rem;
  }
}

.p-archive-column__cards {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-column__cards {
    margin-top: 3.125rem;
  }
}

/* p-single-column */
.p-single-column__content {
  background: #fff;
  border-radius: 1.25rem;
  padding: 60px 75px 55px;
  padding: 3.75rem 4.6875rem 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__content {
    padding: 2.5rem 1.25rem;
  }
}
.p-single-column__content a.btn > img {
  width: 100% !important;
}

.p-single-column__banner {
  display: block;
  width: 600px;
  width: 37.5rem;
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-single-column__banner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.p-single-column__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__title {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-single-column__category {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-single-column__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background: #212121;
  border-radius: 0.75rem;
  border: 1px solid #212121;
  border: 0.0625rem solid #212121;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  padding: 1px 12px;
  padding: 0.0625rem 0.75rem;
}

.p-single-column__lead {
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__lead {
    font-size: 0.9375rem;
    margin-top: 1.875rem;
  }
}
.p-single-column__lead p {
  margin-bottom: 1em;
}

.p-single-column__toc {
  background: #f3f3f3;
  border-radius: 0.9375rem;
  padding: 30px 50px;
  padding: 1.875rem 3.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__toc {
    padding: 1.25rem 1.25rem;
  }
}

.p-single-column__toc-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-column__toc-title {
    font-size: 1.125rem;
  }
}

.p-single-column__toc-list {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__toc-list {
    margin-left: 0;
  }
}

.p-single-column__toc-list-item {
  line-height: 1.88;
  letter-spacing: 0.05em;
  padding-left: 15px;
  padding-left: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-column__toc-list-item {
    font-size: 0.9375rem;
  }
}
.p-single-column__toc-list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background: #0058fa;
  left: 0;
  top: 14px;
  top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__toc-list-item::before {
    top: 0.75rem;
  }
}

.p-single-column__post {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post {
    margin-top: 2.5rem;
  }
}
.p-single-column__post h2,
.p-single-column__post h3,
.p-single-column__post h4,
.p-single-column__post h5,
.p-single-column__post h6 {
  font-weight: 700;
  margin: 0;
}
.p-single-column__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.p-single-column__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post h3 {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
.p-single-column__post h4,
.p-single-column__post h5,
.p-single-column__post h6 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post h4,
  .p-single-column__post h5,
  .p-single-column__post h6 {
    font-size: 1rem;
  }
}
.p-single-column__post p {
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-single-column__post p {
    font-size: 0.9375rem;
  }
}
.p-single-column__post p:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-single-column__post figure {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post figure {
    margin-bottom: 1.25rem;
  }
}
.p-single-column__post figure:last-of-type {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post figure:last-of-type {
    margin-bottom: 2.5rem;
  }
}
.p-single-column__post figure a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
}
.p-single-column__post figure a:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-single-column__post ol:not(:last-child),
.p-single-column__post ul:not(:last-child) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
.p-single-column__post li {
  padding-left: 1em;
  position: relative;
}
.p-single-column__post li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-single-column__post a:not(:has(.pillarBox)) {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-single-column__post a:not(:has(.pillarBox)):hover {
  color: #0058fa;
  text-decoration: none;
  opacity: 1;
}
.p-single-column__post a > img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-single-column__post a > img:hover {
  opacity: 0.8;
}
.p-single-column__post strong {
  font-weight: 900;
}
.p-single-column__post .pillarBox {
  border: 1px solid #aaa;
  padding: 12px;
  padding: 0.75rem;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__post .pillarBox {
    margin-bottom: 0.9375rem;
  }
}
.p-single-column__post .pillarBox .pillarInner {
  padding-right: 24px;
  padding-right: 1.5rem;
}
.p-single-column__post .pillarBox .pillarInner::after {
  content: "";
  display: inline-block;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  position: absolute;
  right: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
}
.p-single-column__post .pillarBox .pillarTtl01 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #0058fa;
}
.p-single-column__post .pillarBox .pillarTtl02 {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-single-column__post .h3_number {
  background: #0058fa;
  display: inline-block;
  margin-right: 0.5em;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  position: relative;
  vertical-align: -6px;
}
@media screen and (max-width: 768px) {
  .p-single-column__post .h3_number {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-single-column__post .h3_number > span {
  font-size: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-single-column__relationlist {
  background: #f3f3f3;
  border-radius: 0.9375rem;
  padding: 30px 50px;
  padding: 1.875rem 3.125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-column__relationlist {
    padding: 1.25rem 1.25rem;
    font-size: 0.875rem;
  }
}
.p-single-column__relationlist > dt {
  color: #0058fa;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.p-single-column__relationlist > dd {
  padding-left: 0.5em;
}
.p-single-column__relationlist > dd:not(:last-child) {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-single-column__relationlist > dd {
    padding-left: 0;
  }
}
.p-single-column__relationlist > dd a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-single-column__relationlist > dd a:hover {
  color: #0058fa;
  text-decoration: none;
  opacity: 1;
}

.p-single-column__footer {
  background: #f3f3f3;
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}

/* p-about */
.p-about {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 3.75rem 0;
  }
}
.p-about .c-entitle, .p-about .c-title {
  text-align: center;
}

.p-about__content {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  background: #f3f3f3;
  border-radius: 1.25rem;
  padding: 55px 60px 60px;
  padding: 3.4375rem 3.75rem 3.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-about__content {
    padding: 2.5rem 1.25rem;
  }
}

.p-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    display: block;
  }
}

.p-about__img {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .p-about__img {
    width: 18.75rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-about__img img {
  border-radius: 0.9375rem;
}

.p-about__text {
  width: 61%;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-about__text {
    width: 100%;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

/* p-alignment */
.p-alignment {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-alignment {
    padding: 3.75rem 0;
  }
}

.p-alignment__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-alignment__title {
    font-size: 1.25rem;
  }
}
.p-alignment__title span {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-alignment__title span {
    font-size: 1.5rem;
  }
}

.p-alignment__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-alignment__text {
    text-align: left;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-alignment__img-wrapper {
  width: 1000px;
  width: 62.5rem;
  max-width: 100%;
  background: #f3f3f3;
  border-radius: 1.25rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 47px 20px;
  padding: 2.9375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-alignment__img-wrapper {
    margin-top: 1.875rem;
    padding: 1.875rem 0.9375rem;
  }
}

.p-alignment__img {
  width: 625px;
  width: 39.0625rem;
  max-width: 100%;
  margin: 0 auto;
}

/* p-article */
/* p-assignment */
.p-assignment {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-assignment {
    padding: 3.75rem 0;
  }
}

.p-assignment__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 50px;
  padding-left: 3.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-assignment__header {
    display: block;
    padding-left: 0;
    margin-top: 1.5625rem;
  }
}

.p-assignment__img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .p-assignment__img {
    width: 12.5rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

.p-assignment__list {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .p-assignment__list {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-assignment__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.625rem;
  background: #f3f3f3;
  padding: 26px 20px 26px 60px;
  padding: 1.625rem 1.25rem 1.625rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-assignment__list-item {
    font-size: 1rem;
    padding: 0.9375rem 1.25rem 0.9375rem 2.5rem;
  }
}
.p-assignment__list-item::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: #0058fa;
  border-radius: 50%;
  left: 30px;
  left: 1.875rem;
  top: 32px;
  top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-assignment__list-item::before {
    width: 0.625rem;
    height: 0.625rem;
    left: 1.25rem;
    top: 1.375rem;
  }
}
.p-assignment__list-item + .p-assignment__list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-assignment__subtitle {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-top: 150px;
  margin-top: 9.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-assignment__subtitle {
    font-size: 1.375rem;
    margin-top: 5rem;
  }
}
.p-assignment__subtitle::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -105px;
  top: -6.5625rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-assignment__subtitle::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -3.75rem;
  }
}

.p-assignment__unit-wrapper {
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 0 35px;
  padding: 0 2.1875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-assignment__unit-wrapper {
    padding: 0;
  }
}

.p-assignment__heading {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-assignment__heading {
    text-align: center;
    font-size: 1.125rem;
    margin-top: 3.75rem;
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
.p-assignment__heading:before {
  position: absolute;
  content: "";
  width: 943px;
  width: 58.9375rem;
  height: 399px;
  height: 24.9375rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/common/assignment_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-assignment__heading:before {
    width: 18.75rem;
    height: 7.5rem;
  }
}

.p-assignment__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 140px 25px;
  gap: 8.75rem 1.5625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-assignment__units {
    display: block;
    margin-top: 3.75rem;
  }
}

.p-assignment__unit {
  background: #f3f3f3;
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.17188rem);
          flex: 0 1 calc(25% - 1.17188rem);
  padding: 30px 35px;
  padding: 1.875rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-assignment__unit {
    padding: 1.875rem 1.25rem;
  }
  .p-assignment__unit + .p-assignment__unit {
    margin-top: 1.25rem;
  }
}

.p-assignment__unit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-assignment__unit-icon {
  width: 60px;
  width: 3.75rem;
  min-width: 60px;
  min-width: 3.75rem;
}

.p-assignment__unit-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
  margin-left: 18px;
  margin-left: 1.125rem;
}

.p-assignment__unit-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-assignment__unit-list-item {
  padding-left: 18px;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-assignment__unit-list-item {
    font-size: 0.9375rem;
  }
}
.p-assignment__unit-list-item + .p-assignment__unit-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.p-assignment__unit-list-item::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  left: 0;
  top: 10px;
  top: 0.625rem;
  border-radius: 50%;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-assignment__unit-list-item::before {
    top: 0.5rem;
  }
}

/* p-card-slider */
.p-card-slider {
  margin: 0 -27px;
  margin: 0 -1.6875rem;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-card-slider {
    margin: 0;
  }
}
.p-card-slider.slick-initialized {
  display: block;
}
.p-card-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  padding: 1.25rem 0;
}
.p-card-slider .slick-slide {
  height: auto !important;
}
.p-card-slider .c-card__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-card-slider .c-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-card-slider__item {
  margin: 0 27px;
  margin: 0 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-card-slider__item {
    margin: 0 0.9375rem;
  }
}
.p-card-slider__item .c-card__body {
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-card-slider__item .c-card__body {
    padding-bottom: 1.25rem;
  }
}
.p-card-slider__item .c-card__category {
  padding: 0 17px;
  padding: 0 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-card-slider__item .c-card__category {
    padding: 0;
  }
}

.p-card-slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-card-slider__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-card-slider__arrow:hover {
  opacity: 1;
}

.p-card-slider__prev {
  left: -5px;
  left: -0.3125rem;
  background: url(../img/common/prev_icon_001.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-card-slider__prev {
    left: -0.9375rem;
  }
}
.p-card-slider__prev:hover {
  background: url(../img/common/prev_icon_002.png) no-repeat center/contain;
}

.p-card-slider__next {
  right: -5px;
  right: -0.3125rem;
  background: url(../img/common/next_icon_001.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-card-slider__next {
    right: -0.9375rem;
  }
}
.p-card-slider__next:hover {
  background: url(../img/common/next_icon_002.png) no-repeat center/contain;
}

/* p-cards */
.p-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px 55px;
  gap: 3.4375rem 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-cards {
    display: block;
  }
}
.p-cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 2.29167rem);
          flex: 0 1 calc(33.333% - 2.29167rem);
}
@media screen and (max-width: 768px) {
  .p-cards__item + .p-cards__item {
    margin-top: 1.25rem;
  }
}
.p-cards__item .c-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.p-cards__item .c-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-cards__item .c-card__body {
    padding-bottom: 1.25rem;
  }
}
.p-cards__item .c-card__category {
  padding: 0 17px;
  padding: 0 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-cards__item .c-card__category {
    padding: 0;
  }
}

/* p-case */
.p-case .c-card__body {
  background: #F3F3F3;
}

/* p-column */
/* p-consulting */
.p-consulting {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-consulting {
    padding: 3.75rem 0;
  }
}
.p-consulting .c-btn {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-consulting__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-consulting__inner {
    display: block;
    padding-right: 0;
    margin-top: 1.5625rem;
  }
}

.p-consulting__texts {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-consulting__texts {
    width: 100%;
  }
}

.p-consulting__subtext {
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-consulting__subtext {
    font-size: 0.9375rem;
  }
}

.p-consulting__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-consulting__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.p-consulting__body {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-consulting__body {
    width: 100%;
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-consulting__imgs {
  position: relative;
  z-index: 2;
}

.p-consulting__logo {
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-consulting__logo {
    width: 12.5rem;
    margin: 0 auto;
  }
}

.p-consulting__img {
  width: 239px;
  width: 14.9375rem;
  max-width: 100%;
  margin-left: auto;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-consulting__img {
    width: 11.25rem;
    margin: 1.25rem auto 0;
  }
}

.p-consulting__list {
  margin-left: 40px;
  margin-left: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-consulting__list {
    margin-left: 0;
    margin-top: 1.5625rem;
  }
}
.p-consulting__list::before, .p-consulting__list::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.p-consulting__list::before {
  width: 386px;
  width: 24.125rem;
  height: 95%;
  background: #f3f3f3;
  border-radius: 12.5rem 0 0 12.5rem;
  left: -371px;
  left: -23.1875rem;
}
@media screen and (max-width: 768px) {
  .p-consulting__list::before {
    display: none;
  }
}
.p-consulting__list::after {
  width: 1px;
  width: 0.0625rem;
  height: 90%;
  left: 15px;
  left: 0.9375rem;
  top: 50%;
  background: #0058fa;
}

.p-consulting__list-item {
  font-weight: 700;
  color: #333;
  padding-left: 55px;
  padding-left: 3.4375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-consulting__list-item {
    padding-left: 2.8125rem;
  }
}
.p-consulting__list-item::before {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
  left: 0;
  top: 2px;
  top: 0.125rem;
}
.p-consulting__list-item:first-child::before, .p-consulting__list-item:last-child::before {
  background: #0058fa;
}
.p-consulting__list-item + .p-consulting__list-item {
  margin-top: 22px;
  margin-top: 1.375rem;
}
.p-consulting__list-item span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  color: #6095f6;
  font-size: 20px;
  font-size: 1.25rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

/* p-course */
.p-course {
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  padding: 70px 130px 60px 75px;
  padding: 4.375rem 8.125rem 3.75rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-course {
    padding: 2.5rem 1.25rem;
  }
}
.p-course.closed .p-course__header .p-course__list-title {
  background: #999;
  border-color: #999;
}
.p-course.closed .p-course__header .p-course__list-text span {
  color: #999;
}

.p-course__header .p-course__list-title {
  background: #0058fa;
  color: #fff;
}
.p-course__header .p-course__list-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-course__header .p-course__list-text {
    font-size: 0.9375rem;
  }
}
.p-course__header .p-course__list-text span {
  font-size: 32px;
  font-size: 2rem;
  color: #0058fa;
  letter-spacing: 0;
  margin-top: -12px;
  margin-top: -0.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-course__header .p-course__list-text span {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}

.p-course__body {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-course__body .p-course__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-course__body .p-course__list {
    display: block;
  }
}
.p-course__body .p-course__list-item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-course__body .p-course__list-item {
    width: 100%;
  }
}
.p-course__body .p-course__list-item:first-child {
  width: 100%;
}

.p-course__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-course__list-item {
    display: block;
  }
}
.p-course__list-item + .p-course__list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-course__list-title {
  text-align: center;
  width: 80px;
  width: 5rem;
  min-width: 80px;
  min-width: 5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  border: 1px solid #333;
  padding: 3px 5px;
  padding: 0.1875rem 0.3125rem;
}

.p-course__list-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-course__list-text {
    font-size: 0.875rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.p-course__list-text span {
  display: inline-block;
  font-weight: 700;
}

/* p-document */
.p-document {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-document {
    padding: 3.75rem 0;
  }
}
.p-document .c-entitle, .p-document .c-title {
  text-align: center;
}

.p-document__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-document__cards {
    margin-top: 1.5625rem;
  }
}

/* p-download */
.p-download {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-download {
    padding: 3.75rem 0;
  }
}
.p-download .c-title {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-download .c-title {
    font-size: 1.75rem;
  }
}
.p-download .c-title span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-left: 19px;
  margin-left: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-download .c-title span {
    display: block;
    font-size: 0.875rem;
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

.p-download__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 35px;
  gap: 1.5625rem 2.1875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-download__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-download__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.66667rem);
          flex: 0 1 calc(33.333% - 1.66667rem);
}
@media screen and (max-width: 768px) {
  .p-download__item + .p-download__item {
    margin-top: 1.25rem;
  }
}

.p-download__item-inner {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 0.9375rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-download__item-inner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-download__item-inner:hover .p-download__item-title {
  color: #0058fa;
}

.p-download__item-img {
  background: #ebf1f4;
  border-radius: 0.9375rem 0.9375rem 0 0;
  width: 100%;
  padding-top: 51.9230769231%;
  position: relative;
}
.p-download__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem 0.9375rem 0 0;
  background: #ebf1f4;
}

.p-download__item-body {
  min-height: 85px;
  min-height: 5.3125rem;
  background: #fff;
  border-radius: 0 0 0.9375rem 0.9375rem;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-download__item-body {
    padding: 1.25rem 0.625rem;
    min-height: unset;
  }
}

.p-download__item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-download__item-title {
    font-size: 1rem;
  }
}
.p-download__item-title span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-download__item-title span {
    font-size: 0.9375rem;
  }
}

/* p-p-drawer */
.p-drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  text-align: center;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding-top: 60px;
  padding-top: 3.75rem;
  width: 100%;
  height: 100%;
}
.p-drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.p-drawer__item {
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-drawer__item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
}

.p-drawer__btns {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  margin: 0 auto;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-drawer__btn + .p-drawer__btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-drawer__btn:first-child {
  width: 213px;
  width: 13.3125rem;
  background: #eee;
  border: 2px solid #eee;
  border: 0.125rem solid #eee;
}
.p-drawer__btn:first-child:hover {
  color: #eee;
  background: #212121;
}
.p-drawer__btn:nth-child(2) {
  width: 150px;
  width: 9.375rem;
  color: #0058fa;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-drawer__btn:nth-child(2):hover {
  color: #fff;
  background: #0058fa;
}
.p-drawer__btn:nth-child(3) {
  width: 150px;
  width: 9.375rem;
  background: #0058fa;
  color: #fff;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-drawer__btn:nth-child(3):hover {
  color: #0058fa;
  background: #fff;
}
.p-drawer__btn:hover {
  opacity: 1;
}

.p-drawer__link {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  background: url(../img/common/support_icon.png) no-repeat center left/17px;
  background: url(../img/common/support_icon.png) no-repeat center left/1.0625rem;
  margin-left: 19px;
  margin-left: 1.1875rem;
  padding-left: 22px;
  padding-left: 1.375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* p-effect */
.p-effect {
  padding: 70px 0 120px;
  padding: 4.375rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-effect {
    padding: 2.5rem 0 3.75rem;
  }
}
.p-effect .c-btn {
  width: 400px;
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .p-effect .c-btn {
    padding: 1.25rem 1.25rem;
  }
  .p-effect .c-btn::after {
    right: 0.9375rem;
  }
}
.p-effect .l-btn {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-effect .l-btn {
    margin-top: 2.5rem;
  }
}

.p-effect__subtitle {
  text-align: center;
}
.p-effect__subtitle span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #0058fa;
  letter-spacing: 0.05em;
  padding: 3px 22px;
  padding: 0.1875rem 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-effect__subtitle span {
    font-size: 1rem;
    padding: 0.3125rem 0.625rem;
  }
}

.p-effect__title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-effect__title {
    font-size: 1.5rem;
  }
}
.p-effect__title span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-effect__title span {
    font-size: 1.25rem;
  }
}

.p-effect__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-effect__text {
    text-align: left;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-effect__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-effect__img {
    margin-top: 1.5625rem;
  }
}

/* p-experience */
.p-experience {
  padding-top: 180px;
  padding-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience {
    padding-top: 6.25rem;
  }
}
.p-experience .c-title {
  text-align: center;
}

.p-experience__content {
  background: #f3f3f3;
  padding: 60px 0 107px;
  padding: 3.75rem 0 6.6875rem;
  margin-top: 90px;
  margin-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-experience__content {
    padding: 2.5rem 0 3.75rem;
    margin-top: 3.125rem;
  }
}
.p-experience__content::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -50px;
  top: -3.125rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-experience__content::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -1.875rem;
  }
}

.p-experience__unit + .p-experience__unit {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-experience__unit + .p-experience__unit {
    margin-top: 3.75rem;
  }
}

.p-experience__subtitle {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-experience__subtitle {
    font-size: 1.5rem;
  }
}

.p-experience__box {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  padding: 60px 95px;
  padding: 3.75rem 5.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-experience__box {
    padding: 2.5rem 1.25rem;
    margin-top: 1.5625rem;
  }
}

.p-experience__box-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-experience__box-title {
    font-size: 1.125rem;
  }
}

.p-experience__box-text {
  text-align: center;
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-experience__box-text {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.p-experience__box-img {
  width: 800px;
  width: 50rem;
  max-width: 100%;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-experience__box-img {
    margin-top: 1.875rem;
  }
}

.p-experience__box-list-item {
  line-height: 1.75;
  color: #333;
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-experience__box-list-item {
    font-size: 0.9375rem;
    padding-left: 1.25rem;
  }
}
.p-experience__box-list-item + .p-experience__box-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.p-experience__box-list-item::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #0058fa;
  border-radius: 50%;
  top: 12px;
  top: 0.75rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-experience__box-list-item::before {
    top: 0.625rem;
  }
}

.p-experience__box-subimg {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-experience__box-subimg {
    margin-top: 1.875rem;
  }
}

.p-experience__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 0 55px;
  gap: 0 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-experience__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-experience__item {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 2.29167rem);
          flex: 0 1 calc(33.333% - 2.29167rem);
  padding: 54px 20px 65px;
  padding: 3.375rem 1.25rem 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item {
    padding: 2.5rem 1.25rem;
  }
  .p-experience__item + .p-experience__item {
    margin-top: 1.25rem;
  }
}
.p-experience__item:first-child .p-experience__item-img {
  width: 150px;
  width: 9.375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item:first-child .p-experience__item-img {
    margin-top: 0;
  }
}
.p-experience__item:first-child .p-experience__item-title {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item:first-child .p-experience__item-title {
    margin-top: 0.625rem;
  }
}
.p-experience__item:nth-child(2) .p-experience__item-img {
  width: 150px;
  width: 9.375rem;
}
.p-experience__item:nth-child(2) .p-experience__item-title {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item:nth-child(2) .p-experience__item-title {
    margin-top: 1.25rem;
  }
}
.p-experience__item:nth-child(3) .p-experience__item-img {
  width: 150px;
  width: 9.375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item:nth-child(3) .p-experience__item-img {
    margin-top: 0;
  }
}
.p-experience__item:nth-child(3) .p-experience__item-title {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item:nth-child(3) .p-experience__item-title {
    margin-top: 0.625rem;
  }
}

.p-experience__item-img {
  max-width: 100%;
  margin: 0 auto;
}

.p-experience__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-experience__item-title {
    font-size: 1.25rem;
  }
}

.p-experience__item-text {
  text-align: center;
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-experience__item-text {
    font-size: 0.9375rem;
  }
}

.p-experience__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 0 40px;
  padding: 0 2.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-experience__inner {
    display: block;
    padding: 0;
    margin-top: 1.5625rem;
  }
}

.p-experience__img {
  width: 24%;
}
@media screen and (max-width: 768px) {
  .p-experience__img {
    width: 12.5rem;
    max-width: 100%;
    margin: 1.25rem auto 0;
  }
}

.p-experience__body {
  width: 72%;
  background: #fff;
  border-radius: 0.625rem;
  padding: 28px 30px;
  padding: 1.75rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-experience__body {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}

.p-experience__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 33px;
  padding-left: 2.0625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-experience__list-item {
    font-size: 1rem;
    padding-left: 1.5625rem;
  }
}
.p-experience__list-item + .p-experience__list-item {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-experience__list-item + .p-experience__list-item {
    margin-top: 0.625rem;
  }
}
.p-experience__list-item::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: #0058fa;
  border-radius: 50%;
  left: 0;
  top: 9px;
  top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-experience__list-item::before {
    width: 0.625rem;
    height: 0.625rem;
    top: 0.4375rem;
  }
}

/* p-fnav */
.p-fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-fnav {
    display: block;
  }
}

.p-fnav__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-fnav__item-wrapper {
    display: block;
  }
}
.p-fnav__item-wrapper + .p-fnav__item-wrapper {
  margin-left: 100px;
  margin-left: 6.25rem;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .p-fnav__item-wrapper + .p-fnav__item-wrapper {
    margin-left: 9.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-fnav__item-wrapper + .p-fnav__item-wrapper {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}
.p-fnav__item-wrapper + .p-fnav__item-wrapper::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  left: -50px;
  left: -3.125rem;
  top: 0;
  background: #333;
}
@media screen and (max-width: 1600px) {
  .p-fnav__item-wrapper + .p-fnav__item-wrapper::before {
    left: -4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-fnav__item-wrapper + .p-fnav__item-wrapper::before {
    display: none;
  }
}

.p-fnav__items + .p-fnav__items {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__items + .p-fnav__items {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.p-fnav__item + .p-fnav__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__item + .p-fnav__item {
    margin-top: 0.9375rem;
  }
}
.p-fnav__item a {
  display: inline-block;
  line-height: 2;
}
.p-fnav__item > a {
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-fnav__item > a {
    font-size: 0.9375rem;
  }
}

.p-fnav__subitems {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__subitems {
    margin-top: 0.3125rem;
  }
}

.p-fnav__subitem a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #999;
}

/* p-footer */
.p-footer__content {
  background: #212121;
  padding: 75px 0;
  padding: 4.6875rem 0;
}
@media screen and (max-width: 768px) {
  .p-footer__content {
    padding: 3.125rem 0;
  }
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-footer__top {
    display: block;
  }
}

.p-footer__top-logo {
  width: 162px;
  width: 10.125rem;
}

.p-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-footer__btns {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-footer__btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-footer__btn + .p-footer__btn {
  margin-left: 9px;
  margin-left: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__btn + .p-footer__btn {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.p-footer__btn:first-child {
  width: 223px;
  width: 13.9375rem;
  background: #eee;
  border: 2px solid #eee;
  border: 0.125rem solid #eee;
}
.p-footer__btn:first-child:hover {
  color: #eee;
  background: #212121;
}
.p-footer__btn:nth-child(2) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.75em;
  color: #0058fa;
  background: #fff;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-footer__btn:nth-child(2):hover {
  color: #fff;
  background: #0058fa;
}
.p-footer__btn:nth-child(3) {
  width: 150px;
  width: 9.375rem;
  color: #fff;
  background: #0058fa;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-footer__btn:nth-child(3):hover {
  color: #0058fa;
  background: #fff;
}
.p-footer__btn:hover {
  opacity: 1;
}

.p-footer__nav {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    margin-top: 2.5rem;
  }
}

.p-footer__bottom {
  padding: 30px 0 20px;
  padding: 1.875rem 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom {
    padding: 1.25rem 0;
  }
}

.p-footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-footer__logo {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    margin-top: 0.625rem;
  }
}
.p-footer__logo:not(:last-child) {
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo:not(:last-child) {
    margin-right: 0.9375rem;
  }
}
.p-footer__logo:first-child {
  width: 157px;
  width: 9.8125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo:first-child {
    width: 6.875rem;
  }
}
.p-footer__logo:nth-child(2) {
  width: 167px;
  width: 10.4375rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo:nth-child(2) {
    width: 7.5rem;
  }
}
.p-footer__logo:nth-child(3) {
  width: 187px;
  width: 11.6875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo:nth-child(3) {
    width: 8.75rem;
  }
}
.p-footer__logo:nth-child(4) {
  width: 237px;
  width: 14.8125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo:nth-child(4) {
    width: 10.625rem;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__links {
    margin-top: 2.5rem;
  }
}

.p-footer__link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
}
.p-footer__link + .p-footer__link {
  margin-left: 20px;
  margin-left: 1.25rem;
}
.p-footer__link a {
  display: inline-block;
}

.p-footer__copyright {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  color: #999;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* p-form */
.p-form__items:not(:first-child) {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-form__item {
    display: block;
    font-size: 1rem;
  }
}
.p-form__item + .p-form__item {
  margin-top: 1px;
  margin-top: 0.0625rem;
}
.p-form__item:first-child .p-form__item-label {
  border-radius: 1.25rem 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-form__item:first-child .p-form__item-label {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.p-form__item:first-child .p-form__item-input {
  border-radius: 0 1.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-form__item:first-child .p-form__item-input {
    border-radius: 0;
  }
}
.p-form__item:last-child .p-form__item-label {
  border-radius: 0 0 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-form__item:last-child .p-form__item-label {
    border-radius: 0;
  }
}
.p-form__item:last-child .p-form__item-input {
  border-radius: 0 0 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-form__item:last-child .p-form__item-input {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.p-form__item:first-child:last-child .p-form__item-label {
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-form__item:first-child:last-child .p-form__item-label {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.p-form__item:first-child:last-child .p-form__item-input {
  border-radius: 0 1.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-form__item:first-child:last-child .p-form__item-input {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.p-form__item-label {
  width: 25%;
  background: #0058fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 28px 25px 40px;
  padding: 1.5625rem 1.75rem 1.5625rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__item-label {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1.25rem 1.25rem;
  }
}
.p-form__item-label label, .p-form__item-label span {
  display: inline-block;
}
.p-form__item-label label {
  color: #fff;
  font-weight: 700;
  line-height: 1.39;
}
.p-form__item-label span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 1px 6px;
  padding: 0.0625rem 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-form__item-label span {
    margin-left: 0.9375rem;
  }
}
.p-form__item-label span.required {
  color: #0058fa;
  background: #fff;
}
.p-form__item-label span.option {
  color: #666;
  background: #bdd5fc;
}

.p-form__item-input {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f4f4f4;
  padding: 22px 48px;
  padding: 1.375rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-form__item-input {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
}
.p-form__item-input input[type=text], .p-form__item-input input[type=tel], .p-form__item-input input[type=email], .p-form__item-input textarea {
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  width: 694px;
  width: 43.375rem;
  max-width: 100%;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
.p-form__item-input input[type=text]::-webkit-input-placeholder, .p-form__item-input input[type=tel]::-webkit-input-placeholder, .p-form__item-input input[type=email]::-webkit-input-placeholder, .p-form__item-input textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #aaa;
}
.p-form__item-input input[type=text]::-moz-placeholder, .p-form__item-input input[type=tel]::-moz-placeholder, .p-form__item-input input[type=email]::-moz-placeholder, .p-form__item-input textarea::-moz-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #aaa;
}
.p-form__item-input input[type=text]::-ms-input-placeholder, .p-form__item-input input[type=tel]::-ms-input-placeholder, .p-form__item-input input[type=email]::-ms-input-placeholder, .p-form__item-input textarea::-ms-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #aaa;
}
.p-form__item-input input[type=text]::placeholder, .p-form__item-input input[type=tel]::placeholder, .p-form__item-input input[type=email]::placeholder, .p-form__item-input textarea::placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #aaa;
}
.p-form__item-input input[type=text], .p-form__item-input input[type=tel], .p-form__item-input input[type=email] {
  height: 56px;
  height: 3.5rem;
}
.p-form__item-input textarea {
  height: 280px;
  height: 17.5rem;
  resize: none;
}
.p-form__item-input select {
  color: #212121;
  width: 100%;
  height: 56px;
  height: 3.5rem;
  font-size: 16px;
  font-size: 1rem;
  background: url(../img/common/arrow_icon_010.png) no-repeat center right 20px/15px;
  background: url(../img/common/arrow_icon_010.png) no-repeat center right 1.25rem/0.9375rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}

.p-form__other {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-form__other input[type=text] {
  width: 340px;
  width: 21.25rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__other input[type=text] {
    display: block;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.p-form__name {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.p-form__name input[type=text] {
  width: 180px;
  width: 11.25rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.p-form__name input[type=text]:first-child {
  margin-right: 35px;
  margin-right: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-form__name input[type=text]:first-child {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}

.p-form__address input[type=text] {
  width: 500px;
  width: 31.25rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-form__address input[type=text] {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.p-form__address .p-form__select {
  width: 500px;
  width: 31.25rem;
  margin-left: 12px;
  margin-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-form__address .p-form__select {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.p-form__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-form__post {
    display: block;
  }
}
.p-form__post input[type=text] {
  display: inline-block;
  width: 130px;
  width: 8.125rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-form__post input[type=text] {
    width: 7.1875rem;
  }
}
.p-form__post input[type=text]:first-child {
  margin-left: 15px;
  margin-left: 0.9375rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__post input[type=text]:first-child {
    margin-left: 0.625rem;
  }
}
.p-form__post input[type=text]:nth-child(2) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
.p-form__post button {
  text-align: center;
  display: block;
  width: 156px;
  width: 9.75rem;
  max-width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
  background: #aaa;
  border-radius: 1.5625rem;
  -webkit-box-shadow: 0 0 22.6px 1.4px rgba(10, 13, 78, .1);
          box-shadow: 0 0 22.6px 1.4px rgba(10, 13, 78, .1);
  margin-left: 30px;
  margin-left: 1.875rem;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__post button {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.p-form__select {
  display: inline-block;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  width: 694px;
  width: 43.375rem;
  max-width: 100%;
}

.p-form__radio {
  margin-bottom: -20px;
  margin-bottom: -1.25rem;
}
.p-form__radio label {
  display: inline-block;
}
.p-form__radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 26px;
  padding-left: 1.625rem;
  margin-right: 35px;
  margin-right: 2.1875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
.p-form__radio input[type=radio] + span::before, .p-form__radio input[type=radio] + span::after {
  position: absolute;
  content: "";
}
.p-form__radio input[type=radio] + span::before {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  top: 6px;
  top: 0.375rem;
  left: 0;
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-form__radio input[type=radio] + span::before {
    top: 0.3125rem;
  }
}
.p-form__radio input[type=radio] + span::after {
  height: 9px;
  height: 0.5625rem;
  width: 9px;
  width: 0.5625rem;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 4px;
  left: 0.25rem;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__radio input[type=radio] + span::after {
    top: 0.5625rem;
  }
}
.p-form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}
.p-form__radio input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 26px;
  padding-left: 1.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
.p-form__radio input[type=checkbox] + span::before, .p-form__radio input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.p-form__radio input[type=checkbox] + span::before {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  top: 6px;
  top: 0.375rem;
  left: 0;
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-form__radio input[type=checkbox] + span::before {
    top: 0.3125rem;
  }
}
.p-form__radio input[type=checkbox] + span::after {
  height: 9px;
  height: 0.5625rem;
  width: 9px;
  width: 0.5625rem;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 4px;
  left: 0.25rem;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__radio input[type=checkbox] + span::after {
    top: 0.5625rem;
  }
}
.p-form__radio input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-form__radio a {
  color: #0058fa;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-underline-offset: 0.3125rem;
}

.p-form__btn {
  text-align: left;
  color: #212121;
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-form__btn {
    margin-top: 3.75rem;
  }
}

.p-form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-form__btns {
    display: block;
    margin-top: 3.75rem;
  }
}
.p-form__btns .p-form__btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-form__btns .p-form__btn {
    margin: 0 auto;
  }
}
.p-form__btns .p-form__btn:nth-child(2) {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__btns .p-form__btn:nth-child(2) {
    margin-left: auto;
    margin-top: 1.25rem;
  }
}

/* p-free */
.p-free {
  background: #fff;
  border-radius: 1.875rem;
  padding: 80px 110px 60px;
  padding: 5rem 6.875rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-free {
    border-radius: 1.25rem;
    padding: 5.625rem 1.25rem 2.5rem;
  }
}

.p-free__img {
  position: absolute;
  right: 0;
  top: 38px;
  top: 2.375rem;
  width: 39%;
}
@media screen and (max-width: 768px) {
  .p-free__img {
    width: 15.625rem;
    max-width: 100%;
    top: -3.125rem;
  }
}

.p-free__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-free__subtitle {
    font-size: 1.125rem;
  }
}

.p-free__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0058fa;
  line-height: 1.3;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-free__title {
    font-size: 1.5rem;
  }
}

.p-free__subtext {
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-free__subtext {
    font-size: 0.9375rem;
  }
}

.p-free__text {
  color: #333;
  line-height: 1.75;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-free__text {
    font-size: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.p-free__box {
  border-radius: 1.25rem;
  background: #f3f3f3;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 30px 45px;
  padding: 1.875rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-free__box {
    padding: 1.875rem 1.25rem;
  }
}

.p-free__list-item {
  font-weight: 700;
  line-height: 1.87;
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-free__list-item {
    font-size: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.p-free__list-item::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  left: 0;
  top: 10px;
  top: 0.625rem;
  background: #0058fa;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-free__list-item::before {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

/* p-fv */
.p-fv {
  background: #f3f3f3;
  padding: 53px 63px;
  padding: 3.3125rem 3.9375rem;
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .p-fv {
    padding: 2.5rem 0;
    margin-top: 4.6875rem;
  }
}
.p-fv .l-inner {
  max-width: 1600px;
  max-width: 100rem;
}

.p-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 130px;
  padding-right: 8.125rem;
}
@media screen and (max-width: 1600px) {
  .p-fv__inner {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    display: block;
  }
}

.p-fv__body {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-fv__body {
    width: 100%;
  }
}

.p-fv__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 1.5rem;
  }
}

.p-fv__logo {
  max-width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-fv__logo {
    margin: 1.25rem auto 0;
  }
}

.p-fv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-fv__btns {
    display: block;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__btns .c-btn {
    margin: 0 auto;
  }
}
.p-fv__btns .c-btn:nth-child(2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-fv__btns .c-btn:nth-child(2) {
    margin-left: auto;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-fv__img {
    max-width: 100%;
    margin: 2.5rem auto 0;
  }
}

/* p-gnav */
.p-gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-gnav__item {
  font-weight: 600;
  position: relative;
}
.p-gnav__item + .p-gnav__item {
  margin-left: 55px;
  margin-left: 3.4375rem;
}
.p-gnav__item a {
  display: inline-block;
}
.p-gnav__item > a {
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-gnav__parent > a {
  background: url(../img/common/arrow_icon_004.png) no-repeat center right/12px;
  background: url(../img/common/arrow_icon_004.png) no-repeat center right/0.75rem;
  padding-right: 17px;
  padding-right: 1.0625rem;
}
.p-gnav__parent:nth-child(2) .p-gnav__child {
  width: 215px;
  width: 13.4375rem;
}
.p-gnav__parent:nth-child(3) .p-gnav__child {
  width: 580px;
  width: 36.25rem;
}
.p-gnav__parent:nth-child(3) .p-gnav__child-items {
  width: 33%;
}
.p-gnav__parent:nth-child(4) .p-gnav__child {
  width: 215px;
  width: 13.4375rem;
}
.p-gnav__parent:nth-child(5) .p-gnav__child {
  width: 450px;
  width: 28.125rem;
}
.p-gnav__parent:nth-child(5) .p-gnav__child-items:first-child {
  width: 45%;
}
.p-gnav__parent:nth-child(5) .p-gnav__child-items:nth-child(2) {
  width: 55%;
}
.p-gnav__parent:nth-child(6) .p-gnav__child {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-gnav__parent:nth-child(7) .p-gnav__child {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-gnav__parent:nth-child(3) .p-gnav__child, .p-gnav__parent:nth-child(6) .p-gnav__child, .p-gnav__parent:nth-child(7) .p-gnav__child {
  left: unset;
  right: 0;
}

.p-gnav__child {
  display: none;
  position: absolute;
  top: 62px;
  top: 3.875rem;
  left: 0;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  background: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
  border-radius: 0px 0px 0.625rem 0.625rem;
}
.p-gnav__child-title {
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.p-gnav__child-item {
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-gnav__child-item a,
.p-gnav__child-item span {
  display: inline-block;
  padding: 8px 0;
  padding: 0.5rem 0;
}
.p-gnav__child-item span {
  font-weight: 700;
}
.p-gnav__child-item.indent {
  padding-left: 1em;
}
.p-gnav__child-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  gap: 0.9375rem;
}
.p-gnav__child-otherlink {
  line-height: 1.75;
  position: relative;
  margin: 0 24px 8px auto;
  margin: 0 1.5rem 0.5rem auto;
  float: right;
}
.p-gnav__child-otherlink::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 12px;
  height: 0.75rem;
  top: 10px;
  top: 10px;
  top: 0.625rem;
  right: -15px;
  right: -15px;
  right: -0.9375rem;
  background: url(../img/common/arrow_icon_002.png) no-repeat center/contain;
}

/* p-p-hamburger */
.p-hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 25px;
  top: 1.5625rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
}
.p-hamburger.active .p-hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.p-hamburger.active .p-hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-hamburger.active .p-hamburger__border:nth-child(2), .p-hamburger.active .p-hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-hamburger__border:nth-child(1) {
  top: 0;
}
.p-hamburger__border:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}
.p-hamburger__border:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* p-p-header */
.p-header {
  background: #fefefe;
  position: fixed;
  width: 100%;
  height: 125px;
  height: 7.8125rem;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4.375rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding: 0 45px 0 57px;
  padding: 0 2.8125rem 0 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 0 0.9375rem;
  }
}

.p-header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  width: 165px;
  width: 10.3125rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 7.5rem;
  }
}
.p-header__logo a {
  display: block;
}

.p-header__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-header__text {
    font-size: 0.625rem;
  }
}

.p-header__body {
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.p-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-header__btn + .p-header__btn {
  margin-left: 10px;
  margin-left: 0.625rem;
}
.p-header__btn:first-child {
  width: 213px;
  width: 13.3125rem;
  background: #eee;
  border: 2px solid #eee;
  border: 0.125rem solid #eee;
}
.p-header__btn:first-child:hover {
  color: #eee;
  background: #212121;
}
.p-header__btn:nth-child(2) {
  width: 150px;
  width: 9.375rem;
  color: #0058fa;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-header__btn:nth-child(2):hover {
  color: #fff;
  background: #0058fa;
}
.p-header__btn:nth-child(3) {
  width: 150px;
  width: 9.375rem;
  background: #0058fa;
  color: #fff;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
}
.p-header__btn:nth-child(3):hover {
  color: #0058fa;
  background: #fff;
}
.p-header__btn:hover {
  opacity: 1;
}

.p-header__link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  background: url(../img/common/support_icon.png) no-repeat center left/17px;
  background: url(../img/common/support_icon.png) no-repeat center left/1.0625rem;
  margin-left: 19px;
  margin-left: 1.1875rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}

/* p-introduction */
.p-introduction {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-introduction {
    padding: 3.75rem 0;
  }
}

.p-introduction__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 32px;
  gap: 1.25rem 2rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__items {
    gap: 0.9375rem 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.p-introduction__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 1.6rem);
          flex: 0 1 calc(20% - 1.6rem);
}
@media screen and (max-width: 768px) {
  .p-introduction__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.46875rem);
            flex: 0 1 calc(50% - 0.46875rem);
  }
}
.p-introduction__item img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__item img {
    border-radius: 0.625rem;
  }
}

/* p-map */
.p-map {
  background: #f3f3f3;
  padding: 65px 0 140px;
  padding: 4.0625rem 0 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-map {
    padding: 3.75rem 0;
  }
}
.p-map .c-entitle, .p-map .c-title {
  text-align: center;
}

.p-map__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  padding: 48px 57px 48px 76px;
  padding: 3rem 3.5625rem 3rem 4.75rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-map__content {
    padding: 2.5rem 1.25rem;
    display: block;
  }
}

.p-map__body {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-map__body {
    width: 100%;
  }
}

.p-map__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-map__title {
    font-size: 1.25rem;
  }
}

.p-map__text {
  line-height: 1.75;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-map__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-map__subtitle {
  font-weight: 700;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-map__subtitle {
    font-size: 0.9375rem;
  }
}

.p-map__subtext {
  line-height: 1.75;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-map__subtext {
    font-size: 0.9375rem;
  }
}

.p-map__map-wrapper {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-map__map-wrapper {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.p-map__map {
  width: 100%;
  padding-top: 71.4285714286%;
  position: relative;
}
.p-map__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
}

/* p-menu */
.p-menu {
  background: #333;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .p-menu {
    padding: 3.75rem 0;
  }
}

.p-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-menu__items {
    display: block;
  }
}

.p-menu__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-menu__item {
    width: 100%;
  }
}
.p-menu__item .c-entitle {
  text-align: center;
}
.p-menu__item + .p-menu__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-menu__item + .p-menu__item {
    margin-top: 6.25rem;
  }
}
.p-menu__item + .p-menu__item::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 256px;
  height: 16rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/menu_border_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-menu__item + .p-menu__item::before {
    height: 1.25rem;
    width: 18.75rem;
    background: url(../img/common/menu_border_sp.png) no-repeat center/contain;
    top: -3.125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-menu__item-text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-menu__item-text {
    font-size: 1.125rem;
  }
}

/* p-merit */
.p-merit {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-merit {
    padding: 3.75rem 0;
  }
}

.p-merit__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-merit__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-merit__item {
  width: 33.333%;
  padding: 45px 50px 50px;
  padding: 2.8125rem 3.125rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-merit__item {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}
.p-merit__item:first-child {
  background: #6095f6;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-merit__item:first-child {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.p-merit__item:nth-child(2) {
  background: #3b7ef9;
}
.p-merit__item:nth-child(3) {
  background: #0058fa;
  border-radius: 0 1.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-merit__item:nth-child(3) {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.p-merit__item-img {
  width: 182px;
  width: 11.375rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-merit__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.67;
  letter-spacing: 0.05em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-merit__item-text {
    font-size: 1rem;
  }
}

/* p-mv */
.p-mv {
  background: #f3f3f3;
  margin-top: 125px;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .p-mv {
    margin-top: 4.375rem;
  }
}

.p-mv--company .p-mv__img {
  width: 340px;
  width: 21.25rem;
  right: -10px;
  right: -0.625rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--company .p-mv__img {
    width: 8.125rem;
    bottom: -0.9375rem;
  }
}

.p-mv--news .p-mv__img {
  width: 443px;
  width: 27.6875rem;
  right: -70px;
  right: -4.375rem;
  bottom: -40px;
  bottom: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-mv--news .p-mv__img {
    width: 9.375rem;
    right: -0.625rem;
    bottom: -0.9375rem;
  }
}

.p-mv--service .p-mv__img {
  width: 391px;
  width: 24.4375rem;
  right: 0;
  bottom: -60px;
  bottom: -3.75rem;
}
@media screen and (max-width: 768px) {
  .p-mv--service .p-mv__img {
    width: 7.8125rem;
    right: -0.625rem;
    bottom: -1.875rem;
  }
}

.p-mv--faq .p-mv__img {
  width: 451px;
  width: 28.1875rem;
  right: -50px;
  right: -3.125rem;
  bottom: -40px;
  bottom: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-mv--faq .p-mv__img {
    width: 7.8125rem;
    right: -0.625rem;
    bottom: -1.875rem;
  }
}

.p-mv--column .p-mv__img {
  width: 308px;
  width: 19.25rem;
  right: 10px;
  right: 0.625rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--column .p-mv__img {
    width: 7.8125rem;
    right: -0.625rem;
    bottom: -1.875rem;
  }
}

.p-mv--scene .p-mv__img {
  width: 360px;
  width: 22.5rem;
  right: 0;
  bottom: -20px;
  bottom: -1.25rem;
}
@media screen and (max-width: 768px) {
  .p-mv--scene .p-mv__img {
    width: 7.5rem;
    right: -0.625rem;
    bottom: -2.5rem;
  }
}

.p-mv--case .p-mv__img {
  width: 455px;
  width: 28.4375rem;
  right: 0;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--case .p-mv__img {
    width: 9.375rem;
    bottom: -1.25rem;
  }
}

.p-mv--function .p-mv__img {
  width: 289px;
  width: 18.0625rem;
  right: 20px;
  right: 1.25rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--function .p-mv__img {
    width: 5.625rem;
    right: -0.625rem;
    bottom: -1.25rem;
  }
}

.p-mv--support .p-mv__img {
  width: 321px;
  width: 20.0625rem;
  right: 20px;
  right: 1.25rem;
  bottom: -10px;
  bottom: -0.625rem;
}
@media screen and (max-width: 768px) {
  .p-mv--support .p-mv__img {
    width: 6.25rem;
    right: -0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-mv--consulting .p-mv__inner {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mv--consulting .p-mv__title {
    margin-top: -2.25rem;
  }
}
.p-mv--consulting .p-mv__img {
  width: 274px;
  width: 17.125rem;
  right: 25px;
  right: 1.5625rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--consulting .p-mv__img {
    width: 5.625rem;
    right: -0.625rem;
    bottom: -2rem;
  }
}

.p-mv--user .p-mv__img {
  width: 332px;
  width: 20.75rem;
  right: -35px;
  right: -2.1875rem;
  bottom: -45px;
  bottom: -2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-mv--user .p-mv__img {
    width: 7.5rem;
    right: -0.625rem;
    bottom: -0.9375rem;
  }
}

.p-mv--archive-seminar .p-mv__img {
  width: 383px;
  width: 23.9375rem;
  right: 10px;
  right: 0.625rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--archive-seminar .p-mv__img {
    width: 9.375rem;
    right: -0.625rem;
    bottom: -0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-mv--single-seminar01 .p-mv__inner {
    min-height: 15rem;
    padding-bottom: 1.5rem;
  }
}
.p-mv--single-seminar01 .p-mv__img {
  width: 320px;
  width: 20rem;
  right: 10px;
  right: 0.625rem;
  bottom: -25px;
  bottom: -1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar01 .p-mv__img {
    width: 6.25rem;
    right: -0.625rem;
    bottom: -0.9375rem;
  }
}
.p-mv--single-seminar01 .p-mv__title {
  font-size: 44px;
  font-size: 2.75rem;
  width: calc(100% - 20rem);
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar01 .p-mv__title {
    font-size: 1.75rem;
    width: 100%;
  }
}
.p-mv--single-seminar01 .p-mv__title > p {
  margin-block: 0.25em;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar01 .p-mv__title > p {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.p-mv--single-seminar02 .p-mv__img {
  width: 289px;
  width: 18.0625rem;
  right: 10px;
  right: 0.625rem;
  bottom: -20px;
  bottom: -1.25rem;
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar02 .p-mv__img {
    width: 6.875rem;
    right: -0.625rem;
  }
}

.p-mv--single-seminar03 .p-mv__img {
  width: 281px;
  width: 17.5625rem;
  right: -5px;
  right: -0.3125rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar03 .p-mv__img {
    width: 6.875rem;
    right: -0.625rem;
  }
}

.p-mv--single-seminar04 .p-mv__img {
  width: 307px;
  width: 19.1875rem;
  right: 10px;
  right: 0.625rem;
  bottom: -15px;
  bottom: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-mv--single-seminar04 .p-mv__img {
    width: 6.875rem;
    right: -0.625rem;
  }
}

.p-mv--download .p-mv__img {
  width: 433px;
  width: 27.0625rem;
  right: -50px;
  right: -3.125rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv--download .p-mv__img {
    width: 8.125rem;
    right: -0.625rem;
    bottom: -1.25rem;
  }
}

.p-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
  min-height: 18.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv__inner {
    min-height: 12.5rem;
  }
}

.p-mv__title {
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-mv__title {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.p-mv__title-logo {
  display: block;
  height: 56px;
  height: 3.5rem;
  width: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-mv__title-logo {
    height: 2rem;
    margin-bottom: 0.25rem;
  }
}
.p-mv__title-logo img {
  height: 100%;
  width: auto;
}
.p-mv__title-sub {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-mv__title-sub {
    font-size: 1rem;
    line-height: 1.3;
  }
}
.p-mv__title.p-mv__title-fs-40 {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-mv__title.p-mv__title-fs-40 {
    font-size: 1.75rem;
  }
}

.p-mv__img {
  position: absolute;
  max-width: 100%;
  width: 300px;
  width: 18.75rem;
  right: -10px;
  right: -0.625rem;
  bottom: -30px;
  bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-mv__img {
    width: 7.5rem;
    bottom: -0.625rem;
  }
}

/* p-news */
.p-news__item + .p-news__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-news__item + .p-news__item {
    margin-top: 1.25rem;
  }
}

.p-news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 130px;
  min-height: 8.125rem;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  padding: 20px 80px 20px 160px;
  padding: 1.25rem 5rem 1.25rem 10rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news__item-inner {
    min-height: unset;
    padding: 1.25rem 1.25rem 2.5rem 5rem;
  }
}
.p-news__item-inner::before, .p-news__item-inner::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-news__item-inner::before {
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  left: 37px;
  left: 2.3125rem;
  background: url(../img/news/news_icon_001.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-news__item-inner::before {
    width: 3.125rem;
    height: 3.125rem;
    left: 0.9375rem;
  }
}
.p-news__item-inner::after {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  right: 23px;
  right: 1.4375rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-news__item-inner::after {
    width: 1.25rem;
    height: 1.25rem;
    right: 0.9375rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    bottom: 0.9375rem;
  }
}
.p-news__item-inner:hover {
  opacity: 1;
}
.p-news__item-inner:hover::before {
  background: url(../img/news/news_icon_002.png) no-repeat center/contain;
}
.p-news__item-inner:hover::after {
  background: url(../img/common/arrow_icon_007.png) no-repeat center/contain;
}
.p-news__item-inner:hover .p-news__item-title {
  color: #0058fa;
}

.p-news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-news__item-title {
    font-size: 0.9375rem;
  }
}

/* p-offer */
.p-offer__title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #0058fa;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-offer__title {
    font-size: 1.125rem;
  }
}

.p-offer__list {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-offer__list {
    margin-top: 1.25rem;
  }
}

.p-offer__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #f3f3f3;
  border-radius: 0.625rem;
  padding: 26px 40px 26px 40px;
  padding: 1.625rem 2.5rem 1.625rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-offer__list-item {
    font-size: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
}
.p-offer__list-item + .p-offer__list-item {
  margin-top: 18px;
  margin-top: 1.125rem;
}
.p-offer__list-item input[type=radio] {
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #212121;
  border: 0.0625rem solid #212121;
  margin-right: 10px;
  margin-right: 0.625rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
}

/* p-other */
.p-other__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px 55px;
  gap: 3.4375rem 3.4375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-other__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-other__item {
  background: #f3f3f3;
  border-radius: 1.875rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 2.29167rem);
          flex: 0 1 calc(33.333% - 2.29167rem);
  padding: 50px 38px 30px;
  padding: 3.125rem 2.375rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-other__item {
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
  .p-other__item + .p-other__item {
    margin-top: 1.25rem;
  }
}

.p-other__item-img {
  width: 52px;
  width: 3.25rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-other__item-industry {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-other__item-industry {
    font-size: 1.25rem;
  }
}

.p-other__item-company {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-other__item-company {
    font-size: 1rem;
  }
}

.p-other__item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  min-height: 52px;
  min-height: 3.25rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-other__item-title {
    font-size: 1.125rem;
    min-height: unset;
  }
}

.p-other__item-category {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-other__item-category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  background: #999;
  border-radius: 0.1875rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.p-other__item-text {
  line-height: 1.75;
  color: #333;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-other__item-text {
    font-size: 0.9375rem;
  }
}

/* p-overview */
.p-overview {
  background: #f3f3f3;
  padding: 65px 0 110px;
  padding: 4.0625rem 0 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-overview {
    padding: 3.75rem 0;
  }
}

.p-overview__items {
  width: 970px;
  width: 60.625rem;
  max-width: 100%;
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-overview__items {
    margin-top: 2.5rem;
  }
}
.p-overview__items::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background: #0058fa;
  top: 5px;
  top: 0.3125rem;
  left: 162px;
  left: 10.125rem;
}
@media screen and (max-width: 768px) {
  .p-overview__items::before {
    left: 6.5625rem;
  }
}

.p-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-overview__item + .p-overview__item {
  margin-top: 18px;
  margin-top: 1.125rem;
}
.p-overview__item:first-child .p-overview__item-text::before, .p-overview__item:last-child .p-overview__item-text::before {
  background: #0058fa;
}

.p-overview__item-title {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.94;
  width: 110px;
  width: 6.875rem;
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-overview__item-title {
    font-size: 0.875rem;
    width: 5.3125rem;
    min-width: 5.3125rem;
  }
}

.p-overview__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.94;
  margin-left: 105px;
  margin-left: 6.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-overview__item-text {
    font-size: 0.875rem;
    margin-left: 2.5rem;
  }
}
.p-overview__item-text::before {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
  top: 5px;
  top: 0.3125rem;
  left: -68px;
  left: -4.25rem;
}
@media screen and (max-width: 768px) {
  .p-overview__item-text::before {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.1875rem;
    left: -1.875rem;
  }
}
.p-overview__item-text span {
  font-weight: 700;
}
.p-overview__item-text ul {
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-overview__item-text ul {
    padding-left: 0;
  }
}
.p-overview__item-text li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-overview__item-text li {
    font-size: 0.875rem;
    padding-left: 0.9375rem;
  }
}
.p-overview__item-text li + .p-overview__item-text li {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-overview__item-text li::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 12px;
  top: 0.75rem;
  left: 0;
  background: #0058fa;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-overview__item-text li::before {
    top: 0.5rem;
  }
}

/* p-post */
.p-post {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-post {
    padding: 3.75rem 0;
  }
}
.p-post.u-black .c-title {
  color: #fff;
}
.p-post.u-black .c-card__body {
  background: #fff;
}
.p-post.u-black .p-slider__progress {
  background: #6D6D6D;
}

.p-post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-post__slider {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* p-product */
.p-product {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-product {
    padding: 3.75rem 0;
  }
}

.p-product--detail .p-product__content {
  padding: 0;
}
.p-product--detail .p-product__img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .p-product--detail .p-product__img {
    width: 18.75rem;
  }
}
.p-product--detail .p-product__items {
  width: 74%;
}
@media screen and (max-width: 768px) {
  .p-product--detail .p-product__items {
    width: 100%;
  }
}
.p-product--detail .p-product__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
}
.p-product--detail .p-product__item-inner {
  min-width: 125px;
  min-width: 7.8125rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-product--detail .p-product__item-inner {
    min-height: 5.625rem;
  }
}

.p-product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 52px 52px;
  padding: 3.25rem 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-product__content {
    display: block;
    border-radius: 1.25rem;
    margin-top: 1.5625rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-product__img {
  width: 29%;
}
@media screen and (max-width: 768px) {
  .p-product__img {
    width: 18.75rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

.p-product__items {
  width: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 20px;
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-product__items {
    width: 100%;
    display: block;
    margin-top: 1.25rem;
  }
}

.p-product__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.625rem);
          flex: 0 1 calc(50% - 0.625rem);
}
@media screen and (max-width: 768px) {
  .p-product__item + .p-product__item {
    margin-top: 0.9375rem;
  }
}

.p-product__item-inner {
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 110px;
  min-height: 6.875rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product__item-inner {
    min-height: 5.625rem;
    padding: 0.9375rem 1.25rem;
  }
}
.p-product__item-inner::after {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  right: 1.125rem;
  background: url(../img/common/arrow_icon_002.png) no-repeat center/contain;
}
.p-product__item-inner:hover {
  opacity: 1;
}
.p-product__item-inner:hover .p-product__item-icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-product__item-inner:hover .p-product__item-text {
  color: #0058fa;
}

.p-product__item-icon {
  width: 51px;
  width: 3.1875rem;
  min-width: 51px;
  min-width: 3.1875rem;
}
.p-product__item-icon img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-product__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 19px;
  margin-left: 1.1875rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product__item-text {
    font-size: 1rem;
  }
}

/* p-qa */
.p-qa {
  background: #f3f3f3;
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-qa {
    padding: 3.75rem 0;
  }
}
.p-qa .c-btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-qa.u-white .c-accordion__item {
  background: #f3f3f3;
}

.p-qa__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-qa__inner {
    display: block;
  }
}

.p-qa__titles {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-qa__titles {
    width: 100%;
  }
}

.p-qa__body {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-qa__body {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

/* p-realization */
.p-realization {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-realization {
    padding: 3.75rem 0;
  }
}
.p-realization .c-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-realization .c-title {
    display: block;
  }
}
.p-realization .c-title span {
  display: block;
  max-width: 100%;
  margin-right: 14px;
  margin-right: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-realization .c-title span {
    margin: 0 auto;
  }
}

.p-realization__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  gap: 0 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-realization__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-realization__item {
  width: 350px;
  width: 21.875rem;
  max-width: 100%;
  border-radius: 1.25rem;
  padding: 35px 35px 50px;
  padding: 2.1875rem 2.1875rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-realization__item {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
  .p-realization__item + .p-realization__item {
    margin-top: 1.25rem;
  }
}

.p-realization__item-img img {
  border-radius: 0.9375rem;
}
.p-realization__item-img .icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: relative;
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-top: -20px;
  margin-top: -1.25rem;
}
.p-realization__item-img .icon span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-realization__item-img .icon span {
    font-size: 1.125rem;
  }
}
.p-realization__item-img .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #0099ff;
  border-radius: 50%;
  display: inline-block;
  z-index: 1;
}

.p-realization__item-text {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.34;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-realization__item-text {
    font-size: 1.25rem;
  }
}

/* p-reason */
.p-reason {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 3.75rem 0;
  }
}
.p-reason .c-entitle {
  text-align: center;
}
.p-reason .c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-reason .c-title {
    text-align: center;
    display: block;
  }
}
.p-reason .c-title span {
  display: inline-block;
  max-width: 100%;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-reason .c-title span {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
}

.p-reason__items {
  margin-top: 140px;
  margin-top: 8.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reason__items {
    margin-top: 5rem;
  }
}
.p-reason__items::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -115px;
  top: -7.1875rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-reason__items::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -4.375rem;
  }
}

.p-reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-reason__item {
    display: block;
  }
}
.p-reason__item + .p-reason__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
.p-reason__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-reason__item-body {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-reason__item-body {
    width: 100%;
  }
}

.p-reason__item-number {
  text-align: center;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  min-width: 100px;
  min-width: 6.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background: #0058fa;
  border-radius: 0.3125rem;
  padding: 6px 5px;
  padding: 0.375rem 0.3125rem;
}

.p-reason__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-reason__item-title {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}
.p-reason__item-title span {
  font-size: 32px;
  font-size: 2rem;
  color: #0058fa;
  line-height: 1.3;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-reason__item-title span {
    font-size: 1.5rem;
  }
}

.p-reason__item-text {
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reason__item-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.p-reason__item-btn {
  display: block;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  font-weight: 700;
  border-radius: 1.5625rem;
  border: 2px solid #212121;
  border: 0.125rem solid #212121;
  padding: 11px 34px;
  padding: 0.6875rem 2.125rem;
  background-color: #fff;
  margin-top: 45px;
  margin-top: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reason__item-btn {
    margin-top: 1.5625rem;
  }
}
.p-reason__item-btn::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 21px;
  right: 1.3125rem;
  background: url(../img/common/arrow_icon_001.png) no-repeat center/contain;
}

.p-reason__item-img {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-reason__item-img {
    width: 100%;
    margin-top: 1.5625rem;
  }
}
.p-reason__item-img img {
  border-radius: 0.9375rem;
}

/* p-scene-cards */
.p-scene-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 30px;
  gap: 1.5625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-scene-cards {
    display: block;
  }
}

.p-scene-cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.40625rem);
          flex: 0 1 calc(25% - 1.40625rem);
}
@media screen and (max-width: 768px) {
  .p-scene-cards__item + .p-scene-cards__item {
    margin-top: 1.25rem;
  }
}
.p-scene-cards__item .c-scene-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.p-scene-cards__item .c-scene-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}

/* p-scene */
.p-scene {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-scene {
    padding: 3.75rem 0;
  }
}

.p-scene__groups {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-scene__groups {
    margin-top: 1.5625rem;
  }
}

.p-scene__group + .p-scene__group {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-scene__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-scene__subtitle {
    font-size: 1.25rem;
  }
}

.p-scene__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 30px;
  gap: 1.875rem 1.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-scene__items {
    gap: 1.25rem 1.25rem;
  }
}

.p-scene__item {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .06);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .06);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 1.5rem);
          flex: 0 1 calc(20% - 1.5rem);
  padding: 27px 20px;
  padding: 1.6875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-scene__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.625rem);
            flex: 0 1 calc(50% - 0.625rem);
    padding: 1.5625rem 0.9375rem;
  }
}

.p-scene__item-icon {
  width: 122px;
  width: 7.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-scene__item-icon {
    width: 6.25rem;
  }
}

.p-scene__item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-scene__item-text {
    font-size: 0.9375rem;
  }
}

.p-scene__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 30px;
  gap: 1.875rem 1.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-scene__units {
    display: block;
  }
}

.p-scene__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .06);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .06);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.25rem);
          flex: 0 1 calc(33.333% - 1.25rem);
  padding: 25px 20px 25px 37px;
  padding: 1.5625rem 1.25rem 1.5625rem 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-scene__unit {
    padding: 1.25rem 1.25rem;
  }
  .p-scene__unit + .p-scene__unit {
    margin-top: 1.25rem;
  }
}

.p-scene__unit-icon {
  width: 122px;
  width: 7.625rem;
  min-width: 122px;
  min-width: 7.625rem;
}
@media screen and (max-width: 768px) {
  .p-scene__unit-icon {
    width: 5.625rem;
    min-width: 5.625rem;
  }
}

.p-scene__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 23px;
  margin-left: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-scene__unit-text {
    font-size: 1rem;
  }
}
.p-scene__unit-text span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-scene__unit-text span {
    font-size: 1.125rem;
  }
}

/* p-scenery */
.p-scenery {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-scenery {
    padding: 3.75rem 0;
  }
}
.p-scenery .l-btn {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-scenery .l-btn {
    margin-top: 2.5rem;
  }
}
.p-scenery .p-slide {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin: 0 auto;
}
.p-scenery .p-offer:first-child {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-scenery .p-offer:first-child {
    margin-bottom: 3.75rem;
  }
}
.p-scenery .p-offer:last-child {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-scenery .p-offer:last-child {
    margin-top: 3.75rem;
  }
}
.p-scenery .p-offer .l-btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* p-seminar */
.p-seminar {
  padding: 120px 0 80px;
  padding: 7.5rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .p-seminar {
    padding: 5rem 0 3.75rem;
  }
}
.p-seminar .c-entitle {
  text-align: center;
  color: #0058fa;
}
.p-seminar .c-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-seminar .c-title {
    display: block;
  }
}
.p-seminar .c-title span {
  display: block;
  width: 298px;
  width: 18.625rem;
  max-width: 100%;
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-seminar .c-title span {
    width: 12.5rem;
    margin: 0 auto;
  }
}

.p-seminar__body {
  background: #333;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 55px 0 80px;
  padding: 3.4375rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-seminar__body {
    margin-top: 2.5rem;
    padding: 2.5rem 0 4.0625rem;
  }
}
.p-seminar__body::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -55px;
  top: -3.4375rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-seminar__body::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -1.875rem;
  }
}
.p-seminar__body .c-btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -35px;
  bottom: -2.1875rem;
}

.p-seminar__subtitle {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-seminar__subtitle {
    font-size: 1.25rem;
  }
}

.p-seminar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  gap: 0 3.75rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-seminar__items {
    display: block;
  }
}

.p-seminar__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.875rem);
          flex: 0 1 calc(50% - 1.875rem);
}
@media screen and (max-width: 768px) {
  .p-seminar__item + .p-seminar__item {
    margin-top: 1.25rem;
  }
}

.p-seminar__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.25rem;
  padding: 35px 40px 25px 42px;
  padding: 2.1875rem 2.5rem 1.5625rem 2.625rem;
  background: #fff;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-seminar__item-inner {
    display: block;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.p-seminar__item-inner::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  right: 10px;
  right: 0.625rem;
  bottom: 15px;
  bottom: 0.9375rem;
  background: url(../img/common/arrow_icon_006.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-seminar__item-inner:hover {
  opacity: 1;
  background: #0058fa;
}
.p-seminar__item-inner:hover::after {
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
.p-seminar__item-inner:hover .p-seminar__item-time,
.p-seminar__item-inner:hover .p-seminar__item-place {
  color: #f3f3f3;
}
.p-seminar__item-inner:hover .p-seminar__item-title,
.p-seminar__item-inner:hover .p-seminar__item-text {
  color: #fff;
}

.p-seminar__item-icon {
  width: 105px;
  width: 6.5625rem;
  min-width: 105px;
  min-width: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .p-seminar__item-icon {
    width: 5.625rem;
    min-width: 5.625rem;
    margin: 0 auto;
  }
}

.p-seminar__item-body {
  margin-left: 37px;
  margin-left: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-seminar__item-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-seminar__item-time {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #999;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-seminar__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-seminar__item-title {
    font-size: 1.125rem;
  }
}

.p-seminar__item-text {
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-top: 0.3125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-seminar__item-place {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-seminar__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 80px;
  margin-top: 5rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-seminar__text {
    font-size: 1.125rem;
    margin-top: 3.75rem;
  }
}

.p-seminar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 630px;
  width: 39.375rem;
  max-width: 100%;
  background: #94bcfd;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  padding: 25px 37px;
  padding: 1.5625rem 2.3125rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-seminar__link {
    display: block;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.p-seminar__link::after {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-seminar__link::after {
    width: 1.5625rem;
    height: 1.5625rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}
.p-seminar__link:hover {
  background: #0058fa;
  opacity: 1;
}
.p-seminar__link:hover .p-seminar__link-text,
.p-seminar__link:hover .p-seminar__link-title {
  color: #fff;
}

.p-seminar__link-icon {
  width: 92px;
  width: 5.75rem;
  min-width: 92px;
  min-width: 5.75rem;
}
@media screen and (max-width: 768px) {
  .p-seminar__link-icon {
    margin: 0 auto;
  }
}

.p-seminar__link-body {
  margin-left: 21px;
  margin-left: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-seminar__link-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-seminar__link-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-seminar__link-title {
    font-size: 1.25rem;
  }
}

.p-seminar__link-text {
  margin-top: 5px;
  margin-top: 0.3125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* p-sidebar */
.p-sidebar__group + .p-sidebar__group {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-sidebar__banner {
  display: block;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-sidebar__banner + .p-sidebar__banner {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-sidebar__banner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.p-sidebar__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-sidebar__subtitle {
    font-size: 1.5rem;
  }
}

.p-sidebar__items {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sidebar__item {
  border-bottom: 1px solid #aaa;
  border-bottom: 0.0625rem solid #aaa;
}

.p-sidebar__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 6px;
  padding: 0.9375rem 0.375rem;
}
.p-sidebar__item-inner:hover {
  opacity: 1;
}
.p-sidebar__item-inner:hover .p-sidebar__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-sidebar__item-inner:hover .p-sidebar__item-title {
  color: #0058fa;
}

.p-sidebar__item-img {
  width: 40%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-sidebar__item-img img {
  border-radius: 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-sidebar__item-title {
  width: 56%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-sidebar__list {
  border-top: 1px solid #aaa;
  border-top: 0.0625rem solid #aaa;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sidebar__list-item {
  border-bottom: 1px solid #aaa;
  border-bottom: 0.0625rem solid #aaa;
}
.p-sidebar__list-item a {
  display: block;
  font-weight: 700;
  color: #333;
  padding: 15px 25px 15px 10px;
  padding: 0.9375rem 1.5625rem 0.9375rem 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.p-sidebar__list-item a::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  right: 0.9375rem;
  background: url(../img/common/arrow_icon_001.png) no-repeat center/contain;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.p-sidebar__list-item a:hover {
  opacity: 1;
  color: #0058fa;
}
.p-sidebar__list-item a:hover::after {
  right: 0;
}

.p-sidebar__links {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-sidebar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 154px;
  min-height: 9.625rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  padding: 20px 24px 20px 15px;
  padding: 1.25rem 1.5rem 1.25rem 0.9375rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.p-sidebar__link::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  right: 14px;
  right: 0.875rem;
  bottom: 14px;
  bottom: 0.875rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
.p-sidebar__link + .p-sidebar__link {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-sidebar__link:first-child {
  background: #efefef;
}
.p-sidebar__link:nth-child(2) {
  background: #94bcfd;
}
.p-sidebar__link:hover {
  opacity: 1;
  background: #0058fa;
  color: #fff;
}

.p-sidebar__link-icon {
  width: 100px;
  width: 6.25rem;
  min-width: 100px;
  min-width: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-sidebar__link-icon {
    width: 5rem;
    min-width: 5rem;
  }
}

.p-sidebar__link-body {
  margin-left: 14px;
  margin-left: 0.875rem;
}

.p-sidebar__link-subtitle {
  font-weight: 500;
}

.p-sidebar__link-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-sidebar__link-title {
    font-size: 1.25rem;
  }
}

/* p-single */
.p-single__box {
  background: #f3f3f3;
  border-radius: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 50px 50px;
  padding: 3.125rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-single__box-logo {
  position: absolute;
  top: 35px;
  top: 2.1875rem;
  right: 35px;
  right: 2.1875rem;
  width: 231px;
  width: 14.4375rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-single__box-logo {
    position: static;
    width: 12.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-single__box-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #0058fa;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-single__box-title {
    font-size: 1.25rem;
  }
}

.p-single__box-text {
  line-height: 1.75;
  color: #333;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single__box-text {
    font-size: 0.9375rem;
  }
}
.p-single__box-text a {
  display: inline-block;
  color: #0058fa;
}

.p-single__banner {
  display: block;
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-single__banner {
    margin-top: 2.5rem;
  }
}
.p-single__banner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.p-single__body {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-single__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  gap: 0 3.75rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single__links {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-single__link {
  display: block;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.875rem);
          flex: 0 1 calc(50% - 1.875rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-single__link + .p-single__link {
    margin-top: 1.25rem;
  }
}
.p-single__link:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* p-slide */
.p-slide {
  background: #333;
  border-radius: 1.25rem;
  padding: 55px 0 110px;
  padding: 3.4375rem 0 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-slide {
    padding: 2.5rem 0;
  }
}

.p-slide__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-slide__title {
    font-size: 1.25rem;
  }
}

.p-slide__imgs {
  display: none;
  margin: 2.1875rem calc(50% - 50vw) 0;
}
@media screen and (max-width: 768px) {
  .p-slide__imgs {
    margin-top: 1.25rem;
  }
}
.p-slide__imgs.slick-initialized {
  display: block;
}

.p-slide__img {
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-slide__img {
    margin: 0 0.625rem;
  }
}
.p-slide__img img {
  border-radius: 1.25rem;
}

.p-slide__items {
  display: none;
  margin: 0.9375rem calc(50% - 50vw) 0;
  position: relative;
}
.p-slide__items.slick-initialized {
  display: block;
}
.p-slide__items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-slide__items .slick-track {
    padding: 0.625rem 0;
  }
}
.p-slide__items .slick-slide {
  height: auto !important;
}
.p-slide__items.boxshadow .p-slide__item {
  -webkit-box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, .1);
  border-radius: 1.25rem;
}

.p-slide__item {
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-slide__item {
    margin: 0 0.625rem;
  }
}

.p-slide__item-inner {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  padding: 40px 20px 50px;
  padding: 2.5rem 1.25rem 3.125rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-slide__item-inner {
    padding: 1.875rem 0.9375rem;
  }
}
.p-slide__item-inner::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: url(../img/common/arrow_icon_006.png) no-repeat center/contain;
  right: 16px;
  right: 1rem;
  bottom: 16px;
  bottom: 1rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-slide__item-inner:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-slide__item-inner:hover::after {
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
.p-slide__item-inner:hover .p-slide__item-title {
  color: #0058fa;
}

.p-slide__item-icon {
  width: 122px;
  width: 7.625rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-slide__item-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-slide__item-title {
    font-size: 1.25rem;
  }
}

.p-slide__item-text {
  line-height: 1.75;
  padding: 0 30px;
  padding: 0 1.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-slide__item-text {
    font-size: 0.9375rem;
    padding: 0;
  }
}

.p-slide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: block;
  width: 76px;
  width: 4.75rem;
  height: 76px;
  height: 4.75rem;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-slide__arrow {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.p-slide__arrow:hover {
  opacity: 1;
}

.p-slide__prev {
  background: url(../img/common/prev_icon_001.png) no-repeat center/contain;
  left: 14%;
}
@media screen and (max-width: 768px) {
  .p-slide__prev {
    left: 5%;
  }
}
.p-slide__prev:hover {
  background: url(../img/common/prev_icon_002.png) no-repeat center/contain;
}

.p-slide__next {
  background: url(../img/common/next_icon_001.png) no-repeat center/contain;
  right: 14%;
}
@media screen and (max-width: 768px) {
  .p-slide__next {
    right: 5%;
  }
}
.p-slide__next:hover {
  background: url(../img/common/next_icon_002.png) no-repeat center/contain;
}

/* p-slider */
.p-slider__cards {
  margin-left: -15px;
  margin-left: -0.9375rem;
  margin-right: calc(50% - 50vw);
  display: none;
}
@media screen and (max-width: 768px) {
  .p-slider__cards {
    margin-left: -0.625rem;
  }
}
.p-slider__cards.slick-initialized {
  display: block;
}
.p-slider__cards .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  padding: 1.25rem 0;
}
.p-slider__cards .slick-slide {
  height: auto !important;
}
.p-slider__cards .c-card {
  margin: 0 15px;
  margin: 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-slider__cards .c-card {
    margin: 0 0.625rem;
  }
}
.p-slider__cards .c-card__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(33, 33, 33, .42);
          box-shadow: 0 0 18.8px 1.2px rgba(33, 33, 33, .42);
}
.p-slider__cards .c-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-slider__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-slider__footer {
    margin-top: 1.25rem;
  }
}

.p-slider__progress {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  background: #333;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-slider__progress-bar {
  max-width: 100%;
  height: 2px;
  height: 0.125rem;
  background: #0058fa;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.p-slider__arrow {
  display: block;
  width: 76px;
  width: 4.75rem;
  min-width: 76px;
  min-width: 4.75rem;
  height: 76px;
  height: 4.75rem;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-slider__arrow {
    width: 3.125rem;
    min-width: 3.125rem;
    height: 3.125rem;
  }
}
.p-slider__arrow:hover {
  opacity: 1;
}

.p-slider__prev {
  background: url(../img/common/prev_icon_001.png) no-repeat center/contain;
  margin-left: auto;
}
.p-slider__prev:hover {
  background: url(../img/common/prev_icon_002.png) no-repeat center/contain;
}

.p-slider__next {
  background: url(../img/common/next_icon_001.png) no-repeat center/contain;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-slider__next {
    margin-left: 0.625rem;
  }
}
.p-slider__next:hover {
  background: url(../img/common/next_icon_002.png) no-repeat center/contain;
}

/* p-support */
.p-support {
  padding: 115px 0 120px;
  padding: 7.1875rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-support {
    padding: 3.75rem 0;
  }
}

.p-support__text {
  line-height: 1.75;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-support__text {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.p-support__items {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-support__items {
    margin-top: 1.5625rem;
  }
}

.p-support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-support__item {
    display: block;
  }
}
.p-support__item + .p-support__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-support__item-img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .p-support__item-img {
    width: 100%;
  }
}
.p-support__item-img img {
  border-radius: 1.25rem;
}

.p-support__item-body {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .p-support__item-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-support__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-support__item-title {
    font-size: 1.125rem;
  }
}

.p-support__item-text {
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-support__item-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

/* p-system */
.p-system {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-system {
    padding: 3.75rem 0;
  }
}

.p-system__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px 24px;
  gap: 2.25rem 1.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-system__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-system__item {
  min-height: 400px;
  min-height: 25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.125rem);
          flex: 0 1 calc(25% - 1.125rem);
  background: #fff;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
  border-radius: 1.25rem;
  padding: 35px 10px 20px;
  padding: 2.1875rem 0.625rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-system__item {
    min-height: unset;
    padding: 1.875rem 1.25rem;
  }
  .p-system__item + .p-system__item {
    margin-top: 1.25rem;
  }
}

.p-system__item-img {
  width: 193px;
  width: 12.0625rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-system__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-system__item-title {
    font-size: 1.125rem;
  }
}

.p-system__item-text {
  line-height: 1.75;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-system__item-text {
    font-size: 0.9375rem;
    padding: 0;
  }
}
.p-system__item-text > span {
  font-weight: 700;
}

/* p-tool */
.p-tool {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-tool {
    padding: 3.75rem 0;
  }
}

.p-tool__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
}
@media screen and (max-width: 768px) {
  .p-tool__content {
    display: block;
  }
}

.p-tool__img-wrapper {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 1.25rem 0 0 1.25rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-tool__img-wrapper {
    width: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.p-tool__img {
  width: 336px;
  width: 21rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-tool__logo {
  max-width: 100%;
  margin: 23px auto 0;
  margin: 1.4375rem auto 0;
}

.p-tool__body {
  width: 65%;
  border-radius: 0 1.25rem 1.25rem 0;
  padding: 50px 55px 60px 65px;
  padding: 3.125rem 3.4375rem 3.75rem 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-tool__body {
    width: 100%;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-tool__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-tool__subtitle {
    font-size: 1rem;
  }
}
.p-tool__subtitle span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-tool__subtitle span {
    font-size: 1.5rem;
  }
}

.p-tool__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-tool__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.p-tool__title span {
  color: #0058fa;
}

.p-tool__text {
  line-height: 1.75;
  color: #333;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-tool__text {
    font-size: 0.9375rem;
  }
}

.p-tool__btn-wrapper {
  text-align: right;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-tool__btn {
  text-align: center;
  display: inline-block;
  width: 164px;
  width: 10.25rem;
  border-radius: 1.0625rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #212121;
  border: 0.125rem solid #212121;
  background: #212121;
  padding: 5px 10px 6px;
  padding: 0.3125rem 0.625rem 0.375rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.p-tool__btn::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  right: 0.625rem;
  background: url(../img/common/arrow_icon_009.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-tool__btn:hover {
  background: #fff;
  color: #212121;
  opacity: 1;
}
.p-tool__btn:hover::after {
  background: url(../img/common/arrow_icon_001.png) no-repeat center/contain;
}

/* p-try */
.p-try__content {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  margin: 0 auto;
  padding: 75px 20px 60px;
  padding: 4.6875rem 1.25rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-try__content {
    padding: 2.5rem 1.25rem;
  }
}

.p-try__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-try__title {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.p-try__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  width: 4.375rem;
  min-width: 70px;
  min-width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  font-size: 24px;
  font-size: 1.5rem;
  border-radius: 50%;
  border: 1px solid #0058fa;
  border: 0.0625rem solid #0058fa;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-try__title span {
    width: 3.125rem;
    min-width: 3.125rem;
    height: 3.125rem;
    font-size: 1.125rem;
    margin-right: 0.625rem;
  }
}

.p-try__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-try__text {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.p-try__box {
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
  border-radius: 0.9375rem;
  background: #f3f3f3;
  padding: 35px 20px 30px;
  padding: 2.1875rem 1.25rem 1.875rem;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-try__box {
    padding: 1.875rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-try__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 110px;
  gap: 0 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-try__items {
    display: block;
  }
}

.p-try__item + .p-try__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-try__item + .p-try__item {
    margin-top: 4.375rem;
  }
}
.p-try__item + .p-try__item::before {
  position: absolute;
  content: "";
  width: 54px;
  width: 3.375rem;
  height: 18px;
  height: 1.125rem;
  top: 70px;
  top: 4.375rem;
  left: -80px;
  left: -5rem;
  background: url(../img/common/arrow_icon_008.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-try__item + .p-try__item::before {
    width: 2.5rem;
    height: 0.875rem;
    left: 50%;
    top: -2.8125rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.p-try__item-img {
  width: 160px;
  width: 10rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-try__item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-try__item-title {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.p-try__item-text {
  text-align: center;
  color: #333;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-try__item-text {
    font-size: 0.9375rem;
  }
}

.p-try__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-try__subtitle {
    font-size: 1.25rem;
  }
}

.p-try__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-try__list {
    display: block;
  }
}

.p-try__list-item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 256px;
  width: 16rem;
  max-width: 100%;
  min-height: 120px;
  min-height: 7.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-try__list-item {
    width: 100%;
    font-size: 1rem;
    min-height: 5rem;
  }
}
.p-try__list-item + .p-try__list-item {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-try__list-item + .p-try__list-item {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.p-try__list-item:first-child {
  background: #6095f6;
}
.p-try__list-item:nth-child(2) {
  background: #3b7ef9;
}
.p-try__list-item:nth-child(3) {
  background: #0058fa;
}

/* p-usage */
.p-usage {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-usage {
    padding: 3.75rem 0;
  }
}
.p-usage .c-entitle, .p-usage .c-title {
  text-align: center;
}
.p-usage .l-inner {
  max-width: 1250px;
  max-width: 78.125rem;
}

.p-usage__slide {
  margin-top: 90px;
  margin-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-usage__slide {
    margin-top: 3.125rem;
  }
}
.p-usage__slide::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -50px;
  top: -3.125rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-usage__slide::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -1.875rem;
  }
}

/* p-voice */
.p-voice {
  padding: 40px 0 135px;
  padding: 2.5rem 0 8.4375rem;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 3.75rem 0;
  }
}
.p-voice .c-entitle, .p-voice .c-title {
  text-align: center;
}
.p-voice .l-inner {
  max-width: 1110px;
  max-width: 69.375rem;
}

.p-voice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
  gap: 1.875rem 2.5rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-voice__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  padding: 48px 50px 48px 40px;
  padding: 3rem 3.125rem 3rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-voice__item {
    display: block;
    padding: 1.875rem 1.25rem;
  }
  .p-voice__item + .p-voice__item {
    margin-top: 1.25rem;
  }
}

.p-voice__item-icon {
  width: 101px;
  width: 6.3125rem;
  min-width: 101px;
  min-width: 6.3125rem;
}
@media screen and (max-width: 768px) {
  .p-voice__item-icon {
    margin: 0 auto;
  }
}

.p-voice__item-text {
  line-height: 1.75;
  color: #333;
  margin-left: 27px;
  margin-left: 1.6875rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 768px) {
  .p-voice__item-text {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

/* p-company */
.p-company__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__cards {
    margin-top: 1.5625rem;
  }
}
.p-company__cards .c-card__inner::after {
  right: 22px;
  right: 1.375rem;
  bottom: 30px;
  bottom: 1.875rem;
}
.p-company__cards .c-card__body {
  min-height: unset;
  padding: 22px 15px 26px;
  padding: 1.375rem 0.9375rem 1.625rem;
}
.p-company__cards .c-card__title {
  margin-bottom: 0;
}

/* p-contact */
/* p-archive-download */
.p-archive-download .c-anchor__item {
  /* 3col */
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.3333% - 0.83333rem);
          flex: 0 1 calc(33.3333% - 0.83333rem);
}

.p-archive-download__unit + .p-archive-download__unit {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-download__unit + .p-archive-download__unit {
    margin-top: 3.75rem;
  }
}

.p-archive-download__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-download__cards {
    margin-top: 1.5625rem;
  }
}

/* p-faq */
.p-faq .c-title {
  text-align: center;
}
.p-faq .c-accordion {
  width: 1000px;
  width: 62.5rem;
  max-width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-faq .c-accordion {
    margin-top: 1.5625rem;
  }
}

.p-faq__unit + .p-faq__unit {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-faq__unit + .p-faq__unit {
    margin-top: 3.75rem;
  }
}

.p-faq .c-anchor__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 1rem);
          flex: 0 1 calc(20% - 1rem);
}
.p-faq .c-anchor__item-body {
  min-height: 100px;
  min-height: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-faq .c-anchor__item-body {
    min-height: 5rem;
  }
}

/* p-feature */
.p-feature-sec {
  padding-block: 100px;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-feature-sec {
    padding-block: 3.75rem;
  }
}

/* p-feature-misson */
.p-feature-misson__ttl {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-block: 0.5em 40px;
  margin-block: 0.5em 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-misson__ttl {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-feature-misson__ttl > span {
  color: #0058fa;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-misson__ttl > span {
    font-size: 1.5rem;
  }
}
.p-feature-misson__img {
  max-width: 816px;
  max-width: 51rem;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}
.p-feature-misson__img img {
  width: 100%;
}

/* p-feature-message */
.p-feature-message {
  background-color: #f3f3f3;
}
.p-feature-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-feature-message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}
.p-feature-message__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-feature-message__txt {
    width: 100%;
  }
}
.p-feature-message__ttl {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-feature-message__ttl {
    font-size: 1.25rem;
  }
}
.p-feature-message__ttl > span {
  color: #0058fa;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-message__ttl > span {
    font-size: 1.5rem;
  }
}
.p-feature-message__msg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-feature-message__msg {
    font-size: 0.9375rem;
  }
}
.p-feature-message__msg + .p-feature-message__msg {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-feature-message__img {
  -webkit-box-flex: 55%;
      -ms-flex: 55% 1 0px;
          flex: 55% 1 0;
  max-width: 816px;
  max-width: 51rem;
  margin: 120px auto 0;
  margin: 7.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-feature-message__img {
    width: 100%;
    margin-top: 0;
  }
}
.p-feature-message__img img {
  width: 100%;
}

/* p-feature-about */
.p-feature-about__ttl {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-block: 0.5em 40px;
  margin-block: 0.5em 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-about__ttl {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-feature-about__ttl > span {
  color: #0058fa;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-about__ttl > span {
    font-size: 1.5rem;
  }
}
.p-feature-about__img {
  max-width: 1200px;
  max-width: 75rem;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}
.p-feature-about__img img {
  width: 100%;
}

/* p-feature-service */
.p-feature-service {
  padding: 270px 0 180px;
  padding: 16.875rem 0 11.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-feature-service {
    padding: 5rem 0 3.75rem;
  }
}
.p-feature-service::before {
  position: absolute;
  content: "";
  width: 1280px;
  width: 80rem;
  height: 1280px;
  height: 80rem;
  border-radius: 50%;
  background: #0058fa;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-feature-service::before {
    width: 87.5rem;
    height: 87.5rem;
  }
}
.p-feature-service .l-inner {
  max-width: 1440px;
  max-width: 90rem;
}
.p-feature-service .c-entitle {
  text-align: center;
  color: #aec1fa;
}
.p-feature-service .c-title {
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}
.p-feature-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-service__items {
    display: block;
  }
}
.p-feature-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.9375rem);
          flex: 0 1 calc(50% - 0.9375rem);
}
@media screen and (max-width: 768px) {
  .p-feature-service__item + .p-feature-service__item {
    margin-top: 1.25rem;
  }
}
.p-feature-service__item:first-child .p-feature-service__item-logo {
  width: 502px;
  width: 31.375rem;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item:first-child .p-feature-service__item-logo {
    width: 25rem;
  }
}
.p-feature-service__item:nth-child(2) .p-feature-service__item-logo {
  width: 289px;
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item:nth-child(2) .p-feature-service__item-logo {
    width: 12.5rem;
  }
}
.p-feature-service__item-inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.p-feature-service__item-inner::after {
  position: absolute;
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
  right: 19px;
  right: 1.1875rem;
  bottom: 19px;
  bottom: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item-inner::after {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}
.p-feature-service__item-inner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-feature-service__item-inner:hover .p-feature-service__item-text {
  color: #0058fa;
}
.p-feature-service__item .p-feature-service__item-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 34px 40px 24px;
  padding: 2.125rem 2.5rem 1.5rem;
}
.p-feature-service__item-img {
  width: 336px;
  width: 21rem;
  max-width: 100%;
  margin: 0 auto;
}
.p-feature-service__item-body {
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 25px 32px 45px;
  padding: 1.5625rem 2rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item-body {
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}
.p-feature-service__item-text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item-text {
    font-size: 1rem;
  }
}
.p-feature-service__item .p-feature-service__item-logo {
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-feature-service__item .p-feature-service__item-logo {
    margin-top: 1.25rem;
  }
}

/* p-feature-reason */
.p-feature-reason {
  background: #f3f3f3;
  padding: 100px 0 80px;
  padding: 6.25rem 0 5rem;
}
.p-feature-reason__img {
  width: 40%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-feature-reason__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.p-feature-reason__item {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature-reason__item {
    gap: 1.25rem 0;
  }
}

.p-media__infolist {
  position: relative;
  padding-block: 24px;
  padding-block: 1.5rem;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .p-media__infolist {
    padding-block: 1.125rem;
    padding-left: 1.5rem;
  }
}
.p-media__infolist::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #f3f3f3;
  bottom: 0;
  left: 0;
}
.p-media__infolist-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-media__infolist-ttl {
    font-size: 1rem;
  }
}
.p-media__infolist-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  left: -1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #0058fa;
}
.p-media__infolist-cont {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-media__infolist-cont {
    font-size: 0.75rem;
  }
}
.p-media__infolist-cont span {
  display: inline-block;
  padding: 0.1em 0.75em;
  margin-right: 0.5em;
  background-color: #f3f3f3;
}
.p-media__infolist-cont span + span {
  margin-left: 1.5em;
}

/* p-archive-news */
.p-archive-news {
  padding-top: 20px;
  padding-top: 1.25rem;
}

/* p-single-news */
.p-single-news__content {
  width: 1100px;
  width: 68.75rem;
  max-width: 100%;
  background: #fff;
  border-radius: 1.875rem;
  margin: 0 auto;
  padding: 85px 80px 80px;
  padding: 5.3125rem 5rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__content {
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-single-news__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-news__title {
    font-size: 1.5rem;
  }
}

.p-single-news__post {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__post {
    margin-top: 2.5rem;
  }
}
.p-single-news__post h2,
.p-single-news__post h3,
.p-single-news__post h4,
.p-single-news__post h5,
.p-single-news__post h6 {
  font-weight: 700;
  margin: 0;
}
.p-single-news__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 35px;
  padding-left: 2.1875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-news__post h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }
}
.p-single-news__post h2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  top: 1rem;
  width: 18px;
  width: 1.125rem;
  height: 3px;
  height: 0.1875rem;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-news__post h2::before {
    top: 0.875rem;
    width: 0.75rem;
  }
}
.p-single-news__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__post h3 {
    font-size: 1.125rem;
  }
}
.p-single-news__post h4,
.p-single-news__post h5,
.p-single-news__post h6 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__post h4,
  .p-single-news__post h5,
  .p-single-news__post h6 {
    font-size: 1rem;
  }
}
.p-single-news__post p {
  line-height: 1.75;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-single-news__post p {
    font-size: 0.9375rem;
  }
}
.p-single-news__post p:not(:last-child) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
.p-single-news__post p a {
  color: #0058fa;
  word-break: break-all;
}
.p-single-news__post figure:not(:last-child),
.p-single-news__post ul:not(:last-child),
.p-single-news__post ol:not(:last-child) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
.p-single-news__post li {
  padding-left: 1em;
  position: relative;
}
.p-single-news__post li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-single-news__post .section {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__post .section {
    margin-top: 2.5rem;
  }
}
.p-single-news__post .news_ditail_table {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
  border-collapse: collapse;
}
.p-single-news__post .news_ditail_table th,
.p-single-news__post .news_ditail_table td {
  padding: 5px 10px;
  border: 1px solid;
}
.p-single-news__post .news_ditail_table th {
  min-width: 6em;
}
.p-single-news__post .news_ditail_table a {
  color: #0058fa;
  word-break: break-all;
}

/* p-archive-scene */
.p-archive-scene__unit + .p-archive-scene__unit {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-scene__unit + .p-archive-scene__unit {
    margin-top: 3.75rem;
  }
}

.p-archive-scene__text {
  line-height: 1.75;
  color: #333;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-archive-scene__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-archive-scene__category {
  background: #fff;
  margin: 45px 0 70px;
  margin: 2.8125rem 0 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-scene__category {
    margin: 2.5rem 0 3.75rem;
  }
}

.p-archive-scene__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-scene__cards {
    margin-top: 1.5625rem;
  }
}

/* p-single-scene */
.p-single-scene {
  background-color: #f3f3f3;
}
.p-single-scene.pb72 {
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene.pb72 {
    padding-bottom: 2.5rem;
  }
}

.p-single-scene__content {
  background: #fff;
  border-radius: 1.875rem;
  padding: 75px 110px 120px;
  padding: 4.6875rem 6.875rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__content {
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-single-scene__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-single-scene__header {
    display: block;
  }
}

.p-single-scene__icon {
  width: 120px;
  width: 7.5rem;
  min-width: 120px;
  min-width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__icon {
    width: 6.25rem;
    min-width: 6.25rem;
    margin: 0 auto;
  }
}

.p-single-scene__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 32px;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__title {
    font-size: 1.5rem;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-single-scene__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 35px;
  padding-left: 2.1875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }
}
.p-single-scene__post h2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  top: 1rem;
  width: 18px;
  width: 1.125rem;
  height: 3px;
  height: 0.1875rem;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post h2::before {
    top: 0.875rem;
    width: 0.75rem;
  }
}
.p-single-scene__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-single-scene__post h3:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post h3 {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
  }
}
.p-single-scene__post p {
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post p {
    font-size: 0.9375rem;
  }
}
.p-single-scene__post p:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post p:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.p-single-scene__post a {
  color: #0058fa;
}
.p-single-scene__post figure:not(:last-child),
.p-single-scene__post ul:not(:last-child),
.p-single-scene__post ol:not(:last-child) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
.p-single-scene__post li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post li {
    padding-left: 0;
  }
}
.p-single-scene__post .effect li {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f2f2f2;
  vertical-align: middle;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .effect li {
    padding-left: 0;
  }
}
.p-single-scene__post .effect li:last-child {
  margin-bottom: 0;
  border: none;
}
.p-single-scene__post .effect li > span {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: #0058fa;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  margin-right: 0.75em;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .effect li > span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    margin-right: 0.5em;
  }
}
.p-single-scene__post .effect li > p, .p-single-scene__post .effect li > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-single-scene__post .scene_post-feature {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature {
    margin-top: 2.5rem;
  }
}
.p-single-scene__post .scene_post-feature__item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding: 60px 100px;
  padding: 3.75rem 6.25rem;
  position: relative;
  border-radius: 1.25rem;
  background: #f3f3f3;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__item {
    padding: 2.5rem 1.25rem;
  }
}
.p-single-scene__post .scene_post-feature__item + .p-single-scene__post .scene_post-feature__item {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__item + .p-single-scene__post .scene_post-feature__item {
    margin-top: 1.25rem;
  }
}
.p-single-scene__post .scene_post-feature__item-title {
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 0 !important;
  padding-top: 20px;
  padding-top: 1.25rem;
  color: #333 !important;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__item-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-top: 0 !important;
    padding-top: 0.625rem;
  }
}
.p-single-scene__post .scene_post-feature__item-subtext {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
  background: #6095f6;
  border-radius: 0 1.25rem 0 0.625rem;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__item-subtext {
    font-size: 0.9375rem;
    padding: 0.625rem 0.9375rem;
  }
}
.p-single-scene__post .scene_post-feature__3col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__3col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-single-scene__post .scene_post-feature__3col > dd {
  width: calc(33.333% - 1rem);
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_post-feature__3col > dd {
    width: 100%;
  }
  .p-single-scene__post .scene_post-feature__3col > dd + .p-single-scene__post .scene_post-feature__3col > dd {
    margin-top: 1.25rem;
  }
}
.p-single-scene__post .scene_post-feature__3col > dd dt {
  text-align: center;
  margin-top: 0.25em;
  font-weight: 700;
}
.p-single-scene__post .scene_c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
  gap: 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_c-card {
    gap: 1.875rem 0;
  }
}
.p-single-scene__post .scene_c-card .c-card {
  width: calc(33.33333% - 1.66667rem);
}
@media screen and (max-width: 768px) {
  .p-single-scene__post .scene_c-card .c-card {
    width: 100%;
  }
}

.p-single-scene__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__items {
    display: block;
  }
}

.p-single-scene__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.66667rem);
          flex: 0 1 calc(33.333% - 1.66667rem);
}
@media screen and (max-width: 768px) {
  .p-single-scene__item + .p-single-scene__item {
    margin-top: 1.875rem;
  }
}

.p-single-scene__item-img img {
  border-radius: 1.25rem;
}

.p-single-scene__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__item-title {
    font-size: 1.125rem;
  }
}

.p-single-scene__item-text {
  color: #333;
  line-height: 1.75;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__item-text {
    font-size: 0.9375rem;
  }
}

.p-single-scene__item-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-single-scene__item-list li {
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-scene__item-list li {
    font-size: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.p-single-scene__item-list li:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-single-scene__item-list li::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  left: 0;
  top: 8px;
  top: 0.5rem;
  border-radius: 50%;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-scene__item-list li::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-single-scene__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__units {
    display: block;
  }
}

.p-single-scene__unit {
  background: #f3f3f3;
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.66667rem);
          flex: 0 1 calc(33.333% - 1.66667rem);
  padding: 50px 45px 30px 40px;
  padding: 3.125rem 2.8125rem 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__unit {
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem;
  }
  .p-single-scene__unit + .p-single-scene__unit {
    margin-top: 1.25rem;
  }
}

.p-single-scene__unit-icon {
  width: 52px;
  width: 3.25rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-single-scene__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__unit-title {
    font-size: 1.25rem;
  }
}

.p-single-scene__unit-company {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
  margin-bottom: 12px !important;
  margin-bottom: 0.75rem !important;
}
@media screen and (max-width: 768px) {
  .p-single-scene__unit-company {
    font-size: 1.125rem;
  }
}

.p-single-scene__unit-text {
  line-height: 1.75;
  color: #333;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__unit-text {
    font-size: 0.9375rem;
  }
}

.p-single-scene__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
  gap: 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__cards {
    display: block;
  }
}

.p-single-scene__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f3f3f3;
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  padding: 43px 55px 43px 40px;
  padding: 2.6875rem 3.4375rem 2.6875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__card {
    display: block;
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem;
  }
  .p-single-scene__card + .p-single-scene__card {
    margin-top: 1.25rem;
  }
}

.p-single-scene__card-icon {
  width: 101px;
  width: 6.3125rem;
  min-width: 101px;
  min-width: 6.3125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__card-icon {
    margin: 0 auto;
  }
}

.p-single-scene__card-text {
  line-height: 1.75;
  color: #333;
  margin-left: 27px;
  margin-left: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single-scene__card-text {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-single-scene__lead-ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 0.5em;
  margin-block: 20px 16px;
  margin-block: 1.25rem 1rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-single-scene__lead-ttl {
    font-size: 1.125rem;
  }
}
.p-single-scene__lead-ttl::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 1em;
  background: #0058fa;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-single-scene__lead-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .p-single-scene__lead-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}
.p-single-scene__lead-list > li {
  width: calc(33.3% - 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f3f3f3;
  border-radius: 1rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .p-single-scene__lead-list > li {
    width: 100%;
  }
  .p-single-scene__lead-list > li + .p-single-scene__lead-list > li {
    margin-top: 1.25rem;
  }
}
.p-single-scene__lead-list > li .icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: relative;
  display: grid;
  place-items: center;
  margin-right: 10px;
  margin-right: 0.625rem;
}
.p-single-scene__lead-list > li .icon span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-single-scene__lead-list > li .icon span {
    font-size: 1.125rem;
  }
}
.p-single-scene__lead-list > li .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #0058fa;
  border-radius: 50%;
  display: inline-block;
  z-index: 1;
}
.p-single-scene__lead-list > li > p:nth-of-type(2) {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .p-single-scene__lead-list > li > p:nth-of-type(2) {
    font-size: 0.875rem;
  }
}

.scene-trouble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .scene-trouble {
    display: block;
  }
}
.scene-trouble__item {
  width: calc(50% - 1.25rem);
  padding: 32px 40px 72px;
  padding: 2rem 2.5rem 4.5rem;
  background: #f3f3f3;
  border-radius: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item {
    width: 100%;
    padding: 1.875rem 1.25rem 3.125rem;
  }
  .scene-trouble__item + .scene-trouble__item {
    margin-top: 1.25rem;
  }
}
.scene-trouble__item-icon {
  position: absolute;
  bottom: 0;
  right: 20px;
  right: 1.25rem;
  width: 72px;
  width: 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item-icon {
    width: 3.75rem;
  }
}
.scene-trouble__item-ttl {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item-ttl {
    font-size: 1.25rem;
  }
}
.scene-trouble__item-txt {
  line-height: 1.75;
  color: #333;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item-txt {
    font-size: 0.9375rem;
  }
}
.scene-trouble__item-txt li {
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item-txt li {
    font-size: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.scene-trouble__item-txt li:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.scene-trouble__item-txt li::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  left: 0;
  top: 8px;
  top: 0.5rem;
  border-radius: 50%;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .scene-trouble__item-txt li::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.scene-trouble.blank-manager {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.scene-aboutLaKeel {
  position: relative;
  background-color: #f3f3f3;
  border-radius: 1.25rem;
  padding: 40px 32px;
  padding: 2.5rem 2rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .scene-aboutLaKeel {
    border-radius: 1rem;
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}
.scene-aboutLaKeel__ttl {
  font-weight: 700;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .scene-aboutLaKeel__ttl {
    margin-bottom: 0.625rem;
  }
}
.scene-aboutLaKeel__ttl h4 {
  font-size: 32px;
  font-size: 2rem;
  color: #0058fa;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .scene-aboutLaKeel__ttl h4 {
    font-size: 1.375rem;
  }
}
.scene-aboutLaKeel__ttl p {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
}
@media screen and (max-width: 768px) {
  .scene-aboutLaKeel__ttl p {
    font-size: 1.125rem;
  }
}
.scene-aboutLaKeel__txt {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  padding: 0 1em;
  line-height: 1.75;
  margin-bottom: 10px !important;
  margin-bottom: 0.625rem !important;
}
@media screen and (max-width: 768px) {
  .scene-aboutLaKeel__txt {
    font-size: 0.875rem !important;
  }
}

.scene-popuplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
  margin-top: 1.5rem;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .scene-popuplist {
    display: block;
    margin-top: 1rem;
  }
}
.scene-popuplist__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.66667rem);
          flex: 0 1 calc(33.333% - 1.66667rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .scene-popuplist__item {
    width: 100%;
  }
  .scene-popuplist__item + .scene-popuplist__item {
    margin-top: 1.875rem;
  }
}
.scene-popuplist__item > a {
  display: block;
  aspect-ratio: 16/9;
}
.scene-popuplist__item > a img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

/* p-archive-seminar */
.p-archive-seminar .p-seminar {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-archive-seminar .p-seminar {
    padding-top: 1.25rem;
  }
}

.archive-seminar__list {
  width: 100%;
  margin: 40px auto;
  margin: 2.5rem auto;
}
@media screen and (max-width: 768px) {
  .archive-seminar__list {
    margin: 1.5rem auto;
  }
}
.archive-seminar__ttl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bolder;
  margin: 20px 0;
  margin: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .archive-seminar__ttl {
    font-size: 1.375rem;
    text-align: center;
  }
}
.archive-seminar__anchors {
  margin: 20px 0;
  margin: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchors {
    margin: 0.625rem 0;
  }
}
.archive-seminar__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  margin-right: 1.25rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  border-top: 1.5px solid #f3f3f3;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1.5rem;
  }
}
.archive-seminar__anchor:last-of-type {
  border-bottom: 2px solid #f3f3f3;
}
.archive-seminar__anchor:last-of-type .archive-seminar__anchor-ttl::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #aaa;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor:last-of-type .archive-seminar__anchor-ttl::after {
    display: none;
  }
}
.archive-seminar__anchor-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  width: 15em;
  position: relative;
  padding-block: 24px;
  padding-block: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor-ttl {
    font-weight: 700;
    width: 100%;
  }
}
.archive-seminar__anchor-ttl::before {
  position: absolute;
  content: "";
  top: -2px;
  top: -0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #aaa;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor-ttl::before {
    display: none;
  }
}
.archive-seminar__anchor-text {
  font-size: 16px;
  font-size: 1rem;
  padding: 24px 1.75em;
  padding: 1.5rem 1.75em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor-text {
    font-size: 0.75rem;
    padding: 0 1.75em 1em;
  }
}
.archive-seminar__anchor-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.archive-seminar__anchor-btn a {
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  background-color: #0058fa;
  color: #fff;
  padding: 0.5em 2em 0.5em 1em;
  border-radius: 20vh;
  text-align: center;
  width: 12em;
}
@media screen and (max-width: 768px) {
  .archive-seminar__anchor-btn a {
    margin-top: 0.3125rem;
  }
}
.archive-seminar__anchor-btn a > span {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 8px;
  width: 0.5rem;
}
.archive-seminar__anchor-btn.btnblue a {
  border: 1px solid #0058fa;
  background-color: #fff;
  color: #0058fa;
}

.archive-seminar__card {
  width: 100%;
  margin: 40px auto;
  margin: 2.5rem auto;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 56px 72px;
  padding: 3.5rem 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card {
    margin: 1.5rem auto;
    padding: 2rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.archive-seminar__card-header {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-header {
    width: 100%;
  }
}
.archive-seminar__card-header > h4 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0058fa;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-header > h4 {
    font-size: 1.375rem;
  }
}
.archive-seminar__card-header > h4.status0 {
  color: #333;
}
.archive-seminar__card-header > h4 > span {
  -ms-flex-preferred-size: 56px 1 0;
      flex-basis: 56px 1 0;
  -ms-flex-preferred-size: 3.5rem 1 0;
      flex-basis: 3.5rem 1 0;
}
.archive-seminar__card-header > p {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-header > p {
    font-size: 0.875rem;
  }
}
.archive-seminar__card-body {
  width: 40%;
  border-left: 1px solid #f3f3f3;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-body {
    border-left: none;
    padding-left: 0;
    margin-top: 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .archive-seminar__card .p-course__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .archive-seminar__card .p-course__list-text {
    margin-top: 0;
    margin-left: 1em;
  }
}
.archive-seminar__card-status {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  background-color: #0058fa;
  border-radius: 20vh;
  color: #fff;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 0.25em 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-status {
    font-size: 0.875rem;
  }
}
.archive-seminar__card-status.status0 {
  background-color: #f3f3f3;
  color: #333;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-icon {
    position: absolute;
    bottom: 0.625rem;
    right: 0.625rem;
  }
}
.archive-seminar__card-icon a {
  display: block;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}
@media screen and (max-width: 768px) {
  .archive-seminar__card-icon a {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.archive-seminar__card-icon.status0 a img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/* p-single-seminar */
.p-single-seminar .l-content {
  padding: 235px 0 220px;
  padding: 14.6875rem 0 13.75rem;
  margin-top: -115px;
  margin-top: -7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar .l-content {
    padding: 12.5rem 0 5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-single-seminar__header {
    padding-top: 1.25rem;
  }
}
.p-single-seminar__header .c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__header .c-title {
    display: block;
  }
}
.p-single-seminar__header .c-title span {
  display: block;
  width: 298px;
  width: 18.625rem;
  margin-right: 14px;
  margin-right: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__header .c-title span {
    width: 12.5rem;
    margin: 0 auto;
  }
}
.p-single-seminar__header .p-offer {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-single-seminar__text {
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__text {
    text-align: left;
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}
.p-single-seminar__text p + p {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-single-seminar__body {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 165px 0 120px;
  padding: 10.3125rem 0 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__body {
    padding: 6.25rem 0 3.75rem;
  }
}
.p-single-seminar__body::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 35px;
  top: 2.1875rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__body::before {
    width: 0.625rem;
    height: 3.75rem;
    top: 1.25rem;
  }
}

.p-single-seminar__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__subtitle {
    font-size: 1.125rem;
  }
}

.p-single-seminar__items {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__items {
    margin-top: 1.25rem;
  }
}

.p-single-seminar__item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #f3f3f3;
  border-radius: 0.625rem;
  padding: 26px 70px;
  padding: 1.625rem 4.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__item {
    font-size: 1rem;
    padding: 0.9375rem 1.25rem 0.9375rem 2.5rem;
  }
}
.p-single-seminar__item + .p-single-seminar__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-single-seminar__item::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: #0058fa;
  border-radius: 50%;
  top: 33px;
  top: 2.0625rem;
  left: 40px;
  left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__item::before {
    width: 0.625rem;
    height: 0.625rem;
    top: 1.4375rem;
    left: 1.25rem;
  }
}

.p-single-seminar__units {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 0 40px;
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__units {
    margin-top: 3.125rem;
    padding: 0;
  }
}

.p-single-seminar__unit + .p-single-seminar__unit {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit + .p-single-seminar__unit {
    margin-top: 3.75rem;
  }
}

.p-single-seminar__heading {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__heading {
    font-size: 1.5rem;
  }
}

.p-single-seminar__anchors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
  gap: 1.875rem 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchors {
    display: block;
    margin-top: 1.5625rem;
  }
}

.p-single-seminar__anchor {
  text-align: center;
  display: block;
  min-height: 230px;
  min-height: 14.375rem;
  background: #e5f3fc;
  border-radius: 0.9375rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
  padding: 40px 20px 20px;
  padding: 2.5rem 1.25rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchor {
    padding: 1.875rem 0.625rem 3.125rem;
    min-height: unset;
  }
  .p-single-seminar__anchor + .p-single-seminar__anchor {
    margin-top: 1.25rem;
  }
}
.p-single-seminar__anchor::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 11px;
  bottom: 0.6875rem;
  background: url(../img/common/arrow_icon_004.png) no-repeat center/contain;
}
.p-single-seminar__anchor:nth-child(4) .p-single-seminar__anchor-title {
  min-height: 53px;
  min-height: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchor:nth-child(4) .p-single-seminar__anchor-title {
    min-height: unset;
  }
}

.p-single-seminar__anchor-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0058fa;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchor-title {
    font-size: 1.125rem;
  }
}
.p-single-seminar__anchor-title span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchor-title span {
    font-size: 0.9375rem;
  }
}

.p-single-seminar__anchor-text {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__anchor-text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-single-seminar__link {
  display: block;
  width: 630px;
  width: 39.375rem;
  max-width: 100%;
  min-height: 230px;
  min-height: 14.375rem;
  background: #94bcfd;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  padding: 30px 20px 20px;
  padding: 1.875rem 1.25rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link {
    margin-top: 1.5625rem;
    padding: 1.875rem 1.25rem;
  }
}
.p-single-seminar__link::after {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link::after {
    width: 1.25rem;
    height: 1.25rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}

.p-single-seminar__link-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link-title {
    font-size: 1.125rem;
  }
}
.p-single-seminar__link-title span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link-title span {
    font-size: 0.9375rem;
  }
}

.p-single-seminar__link-text {
  width: 400px;
  width: 25rem;
  max-width: 100%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link-text {
    font-size: 0.9375rem;
  }
}
.p-single-seminar__link-text span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__link-text span {
    font-size: 0.8125rem;
  }
}

.p-single-seminar__card + .p-single-seminar__card {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__card + .p-single-seminar__card {
    margin-top: 2.5rem;
  }
}

.p-single-seminar__groups {
  padding: 20px 0 120px;
  padding: 1.25rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__groups {
    padding-bottom: 3.75rem;
  }
}

.p-single-seminar__group + .p-single-seminar__group {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__group + .p-single-seminar__group {
    margin-top: 3.75rem;
  }
}

.p-single-seminar__list {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  border-bottom: 1px solid #666;
  border-bottom: 0.0625rem solid #666;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list {
    margin-top: 1.5625rem;
  }
}

.p-single-seminar__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border-top: 1px solid #666;
  border-top: 0.0625rem solid #666;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-item {
    display: block;
    font-size: 1rem;
  }
}
.p-single-seminar__list-item:last-child .p-single-seminar__list-text::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  background: #f3f3f3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-item:last-child .p-single-seminar__list-text::after {
    display: none;
  }
}

.p-single-seminar__list-title {
  width: 26%;
  color: #666;
  padding: 21px 35px;
  padding: 1.3125rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-title {
    width: 100%;
    padding: 0.9375rem 0;
  }
}

.p-single-seminar__list-text {
  width: 74%;
  padding: 21px 35px;
  padding: 1.3125rem 2.1875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-text {
    width: 100%;
    border-top: 0.1875rem solid #f3f3f3;
    padding: 0.9375rem 0;
  }
}
.p-single-seminar__list-text::before {
  position: absolute;
  content: "";
  top: -2px;
  top: -0.125rem;
  left: 0;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  background: #f3f3f3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-text::before {
    display: none;
  }
}

.p-single-seminar__form {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__form {
    margin-top: 1.5625rem;
  }
}

.p-single-seminar__seminar_end {
  width: 100%;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  color: #0058fa;
  border: 2px solid #0058fa;
  border: 0.125rem solid #0058fa;
  border-radius: 0.625rem;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

/* p-archive-service */
.p-archive-service__header {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.p-archive-service__header .c-entitle, .p-archive-service__header .c-title {
  text-align: center;
}

.p-archive-service__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__text {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.p-archive-service__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__img {
    margin-top: 1.875rem;
  }
}

.p-archive-service__footer {
  background: #f3f3f3;
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-archive-service__footer {
    padding: 3.75rem 0;
  }
}

.p-archive-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 27px;
  gap: 0 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__items {
    display: block;
  }
}

.p-archive-service__item {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.84375rem);
          flex: 0 1 calc(50% - 0.84375rem);
}
@media screen and (max-width: 768px) {
  .p-archive-service__item + .p-archive-service__item {
    margin-top: 1.25rem;
  }
}
.p-archive-service__item:first-child .p-archive-service__item-logo {
  width: 502px;
  width: 31.375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item:first-child .p-archive-service__item-logo {
    width: 25rem;
  }
}
.p-archive-service__item:nth-child(2) .p-archive-service__item-logo {
  width: 289px;
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item:nth-child(2) .p-archive-service__item-logo {
    width: 12.5rem;
  }
}

.p-archive-service__item-img-wrapper {
  background: #f8f8f8;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 45px 40px 35px;
  padding: 2.8125rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-img-wrapper {
    padding: 1.875rem 1.25rem 1.25rem;
  }
}

.p-archive-service__item-img {
  width: 336px;
  width: 21rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-img {
    width: 18.75rem;
  }
}

.p-archive-service__item-logo {
  max-width: 100%;
  margin: 17px auto 0;
  margin: 1.0625rem auto 0;
}

.p-archive-service__item-body {
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 40px 60px 60px;
  padding: 2.5rem 3.75rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-body {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.p-archive-service__item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-title {
    font-size: 1rem;
  }
}
.p-archive-service__item-title span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-title span {
    font-size: 1.25rem;
  }
}

.p-archive-service__item-text {
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-text {
    font-size: 0.9375rem;
  }
}

.p-archive-service__item-btn {
  display: block;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  font-weight: 700;
  border-radius: 1.5625rem;
  border: 2px solid #212121;
  border: 0.125rem solid #212121;
  padding: 11px 30px;
  padding: 0.6875rem 1.875rem;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-archive-service__item-btn {
    margin-top: 1.875rem;
  }
}
.p-archive-service__item-btn::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow_icon_001.png) no-repeat center/contain;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-archive-service__item-btn:hover {
  opacity: 1;
  color: #fff;
  background: #212121;
}
.p-archive-service__item-btn:hover::after {
  background: url(../img/common/arrow_icon_003.png) no-repeat center/contain;
}

/* p-bi */
.p-bi .p-fv__logo {
  width: 466px;
  width: 29.125rem;
}
@media screen and (max-width: 768px) {
  .p-bi .p-fv__logo {
    width: 22.5rem;
  }
}
.p-bi .p-fv__img {
  display: block;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-bi .p-fv__img {
    width: 18.75rem;
    margin-top: 1.25rem;
  }
}
.p-bi .p-realization .c-title span {
  width: 289px;
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-bi .p-realization .c-title span {
    width: 9.375rem;
  }
}
.p-bi .p-realization__item:first-child {
  background: #3b7ef9;
}
.p-bi .p-realization__item:nth-child(2) {
  background: #1c6afb;
}
.p-bi .p-realization__item:nth-child(3) {
  background: #1c6afb;
  display: block;
}
.p-bi .p-realization__item:nth-child(3) .p-realization__item-text {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-bi .p-realization__item:nth-child(3) .p-realization__item-text {
    font-size: 1.25rem;
  }
}
.p-bi .p-reason .c-title span {
  width: 289px;
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-bi .p-reason .c-title span {
    width: 9.375rem;
  }
}
.p-bi .p-tool__logo {
  width: 361px;
  width: 22.5625rem;
}

/* p-di */
.p-di .p-fv__logo {
  width: 745px;
  width: 46.5625rem;
}
@media screen and (max-width: 768px) {
  .p-di .p-fv__logo {
    width: 25rem;
  }
}
.p-di .p-fv__img {
  width: 37%;
}
@media screen and (max-width: 768px) {
  .p-di .p-fv__img {
    width: 18.75rem;
  }
}
.p-di .p-realization .c-title span {
  width: 502px;
  width: 31.375rem;
}
@media screen and (max-width: 768px) {
  .p-di .p-realization .c-title span {
    width: 18.75rem;
  }
}
.p-di .p-realization__item:first-child {
  background: #7facfc;
}
.p-di .p-realization__item:nth-child(2) {
  background: #6095f6;
}
.p-di .p-realization__item:nth-child(3) {
  background: #3b7ef9;
}
.p-di .p-realization__item:nth-child(3) .p-realization__item-text {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-di .p-realization__item:nth-child(3) .p-realization__item-text {
    font-size: 1.25rem;
  }
}
.p-di .p-reason .c-title span {
  width: 502px;
  width: 31.375rem;
}
@media screen and (max-width: 768px) {
  .p-di .p-reason .c-title span {
    width: 18.75rem;
  }
}
.p-di .p-tool__logo {
  width: 256px;
  width: 16rem;
}

.p-di-reason__item-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* p-function */
main.function .p-single-service .c-title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
main.function .p-single-service .c-text--top {
  font-weight: bold;
  font-size: 22.4px;
  font-size: 1.4rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
main.function .p-single-service .c-text {
  font-size: 17.6px;
  font-size: 1.1rem;
}
main.function .p-single-service__item-img {
  margin: 96px auto;
  margin: 6rem auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main.function .p-single-service__table-container .p-single-service__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table {
  width: 100%;
  margin: 80px 0;
  margin: 5rem 0;
  border-collapse: separate;
  border-spacing: 16px 0;
  border-spacing: 1rem 0;
}
@media screen and (max-width: 768px) {
  main.function .p-single-service__table-container .p-single-service__table-wrapper table {
    min-width: 600px;
    white-space: nowrap;
    margin: 0 0 5rem 0;
  }
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table th {
  background-color: #0057f9;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  padding: 1rem;
  font-size: 17.6px;
  font-size: 1.1rem;
  text-align: center;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table th.top {
  text-align: center;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table th.hide {
  background: transparent;
  border: none;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table th.top.left-column {
  width: 55%;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table tbody tr {
  -webkit-box-shadow: inset 0 -1px 0 #eee;
          box-shadow: inset 0 -1px 0 #eee;
  border: none;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table tbody tr:last-child {
  -webkit-box-shadow: none;
          box-shadow: none;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table tr.data-lake-row .icon-cell {
  background-color: #e8f0fe;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table tr.data-warehouse-row .icon-cell {
  background-color: #edf3ff;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table tr:not(.data-lake-row):not(.data-warehouse-row) .icon-cell {
  background-color: #f0f7ff;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table td {
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  vertical-align: top;
  border: none;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table td.icon-cell {
  background-color: #e8f0fe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  font-size: 18px;
  color: #0057f9;
  border-radius: 10px;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table td.icon-cell img {
  width: 40px;
  height: 40px;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table td.description,
main.function .p-single-service__table-container .p-single-service__table-wrapper table td.technologies {
  font-size: 14px;
  line-height: 1.8;
}
main.function .p-single-service__table-container .p-single-service__table-wrapper table td.description {
  text-indent: -1em;
  padding-left: 1em;
}
main.function .p-single-service .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  main.function .p-single-service .items {
    grid-template-columns: 1fr;
  }
}
main.function .p-single-service .item {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  padding: 30px 30px 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
main.function .p-single-service .ttl_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
main.function .p-single-service .ttl_area img {
  width: 90px;
  height: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main.function .p-single-service .ttl_area .c-title {
  font-size: 30px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
}
main.function .p-single-service .txt_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
main.function .p-single-service .txt_area .txt_area_group .main {
  font-size: 18px;
  font-weight: bold;
  color: #0057ff;
  margin: 0 0 4px;
}
main.function .p-single-service .txt_area .txt_area_group .desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}
main.function .p-single-service .txt_area .txt_area_group img {
  width: 40%;
  max-width: 100%;
  height: auto;
}
main.function .p-slider .slick-track {
  width: auto !important;
  width: initial !important;
}

/* p-single-service */
.p-single-service .p-consulting {
  padding-top: 30px;
  padding-top: 1.875rem;
}
.p-single-service .p-try {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-service .p-try {
    margin-bottom: 3.75rem;
  }
}

.p-single-service__header {
  padding: 30px 0 80px;
  padding: 1.875rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__header {
    padding: 1.25rem 0 0;
  }
}

.p-single-service__lead {
  line-height: 1.75;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__lead {
    margin-top: 1.25rem;
  }
}

.p-single-service__groups.p-bi-support .p-single-service__group {
  background-color: #fff;
  padding: 60px 100px;
  padding: 3.75rem 6.25rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__groups.p-bi-support .p-single-service__group {
    padding: 2.5rem 1rem;
  }
}
.p-single-service__groups.p-bi-support .p-single-service__group + .p-single-service__groups.p-bi-support .p-single-service__group {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__groups.p-bi-support .p-single-service__group + .p-single-service__groups.p-bi-support .p-single-service__group {
    margin-top: 2.5rem;
  }
}
.p-single-service__groups.p-bi-support .p-single-service__unit {
  background-color: #f3f3f3;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.p-single-service__group + .p-single-service__group {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__group + .p-single-service__group {
    margin-top: 5rem;
  }
}

.p-single-service__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-service__title {
    font-size: 1.5rem;
  }
}
.p-single-service__title > p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #0058fa;
  border-radius: 20vh;
  margin-bottom: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1.75em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-single-service__title > p {
    font-size: 0.75rem;
  }
}

.p-single-service__subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__subtitle {
    font-size: 1rem;
  }
}

.p-single-service__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__text {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.p-single-service__box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 36px 72px;
  padding: 2.25rem 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box {
    padding: 1.25rem;
  }
}

.p-single-service__box-links {
  margin-top: 1em;
}

.p-single-service__box-link {
  padding-left: 25px;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-link {
    font-size: 0.9375rem;
    padding-left: 1.25rem;
  }
}
.p-single-service__box-link::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  left: 0;
  top: 12px;
  top: 0.75rem;
  border-radius: 50%;
  background: #0058fa;
}
.p-single-service__box-link + .p-single-service__box-link {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.p-single-service__box-link a {
  display: inline-block;
  color: #0058fa;
  line-height: 1.75;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-underline-offset: 0.3125rem;
  position: relative;
}
.p-single-service__box-link a::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  top: 10px;
  top: 0.625rem;
  right: -15px;
  right: -0.9375rem;
  background: url(../img/common/arrow_icon_002.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-link a::after {
    top: unset;
    right: unset;
    bottom: 0.3125rem;
  }
}

.p-single-service__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 18px;
  gap: 2.5rem 1.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-items {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-single-service__box-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.75rem);
          flex: 0 1 calc(33.333% - 0.75rem);
}
@media screen and (max-width: 768px) {
  .p-single-service__box-item + .p-single-service__box-item {
    margin-top: 2.5rem;
  }
}

.p-single-service__box-item-zoom {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0058fa;
  background: url(../img/common/zoom_icon.png) no-repeat center left/11px;
  background: url(../img/common/zoom_icon.png) no-repeat center left/0.6875rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-single-service__box-item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-item-title {
    font-size: 1.125rem;
  }
}

.p-single-service__box-item-text {
  line-height: 1.75;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-item-text {
    font-size: 0.9375rem;
  }
}

.p-single-service__box-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-btns {
    display: block;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-single-service__box-btns .c-btn {
    margin: 0 auto;
  }
}
.p-single-service__box-btns .c-btn:not(:first-child) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__box-btns .c-btn:not(:first-child) {
    margin-left: auto;
    margin-top: 1.25rem;
  }
}

.p-single-service__banner {
  display: block;
  width: 800px;
  width: 50rem;
  max-width: 100%;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  margin: 40px auto 72px;
  margin: 2.5rem auto 4.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-single-service__banner {
    margin-block: 1.875rem 2.5rem;
  }
}
.p-single-service__banner:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-single-service__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__items {
    margin-top: 2.5rem;
  }
}

.p-single-service__item {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  padding: 60px 100px;
  padding: 3.75rem 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-service__item {
    padding: 2.5rem 1.25rem;
  }
}
.p-single-service__item + .p-single-service__item {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__item + .p-single-service__item {
    margin-top: 1.25rem;
  }
}

.p-single-service__item-subtext {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #6095f6;
  border-radius: 0 1.25rem 0 0.625rem;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-subtext {
    font-size: 0.9375rem;
    padding: 0.625rem 0.9375rem;
  }
}

.p-single-service__item-title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-top: 0.625rem;
  }
}

.p-single-service__item-img {
  width: 1000px;
  width: 62.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-single-service__item-text {
  line-height: 1.75;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

.p-single-service__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-inner {
    display: block;
  }
}
.p-single-service__item-inner .p-single-service__item-img {
  width: 47%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-inner .p-single-service__item-img {
    width: 100%;
  }
}
.p-single-service__item-inner .p-single-service__item-text {
  width: 48%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-single-service__item-inner .p-single-service__item-text {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-single-service__subheading {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #0058fa;
  color: #fff;
  border-radius: 20vh;
  padding: 0.25em 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-single-service__subheading {
    font-size: 1rem;
  }
}

.p-single-service__heading {
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__heading {
    font-size: 1.5rem;
  }
}
.p-single-service__heading-sub {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__heading-sub {
    font-size: 1rem;
  }
}

.p-single-service__units {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-single-service__unit {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  padding: 85px 100px 60px;
  padding: 5.3125rem 6.25rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit {
    padding: 5rem 1.25rem 2.5rem;
  }
}
.p-single-service__unit + .p-single-service__unit {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit + .p-single-service__unit {
    margin-top: 1.25rem;
  }
}

.p-single-service__unit-subtext {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  max-width: 80%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #6095f6;
  border-radius: 0 1.25rem 0 0.625rem;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-subtext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.9375rem;
    line-height: 1.3;
    min-height: 3.75rem;
    padding: 0.625rem 0.9375rem;
  }
}

.p-single-service__unit-subtitle {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-subtitle {
    font-size: 1rem;
  }
}

.p-single-service__unit-title {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  color: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-title {
    font-size: 1.5rem;
  }
}
.p-single-service__unit-title span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-title span {
    font-size: 1.25rem;
  }
}

.p-single-service__unit-text {
  text-align: center;
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-text {
    font-size: 0.9375rem;
  }
}

.p-single-service__unit-flow {
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
  border-radius: 0.9375rem;
  background: #fff;
  padding: 35px 20px 30px;
  padding: 2.1875rem 1.25rem 1.875rem;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow {
    padding: 1.875rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-single-service__unit-flow-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 100px;
  gap: 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow-items {
    display: block;
  }
}

.p-single-service__unit-flow-item + .p-single-service__unit-flow-item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow-item + .p-single-service__unit-flow-item {
    margin-top: 4.375rem;
  }
}
.p-single-service__unit-flow-item + .p-single-service__unit-flow-item::before {
  position: absolute;
  content: "";
  width: 54px;
  width: 3.375rem;
  height: 18px;
  height: 1.125rem;
  top: 80px;
  top: 5rem;
  left: -80px;
  left: -5rem;
  background: url(../img/common/arrow_icon_008.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow-item + .p-single-service__unit-flow-item::before {
    width: 2.5rem;
    height: 0.875rem;
    left: 50%;
    top: -2.8125rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.p-single-service__unit-flow-item-img {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-single-service__unit-flow-item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow-item-title {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.p-single-service__unit-flow-item-text {
  text-align: center;
  color: #333;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-flow-item-text {
    font-size: 0.9375rem;
  }
}

.p-single-service__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-inner {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-single-service__unit-texts {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-texts {
    width: 100%;
  }
}
.p-single-service__unit-texts .p-single-service__unit-text {
  text-align: left;
  margin-top: 0;
}
.p-single-service__unit-texts .c-btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-texts .c-btn {
    margin: 2.5rem auto 0;
  }
}

.p-single-service__unit-img {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.p-single-service__unit-img img {
  border-radius: 0.9375rem;
}

.p-single-service__unit-group-wrapper {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-single-service__unit-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-groups {
    display: block;
  }
}
.p-single-service__unit-groups + .p-single-service__unit-groups {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.p-single-service__unit-groups:nth-child(2) .p-single-service__unit-group:nth-child(2) {
  width: 100%;
}
.p-single-service__unit-groups:nth-child(2) .p-single-service__unit-group:nth-child(2) .p-single-service__unit-item {
  width: 100%;
}
.p-single-service__unit-groups:nth-child(2) .p-single-service__unit-group:nth-child(2) .p-single-service__unit-item-text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-groups:nth-child(2) .p-single-service__unit-group:nth-child(2) .p-single-service__unit-item-text {
    text-align: left;
  }
}

.p-single-service__unit-group + .p-single-service__unit-group {
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-group + .p-single-service__unit-group {
    margin-left: 0;
    margin-top: 3.75rem;
  }
}

.p-single-service__unit-heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 24px;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-heading {
    font-size: 1.25rem;
    padding-left: 0.9375rem;
  }
}
.p-single-service__unit-heading::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  left: 0;
  top: 15px;
  top: 0.9375rem;
  border-radius: 50%;
  background: #0058fa;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-heading::before {
    width: 0.375rem;
    height: 0.375rem;
    top: 0.8125rem;
  }
}

.p-single-service__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem 0;
  }
}
.p-single-service__unit-items.col-3 .p-single-service__unit-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.58333rem);
          flex: 0 1 calc(33.333% - 0.58333rem);
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-items.col-3 .p-single-service__unit-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.p-single-service__unit-items.col-5 .p-single-service__unit-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 0.7rem);
          flex: 0 1 calc(20% - 0.7rem);
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-items.col-5 .p-single-service__unit-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-single-service__unit-item-icon {
  width: 80px;
  width: 5rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-single-service__unit-item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-item-title {
    font-size: 1rem;
  }
}

.p-single-service__unit-item-text {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-service__unit-item-text {
    font-size: 0.9375rem;
    text-align: center;
  }
}

/* p-top-case */
.p-top-case {
  background: #333;
  position: relative;
  z-index: 1;
}
.p-top-case .c-entitle {
  color: #aaa;
}
.p-top-case .c-title {
  color: #fff;
}
.p-top-case .c-card__body {
  background: #fff;
}
.p-top-case .p-slider__progress {
  background: #f3f3f3;
}

/* p-top-column */
.p-top-column {
  background: #f3f3f3;
}
.p-top-column .c-title {
  color: #333;
}
.p-top-column .c-card__body {
  background: #fff;
}

/* p-top-feature */
.p-top-feature {
  background: #f3f3f3;
  padding: 140px 0 150px;
  padding: 8.75rem 0 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature {
    padding: 3.75rem 0 5rem;
  }
}

.p-top-feature__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-feature__title {
    display: block;
    font-size: 1.5rem;
  }
}
.p-top-feature__title span {
  display: block;
  width: 361px;
  width: 22.5625rem;
  max-width: 100%;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__title span {
    width: 12.5rem;
    margin: 0 auto;
  }
}

.p-top-feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem 0;
    margin-top: 3.125rem;
  }
}
.p-top-feature__inner::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 169px;
  height: 10.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -100px;
  top: -6.25rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-top-feature__inner::before {
    width: 0.625rem;
    height: 6.25rem;
    top: -3.125rem;
  }
}

.p-top-feature__msg {
  width: calc(50% - 1.5625rem);
}
@media screen and (max-width: 768px) {
  .p-top-feature__msg {
    width: 100%;
  }
}
.p-top-feature__msg .c-btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__msg .c-btn {
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.p-top-feature__subtitle {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__subtitle {
    font-size: 1.25rem;
    margin-top: 3.75rem;
    text-align: center;
  }
}

.p-top-feature__text {
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top-feature__text {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}
.p-top-feature__text:not(:last-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-feature__img {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: calc(50% - 1.5625rem);
}
@media screen and (max-width: 768px) {
  .p-top-feature__img {
    margin-top: 1.5625rem;
    width: 100%;
  }
}

.p-top-mv {
  background: #f3f3f3;
  padding: 117px 0;
  padding: 7.3125rem 0;
  margin-top: 126px;
  margin-top: 7.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    padding: 2.5rem 0;
    margin-top: 4.375rem;
  }
}
.p-top-mv .l-inner {
  max-width: 1610px;
  max-width: 100.625rem;
}

.p-top-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .p-top-mv__inner {
    display: block;
  }
}

.p-top-mv__body {
  width: 47%;
  /*padding-top: rem(40);*/
}
@media screen and (max-width: 768px) {
  .p-top-mv__body {
    width: 100%;
    padding-top: 0;
  }
}

.p-top-mv__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logos {
    gap: 0.5rem;
  }
}

.p-top-mv__logo {
  max-width: 100%;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo {
    width: 100%;
  }
}
.p-top-mv__logo p {
  letter-spacing: -0.5px;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo p {
    margin-left: auto;
  }
}
.p-top-mv__logo a {
  background-color: rgba(188, 230, 253, .302);
  border-radius: 60px;
  padding: 8px 51.2px 8px 35.2px;
  padding: 0.5rem 3.2rem 0.5rem 2.2rem;
  width: 100%;
  -webkit-box-shadow: 0px 0px 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0px 0px 18.8px 1.2px rgba(51, 51, 51, .1);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo a {
    padding: 0.2rem 1.5rem 0.5rem 1rem;
  }
}
.p-top-mv__logo a:hover {
  background-color: #fff;
  color: #009aff;
}
.p-top-mv__logo a::before {
  content: "";
  background: url(../../../../assets/img/top/top-btn_next-black.png) no-repeat;
  background-size: 100%;
  top: calc(50% - 0.75rem);
  right: 16px;
  right: 1rem;
  width: 22.4px;
  width: 1.4rem;
  aspect-ratio: 1;
  position: absolute;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo a::before {
    width: 1.3rem;
    right: 1rem;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
            transform: translate(0px, -50%);
  }
}
.p-top-mv__logo a img {
  width: auto;
  max-height: 35px;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo a img {
    margin: 0 auto;
  }
}
.p-top-mv__logo a p {
  letter-spacing: -0.5px;
  font-size: 11px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .p-top-mv__logo a p {
    font-size: 0.6rem;
  }
}

.p-top-mv__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__subtitle {
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 1.875rem;
  }
}
.p-top-mv__subtitle span {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__subtitle span {
    font-size: 1.375rem;
  }
}

.p-top-mv__title {
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
  background: url(../img/top/top-mv_bg.png) no-repeat #212121;
  background-clip: text;
  color: transparent;
  -webkit-animation: 3s linear infinite mv_animation;
          animation: 3s linear infinite mv_animation;
}
@media screen and (max-width: 768px) {
  .p-top-mv__title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-top: 0.3125rem;
  }
}

@-webkit-keyframes mv_animation {
  0% {
    background-position: -20% 50%;
  }
  100% {
    background-position: 125% 50%;
  }
}

@keyframes mv_animation {
  0% {
    background-position: -20% 50%;
  }
  100% {
    background-position: 125% 50%;
  }
}
.p-top-mv__text {
  color: #333;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__text {
    font-size: 0.9375rem;
  }
}

.p-top-mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btns {
    display: block;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-mv__btn {
    margin: 0 auto;
  }
}
.p-top-mv__btn:nth-child(2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btn:nth-child(2) {
    margin-left: auto;
    margin-top: 0.625rem;
  }
}

.p-top-mv__img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-mv__img {
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-top-mv__img .p-top-mv__movie {
  margin-top: 112px;
  margin-top: 7rem;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .p-top-mv__img .p-top-mv__movie {
    width: 100%;
    margin-top: 2rem;
  }
}
.p-top-mv__img .p-top-mv__movie .p-top-mv__movie-item {
  border: 5px solid #bce6fd;
  border-radius: 30px;
  overflow: hidden;
}
.p-top-mv__img .p-top-mv__movie .p-top-mv__movie-item video {
  display: block;
  width: 100%;
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.p-top-mv__img img.movie01 {
  width: 50%;
  position: absolute;
  top: -17%;
  right: -30%;
  z-index: -1;
}
.p-top-mv__img img.movie02 {
  width: 25%;
  position: absolute;
  top: 60%;
  left: 100%;
  z-index: -1;
}
.p-top-mv__img img.movie03 {
  width: 12%;
  position: absolute;
  top: -12%;
  left: 73%;
  z-index: -1;
}

/* p-top-question */
.p-top-question {
  padding: 135px 0 120px;
  padding: 8.4375rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-question {
    padding: 3.75rem 0;
  }
}
.p-top-question .c-entitle {
  text-align: center;
}
.p-top-question .c-title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-question .c-title {
    font-size: 1.5rem;
  }
}

.p-top-question__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 130px;
  margin-top: 8.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-question__texts {
    width: 25rem;
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 0.625rem;
    margin: 5.625rem auto 0;
  }
}
.p-top-question__texts::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 99px;
  height: 6.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -99px;
  top: -6.1875rem;
  background: url(../img/common/border_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-top-question__texts::before {
    width: 0.625rem;
    height: 3.75rem;
    top: -4.6875rem;
  }
}

.p-top-question__text {
  text-align: center;
  width: 247px;
  width: 15.4375rem;
  max-width: 100%;
  height: 246px;
  height: 15.375rem;
  border: 2px dashed #999;
  border: 0.125rem dashed #999;
  border-radius: 50%;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  padding-top: 55px;
  padding-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-top-question__text {
    width: 10rem;
    height: 10rem;
    font-size: 0.9375rem;
    padding-top: 2.1875rem;
  }
}
.p-top-question__text:nth-child(3) span {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-question__text:nth-child(3) span {
    font-size: 1.125rem;
  }
}
.p-top-question__text:nth-child(4) {
  padding-top: 65px;
  padding-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-top-question__text:nth-child(4) {
    padding-top: 2.5rem;
  }
}
.p-top-question__text span {
  font-size: 28px;
  font-size: 1.75rem;
  color: #0058fa;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-top-question__text span {
    font-size: 1.125rem;
  }
}

.p-top-question__img {
  width: 409px;
  width: 25.5625rem;
  max-width: 100%;
  margin: -10px auto 0;
  margin: -0.625rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-question__img {
    width: 15.625rem;
    margin-top: 1.25rem;
  }
}

/* p-top-seminar */
/* p-top-service */
.p-top-service {
  background: #f3f3f3;
  padding: 270px 0 180px;
  padding: 16.875rem 0 11.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding: 5rem 0 3.75rem;
  }
}
.p-top-service::before {
  position: absolute;
  content: "";
  width: 1280px;
  width: 80rem;
  height: 1280px;
  height: 80rem;
  border-radius: 50%;
  background: #0058fa;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-service::before {
    width: 87.5rem;
    height: 87.5rem;
  }
}
.p-top-service .l-inner {
  max-width: 1440px;
  max-width: 90rem;
}
.p-top-service .c-entitle {
  text-align: center;
  color: #aec1fa;
}
.p-top-service .c-title {
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}

.p-top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__items {
    display: block;
  }
}

.p-top-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.9375rem);
          flex: 0 1 calc(50% - 0.9375rem);
}
@media screen and (max-width: 768px) {
  .p-top-service__item + .p-top-service__item {
    margin-top: 1.25rem;
  }
}
.p-top-service__item:first-child .p-top-service__item-logo {
  width: 502px;
  width: 31.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:first-child .p-top-service__item-logo {
    width: 25rem;
  }
}
.p-top-service__item:nth-child(2) .p-top-service__item-logo {
  width: 289px;
  width: 18.0625rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__item:nth-child(2) .p-top-service__item-logo {
    width: 12.5rem;
  }
}

.p-top-service__item-inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
          box-shadow: 0 0 18.8px 1.2px rgba(51, 51, 51, .1);
  border-radius: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.p-top-service__item-inner::after {
  position: absolute;
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  background: url(../img/common/arrow_icon_005.png) no-repeat center/contain;
  right: 19px;
  right: 1.1875rem;
  bottom: 19px;
  bottom: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-inner::after {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}
.p-top-service__item-inner:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.p-top-service__item-inner:hover .p-top-service__item-text {
  color: #0058fa;
}

.p-top-service__item-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 34px 40px 24px;
  padding: 2.125rem 2.5rem 1.5rem;
}

.p-top-service__item-img {
  width: 336px;
  width: 21rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-top-service__item-body {
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 25px 32px 45px;
  padding: 1.5625rem 2rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-body {
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}

.p-top-service__item-text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-text {
    font-size: 1rem;
  }
}

.p-top-service__item-logo {
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-top-service__item-logo {
    margin-top: 1.25rem;
  }
}

/* p-user */
.p-user .c-btn {
  width: 350px;
  width: 21.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 25px 40px;
  padding: 1.5625rem 2.5rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-user .c-btn {
    width: 18.75rem;
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
  }
}

.p-user__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-user__subtitle {
    font-size: 1rem;
  }
}

.p-user__text {
  line-height: 1.75;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-user__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-user__subtext {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .p-user__subtext {
    font-size: 1rem;
    margin-top: 3.125rem;
  }
}

/* u-black */
.u-black {
  background: #303030;
}

/* u-fade */
.u-fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.u-fade.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* u-gray */
.u-gray {
  background: #f3f3f3;
}

/* margin */
.u-help_mt-16 {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .u-help_mt-16 {
    margin-top: 0.5rem;
  }
}

.u-help_mb-16 {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .u-help_mb-16 {
    margin-bottom: 0.5rem;
  }
}

.u-help_mt-36 {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .u-help_mt-36 {
    margin-top: 2.25rem;
  }
}

.u-help_mt-72 {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-help_mt-72 {
    margin-top: 3.75rem;
  }
}

/* padding */
.u-help_pt-72 {
  padding-top: 72px;
  padding-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .u-help_pt-72 {
    padding-top: 3.75rem;
  }
}

.u-help_pb-100 {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .u-help_pb-100 {
    padding-bottom: 3.75rem;
  }
}

.u-help_pb-0 {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .u-help_pb-0 {
    padding-bottom: 0;
  }
}

.u-help_py-100 {
  padding-block: 100px;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .u-help_py-100 {
    padding-block: 3.75rem;
  }
}

/* font-size */
.u-help_fs-24 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-help_fs-24 {
    font-size: 1.125rem;
  }
}

.u-help_fs-32 {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .u-help_fs-32 {
    font-size: 1.5rem;
  }
}

.u-help_fs-125per {
  font-size: 125%;
}
@media screen and (max-width: 768px) {
  .u-help_fs-125per {
    font-size: 110%;
  }
}

/* font-weight */
.u-help_fw-700 {
  font-weight: 700;
}

/* text-align */
.u-help_al-c {
  text-align: center;
}

/* color */
.u-help_color-theme {
  color: #0058fa;
}

/* bg-color */
.u-help_bg-gray {
  background: #f3f3f3;
}

.u-help_bg-white {
  background: #fff;
}

/* border */
.u-help_b-1 {
  border: 1px solid #e5e5e5;
}

.formError {
  color: red;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

/* u-white */
.u-white {
  background: #fff;
}
/*# sourceMappingURL=style.css.map */
