@charset "UTF-8";
/* c-banner */
.c-banner {
  display: none;
  position: fixed;
  bottom: 40px;
  bottom: 2.5rem;
  right: 17px;
  right: 1.0625rem;
  z-index: 50;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-banner {
    width: 12.5rem;
  }
}
.c-banner__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c-banner__content {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) {
  .c-banner__content {
    top: 15%;
  }
}
.c-banner__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .c-banner__ttl {
    font-size: 0.8125rem;
  }
}
.c-banner__ttl strong {
  font-size: 22px;
  font-size: 1.375rem;
  -webkit-text-decoration: underline solid #f6e06c 3px;
          text-decoration: underline solid #f6e06c 3px;
  -webkit-text-decoration: underline solid #f6e06c 0.1875rem;
          text-decoration: underline solid #f6e06c 0.1875rem;
}
@media screen and (max-width: 768px) {
  .c-banner__ttl strong {
    font-size: 0.875rem;
  }
}
.c-banner__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-banner__text {
    font-size: 0.75rem;
  }
}
.c-banner__flex {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 10px;
  gap: 0.625rem;
}
.c-banner__thumb {
  width: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-banner__thumb {
    width: 30%;
  }
}

.c-banner__close {
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: -15px;
  top: -0.9375rem;
  z-index: 10;
  display: block;
  background: url(../img/common/close_icon.png) no-repeat center/contain;
  width: 31px;
  width: 1.9375rem;
  height: 31px;
  height: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .c-banner__close {
    top: -0.625rem;
    right: 0.3125rem;
  }
}
.c-banner__close:hover {
  opacity: 1;
}

.c-banner__img {
  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;
}
.c-banner__img:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-banner__img .c-banner__wrapper figure img {
  border-radius: 1.25rem;
  border: 5px solid #fff;
  border: 0.3125rem solid #fff;
}

/* c-breadcrumb */
.c-breadcrumb {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    text-align: left;
  }
}

.c-breadcrumb__item {
  display: inline;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 8px;
  top: 0.5rem;
  left: -16px;
  left: -1rem;
  background: url(../img/common/breadcrumb_icon_001.png) no-repeat center/contain;
}
.c-breadcrumb__item:first-child {
  font-family: "Montserrat", sans-serif;
}
.c-breadcrumb__item a,
.c-breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb__item a,
  .c-breadcrumb__item span {
    display: inline;
  }
}

/* c-card */
.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;
  height: 100%;
  background: #fff;
  border-radius: 0.625rem;
  min-height: 490px;
  min-height: 30.625rem;
  padding: 10px 10px 25px;
  padding: 0.625rem 0.625rem 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;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-card__inner {
    min-height: unset;
  }
}
.c-card__inner:hover {
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, .15);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, .15);
  opacity: 1;
}
.c-card__inner:hover .c-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-card__inner:hover .c-card__title,
.c-card__inner:hover .c-card__name {
  color: #d62042;
}
.c-card__inner:hover .c-card__link::after {
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
}
.c-card__inner:hover .c-card__link > span::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.c-card__inner-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.625rem;
  min-height: 490px;
  min-height: 30.625rem;
  padding: 10px 10px 25px;
  padding: 0.625rem 0.625rem 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;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-card__inner-div {
    min-height: unset;
  }
}

.c-card__arrow {
  position: relative;
}
.c-card__arrow::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-card__arrow::after {
    width: 1.875rem;
    height: 1.875rem;
    right: 0.625rem;
  }
}
.c-card__arrow:hover::after {
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
}

.c-card__img {
  overflow: hidden;
  border-radius: 0.5rem;
}
.c-card__img img {
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-card__body {
    padding: 0 0.625rem;
    margin-top: 1.25rem;
  }
}

.c-card__date {
  display: inline-block;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-card__date {
    font-size: 1rem;
  }
}

.c-card__number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d62042;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

.c-card__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.63;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-card__title {
    font-size: 1.125rem;
  }
}
.c-card__title span {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-card__title span {
    font-size: 1.25rem;
  }
}

.c-card__company {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #555;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-card__company {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    padding-right: 1.875rem;
  }
}

.c-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 8px;
  gap: 0.5rem 0.5rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-card__category {
    margin-top: 1.875rem;
  }
}
.c-card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #555;
  border: 1px solid #555;
  border: 0.0625rem solid #555;
  border-radius: 0.8125rem;
  padding: 2px 10px 3px;
  padding: 0.125rem 0.625rem 0.1875rem;
}

.c-card__text {
  line-height: 2;
  letter-spacing: 0.08em;
  color: #454a4d;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.c-card__position {
  letter-spacing: 0.08em;
}

.c-card__name {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-card__name {
    font-size: 1.5rem;
  }
}

.c-card__results,
.c-card__list {
  color: #555;
  line-height: 1.875;
  letter-spacing: 0.08em;
}

.c-card__results {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.c-card__list {
  padding-right: 35px;
  padding-right: 2.1875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-card__list {
    padding-right: 1.5625rem;
  }
}

.c-card__list-item {
  padding-left: 1em;
  position: relative;
}
.c-card__list-item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.c-card__link {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-left: auto;
  margin-top: auto;
  pointer-events: none;
  white-space: nowrap;
}

.c-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}
.c-card__footer .c-card__category,
.c-card__footer .c-card__link {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.c-card__footer .c-card__link {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
.c-card__footer--column {
  -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;
}
.c-card__footer--column .c-card__category,
.c-card__footer--column .c-card__link {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.c-card__footer--column .c-card__link {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  height: 30px;
  height: 1.875rem;
}

/* c-entitle */
/* c-heading */
.c-heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.5rem;
  }
}

/* c-horizaontal-card */
.c-horizaontal-card__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;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  padding: 10px 135px 10px 10px;
  padding: 0.625rem 8.4375rem 0.625rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__inner {
    display: block;
    padding: 0.625rem 0.625rem 2.5rem;
  }
}
.c-horizaontal-card__inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-horizaontal-card__inner::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    right: 0.625rem;
    bottom: 0.625rem;
    -webkit-transform: unset;
            transform: unset;
  }
}
.c-horizaontal-card__inner:hover {
  opacity: 1;
}
.c-horizaontal-card__inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__inner:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}
.c-horizaontal-card__inner:hover .c-horizaontal-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-horizaontal-card__inner:hover .c-horizaontal-card__title,
.c-horizaontal-card__inner:hover .c-horizaontal-card__text {
  color: #d62042;
}

.c-horizaontal-card__img {
  width: 37%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__img {
    width: 100%;
  }
}
.c-horizaontal-card__img img {
  border-radius: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-horizaontal-card__body {
  width: 59%;
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__body {
    width: 100%;
    padding: 0 0.625rem;
    margin-top: 1.25rem;
  }
}

.c-horizaontal-card__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) {
  .c-horizaontal-card__header {
    display: block;
  }
}

.c-horizaontal-card__subtitle {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__subtitle {
    font-size: 1.125rem;
  }
}

.c-horizaontal-card__category {
  margin-left: 22px;
  margin-left: 1.375rem;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__category {
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}
.c-horizaontal-card__category span {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: #646464;
  border-radius: 0.6875rem;
  min-width: 123px;
  min-width: 7.6875rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
}

.c-horizaontal-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-horizaontal-card__title {
    font-size: 1.25rem;
  }
}

.c-horizaontal-card__text {
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* c-link */
.c-link {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  padding-right: 50px;
  padding-right: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-link {
    font-size: 1rem;
    padding-right: 2.5rem;
  }
}
.c-link::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: -6px;
  top: -0.375rem;
  right: 0;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-link::after {
    width: 1.875rem;
    height: 1.875rem;
    top: -0.125rem;
  }
}
.c-link:hover {
  opacity: 1;
}
.c-link:hover::after {
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
}
.c-link:hover > span::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.c-link > span {
  display: inline-block;
  position: relative;
}
.c-link > span::before {
  position: absolute;
  content: "";
  background: #a6a6a6;
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.c-link .en {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-link .en {
    font-size: 1.125rem;
  }
}

.c-link--back {
  padding-right: 0;
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .c-link--back {
    padding-left: 2.5rem;
  }
}
.c-link--back::after {
  right: unset;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-link--back:hover::after {
  -webkit-transform: scale(1.16) rotate(180deg);
          transform: scale(1.16) rotate(180deg);
}

/* c-list */
.c-list {
  background: #fff;
  border-bottom: 1px solid rgba(214, 32, 66, .4);
  border-bottom: 0.0625rem solid rgba(214, 32, 66, .4);
}

.c-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(214, 32, 66, .4);
  border-top: 0.0625rem solid rgba(214, 32, 66, .4);
}
@media screen and (max-width: 768px) {
  .c-list__item {
    display: block;
    padding: 1.25rem 1.25rem;
  }
}
.c-list__item:last-child .c-list__title {
  position: relative;
}
.c-list__item:last-child .c-list__title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  bottom: -1px;
  bottom: -0.0625rem;
  background: #d62042;
}
@media screen and (max-width: 768px) {
  .c-list__item:last-child .c-list__title::after {
    display: none;
  }
}

.c-list__title {
  width: 300px;
  width: 18.75rem;
  min-width: 300px;
  min-width: 18.75rem;
  font-weight: 700;
  padding: 24px 45px;
  padding: 1.5rem 2.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-list__title {
    width: 100%;
    min-width: unset;
    padding: 0;
  }
}
.c-list__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  top: -1px;
  top: -0.0625rem;
  background: #d62042;
}
@media screen and (max-width: 768px) {
  .c-list__title::before {
    display: none;
  }
}

.c-list__text {
  letter-spacing: 0.02em;
  line-height: 2;
  padding: 24px 50px;
  padding: 1.5rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .c-list__text {
    padding: 0;
    margin-top: 0.625rem;
  }
}
.c-list__text li {
  padding-left: 1em;
  position: relative;
}
.c-list__text li::before {
  position: absolute;
  content: "・";
  color: #d62042;
  left: 0;
  top: 0;
}

/* c-movie-card */
.c-movie-card__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: 43px 80px 43px 43px;
  padding: 2.6875rem 5rem 2.6875rem 2.6875rem;
  -webkit-transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-movie-card__inner {
    display: block;
    padding: 1.875rem 0.625rem;
  }
}
.c-movie-card__inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/popup_icon.png) no-repeat center/contain;
  -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-movie-card__inner::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.625rem;
    bottom: 1.25rem;
  }
}
.c-movie-card__inner:hover {
  opacity: 1;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1) !important;
          box-shadow: 0 0 50px rgba(0, 0, 0, .1) !important;
}
.c-movie-card__inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-movie-card__inner:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}
.c-movie-card__inner:hover .c-movie-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-movie-card__inner:hover .c-movie-card__title {
  color: #d62042;
}

.c-movie-card__img {
  width: 24%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-movie-card__img {
    width: 100%;
  }
}
.c-movie-card__img img {
  border-radius: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-movie-card__body {
  width: 73%;
}
@media screen and (max-width: 768px) {
  .c-movie-card__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.c-movie-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.67;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-movie-card__title {
    font-size: 1rem;
  }
}

.c-movie-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-movie-card__text {
    display: block;
    margin-top: 0.9375rem;
  }
}

.c-movie-card__guest {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid #555;
  border-radius: 0.6875rem;
  padding: 1px 10px;
  padding: 0.0625rem 0.625rem;
}

.c-movie-card__name {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 9px;
  margin-left: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .c-movie-card__name {
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}
.c-movie-card__name span {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-movie-card__name span {
    display: block;
    margin-left: 0;
  }
}

/* c-pagination */
.c-pagination {
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .c-pagination {
    padding-top: 2.5rem;
  }
}
.c-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination li {
  margin: 4px;
  margin: 0.25rem;
}
.c-pagination a,
.c-pagination 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: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #72797d;
}
.c-pagination a {
  background: #fff;
}
.c-pagination a.prev, .c-pagination a.next {
  position: relative;
}
.c-pagination a.prev::before, .c-pagination a.next::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 13px;
  height: 0.8125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-pagination a.prev {
  background: url(../img/common/arrow_icon_gray_002.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-pagination a.prev:hover {
  opacity: 1;
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
  background: url(../img/common/arrow_icon_red_004.png) no-repeat center/contain;
}
.c-pagination a.next {
  background: url(../img/common/arrow_icon_gray_001.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-pagination a.next:hover {
  opacity: 1;
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
  background: url(../img/common/arrow_icon_red_003.png) no-repeat center/contain;
}
.c-pagination span.current {
  color: #fff;
  background: #72797d;
}

/* c-service-unit */
.c-service-unit + .c-service-unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.c-service-unit:nth-child(even) .c-service-unit__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-service-unit:nth-child(even) .c-service-unit__body {
  padding: 30px 60px 0 40px;
  padding: 1.875rem 3.75rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit:nth-child(even) .c-service-unit__body {
    padding: 0 0.625rem 1.25rem;
  }
}
.c-service-unit:nth-child(even) .c-service-unit__number {
  left: 5px;
  left: 0.3125rem;
}
.c-service-unit:nth-child(odd) .c-service-unit__body {
  padding: 30px 40px 0 60px;
  padding: 1.875rem 2.5rem 0 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit:nth-child(odd) .c-service-unit__body {
    padding: 0 0.625rem 1.25rem;
  }
}
.c-service-unit:nth-child(odd) .c-service-unit__number {
  right: 5px;
  right: 0.3125rem;
}
.c-service-unit:nth-child(2) .c-link {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit:nth-child(2) .c-link {
    margin-top: 2.5rem;
  }
}
.c-service-unit .c-link {
  margin-top: 90px;
  margin-top: 5.625rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-service-unit .c-link {
    margin-top: 2.5rem;
    display: block;
    text-align: end;
  }
}

.c-service-unit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit__inner {
    display: block;
  }
}
.c-service-unit__inner:hover {
  opacity: 1;
}
.c-service-unit__inner:hover .c-service-unit__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-service-unit__inner:hover .c-service-unit__title {
  color: #d62042;
}
.c-service-unit__inner:hover .c-link::after {
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
}
.c-service-unit__inner:hover .c-link span::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.c-service-unit__img {
  width: 49%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-service-unit__img {
    width: 100%;
  }
}
.c-service-unit__img img {
  border-radius: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-service-unit__body {
  width: 50%;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-service-unit__body {
    width: 100%;
    display: block;
    margin-top: 1.25rem;
  }
}

.c-service-unit__number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #d62042;
  letter-spacing: 0.08em;
  position: absolute;
  top: 15px;
  top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit__number {
    position: static;
  }
}

.c-service-unit__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-service-unit__title {
    font-size: 1.375rem;
    margin-top: 0.625rem;
  }
}

.c-service-unit__text {
  color: #555;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .c-service-unit__text {
    margin-top: 1.25rem;
  }
}

.p-top-service__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 40px;
  gap: 0 2.5rem;
  margin-top: 92px;
  margin-top: 5.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__list-wrapper {
    display: block;
    margin-top: 3.75rem;
  }
}

.p-top-service__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
}

.p-top-service__list-item a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 35px 20px;
  padding: 2.1875rem 1.25rem;
  -webkit-transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-service__list-item a {
    font-size: 1rem;
    padding: 1.25rem 2.1875rem 1.25rem 0;
  }
}
.p-top-service__list-item a::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 33px;
  top: 2.0625rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-top-service__list-item a::after {
    width: 1.875rem;
    height: 1.875rem;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-top-service__list-item a:hover {
  opacity: 1;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  color: #d62042;
}
.p-top-service__list-item a:hover::after {
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
}
@media screen and (max-width: 768px) {
  .p-top-service__list-item a:hover::after {
    -webkit-transform: scale(1.26) translateY(-50%);
            transform: scale(1.26) translateY(-50%);
  }
}
.p-top-service__list-item span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #d62042;
  min-width: 25px;
  min-width: 1.5625rem;
  margin-right: 45px;
  margin-right: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__list-item span {
    display: block;
    margin-right: 0;
    margin-bottom: 0.3125rem;
  }
}

/* c-subtitle */
.c-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(51, 51, 51, .5);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .c-subtitle {
    font-size: 1.125rem;
  }
}

/* c-text */
.c-text {
  line-height: 2;
  letter-spacing: 0.08em;
}

/* c-title */
.c-title {
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.75rem;
  }
}
.c-title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-title .en {
    font-size: 2rem;
  }
}

/* c-unit */
.c-unit__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;
}
@media screen and (max-width: 768px) {
  .c-unit__inner {
    display: block;
  }
}

.c-unit__body {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .c-unit__body {
    width: 100%;
  }
}

.c-unit__number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #72797d;
}
@media screen and (max-width: 768px) {
  .c-unit__number {
    font-size: 1rem;
  }
}

.c-unit__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .c-unit__title {
    font-size: 1.375rem;
  }
}
.c-unit__title span {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-unit__title span {
    font-size: 1.625rem;
  }
}

.c-unit__text {
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-unit__text {
    margin-top: 1.25rem;
  }
}
.c-unit__text span {
  font-weight: 700;
}

.c-unit__list {
  border-top: 1px solid #9ba4aa;
  border-top: 0.0625rem solid #9ba4aa;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-unit__list {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}

.c-unit__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.08em;
  padding-left: 13px;
  padding-left: 0.8125rem;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-unit__list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background: #d62042;
  left: 0;
  top: 10px;
  top: 0.625rem;
}

.c-unit__list-title {
  font-weight: 700;
  min-width: 110px;
  min-width: 6.875rem;
}

.c-unit__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-unit__list-text span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
.c-unit__list-text a {
  color: #d62042;
}
.c-unit__list-text a::before {
  content: "─";
  padding-right: 5px;
  padding-right: 0.3125rem;
  color: #000;
}

.c-unit__img {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .c-unit__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.c-unit__img img {
  border-radius: 1rem;
}

/* リキッドレイアウト対応 */
/* ここは編集しないでください */
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", sans-serif;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.875rem;
  }
}

/* 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;
}

/* 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;
}

button:focus {
  outline: auto;
}

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.5%;
}
@media screen and (max-width: 768px) {
  .l-article {
    width: 100%;
  }
}

/* l-cards */
.l-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 22px;
  gap: 3.125rem 1.375rem;
}
@media screen and (max-width: 768px) {
  .l-cards {
    display: block;
  }
}

.l-cards__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.91667rem);
          flex: 0 1 calc(33.333% - 0.91667rem);
}
@media screen and (max-width: 768px) {
  .l-cards__item + .l-cards__item {
    margin-top: 1.25rem;
  }
}

/* l-footer　*/
/* l-header */
/* l-hidden */
.l-hidden {
  overflow: hidden;
}

.l-inner {
  width: 100%;
  max-width: 1330px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* l-link */
.l-link {
  text-align: right;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* l-main */
/* l-page */
.l-page {
  background: #eef3f7;
  border-radius: 2rem;
  margin: 40px 40px 80px;
  margin: 2.5rem 2.5rem 5rem;
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .l-page {
    border-radius: 0;
    margin: 0 0 2.5rem;
    padding: 3.75rem 0;
  }
}

.js-border {
  -webkit-box-shadow: 0px 0.0625rem 0px #cbcbcb;
          box-shadow: 0px 0.0625rem 0px #cbcbcb;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.js-border:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.js-border-top {
  -webkit-box-shadow: 0px -0.0625rem 0px #cbcbcb, 0px 0.0625rem 0px #cbcbcb;
          box-shadow: 0px -0.0625rem 0px #cbcbcb, 0px 0.0625rem 0px #cbcbcb;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.js-border-top:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.js-border.hovered {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

/* l-section-header */
.l-section-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;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-section-header {
    display: block;
    margin-top: 1.875rem;
  }
}

/* l-section-heading */
.l-section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-section-heading .c-link {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .l-section-heading .c-link {
    margin-bottom: 0;
  }
}

.l-section-link {
  text-align: right;
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* l-section */
.l-section {
  background: #eef3f7;
  border-radius: 2rem;
  padding: 90px 0;
  padding: 5.625rem 0;
  margin: 40px;
  margin: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-section {
    border-radius: 1.25rem;
    padding: 2.5rem 0;
    margin: 1.25rem;
  }
}

.l-section--black {
  background: #333;
}
.l-section--black .c-subtitle {
  color: rgba(255, 255, 255, .5);
}
.l-section--black .c-title {
  color: #fff;
}
.l-section--black .c-title .u-fade-title::before {
  background: #fff;
}
.l-section--black .c-text {
  color: #fff;
}
.l-section--black .c-link {
  color: #fff;
}
.l-section--black .c-link span::before {
  background: #fff;
}
.l-section--black .c-card__link {
  color: #333;
}
.l-section--black .c-card__link span::before {
  background: #333;
}

/* l-sidebar */
.l-sidebar {
  width: 28%;
  position: sticky;
  right: 0;
  top: 90px;
  top: 5.625rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-sidebar {
    width: 100%;
    position: static;
    margin-top: 3.75rem;
  }
}

/* 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__none-text {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 auto;
}

.p-archive-case__cards {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-archive-case__cards {
    margin-top: 2.5rem;
  }
}
.p-archive-case__cards .c-card__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-archive-case__cards .c-card__text {
  margin-bottom: 0;
}
.p-archive-case__cards .c-card__category {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

/* p-single-case */
/* p-archive-column */
.p-archive-column__cards {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-archive-column__cards {
    margin-top: 2.5rem;
  }
}

/* p-single-column */
/* p-category */
.p-category__header {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  background: #d62042;
  padding: 12px 35px;
  padding: 0.75rem 2.1875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-category__header {
    font-size: 1rem;
    padding: 0.75rem 1.5625rem;
  }
}
.p-category__header::after {
  position: absolute;
  content: "";
  width: 17px;
  width: 1.0625rem;
  height: 10px;
  height: 0.625rem;
  top: 22px;
  top: 1.375rem;
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/accordion_icon.png) no-repeat center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .p-category__header::after {
    width: 0.9375rem;
    height: 0.5rem;
    right: 1.25rem;
  }
}
.p-category__header.active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.p-category__header:hover {
  opacity: 1;
}

.p-category__body {
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: 47px 40px 50px 68px;
  padding: 2.9375rem 2.5rem 3.125rem 4.25rem;
}
@media screen and (max-width: 768px) {
  .p-category__body {
    padding: 1.875rem 1.25rem;
  }
}

.p-category__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-category__unit {
    display: block;
  }
}
.p-category__unit + .p-category__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-category__unit + .p-category__unit {
    margin-top: 1.25rem;
  }
}

