@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  color: #1a1a1a;
}

.body--no-scroll {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  -ms-touch-action: none;
      touch-action: none;
}

html.body--no-scroll {
  overflow: hidden;
  height: 100%;
}

.header {
  height: 60px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .header {
    height: 100px;
  }
}

.header__inner {
  height: inherit;
  padding-inline: 20px;
  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 (min-width: 1280px) {
  .header__inner {
    padding-inline: 16px;
  }
}

.header__logo img {
  width: 198px;
}
@media screen and (min-width: 1280px) {
  .header__logo img {
    width: 280px;
  }
}

.header__nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #023E78;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header__nav.is-checked {
  right: 0;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    background-color: transparent;
    overflow: visible;
  }
}

.header__nav-lists {
  padding-block: 57px 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 37px;
}
@media screen and (min-width: 1280px) {
  .header__nav-lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
  }
}

.header__nav-list {
  position: relative;
}
.header__nav-list a {
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .header__nav-list:not(:first-child)::before {
    content: "／";
    position: absolute;
    top: 50%;
    left: -30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.header__nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .header__nav-link {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
  }
}

.header__nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 60px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .header__nav-button {
    font-size: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0;
    gap: 10px;
    width: auto;
    line-height: 2;
  }
}

.button--reference {
  color: #ffffff;
  border: 1px solid #ffffff;
  width: 98%;
  padding-block: 21px;
  max-width: 300px;
  list-style: none;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .button--reference {
    color: #023E78;
    border: 1px solid #023E78;
    margin-left: 30px;
    width: auto;
    padding: 20px 31px;
  }
  .button--reference:hover {
    background: #023E78;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.button--contact {
  color: #023E78;
  background: #ffffff;
  width: 98%;
  padding-block: 22px;
  max-width: 300px;
  list-style: none;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .button--contact {
    width: auto;
    padding: 20px 46px;
    background: #023E78;
    color: #ffffff;
  }
  .button--contact:hover {
    background: #002a52;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (min-width: 1280px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 27px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 27px;
  height: 2.25px;
  background: #023E78;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
  border-radius: 20px;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 7px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 14px;
}

.p-main-visual__inner {
  padding-left: 41px;
}
@media screen and (min-width: 1280px) {
  .p-main-visual__inner {
    padding-left: 90px;
  }
}

.p-main-visual {
  position: relative;
}

.p-main-visual-slide__image {
  aspect-ratio: 335/607;
}
@media screen and (min-width: 600px) {
  .p-main-visual-slide__image {
    aspect-ratio: 1190/700;
  }
}
.p-main-visual-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-main-visual__content {
  position: absolute;
  bottom: 16px;
  z-index: 2;
  left: 20px;
}
@media screen and (min-width: 1280px) {
  .p-main-visual__content {
    bottom: 60px;
    left: 50px;
  }
}

.p-main-visual__title-wrapper {
  font-family: "Fira Sans", sans-serif;
  font-size: 10.67vw;
  font-style: italic;
  line-height: normal;
  color: #023E78;
  display: block;
}
@media screen and (min-width: 600px) {
  .p-main-visual__title-wrapper {
    font-size: 5vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-visual__title-wrapper {
    font-size: 4.6875vw;
  }
}

.p-main-visual__group {
  display: block;
  gap: 8px;
  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: flex-start;
}
@media screen and (min-width: 600px) {
  .p-main-visual__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-visual__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    background: #ffffff;
    margin-bottom: 8px;
  }
}

.p-main-visual__title--first {
  font-weight: 500;
  background: #ffffff;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .p-main-visual__title--first {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-visual__title--first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 7px;
  }
}

.p-main-visual__title--second {
  font-weight: 500;
  background: #ffffff;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .p-main-visual__title--second {
    padding-left: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-visual__title--second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 7px;
  }
}

.p-main-visual__title--third {
  font-weight: 500;
  background: #ffffff;
  display: inline-block;
  margin-top: 8px;
}