.p-category__subtitle {
  min-width: 157px;
  min-width: 9.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-category__subtitle {
    padding-top: 0;
  }
}

.p-category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-category__items {
    gap: 0.375rem 0.375rem;
    margin-top: 0.625rem;
  }
}

.p-category__item button {
  display: block;
  color: #333;
  border-radius: 1.3125rem;
  border: 1px solid #9ba4aa;
  border: 0.0625rem solid #9ba4aa;
  letter-spacing: 0.08em;
  padding: 8px 25px;
  padding: 0.5rem 1.5625rem;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-category__item button {
    font-size: 0.8125rem;
    padding: 0.25rem 0.9375rem;
  }
}
.p-category__item button.active {
  color: #fff;
  font-weight: 500;
  background: #d62042;
  border-color: #d62042;
}
.p-category__item button.active:hover {
  color: #fff;
  font-weight: 500;
  background: #d62042;
  border-color: #d62042;
}
.p-category__item button:hover {
  opacity: 1;
  background: #f7d2d9;
  border-color: #f7d2d9;
}

/* p-detail */
.p-detail {
  background: #EEF3F7;
  border-radius: 2rem;
  padding: 40px 60px 140px;
  padding: 2.5rem 3.75rem 8.75rem;
  margin: 100px 40px 75px;
  margin: 6.25rem 2.5rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-detail {
    border-radius: 1.25rem;
    padding: 1.25rem 0 2.5rem;
    margin: 3.75rem 1.25rem 2.5rem;
  }
}

.p-detail__breadcrumb {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-detail__breadcrumb {
    padding: 0 1.25rem;
  }
}
.p-detail__breadcrumb .c-breadcrumb__item:not(:first-child)::before {
  background: url(../img/common/breadcrumb_icon_002.png) no-repeat center/contain;
}
.p-detail__breadcrumb a {
  color: rgba(46, 48, 50, .3);
}
.p-detail__breadcrumb span {
  color: #d62042;
}

/* p-p-drawer */
.p-drawer {
  position: fixed;
  z-index: 20;
  top: 60px;
  top: 3.75rem;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  padding-top: 100px;
  padding-top: 6.25rem;
  padding: 30px 20px 40px;
  padding: 1.875rem 1.25rem 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
}
.p-drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.p-drawer__item + .p-drawer__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-drawer__item span,
.p-drawer__item a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2d3032;
  font-weight: 500;
}
.p-drawer__item > a,
.p-drawer__item > span {
  padding: 5px 0;
  padding: 0.3125rem 0;
}
.p-drawer__item > span {
  position: relative;
}
.p-drawer__item > span::after, .p-drawer__item > span::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 2px;
  height: 0.125rem;
  background: #2d3032;
  top: 50%;
  right: 10px;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-drawer__item > span::before {
  top: 47%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-drawer__item > span.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-drawer__child {
  display: none;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.p-drawer__child-units {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-drawer__child-unit {
  background: #eef3f7;
  border-radius: 0.625rem;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}
.p-drawer__child-unit + .p-drawer__child-unit {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__child-link {
  padding: 5px 0;
  padding: 0.3125rem 0;
}
.p-drawer__child-link span {
  display: inline-block;
  font-weight: 700;
  background: url(../img/common/link_icon_001.png) no-repeat center right/20px;
  background: url(../img/common/link_icon_001.png) no-repeat center right/1.25rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}

.p-drawer__child-item a {
  padding: 5px 0;
  padding: 0.3125rem 0;
}
.p-drawer__child-item a span {
  display: inline-block;
  font-weight: 700;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/13px;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/0.8125rem;
  padding: 0 20px 0 0;
  padding: 0 1.25rem 0 0;
}

.p-drawer__child-subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-drawer__child-sublink {
  font-weight: 700;
}
.p-drawer__child-sublink span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/13px;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/0.8125rem;
  padding-right: 18px;
  padding-right: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-drawer__child-sublink span {
    font-size: 1.125rem;
  }
}

.p-drawer__child-subitems {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-drawer__child-subitem a {
  padding: 5px 0;
  padding: 0.3125rem 0;
}
.p-drawer__child-subitem a span {
  display: inline-block;
  background: url(../img/common/arrow_icon_red_005.png) no-repeat top 5px right/7px;
  background: url(../img/common/arrow_icon_red_005.png) no-repeat top 0.3125rem right/0.4375rem;
  padding: 0 12px 0 0;
  padding: 0 0.75rem 0 0;
}

.p-drawer__btns {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__btn {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  border-radius: 1.875rem;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  position: relative;
  z-index: 1;
}
.p-drawer__btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-drawer__btn:first-child {
  color: #fff;
}
.p-drawer__btn:first-child:hover {
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-drawer__btn:first-child:hover::before {
  opacity: 0;
}
.p-drawer__btn:nth-child(2) {
  color: #d62042;
  border-color: #d62042;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-drawer__btn:nth-child(2)::before {
  opacity: 0;
}
.p-drawer__btn:nth-child(2):hover {
  color: #fff;
  background: none;
  border-color: #fff;
}
.p-drawer__btn:nth-child(2):hover::before {
  opacity: 1;
}
.p-drawer__btn:hover {
  opacity: 1;
}

.p-drawer__language {
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}
.p-drawer__language span {
  font-weight: 700;
  color: #d62042;
}
.p-drawer__language a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-drawer__language a:hover {
  opacity: 1;
  color: #d62042;
}

.p-drawer__recruit {
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 500px;
  max-width: 31.25rem;
}

/* p-fnav */
.p-fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-fnav {
    display: block;
  }
}

.p-fnav__items:nth-child(2) {
  margin-left: 60px;
  margin-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__items:nth-child(2) {
    margin-left: 0;
    margin-top: 1.0625rem;
  }
}
.p-fnav__items:nth-child(3) {
  margin-left: 72px;
  margin-left: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__items:nth-child(3) {
    margin-left: 0;
    margin-top: 1.0625rem;
  }
}
.p-fnav__items:nth-child(4) {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__items:nth-child(4) {
    margin-top: 1.0625rem;
  }
}

.p-fnav__item + .p-fnav__item {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
.p-fnav__item > a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-fnav__item > a {
    font-size: 0.9375rem;
  }
}
.p-fnav__item > a[target=_blank] {
  position: relative;
}
.p-fnav__item > a[target=_blank]::after {
  position: absolute;
  top: 50%;
  right: -18px;
  right: -1.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  width: 0.9375rem;
  height: 14px;
  height: 0.875rem;
  background: url("../img/common/external_link_icon.png") no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-fnav__subitem-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__subitem-wrapper {
    display: block;
    margin-top: 0.625rem;
  }
}

.p-fnav__subitems + .p-fnav__subitems {
  margin-left: 74px;
  margin-left: 4.625rem;
}
@media screen and (max-width: 768px) {
  .p-fnav__subitems + .p-fnav__subitems {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.p-fnav__subitem + .p-fnav__subitem {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-fnav__subitem a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #72797D;
  padding-left: 1.2em;
  position: relative;
}
.p-fnav__subitem a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: -2px;
  top: -0.125rem;
}

/* p-footer */
.p-footer__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__text {
    margin-top: 1.875rem;
  }
}

.p-footer__content {
  background: #eef3f7;
  padding: 95px 0 100px;
  padding: 5.9375rem 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__content {
    padding: 3.75rem 0 2.5rem;
  }
}

.p-footer__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-footer__inner {
    display: block;
  }
}

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-footer__items {
    display: block;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__item {
    margin: 0 auto;
  }
}
.p-footer__item:first-child .p-footer__item-inner {
  padding-top: 77px;
  padding-top: 4.8125rem;
}
.p-footer__item:first-child .p-footer__item-img {
  width: 141px;
  width: 8.8125rem;
}
.p-footer__item:first-child .p-footer__item-btn {
  margin-top: 56px;
  margin-top: 3.5rem;
}
.p-footer__item:nth-child(2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__item:nth-child(2) {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}
.p-footer__item:nth-child(2) .p-footer__item-img {
  width: 225px;
  width: 14.0625rem;
}
.p-footer__item:nth-child(2) .p-footer__item-btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__item-inner {
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 50px 30px 30px;
  padding: 3.125rem 1.875rem 1.875rem;
  -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) {
  .p-footer__item-inner {
    width: 100%;
  }
}
.p-footer__item-inner:hover {
  opacity: 1;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.p-footer__item-inner:hover .p-footer__item-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-footer__item-inner:hover .p-footer__item-btn {
  background: #fff;
  color: #d62042;
  border-color: #d62042;
}
.p-footer__item-inner:hover .p-footer__item-btn::before {
  opacity: 0;
}

.p-footer__item-img {
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__item-btn {
  text-align: center;
  display: block;
  width: 260px;
  width: 16.25rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  border-radius: 1.625rem;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  margin: 0 auto;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__item-btn {
    font-size: 1rem;
  }
}
.p-footer__item-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}

.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #cbcbcb;
  border-top: 0.0625rem solid #cbcbcb;
  padding-top: 50px;
  padding-top: 3.125rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom {
    display: block;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

.p-footer__body {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-footer__body {
    width: 100%;
  }
}

.p-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__menu {
    display: block;
  }
}

.p-footer__menu-item {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__menu-item + .p-footer__menu-item {
    margin-top: 0.625rem;
  }
}
.p-footer__menu-item a {
  display: block;
  width: 206px;
  width: 12.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #72797d;
  border-radius: 0.625rem;
  border: 1px solid #72797d;
  border: 0.0625rem solid #72797d;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  background: url(../img/common/arrow_icon_gray.png) no-repeat center right 13px/12px;
  background: url(../img/common/arrow_icon_gray.png) no-repeat center right 0.8125rem/0.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__menu-item a {
    margin: 0 auto;
  }
}

.p-footer__logos {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-footer__logos {
    width: 100%;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.p-footer__logo {
  width: 306px;
  width: 19.125rem;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 12.5rem;
    margin: 0 auto;
  }
}

.p-footer__tel {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-footer__tel span {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.p-footer__time {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.p-footer__time span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.p-footer__sns {
  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;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__sns-item {
  display: block;
  width: 35px;
  width: 2.1875rem;
}
.p-footer__sns-item + .p-footer__sns-item {
  margin-left: 27px;
  margin-left: 1.6875rem;
}

.p-footer__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 135px;
  margin-top: 8.4375rem;
}
@media screen and (max-width: 768px) {
  .p-footer__link-wrapper {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.25rem;
  }
}

.p-footer__link + .p-footer__link {
  margin-left: 32px;
  margin-left: 2rem;
}
.p-footer__link a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #555;
}

.p-footer__pmark {
  display: block;
  width: 113px;
  width: 7.0625rem;
  max-width: 100%;
  margin-left: 42px;
  margin-left: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__pmark {
    margin: 1.25rem auto 0;
  }
}

.p-footer__copyright {
  text-align: center;
  color: #888;
  letter-spacing: 0.04em;
  padding: 20px 0;
  padding: 1.25rem 0;
}

/* p-form */
.p-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 25px;
  gap: 1.25rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-form__items {
    display: block;
  }
}

.p-form__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 768px) {
  .p-form__item + .p-form__item {
    margin-top: 1.25rem;
  }
}

.p-form__item--half {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.78125rem);
          flex: 0 1 calc(50% - 0.78125rem);
}

.p-form__item-label label {
  display: inline-block;
  letter-spacing: 0.08em;
}
.p-form__item-label span {
  display: inline-block;
  color: #d62042;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.p-form__item-input {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-form__item-input input[type=text], .p-form__item-input input[type=email], .p-form__item-input input[type=tel], .p-form__item-input textarea {
  background: #EEF3F7;
  border-radius: 0.5rem;
  width: 100%;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}
.p-form__item-input input[type=text], .p-form__item-input input[type=email], .p-form__item-input input[type=tel] {
  height: 60px;
  height: 3.75rem;
}
.p-form__item-input textarea {
  resize: none;
  height: 150px;
  height: 9.375rem;
}

.p-form__check {
  text-align: center;
  margin-top: 55px;
  margin-top: 3.4375rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-form__check {
    margin-top: 2.5rem;
  }
}
.p-form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 35px;
  padding-left: 2.1875rem;
  position: relative;
}
.p-form__check input[type=checkbox] + span::before, .p-form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.p-form__check input[type=checkbox] + span::before {
  border: 2px solid #C7CED4;
  border: 0.125rem solid #C7CED4;
  border-radius: 0.25rem;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #333;
  border-bottom: 0.1875rem solid #333;
  border-left: 3px solid #333;
  border-left: 0.1875rem solid #333;
  height: 9px;
  height: 0.5625rem;
  width: 15px;
  width: 0.9375rem;
  margin-top: -2px;
  margin-top: -0.125rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 8px;
  top: 0.5rem;
}
.p-form__check span {
  display: inline-block;
  color: #d62042;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-form__check span {
    margin-right: 0;
  }
}
.p-form__check a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-underline-offset: 0.1875rem;
}
.p-form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-form__btn {
  display: block;
  width: 317px;
  width: 19.8125rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
  z-index: 1;
}
.p-form__btn::before, .p-form__btn::after {
  position: absolute;
  content: "";
}
.p-form__btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-form__btn::after {
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-form__btn:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-form__btn:hover::before {
  opacity: 0;
}
.p-form__btn:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
}

/* p-fv */
.p-fv {
  padding: 155px 0 30px;
  padding: 9.6875rem 0 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-fv {
    padding: 5rem 0 0;
  }
}
.p-fv::before, .p-fv::after {
  position: absolute;
  content: "";
}
.p-fv::before {
  left: 0;
  top: 0;
  bottom: 175px;
  bottom: 10.9375rem;
  width: 100%;
  background: #EEF3F7;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .p-fv::before {
    bottom: 1.875rem;
  }
}
.p-fv::after {
  position: absolute;
  content: "";
  height: 490px;
  height: 30.625rem;
  width: 900px;
  width: 56.25rem;
  top: 0;
  left: 63%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/common/mv_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-fv::after {
    left: 50%;
    height: 11.25rem;
    width: 21.25rem;
  }
}

.p-fv__inner {
  max-width: 1650px;
  max-width: 103.125rem;
}

.p-fv__title {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 2.25rem;
  }
}
.p-fv__title .u-fade-title::before {
  background: #d62042;
}

.p-fv__breadcrumb {
  padding-right: 60px;
  padding-right: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-fv__breadcrumb {
    padding-right: 0;
    margin-top: 0.9375rem;
  }
}
.p-fv__breadcrumb .c-breadcrumb__item:not(:first-child)::before {
  background: url(../img/common/breadcrumb_icon_002.png) no-repeat center/contain;
}
.p-fv__breadcrumb a {
  color: rgba(46, 48, 50, .3);
}
.p-fv__breadcrumb span {
  color: #d62042;
}

.p-fv__img {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-fv__img {
    margin-top: 0.3125rem;
  }
}
.p-fv__img img {
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .p-fv__img img {
    border-radius: 0.625rem;
  }
}

/* p-gnav */
.p-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-gnav__overlay {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, .3);
  z-index: 2;
  pointer-events: none;
}

.p-gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.p-gnav__item + .p-gnav__item {
  margin-left: 33px;
  margin-left: 2.0625rem;
}
@media screen and (max-width: 1600px) {
  .p-gnav__item + .p-gnav__item {
    margin-left: 1.5625rem;
  }
}
.p-gnav__item > a, .p-gnav__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #2D3032;
  font-weight: 500;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-gnav__item > a:hover, .p-gnav__item > span:hover {
  opacity: 1;
  color: #d62042;
}
.p-gnav__item > span {
  padding-right: 15px;
  padding-right: 0.9375rem;
  background: url(../img/common/gnav_icon_black.png) no-repeat center right/10px;
  background: url(../img/common/gnav_icon_black.png) no-repeat center right/0.625rem;
}
.p-gnav__item > span.active {
  color: #d62042;
  background: url(../img/common/gnav_icon_red.png) no-repeat center right/10px;
  background: url(../img/common/gnav_icon_red.png) no-repeat center right/0.625rem;
}

.p-gnav__child {
  display: none;
  position: absolute;
  top: 95px;
  top: 5.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1840px;
  width: 115rem;
  max-width: 96%;
  z-index: 3;
}

.p-gnav__child-inner {
  max-width: 1560px;
  max-width: 97.5rem;
}

.p-gnav__child-content {
  background: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 0px 68px rgba(51, 51, 51, .27);
          box-shadow: 0px 0px 68px rgba(51, 51, 51, .27);
  padding: 65px 0;
  padding: 4.0625rem 0;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-height: 85vh;
}
.p-gnav__child-content::before {
  position: absolute;
  content: "";
}

.p-gnav__child-link {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-right: 55px;
  padding-right: 3.4375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.p-gnav__child-link::after {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
}
.p-gnav__child-link:hover {
  color: #d62042;
}

.p-gnav__child-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
}
.p-gnav__child-items--service {
  display: grid;
  gap: 20px;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-gnav__child-item {
  position: relative;
}
.p-gnav__child-item a {
  background-color: #EEF3F7;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-gnav__child-item a::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 15px;
  top: 0.9375rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow_icon_red.png) no-repeat center right/20px;
  background: url(../img/common/arrow_icon_red.png) no-repeat center right/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;
}
.p-gnav__child-item a:hover {
  opacity: 1;
  color: #fff;
  background-color: #d62042;
}
.p-gnav__child-item a:hover::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center right/20px;
  background: url(../img/common/arrow_icon_white.png) no-repeat center right/1.25rem;
}
.p-gnav__child-item--large {
  position: relative;
}
.p-gnav__child-item--large a {
  border-radius: 0.625rem;
  border: 1px solid #cbcbcb;
  padding: 40px 20px 40px 100px;
  padding: 2.5rem 1.25rem 2.5rem 6.25rem;
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-gnav__child-item--large a::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 35px;
  top: 2.1875rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-gnav__child-item--large a:hover {
  opacity: 1;
  border: 1px solid #d62042;
}
.p-gnav__child-item--large a:hover::after {
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
}
.p-gnav__child-item--large.industry a::before {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  top: 30px;
  top: 1.875rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/p-service-method_icon_001.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-gnav__child-item--large.theme::before {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  top: 30px;
  top: 1.875rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/p-service-method_icon_002.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-gnav__child-item--large.phase::before {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  top: 30px;
  top: 1.875rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/p-service-method_icon_003.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-gnav__child-unit-wrapper {
  width: 100%;
}

.p-gnav__child-units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
}
.p-gnav__child-units:first-child {
  width: 36%;
}
@media screen and (max-width: 1600px) {
  .p-gnav__child-units:first-child {
    width: 32%;
  }
}
.p-gnav__child-units:nth-child(2) {
  width: calc(64% - 1.25rem);
}
@media screen and (max-width: 1600px) {
  .p-gnav__child-units:nth-child(2) {
    width: calc(68% - 1.25rem);
  }
}
.p-gnav__child-units:nth-child(2) .p-gnav__child-unit:first-child .p-gnav__child-subitems, .p-gnav__child-units:nth-child(2) .p-gnav__child-unit:nth-child(2) .p-gnav__child-subitems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-gnav__child-units:nth-child(2) .p-gnav__child-unit:first-child .p-gnav__child-subitem {
  width: 30%;
}
.p-gnav__child-units:nth-child(2) .p-gnav__child-unit:first-child .p-gnav__child-subitem:not(:nth-child(3n+3)) {
  margin-right: 25px;
  margin-right: 1.5625rem;
}
.p-gnav__child-units:nth-child(2) .p-gnav__child-unit:nth-child(2) .p-gnav__child-subitem:nth-child(2n+1) {
  width: 45%;
  margin-right: 40px;
  margin-right: 2.5rem;
}
.p-gnav__child-units:nth-child(2) .p-gnav__child-unit:nth-child(2) .p-gnav__child-subitem:nth-child(2n+2) {
  width: 45%;
}
.p-gnav__child-units .p-gnav__child-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 0;
}
.p-gnav__child-units .p-gnav__child-unit:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-gnav__child-unit {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 1600px) {
  .p-gnav__child-unit {
    padding: 0.625rem 0;
  }
}

.p-gnav__child-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-gnav__child-sublink {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/13px;
  background: url(../img/common/arrow_icon_black.png) no-repeat center right/0.8125rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.p-gnav__child-sublink:hover {
  opacity: 1;
  color: #d62042;
  background: url(../img/common/arrow_icon_red.png) no-repeat center right/13px;
  background: url(../img/common/arrow_icon_red.png) no-repeat center right/0.8125rem;
}

.p-gnav__child-subitems {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-gnav__child-subitem a {
  display: inline-block;
  line-height: 2;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow_icon_red_005.png) no-repeat top 12px right/7px;
  background: url(../img/common/arrow_icon_red_005.png) no-repeat top 0.75rem right/0.4375rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-gnav__child-subitem a:hover {
  opacity: 1;
  color: #d62042;
}

.p-gnav__child-img {
  max-width: 400px;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-gnav__child-img:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-gnav__child-img a {
  display: inline-block;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-right: 12px;
  padding-right: 0.75rem;
}

/* p-p-hamburger */
.p-hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 15px;
  right: 0.9375rem;
  top: 25px;
  top: 1.5625rem;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  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: 8px;
  top: 0.5rem;
}
.p-hamburger__border:nth-child(3) {
  top: 16px;
  top: 1rem;
}

/* p-p-header */
.p-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  height: 6.25rem;
  z-index: 100;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 3.75rem;
  }
}
.p-header.active {
  background: white;
}

.p-header--top {
  background: #fff;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0 20px 0 40px;
  padding: 0 1.25rem 0 2.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 0 0.9375rem;
  }
}

.p-header__logo {
  width: 180px;
  width: 11.25rem;
  max-width: 100%;
}
@media screen and (max-width: 1600px) {
  .p-header__logo {
    width: 9.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 7.5rem;
  }
}
.p-header__logo a {
  display: block;
}

.p-header__text {
  font-size: 12px;
  font-size: 0.75rem;
  color: #808589;
  padding-left: -0.5em;
  text-indent: 0.5em;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-header__text {
    font-size: 0.625rem;
  }
}

.p-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  height: 100%;
}

.p-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  margin-left: 1.875rem;
}

.p-header__btn {
  display: block;
  text-align: center;
  width: 180px;
  width: 11.25rem;
  max-width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  border-radius: 1.875rem;
  padding: 19px 10px;
  padding: 1.1875rem 0.625rem;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  position: relative;
  z-index: 1;
}
.p-header__btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-header__btn:first-child {
  color: #fff;
}
.p-header__btn:first-child:hover {
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-header__btn:first-child:hover::before {
  opacity: 0;
}
.p-header__btn:nth-child(2) {
  background: #fff;
  color: #d62042;
  border-color: #d62042;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
.p-header__btn:nth-child(2)::before {
  opacity: 0;
}
.p-header__btn:nth-child(2):hover {
  color: #fff;
  background: #780216;
  border-color: #780216;
}
.p-header__btn:nth-child(2):hover::before {
  opacity: 1;
  background: #780216;
}
.p-header__btn:hover {
  opacity: 1;
}

.p-header__language {
  font-family: "Montserrat", sans-serif;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.p-header__language span {
  font-weight: 700;
  color: #d62042;
}
.p-header__language a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header__language a:hover {
  opacity: 1;
  color: #d62042;
}

/* p-menu */
.p-menu__content {
  width: 1600px;
  width: 100rem;
  max-width: calc(100% - 5rem);
  background: #EEF3F7;
  border-radius: 2rem;
  padding: 45px 0 60px;
  padding: 2.8125rem 0 3.75rem;
  margin: 40px auto 80px;
  margin: 2.5rem auto 5rem;
}
@media screen and (max-width: 768px) {
  .p-menu__content {
    width: auto;
    max-width: unset;
    border-radius: 1.25rem;
    padding: 3.75rem 0;
    margin: 1.25rem;
  }
}

.p-menu__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;
}
@media screen and (max-width: 768px) {
  .p-menu__header {
    display: block;
  }
}

.p-menu__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-menu__title {
    font-size: 1.5rem;
  }
}

.p-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 22px;
  gap: 1.375rem 1.375rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-menu__items {
    display: block;
  }
}

.p-menu__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.91667rem);
          flex: 0 1 calc(33.333% - 0.91667rem);
}
@media screen and (max-width: 768px) {
  .p-menu__item + .p-menu__item {
    margin-top: 0.625rem;
  }
}
.p-menu__item.current a {
  pointer-events: none;
  color: #fff;
  background: #d62042;
}
.p-menu__item.current a::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
}
.p-menu__item.current a span {
  color: #fff;
}
.p-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  min-height: 6.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0 35px;
  padding: 0 2.1875rem;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-menu__item a {
    min-height: 5rem;
    padding: 0 1.25rem;
    font-size: 1rem;
  }
}
.p-menu__item a::after {
  position: absolute;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-menu__item a:hover {
  opacity: 1;
  background: #d62042;
  color: #fff;
}
.p-menu__item a:hover::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
}
.p-menu__item a:hover span {
  color: #fff;
}
.p-menu__item span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #d62042;
  min-width: 42px;
  min-width: 2.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* p-mv */
.p-mv {
  background: #eef3f7;
  padding: 165px 0 10px;
  padding: 10.3125rem 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-top: 5rem;
  }
}

.p-mv__inner {
  max-width: 1650px;
  max-width: 103.125rem;
}

.p-mv__wrapper {
  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;
  padding-left: 70px;
  padding-left: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-mv__wrapper {
    padding-left: 0;
    display: block;
  }
}

.p-service-mv__text-box {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-service-mv__text-box {
    width: 100%;
  }
}

.p-mv__title {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-mv__title {
    width: 100%;
    font-size: 2.25rem;
  }
}
.p-mv__title .u-fade-title::before {
  background: #d62042;
}

.p-mv__img {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-mv__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.p-mv__img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-mv__img img {
    border-radius: 0.625rem;
  }
}

.p-mv__breadcrumb {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-right: 45px;
  padding-right: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-mv__breadcrumb {
    padding-right: 0;
  }
}
.p-mv__breadcrumb .c-breadcrumb__item:not(:first-child)::before {
  background: url(../img/common/breadcrumb_icon_002.png) no-repeat center/contain;
}
.p-mv__breadcrumb a {
  color: rgba(46, 48, 50, .3);
}
.p-mv__breadcrumb span {
  color: #d62042;
}

/* p-news */
.p-news__item-inner {
  display: block;
  min-height: 160px;
  min-height: 10rem;
  padding: 25px 120px 25px 50px;
  padding: 1.5625rem 7.5rem 1.5625rem 3.125rem;
  -webkit-transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news__item-inner {
    min-height: unset;
    padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  }
}
.p-news__item-inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-news__item-inner::after {
    width: 1.875rem;
    height: 1.875rem;
    right: 0.625rem;
  }
}
.p-news__item-inner:hover {
  opacity: 1;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.p-news__item-inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
.p-news__item-inner:hover .p-news__item-title {
  color: #d62042;
}
.p-news__item-inner.no-link {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
}
.p-news__item-inner.no-link::after {
  display: none;
}
.p-news__item-inner.no-link:hover {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
  opacity: 1;
  background: inherit;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-news__item-inner.no-link:hover .p-news__item-title {
  color: inherit;
}

.p-news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-news__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.08em;
  min-width: 120px;
  min-width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-news__item-date {
    min-width: 6.25rem;
  }
}

.p-news__item-category span {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  background-color: #fff;
  border: 1px solid #555;
  letter-spacing: 0.08em;
  padding: 2px 20px;
  padding: 0.125rem 1.25rem;
  color: #555;
}
@media screen and (max-width: 768px) {
  .p-news__item-category span {
    margin-left: 0.625rem;
  }
}

.p-news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.78;
  margin-top: 15px;
  margin-top: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-news__item-title {
    font-size: 1rem;
  }
}