.p-main-visual__text {
  font-size: 4.27vw;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background: #023E78;
  display: inline-block;
  margin-top: 17px;
}
@media screen and (min-width: 600px) {
  .p-main-visual__text {
    margin-top: 15px;
    font-size: 2vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-visual__text {
    font-size: 1.56vw;
  }
}

.p-about {
  padding-top: 60px;
  padding-bottom: 150px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about {
    padding-top: 254px;
    padding-bottom: 130px;
  }
}
.p-about::before {
  content: "" !important;
  position: absolute;
  top: 200px;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #EDF3F8;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg);
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-about::before {
    top: 412px;
  }
}

.p-about__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-inline: 40px;
    max-width: 920px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__inner {
    padding-inline: 0;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.p-about__content {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__content {
    margin-top: 0;
    max-height: 426px;
    margin-top: 22px;
    gap: 40px;
  }
}

.p-about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-about__text--second {
  margin-top: 2px;
}

.p-about__text--third {
  margin-top: 4px;
}

.p-about__image-wrapper {
  position: relative;
}

.p-about__image {
  padding-top: 40px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    padding-top: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__image {
    width: 681px;
    margin-top: 0;
  }
}
.p-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__link-more {
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .p-about__link-more {
    position: absolute !important;
    top: -195px;
    right: 0;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__link-more {
    top: -119px;
    margin-top: 0;
  }
}

.p-about__bg {
  position: absolute;
  top: 0;
  left: calc(50% - 107px);
  width: calc(50vw + 107px);
  height: 96vw;
  background: url("../img/about-bg-sp.webp") no-repeat center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about__bg {
    top: -200px;
    left: calc(50% - 100px);
    width: calc(27.7vw + 100px);
    height: 600px;
    background: url("../img/about-bg.webp") no-repeat center/cover;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bg {
    top: -280px;
    left: calc(30% + 66px);
    width: calc(50vw - 140px);
    height: 800px;
  }
}

.c-heading {
  color: #023E78;
}

.c-heading__title {
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-heading__title {
    font-size: 60px;
  }
}
@media screen and (min-width: 900px) {
  .c-heading__title {
    font-size: 100px;
  }
}

.c-heading__text {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-heading__text {
    font-size: 24px;
  }
}

.c-link-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .c-link-more {
    gap: 20px;
  }
}

.c-link-more__text {
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: normal;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-link-more__text {
    font-size: 32px;
  }
}

.c-link-more__text--blue {
  color: #023E78;
}

.c-link-more__arrow {
  width: 64px;
  height: 2px;
  background-color: #ffffff;
  margin-right: 20px;
  margin-top: 4px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-link-more__arrow {
    width: 95px;
    margin-right: 25px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.c-link-more__arrow::after {
  content: "";
  position: absolute;
  top: -13px;
  right: 5px;
  width: 2px;
  height: 18px;
  background-color: #ffffff;
  -webkit-transform: rotate(-53deg);
          transform: rotate(-53deg);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

@media screen and (min-width: 900px) {
  .c-link-more:hover .c-link-more__arrow {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
}

@media screen and (min-width: 900px) {
  .c-link-more:hover .c-link-more__arrow::after {
    right: 4px;
    height: 14px;
    top: -11px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.c-link-more__arrow--blue {
  background-color: #023E78;
}
.c-link-more__arrow--blue::after {
  background-color: #023E78;
}

.c-link-more__circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 2px solid #FFF400;
  top: -11px;
}
@media screen and (min-width: 768px) {
  .c-link-more__circle {
    width: 51px;
    height: 55px;
    border-radius: 51px;
    border: 3px solid #FFF400;
  }
}

.c-link-more__circle--yellow {
  position: absolute;
  border: none;
  background: #FFF400;
  z-index: -1;
  top: -12px;
}
@media screen and (min-width: 768px) {
  .c-link-more__circle--yellow {
    top: -8px;
  }
}

.p-service {
  padding-top: 89px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .p-service {
    padding-top: 232px;
    padding-bottom: 120px;
  }
}
.p-service::before {
  content: "";
  position: absolute;
  top: 1243px;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #EDF3F8;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg);
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-service::before {
    top: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .p-service::before {
    top: 790px;
  }
}

.p-service__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    max-width: 900px;
    margin: 0 auto;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-service__inner {
    padding-inline: 0;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.p-service__content {
  padding-top: 64px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .p-service__content {
    padding-left: 0;
    padding-top: 80px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-service__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-service__item:not(:first-child) {
  margin-top: 73px;
}

@media screen and (min-width: 768px) {
  .p-service__item {
    width: 29.09%;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-service__item:nth-child(2) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-service__item:nth-child(3) {
    margin-top: 120px;
  }
}

.p-service__item--content {
  position: relative;
}

.p-service__item--number {
  position: absolute;
  top: -56px;
  right: 2px;
  width: 105px;
}
@media screen and (min-width: 768px) {
  .p-service__item--number {
    right: 0px;
  }
}
.p-service__item--number img {
  width: 100%;
}

.p-service__item--image img {
  max-width: 100%;
}

.p-service__title {
  color: #023E78;
  position: absolute;
  bottom: 35px;
  left: -14px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    left: -30px;
    bottom: 33px;
  }
}

.p-service__title--details {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  background: #fff;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-service__title--details {
    font-size: 22px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1280px) {
  .p-service__title--details {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
  }
}

.p-service__title--details:not(:first-child) {
  margin-top: 8px;
}

.p-service__text {
  margin-top: 14px;
}

.p-service__link-more {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-service__link-more {
    position: absolute;
    margin-top: 0;
    right: 0;
    top: -90px;
  }
}
@media screen and (min-width: 1280px) {
  .p-service__link-more {
    top: -96px;
  }
}

.p-case {
  background: url(../img/case-bg.webp) center/cover no-repeat;
  padding-top: 60px;
  padding-bottom: 65px;
  margin-top: 92px;
}
@media screen and (min-width: 1280px) {
  .p-case {
    padding-top: 100px;
    padding-bottom: 128px;
    margin-top: -13px;
    background: url(../img/case-bg-pc.webp) center center/cover no-repeat;
  }
}

.p-case__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1280px) {
  .p-case__inner {
    padding-inline: 40px;
    max-width: 1180px;
    margin: 0 auto;
  }
}

.p-case__heading {
  color: #ffffff;
}

.p-case__content {
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .p-case__content {
    position: relative;
  }
}
@media screen and (min-width: 1280px) {
  .p-case__content {
    margin-top: 10px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-case__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-case__item {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-case__item {
    margin-top: 48px;
    width: 29.09%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-case__item:hover .p-case__item--link {
    -webkit-transform: translateY(-50%) translateX(5px);
            transform: translateY(-50%) translateX(5px);
  }
  .p-case__item:hover .p-case__item--link img {
    content: url("../img/case-yellow-arrow-icon.svg");
  }
}
@media screen and (min-width: 1280px) {
  .p-case__item {
    margin-top: 64px;
    width: 29.09%;
  }
}
.p-case__item:not(:first-child) {
  margin-top: 49px;
}
@media screen and (min-width: 1280px) {
  .p-case__item:not(:first-child) {
    margin-top: 67px;
  }
}

.p-case__item--img {
  background-color: #fff;
  text-align: center;
  padding: 45px 88px 46px 88px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.p-case__item--img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media screen and (min-width: 768px) {
  .p-case__item--img {
    padding: 28px 68px;
  }
  .p-case__item--img img {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .p-case__item--img {
    padding: 48px 88px;
  }
  .p-case__item--img img {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

.p-case__item--company {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  margin-top: 14px;
}

.p-case__item--suffix {
  margin-left: 1em;
}

.p-case__item--links {
  margin-top: 14px;
  position: relative;
}

.p-case__item--tag {
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  padding: 5px 15px;
}
@media screen and (min-width: 768px) {
  .p-case__item--tag {
    font-size: 12px;
    padding: 5px 5px;
  }
}
@media screen and (min-width: 900px) {
  .p-case__item--tag {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.p-case__item--link {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-case__link-more {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .p-case__link-more {
    position: absolute;
    top: -130px;
    right: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-case__link-more {
    position: absolute;
    top: -106px;
    right: 0;
    margin-top: 0;
  }
}

.p-news {
  padding-top: 58px;
  margin-bottom: 192px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 158px;
    padding-bottom: 73px;
    margin-bottom: 85px;
  }
}
.p-news::before {
  content: "";
  position: absolute;
  background-color: #EDF3F8;
  -webkit-transform: skewY(9deg);
          transform: skewY(9deg);
  z-index: -2;
  top: 206px;
  bottom: -63px;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-news::before {
    top: 570px;
    -webkit-transform: skewY(10deg);
            transform: skewY(10deg);
  }
}

.p-news-heading__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-heading__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-inline: 40px;
    position: relative;
  }
}
@media screen and (min-width: 1280px) {
  .p-news-heading__inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding-inline: 20px;
  }
}

.p-news__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding-inline: 40px;
    max-width: 848px;
    margin: 0 auto;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
    font-size: 24px;
    font-weight: 700;
  }
}

.p-news__card {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .p-news__card {
    margin-top: 77px;
  }
}

.p-news__lists {
  padding: 40px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .p-news__lists {
    padding: 60px 40px 40px 40px;
  }
}

.p-news__list {
  display: block;
  border-bottom: 1px solid #ddd;
}

.p-news__list:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-news__list:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-news__list:not(:last-child) {
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-news__list:first-child {
    padding-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .p-news__list:nth-child(2) {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-news__list:nth-child(3) {
    padding-top: 26px;
  }
}

.p-news-link__meta {
  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-news-link__label {
  font-size: 12px;
  line-height: normal;
  color: #E61264;
  border: 1px solid #E61264;
  padding: 4px 20px;
}
@media screen and (min-width: 768px) {
  .p-news-link__label {
    font-size: 14px;
    padding: 7px 23px;
  }
}

.p-news-link__date {
  color: #888888;
}

.p-news-link__title {
  margin-top: 15px;
  padding-bottom: 27px;
  font-weight: 700;
  white-space: nowrap; /* 折り返さない */
  overflow: hidden; /* はみ出し非表示 */
  text-overflow: ellipsis; /* 「…」を表示 */
}
@media screen and (min-width: 768px) {
  .p-news-link__title {
    font-size: 16px;
    padding-bottom: 24px;
  }
}

.p-news__link-more {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .p-news__link-more {
    position: absolute;
    top: 200px;
    right: 47px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-news__link-more {
    top: 217px;
    right: auto;
    left: calc(50% + 263px);
    margin-top: 0;
  }
}

.c-footer-links {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-footer-links__item--download {
  padding-top: 35px;
  background: url("../img/footer-download-bg.webp") no-repeat center/cover;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .c-footer-links__item--download {
    width: 50%;
    padding-top: 54px;
    padding-bottom: 53px;
    background: url("../img/footer-download-bg-pc.webp") no-repeat center/cover;
  }
}

.footer-links__title {
  font-family: "Fira Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
  text-transform: uppercase;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer-links__title {
    font-size: 60px;
  }
}

.c-footer-links__text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 2;
}

.footer-links__button {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .footer-links__button {
    margin-top: 34px;
  }
}

.c-button {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-style: italic;
  color: #FFF400;
  border: 2px solid #FFF400;
  max-width: 295px;
  padding-block: 22px;
  padding-inline: 20px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Fira Sans", sans-serif;
}
.c-button:hover {
  background: #FFF400;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 22px;
    font-weight: 500;
    padding-block: 26px;
    max-width: 315px;
    font-size: 24px;
  }
}
.c-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background: url("../img/footer-links-btn-arrow.svg") no-repeat center/contain;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button::after {
    right: 31px;
  }
}
.c-button:hover::after {
  background: url("../img/icon-arrow-blue.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}

.c-footer-links__item--contact {
  padding-top: 37px;
  background: url("../img/footer-contact-bg.webp") no-repeat center/cover;
  padding-bottom: 37px;
}
@media screen and (min-width: 768px) {
  .c-footer-links__item--contact {
    width: 50%;
    padding-top: 54px;
    background: url("../img/footer-contact-bg-pc.webp") no-repeat center/cover;
  }
}

.l-footer {
  background: #1a1a1a;
  padding-top: 78px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 130px;
  }
}

.l-footer__logo {
  display: block;
  margin: 0 auto;
  width: 280px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 363px;
  }
}

.l-footer__body {
  margin-top: 31px;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__body {
    margin-top: 34px;
  }
}

.l-footer__body-text {
  display: inline-block;
  text-align: left;
}

.l-footer__bottom {
  text-align: center;
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    margin-top: 76px;
  }
}

.l-footer__copyright {
  color: #ffffff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 14px;
  }
}

.footer__page-top {
  position: relative;
}

.footer__page-top-button {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -50px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .footer__page-top-button {
    top: -65px;
    right: 20px;
  }
}

.c-breadcrumb {
  margin-block: 10px;
  padding-left: 20px;
  line-height: 1.4;
  font-size: 12px;
  overflow-x: auto;
  white-space: nowrap;
}
.c-breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb a {
  color: #888888;
  text-decoration: none;
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    max-width: 1180px;
    margin: 10px auto;
    padding-inline: 40px;
  }
}

.c-breadcrumb span[property=itemListElement] {
  display: inline-block;
}
.c-breadcrumb span[property=itemListElement]:first-of-type {
  margin-right: 10px;
}
.c-breadcrumb span[property=itemListElement]:not(:first-of-type) {
  margin-inline: 11px;
}
.c-breadcrumb li:last-of-type {
  color: #1a1a1a;
}

.c-lower-mv {
  background: url("../img/lower-mv-about_sp.webp") no-repeat center center/cover;
  height: 250px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-lower-mv {
    background: url("../img/lower-mv-about_pc.webp") no-repeat center center/cover;
  }
}
.c-lower-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.2);
  z-index: 1;
}
.c-lower-mv::after {
  content: "";
  position: absolute;
  background: url("../img/lower-mv-decoration_sp.png") no-repeat left/contain;
  width: 375px;
  height: 250px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-lower-mv::after {
    background: url("../img/lower-mv-decoration_pc.png") no-repeat left/contain;
    width: 365.6px;
  }
}

.c-lower-mv--main {
  padding-top: 91px;
  padding-left: 21px;
  color: #023E78;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-lower-mv--main {
    padding-top: 72.5px;
    left: 15.5%;
  }
}

.c-lower-mv__title {
  padding-top: 2px;
  padding-bottom: 3px;
  padding-right: 1px;
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  background: #ffffff;
  display: inline-block;
  font-family: "Fira Sans", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__title {
    font-size: 60px;
    padding-top: 5px;
    padding-bottom: 6px;
    padding-right: 2px;
  }
}

.c-lower-mv__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  background: #ffffff;
  margin-top: 10px;
  line-height: 1;
  padding-bottom: 3px;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__text {
    font-size: 20px;
    margin-top: 10px;
  }
}

.p-page-news-lower-mv {
  background: url("../img/news-bg-sp.webp") no-repeat center center/cover;
  height: 250px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-page-news-lower-mv {
    background: url("../img/news-bg-pc.webp") no-repeat center center/cover;
  }
}
.p-page-news-lower-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.2);
  z-index: 1;
}
.p-page-news-lower-mv::after {
  content: "";
  position: absolute;
  background: rgba(2, 62, 120, 0.8);
  width: 165.65px;
  height: 250px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-page-news-lower-mv::after {
    background: url("../img/lower-mv-decoration_pc.png") no-repeat left/contain;
    width: 365.6px;
    background-color: transparent;
  }
}

.p-about-message {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-about-message {
    padding-top: 70px;
  }
}

.p-about-message__inner {
  padding-inline: 20px;
}
.p-about-message__item--bg1 {
  position: relative;
  background: url("../img/about-message-item-bg1.webp") no-repeat center center/cover;
  margin: 0 calc(50% - 50vw);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 24px;
  height: 281px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-message__item--bg1 {
    background: url("../img/about-message-item-bg1-pc.webp") no-repeat center center/cover;
    margin: 0 calc(50% - 43vw);
    height: 353px;
    padding-left: 21px;
    padding-top: 31px;
  }
}

.p-about-message__item--bg1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.2);
  z-index: 1;
}

.p-about-message__item--bg1 > * {
  position: relative;
  z-index: 2;
}

.p-about-message__title--en01 {
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  font-family: "Fira Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-about-message__title--en01 {
    font-size: 100px;
  }
}

.p-about-message__title--ja01 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-about-message__title--ja01 {
    font-size: 24px;
    margin-top: 7px;
  }
}

.p-about-message__body {
  background: #ffffff;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-inline: 20px;
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-about-message__body {
    padding-bottom: 30px;
    padding-inline: 40px;
    margin-top: -60px;
    padding-top: 29px;
    max-width: 688px;
    width: 91%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-message__body {
    padding-bottom: 30px;
    padding-inline: 40px;
    margin-top: -60px;
    padding-top: 29px;
    max-width: 688px;
    width: 62.5%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-about-message__body--title {
  font-size: 20px;
  font-weight: 700;
  color: #023E78;
  line-height: 1.5;
}
@media screen and (max-width: 374px) {
  .p-about-message__body--title {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .p-about-message__body--title {
    font-size: 24px;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.p-about-message__body--text {
  font-weight: 500;
  line-height: 1.71;
  margin-top: 18px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-about-message__body--text {
    margin-top: 30px;
  }
}

.p-about-message__item--bg2 {
  position: relative;
  background: url("../img/about-message-item-bg2.webp") no-repeat center center/cover;
  margin: 0 calc(50% - 50vw);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 26px;
  height: 281px;
  margin-top: 60px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-message__item--bg2 {
    background: url("../img/about-message-item-bg2-pc.webp") no-repeat center center/cover;
    margin: 0 calc(50% - 43vw);
    height: 353px;
    padding-left: 20px;
    padding-top: 31px;
    margin-top: 120px;
  }
}

.p-about-message__item--bg2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.2);
  z-index: 1;
}

.p-about-message__item--bg2 > * {
  position: relative;
  z-index: 2;
}

.p-about-message__title--en02 {
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  font-family: "Fira Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-about-message__title--en02 {
    font-size: 100px;
  }
}

.p-about-message__title--ja02 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-about-message__title--ja02 {
    font-size: 24px;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.p-about-company {
  background: url("../img/about-bg-sp.webp") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-about-company {
    margin-top: 59px;
    background: url("../img/about-bg.webp") no-repeat center center/cover;
  }
}

.p-about-company__inner {
  padding-inline: 20px;
  padding-top: 60px;
  padding-bottom: 101px;
}
@media screen and (min-width: 768px) {
  .p-about-company__inner {
    padding-block: 92.5px;
  }
}

.p-about-company__body {
  background: #ffffff;
  padding: 38px 20px 34px 20px;
}
@media screen and (min-width: 768px) {
  .p-about-company__body {
    max-width: 768px;
    margin: 0 auto;
    padding: 57px 40px 62px 40px;
  }
}

.p-about-company__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.p-about-company__list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 33.9% 66.1%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  line-height: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-company__list {
    margin-top: 56px;
    grid-template-columns: 29.1% 70.9%;
  }
}

.p-about-company__term,
.p-about-company__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 15px 15px;
  border-top: 1px solid #e8eaec;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-company__term,
  .p-about-company__desc {
    padding-block: 23px;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-about-company__term {
  border-top: 1px solid #023E78;
}

.p-about-company__desc {
  padding-left: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .p-about-company__desc {
    padding-left: 32px;
  }
}

.p-about-company__desc:nth-of-type(2) {
  padding-bottom: 13px;
}

.p-about-company__desc:nth-of-type(3) {
  padding-top: 16px;
}

.p-about-company__list-inner li {
  padding-left: 21px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-company__list-inner li {
    padding-left: 24px;
  }
}
.p-about-company__list-inner li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 4px;
  height: 4px;
  background: #023E78;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-about-company__list-inner li::before {
    left: 10px;
    top: 64%;
  }
}

@media screen and (min-width: 768px) {
  .p-about-company__term:nth-of-type(2) {
    padding-top: 25px;
  }
}

.p-about-company__term:nth-of-type(3) {
  padding-block: 6px 16px; /* 上下paddingを調整 */
}
@media screen and (min-width: 768px) {
  .p-about-company__term:nth-of-type(3) {
    padding-top: 25px;
    padding-bottom: 22px;
  }
}

.p-about-company__term:nth-of-type(4) {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-about-company__term:nth-of-type(4) {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.p-about-company__term:nth-of-type(5) {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-about-company__term:nth-of-type(5) {
    padding-top: 25px;
  }
}

.p-about-company__term:nth-of-type(6) {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-about-company__term:nth-of-type(6) {
    padding-top: 24px;
  }
}

.p-about-company__term:nth-of-type(7) {
  border-bottom: 1px solid #023E78;
}

@media screen and (min-width: 768px) {
  .p-about-company__desc:nth-of-type(2) {
    padding-bottom: 24px;
  }
}

.p-about-company__desc:nth-of-type(3) {
  padding-block: 6px 10px; /* 上下paddingを調整 */
}
@media screen and (min-width: 768px) {
  .p-about-company__desc:nth-of-type(3) {
    padding-top: 11px;
  }
}

.p-about-company__desc:nth-of-type(4) {
  padding-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .p-about-company__desc:nth-of-type(4) {
    padding-bottom: 20px;
  }
}

.p-about-company__desc:nth-of-type(5) {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-about-company__desc:nth-of-type(5) {
    padding-top: 22px;
  }
}

.p-about-company__desc:nth-of-type(6) {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-about-company__desc:nth-of-type(6) {
    padding-top: 24px;
  }
}

.p-about-company__desc:nth-of-type(7) {
  border-bottom: 1px solid #e8eaec;
}

.p-about-executives {
  padding-top: 57px;
  padding-bottom: 106px;
  margin-bottom: 44px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-executives {
    padding-top: 120px;
    padding-bottom: 187px;
    margin-bottom: 2px;
  }
}
.p-about-executives::before {
  content: "";
  position: absolute;
  top: 940px;
  bottom: 40px;
  right: 0;
  left: 0;
  background-color: #EDF3F8;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg);
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-about-executives::before {
    top: 842px;
    bottom: 64px;
  }
}

.p-about-executives__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-about-executives__inner {
    padding-inline: 40px;
  }
}

.p-about-executives__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.p-about-executives__lists {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-about-executives__lists {
    width: 688px;
    margin: 0 auto;
    padding-top: 55px;
  }
}

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

.p-about-executives__list + .p-about-executives__list {
  margin-top: 60px;
}

.p-about-executives__list:nth-child(3) {
  margin-top: 55px;
}

.p-about-executives__img {
  width: 71.6%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about-executives__img {
    width: 34.88%;
    padding-top: 2px;
    margin: 0;
  }
}
.p-about-executives__img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-about-executives__content {
    width: 59.3%;
  }
}

.p-about-executives__item {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about-executives__item {
    margin-top: 0;
  }
}

.p-about-executives__position {
  font-weight: 700;
}

.p-about-executives__name {
  font-size: 20px;
  font-weight: 700;
}

.p-about-executives__profile {
  margin-top: 14px;
  margin-bottom: 17px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-about-executives__profile {
    margin-top: 27px;
    margin-bottom: 29px;
  }
}

.p-about-executives__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.p-about-executives__social-link--X {
  width: 32px;
  height: 32px;
}

.p-about-executives__social-link--fb {
  width: 32px;
  height: 32px;
}

.p-about-executives__social-link--inst {
  width: 32px;
  height: 32px;
}

.p-page-news-archive {
  padding-bottom: 94px;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive {
    padding-bottom: 0;
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .p-page-news-archive {
    width: 69%;
  }
}

.p-page-news-archive__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__name {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0;
  }
}

.p-page-news-archive__link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__link:first-of-type {
    margin-top: 20px;
  }
  .p-page-news-archive__link:not(:first-of-type) {
    margin-top: 40px;
  }
}

.p-page-news-archive__link--thumbnail {
  width: 35.8%;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__link--thumbnail {
    width: 32.9%;
  }
}
.p-page-news-archive__link--thumbnail img {
  width: 100%;
  height: 24vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__link--thumbnail img {
    height: 12.2vw;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 156px;
  }
}

.p-page-news-archive__link-body {
  width: 60.59%;
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__link-body {
    width: 64.5%;
  }
}

.p-page-news-archive__title {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 5px;
  display: -webkit-box; /* Flexboxの一種 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示する行数 */
  overflow: hidden; /* はみ出しを隠す */
}
@media screen and (min-width: 768px) {
  .p-page-news-archive__title {
    font-size: 16px;
    margin-top: 15px;
  }
}

.p-archive-news__pagination {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-archive-news__pagination {
    margin-top: 59px;
  }
}

.c-meta {
  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;
}

.c-meta-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #E61264;
  border: 1px solid #E61264;
  padding: 4.5px 10px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .c-meta-label {
    font-size: 14px;
    font-weight: 500;
    padding: 3px 9px;
  }
}

.c-meta-date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #888888;
  text-align: right;
}

.l-contents-main {
  padding-top: 54px;
}
@media screen and (min-width: 768px) {
  .l-contents-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1180px;
    padding-inline: 40px;
    margin: 0 auto;
    padding-top: 68px;
    padding-bottom: 160px;
  }
}

.l-contents-main__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-contents-main__inner {
    padding-inline: 0;
  }
}

body.archive .l-contents-main {
  padding-top: 0;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  body.archive .l-contents-main {
    padding-top: 68px;
    padding-bottom: 137px;
  }
}

body.archive .l-contents-main__inner {
  padding: 60px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 768px) {
  body.archive .l-contents-main__inner {
    padding: 0;
    gap: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    gap: 8px;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .nav-links {
    gap: 8px;
  }
}

.page-numbers {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  width: 40px;
  height: 40px;
  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;
  padding: 8px 15px;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 50px;
    height: 50px;
    padding: 0;
  }
}

.page-numbers.current {
  background: #023E78;
  color: #ffffff;
}

.page-numbers.next,
.page-numbers.prev {
  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;
  width: 40px;
  height: 40px;
  padding: 13px 16px;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .page-numbers.next,
  .page-numbers.prev {
    width: 50px;
    height: 50px;
    padding: 0;
    margin-left: 22px;
  }
}
.page-numbers.next img,
.page-numbers.prev img {
  width: 7.48px;
  height: 12.72px;
}
@media screen and (min-width: 768px) {
  .page-numbers.next img,
  .page-numbers.prev img {
    width: 9px;
    height: 16px;
  }
}

.c-sidebar {
  padding-top: 94px;
}
@media screen and (min-width: 768px) {
  .c-sidebar {
    padding-top: 0;
    width: 35%;
  }
}
@media screen and (min-width: 1280px) {
  .c-sidebar {
    width: 27.27%;
  }
}

.c-sidebar-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .c-sidebar-inner {
    padding-inline: 0;
  }
}

.c-sidebar__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-sidebar__title {
    margin-bottom: 0;
  }
}