/* p-post */
.p-post h2,
.p-post h3,
.p-post h4,
.p-post h5,
.p-post h6 {
  margin: 0;
  font-weight: 700;
}
.p-post h2 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #d62042;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-post h2 {
    font-size: 1.375rem;
    margin-bottom: 0.9375rem;
    margin-top: 1.875rem;
  }
}
.p-post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  border-left: 3px solid #d62042;
  border-left: 0.1875rem solid #d62042;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-post h3 {
    font-size: 1.125rem;
    padding-left: 0.625rem;
    margin-bottom: 0.9375rem;
    margin-top: 1.5625rem;
  }
}
.p-post h4,
.p-post h5,
.p-post h6 {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-post h4,
  .p-post h5,
  .p-post h6 {
    font-size: 1rem;
  }
}
.p-post p {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}
.p-post p:not(:last-child) {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.p-post p a {
  display: inline-block;
  text-decoration: underline;
  color: #d62042;
}
.p-post figure {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
.p-post figure:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-post figure.wp-block-image.aligncenter {
  text-align: center;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
.p-post figcaption {
  text-align: right;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-post img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-post img {
    border-radius: 0.5rem;
  }
}
.p-post ul:not(:last-child),
.p-post ol:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-post li {
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-left: 1em;
  position: relative;
}
.p-post li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-post li a {
  color: #d62042;
  text-decoration: underline;
}
.p-post .p-single__banner01:not(:last-child),
.p-post .p-single__banner02:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-post .p-single__banner01:not(:last-child),
  .p-post .p-single__banner02:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

/* p-sidebar */
.p-sidebar__banner01, .p-sidebar__banner02 {
  display: block;
  min-height: 180px;
  min-height: 11.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  overflow: hidden;
  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-sidebar__banner01, .p-sidebar__banner02 {
    width: 25rem;
    max-width: 100%;
    margin: 0 auto 1.5625rem;
  }
}
.p-sidebar__banner01:hover, .p-sidebar__banner02:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-sidebar__banner03 {
  display: block;
  min-height: 160px;
  min-height: 10rem;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  overflow: hidden;
  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-sidebar__banner03 {
    width: 25rem;
    max-width: 100%;
    margin: 0 auto 1.5625rem;
  }
}
.p-sidebar__banner03:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-sidebar__banner01 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  background: url(../img/common/sidebar_bg.png) no-repeat center/cover;
  border: 10px solid #fff;
  border: 0.625rem solid #fff;
  padding: 15px;
  padding: 0.9375rem;
}
.p-sidebar__banner01 .p-sidebar__banner-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-sidebar__banner01 .p-sidebar__banner-title {
    font-size: 1.25rem;
  }
}
.p-sidebar__banner01 .p-sidebar__banner-title .small {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-sidebar__banner01 .p-sidebar__banner-title .small {
    font-size: 0.875rem;
  }
}
.p-sidebar__banner01 .p-sidebar__banner-title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-sidebar__banner01 .p-sidebar__banner-title .en {
    font-size: 1.75rem;
  }
}
.p-sidebar__banner01 .p-sidebar__banner-text {
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-sidebar__banner01 .p-sidebar__banner-link {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-sidebar__banner01 .p-sidebar__banner-img {
  width: 100%;
  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;
}

.p-sidebar__banner02.case {
  background: -webkit-gradient(linear, left bottom, left top, from(#03a1e3), color-stop(4.05%, #069ee5), color-stop(11.65%, #0a98e8), color-stop(32%, #1789f0), to(#2969fc)) !important;
  background: linear-gradient(to top, #03a1e3 0%, #069ee5 4.05%, #0a98e8 11.65%, #1789f0 32%, #2969fc 100%) !important;
}
.p-sidebar__banner02.case::before {
  background: #74d0f5;
}

.p-sidebar__banner02 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  gap: 0.625rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#259ce7), color-stop(4.05%, #2996e8), color-stop(11.65%, #318ceb), color-stop(32%, #4670f1), to(#6644fa));
  background: linear-gradient(to top, #259ce7 0%, #2996e8 4.05%, #318ceb 11.65%, #4670f1 32%, #6644fa 100%);
  padding: 25px 5px 10px;
  padding: 1.5625rem 0.3125rem 0.625rem;
  position: relative;
  z-index: 1;
}
.p-sidebar__banner02 .p-sidebar__banner-img {
  width: 100%;
  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;
  margin: 0 auto;
}
.p-sidebar__banner02 .p-sidebar__banner-texts {
  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: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.p-sidebar__banner02 .p-sidebar__banner-subtext {
  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: 66px;
  width: 4.125rem;
  height: 66px;
  height: 4.125rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.3;
  border-radius: 50%;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}
.p-sidebar__banner02 .p-sidebar__banner-badge {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 0;
  color: #2314d7;
  font-weight: 700;
  width: 150px;
  width: 9.375rem;
  background-color: #f9ed2d;
  text-align: center;
}
.p-sidebar__banner02 .p-sidebar__banner-text {
  text-align: left;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.p-sidebar__banner02 .p-sidebar__banner-text span {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-sidebar__banner02 .p-sidebar__banner-text span {
    font-size: 1.75rem;
  }
}
.p-sidebar__banner02 .p-sidebar__banner-link {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  margin: 12px 0 0 12px;
  margin: 0.75rem 0 0 0.75rem;
}

.p-sidebar__banner-link {
  display: inline-block;
  font-weight: 700;
  color: #d62042;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  border-radius: 1.125rem;
  background: #fff;
  padding: 3px 25px;
  padding: 0.1875rem 1.5625rem;
}

.p-sidebar__units {
  margin-top: 70px;
  margin-top: 4.375rem;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .p-sidebar__units {
    margin-top: 2.5rem;
  }
}

.p-sidebar__units.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-sidebar__unit + .p-sidebar__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sidebar__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d62042;
  border-bottom: 2px solid #CBCBCB;
  border-bottom: 0.125rem solid #CBCBCB;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  position: relative;
}
.p-sidebar__subtitle::before {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 2px;
  height: 0.125rem;
  background: #d62042;
  bottom: -2px;
  bottom: -0.125rem;
}

.p-sidebar__items {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-sidebar__items {
    padding: 0;
  }
}

.p-sidebar__item {
  counter-increment: rank;
  position: relative;
}

.p-sidebar__item:nth-child(1)::before {
  color: #fff !important;
  background: #ab0521;
}

.p-sidebar__item::before {
  font-family: "Montserrat", sans-serif;
  content: counter(rank);
  background: #fff;
  border-radius: 50%;
  color: #ab0521;
  border: #ab0521 1px solid;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 101;
}

.p-sidebar__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #CBCBCB;
  border-bottom: 0.0625rem solid #CBCBCB;
  padding: 10px 0;
  padding: 0.625rem 0;
}
.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: #d62042;
}

.p-sidebar__item-img {
  width: 23%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-sidebar__item-img img {
  height: 80px;
  height: 5rem;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-sidebar__item-title {
  width: 70%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* p-single */
.p-single {
  background: #eef3f7;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  padding: 150px 0 110px;
  padding: 9.375rem 0 6.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-single {
    overflow: hidden;
    padding: 5rem 0 3.75rem;
    margin-bottom: 2.5rem;
  }
}
.p-single::before {
  position: absolute;
  content: "";
  width: 1100px;
  width: 68.75rem;
  max-width: 100%;
  height: 1100px;
  height: 68.75rem;
  top: -90px;
  top: -5.625rem;
  right: 4%;
  background: url(../img/common/mv_bg02.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-single::before {
    width: 18.75rem;
    height: 18.75rem;
    top: 0;
  }
}

.p-single__title {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-single__title {
    font-size: 2.25rem;
  }
}

.p-single__breadcrumb {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single__breadcrumb {
    margin-top: 1.25rem;
  }
}
.p-single__breadcrumb .c-breadcrumb__item:not(:first-child)::before {
  background: url(../img/common/breadcrumb_icon_002.png) no-repeat center/contain;
}
.p-single__breadcrumb a {
  color: rgba(46, 48, 50, .3);
}
.p-single__breadcrumb span {
  color: #d62042;
}

.p-single__content {
  background: #fff;
  border-radius: 2rem;
  padding: 55px 60px 75px;
  padding: 3.4375rem 3.75rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single__content {
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-single__header .p-single__banner01,
.p-single__header .p-single__banner02 {
  margin: 40px auto 30px;
  margin: 2.5rem auto 1.875rem;
}

.p-single__heading {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.56;
}
@media screen and (max-width: 768px) {
  .p-single__heading {
    font-size: 1.5rem;
  }
}

.p-single__name {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-single__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-single__img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single__img img {
    border-radius: 0.5rem;
  }
}

.p-single__lead {
  line-height: 1.75;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__lead {
    margin-top: 1.875rem;
  }
}

.p-single__toc {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__toc {
    margin-top: 1.875rem;
  }
}

.p-single__toc-header {
  display: block;
  text-align: left;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #d62042;
  border-radius: 1rem 1rem 0 0;
  padding: 11px 45px;
  padding: 0.6875rem 2.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__toc-header {
    font-size: 1rem;
    padding: 0.75rem 1.5625rem;
  }
}
.p-single__toc-header::after {
  position: absolute;
  content: "";
  width: 17px;
  width: 1.0625rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
  right: 1.625rem;
  background: url(../img/common/accordion_icon.png) no-repeat center/contain;
}
.p-single__toc-header.active::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-single__toc-header:hover {
  opacity: 1;
}

.p-single__toc-body {
  background: #eef3f7;
  border-radius: 0 0 1rem 1rem;
  padding: 30px 48px;
  padding: 1.875rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-single__toc-body {
    padding: 1.5625rem 1.5625rem;
  }
}

.p-single__toc-list-item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.p-single__toc-list-item + .p-single__toc-list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-single__toc-list-item a {
  display: block;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.p-single__toc-list-item span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #72797d;
  min-width: 47px;
  min-width: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single__toc-list-item span {
    font-size: 1rem;
    min-width: 2.5rem;
  }
}
.p-single__toc-list-item::before {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 0;
  display: inline-block;
  content: "";
  background-color: #d62042;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
}

.p-single__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (max-width: 768px) {
  .p-single__logos {
    display: block;
  }
}

.p-single__logo {
  width: 153px;
  width: 9.5625rem;
  max-width: 100%;
}

.p-single__company {
  padding-left: 25px;
  padding-left: 1.5625rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__company {
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
  }
}
.p-single__company::before {
  position: absolute;
  content: "";
  width: 3px;
  width: 0.1875rem;
  height: 37px;
  height: 2.3125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #d62042;
}
@media screen and (max-width: 768px) {
  .p-single__company::before {
    width: 2.3125rem;
    height: 0.1875rem;
    left: 0;
    top: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-single__text {
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-single__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;
  letter-spacing: 0.08em;
  line-height: 1.63;
  background: #eef3f7;
  border-radius: 1rem;
  padding: 20px 45px;
  padding: 1.25rem 2.8125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single__list {
    display: block;
    padding: 1.25rem 1.25rem;
  }
}

.p-single__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-single__list-item {
    width: 100%;
  }
  .p-single__list-item + .p-single__list-item {
    margin-top: 0.3125rem;
  }
}
.p-single__list-item:nth-child(even) {
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__list-item:nth-child(even) {
    padding-left: 0;
  }
}

.p-single__list-title {
  min-width: 105px;
  min-width: 6.5625rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-single__list-title {
    min-width: 5.625rem;
  }
}

.p-single__boxes {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-single__box {
  border-radius: 1rem;
  padding: 25px 40px 32px;
  padding: 1.5625rem 2.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .p-single__box {
    padding: 1.5625rem 1.25rem;
  }
}
.p-single__box:first-child {
  border: 3px solid #eef3f7;
  border: 0.1875rem solid #eef3f7;
}
.p-single__box:nth-child(2) {
  border: 3px solid #d62042;
  border: 0.1875rem solid #d62042;
  margin-top: 33px;
  margin-top: 2.0625rem;
  position: relative;
}
.p-single__box:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 21px;
  height: 1.3125rem;
  top: -38px;
  top: -2.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/case/case_arrow.png) no-repeat center/contain;
}
.p-single__box:nth-child(2) .p-single__box-list-item span {
  color: #d62042;
  font-weight: 700;
}

.p-single__box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-single__box-title {
    font-size: 1.125rem;
  }
}

.p-single__box-list {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-single__box-list-item {
  background: #eef3f7;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 12px 30px;
  padding: 0.75rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single__box-list-item {
    padding: 0.625rem 1.25rem;
  }
}
.p-single__box-list-item + .p-single__box-list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-single__box-list-item span {
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.p-single__post {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-single__post {
    margin-top: 2.5rem;
  }
}

.p-single__units {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-single__units {
    margin-top: 2.5rem;
  }
}

.p-single__unit + .p-single__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single__unit + .p-single__unit {
    margin-top: 2.5rem;
  }
}

.p-single__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-single__subtitle {
    font-size: 1.25rem;
  }
}

.p-single__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background: #eef3f7;
  border-radius: 1rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__bottom {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.p-single__bottom-body {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-single__bottom-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-single__bottom-subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
}

.p-single__bottom-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single__bottom-title {
    font-size: 1.125rem;
  }
}

.p-single__bottom-text {
  line-height: 1.63;
  padding-top: 15px;
  padding-top: 0.9375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
}
.p-single__bottom-text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 25px;
  width: 1.5625rem;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: #d62042;
}

.p-single__bottom-img {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .p-single__bottom-img {
    width: 100%;
  }
}
.p-single__bottom-img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single__bottom-img img {
    border-radius: 0.5rem;
  }
}

.p-single__bottom-link {
  display: block;
  text-align: right;
  margin-top: 40px;
  margin-top: 2.5rem;
  cursor: pointer;
}
.p-single__bottom-link:hover {
  opacity: 1;
}

.p-single__items {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single__items {
    margin-top: 0.3125rem;
  }
}

.p-single__item + .p-single__item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-single__item-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;
  background: #fff;
  border-radius: 0.625rem;
  padding: 10px 110px 10px 10px;
  padding: 0.625rem 6.875rem 0.625rem 0.625rem;
  -webkit-transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__item-inner {
    display: block;
    padding: 0.625rem;
  }
}
.p-single__item-inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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__item-inner::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.625rem;
    bottom: 1.25rem;
  }
}
.p-single__item-inner:hover {
  opacity: 1;
  background: #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.p-single__item-inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-single__item-inner:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}
.p-single__item-inner:hover .p-single__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-single__item-inner:hover .p-single__item-title {
  color: #d62042;
}

.p-single__item-img {
  width: 34%;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-single__item-img {
    width: 100%;
  }
}
.p-single__item-img img {
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-single__item-body {
  width: 60%;
  min-height: 50px;
  min-height: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single__item-body {
    width: 100%;
    margin-top: 0.625rem;
    padding-right: 2.5rem;
  }
}

.p-single__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.67;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-single__item-title {
    font-size: 1rem;
  }
}

.p-single__item-text {
  line-height: 1.875;
}

.p-single__banner01,
.p-single__banner02 {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 680px;
  width: 42.5rem;
  max-width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  min-height: 200px;
  min-height: 12.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0 16px 0 30px;
  padding: 0 1rem 0 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-single__banner01,
  .p-single__banner02 {
    display: block;
    width: 25rem;
    padding: 1.25rem 0.9375rem;
    margin-top: 1.875rem;
    border-radius: 0.5rem;
  }
}
.p-single__banner01::after,
.p-single__banner02::after {
  position: absolute;
  content: "";
  width: 274px;
  width: 17.125rem;
  height: 274px;
  height: 17.125rem;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -110px;
  right: -6.875rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-single__banner01::after,
  .p-single__banner02::after {
    width: 34.625rem;
    height: 18.8125rem;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -9.375rem;
  }
}
.p-single__banner01:hover,
.p-single__banner02:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-single__banner01 {
  width: 100%;
  min-height: 220px;
  min-height: 13.75rem;
  background: -webkit-gradient(linear, right top, left top, from(#75c9ea), color-stop(4.96%, #75c9ea), color-stop(35.37%, #6e87f2), to(#6644fa));
  background: linear-gradient(to left, #75c9ea 0%, #75c9ea 4.96%, #6e87f2 35.37%, #6644fa 100%);
}
.p-single__banner01::after {
  background: #c2b4fb;
}
.p-single__banner01 .p-single__banner-subtitle {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  padding-left: 15px;
  padding-left: 0.9375rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__banner01 .p-single__banner-subtitle {
    font-size: 0.875rem;
    padding-left: 0.625rem;
  }
}
.p-single__banner01 .p-single__banner-subtitle::before {
  position: absolute;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 90%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #29bffb;
  border-radius: 0.125rem;
}

.p-single__banner02 {
  background: -webkit-gradient(linear, right top, left top, from(#03a2e3), color-stop(4.96%, #03a2e3), color-stop(35.37%, #1784f0), to(#2a66fd));
  background: linear-gradient(to left, #03a2e3 0%, #03a2e3 4.96%, #1784f0 35.37%, #2a66fd 100%);
}
.p-single__banner02::after {
  background: #74d0f5;
}
.p-single__banner02 .p-single__banner-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.p-single__banner-body {
  position: relative;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-single__banner-title {
  display: block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single__banner-title {
    font-size: 1.25rem;
    line-height: 1.3;
    white-space: unset;
  }
}
.p-single__banner-title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-single__banner-title .en {
    font-size: 1.375rem;
  }
}
.p-single__banner-title .small {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-single__banner-title .small {
    font-size: 1rem;
  }
}

.p-single__banner-link-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 20px auto;
  margin: 0.625rem 0 1.25rem auto;
}
@media screen and (max-width: 768px) {
  .p-single__banner-link-wrapper {
    position: static;
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.p-single__banner-link {
  display: inline-block;
  font-weight: 700;
  color: #d62042;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  border-radius: 1.125rem;
  background: #fff;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.p-single__banner-img {
  width: 182px;
  width: 11.375rem;
  min-width: 182px;
  min-width: 11.375rem;
}
@media screen and (max-width: 768px) {
  .p-single__banner-img {
    margin: 0 auto;
  }
}

.p-single__cv {
  width: 680px;
  width: 42.5rem;
  max-width: 100%;
  border-radius: 1rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 40px 70px 60px;
  padding: 2.5rem 4.375rem 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-single__cv {
    padding: 2.5rem 1.25rem;
    margin-top: 1.875rem;
  }
}
.p-single__cv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#75c9ea), color-stop(4.96%, #75c9ea), color-stop(35.37%, #6e87f2), to(#6644fa));
  background: linear-gradient(to top, #75c9ea 0%, #75c9ea 4.96%, #6e87f2 35.37%, #6644fa 100%);
  opacity: 0.12;
  z-index: -1;
}

.p-single__cv-subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single__cv-subtitle {
    font-size: 1.125rem;
  }
}
.p-single__cv-subtitle span {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-single__cv-subtitle span {
    font-size: 1.25rem;
  }
}

.p-single__cv-title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d62042;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-single__cv-title {
    font-size: 1.5rem;
  }
}

.p-single__cv-img {
  width: 503px;
  width: 31.4375rem;
  max-width: 100%;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}

.p-single__cv-box {
  background: #fff;
  border-radius: 1rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 15px 45px;
  padding: 0.9375rem 2.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__cv-box {
    margin-top: 1.5625rem;
    padding: 0.9375rem 1.25rem;
  }
}
.p-single__cv-box::after {
  position: absolute;
  content: "";
  width: 19px;
  width: 1.1875rem;
  height: 17px;
  height: 1.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  bottom: -0.9375rem;
  background: url(../img/column/column_arrow.png) no-repeat center/contain;
}

.p-single__cv-list-item {
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  padding-left: 30px;
  padding-left: 1.875rem;
  background: url(../img/common/check_icon.png) no-repeat left top 5px/21px;
  background: url(../img/common/check_icon.png) no-repeat left top 0.3125rem/1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single__cv-list-item {
    background: url(../img/common/check_icon.png) no-repeat left top 0.4375rem/0.9375rem;
    padding-left: 1.5625rem;
  }
}
.p-single__cv-list-item + .p-single__cv-list-item {
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-single__cv-heading {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single__cv-heading {
    font-size: 1.375rem;
  }
}

.p-single__cv-text {
  text-align: center;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-single__cv-btn {
  text-align: center;
  display: block;
  width: 363px;
  width: 22.6875rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  border-radius: 1.75rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-single__cv-btn {
    font-size: 1rem;
  }
}
.p-single__cv-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.75rem;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-single__cv-btn:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-single__cv-btn:hover::before {
  opacity: 0;
}

/* p-slider */
.p-slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-slider__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem 0;
    margin-top: 1.875rem;
  }
}
.p-slider__items.slick-initialized {
  display: block;
  margin: 4.0625rem calc(50% - 50vw) 0;
}
.p-slider__items.slick-initialized .p-slider__item {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
@media screen and (max-width: 768px) {
  .p-slider__items.slick-initialized {
    margin: 1.875rem 0 0;
  }
}
.p-slider__items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-slider__items .slick-slide {
  height: auto !important;
  padding: 0 12px;
  padding: 0 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-slider__items .slick-slide {
    padding: 0;
  }
}

.p-slider__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1rem);
          flex: 0 1 calc(33.333% - 1rem);
}

.p-slider__footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  margin-top: 3.75rem;
  display: none;
}
.p-slider__footer.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-slider__footer {
    margin-top: 1.875rem;
  }
}

.p-slider__prev,
.p-slider__next,
.p-slider__stop {
  display: block;
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-slider__prev:hover,
.p-slider__next:hover,
.p-slider__stop:hover {
  opacity: 1;
  -webkit-transform: scale(1.26);
          transform: scale(1.26);
}

.p-slider__prev {
  background: url(../img/common/arrow_icon_gray_002.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-slider__prev:hover {
  background: url(../img/common/arrow_icon_red_004.png) no-repeat center/contain;
}

.p-slider__next {
  background: url(../img/common/arrow_icon_gray_001.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-slider__next:hover {
  background: url(../img/common/arrow_icon_red_003.png) no-repeat center/contain;
}

.p-slider__stop {
  background: #fff;
  margin: 0 25px;
  margin: 0 1.5625rem;
  position: relative;
}
.p-slider__stop::before, .p-slider__stop::after {
  position: absolute;
  content: "";
  width: 2px;
  width: 0.125rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #333;
  color: #333;
}
.p-slider__stop::before {
  display: none;
  left: 15px;
  left: 0.9375rem;
}
.p-slider__stop::after {
  content: "▶︎";
  width: auto;
  height: auto;
  left: 55%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  background: none;
}
.p-slider__stop.active::before {
  display: block;
}
.p-slider__stop.active::after {
  content: "";
  width: 2px;
  width: 0.125rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #333;
  left: 21px;
  left: 1.3125rem;
}

/* p-access */
.p-access__map {
  width: 100%;
  padding-top: 42.96875%;
  border: 5px solid #fff;
  border: 0.3125rem solid #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-access__map {
    padding-top: 75%;
    border: 0.1875rem solid #fff;
  }
}
.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__list {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-access__list {
    margin-top: 2.5rem;
  }
}
.p-access__list .c-list__title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-access__list .c-list__title {
    font-size: 1rem;
  }
}

/* p-books */
/* p-company */
.p-company__title {
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-company__title {
    font-size: 1.75rem;
  }
}
.p-company__title span {
  display: inline-block;
  color: #d62042;
  margin: 0 10px;
  margin: 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-company__title span {
    margin: 0;
  }
}

.p-company__list {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-company__list {
    margin-top: 1.875rem;
  }
}

.p-company__box {
  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: 2rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 45px 50px 45px 60px;
  padding: 2.8125rem 3.125rem 2.8125rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-company__box {
    display: block;
    border-radius: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.875rem 0.9375rem;
  }
}

.p-company__box-logos {
  text-align: center;
}

.p-company__box-logo {
  width: 110px;
  width: 6.875rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-company__box-title {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.02em;
  background: #333;
  border-radius: 0.75rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  white-space: nowrap;
}

.p-company__box-text {
  line-height: 1.8;
  margin-left: 60px;
  margin-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-company__box-text {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

/* p-history */
.p-history__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 155px;
  gap: 3.75rem 9.6875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-history__items {
    display: block;
  }
}
.p-history__items::before, .p-history__items::after {
  position: absolute;
  content: "";
  bottom: -30px;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-history__items::before, .p-history__items::after {
    bottom: -0.9375rem;
    -webkit-transform: unset;
            transform: unset;
  }
}
.p-history__items::before {
  top: 0;
  width: 2px;
  width: 0.125rem;
  background: #d62042;
}
@media screen and (max-width: 768px) {
  .p-history__items::before {
    left: 0.3125rem;
  }
}
.p-history__items::after {
  width: 20px;
  width: 1.25rem;
  height: 12px;
  height: 0.75rem;
  background: url(../img/company/history_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-history__items::after {
    left: -0.25rem;
    bottom: -1.0625rem;
  }
}

.p-history__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 4.84375rem);
          flex: 0 1 calc(50% - 4.84375rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-history__item {
    padding-left: 1.25rem;
    overflow: hidden;
  }
  .p-history__item + .p-history__item {
    margin-top: 2.5rem;
  }
}
.p-history__item::before {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background: #d62042;
  border-radius: 50%;
  top: 30px;
  top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-history__item::before {
    top: 1.25rem;
  }
}
.p-history__item:nth-child(odd)::before {
  right: -84px;
  right: -5.25rem;
}
@media screen and (max-width: 768px) {
  .p-history__item:nth-child(odd)::before {
    right: unset;
    left: 0;
  }
}
.p-history__item:nth-child(even) {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-history__item:nth-child(even) {
    margin-top: 2.5rem;
  }
}
.p-history__item:nth-child(even)::before {
  left: -84px;
  left: -5.25rem;
}
@media screen and (max-width: 768px) {
  .p-history__item:nth-child(even)::before {
    left: 0;
  }
}

.p-history__item-year {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d62042;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-history__item-year {
    display: inline-block;
    font-size: 1.75rem;
  }
}
.p-history__item-year::after {
  position: absolute;
  content: "";
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-history__item-year::after {
    width: 100vw;
    max-width: unset;
    right: unset;
  }
}
.p-history__item-year span {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-history__item-year span {
    font-size: 2.25rem;
  }
}

.p-history__item-units {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-history__item-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-history__item-unit + .p-history__item-unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-history__item-unit-body {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-history__item-unit-body {
    width: 52%;
  }
}

.p-history__item-unit-title {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-history__item-unit-title {
    font-size: 1.125rem;
  }
}
.p-history__item-unit-title span {
  font-weight: 700;
}

.p-history__item-unit-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-history__item-unit-img {
  width: 45%;
}
.p-history__item-unit-img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-history__item-unit-img img {
    border-radius: 0.625rem;
  }
}

.p-history__img {
  width: 800px;
  width: 50rem;
  max-width: 100%;
  margin: 90px auto 0;
  margin: 5.625rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-history__img {
    margin-top: 3.75rem;
  }
}
.p-history__img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-history__img img {
    border-radius: 0.625rem;
  }
}

/* p-philosophy */
.p-philosophy__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
  padding: 45px 50px 45px 65px;
  padding: 2.8125rem 3.125rem 2.8125rem 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.p-philosophy__unit + .p-philosophy__unit {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit + .p-philosophy__unit {
    margin-top: 1.875rem;
  }
}

.p-philosophy__unit-titles {
  width: 34%;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-titles {
    width: 100%;
  }
}

.p-philosophy__unit-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 600;
  color: #d62042;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-subtitle {
    font-size: 2rem;
  }
}

.p-philosophy__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-title {
    font-size: 1.125rem;
  }
}

.p-philosophy__unit-body {
  width: 66%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-body {
    width: 100%;
    padding-top: 0;
    margin-top: 1.25rem;
  }
}

.p-philosophy__unit-heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-heading {
    font-size: 1.5rem;
  }
}
.p-philosophy__unit-heading span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__unit-heading span {
    font-size: 1.25rem;
  }
}

.p-philosophy__unit-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}

.p-philosophy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 0;
  gap: 3.125rem 0;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__items {
    display: block;
    padding-bottom: 0;
  }
}

.p-philosophy__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media screen and (max-width: 768px) {
  .p-philosophy__item + .p-philosophy__item {
    margin-top: 1.875rem;
  }
}
.p-philosophy__item:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.p-philosophy__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-philosophy__item-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-philosophy__item-title {
    font-size: 1.5rem;
  }
}

.p-philosophy__item-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #adb1b4;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy__item-subtitle {
    font-size: 1rem;
    margin-left: 0.9375rem;
  }
}

.p-philosophy__item-text {
  line-height: 1.75;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* お問合せ */
.p-contact .formrun-embed {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact__wrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__wrapper {
    margin-top: 0;
    padding-top: 3.75rem;
  }
}

.p-contact__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: 1.25rem;
  }
}

.p-contact__link-wrapper {
  text-align: center;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-contact__link {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding-right: 35px;
  padding-right: 2.1875rem;
}
.p-contact__link::after {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.p-contact__content {
  background: #fff;
  border-radius: 2rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 50px 60px 75px;
  padding: 3.125rem 3.75rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-contact__content {
    border-radius: 1rem;
    padding: 2.5rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-contact__subtitle {
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-contact__subtitle {
    font-size: 1.25rem;
  }
}

.p-contact__form .text-danger {
  display: block;
  display: none;
}
.p-contact__form .formrun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 25px;
  gap: 1.25rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form .formrun {
    display: block;
  }
}
.p-contact__form .form-group {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.p-contact__form .form-group:first-child, .p-contact__form .form-group:nth-child(2), .p-contact__form .form-group:nth-child(4), .p-contact__form .form-group:nth-child(5), .p-contact__form .form-group:nth-child(8), .p-contact__form .form-group:nth-child(9), .p-contact__form .form-group:nth-child(11) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.78125rem);
          flex: 0 1 calc(50% - 0.78125rem);
}
.p-contact__form .form-group:first-child .form-control-label, .p-contact__form .form-group:nth-child(2) .form-control-label, .p-contact__form .form-group:nth-child(3) .form-control-label, .p-contact__form .form-group:nth-child(4) .form-control-label, .p-contact__form .form-group:nth-child(6) .form-control-label, .p-contact__form .form-group:nth-child(7) .form-control-label, .p-contact__form .form-group:nth-child(12) .form-control-label, .p-contact__form .form-group:nth-child(13) .form-control-label {
  padding-left: 1em;
}
.p-contact__form .form-group:first-child .form-control-label::before, .p-contact__form .form-group:nth-child(2) .form-control-label::before, .p-contact__form .form-group:nth-child(3) .form-control-label::before, .p-contact__form .form-group:nth-child(4) .form-control-label::before, .p-contact__form .form-group:nth-child(6) .form-control-label::before, .p-contact__form .form-group:nth-child(7) .form-control-label::before, .p-contact__form .form-group:nth-child(12) .form-control-label::before, .p-contact__form .form-group:nth-child(13) .form-control-label::before {
  display: block;
}
.p-contact__form .form-group:nth-child(9), .p-contact__form .form-group:nth-child(10) {
  position: relative;
}
.p-contact__form .form-group:nth-child(9)::after, .p-contact__form .form-group:nth-child(10)::after {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 8px;
  height: 0.5rem;
  top: 60px;
  top: 3.75rem;
  right: 16px;
  right: 1rem;
  background: url(../img/common/select_icon.png) no-repeat center/contain;
}
.p-contact__form .form-group:nth-child(11) {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(11) {
    width: 85%;
  }
}
.p-contact__form .form-group:nth-child(11)::after {
  position: absolute;
  content: "万円";
  top: 48px;
  top: 3rem;
  right: -45px;
  right: -2.8125rem;
}
.p-contact__form .form-group:nth-child(12) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-contact__form .form-group:nth-child(12) .form-control-label {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(12) .form-control-label {
    margin-bottom: 0.625rem;
  }
}
.p-contact__form .form-group:nth-child(12) .form-check-label:nth-child(even) {
  width: 37%;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(12) .form-check-label:nth-child(even) {
    width: 100%;
    margin-right: 0;
  }
}
.p-contact__form .form-group:nth-child(12) .form-check-label:nth-child(odd) {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(12) .form-check-label:nth-child(odd) {
    width: 100%;
  }
}
.p-contact__form .form-group:nth-child(14) {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(14) {
    margin-top: 1.25rem;
  }
}
.p-contact__form .form-group:nth-child(14) .offset-sm-2 {
  margin-left: 0;
  padding: 0;
}
.p-contact__form .form-group:nth-child(14) .col-sm-10 {
  float: unset;
  width: 100%;
  padding: 0;
}
.p-contact__form .form-group:nth-child(14) .form-check-label {
  padding-left: 55px;
  padding-left: 3.4375rem;
  position: relative;
}
.p-contact__form .form-group:nth-child(14) .form-check-label::before {
  position: absolute;
  content: "*";
  left: 45px;
  left: 2.8125rem;
  top: 0;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-group:nth-child(14) .form-check-label::before {
    top: 1.25rem;
  }
}
.p-contact__form .form-group:nth-child(14) .form-check-label input[type=checkbox]::before {
  left: -30px;
  left: -1.875rem;
}
.p-contact__form .form-group:nth-child(14) .form-check-label input[type=checkbox]::after {
  left: -24px;
  left: -1.5rem;
}
.p-contact__form .form-group:nth-child(14) .form-check-label a {
  text-decoration: underline;
}
.p-contact__form .form-control-label {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.p-contact__form .form-control-label::before {
  position: absolute;
  content: "*";
  left: 0;
  top: 0;
  color: #d62042;
  display: none;
}
.p-contact__form .form-check-inline {
  margin-left: 0;
  padding-left: 36px;
  padding-left: 2.25rem;
}
.p-contact__form .form-check-label {
  display: inline-block;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-check-label {
    white-space: unset;
    margin-bottom: 0;
  }
}
.p-contact__form .form-check-label input[type=checkbox] {
  cursor: pointer;
  display: block;
  position: relative;
}
.p-contact__form .form-check-label input[type=checkbox]::before, .p-contact__form .form-check-label input[type=checkbox]::after {
  position: absolute;
  content: "";
}
.p-contact__form .form-check-label input[type=checkbox]::before {
  display: block;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  border: 2px solid #c7ced4;
  border: 0.125rem solid #c7ced4;
  border-radius: 0.25rem;
  top: 0;
  left: -15px;
  left: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-check-label input[type=checkbox]::before {
    top: 1.125rem;
  }
}
.p-contact__form .form-check-label input[type=checkbox]::after {
  border-bottom: 3px solid #333;
  border-bottom: 0.1875rem solid #333;
  border-left: 3px solid #333;
  border-left: 0.1875rem solid #333;
  height: 8px;
  height: 0.5rem;
  width: 13px;
  width: 0.8125rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: -8px;
  left: -0.5rem;
  top: 7px;
  top: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form .form-check-label input[type=checkbox]::after {
    top: 1.5625rem;
  }
}
.p-contact__form .form-check-label input[type=checkbox]:checked::after {
  opacity: 1;
}
.p-contact__form .form-control {
  background: #eef3f7;
  border-radius: 0.5rem;
  border: none;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}
.p-contact__form input[type=text],
.p-contact__form input[type=tel],
.p-contact__form input[type=email],
.p-contact__form select {
  font-size: 16px;
  font-size: 1rem;
  color: #333;
  height: 60px !important;
  height: 3.75rem !important;
}
.p-contact__form textarea {
  resize: none;
  height: 200px;
  height: 12.5rem;
}
.p-contact__form .btn-primary {
  background-color: unset;
}
.p-contact__form .pull-xs-right {
  float: unset !important;
}
.p-contact__form .btn {
  display: block;
  width: 317px;
  width: 19.8125rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  margin: 5px auto 0;
  margin: 0.3125rem auto 0;
  padding: 19px;
  padding: 1.1875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-contact__form .btn {
    margin-top: 2.5rem;
  }
}
.p-contact__form .btn::before, .p-contact__form .btn::after {
  position: absolute;
  content: "";
}
.p-contact__form .btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-contact__form .btn::after {
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-contact__form .btn:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-contact__form .btn:hover::before {
  opacity: 0;
}
.p-contact__form .btn:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
}

.p-contact-thanks {
  text-align: center;
}
.p-contact-thanks__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
.p-contact-thanks__text {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.p-contact-thanks__button {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d62042;
  border-radius: 1.875rem;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 0 auto;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background-color: #fff;
}
.p-contact-thanks__button::before, .p-contact-thanks__button::after {
  position: absolute;
  content: "";
}
.p-contact-thanks__button::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
}
.p-contact-thanks__button::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks__button::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-contact-thanks__button:hover {
  opacity: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  border-color: #d62042;
}
.p-contact-thanks__button:hover::before {
  opacity: 0;
}
.p-contact-thanks__button:hover::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transform: translate(-4px, -10%) rotate(180deg);
          transform: translate(-4px, -10%) rotate(180deg);
}

/* p-archive-download */
/* 資料ダウンロード */
.p-download-thanks {
  text-align: center;
}
.p-download-thanks__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
.p-download-thanks__text {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.75;
}
.p-download-thanks__button {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d62042;
  border-radius: 1.875rem;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 0 auto;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background-color: #fff;
}
.p-download-thanks__button::before, .p-download-thanks__button::after {
  position: absolute;
  content: "";
}
.p-download-thanks__button::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-download-thanks__button::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-download-thanks__button::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-download-thanks__button:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-download-thanks__button:hover::before {
  opacity: 0;
}
.p-download-thanks__button:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(-4px, -10%) rotate(180deg);
          transform: translate(-4px, -10%) rotate(180deg);
}
.p-download-thanks__button--document {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 1.875rem;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  color: #fff;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-download-thanks__button--document::before, .p-download-thanks__button--document::after {
  position: absolute;
  content: "";
}
.p-download-thanks__button--document::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
}
.p-download-thanks__button--document::after {
  top: 40%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-download-thanks__button--document::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-download-thanks__button--document:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-download-thanks__button--document:hover::before {
  opacity: 0;
}
.p-download-thanks__button--document:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(0, 4px) rotate(90deg);
          transform: translate(0, 4px) rotate(90deg);
}
.p-download-thanks__button--seminar {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d62042;
  border-radius: 1.875rem;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 0 auto;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background-color: #fff;
}
.p-download-thanks__button--seminar::before, .p-download-thanks__button--seminar::after {
  position: absolute;
  content: "";
}
.p-download-thanks__button--seminar::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
}
.p-download-thanks__button--seminar::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-download-thanks__button--seminar::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-download-thanks__button--seminar:hover {
  opacity: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  border-color: #d62042;
}
.p-download-thanks__button--seminar:hover::before {
  opacity: 0;
}
.p-download-thanks__button--seminar:hover::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transform: translate(-4px, -10%) rotate(180deg);
          transform: translate(-4px, -10%) rotate(180deg);
}

/* p-single-download */
.p-single-download .formrun-embed {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .p-single-download .formrun-embed {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.p-single-download .formrun-embed iframe {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-download .formrun-embed iframe {
    border-radius: 0.625rem;
  }
}

.p-single-download__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__inner {
    display: block;
  }
}

.p-single-download__body {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .p-single-download__body {
    width: 100%;
  }
}

.p-single-download__title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-left: 10px solid #d62042;
  border-left: 0.625rem solid #d62042;
  padding: 5px 0 5px 27px;
  padding: 0.3125rem 0 0.3125rem 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__title {
    font-size: 1.75rem;
    border-left: 0.3125rem solid #d62042;
    padding: 0 0 0 0.625rem;
  }
}

.p-single-download__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__img {
    margin-top: 1.875rem;
  }
}
.p-single-download__img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__img img {
    border-radius: 0.625rem;
  }
}

.p-single-download__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.p-single-download__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #d62042;
  letter-spacing: 0.08em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__subtitle {
    font-size: 1.5rem;
  }
}

.p-single-download__list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-single-download__list-item {
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-single-download__list-item a {
  text-decoration: underline;
}
.p-single-download__list-item a:hover {
  text-decoration: none;
}

.p-single-download__form {
  width: 48.5%;
  background: #fff;
  border-radius: 1rem;
  padding: 50px 50px 60px;
  padding: 3.125rem 3.125rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__form {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.p-single-download__form .p-form__items {
  gap: 20px 15px;
  gap: 1.25rem 0.9375rem;
}
.p-single-download__form .p-form__item--half {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.46875rem);
          flex: 0 1 calc(50% - 0.46875rem);
}
.p-single-download__form .p-form__check {
  text-align: left;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__form .p-form__check {
    text-align: center;
  }
}
.p-single-download__form .p-form__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-download__form .p-form__btn {
    margin-top: 2.5rem;
  }
}

/* 404エラー */
.p-err {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}
.p-err__button {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-err__button::before, .p-err__button::after {
  position: absolute;
  content: "";
}
.p-err__button::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-err__button::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-err__button::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-err__button:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-err__button:hover::before {
  opacity: 0;
}
.p-err__button:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(-4px, -10%) rotate(180deg);
          transform: translate(-4px, -10%) rotate(180deg);
}

/* p-archive-member */
.p-archive-member__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  gap: 1.25rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-member__anchor {
    display: block;
  }
}

.p-archive-member__anchor-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-archive-member__anchor-item + .p-archive-member__anchor-item {
    margin-top: 0.625rem;
  }
}

.p-archive-member__anchor-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  padding: 17px 23px;
  padding: 1.0625rem 1.4375rem;
  position: relative;
}
.p-archive-member__anchor-item-inner::before, .p-archive-member__anchor-item-inner::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-archive-member__anchor-item-inner::before {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  border-radius: 50%;
  border: 2px solid #eef3f7;
  border: 0.125rem solid #eef3f7;
  right: 22px;
  right: 1.375rem;
}
.p-archive-member__anchor-item-inner::after {
  width: 14px;
  width: 0.875rem;
  height: 8px;
  height: 0.5rem;
  right: 34px;
  right: 2.125rem;
  background: url(../img/common/anchor_icon.png) no-repeat center/contain;
}
.p-archive-member__anchor-item-inner:hover {
  opacity: 1;
}
.p-archive-member__anchor-item-inner:hover .p-archive-member__anchor-item-text {
  color: #d62042;
}

.p-archive-member__anchor-item-icon {
  width: 65px;
  width: 4.0625rem;
  min-width: 65px;
  min-width: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-member__anchor-item-icon {
    width: 3.125rem;
    min-width: 3.125rem;
  }
}

.p-archive-member__anchor-item-text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 17px;
  margin-left: 1.0625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-archive-member__anchor-item-text {
    font-size: 1.125rem;
  }
}

.p-archive-member__units {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-member__units {
    margin-top: 3.75rem;
  }
}

.p-archive-member__unit + .p-archive-member__unit {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-member__unit + .p-archive-member__unit {
    margin-top: 3.75rem;
  }
}

.p-archive-member__cards {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-member__cards {
    margin-top: 1.875rem;
  }
}
.p-archive-member__cards .c-card__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-archive-member__cards .c-card__list {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.p-archive-member__cards .c-card__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 1.5em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-archive-member__cards .c-card__list-item {
    font-size: 1rem;
  }
}
.p-archive-member__cards .c-card__list-item::before {
  color: #d62042;
}
.p-archive-member__cards .c-card__inner:hover .c-card__img img {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-archive-member__cards .c-card__img {
  position: relative;
  aspect-ratio: 392/300;
  height: auto;
  width: auto;
  overflow: hidden;
}
.p-archive-member__cards .c-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-archive-member__cards .c-card__img .is-show {
  opacity: 1;
}

/* p-single-member */
.p-single-member {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
.p-single-member .p-single__breadcrumb {
  padding-right: 50px;
  padding-right: 3.125rem;
}

.p-single-member__contents {
  margin-bottom: 0;
}

.p-single-member__content {
  padding: 80px 80px;
  padding: 5rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__content {
    padding: 2.5rem 1.25rem;
  }
}

.p-single-member__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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-single-member__header {
    display: block;
  }
}

.p-single-member__img {
  width: 52%;
}
@media screen and (max-width: 768px) {
  .p-single-member__img {
    width: 100%;
  }
}
.p-single-member__img img {
  border-radius: 1rem;
}

.p-single-member__heading {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-single-member__heading {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-single-member__position {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-member__position {
    font-size: 1.25rem;
  }
}
.p-single-member__position span {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-single-member__position span {
    font-size: 1.375rem;
  }
}

.p-single-member__name {
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-single-member__name {
    font-size: 2rem;
  }
}

.p-single-member__items {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__items {
    margin-top: 2.5rem;
  }
}

.p-single-member__item {
  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-member__item {
    display: block;
  }
}
.p-single-member__item + .p-single-member__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__item + .p-single-member__item {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 0.0625rem solid #d62042;
  }
}

.p-single-member__item-titles {
  min-width: 300px;
  min-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-titles {
    min-width: unset;
  }
}

.p-single-member__item-number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #d62042;
}

.p-single-member__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.58;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-title {
    font-size: 1.25rem;
  }
}

.p-single-member__item-body {
  border-left: 1px solid #d62042;
  border-left: 0.0625rem solid #d62042;
  padding: 10px 0 10px 85px;
  padding: 0.625rem 0 0.625rem 5.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-body {
    border-left: none;
    padding: 0;
    margin-top: 1.25rem;
  }
}

.p-single-member__item-subtitle {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-subtitle {
    font-size: 1.75rem;
  }
}
.p-single-member__item-subtitle span {
  font-family: "Montserrat", sans-serif;
  font-size: 47px;
  font-size: 2.9375rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-subtitle span {
    font-size: 2rem;
  }
}

.p-single-member__item-text {
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__item-text {
    margin-top: 1.25rem;
  }
}

.p-single-member__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #EEF3F7;
  border-radius: 1rem;
  margin-top: 105px;
  margin-top: 6.5625rem;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-member__box {
    display: block;
    margin-top: 3.75rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-single-member__box-img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .p-single-member__box-img {
    width: 100%;
  }
}
.p-single-member__box-img img {
  border-radius: 1rem;
}

.p-single-member__box-body {
  width: 52.5%;
}
@media screen and (max-width: 768px) {
  .p-single-member__box-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-single-member__unit + .p-single-member__unit {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-single-member__unit-title {
  text-align: center;
  display: inline-block;
  min-width: 123px;
  min-width: 7.6875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0.875rem;
  background: #cc3333;
  padding: 3px 10px;
  padding: 0.1875rem 0.625rem;
}

.p-single-member__unit-list {
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.p-single-member__unit-list-item {
  color: #555;
  line-height: 1.63;
  padding-left: 15px;
  padding-left: 0.9375rem;
  position: relative;
}
.p-single-member__unit-list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  background: #d62042;
  border-radius: 50%;
  left: 0;
  top: 12px;
  top: 0.75rem;
}
.p-single-member__unit-list-item a {
  display: inline-block;
  position: relative;
}
.p-single-member__unit-list-item a::before {
  position: absolute;
  content: "";
  background: #555;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.p-single-member__unit-list-item a:hover {
  opacity: 1;
}
.p-single-member__unit-list-item a:hover::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

/* p-archive-news */
.p-archive-news__category {
  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;
}
@media screen and (max-width: 768px) {
  .p-archive-news__category {
    gap: 0 0.625rem;
  }
}

.p-archive-news__category-item {
  text-align: center;
  display: block;
  width: 240px;
  width: 15rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #777d82;
  border-radius: 0.625rem;
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-news__category-item {
    width: 12.5rem;
    font-size: 1rem;
  }
}
.p-archive-news__category-item.current {
  pointer-events: none;
  background: #d62042;
  position: relative;
}
.p-archive-news__category-item.current::after {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 18px;
  height: 1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -18px;
  bottom: -1.125rem;
  background: url(../img/news/news_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-archive-news__category-item.current::after {
    width: 1.25rem;
    height: 1rem;
    bottom: -1rem;
  }
}

.p-archive-news__items {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-archive-news__items {
    margin-top: 2.5rem;
  }
}

.p-archive-news__item-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;
  padding: 43px 120px 43px 43px;
  padding: 2.6875rem 7.5rem 2.6875rem 2.6875rem;
  -webkit-transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
  transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-archive-news__item-inner {
    display: block;
    padding: 1.25rem 1.25rem;
  }
}
.p-archive-news__item-inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-archive-news__item-inner::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}
.p-archive-news__item-inner:hover {
  opacity: 1;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.p-archive-news__item-inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-archive-news__item-inner:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}
.p-archive-news__item-inner:hover .p-archive-news__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-archive-news__item-inner:hover .p-archive-news__item-title {
  color: #d62042;
}
.p-archive-news__item-inner.no-link {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
}
.p-archive-news__item-inner.no-link::after {
  display: none;
}
.p-archive-news__item-inner.no-link:hover {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
  opacity: 1;
  background: inherit;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-archive-news__item-inner.no-link:hover .p-archive-news__item-img img {
  -webkit-transform: none;
          transform: none;
  -webkit-transform: initial;
          transform: initial;
}
.p-archive-news__item-inner.no-link:hover .p-archive-news__item-title {
  color: inherit;
}

.p-archive-news__item-img {
  width: 24.5%;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-archive-news__item-img {
    width: 100%;
  }
}
.p-archive-news__item-img img {
  border-radius: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-archive-news__item-body {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .p-archive-news__item-body {
    width: 100%;
    margin-top: 1.25rem;
    padding-right: 1.5625rem;
  }
}

.p-archive-news__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  color: #555;
}

.p-archive-news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.67;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-archive-news__item-title {
    font-size: 1rem;
  }
}

/* p-single-news */
.p-single-news__content {
  padding: 0;
}

.p-single-news__header {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
  padding: 55px 60px 45px;
  padding: 3.4375rem 3.75rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__header {
    padding: 2.5rem 1.25rem;
  }
}

.p-single-news__date {
  font-family: "Montserrat", sans-serif;
  color: #555555;
  letter-spacing: 0.08em;
}

.p-single-news__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__title {
    font-size: 1.5rem;
  }
}

.p-single-news__body {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
  padding: 55px 60px 45px;
  padding: 3.4375rem 3.75rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__body {
    padding: 2.5rem 1.25rem;
  }
}

.p-single-news__img {
  width: 880px;
  width: 55rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
.p-single-news__img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__img img {
    border-radius: 0.625rem;
  }
}

.p-single-news__footer {
  text-align: center;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-news__footer {
    padding: 2.5rem 1.25rem;
  }
}

/* p-personal */
.p-personal__items {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-personal__items {
    margin-top: 2.5rem;
  }
}
.p-personal__items-right {
  text-align: end;
}