.c-sidebar-new__item {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-sidebar-new__item {
    margin-top: 12px;
  }
  .c-sidebar-new__item:not(:first-of-type) {
    margin-top: 16px;
  }
}

.c-sidebar-new__item-body {
  width: 60.59%;
}
@media screen and (min-width: 768px) {
  .c-sidebar-new__item-body {
    width: 63.5%;
  }
}

.sidebar-new--thumbnail {
  width: 35.8%;
}
@media screen and (min-width: 768px) {
  .sidebar-new--thumbnail {
    width: 33.3%;
  }
}
.sidebar-new--thumbnail img {
  width: 100%;
  height: 24vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sidebar-new--thumbnail img {
    height: 7.8vw;
    max-height: 100px;
  }
}

.c-sidebar-new__title {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 5px;
  display: -webkit-box; /* Flexboxの一種 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示する行数 */
  overflow: hidden; /* はみ出しを隠す */
}
@media screen and (min-width: 768px) {
  .c-sidebar-new__title {
    margin-top: 9px;
    line-height: 1.3;
    letter-spacing: 0px;
  }
}

.c-sidebar-category {
  padding-top: 55px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .c-sidebar-category {
    padding-top: 78px;
    padding-bottom: 0;
  }
}

.c-sidebar-category__title {
  font-size: 20px;
  font-weight: 700;
}

.c-sidebar-category__list {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .c-sidebar-category__list {
    margin-top: 13px;
  }
}

.c-sidebar-category__item {
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 15px;
  padding-left: 39px;
  border-top: 1px solid #ddd;
  position: relative;
}
.c-sidebar-category__item a {
  font-weight: 700;
}
.c-sidebar-category__item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../img/category-arrow.svg");
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 投稿ページ (single.php) のみ */
@media screen and (min-width: 768px) {
  body.single .c-sidebar__title {
    line-height: 1.3;
  }
}

body.single .c-sidebar {
  padding-top: 0;
}

/* アーカイブページ (archive.php) のみ */
@media screen and (min-width: 768px) {
  body.archive .c-sidebar__title {
    line-height: 1.3;
  }
}

body.archive .c-sidebar {
  padding-top: 55px;
}
@media screen and (min-width: 768px) {
  body.archive .c-sidebar {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-single-page__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1180px;
    padding-inline: 40px;
    margin: 0 auto;
    padding-top: 70px;
    gap: 40px;
  }
}

.p-single-page__main {
  padding-inline: 20px;
  padding-top: 59px;
  padding-bottom: 94px;
}
@media screen and (min-width: 768px) {
  .p-single-page__main {
    padding-inline: 0;
    width: 60%;
    padding-top: 0;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 900px) {
  .p-single-page__main {
    width: 69.09%;
  }
}

.p-single-page__meta .c-meta-label {
  padding: 0;
}
.p-single-page__meta .c-meta-label a {
  display: block;
  padding: 7px 23px;
  font-size: 14px;
}

.p-single-page__title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-single-page__title {
    font-size: 24px;
  }
}