.p-personal__item {
  letter-spacing: 0.02em;
}
.p-personal__item + .p-personal__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-personal__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-personal__item-body {
  line-height: 1.875;
  padding-left: 25px;
  padding-left: 1.5625rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.p-personal__item-body li {
  padding-left: 1em;
  position: relative;
}
.p-personal__item-body li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-personal__item-body-title__sub {
  line-height: 1.875;
  padding-left: 25px;
  padding-left: 1.5625rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.p-personal__item-body__sub {
  line-height: 1.875;
  padding-left: 50px;
  padding-left: 3.125rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.p-personal__item-body__sub a {
  color: #0062ff;
}

.p-personal__item-table {
  border: 1px solid #777D82;
  border: 0.0625rem solid #777D82;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.p-personal__item-table th, .p-personal__item-table td {
  line-height: 1.875;
  border: 1px solid #777D82;
  border: 0.0625rem solid #777D82;
}
.p-personal__item-table th:first-child, .p-personal__item-table td:first-child {
  width: 412px;
  width: 25.75rem;
}
@media screen and (max-width: 768px) {
  .p-personal__item-table th:first-child, .p-personal__item-table td:first-child {
    width: auto;
  }
}
.p-personal__item-table th {
  font-weight: 500;
  background: #333;
  color: #fff;
  padding: 10px;
  padding: 0.625rem;
}
.p-personal__item-table td {
  vertical-align: top;
  background: #fff;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-personal__item-table td {
    padding: 0.625rem 0.9375rem;
  }
}

.p-personal__heading {
  margin-top: 70px;
  margin-top: 4.375rem;
}

/* p-archive-seminar */
.p-archive-seminar__subtitle {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-archive-seminar__subtitle {
    font-size: 1.75rem;
  }
}

.p-archive-seminar__cards {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-archive-seminar__cards {
    margin-top: 1.25rem;
  }
}
.p-archive-seminar__cards .c-card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
}
@media screen and (max-width: 768px) {
  .p-archive-seminar__cards .c-card__text {
    font-size: 1rem;
  }
}

/* セミナー */
.p-seminar-thanks {
  text-align: center;
}
.p-seminar-thanks__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
.p-seminar-thanks__text {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.p-seminar-thanks__button {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  margin: 0 auto;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-seminar-thanks__button::before, .p-seminar-thanks__button::after {
  position: absolute;
  content: "";
}
.p-seminar-thanks__button::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-seminar-thanks__button::after {
  top: 40%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-seminar-thanks__button::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-seminar-thanks__button:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-seminar-thanks__button:hover::before {
  opacity: 0;
}
.p-seminar-thanks__button:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(-4px, -10%) rotate(180deg);
          transform: translate(-4px, -10%) rotate(180deg);
}

/* p-single-seminar */
.p-single-seminar .formrun-embed {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-single-seminar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__header {
    display: block;
  }
}

.p-single-seminar__body {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-single-seminar__titles {
  border-left: 10px solid #d62042;
  border-left: 0.625rem solid #d62042;
  padding: 5px 0 5px 27px;
  padding: 0.3125rem 0 0.3125rem 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__titles {
    border-left: 0.3125rem solid #d62042;
    padding: 0 0 0 0.625rem;
  }
}

.p-single-seminar__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background: #646464;
  border-radius: 0.6875rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.p-single-seminar__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__title {
    font-size: 1.75rem;
    margin-top: 0.625rem;
  }
}

.p-single-seminar__date {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__date {
    margin-top: 0.9375rem;
  }
}

.p-single-seminar__text {
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__text {
    margin-top: 1.875rem;
  }
}

.p-single-seminar__img {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__img {
    width: 100%;
  }
}
.p-single-seminar__img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__img img {
    border-radius: 0.625rem;
  }
}

.p-single-seminar__boxes {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__boxes {
    margin-top: 2.5rem;
  }
}

.p-single-seminar__box {
  background: #fff;
  border-radius: 2rem;
  padding: 50px 60px 75px;
  padding: 3.125rem 3.75rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__box {
    border-radius: 1rem;
    padding: 2.5rem 1.25rem;
  }
}
.p-single-seminar__box + .p-single-seminar__box {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__box + .p-single-seminar__box {
    margin-top: 1.875rem;
  }
}

.p-single-seminar__post h2,
.p-single-seminar__post h3,
.p-single-seminar__post h4,
.p-single-seminar__post h5,
.p-single-seminar__post h6 {
  margin: 0;
  font-weight: 700;
}
.p-single-seminar__post h2 {
  font-size: 32px;
  font-size: 2rem;
  color: #d62042;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__post h2 {
    font-size: 1.5rem;
  }
}
.p-single-seminar__post h3 {
  font-size: 24px;
  font-size: 1.5rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  border-left: 3px solid #d62042;
  border-left: 0.1875rem solid #d62042;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__post h3 {
    font-size: 1.125rem;
    padding-left: 0.625rem;
  }
}
.p-single-seminar__post h4,
.p-single-seminar__post h5,
.p-single-seminar__post h6 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__post h4,
  .p-single-seminar__post h5,
  .p-single-seminar__post h6 {
    font-size: 1rem;
  }
}
.p-single-seminar__post p {
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-single-seminar__post p:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-single-seminar__post ul:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-single-seminar__post li {
  padding-left: 1em;
  letter-spacing: 0.08em;
  line-height: 2;
  position: relative;
}
.p-single-seminar__post li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.p-single-seminar__post li.no-bullet {
  list-style: none;
  padding-left: 0;
}
.p-single-seminar__post li.no-bullet::before {
  display: none;
}

.p-single-seminar__list {
  border-bottom: 1px solid #cbcbcb;
  border-bottom: 0.0625rem solid #cbcbcb;
}
.p-single-seminar__list:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-single-seminar__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #cbcbcb;
  border-top: 0.0625rem solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-item {
    display: block;
  }
}

.p-single-seminar__list-title {
  width: 16%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #eef3f7;
  letter-spacing: 0.08em;
  padding: 15px 43px;
  padding: 0.9375rem 2.6875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-title {
    width: 100%;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
}

.p-single-seminar__list-text {
  width: 84%;
  letter-spacing: 0.08em;
  padding: 18px 35px;
  padding: 1.125rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__list-text {
    width: 100%;
    padding: 0.9375rem 1.25rem;
  }
}

.p-single-seminar__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit {
    display: block;
  }
}

.p-single-seminar__unit-img {
  width: 20.5%;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit-img {
    width: 100%;
  }
}
.p-single-seminar__unit-img img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit-img img {
    border-radius: 0.625rem;
  }
}

.p-single-seminar__unit-body {
  width: 75.5%;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.p-single-seminar__unit-body p:not(:last-child) {
  margin-bottom: 0;
}

.p-single-seminar__unit-company {
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.p-single-seminar__unit-name {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__unit-name {
    font-size: 1.375rem;
  }
}

.p-single-seminar__unit-text {
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.p-single-seminar__subtitle {
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__subtitle {
    font-size: 1.25rem;
  }
}

.p-single-seminar__form {
  width: 862px;
  width: 53.875rem;
  max-width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__form {
    margin-top: 1.875rem;
  }
}

.p-single-seminar__video-img {
  max-width: 800px;
  max-width: 50rem;
  margin: 50px auto;
  margin: 3.125rem auto;
  gap: 10px;
  gap: 0.625rem;
}
.p-single-seminar__video-items {
  max-width: 90%;
  width: 1300px;
  width: 81.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__video-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-single-seminar__video-item {
  -ms-flex-preferred-size: calc(33.33333% - 1.66667rem);
      flex-basis: calc(33.33333% - 1.66667rem);
  text-align: center;
  width: 100%;
}
.p-single-seminar__video-number {
  font-weight: 600;
  text-align: left;
  margin-bottom: 0 !important;
}
.p-single-seminar__video-box {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  border-radius: 1.25rem;
  -webkit-box-shadow: 3px 4px 9px -4px rgba(0, 0, 0, .5);
          box-shadow: 3px 4px 9px -4px rgba(0, 0, 0, .5);
  position: relative;
  padding: 10px;
  padding: 0.625rem;
}
.p-single-seminar__video-icon {
  width: 100%;
}
.p-single-seminar__video-icon img {
  height: 130px;
  height: 8.125rem;
  max-width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-single-seminar__video-icon img {
    min-height: 11.25rem;
    height: auto;
    max-width: 80%;
  }
}

/* p-archive-service */
.p-archive-service .l-page {
  margin: 40px 40px 40px;
  margin: 2.5rem 2.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service .l-page {
    margin: 0 0 2.5rem;
    padding: 3.75rem 0 2.5rem;
  }
}
.p-archive-service .p-top-method {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.p-archive-service .p-top-method .l-section {
  background-color: #2e3032;
}
.p-archive-service .p-top-method .l-section .c-subtitle {
  color: #acadad;
}
.p-archive-service .p-top-method .l-section .c-title {
  color: #fff;
}
.p-archive-service .p-top-method .l-section .c-text {
  color: #fff;
}
.p-archive-service .p-top-method .l-section .c-link {
  color: #fff;
}

.p-archive-service__cards {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__cards {
    margin-top: 2.5rem;
  }
}
.p-archive-service__cards .c-card__inner {
  min-height: 568px;
  min-height: 35.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive-service__cards .c-card__inner {
    min-height: unset;
  }
}

/* p-archive-theme */
/* p-big-picture */
.p-big-picture__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-big-picture__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.125rem);
          flex: 0 1 calc(25% - 1.125rem);
  height: inherit;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item {
    height: auto;
  }
}
.p-big-picture__item + .p-big-picture__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item + .p-big-picture__item {
    margin-top: 1.25rem;
  }
}
.p-big-picture__item + .p-big-picture__item::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 32px;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -24px;
  left: -1.5rem;
  background: url(../img/service/big-picture_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item + .p-big-picture__item::before {
    left: 50%;
    top: -1.75rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.p-big-picture__item:first-child .p-big-picture__item-header {
  background: #d62042;
}
.p-big-picture__item:nth-child(2) .p-big-picture__item-header {
  background: #c91d3d;
}
.p-big-picture__item:nth-child(3) .p-big-picture__item-header {
  background: #ab0521;
}
.p-big-picture__item:nth-child(4) .p-big-picture__item-header {
  background: #911d31;
}
.p-big-picture__item:nth-child(4) .p-big-picture__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item:nth-child(4) .p-big-picture__item-title {
    font-size: 1.125rem;
  }
}

.p-big-picture__item-header {
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  padding: 18px 0;
  padding: 1.125rem 0;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}
@media screen and (max-width: 1200px) {
  .p-big-picture__item-header {
    height: auto;
  }
}

.p-big-picture__item-number {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .5);
}
.p-big-picture__item-number span {
  font-family: "Montserrat", sans-serif;
}

.p-big-picture__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item-title {
    font-size: 1.125rem;
  }
}

.p-big-picture__item-body {
  border-radius: 0 0 1rem 1rem;
  padding: 20px 30px 35px;
  padding: 1.25rem 1.875rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item-body {
    padding: 1.25rem 1.25rem;
  }
}

.p-big-picture__item-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #555;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-big-picture__item-list-item {
    font-size: 1rem;
  }
}
.p-big-picture__item-list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  left: 0;
  top: 10px;
  top: 0.625rem;
  border-radius: 50%;
  background: #d62042;
}
.p-big-picture__item-list-item + .p-big-picture__item-list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-big-picture__units {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__units {
    margin-top: 3.75rem;
  }
}

.p-big-picture__unit + .p-big-picture__unit {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit + .p-big-picture__unit {
    margin-top: 3.75rem;
  }
}

.p-big-picture__unit-number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #72797d;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-number {
    font-size: 1rem;
  }
}

.p-big-picture__unit-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-title {
    font-size: 1.5rem;
    margin-top: 0.9375rem;
  }
}
.p-big-picture__unit-title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-title .en {
    font-size: 1.75rem;
  }
}
.p-big-picture__unit-title .small {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-title .small {
    font-size: 1.25rem;
  }
}

.p-big-picture__unit-text {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-text {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.p-big-picture__unit-subtitle {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 18px;
  padding-left: 1.125rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  position: relative;
}
.p-big-picture__unit-subtitle::before {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  border-radius: 50%;
  background: #d62042;
  left: 0;
  top: 6px;
  top: 0.375rem;
}

.p-big-picture__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 0.625rem;
  }
}

.p-big-picture__unit-item {
  background: #fff;
  border-radius: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.125rem);
          flex: 0 1 calc(25% - 1.125rem);
  padding: 42px 10px;
  padding: 2.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-item {
    border-radius: 0.625rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.3125rem);
            flex: 0 1 calc(50% - 0.3125rem);
    padding: 1.5625rem 0.625rem;
  }
}

.p-big-picture__unit-item-img {
  width: 122px;
  width: 7.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-item-img {
    width: 6.25rem;
  }
}

.p-big-picture__unit-img-wrapper {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-big-picture__unit-img-wrapper {
    border-radius: 0.625rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-big-picture__unit-img {
  max-width: 100%;
  margin: 0 auto;
}
.p-big-picture__unit-img.w-903 {
  width: 903px;
  width: 56.4375rem;
}
.p-big-picture__unit-img.w-990 {
  width: 990px;
  width: 61.875rem;
}
.p-big-picture__unit-img.w-730 {
  width: 730px;
  width: 45.625rem;
}

/* p-case */
.p-case__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-case__cards {
    margin-top: 1.875rem;
  }
}

.p-case__card + .p-case__card {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-case__card + .p-case__card {
    margin-top: 1.25rem;
  }
}

/* p-consultant */
.p-consultant__slider .c-card__inner:hover .c-card__img img {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-consultant__slider .c-card__img {
  position: relative;
  aspect-ratio: 392/300;
  height: auto;
  width: auto;
  overflow: hidden;
}
.p-consultant__slider .c-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-consultant__slider .c-card__img .is-show {
  opacity: 1;
}

/* p-feature */
.p-feature__units {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-feature__units {
    margin-top: 1.875rem;
  }
}

.p-feature__unit + .p-feature__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-feature__unit + .p-feature__unit {
    margin-top: 3.125rem;
  }
}
.p-feature__unit:nth-child(even) .c-unit__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* p-knowledge */
.p-knowledge__cards {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-knowledge__cards {
    margin-top: 1.875rem;
  }
}

/* p-other */
.p-other__slider {
  margin: 4.0625rem calc(50% - 49.5vw) 0;
}
@media screen and (max-width: 768px) {
  .p-other__slider {
    margin: 1.875rem 0 0;
  }
}
.p-other__slider .p-slider__stop {
  background: #becad3;
}
.p-other__slider .p-slider__stop::before {
  background: #fff;
}
.p-other__slider .p-slider__stop::after {
  color: #fff;
}
.p-other__slider .p-slider__stop.active::after {
  background: #fff;
}

.p-other__btn {
  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: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-other__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    margin-top: 3.125rem;
  }
}

.p-other__btn-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  width: 400px;
  width: 25rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-other__btn-item {
    width: 100%;
  }
}
.p-other__btn-item::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-other__btn-item::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    right: 0.625rem;
    -webkit-transform: unset;
            transform: unset;
  }
}
.p-other__btn-item:hover {
  opacity: 1;
}
.p-other__btn-item:hover::after {
  -webkit-transform: scale(1.26) translateY(-40%);
          transform: scale(1.26) translateY(-40%);
}
@media screen and (max-width: 768px) {
  .p-other__btn-item:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}

.p-other__btn-icon {
  display: inline-block;
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-other__btn-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-other__btn-item-txt {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-other__btn-item-txt {
    font-size: 1.125rem;
  }
}

/* p-point */
.p-point__unit {
  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: 1rem;
  padding: 10px 36px 10px 10px;
  padding: 0.625rem 2.25rem 0.625rem 0.625rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-point__unit {
    display: block;
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-point__unit-img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-point__unit-img {
    width: 100%;
  }
}
.p-point__unit-img img {
  border-radius: 0.625rem;
}

.p-point__unit-text {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-point__unit-text {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-point__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 22px;
  gap: 0 1.375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-point__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-point__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.91667rem);
          flex: 0 1 calc(33.333% - 0.91667rem);
  border-radius: 1rem;
  padding: 30px 20px 40px;
  padding: 1.875rem 1.25rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-point__item {
    padding: 1.875rem 1.25rem;
  }
  .p-point__item + .p-point__item {
    margin-top: 0.625rem;
  }
}
.p-point__item:first-child {
  background: #D62042;
}
.p-point__item:nth-child(2) {
  background: #C91D3D;
}
.p-point__item:nth-child(3) {
  background: #AB0521;
}

.p-point__item-number {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .5);
}
.p-point__item-number span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.p-point__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.63;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-point__item-title {
    font-size: 1.125rem;
  }
}

.p-point__item-icon {
  width: 120px;
  width: 7.5rem;
  max-width: 100%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
.p-point__item-icon img {
  border-radius: 50%;
}

/* p-price */
.p-price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 144px;
  gap: 9rem;
}
@media screen and (max-width: 768px) {
  .p-price__wrapper {
    -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;
    gap: 0.625rem;
  }
}
.p-price__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
  gap: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-price__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
.p-price .c-unit__title {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-price .c-unit__title {
    font-size: 1.25rem;
  }
}
.p-price .c-unit__title span.p-price__title--num {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-price .c-unit__title span.p-price__title--num {
    font-size: 2rem;
  }
}
.p-price__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-price__text {
    margin-top: 0;
  }
}

.p-price__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-price__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-price__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.125rem);
          flex: 0 1 calc(25% - 1.125rem);
  height: inherit;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-price__item {
    height: auto;
  }
}
.p-price__item + .p-price__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-price__item + .p-price__item {
    margin-top: 1.25rem;
  }
}
.p-price__item + .p-price__item::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 32px;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -24px;
  left: -1.5rem;
  background: url(../img/service/big-picture_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-price__item + .p-price__item::before {
    left: 50%;
    top: -1.75rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.p-price__item:first-child .p-price__item-header {
  background: #d62042;
}
.p-price__item:nth-child(2) .p-price__item-header {
  background: #c91d3d;
}
.p-price__item:nth-child(3) .p-price__item-header {
  background: #ab0521;
}
.p-price__item:nth-child(4) .p-price__item-header {
  background: #911d31;
}
.p-price__item:nth-child(4) .p-price__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-child(4) .p-price__item-title {
    font-size: 1.125rem;
  }
}

.p-price__item-header {
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  padding: 18px 0;
  padding: 1.125rem 0;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}
@media screen and (max-width: 1200px) {
  .p-price__item-header {
    height: auto;
  }
}

.p-price__item-number {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .5);
}
.p-price__item-number span {
  font-family: "Montserrat", sans-serif;
}

.p-price__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-price__item-title {
    font-size: 1.125rem;
  }
}

.p-price__item-body {
  border-radius: 0 0 1rem 1rem;
  padding: 20px 30px 35px;
  padding: 1.25rem 1.875rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-price__item-body {
    padding: 1.25rem 1.25rem;
  }
}

.p-price__item-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #555;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-price__item-list-item {
    font-size: 1rem;
  }
}
.p-price__item-list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  left: 0;
  top: 10px;
  top: 0.625rem;
  border-radius: 50%;
  background: #d62042;
}
.p-price__item-list-item + .p-price__item-list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-price__units {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-price__units {
    margin-top: 3.75rem;
  }
}

.p-price__unit + .p-price__unit {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit + .p-price__unit {
    margin-top: 3.75rem;
  }
}

.p-price__unit-number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #72797d;
}
@media screen and (max-width: 768px) {
  .p-price__unit-number {
    font-size: 1rem;
  }
}

.p-price__unit-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-price__unit-title {
    font-size: 1.5rem;
    margin-top: 0.9375rem;
  }
}
.p-price__unit-title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-price__unit-title .en {
    font-size: 1.75rem;
  }
}
.p-price__unit-title .small {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit-title .small {
    font-size: 1.25rem;
  }
}

.p-price__unit-text {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit-text {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.p-price__unit-subtitle {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 18px;
  padding-left: 1.125rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  position: relative;
}
.p-price__unit-subtitle::before {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  border-radius: 50%;
  background: #d62042;
  left: 0;
  top: 6px;
  top: 0.375rem;
}

.p-price__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 0.625rem;
  }
}

.p-price__unit-item {
  background: #fff;
  border-radius: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 1.125rem);
          flex: 0 1 calc(25% - 1.125rem);
  padding: 42px 10px;
  padding: 2.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit-item {
    border-radius: 0.625rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.3125rem);
            flex: 0 1 calc(50% - 0.3125rem);
    padding: 1.5625rem 0.625rem;
  }
}

.p-price__unit-item-img {
  width: 122px;
  width: 7.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-price__unit-item-img {
    width: 6.25rem;
  }
}

.p-price__unit-img-wrapper {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-price__unit-img-wrapper {
    border-radius: 0.625rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-price__unit-img {
  max-width: 100%;
  margin: 0 auto;
}
.p-price__unit-img.w-903 {
  width: 903px;
  width: 56.4375rem;
}
.p-price__unit-img.w-990 {
  width: 990px;
  width: 61.875rem;
}
.p-price__unit-img.w-730 {
  width: 730px;
  width: 45.625rem;
}

/* p-results */
.p-results__cards {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-results__cards {
    margin-top: 1.875rem;
  }
}
.p-results__cards .c-card__inner-div {
  min-height: 593px;
  min-height: 37.0625rem;
}
@media screen and (max-width: 768px) {
  .p-results__cards .c-card__inner-div {
    min-height: unset;
  }
}
.p-results__cards .c-card__category {
  margin-top: auto;
}
.p-results__cards .c-card__category span:first-child {
  color: #fff;
  background: #d62042;
  border-color: #d62042;
}
.p-results__cards .c-card__category span.current {
  color: #fff;
  background: #d62042;
  border-color: #d62042;
}

.p-results__subtitle {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.025em;
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-results__subtitle {
    font-size: 1.5rem;
    margin-top: 3.75rem;
  }
}

.p-results__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-results__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-results__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
}
@media screen and (max-width: 768px) {
  .p-results__item + .p-results__item {
    margin-top: 1.25rem;
  }
}

.p-results__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 1.25rem;
  padding: 40px 100px 30px 32px;
  padding: 2.5rem 6.25rem 1.875rem 2rem;
  -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;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-results__item-inner {
    display: block;
    border-radius: 0.625rem;
    padding: 1.25rem 1.25rem 2.5rem;
  }
}
.p-results__item-inner::after {
  position: absolute;
  content: "";
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link_icon_001.png) no-repeat center/contain;
  -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-results__item-inner::after {
    width: 1.875rem;
    height: 1.875rem;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}
.p-results__item-inner:hover {
  opacity: 1;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.p-results__item-inner:hover::after {
  -webkit-transform: scale(1.26) translateY(-50%);
          transform: scale(1.26) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-results__item-inner:hover::after {
    -webkit-transform: scale(1.26);
            transform: scale(1.26);
  }
}
.p-results__item-inner:hover .p-results__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-results__item-inner:hover .p-results__item-title {
  color: #d62042;
}

.p-results__item-img {
  width: 135px;
  width: 8.4375rem;
  min-width: 135px;
  min-width: 8.4375rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-results__item-img {
    width: 100%;
  }
}
.p-results__item-img img {
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-results__item-body {
  margin-left: 32px;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .p-results__item-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.p-results__item-company {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: #72797d;
}

.p-results__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-results__item-title {
    font-size: 1.125rem;
  }
}

.p-results__item-text {
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

/* p-service-mv */
.p-service-mv {
  background: #eef3f7;
  overflow: hidden;
  padding: 140px 0 15px;
  padding: 8.75rem 0 0.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-service-mv {
    padding-top: 5rem;
  }
}
.p-service-mv::before {
  position: absolute;
  content: "";
  height: 1100px;
  height: 68.75rem;
  width: 1100px;
  width: 68.75rem;
  top: 50%;
  left: 68%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/common/fv_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-service-mv::before {
    left: 50%;
    height: 31.25rem;
    width: 31.25rem;
  }
}

.p-service-mv__wrapper {
  max-width: 1490px;
  max-width: 93.125rem;
}

.p-service-mv__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;
  padding-right: 80px;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__inner {
    display: block;
    padding-right: 0;
  }
}

.p-service-mv__body {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-service-mv__body {
    width: 100%;
  }
}

.p-service-mv__title {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #d62042;
}
@media screen and (max-width: 768px) {
  .p-service-mv__title {
    font-size: 2rem;
    border-left: 0.3125rem solid #d62042;
    padding-left: 0.625rem;
  }
}
.p-service-mv__title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-service-mv__title .en {
    font-size: 2.25rem;
  }
}
.p-service-mv__title .u-fade-title::before {
  background: #d62042;
}

.p-service-mv__category {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.67;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__category {
    font-size: 1.125rem;
  }
}

.p-service-mv__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.67;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-service-mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__btns {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-service-mv__btn {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 1.875rem;
  padding: 15px 30px;
  padding: 0.9375rem 1.875rem;
  max-width: 100%;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-service-mv__btn {
    font-size: 1rem;
    margin: 0 auto;
    padding: 0.9375rem 1.25rem;
  }
}
.p-service-mv__btn::before, .p-service-mv__btn::after {
  position: absolute;
  content: "";
}
.p-service-mv__btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-service-mv__btn::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  right: 25px;
  right: 1.5625rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-service-mv__btn:first-child {
  width: 265px;
  width: 16.5625rem;
  color: #d62042;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-service-mv__btn:first-child {
    width: 18.75rem;
  }
}
.p-service-mv__btn:first-child:hover {
  color: #fff;
  border-color: transparent;
}
.p-service-mv__btn:first-child:hover::before {
  opacity: 1;
}
.p-service-mv__btn:first-child:hover::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}
.p-service-mv__btn:first-child::before {
  opacity: 0;
}
.p-service-mv__btn:first-child::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
}
.p-service-mv__btn:nth-child(2) {
  width: 317px;
  width: 19.8125rem;
  color: #fff;
  background: #fff;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
}
@media screen and (max-width: 768px) {
  .p-service-mv__btn:nth-child(2) {
    width: 18.75rem;
    margin-top: 0.625rem;
  }
}
.p-service-mv__btn:nth-child(2):hover {
  background: #fff;
  border-color: #d62042;
  color: #d62042;
}
.p-service-mv__btn:nth-child(2):hover::before {
  opacity: 0;
}
.p-service-mv__btn:nth-child(2):hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}
.p-service-mv__btn:nth-child(2)::before {
  opacity: 1;
}
.p-service-mv__btn:nth-child(2)::after {
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
}
.p-service-mv__btn:hover {
  opacity: 1;
}

.p-service-mv__img-box {
  width: 36.5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-service-mv__img-box {
    width: 80%;
    margin: auto;
  }
}

.p-service-mv__img img {
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service-mv__img {
    height: 12.5rem;
    max-width: 100%;
    margin: 1.875rem auto 0;
  }
}

.p-service-mv-icon__img {
  position: absolute;
  width: 220px;
  width: 13.75rem;
  height: 100%;
  top: 480px;
  top: 30rem;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-service-mv-icon__img {
    width: 11.25rem;
    height: 100%;
    top: 12.5rem;
    left: 1.875rem;
  }
}

.p-service-mv__breadcrumb {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-right: 80px;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .p-service-mv__breadcrumb {
    padding-right: 0;
  }
}
.p-service-mv__breadcrumb .c-breadcrumb__item:not(:first-child)::before {
  background: url(../img/common/breadcrumb_icon_002.png) no-repeat center/contain;
}
.p-service-mv__breadcrumb a {
  color: rgba(51, 51, 51, .5);
}
/* p-service */
.p-service-method__units {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-service-method__units {
    margin-top: 2.5rem;
  }
}

.p-service-method__unit {
  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-service-method__unit {
    display: block;
  }
}
.p-service-method__unit + .p-service-method__unit {
  border-top: 1px solid #cbcbcb;
  border-top: 0.0625rem solid #cbcbcb;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-service-method__unit + .p-service-method__unit {
    margin-top: 2.1875rem;
    padding-top: 2.1875rem;
  }
}
.p-service-method__unit .p-service-method__item-icon {
  width: 200px;
  width: 12.5rem;
}

.p-service-method__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service-method__items {
    margin-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-service-method__item {
  width: 100%;
}

.p-service-method__item-inner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  min-height: 12.5rem;
  border-radius: 0.625rem;
  background: #fff;
  padding: 50px 5px 40px;
  padding: 3.125rem 0.3125rem 2.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-service-method__item-inner {
    min-height: unset;
    padding: 1.5625rem 0.625rem 0.9375rem;
  }
}
.p-service-method__item-inner:hover {
  opacity: 1;
  border: 3px solid #d62042;
}
.p-service-method__item-inner:hover .p-service-method__btn {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-service-method__item-inner:hover .p-service-method__btn::before {
  opacity: 0;
}
.p-service-method__item-inner:hover .p-service-method__btn::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
}

.p-service-method__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.p-service-method__item-text {
  text-align: center;
  letter-spacing: 0.08em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-service-method__item-text {
    font-size: 1.5rem;
  }
}

.p-service-method__btn {
  display: block;
  width: 260px;
  width: 16.25rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  margin: 0 auto 0;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
  z-index: 1;
}
.p-service-method__btn::before, .p-service-method__btn::after {
  position: absolute;
  content: "";
}
.p-service-method__btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-service-method__btn::after {
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

/* p-single-service */
/* p-solution */
.p-solution__title {
  letter-spacing: -0.03em;
}

.p-solution__text {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-solution__text {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.p-solution__subheading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-solution__subheading {
    font-size: 1rem;
    margin-top: 3.75rem;
  }
}

.p-solution__heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d62042;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-solution__heading {
    font-size: 1.5rem;
    margin-top: 0.625rem;
  }
}

.p-solution__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 12px;
  gap: 0.75rem 0.75rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-solution__items {
    gap: 0.5rem 0.5rem;
    padding: 0;
    margin-top: 1.875rem;
  }
}

.p-solution__item {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 0.6rem);
          flex: 0 1 calc(20% - 0.6rem);
  padding: 34px 5px 25px;
  padding: 2.125rem 0.3125rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-solution__item {
    border-radius: 0.625rem;
    padding: 1.5625rem 0.3125rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.25rem);
            flex: 0 1 calc(50% - 0.25rem);
  }
}

.p-solution__item-icon {
  width: 76px;
  width: 4.75rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-solution__item-text {
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-solution__item-text {
    font-size: 0.75rem;
  }
}

/* p-subject */
.p-subject__cards {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-subject__cards {
    margin-top: 1.875rem;
  }
}

/* p-strength */
.p-strength__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-strength__text {
    margin-top: 2.5rem;
  }
}
.p-strength__text span {
  font-weight: 700;
}

.p-strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 80px;
  gap: 0 5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-strength__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-strength__item {
  width: 319px;
  width: 19.9375rem;
  min-width: 319px;
  min-width: 19.9375rem;
  height: 319px;
  height: 19.9375rem;
  border: 2px solid #d62042;
  border: 0.125rem solid #d62042;
  background: #fff;
  border-radius: 50%;
  padding-top: 80px;
  padding-top: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .23);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .23);
}
@media screen and (max-width: 768px) {
  .p-strength__item {
    display: block;
    width: 17.5rem;
    min-width: 17.5rem;
    height: 17.5rem;
    padding-top: 3.125rem;
    margin: 0 auto;
  }
}
.p-strength__item + .p-strength__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strength__item + .p-strength__item {
    margin-top: 2.5rem;
  }
}
.p-strength__item + .p-strength__item::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -80px;
  left: -5rem;
  height: 1px;
  height: 0.0625rem;
  width: 80px;
  width: 5rem;
  background: #d62042;
}
@media screen and (max-width: 768px) {
  .p-strength__item + .p-strength__item::before {
    width: 0.0625rem;
    height: 2.5rem;
    left: 50%;
    top: -2.5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-strength__item:first-child::after {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background: url("../../assets/img/strength/strength_icon_001-3.png") no-repeat center center;
  background-size: contain;
  top: 60px;
  top: 3.75rem;
  left: 20px;
  left: 1.25rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-strength__item:first-child .p-strength__item-icon {
  width: 100%;
  height: 67px;
  height: 4.1875rem;
  background: url("../../assets/img/strength/strength_icon_001.png") no-repeat center center;
  background-size: contain;
}
.p-strength__item:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background: url("../../assets/img/strength/strength_icon_002-3.png") no-repeat center center;
  background-size: contain;
  top: 60px;
  top: 3.75rem;
  left: 20px;
  left: 1.25rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-strength__item:nth-child(2) .p-strength__item-icon {
  width: 100%;
  height: 70px;
  height: 4.375rem;
  background: url("../../assets/img/strength/strength_icon_002.png") no-repeat center center;
  background-size: contain;
}
.p-strength__item:nth-child(3)::after {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background: url("../../assets/img/strength/strength_icon_003-3.png") no-repeat center center;
  background-size: contain;
  top: 60px;
  top: 3.75rem;
  left: 20px;
  left: 1.25rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-strength__item:nth-child(3) .p-strength__item-icon {
  width: 100%;
  height: 68px;
  height: 4.25rem;
  background: url("../../assets/img/strength/strength_icon_003.png") no-repeat center center;
  background-size: contain;
}
.p-strength__item .arrow {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-top: 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;
}
.p-strength__item .arrow::before,
.p-strength__item .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 2.5px;
  width: 0.15625rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 62.4375rem;
  background-color: #9ba4aa;
  -webkit-transform-origin: 50% calc(100% - 0.05em);
          transform-origin: 50% calc(100% - 0.05em);
}
.p-strength__item .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-strength__item .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-strength__item:hover {
  opacity: 1;
  background: #d62042;
}
.p-strength__item:hover .p-strength__item-text {
  color: #fff;
}
.p-strength__item:hover .arrow {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.p-strength__item:hover .arrow::before, .p-strength__item:hover .arrow::after {
  background-color: #fff;
}
.p-strength__item:hover:first-child .p-strength__item-icon {
  background: url("../../assets/img/strength/strength_icon_001-2.png") no-repeat center center;
  background-size: contain;
}
.p-strength__item:hover:nth-child(2) .p-strength__item-icon {
  background: url("../../assets/img/strength/strength_icon_002-2.png") no-repeat center center;
  background-size: contain;
}
.p-strength__item:hover:nth-child(3) .p-strength__item-icon {
  background: url("../../assets/img/strength/strength_icon_003-2.png") no-repeat center center;
  background-size: contain;
}

.p-strength__item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d62042;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength__item-text {
    font-size: 1rem;
  }
}

.p-strength__units {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength__units {
    margin-top: 3.75rem;
  }
}

.p-strength__unit + .p-strength__unit {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength__unit + .p-strength__unit {
    margin-top: 5rem;
  }
}
.p-strength__unit:first-child .p-strength__box-img {
  width: 903px;
  width: 56.4375rem;
}
.p-strength__unit:nth-child(2) .p-strength__box-img {
  width: 730px;
  width: 45.625rem;
}
.p-strength__unit:nth-child(3) .p-strength__box {
  position: relative;
  z-index: 1;
}
.p-strength__unit:nth-child(3) .p-strength__box::before {
  position: absolute;
  content: "";
  width: 676px;
  width: 42.25rem;
  height: 613px;
  height: 38.3125rem;
  left: 132px;
  left: 8.25rem;
  top: 211px;
  top: 13.1875rem;
  background: url(../img/strength/strength_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-strength__unit:nth-child(3) .p-strength__box::before {
    width: 18.75rem;
    height: 17.5rem;
    left: 1.25rem;
    top: 9.375rem;
  }
}
.p-strength__unit .c-unit__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-strength__unit .c-unit__text {
  width: 550px;
  width: 34.375rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-strength__unit .c-unit__text {
    width: 100%;
  }
}

.p-strength__box {
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  margin-top: 90px;
  margin-top: 5.625rem;
  padding: 85px 35px 80px;
  padding: 5.3125rem 2.1875rem 5rem;
  border-top: solid 10px #d62042;
  border-top: solid 0.625rem #d62042;
}
@media screen and (max-width: 768px) {
  .p-strength__box {
    margin-top: 3.75rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-strength__box-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-strength__box-title {
    font-size: 1.25rem;
  }
}
.p-strength__box-title span {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-strength__box-title span {
    font-size: 1.5rem;
  }
}

.p-strength__box-text {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-strength__box-text {
    text-align: left;
    margin-top: 1.875rem;
  }
}

.p-strength__box-img {
  max-width: 100%;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-strength__box-img {
    margin-top: 2.5rem;
  }
}

.p-strength__box-logo {
  width: 275px;
  width: 17.1875rem;
  max-width: 100%;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-strength__box-logo {
    width: 12.5rem;
    margin-top: 2.5rem;
  }
}

.p-strength__box-subtext {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 1rem;
  background: #d62042;
  padding: 3px 10px 4px;
  padding: 0.1875rem 0.625rem 0.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength__box-subtext {
    font-size: 0.875rem;
  }
}

.p-strength__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 5px;
  gap: 0 0.3125rem;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-strength__box-items {
    gap: 0.3125rem 0.3125rem;
  }
}

.p-strength__box-item {
  border-radius: 0.625rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 0.25rem);
          flex: 0 1 calc(20% - 0.25rem);
  padding: 24px 12px 12px;
  padding: 1.5rem 0.75rem 0.75rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.15625rem);
            flex: 0 1 calc(50% - 0.15625rem);
  }
}
.p-strength__box-item:nth-child(1) {
  background: #f94e6e;
}
.p-strength__box-item:nth-child(2) {
  background: #df425f;
}
.p-strength__box-item:nth-child(3) {
  background: #d62042;
}
.p-strength__box-item:nth-child(4) {
  background: #ab0521;
}
.p-strength__box-item:nth-child(5) {
  background: #911d31;
}

.p-strength__box-item-icon {
  width: 105px;
  width: 6.5625rem;
  max-width: 100%;
  margin: 0 auto;
}

.p-strength__box-item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item-title {
    font-size: 1rem;
  }
}
.p-strength__box-item-title span {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item-title span {
    font-size: 1.25rem;
  }
}

.p-strength__box-item-body {
  background: #fff;
  border-radius: 0.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 15px 20px 20px;
  padding: 0.9375rem 1.25rem 1.25rem;
}

.p-strength__box-item-number {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  color: #d62042;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item-number {
    font-size: 1.5rem;
  }
}
.p-strength__box-item-number span {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item-number span {
    font-size: 1rem;
  }
}

.p-strength__box-item-text {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-top: 2px solid #eef3f7;
  border-top: 0.125rem solid #eef3f7;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-strength__box-item-text {
    font-size: 1.125rem;
  }
}

.p-strength-img {
  margin: 4.0625rem calc(50% - 49.5vw) 0;
}
@media screen and (max-width: 768px) {
  .p-strength-img {
    margin: 0rem calc(50% - 49.5vw) 0;
  }
}

.p-strength-img__slider {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .p-strength-img__slider {
    margin-top: 0;
  }
}
.p-strength-img__slider.slick-initialized {
  display: block;
}
.p-strength-img__slider .slick-list {
  height: inherit;
}
.p-strength-img__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-strength-img__slider-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
  margin: 0 1.875rem;
  width: 574px;
  width: 35.875rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-strength-img__slider-item {
    margin: 0 0.625rem;
    width: 100%;
    height: 100%;
  }
}
.p-strength-img__slider-item img {
  border-radius: 1.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-strength-img__slider-item:nth-child(even) {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-strength-img__slider-item:nth-child(even) {
    margin-top: 6.25rem;
  }
}

/* p-top-case */
.p-top-case__bg {
  background: url(../img/top/top-case_bg.png) no-repeat center/cover;
}

.p-top-case__subtitle {
  color: rgba(255, 255, 255, .5);
}

.p-top-case__title {
  color: #fff;
}
.p-top-case__title .u-fade-title::before {
  background: #fff;
}

.p-top-case__text {
  color: #fff;
}

.p-top-case__link {
  color: #fff;
  -webkit-text-decoration-color: #A6A6A6;
          text-decoration-color: #A6A6A6;
}

.p-top-case__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-case__cards {
    margin-top: 2.5rem;
  }
}

/* p-top-company */
.p-top-company {
  padding: 0 40px 80px;
  padding: 0 2.5rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-company {
    padding: 0 1.25rem 3.75rem;
  }
}

.p-top-company__subtitle {
  color: rgba(255, 255, 255, .5);
}

.p-top-company__title {
  color: #fff;
}
.p-top-company__title .u-fade-title::before {
  background: #fff;
}

.p-top-company__link {
  color: #fff;
  -webkit-text-decoration-color: #A6A6A6;
          text-decoration-color: #A6A6A6;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-top-company__link {
    margin-top: 0;
  }
}
.p-top-company__link span::before {
  background: #fff;
}

.p-top-company__content {
  border-radius: 2rem;
  background: #333;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-company__content {
    border-radius: 1.25rem;
    padding: 2.5rem 0;
  }
}

.p-top-company__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-top-company__inner {
    display: block;
  }
}

.p-top-company__body {
  padding: 110px 0 260px;
  padding: 6.875rem 0 16.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-company__body {
    padding: 0;
  }
}