.p-single-page__thumbnail {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-single-page__thumbnail {
    margin-top: 23px;
  }
}
.p-single-page__thumbnail img {
  width: 100%;
  height: 46.5vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-page__thumbnail img {
    max-height: 399px;
    height: 32vw;
  }
}

.p-single-page__body {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .p-single-page__body {
    margin-top: 40px;
  }
}
.p-single-page__body p {
  margin-top: 15px;
}
.p-single-page__body ul {
  list-style-type: disc; /* ・ */
}
.p-single-page__body ol {
  list-style-type: decimal; /* 1. 2. 3. */
}

.p-single-page__body h2 {
  font-size: 20px;
  font-weight: 700;
  background: #f8f8f8;
  line-height: 1.3;
  border-left: 6px solid #023E78;
  padding: 8px 20px;
  color: #023E78;
}

.p-single-page__body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  padding-bottom: 9px;
  border-bottom: 1px solid #023E78;
  margin-top: 30px;
  color: #023E78;
}

.p-single-page__body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #023E78;
  margin-top: 27px;
  color: #023E78;
}

.p-single-page__body--heading {
  color: #023E78;
}

.wp-block-list {
  margin-top: 14px;
  margin-left: 20px;
}

.p-single-page__body--text {
  margin-top: 14px;
  font-weight: 500;
}

.p-single-page__body--description {
  margin-top: 13px;
  font-weight: 500;
}
.p-single-page__body--description a {
  color: #023E78;
  text-decoration: underline;
}

.p-single-page__body-list {
  margin-top: 14px;
  font-weight: 500;
  margin-left: 5px;
  list-style-type: decimal; /* 1,2,3 の番号 */
  list-style-position: inside; /* 番号をリスト内に */
}

.p-single-page__body-list-item {
  font-weight: 500;
}

.p-single-page__body-list-item::marker {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 14px;
}

.p-single-page__body-list2 {
  margin-top: 14px;
  margin-left: 5px;
}