.p-top-company__imgs {
  width: 69%;
  margin-right: -17%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1600px) {
  .p-top-company__imgs {
    width: 55%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-company__imgs {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-top-company__img:first-child img {
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-company__img:first-child img {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
.p-top-company__img:nth-child(2) {
  margin-top: auto;
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-company__img:nth-child(2) {
    margin-top: 0;
    margin-left: 0;
  }
}
.p-top-company__img:nth-child(2) img {
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-company__img:nth-child(2) img {
    border-radius: 0 0.625rem 0.625rem 0;
  }
}

/* p-top-consultant */
.p-top-consultant__slider {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-consultant__slider {
    margin-top: 1.875rem;
  }
}
.p-top-consultant__slider .c-card__inner:hover .c-card__img img {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top-consultant__slider .c-card__img {
  position: relative;
  aspect-ratio: 392/300;
  height: auto;
  width: auto;
  overflow: hidden;
}
.p-top-consultant__slider .c-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-top-consultant__slider .c-card__img .is-show {
  opacity: 1;
}

/* p-top-knowledge */
.p-top-knowledge__cards {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-top-knowledge__cards {
    margin-top: 1.875rem;
  }
}

/* p-top-method */
.p-top-method__text {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__text {
    margin-top: 1.875rem;
  }
}

.p-top-method__link-wrapper {
  min-width: 287px;
  min-width: 17.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__link-wrapper {
    min-width: unset;
  }
}

.p-top-method__link {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__link {
    font-size: 1rem;
  }
}
.p-top-method__link::after {
  top: 4px;
  top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__link::after {
    top: 0.125rem;
  }
}
.p-top-method__link span span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__link span span {
    font-size: 1.375rem;
  }
}
.p-top-method__link span span::before {
  display: none;
}

.p-top-method__units {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__units {
    margin-top: 2.5rem;
  }
}

.p-top-method__unit {
  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-top-method__unit {
    display: block;
  }
}
.p-top-method__unit + .p-top-method__unit {
  border-top: 1px solid #cbcbcb;
  border-top: 0.0625rem solid #cbcbcb;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__unit + .p-top-method__unit {
    margin-top: 2.1875rem;
    padding-top: 2.1875rem;
  }
}
.p-top-method__unit:first-child .p-top-method__item:first-child .p-top-method__item-icon {
  width: 118px;
  width: 7.375rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(2) .p-top-method__item-inner {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(2) .p-top-method__item-icon {
  width: 111px;
  width: 6.9375rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(2) .p-top-method__item-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(3) .p-top-method__item-inner {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(3) .p-top-method__item-icon {
  width: 115px;
  width: 7.1875rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(3) .p-top-method__item-text {
  margin-top: 28px;
  margin-top: 1.75rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(4) .p-top-method__item-inner {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(4) .p-top-method__item-icon {
  width: 115px;
  width: 7.1875rem;
}
.p-top-method__unit:first-child .p-top-method__item:nth-child(4) .p-top-method__item-text {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:first-child .p-top-method__item-inner {
  padding-top: 30px;
  padding-top: 1.875rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:first-child .p-top-method__item-icon {
  width: 120px;
  width: 7.5rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:first-child .p-top-method__item-text {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(2) .p-top-method__item-inner {
  padding-top: 23px;
  padding-top: 1.4375rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(2) .p-top-method__item-icon {
  width: 92px;
  width: 5.75rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(2) .p-top-method__item-text {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(3) .p-top-method__item-inner {
  padding-top: 55px;
  padding-top: 3.4375rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(3) .p-top-method__item-icon {
  width: 112px;
  width: 7rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(3) .p-top-method__item-text {
  margin-top: 22px;
  margin-top: 1.375rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(4) .p-top-method__item-inner {
  padding-top: 30px;
  padding-top: 1.875rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(4) .p-top-method__item-icon {
  width: 102px;
  width: 6.375rem;
}
.p-top-method__unit:nth-child(2) .p-top-method__item:nth-child(4) .p-top-method__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:first-child .p-top-method__item-inner {
  padding-top: 32px;
  padding-top: 2rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:first-child .p-top-method__item-icon {
  width: 55px;
  width: 3.4375rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:first-child .p-top-method__item-text {
  margin-top: 18px;
  margin-top: 1.125rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(2) .p-top-method__item-inner {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(2) .p-top-method__item-icon {
  width: 70px;
  width: 4.375rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(2) .p-top-method__item-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(3) .p-top-method__item-inner {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(3) .p-top-method__item-icon img {
  width: 50%;
  margin: 0 auto;
}
.p-top-method__unit:nth-child(3) .p-top-method__item:nth-child(3) .p-top-method__item-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-top-method__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 12px;
  gap: 0.75rem 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-method__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-top-method__item-inner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  min-height: 12.5rem;
  border-radius: 0.625rem;
  background: #fff;
  padding: 25px 5px 10px;
  padding: 1.5625rem 0.3125rem 0.625rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-top-method__item-inner {
    min-height: unset;
    padding: 1.5625rem 0.625rem 0.9375rem;
  }
}
.p-top-method__item-inner:hover {
  opacity: 1;
  border: 3px solid #d62042;
}

.p-top-method__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.p-top-method__item-text {
  text-align: center;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-method__item-text {
    font-size: 0.9375rem;
  }
}

/* p-top-movie */
.p-top-movie__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-movie__cards {
    margin-top: 1.25rem;
  }
}

.js-modal-video {
  cursor: pointer;
}

/* --- モーダルのベース --- */
#modal {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  display: none; /* 最初は非表示 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, .8); /* 背景の半透明黒 */
  z-index: 9999;
}

/* --- モーダルの中身 --- */
#modal .modal-content {
  position: relative;
  width: 90vw;
  max-width: 560px; /* YouTube の推奨 16:9 */
  aspect-ratio: 16/9;
}

/* iframe を枠いっぱいに広げる */
#modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 閉じるボタン */
#modal .close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .3333333333);
          box-shadow: 0 0 8px rgba(0, 0, 0, .3333333333);
}

#modal .close:hover {
  background: #eee;
}

/* 背景スクロールを止めるためのクラス */
body.no-scroll {
  overflow: hidden;
}

.p-top-mv {
  background: #eef3f7;
  padding: 100px 0;
  padding: 6.25rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .p-top-mv {
    padding: 5.625rem 0 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    padding: 5rem 0 3.75rem;
  }
}
.p-top-mv::before {
  position: absolute;
  content: "";
  width: 1100px;
  width: 68.75rem;
  height: 1100px;
  height: 68.75rem;
  left: 68%;
  top: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/top/top-mv_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-mv::before {
    left: 40%;
    width: 25rem;
    height: 25rem;
  }
}

.p-top-mv__inner {
  max-width: 1560px;
  max-width: 97.5rem;
  margin: 0 auto;
}

.p-top-mv__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;
  padding-left: 80px;
  padding-left: 5rem;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__wrapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-top-mv__body {
  width: 59%;
  position: relative;
  padding-top: 200px;
  padding-top: 12.5rem;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__body {
    padding-top: 11.25rem;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__body {
    width: 100%;
    padding-top: 5.625rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-top-mv__texts {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  position: absolute;
  left: 0;
  top: 0;
}
.p-top-mv__texts.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .p-top-mv__texts {
    white-space: wrap;
  }
}

.p-top-mv__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #2d3032;
  line-height: 1.3;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__title {
    font-size: 1.25rem;
  }
}
.p-top-mv__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-top-mv__title .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-mv__title .large {
  font-size: 72px;
  font-size: 4.5rem;
  color: #d62042;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__title .large {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__title .large {
    font-size: 1.75rem;
  }
}
.p-top-mv__title .large .cross {
  display: inline-block;
  font-size: 50px;
  font-size: 3.125rem;
  color: #a2a2a2;
  font-weight: 400;
  margin: 0 3px;
  margin: 0 0.1875rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__title .large .cross {
    font-size: 1.125rem;
  }
}
.p-top-mv__title .large .en {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 600;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__title .large .en {
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__title .large .en {
    font-size: 2rem;
  }
}
.p-top-mv__title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .p-top-mv__title .en {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv__title .en {
    font-size: 1.375rem;
  }
}

.p-top-mv__text {
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2d3032;
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__text {
    width: 100%;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    letter-spacing: 0;
  }
}

.p-top-mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 170px;
  margin-top: 10.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 11.25rem;
  }
}

.p-top-mv__btn {
  display: block;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 1.875rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  position: relative;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btn {
    font-size: 0.8125rem;
    padding: 0.75rem 0.9375rem 0.8125rem;
  }
}
.p-top-mv__btn::before, .p-top-mv__btn::after {
  position: absolute;
  content: "";
}
.p-top-mv__btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  z-index: -1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#d62042), to(#ab0521));
  background: linear-gradient(to right, #d62042 0%, #ab0521 100%);
}
.p-top-mv__btn::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  width: 1.125rem;
  height: 13px;
  height: 0.8125rem;
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow_icon_white.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btn::after {
    width: 0.8125rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.p-top-mv__btn:first-child {
  width: 265px;
  width: 16.5625rem;
}
.p-top-mv__btn:nth-child(2) {
  width: 280px;
  width: 17.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__btn:nth-child(2) {
    margin-left: 0.625rem;
  }
}
.p-top-mv__btn:hover {
  opacity: 1;
  color: #d62042;
  background: #fff;
  border-color: #d62042;
}
.p-top-mv__btn:hover::before {
  opacity: 0;
}
.p-top-mv__btn:hover::after {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}

.p-top-mv__slider-wrapper {
  width: 40%;
  padding-right: 80px;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__slider-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-top-mv__slider {
  display: none;
}
.p-top-mv__slider.slick-initialized {
  display: block;
}

.p-top-mv__slider-item img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__slider-item img {
    border-radius: 0.625rem;
    height: 6.25rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-mv__slider-control {
  position: absolute;
  bottom: 50px;
  bottom: 3.125rem;
  right: 30px;
  right: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .p-top-mv__slider-control {
    right: 0rem;
    left: 0rem;
    bottom: -14vw;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    display: none;
  }
}

.p-top-mv__slider-nav li {
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
  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-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #a6a6a6;
  position: relative;
  cursor: pointer;
}
.p-top-mv__slider-nav li:not(:first-child) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__slider-nav li {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.p-top-mv__slider-stop {
  display: block;
  width: 42px;
  width: 2.625rem;
  height: 42px;
  height: 2.625rem;
  border-radius: 50%;
  background: #9ba4aa;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}
.p-top-mv__slider-stop:hover {
  opacity: 1;
}
.p-top-mv__slider-stop::before, .p-top-mv__slider-stop::after {
  position: absolute;
  content: "";
  width: 2px;
  width: 0.125rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  color: #fff;
}
.p-top-mv__slider-stop::before {
  display: none;
  left: 16px;
  left: 1rem;
}
.p-top-mv__slider-stop::after {
  content: "▶︎";
  width: auto;
  height: auto;
  left: 55%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  background: none;
}
.p-top-mv__slider-stop.active::before {
  display: block;
}
.p-top-mv__slider-stop.active::after {
  content: "";
  width: 2px;
  width: 0.125rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  left: 23px;
  left: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv__slider-stop {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.progress .bg {
  fill: none;
  stroke: #a6a6a6;
  stroke-width: 2;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.progress .fg {
  fill: none;
  stroke: #d62042;
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-top-mv__slider-nav li.is-current .bg,
.p-top-mv__slider-nav li.is-current .fg {
  opacity: 1;
}

:root { /* ＝ 2πr（r=16） */
}

.progress .fg.is-animating {
  -webkit-animation: progress-fill 8s linear forwards;
          animation: progress-fill 8s linear forwards;
}

.p-top-mv__slider-nav.is-paused .fg.is-animating {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes progress-fill {
  from {
    stroke-dashoffset: 100.53;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes progress-fill {
  from {
    stroke-dashoffset: 100.53;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.progress svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
}

.customSlider {
  position: relative;
}
@media screen and (max-width: 768px) {
  .customSlider {
    left: 2vw;
  }
}

.customSlider__wrap {
  width: 73.6px;
  width: 4.6rem;
  height: 576px;
  height: 36rem;
}
@media screen and (max-width: 768px) {
  .customSlider__wrap {
    width: 8rem;
    height: auto;
  }
}

.customSlider__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.customSlider__item:nth-of-type(1) {
  z-index: 20;
}

.customSlider__item:nth-of-type(2) {
  z-index: 19;
}

.customSlider__item:nth-of-type(3) {
  z-index: 18;
}

.customSlider__item:nth-of-type(4) {
  z-index: 17;
}

.customSlider__item:nth-of-type(5) {
  z-index: 16;
}

.customSlider__item:nth-of-type(6) {
  z-index: 15;
}

.customSlider__item:nth-of-type(7) {
  z-index: 14;
}

.customSlider__item:nth-of-type(8) {
  z-index: 13;
}

.customSlider__item:nth-of-type(9) {
  z-index: 12;
}

.customSlider__item:nth-of-type(10) {
  z-index: 11;
}

.customSlider__item:nth-of-type(11) {
  z-index: 10;
}

.customSlider__item:nth-of-type(12) {
  z-index: 9;
}

.customSlider__item:nth-of-type(13) {
  z-index: 8;
}

.customSlider__item:nth-of-type(14) {
  z-index: 7;
}

.customSlider__item:nth-of-type(15) {
  z-index: 6;
}

.customSlider__item:nth-of-type(16) {
  z-index: 5;
}

.customSlider__item:nth-of-type(17) {
  z-index: 4;
}

.customSlider__item:nth-of-type(18) {
  z-index: 3;
}

.customSlider__item:nth-of-type(19) {
  z-index: 2;
}

.customSlider__item:nth-of-type(20) {
  z-index: 1;
}

.customSlider__item:nth-of-type(21) {
  z-index: 0;
}

.customSlider__item.is-active,
.customSlider__item.is-next {
  pointer-events: auto;
}

.customSlider__item.is-active .customSlider__item-img {
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
}
.customSlider__item.is-active .customSlider__item-img:after {
  display: none;
}

.customSlider__item-inner {
  position: relative;
  overflow: hidden;
}

.customSlider__item-inner {
  margin-top: 100px;
  margin-top: 6.25rem;
  width: 30vw;
  height: 24vw;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .customSlider__item-inner {
    width: 80vw;
    height: 40vw;
    border-radius: 0.625rem;
    margin-top: 3.25rem;
  }
}

.customSlider__item-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.customSlider__item-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 10px, rgba(255, 255, 255, .4) 10px, rgba(255, 255, 255, .4) 20px);
  background-size: 10px 10px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.95" /><feFuncG type="linear" slope="0.95" /><feFuncB type="linear" slope="0.95" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
}

.customSlider__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.customSlider__item {
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.customSlider__item span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 16px;
  top: 1rem;
  right: 24px;
  right: 1.5rem;
  color: #d62042;
}

/* p-top-news */
.p-top-news__link-wrapper {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__link-wrapper {
    margin-top: 2.5rem;
  }
}

.p-top-news__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 36px;
  gap: 0 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__units {
    display: block;
  }
}

.p-top-news__unit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-news__unit-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;
}
.p-top-news__unit.js-hide {
  display: none;
}

.p-top-news__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__content {
    margin-top: 0.625rem;
  }
}

.p-top-news__button {
  text-align: center;
  min-width: 260px;
  min-width: 16.25rem;
  height: 56px;
  height: 3.5rem;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #fff;
  border: 2px solid #555;
  letter-spacing: 0.08em;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  color: #555;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__button {
    min-width: 10rem;
    height: 3rem;
    font-size: 0.875rem;
    border: 2px solid #555;
    padding: 0.5rem 1.25rem;
  }
}

/* p-top-pickup */
.p-top-pickup {
  margin-top: -40px;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.p-top-pickup__content {
  width: 1100px;
  width: 68.75rem;
  max-width: 100%;
  border-radius: 3.125rem;
  background: #fff;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
          box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  padding: 26px 80px 26px 50px;
  padding: 1.625rem 5rem 1.625rem 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__content {
    padding: 0.625rem 3.125rem 0.625rem 1.25rem;
  }
}

.p-top-pickup__items {
  display: none;
  position: relative;
}
.p-top-pickup__items.slick-initialized {
  display: block;
}
.p-top-pickup__items .c-slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 19px;
  width: 1.1875rem;
  height: 14px;
  height: 0.875rem;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__items .c-slide-arrow {
    width: 0.75rem;
    height: 0.625rem;
  }
}
.p-top-pickup__items .c-slide-arrow:hover {
  opacity: 1;
}
.p-top-pickup__items .c-prev-arrow {
  background: url(../img/common/arrow_icon_red_002.png) no-repeat center/contain;
  right: -20px;
  right: -1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__items .c-prev-arrow {
    right: -0.9375rem;
  }
}
.p-top-pickup__items .c-prev-arrow:hover {
  right: -15px;
  right: -0.9375rem;
}
.p-top-pickup__items .c-next-arrow {
  background: url(../img/common/arrow_icon_red.png) no-repeat center/contain;
  right: -55px;
  right: -3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__items .c-next-arrow {
    right: -2.5rem;
  }
}
.p-top-pickup__items .c-next-arrow:hover {
  right: -60px;
  right: -3.75rem;
}

a.p-top-pickup__item-inner {
  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) {
  a.p-top-pickup__item-inner {
    display: block;
  }
}
a.p-top-pickup__item-inner:hover {
  opacity: 1;
}
a.p-top-pickup__item-inner:hover .p-top-pickup__item-title {
  color: #d62042;
}

div.p-top-pickup__item-inner {
  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) {
  div.p-top-pickup__item-inner {
    display: block;
  }
}
div.p-top-pickup__item-inner:hover {
  opacity: 1;
}
div.p-top-pickup__item-inner:hover .p-top-pickup__item-title {
  color: inherit;
}

.p-top-pickup__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.08em;
  min-width: 125px;
  min-width: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__item-date {
    font-size: 0.625rem;
  }
}

.p-top-pickup__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #393b3d;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-pickup__item-title {
    font-size: 0.875rem;
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

/* p-top-reason */
.p-top-reason__bg {
  background: #d62042;
  position: relative;
  z-index: 1;
}
.p-top-reason__bg::before {
  position: absolute;
  content: "";
  width: 741px;
  width: 46.3125rem;
  height: 741px;
  height: 46.3125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/top/top-reason_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-reason__bg::before {
    width: 18.75rem;
    height: 18.75rem;
    top: 0.625rem;
    -webkit-transform: unset;
            transform: unset;
    left: 0.625rem;
  }
}

.p-top-reason__text {
  color: #fff;
}

.p-top-reason__subtitle {
  color: #fff;
  color: rgba(255, 255, 255, .5);
}

.p-top-reason__title {
  color: #fff;
}
.p-top-reason__title .u-fade-title::before {
  background: #fff;
}

.p-top-reason__link {
  color: #fff;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}
.p-top-reason__link span::before {
  background: #fff;
}
.p-top-reason__link::after {
  background: url(../img/common/link_icon_002.png) no-repeat center/contain;
}

.p-top-reason__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 80px;
  gap: 0 5rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-top-reason__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-top-reason__item {
  width: 319px;
  width: 19.9375rem;
  min-width: 319px;
  min-width: 19.9375rem;
  height: 319px;
  height: 19.9375rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding-top: 80px;
  padding-top: 5rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-top-reason__item {
    width: 17.5rem;
    min-width: 17.5rem;
    height: 17.5rem;
    padding-top: 3.125rem;
    margin: 0 auto;
  }
  .p-top-reason__item + .p-top-reason__item {
    margin-top: 2.5rem;
  }
}
.p-top-reason__item + .p-top-reason__item {
  position: relative;
}
.p-top-reason__item + .p-top-reason__item::before {
  position: absolute;
  content: "";
  height: 1px;
  height: 0.0625rem;
  width: 80px;
  width: 5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -80px;
  left: -5rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-reason__item + .p-top-reason__item::before {
    height: 2.5rem;
    width: 0.0625rem;
    top: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-top-reason__item:first-child .p-top-reason__item-icon {
  width: 108px;
  width: 6.75rem;
}
.p-top-reason__item:nth-child(2) .p-top-reason__item-icon {
  width: 63px;
  width: 3.9375rem;
}
.p-top-reason__item:nth-child(3) .p-top-reason__item-icon {
  width: 101px;
  width: 6.3125rem;
}

.p-top-reason__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.p-top-reason__item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-reason__item-text {
    font-size: 1rem;
  }
}

/* p-top-results */
.p-top-results {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-top-results__title {
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top-results__title {
    font-size: 1.125rem;
  }
}
.p-top-results__title span {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-size: 3.25rem;
  color: #d62042;
  margin-right: 7px;
  margin-right: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-top-results__title span {
    font-size: 2rem;
    margin-right: 0.1875rem;
  }
}

.p-top-results__slider {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .p-top-results__slider {
    margin-top: 0;
  }
}
.p-top-results__slider.slick-initialized {
  display: block;
}
.p-top-results__slider .slick-list {
  height: inherit;
}
.p-top-results__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top-results__slider-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 5px;
  margin: 0 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-top-results__slider-item {
    margin: 0 -0.3125rem;
  }
}

/* p-top-seminar */
.p-top-seminar__link {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-top-seminar__link {
    margin-bottom: 0;
  }
}

.p-top-seminar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-seminar__header {
    display: block;
  }
}

.p-top-seminar__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-seminar__cards {
    margin-top: 1.875rem;
  }
}

.p-top-seminar__card + .p-top-seminar__card {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-seminar__card + .p-top-seminar__card {
    margin-top: 1.25rem;
  }
}

/* p-top-service */
.p-top-service__list li:first-child {
  -webkit-box-shadow: 0px -0.0625rem 0px #cbcbcb, 0px 0.0625rem 0px #cbcbcb;
          box-shadow: 0px -0.0625rem 0px #cbcbcb, 0px 0.0625rem 0px #cbcbcb;
}
.p-top-service__list li:first-child.hovered {
  -webkit-box-shadow: 0px -0.0625rem 0px #cbcbcb !important;
          box-shadow: 0px -0.0625rem 0px #cbcbcb !important;
}
.p-top-service__list li:first-child:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.p-top-service__units {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__units {
    margin-top: 1.875rem;
  }
}

/* u-fade-title */
.u-fade-title {
  display: inline-block;
  color: transparent;
  position: relative;
}
.u-fade-title::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 100%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
  background: #333;
}
.u-fade-title.active {
  -webkit-animation-name: fade-title01;
          animation-name: fade-title01;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.u-fade-title.active::before {
  -webkit-animation-name: fade-title02;
          animation-name: fade-title02;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-title01 {
  100% {
    color: inherit;
  }
}

@keyframes fade-title01 {
  100% {
    color: inherit;
  }
}
@-webkit-keyframes fade-title02 {
  50% {
    left: 0%;
    right: 0%;
  }
  100% {
    left: 100%;
    right: 0%;
  }
}
@keyframes fade-title02 {
  50% {
    left: 0%;
    right: 0%;
  }
  100% {
    left: 100%;
    right: 0%;
  }
}
/* u-fade */
.u-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.u-fade-up.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-fade-down {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.u-fade-down.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