.p-single-page__body-list2 .p-single-page__body-list-item {
  font-weight: 400;
  position: relative;
  margin-left: 16px;
}
.p-single-page__body-list2 .p-single-page__body-list-item::before {
  content: "•";
  position: absolute;
  top: 50%;
  left: -13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single-page__body--title {
  color: #023E78;
  margin-top: 30px;
}

.p-single-page__blockquote {
  font-weight: 500;
  background: #f8f8f8;
  padding: 29px 33px;
  border-left: 4px solid #023E78;
  margin-top: 14px;
  margin-bottom: 0;
  margin-inline: 0;
  z-index: -2;
  position: relative;
}
.p-single-page__blockquote::before {
  content: "";
  position: absolute;
  background: url("../img/quote-img.svg");
  width: 55px;
  height: 47px;
  left: 20px;
  top: 15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-single-page__blockquote {
    width: 51vw;
    max-width: 646px;
    padding: 30px 33px;
  }
}

.wp-block-quote {
  padding: 16px 35px 30px 31px;
  border-left: 4px solid #023E78;
  background: #f8f8f8;
  margin: 10px 0 0 0;
  position: relative;
  z-index: -2;
}
.wp-block-quote::before {
  content: "";
  position: absolute;
  background: url("../img/quote-img.svg");
  width: 55px;
  height: 47px;
  left: 16px;
  top: 15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .wp-block-quote {
    width: 51vw;
    max-width: 646px;
    padding: 15px 31px 30px 31px;
    margin: 12px 0 0 0;
  }
}

.p-single-page__link {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-single-page__link--prev {
  color: #023E78;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 15px;
  border: 1px solid #023E78;
  border-radius: 4px;
}

.p-single-page__link--next {
  color: #023E78;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 15px;
  border: 1px solid #023E78;
  border-radius: 4px;
}

a[data-id="157"] {
  color: #023E78;
  font-weight: 400;
  text-decoration: underline;
}

.p-page-service-lower-mv {
  background: url("../img/lower-mv-service-sp.webp") no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-page-service-lower-mv {
    background: url("../img/lower-mv-service-pc.webp") no-repeat center/cover;
  }
}

.p-service-contents {
  padding-top: 61px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-service-contents {
    padding-top: 70px;
    padding-bottom: 162px;
  }
}

.p-service-contents-intro {
  padding-inline: 20px;
  text-align: center;
}
.p-service-contents-intro p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-service-contents-intro p {
    font-size: 28px;
  }
}

.p-service-contents__items {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__items {
    max-width: 1260px;
    padding-inline: 40px;
    margin-top: 133px;
    margin-inline: auto;
  }
}

.p-service-contents__main--item:nth-of-type(2) .p-service-contents__img {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item:nth-of-type(2) .p-service-contents__img {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item:nth-of-type(2) .p-service-contents__main {
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
}
.p-service-contents__main--item:nth-of-type(2) .p-service-contents__main--number {
  right: 20px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item:nth-of-type(2) .p-service-contents__main--number {
    left: auto;
    right: 45px;
  }
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item:nth-of-type(2) {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-service-contents__main--item:not(:first-child) {
  margin-top: 79px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item:not(:first-child) {
    margin-top: 256px;
  }
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-service-contents__img {
  margin: 0;
  width: 50%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-service-contents__img {
    margin-left: 0;
    margin-top: 64px;
    width: 47.5%;
  }
}
.p-service-contents__img img {
  width: 100%;
}

.p-service-contents__main {
  margin-inline: 20px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  padding-top: 39.5px;
  padding-bottom: 40px;
  position: relative;
  margin-top: -39.5vw;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main {
    margin-top: 0;
    margin-inline: 0;
    padding-top: 82px;
    padding-bottom: 60px;
    max-width: 590px;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
    width: 70%;
  }
}

.p-service-contents__main--inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--inner {
    padding-inline: 40px;
  }
}

.p-service-contents__main--number {
  font-size: 68px;
  font-weight: 500;
  font-style: italic;
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  position: absolute;
  top: -60px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--number {
    font-size: 100px;
    top: -79px;
    left: 60px;
  }
}

.p-service-contents__main--ja {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--ja {
    font-size: 40px;
  }
}

.p-service-contents__main--en {
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  color: #023E78;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--en {
    font-size: 16px;
  }
}

.p-service-contents__main--description {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .p-service-contents__main--description {
    margin-top: 50px;
  }
}

.p-service-contents__dl-wrapper {
  margin-top: 28px;
}
.p-service-contents__dl-wrapper .p-service-contents__dl:nth-of-type(2) {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .p-service-contents__dl-wrapper {
    margin-top: 58px;
  }
}

.p-service-contents__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .p-service-contents__dl {
    padding: 29px 0px;
  }
}

.p-service-contents__dl--title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.p-service-contents__dl--description {
  margin-left: 52px;
}

.p-service-contents__button {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-contents__button {
    margin-top: 59px;
    display: block;
  }
}

.button--application {
  display: block;
  margin: 0 auto;
  font-weight: 500;
  color: #023E78;
  line-height: 1.7;
  max-width: 295px;
  border: 1px solid #023E78;
  padding-block: 23px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button--application:hover {
  background: #023E78;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button--application::after {
  content: "";
  position: absolute;
  background: url(../img/service-contents-button-arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 12px;
  top: 50%;
  right: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .button--application::after {
    width: 20px;
    height: 14px;
    right: 19px;
  }
}
.button--application:hover::after {
  background: url("../img/arrow-icon-white.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}
@media screen and (min-width: 768px) {
  .button--application {
    font-size: 16px;
    padding-block: 21px;
    max-width: 304px;
  }
}

.bg-blue {
  position: relative;
}
.bg-blue::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  bottom: 10px;
  background: #EDF3F8;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .bg-blue::before {
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .bg-blue::before {
    top: -61px;
    bottom: -80px;
  }
}

.p-service-flow {
  background: url("../img/about-bg.webp") no-repeat center/cover;
  padding-block: 56px 60px;
}
@media screen and (min-width: 768px) {
  .p-service-flow {
    padding-top: 73px;
    padding-bottom: 10px;
    background: url("../img/service-flow-bg-pc.webp") no-repeat center/cover;
  }
}

.p-service-flow__inner {
  padding-inline: 20px;
}

.p-service-flow__title {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.p-service-flow__items {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .p-service-flow__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1100px;
    margin: 109px auto;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-service-flow__item {
  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;
}
@media screen and (min-width: 768px) {
  .p-service-flow__item {
    width: 25%;
    position: relative;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-service-flow__item:nth-child(1) .p-service-flow__content {
  background: #edf3f8;
  padding: 22px 20px 24px 20px;
  position: relative;
  z-index: 5;
}
.p-service-flow__item:nth-child(1) .p-service-flow__content::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #edf3f8;
  width: 274px;
  height: 20px;
  bottom: -19.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-flow__item:nth-child(1) .p-service-flow__content {
    padding-top: 43px;
    padding-left: 43px;
  }
  .p-service-flow__item:nth-child(1) .p-service-flow__content::after {
    content: "";
    position: absolute;
    border: none;
    -webkit-clip-path: polygon(100% 45%, 0 0, 0 100%);
            clip-path: polygon(100% 45%, 0 0, 0 100%);
    width: 23px;
    height: 209px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #edf3f8;
    right: -22px;
    left: auto;
    height: 100%;
  }
}
.p-service-flow__item:nth-child(2) .p-service-flow__content {
  background: #dde8f0;
  padding: 59px 20px 19px 20px;
  margin-top: -23px;
  z-index: 4;
  position: relative;
}
.p-service-flow__item:nth-child(2) .p-service-flow__content::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #dde8f0;
  width: 274px;
  height: 27px;
  bottom: -26.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-flow__item:nth-child(2) .p-service-flow__content {
    padding-top: 43px;
    margin-top: 0;
    padding-left: 50px;
  }
  .p-service-flow__item:nth-child(2) .p-service-flow__content::after {
    content: "";
    position: absolute;
    border: none;
    -webkit-clip-path: polygon(100% 45%, 0 0, 0 100%);
            clip-path: polygon(100% 45%, 0 0, 0 100%);
    width: 23px;
    height: 209px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #dde8f0;
    right: -22px;
    left: auto;
    height: 100%;
  }
}
.p-service-flow__item:nth-child(3) .p-service-flow__content {
  background: #c7dbe9;
  padding: 85px 20px 20px 20px;
  margin-top: -46px;
  z-index: 3;
  position: relative;
}
.p-service-flow__item:nth-child(3) .p-service-flow__content::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #c7dbe9;
  width: 274px;
  height: 27px;
  bottom: -26.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-flow__item:nth-child(3) .p-service-flow__content {
    padding-top: 43px;
    margin-top: 0;
    padding-left: 50px;
  }
  .p-service-flow__item:nth-child(3) .p-service-flow__content::after {
    content: "";
    position: absolute;
    border: none;
    -webkit-clip-path: polygon(100% 45%, 0 0, 0 100%);
            clip-path: polygon(100% 45%, 0 0, 0 100%);
    width: 23px;
    height: 209px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #c7dbe9;
    right: -22px;
    left: auto;
    height: 100%;
  }
}
.p-service-flow__item:nth-child(4) .p-service-flow__content {
  background: #b0d0e5;
  padding: 86px 20px 18px 20px;
  margin-top: -46px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-service-flow__item:nth-child(4) .p-service-flow__content {
    padding-top: 43px;
    margin-top: 0;
    padding-right: 24px;
    padding-left: 50px;
  }
}

.p-service-flow__steps {
  color: #FFF400;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-service-flow__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -49px;
    left: 0;
    margin-top: 0;
  }
}

.p-service-flow__step {
  font-size: 20px;
  margin: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-service-flow__step {
    margin-top: 21px;
  }
}

.p-service-flow__number {
  font-size: 40px;
  margin: 0;
  line-height: 1;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-service-flow__number {
    margin-left: 8px;
  }
}

.p-service-flow__content {
  text-align: center;
  width: 73.3vw;
  margin-left: 17px;
}
@media screen and (min-width: 768px) {
  .p-service-flow__content {
    margin-left: 0;
    text-align: left;
  }
}

.p-service-flow__content--title {
  font-size: 18px;
  font-weight: 700;
  color: #023E78;
}
@media screen and (min-width: 768px) {
  .p-service-flow__content--title {
    font-size: 2vw;
  }
}
@media screen and (min-width: 900px) {
  .p-service-flow__content--title {
    font-size: 20px;
  }
}

.p-service-flow__content--description {
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-service-flow__content--description {
    margin-top: 18px;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 900px) {
  .p-service-flow__content--description {
    font-size: 14px;
  }
}

.description--red {
  color: #E61264;
}
@media screen and (min-width: 768px) {
  .description--red {
    margin-top: 0;
  }
}

.p-service-qa {
  padding-top: 55px;
  padding-bottom: 101px;
}
@media screen and (min-width: 768px) {
  .p-service-qa {
    padding-top: 160px;
    padding-bottom: 164px;
  }
}

.p-service-qa__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-service-qa__inner {
    max-width: 768px;
    padding-inline: 40px;
    margin: 0 auto;
  }
}

.p-service-qa__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.p-service-qa__items {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .p-service-qa__items {
    margin-top: 55px;
  }
}

.p-service-qa__item--question {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  border-bottom: 1px solid #ddd;
  padding: 16px 73px 16px 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  /* 横棒 */
  /* 縦棒 */
  /* 開いたとき（＋ → ×） */
}
.p-service-qa__item--question::before, .p-service-qa__item--question::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 8px;
  width: 21px;
  height: 2px;
  background-color: #000;
  background-color: currentColor;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-service-qa__item--question::before, .p-service-qa__item--question::after {
    top: 47px;
    right: 12px;
  }
}
.p-service-qa__item--question::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.p-service-qa__item--question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-service-qa__item--question.active {
  color: #E61264;
  border-bottom: none;
}
.p-service-qa__item--question.active::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-service-qa__item--question.active::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-service-qa__item--question {
    font-size: 20px;
    padding: 32px 73px 30px 0;
  }
}

.p-service-qa__item--answer {
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-service-qa__item--answer {
    padding-bottom: 29px;
    padding-inline: 40px 60px;
    margin-top: 0;
  }
}

.p-page-case-lower-mv {
  background: url("../img/lower-mv-case-sp.webp") no-repeat center/cover;
}
@media screen and (min-width: 900px) {
  .p-page-case-lower-mv {
    background: url("../img/lower-mv-case-pc.webp") no-repeat center/cover;
  }
}

.p-case-study {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 900px) {
  .p-case-study {
    padding-top: 70px;
    padding-bottom: 160px;
  }
}

.p-case-study__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-case-study__inner {
    padding-inline: 40px;
    max-width: 1180px;
    margin: 0 auto;
  }
}

.p-case-study-nav {
  margin-inline: 20px;
  padding-bottom: 58px;
}
@media screen and (min-width: 900px) {
  .p-case-study-nav {
    margin-inline: 0;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 900px) {
  .p-case-study-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}

@media screen and (min-width: 900px) {
  .p-case-study-nav__list {
    width: 208px;
  }
}

.p-case-study-nav__list:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-case-study-nav__list:nth-child(n+2) {
    margin-top: 0;
  }
}

.p-case-study-nav__link {
  font-weight: 700;
  line-height: normal;
  display: block;
  text-align: center;
  border-radius: 4px;
  background: #eee;
  padding-block: 12px;
}

.p-case-study__cases:not(:first-of-type) {
  margin-top: 58px;
}
@media screen and (min-width: 900px) {
  .p-case-study__cases:not(:first-of-type) {
    margin-top: 80px;
  }
}

.p-case-study__cases--heading {
  border-left: 8px solid #023E78;
  padding-left: 10px;
}
@media screen and (min-width: 900px) {
  .p-case-study__cases--heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.p-case-study__cases--ja {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .p-case-study__cases--ja {
    font-size: 28px;
  }
}

.p-case-study__cases--en {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #023E78;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .p-case-study__cases--en {
    font-size: 16px;
  }
}

.p-case-study__cards {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .p-case-study__cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .p-case-study__cards {
    row-gap: 61px;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
}

.p-case-study__card {
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}
.p-case-study__card:not(:first-child) {
  margin-top: 55px;
}
@media screen and (min-width: 900px) {
  .p-case-study__card:not(:first-child) {
    margin-top: 0;
  }
}

.p-case-study__card--heading {
  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;
  border-radius: 12px 12px 0 0;
  background: #023E78;
  padding-inline: 20px;
  padding-block: 7px;
}
@media screen and (min-width: 1280px) {
  .p-case-study__card--heading {
    padding-inline: 40px;
    padding-block: 24px 18px;
    position: relative;
  }
}

.p-case-study__card--business {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--business {
    font-size: 14px;
    line-height: 1.3;
  }
}

.p-case-study__card--name {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--name {
    font-size: 24px;
    line-height: 1.7;
  }
}

.p-case-study__card--name-space {
  margin-left: 12px;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--name-space {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin-left: 15px;
  }
}

.p-case-study__card--logo {
  width: 90px;
  padding: 4px 16px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1280px) {
  .p-case-study__card--logo {
    position: absolute;
    width: 160px;
    border-radius: 12px;
    right: 20px;
    padding: 6px 30px;
  }
}
.p-case-study__card--logo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-case-study__card--body {
  padding: 17px 20px 18px 20px;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--body {
    padding: 31px 40px 33px 40px;
  }
}

.p-case-study__card--title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}

.p-case-study__card--title-space {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-left: 6px;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--title-space {
    margin-left: 9px;
  }
}

.p-case-study__card--list {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--list {
    margin-top: 29px;
  }
}

.p-case-study__card--list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-left: 25px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-case-study__card--list-title {
    font-size: 18px;
    margin-left: 30px;
  }
}
.p-case-study__card--list-title::before {
  content: "";
  position: absolute;
  background: url("../img/checkbox-icon.svg") no-repeat center/contain;
  width: 15.5px;
  height: 15.5px;
  left: -25px;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .p-case-study__card--list-title::before {
    width: 20px;
    height: 20px;
    left: -30px;
    top: 65%;
  }
}

.p-case-study__card--list-text {
  margin-top: 9px;
  font-weight: 500;
}

.p-case-study__cases--button {
  margin-top: 42px;
  margin-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-case-study__cases--button {
    margin-top: 59px;
  }
}

.button--detail {
  display: block;
  text-align: center;
  line-height: normal;
  font-weight: 500;
  color: #023E78;
  border: 1px solid #023E78;
  padding-block: 23px;
  max-width: 295px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 374px) {
  .button--detail {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .button--detail {
    display: inline-block;
    max-width: 400px;
    font-size: 16px;
    padding-block: 21px;
    padding-inline: 80px;
    white-space: nowrap;
  }
}
.button--detail:hover {
  background: #023E78;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button--detail::after {
  content: "";
  position: absolute;
  background: url("../img/arrow-icon-blue.svg") no-repeat center/contain;
  width: 18px;
  height: 12px;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .button--detail::after {
    width: 20px;
    height: 13.5px;
    right: 19.7px;
  }
}
.button--detail:hover::after {
  background: url("../img/arrow-icon-white.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}

.p-page-download-lower-mv {
  background: url("../img/lower-mv-download-sp.webp") no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-page-download-lower-mv {
    background: url("../img/lower-mv-download-pc.webp") no-repeat center/cover;
  }
}

.p-page-download {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .p-page-download {
    padding-top: 70px;
    padding-bottom: 158px;
  }
}

.p-page-download__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-page-download__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1180px;
    padding-inline: 40px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-page-download__program {
    width: calc(50% - 40px);
  }
}

.p-page-download__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-page-download__title {
    font-size: 28px;
  }
}

.p-page-download__image {
  margin-top: 30px;
  margin-inline: 18px;
}
@media screen and (min-width: 768px) {
  .p-page-download__image {
    margin-top: 33px;
    margin-inline: auto;
    max-width: 300px;
  }
}
.p-page-download__image img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

.p-page-download__text {
  margin-top: 25px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-page-download__text {
    margin-top: 22px;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .p-page-form--download {
    width: 50%;
    margin-top: 0;
  }
}

.p-page-form--download .p-page-form__inner {
  padding-block: 40px 9px;
  border-radius: 12px;
  padding-inline: 20px;
  background: #EDF3F8;
}
@media screen and (min-width: 768px) {
  .p-page-form--download .p-page-form__inner {
    padding-inline: 40px;
    padding-block: 37px 9px;
  }
}

@media screen and (min-width: 768px) {
  .p-page-form--download .p-page-form__title {
    font-size: 32px;
  }
}

.p-page-download__form--field:nth-of-type(n + 2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field:nth-of-type(n + 2) {
    margin-top: 29px;
  }
}

.p-page-download__form--field__label {
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field__label {
    font-size: 18px;
  }
}

.p-page-download__form--field__item {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field__item {
    margin-top: 10px;
  }
}

.p-page-download__form--field__input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9px 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field__input {
    padding: 9px 16px;
  }
}
.p-page-download__form--field__input::-webkit-input-placeholder {
  font-weight: 500;
  line-height: normal;
  color: #ccc;
}
.p-page-download__form--field__input::-moz-placeholder {
  font-weight: 500;
  line-height: normal;
  color: #ccc;
}
.p-page-download__form--field__input:-ms-input-placeholder {
  font-weight: 500;
  line-height: normal;
  color: #ccc;
}
.p-page-download__form--field__input::-ms-input-placeholder {
  font-weight: 500;
  line-height: normal;
  color: #ccc;
}
.p-page-download__form--field__input::placeholder {
  font-weight: 500;
  line-height: normal;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field__input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .p-page-download__form--field__input::-moz-placeholder {
    font-size: 16px;
  }
  .p-page-download__form--field__input:-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-download__form--field__input::-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-download__form--field__input::placeholder {
    font-size: 16px;
  }
}

.p-page-download__form--field__tag {
  background: #E61264;
  padding: 1px 8px;
  color: #ffffff;
  line-height: normal;
  font-weight: 700;
  margin-left: 5px;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--field__tag {
    font-size: 12px;
  }
}

.p-page-download__form--privacy {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-page-download__form--privacy {
    margin-top: 45px;
  }
}

.p-page-download__form-button {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .p-page-download__form-button {
    margin-top: 43px;
  }
}

.p-page-download__form-button--submit {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #023E78;
  border: 1px solid #023E78;
  background: #fff;
  padding-block: 21px;
  max-width: 295px;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
.p-page-download__form-button--submit:hover {
  background: #023E78;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .p-page-download__form-button--submit {
    min-width: 336px;
    font-size: 16px;
  }
}

.p-page-download__box {
  margin-top: 60px;
  background: #EDF3F8;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .p-page-download__box {
    width: 50%;
    margin-top: 0;
  }
}

.p-page-download__box--inner {
  padding: 39px 20px;
}
@media screen and (min-width: 768px) {
  .p-page-download__box--inner {
    padding: 40px;
  }
}

.p-page-download__title--thanks {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-page-download__title--thanks {
    font-size: 32px;
    line-height: 1.5;
  }
}

.p-page-download__box--item {
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .p-page-download__box--item {
    margin-top: 35px;
  }
}
.p-page-download__box--item .p-page-download__box--text a {
  margin-top: 11px;
  display: inline-block;
}
.p-page-download__box--item p:last-of-type {
  margin-top: 13px;
  line-height: 1.98;
}

.p-page-download__box--text {
  font-weight: 500;
}
.p-page-download__box--text a {
  color: #023E78;
  text-decoration: underline;
  line-height: normal;
  font-weight: 500;
}

.c-privacy {
  text-align: center;
}
.c-privacy__checkbox {
  position: relative;
  display: inline-block;
}
.c-privacy__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.c-privacy__checkbox-text {
  position: relative;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  display: inline-block;
  padding-left: 36px; /* チェックボックス幅＋余白 */
  /* チェックボックス枠 */
  /* チェックマーク */
}
@media screen and (max-width: 374px) {
  .c-privacy__checkbox-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-privacy__checkbox-text {
    font-size: 16px;
  }
}
.c-privacy__checkbox-text a {
  font-weight: 700;
  text-decoration: underline;
  margin: 0 4px;
}
@media screen and (min-width: 768px) {
  .c-privacy__checkbox-text a {
    font-size: 16px;
    margin: 0 8px;
  }
}
.c-privacy__checkbox-text::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #3e3e3e;
  border-radius: 2px;
  background-color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-privacy__checkbox-text::before {
    width: 32px;
    height: 32px;
  }
}
.c-privacy__checkbox-text::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 11px;
  left: 9px;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/check-icon.svg") no-repeat center/contain;
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-privacy__checkbox-text.checked::after {
  opacity: 1;
}

/* CF7 の余白調整 */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  display: none;
}

.p-page-contact-lower-mv {
  background: url("../img/lower-mv-contact-sp.webp") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-page-contact-lower-mv {
    background: url("../img/lower-mv-contact-pc.webp") no-repeat center center/cover;
  }
}

.p-page-contact {
  padding-top: 60px;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .p-page-contact {
    padding-top: 70px;
    padding-bottom: 132px;
  }
}

.p-page-contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__inner {
    max-width: 767px;
    margin: 0 auto;
    padding-inline: 40px;
  }
}

.p-page-contact__intro p {
  font-weight: 500;
  line-height: 1.72;
}

.p-page-form--contact__inner {
  padding-block: 0 9px;
  padding-inline: 0;
  background: #fff;
}

.p-page-form--contact .p-page-form__title {
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-page-form--contact .p-page-form__title {
    margin-bottom: 25px;
  }
}

.p-page-contact__form-group:not(:first-child) {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-group:not(:first-child) {
    margin-top: 27px;
  }
}

.p-page-contact__label {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-page-contact__label {
    font-size: 18px;
  }
}

.form-group__item {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .form-group__item {
    margin-top: 8px;
  }
}

.p-page-contact__input {
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-block: 8px;
  padding-inline: 13px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__input {
    padding-block: 9px;
    padding-inline: 15px;
  }
}
.p-page-contact__input::-webkit-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__input::-moz-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__input:-ms-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__input::-ms-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__input::placeholder {
  font-weight: 500;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .p-page-contact__input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__input::-moz-placeholder {
    font-size: 16px;
  }
  .p-page-contact__input:-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__input::-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__input::placeholder {
    font-size: 16px;
  }
}

.p-page-contact__required {
  margin-left: 8px;
  background: #E61264;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding-inline: 8px;
  padding-block: 1px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__required {
    font-size: 12px;
  }
}

/* 初期値 placeholder 風 */
.p-page-contact__select.is-empty {
  color: #ccc; /* 薄いグレー */
}

/* 選択後は黒 */
.p-page-contact__select:not(.is-empty) {
  color: #000; /* 選択後は黒 */
}

/* 見た目の調整 */
.p-page-contact__select {
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 13px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/select-arrow-icon.svg") no-repeat calc(100% - 11px) center/14px 10px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .p-page-contact__select {
    padding: 7px 15px;
    font-size: 16px;
    background: url("../img/select-arrow-icon.svg") no-repeat calc(100% - 15px) center/14px 10px;
  }
}
.p-page-contact__textarea {
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 13px;
  resize: vertical;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__textarea {
    padding: 9px 15px;
    height: 240px;
  }
}
.p-page-contact__textarea::-webkit-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__textarea::-moz-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__textarea:-ms-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__textarea::-ms-input-placeholder {
  font-weight: 500;
  color: #ccc;
}
.p-page-contact__textarea::placeholder {
  font-weight: 500;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .p-page-contact__textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__textarea::-moz-placeholder {
    font-size: 16px;
  }
  .p-page-contact__textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .p-page-contact__textarea::placeholder {
    font-size: 16px;
  }
}

.p-page-contact__form--privacy {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form--privacy {
    margin-top: 44px;
  }
}

.p-privacy__checkbox-text {
  padding-left: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-privacy__checkbox-text {
    padding-left: 5px;
  }
}
.p-privacy__checkbox-text::before {
  left: auto;
}
@media screen and (min-width: 768px) {
  .p-privacy__checkbox-text::before {
    left: -27px;
    top: 53%;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy__checkbox-text::after {
    left: -20px;
    top: 53%;
  }
}

.p-page-contact__form-button {
  margin-top: 43px;
}

.p-page-contact__form-button--submit {
  font-weight: 500;
  color: #023E78;
  border: 1px solid #023E78;
  text-align: center;
  display: block;
  background: #fff;
  padding-block: 19px;
  max-width: 295px;
  margin: 0 auto;
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-page-contact__form-button--submit {
    font-size: 16px;
    padding-block: 21px;
  }
}
.p-page-contact__form-button--submit:hover {
  background: #023E78;
  color: #ffffff;
}

.p-page-contact-thanks {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .p-page-contact-thanks {
    padding-top: 70px;
    padding-bottom: 157px;
  }
}

.p-page-contact-thanks__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-page-contact-thanks__inner {
    max-width: 767px;
    margin: 0 auto;
    padding-inline: 40px;
  }
}

.p-page-contact-thanks__text {
  font-weight: 500;
}
.p-page-contact-thanks__text a {
  display: inline-block;
  margin-top: 14px;
  color: #023E78;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-page-contact-thanks__text a {
    margin-top: 9px;
  }
}

.p-page-form {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-page-form {
    margin-top: 77px;
  }
}
.p-page-form__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-page-form__content {
  display: inline-block;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page-form--download {
    margin-top: 0;
  }
}