@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1214px) {
  html {
    font-size: 1.3179571664vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.0712468193vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 4.0712468193vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.6875;
  letter-spacing: 0;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

.l-footer {
  width: 100%;
}

.l-footer__cta {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer__cta {
    flex-direction: column;
  }
}

.l-footer__ctaItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-height: 21.25rem;
  padding: 2.5rem;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer__ctaItem {
    width: 100%;
    min-height: 16.5625rem;
    padding: 2.25rem 20px;
  }
}

.l-footer__ctaItem::before {
  content: "";
  position: absolute;
  inset: 0;
}

.l-footer__ctaItem > * {
  position: relative;
  z-index: 1;
}

.l-footer__ctaItem--download {
  background-image: url("../img/common/bg_download.jpg");
}

.l-footer__ctaItem--download::before {
  background-color: rgba(0, 87, 172, 0.8);
}

.l-footer__ctaItem--contact {
  background-image: url("../img/common/bg_contact.jpg");
}

.l-footer__ctaItem--contact::before {
  background-color: rgba(2, 62, 120, 0.8);
}

.l-footer__ctaEn {
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-footer__ctaEn {
    font-size: 2.5rem;
  }
}

.l-footer__ctaJa {
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.l-footer__ctaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 19.6875rem;
  max-width: 100%;
  min-height: 5.5rem;
  margin-top: 1.5rem;
  padding-inline: 1.875rem;
  border: 3px solid #FFF400;
  color: #FFF400;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767px) {
  .l-footer__ctaBtn {
    min-height: 4rem;
    border-width: 2px;
    font-size: 1rem;
  }
}

.l-footer__ctaBtnArrow {
  flex-shrink: 0;
  width: 1.25rem;
  height: 0.875rem;
  background-color: currentColor;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__ctaBtnArrow {
    width: 1.125rem;
    height: 0.7875rem;
  }
}

.l-footer__info {
  position: relative;
  background-color: #1A1A1A;
  color: #fff;
  padding-block: 6rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding-block: 4rem 0.6875rem;
  }
}

.l-footer__infoInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__infoInner {
    padding-inline: 20px;
  }
}

.l-footer__logo {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    font-size: 2.5rem;
  }
}

.l-footer__address {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.7142857143;
  text-align: left;
}

.l-footer__copy {
  margin-top: 5.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 2.25rem;
    font-size: 0.75rem;
  }
}

.l-footer__top {
  position: absolute;
  right: 2.5rem;
  bottom: 1.5rem;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    right: 20px;
    bottom: 1.25rem;
    width: 2.25rem;
  }
}

@media (any-hover: hover) {
  .l-footer__ctaItem:hover .l-footer__ctaBtn {
    background-color: #FFF400;
    color: #023E78;
  }
  .l-footer__ctaItem:hover .l-footer__ctaBtnArrow {
    -webkit-transform: translateX(0.375rem);
    transform: translateX(0.375rem);
  }
  .l-footer__top:hover {
    opacity: 0.7;
    transition: 0.3s opacity;
  }
}
.l-header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 50;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    min-height: 3.75rem;
    padding-block: 0.625rem;
    padding-inline: 20px;
  }
}

.l-header__logo {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  color: #023E78;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    font-size: 1.75rem;
    letter-spacing: 0.005em;
  }
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-header__right {
    display: none;
  }
}

.l-header__navList {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  color: #1A1A1A;
  white-space: nowrap;
}

.l-header__navItem + .l-header__navItem::before {
  content: "／";
  margin-right: 1rem;
  color: #1A1A1A;
}

.l-header__btns {
  display: flex;
  gap: 0.625rem;
}

.l-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  max-width: 100%;
  min-height: 4.25rem;
  padding-inline: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  text-align: center;
  transition: 0.3s background-color, 0.3s color;
}

.l-header__btn--download {
  background-color: #fff;
  border: 1px solid #023E78;
  color: #023E78;
}

.l-header__btn--contact {
  background-color: #023E78;
  color: #fff;
}

.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
    position: relative;
    width: 1.6875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 60;
  }
}

.l-header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #023E78;
  transition: 0.4s all ease;
}

.l-header__hamburger span:nth-child(1) {
  top: 0;
}

.l-header__hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-header__hamburger span:nth-child(3) {
  bottom: 0;
}

.l-header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.l-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: block;
    position: fixed;
    inset: 3.75rem 0 0;
    background-color: #023E78;
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s opacity, 0.4s visibility;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
  }
}

.l-header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

body.is-drawerOpen {
  overflow: hidden;
}

body.is-drawerOpen .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

.l-header__drawerInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-height: 100%;
  padding-block: 3.75rem;
  padding-inline: 2.5rem;
}

.l-header__drawerNav {
  width: 100%;
}

.l-header__drawerList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5625rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}

.l-header__drawerBtns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 18.4375rem;
}

.l-header__drawerBtns .l-header__btn {
  width: 100%;
  min-height: 4.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.l-header__drawerBtns .l-header__btn--download {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.l-header__drawerBtns .l-header__btn--contact {
  background-color: #fff;
  border: none;
  color: #023E78;
}

@media (any-hover: hover) {
  .l-header__navItem a:hover {
    opacity: 0.6;
    transition: 0.3s opacity;
  }
  .l-header__btn--download:hover {
    background-color: #023E78;
    color: #fff;
  }
  .l-header__btn--contact:hover {
    opacity: 0.85;
  }
}
.l-inner {
  width: 100%;
  max-width: calc(1300px + 25px * 2);
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(1300px + 20px * 2);
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-sec {
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-sec {
    padding: 5rem 0 6.25rem;
  }
}
.l-sec01 {
  padding: 3.5rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .l-sec01 {
    padding: 4.5rem 0 5.75rem;
  }
}

.c-btn {
  background-image: url("../img/common/");
  background-position: center right 1.5em;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid #D9D9D9;
  color: #000;
  padding: 0 0.625rem;
  min-height: 3.75rem;
  line-height: 1.2;
  transition: 0.3s all;
  width: 13.75rem;
  max-width: 100%;
}
.c-btn span {
  display: block;
  font-size: 0.75rem;
}

@media (any-hover: hover) {
  .c-btn:hover {
    color: #fff;
    transition: 0.3s all;
  }
}
.c-cat {
  min-width: 6.25rem;
  font-size: 0.75rem;
  background-color: #F20003;
  padding: 0.25rem 0.625rem;
  color: #fff;
  text-align: center;
  display: inline-block;
}

.c-column2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.c-column2--gap60 {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-column2--gap60 {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column2--gapSp20 {
    gap: 1.25rem;
  }
}

.c-column3 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-column4 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #023E78;
}

.c-headline__en {
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 6.25rem;
  line-height: 1.17;
}
@media screen and (max-width: 767px) {
  .c-headline__en {
    font-size: 3.25rem;
  }
}

.c-headline__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .c-headline__ja {
    font-size: 1rem;
  }
}

.c-headline--center {
  align-items: center;
  text-align: center;
}

.c-headline--white {
  color: #fff;
}

.c-hoverRun {
  text-decoration: none;
  color: #000;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.5s;
}

@media (any-hover: hover) {
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
}
.c-hoverUnderline {
  position: relative;
  display: inline-block;
}

.c-hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
}
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  width: 2.25rem;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media (any-hover: hover) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}
.c-imgZoom {
  position: relative;
  overflow: hidden;
}
.c-imgZoom img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

@media (any-hover: hover) {
  .c-imgZoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
  }
}
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  right: -0.9375rem;
  top: 0.3em;
  background: url(../img/common/link.svg) center center/contain no-repeat;
}

.c-marker {
  background: linear-gradient(transparent 70%, #FCF65F 0%);
  display: inline;
}

.c-pagination {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 2.5rem;
  }
}

.c-pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__list {
    gap: 0.375rem;
  }
}

.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #F8F8F8;
  color: #888888;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-pagination .page-numbers.current {
  background-color: #023E78;
  color: #fff;
}

.c-pagination .page-numbers.prev,
.c-pagination .page-numbers.next {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pagination .page-numbers.prev {
  margin-right: 1.375rem;
  background-image: url("../img/news/news-pager-prev.svg");
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers.prev {
    margin-right: 0;
    background-image: url("../img/news/news-pager-prev-sp.svg");
  }
}

.c-pagination .page-numbers.next {
  margin-left: 1.375rem;
  background-image: url("../img/news/news-pager-next.svg");
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers.next {
    margin-left: 0;
    background-image: url("../img/news/news-pager-next-sp.svg");
  }
}

.c-pagination__srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.c-postCat {
  display: inline-flex;
  align-items: center;
  padding-block: 0.3125rem;
  padding-inline: 0.625rem;
  border: 1px solid #E61264;
  color: #E61264;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}

.c-tag {
  font-size: 0.875rem;
  color: #000;
  border: 1px solid #D9D9D9;
  padding: 0.375rem 0.5rem;
  display: inline-block;
}

.c-underBar {
  position: relative;
  display: inline-block;
}
.c-underBar::before {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}

@media (any-hover: hover) {
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
}
.c-viewMore {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-viewMore__text {
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-viewMore__text {
    font-size: 1.25rem;
  }
}

.c-viewMore__arrow {
  flex-shrink: 0;
  width: 7.6875rem;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .c-viewMore__arrow {
    width: 5.625rem;
  }
}

.c-viewMore__arrowLine {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-viewMore--white {
  color: #fff;
}

.c-viewMore--dark {
  color: #023E78;
}

@media (any-hover: hover) {
  .c-viewMore {
    transition: opacity 0.3s;
  }
  .c-viewMore:hover {
    opacity: 0.7;
  }
  .c-viewMore:hover .c-viewMore__arrowLine {
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem);
  }
}
.p-about {
  position: relative;
  overflow: hidden;
  min-height: 59.375rem;
  background-color: #fff;
  background-image: url("../img/top/about-deco-bg-v3.svg");
  background-repeat: no-repeat;
  background-position: 0 9.375rem;
  background-size: 100% 50rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    min-height: 63.8125rem;
    background-image: url("../img/top/about-deco-bg-sp-v3.svg");
    background-position: 0 10.4375rem;
    background-size: 100% 53.375rem;
  }
}

.p-about__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 31.25rem;
  height: 85%;
  background-image: url("../img/top/about-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-about__panel {
    position: relative;
    width: auto;
    height: auto;
    margin-top: -15.625rem;
    margin-left: 5rem;
    padding-block: 16.25rem 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-about__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.p-about__inner {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 6.5rem 5.8125rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-block: 3.75rem 0;
    padding-inline: 1.25rem;
  }
}

.p-about__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-about__viewMore {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__viewMore {
    display: none;
  }
}

.p-about__body {
  display: flex;
  justify-content: space-between;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__body {
    flex-direction: column;
    margin-top: 4.1875rem;
  }
}

.p-about__text {
  width: 23.6875rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    width: 100%;
  }
}

.p-about__textParagraph {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-about__textParagraph + .p-about__textParagraph {
  margin-top: 1.5rem;
}

.p-about__photo {
  position: relative;
  z-index: 3;
  width: 42.5625rem;
  max-width: 100%;
  aspect-ratio: 681/426;
}
@media screen and (max-width: 767px) {
  .p-about__photo {
    width: 100%;
    margin-top: 2.5rem;
    aspect-ratio: 335/210;
  }
}

.p-about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about__viewMoreSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-about__viewMoreSp {
    display: flex;
    position: relative;
    z-index: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1.25rem;
    margin-left: auto;
  }
}

.p-single {
  background-color: #fff;
}

.p-single__inner {
  display: flex;
  gap: 2.5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 4.375rem 7.5rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    flex-direction: column;
    gap: 6.25rem;
    padding-block: 3.75rem 6.25rem;
    padding-inline: 1.25rem;
  }
}

.p-single__main {
  flex: 1;
  min-width: 0;
}

.p-article__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-article__metaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-article__date {
  color: #888888;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.p-article__title {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-article__title {
    font-size: 1.25rem;
  }
}

.p-article__eyecatch {
  aspect-ratio: 1200/630;
}

.p-article__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-article__body {
  margin-top: 2.5rem;
}

.p-article__body > * + * {
  margin-top: 0.875rem;
}

.p-article__body > * + h2,
.p-article__body > * + h3,
.p-article__body > * + h4 {
  margin-top: 1.875rem;
}

.p-article__body h2 {
  padding-block: 0.625rem;
  padding-inline: 1.625rem 1.25rem;
  border-left: 6px solid #023E78;
  background-color: #F8F8F8;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

.p-article__body h3 {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #023E78;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}

.p-article__body h4 {
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.p-article__body p {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-article__body a {
  color: #023E78;
  text-decoration: underline;
}

.p-article__body ol,
.p-article__body ul {
  padding-left: 1.3125rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-article__body ol {
  list-style: decimal;
  font-weight: 500;
}

.p-article__body ul {
  list-style: disc;
  font-weight: 400;
}

.p-article__body blockquote {
  position: relative;
  padding-block: 1.875rem;
  padding-inline: 2.1875rem;
  border-left: 4px solid #023E78;
  background-color: #F8F8F8;
}

.p-article__body blockquote::before {
  content: "";
  position: absolute;
  top: 0.9375rem;
  left: 1rem;
  width: 3.4375rem;
  height: 2.9375rem;
  background-image: url("../img/news-single/quote.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-article__body blockquote p {
  position: relative;
  z-index: 1;
}

.p-article__body blockquote p + p {
  margin-top: 1.5rem;
}

.p-article__nav {
  display: flex;
  margin-top: 2.5rem;
}

.p-article__navLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.125rem;
  min-height: 2.25rem;
  padding-inline: 1rem;
  border: 1px solid #023E78;
  border-radius: 0.25rem;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: opacity 0.3s;
}

.p-article__navLink--next {
  margin-left: auto;
}

@media (any-hover: hover) {
  .p-article__navLink:hover {
    opacity: 0.7;
  }
}
.p-breadcrumb {
  background-color: #fff;
  padding-block: 0.625rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding-inline: 1.25rem;
  }
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  max-width: 68.75rem;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}

.p-breadcrumb__item {
  color: #1A1A1A;
}

.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "＞";
  margin-right: 0.5rem;
  color: #888888;
}

.p-breadcrumb__link {
  color: #888888;
}

@media (any-hover: hover) {
  .p-breadcrumb__link {
    transition: opacity 0.3s;
  }
  .p-breadcrumb__link:hover {
    opacity: 0.7;
  }
}
.p-case {
  background-color: #fff;
}

.p-case__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 4.375rem 7.5rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-case__inner {
    padding-block: 3.75rem 6.25rem;
    padding-inline: 1.25rem;
  }
}

.p-case__anchors {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case__anchors {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

.p-case__anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  min-height: 2.75rem;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  background-color: #EEEEEE;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-case__anchor {
    width: 18.375rem;
  }
}

.p-case__section {
  margin-top: 5rem;
  scroll-margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__section {
    margin-top: 3.75rem;
  }
}

.p-case__heading {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 2.5625rem;
  padding-left: 0.625rem;
  border-left: 0.5rem solid #023E78;
}
@media screen and (max-width: 767px) {
  .p-case__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.0625rem;
    padding-left: 1.125rem;
  }
}

.p-case__headingJa {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-case__headingJa {
    font-size: 1.5rem;
  }
}

.p-case__headingEn {
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-case__headingEn {
    font-size: 0.875rem;
  }
}

.p-case__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem 5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__cards {
    grid-template-columns: 1fr;
    gap: 3.375rem;
    margin-top: 1.9375rem;
  }
}

.p-case__card {
  position: relative;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

.p-case__cardHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-height: 6.25rem;
  padding-block: 1.125rem;
  padding-inline: 2.5rem;
  border-radius: 0.75rem 0.75rem 0 0;
  background-color: #023E78;
}
@media screen and (max-width: 767px) {
  .p-case__cardHead {
    gap: 0.1875rem;
    min-height: 0;
    padding-block: 0.375rem;
    padding-inline: 1.25rem;
  }
}

.p-case__bizName {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
  .p-case__bizName {
    font-size: 0.75rem;
  }
}

.p-case__company {
  display: flex;
  align-items: flex-end;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-case__company {
    gap: 0.75rem;
  }
}

.p-case__companyName {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-case__companyName {
    font-size: 1rem;
  }
}

.p-case__sama {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-case__sama {
    font-size: 0.875rem;
  }
}

.p-case__logo {
  position: absolute;
  top: -0.375rem;
  right: 1.25rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 7rem;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-case__logo {
    top: 0.375rem;
    width: 5.625rem;
    height: 4.25rem;
    border-radius: 0.25rem;
  }
}

.p-case__logo img {
  width: 6.25rem;
  height: 6.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-case__logo img {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.p-case__body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding-block: 2.1875rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__body {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.p-case__course {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #DDDDDD;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

.p-case__courseName {
  margin-left: 0.9375rem;
}

.p-case__block {
  display: block;
}

.p-case__label {
  position: relative;
  padding-left: 1.875rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-case__label {
    padding-left: 1.5625rem;
    font-size: 1rem;
  }
}

.p-case__label::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../img/case/case-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-case__label::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-case__text {
  margin-top: 0.9375rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-case__more {
  margin-top: 2.5rem;
  text-align: center;
}

.p-case__moreBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.3125rem;
  padding-block: 1.5rem;
  padding-inline: 5rem;
  border: 1px solid #023E78;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-case__moreBtn {
    width: 18.4375rem;
    max-width: 100%;
    padding-inline: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-case__moreArrow {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  width: 1.25rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .p-case__anchor:hover,
  .p-case__moreBtn:hover {
    opacity: 0.7;
  }
}
.p-caseStudy {
  position: relative;
  overflow: hidden;
}

.p-caseStudy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/top/casestudy-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__bg {
    background-image: url("../img/top/casestudy-bg-sp.png");
  }
}

.p-caseStudy__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.p-caseStudy__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 6.25rem 7.625rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__inner {
    padding-block: 3.75rem 5rem;
    padding-inline: 1.25rem;
  }
}

.p-caseStudy__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-caseStudy__viewMore {
    display: none;
  }
}

.p-caseStudy__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 4.375rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__cards {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
  }
}

.p-caseStudy__card {
  width: 20rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__card {
    width: 100%;
  }
}

.p-caseStudy__cardLink {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  color: inherit;
}

.p-caseStudy__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 320/240;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__thumb {
    aspect-ratio: 335/251;
  }
}

.p-caseStudy__logo {
  width: 12.5rem;
  height: auto;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.p-caseStudy__company {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.p-caseStudy__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-caseStudy__tag {
  border: 1px solid #fff;
  padding-block: 0.375rem;
  padding-inline: 1rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}

.p-caseStudy__arrow {
  flex-shrink: 0;
  width: 1.875rem;
}

.p-caseStudy__viewMoreSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__viewMoreSp {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 3rem;
    margin-left: auto;
  }
}

@media (any-hover: hover) {
  .p-caseStudy__cardLink:hover .p-caseStudy__logo {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.p-company {
  position: relative;
  background-image: url("../img/about/company-bg-pc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-company {
    background-image: url("../img/about/company-bg-sp.png");
  }
}

.p-company::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.p-company__inner {
  position: relative;
  z-index: 1;
  padding-block: 5.75rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    padding-block: 3.75rem;
  }
}

.p-company__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  max-width: 48rem;
  margin-inline: auto;
  padding-block: 3.75rem;
  padding-inline: 2.5rem;
  background-color: #fff;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-company__card {
    gap: 2.5rem;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
    border: none;
  }
}

.p-company__title {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.p-company__table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-company__row {
  display: flex;
  align-items: stretch;
}

.p-company__th {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 12.5rem;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  border-bottom: 1px solid #023E78;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-company__th {
    width: auto;
    min-width: 6.25rem;
    padding-block: 1rem;
    padding-inline: 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-company__td {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  border-bottom: 1px solid #E8EAEC;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5625;
}
@media screen and (max-width: 767px) {
  .p-company__td {
    padding-block: 1rem;
    padding-inline: 1.25rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-company__row:first-child .p-company__th {
  border-top: 1px solid #023E78;
}

.p-company__row:first-child .p-company__td {
  border-top: 1px solid #E8EAEC;
}

.p-company__list {
  padding-left: 1.5rem;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    padding-left: 1.3125rem;
  }
}

.p-contact {
  padding-block: 4.375rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__inner {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    gap: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.p-contact__lead {
  width: 42.9375rem;
  max-width: 100%;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    width: 100%;
  }
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 42.9375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    gap: 2.5rem;
    width: 100%;
  }
}

.p-contact__formTitle {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.p-contact__form .wpcf7 {
  width: 100%;
}

.p-contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.p-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__fields {
    gap: 1.25rem;
  }
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__field {
    gap: 0.5rem;
  }
}

.p-contact__fieldHead {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__fieldHead {
    gap: 0.5rem;
  }
}

.p-contact__label {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.22;
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    font-size: 0.875rem;
  }
}

.p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.0625rem;
  padding-inline: 0.5rem;
  background-color: #E61264;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__required {
    font-size: 0.625rem;
  }
}

.p-contact__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-contact__input {
  width: 100%;
  height: 2.75rem;
  padding-block: 0.625rem;
  padding-inline: 1rem;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 0.3125rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input {
    padding-block: 0.75rem;
    padding-inline: 0.875rem;
    font-size: 0.875rem;
  }
}

.p-contact__input::-webkit-input-placeholder {
  color: #CCCCCC;
}

.p-contact__input:-ms-input-placeholder {
  color: #CCCCCC;
}

.p-contact__input::-ms-input-placeholder {
  color: #CCCCCC;
}

.p-contact__input::placeholder {
  color: #CCCCCC;
}

.p-contact__select {
  width: 100%;
  height: 2.75rem;
  padding-block: 0.625rem;
  padding-inline: 1rem 2.5rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("../img/contact/contact-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.875rem 0.625rem;
  border: 1px solid #DDDDDD;
  border-radius: 0.25rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__select {
    padding-inline: 0.875rem 2.5rem;
    font-size: 0.875rem;
  }
}

.p-contact__select:has(option[value=""]:checked) {
  color: #CCCCCC;
}

.p-contact__textarea {
  width: 100%;
  height: 15rem;
  padding-block: 0.78125rem;
  padding-inline: 1rem;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 0.3125rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact__textarea {
    height: 8.75rem;
    padding-block: 0.84375rem;
    padding-inline: 0.875rem;
    font-size: 0.875rem;
  }
}

.p-contact__textarea::-webkit-input-placeholder {
  color: #CCCCCC;
}

.p-contact__textarea:-ms-input-placeholder {
  color: #CCCCCC;
}

.p-contact__textarea::-ms-input-placeholder {
  color: #CCCCCC;
}

.p-contact__textarea::placeholder {
  color: #CCCCCC;
}

.p-contact__agree .wpcf7-list-item {
  margin-left: 0;
}

.p-contact__agree label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.p-contact__agree input[type=checkbox] {
  display: block;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border: 1px solid #3E3E3E;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__agree input[type=checkbox] {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-contact__agree input[type=checkbox]:checked {
  background-image: url("../img/download/download-checkbox.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}

.p-contact__agreeLink {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-contact__agreeLink {
    font-size: 0.875rem;
  }
}

.p-contact__agreeText {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__agreeText {
    font-size: 0.875rem;
  }
}

.p-contact__submit {
  width: 100%;
  text-align: center;
}

.p-contact__submitBtn {
  min-width: 18.4375rem;
  padding-block: 1.5rem;
  padding-inline: 5rem;
  background-color: #fff;
  border: 1px solid #023E78;
  border-radius: 0;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767px) {
  .p-contact__submitBtn {
    padding-inline: 4.375rem;
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-contact__submitBtn:hover {
    background-color: #023E78;
    color: #fff;
  }
}
.p-contact__form .wpcf7-response-output {
  margin-block: 1.25rem 0;
  margin-inline: 0;
  padding-block: 0.625rem;
  padding-inline: 1rem;
  font-size: 0.875rem;
}

.p-contact__form .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #E61264;
  font-size: 0.75rem;
}

.p-contact__form .wpcf7-spinner {
  margin-inline: 0.625rem;
}

.p-contactThanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 4.375rem 10rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-contactThanks {
    align-items: flex-start;
    padding-block: 3.75rem 6.25rem;
    padding-inline: 1.25rem;
  }
}

.p-contactThanks__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  width: 42.9375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contactThanks__inner {
    width: 100%;
  }
}

.p-contactThanks__text {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7143;
}

.p-contactThanks__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: normal;
  text-decoration: underline;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contactThanks__link {
    line-height: 1.7143;
  }
}

@media (any-hover: hover) {
  .p-contactThanks__link {
    transition: opacity 0.3s;
  }
  .p-contactThanks__link:hover {
    opacity: 0.7;
  }
}
.p-download {
  padding-block: 4.375rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-download {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-download__inner {
  display: flex;
  gap: 2.5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 1024px) {
  .p-download__inner {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-download__inner {
    flex-direction: column;
    gap: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.p-download__lead {
  width: 31.875rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-download__lead {
    width: 100%;
  }
}

.p-download__leadTitle {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.4286;
}
@media screen and (max-width: 767px) {
  .p-download__leadTitle {
    font-size: 1.375rem;
  }
}

.p-download__leadFigure {
  width: 17.1875rem;
  max-width: 100%;
  margin-top: 2.5625rem;
  margin-inline: auto;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.16);
}

.p-download__leadFigure img {
  width: 100%;
  height: auto;
}

.p-download__leadText {
  margin-top: 2.375rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7143;
}

.p-download__form {
  width: 34.375rem;
  max-width: 100%;
  padding: 2.5rem;
  background-color: #EDF3F8;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-download__form {
    width: 100%;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-download__formTitle {
  margin-bottom: 2.5rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-download__formTitle {
    font-size: 1.5rem;
  }
}

.p-download__formFields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-download__formFields {
    gap: 1.25rem;
  }
}

.p-download__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-download__field {
    gap: 0.5rem;
  }
}

.p-download__fieldHead {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-download__fieldHead {
    gap: 0.5rem;
  }
}

.p-download__label {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.22;
}
@media screen and (max-width: 767px) {
  .p-download__label {
    font-size: 0.875rem;
  }
}

.p-download__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.0625rem;
  padding-inline: 0.5rem;
  background-color: #E61264;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-download__required {
    font-size: 0.625rem;
  }
}

.p-download__input {
  width: 100%;
  height: 2.75rem;
  padding-block: 0.625rem;
  padding-inline: 1rem;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 0.3125rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-download__input {
    padding-block: 0.75rem;
    padding-inline: 0.875rem;
    font-size: 0.875rem;
  }
}

.p-download__input::-webkit-input-placeholder {
  color: #CCCCCC;
}

.p-download__input:-ms-input-placeholder {
  color: #CCCCCC;
}

.p-download__input::-ms-input-placeholder {
  color: #CCCCCC;
}

.p-download__input::placeholder {
  color: #CCCCCC;
}

.p-download__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-download__agree {
  margin-top: 2.5rem;
}

.p-download__agree .wpcf7-list-item {
  margin-left: 0;
}

.p-download__agree label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.p-download__agree input[type=checkbox] {
  display: block;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border: 1px solid #3E3E3E;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-download__agree input[type=checkbox] {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-download__agree input[type=checkbox]:checked {
  background-image: url("../img/download/download-checkbox.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}

.p-download__agreeLink {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-download__agreeLink {
    font-size: 0.875rem;
  }
}

.p-download__agreeText {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-download__agreeText {
    font-size: 0.875rem;
  }
}

.p-download__submit {
  margin-top: 2.5rem;
  text-align: center;
}

.p-download__submitBtn {
  min-width: 18.4375rem;
  padding-block: 1.5rem;
  padding-inline: 5rem;
  background-color: #fff;
  border: 1px solid #023E78;
  border-radius: 0;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767px) {
  .p-download__submitBtn {
    padding-inline: 4.375rem;
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-download__submitBtn:hover {
    background-color: #023E78;
    color: #fff;
  }
}
.p-download__form .wpcf7-response-output {
  margin-block: 1.25rem 0;
  margin-inline: 0;
  padding-block: 0.625rem;
  padding-inline: 1rem;
  font-size: 0.875rem;
}

.p-download__form .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #E61264;
  font-size: 0.75rem;
}

.p-download__form .wpcf7-spinner {
  margin-inline: 0.625rem;
}

.p-download__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 34.375rem;
  max-width: 100%;
  padding: 2.5rem;
  background-color: #EDF3F8;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-download__thanks {
    align-items: flex-start;
    gap: 2.125rem;
    width: 100%;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-download__thanksTitle {
  width: 100%;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-download__thanksTitle {
    font-size: 1.5rem;
    line-height: 1.6667;
  }
}

.p-download__thanksBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  width: 100%;
}

.p-download__thanksText {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7143;
}

.p-download__thanksText--wide {
  line-height: 2;
}

.p-download__thanksLink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: underline;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .p-download__thanksLink:hover {
    opacity: 0.7;
  }
}
.p-faq {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    gap: 2.5rem;
  }
}

.p-faq__title {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.p-faq__list {
  width: 43rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    width: 20.9375rem;
  }
}

.p-faq__item {
  border-bottom: 1px solid #DDDDDD;
}

.p-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  min-height: 5.8125rem;
  padding-block: 1.25rem;
  background-color: transparent;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    min-height: 3.4375rem;
    font-size: 1rem;
  }
}

.p-faq__item.is-open .p-faq__q {
  border-bottom: 1px solid #DDDDDD;
  color: #E61264;
}

.p-faq__icon {
  flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  background-image: url("../img/service/service-faq-plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-faq__item.is-open .p-faq__icon {
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("../img/service/service-faq-close.svg");
}

.p-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
}

.p-faq__item.is-open .p-faq__a {
  grid-template-rows: 1fr;
}

.p-faq__aText {
  overflow: hidden;
  min-height: 0;
  padding-left: 2.5rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .p-faq__aText {
    padding-left: 0;
  }
}

.p-faq__item.is-open .p-faq__aText {
  padding-block: 1.25rem 1.875rem;
}

.p-flow {
  position: relative;
  padding-block: 5rem 7.4375rem;
  background-image: url("../img/service/service-flow-bg-pc.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: 3.75rem 3.75rem;
  }
}

.p-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.p-flow__inner {
  position: relative;
  z-index: 1;
  max-width: 68.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.p-flow__title {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.p-flow__steps {
  display: flex;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__steps {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-flow__step {
  position: relative;
  flex: 1;
  padding-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    padding-top: 0;
    padding-left: 3.75rem;
  }
}

.p-flow__stepNum {
  position: absolute;
  top: 0;
  left: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: #FFF400;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-flow__stepNum {
    top: 50%;
    left: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-flow__stepLabel {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__stepLabel {
    font-size: 1rem;
  }
}

.p-flow__stepDigit {
  font-size: 2.5rem;
}

.p-flow__stepBody {
  min-height: 10.5625rem;
  padding-block: 2.875rem 1.25rem;
  padding-inline: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__stepBody {
    min-height: 0;
    padding: 1.5rem 1.25rem;
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 0.5rem;
  }
}

.p-flow__stepTitle {
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__stepTitle {
    font-size: 1.125rem;
  }
}

.p-flow__stepText {
  margin-top: 0.75rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-flow__stepNote {
  color: #E61264;
}

.p-lowerMv {
  position: relative;
  height: 15.625rem;
  overflow: hidden;
  background-image: url("../img/about/about-mv-pc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-lowerMv {
    background-image: url("../img/about/about-mv-sp.png");
  }
}

.p-lowerMv--news {
  background-image: url("../img/news/news-mv-pc.png");
}
@media screen and (max-width: 767px) {
  .p-lowerMv--news {
    background-image: url("../img/news/news-mv-sp.jpg");
  }
}

.p-lowerMv--service {
  background-image: url("../img/service/service-mv-pc.png");
}
@media screen and (max-width: 767px) {
  .p-lowerMv--service {
    background-image: url("../img/service/service-mv-sp.png");
  }
}

.p-lowerMv--case {
  background-image: url("../img/case/case-mv-pc.jpg");
}
@media screen and (max-width: 767px) {
  .p-lowerMv--case {
    background-image: url("../img/case/case-mv-sp.jpg");
  }
}

.p-lowerMv--download {
  background-image: url("../img/download/download-mv-pc.png");
}
@media screen and (max-width: 767px) {
  .p-lowerMv--download {
    background-image: url("../img/download/download-mv-sp.png");
  }
}

.p-lowerMv--contact {
  background-image: url("../img/contact/contact-mv-pc.png");
}
@media screen and (max-width: 767px) {
  .p-lowerMv--contact {
    background-image: url("../img/contact/contact-mv-sp.png");
  }
}

.p-lowerMv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
}

.p-lowerMv__deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 28.57%;
  height: 100%;
  background-image: url("../img/about/about-mv-decoration-pc.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-lowerMv__deco {
    width: 44.17%;
    background-image: url("../img/about/about-mv-decoration-sp.svg");
  }
}

.p-lowerMv__title {
  position: absolute;
  top: 50%;
  left: 17.19%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-lowerMv__title {
    left: 1.25rem;
    gap: 0.5625rem;
  }
}

.p-lowerMv__en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.125rem;
  padding-inline: 0.75rem;
  background-color: #fff;
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-lowerMv__en {
    padding-inline: 0.5rem;
    font-size: 2rem;
  }
}

.p-lowerMv__ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.125rem;
  padding-inline: 0.75rem;
  background-color: #fff;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-lowerMv__ja {
    padding-inline: 0.5rem;
    font-size: 1rem;
  }
}

.p-mission {
  background-color: #fff;
}

.p-mission__inner {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 4.375rem 7.5rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-mission__inner {
    gap: 3.75rem;
    padding-block: 3.75rem;
    padding-inline: 0;
  }
}

.p-mission__block {
  position: relative;
}

.p-mission__visual {
  position: relative;
}

.p-mission__photo {
  position: relative;
}

.p-mission__photo img {
  display: block;
  width: 100%;
  height: 22.0625rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mission__photo img {
    height: 17.5625rem;
  }
}

.p-mission__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
}

.p-mission__head {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
}

.p-mission__card {
  position: relative;
  z-index: 1;
  width: 43rem;
  max-width: 100%;
  margin-top: -3.75rem;
  margin-inline: auto;
  padding-block: 1.875rem;
  padding-inline: 2.5rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-mission__card {
    width: auto;
    margin-top: -2.5rem;
    margin-inline: 1.25rem;
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
    box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.16);
  }
}

.p-mission__cardTitle {
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mission__cardTitle {
    font-size: 1.25rem;
  }
}

.p-mission__cardText {
  margin-top: 1.875rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-mv {
  width: 100%;
  background-color: #fff;
}

.p-mv__inner {
  position: relative;
  height: 53.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    height: 37.9375rem;
  }
}

.p-mv__slider {
  position: absolute;
  top: 0;
  left: 5.625rem;
  right: 0;
  width: auto;
  height: 43.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__slider {
    left: 2.5rem;
    right: 0;
    width: auto;
    height: 37.9375rem;
  }
}

.p-mv__slide {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-mv__slide--01 {
  background-image: url("../img/top/mv-pc-01.png");
}
@media screen and (max-width: 767px) {
  .p-mv__slide--01 {
    background-image: url("../img/top/mv-sp-01.png");
  }
}

.p-mv__slide--02 {
  background-image: url("../img/top/mv-pc-02.png");
}
@media screen and (max-width: 767px) {
  .p-mv__slide--02 {
    background-image: url("../img/top/mv-sp-02.png");
  }
}

.p-mv__slide--03 {
  background-image: url("../img/top/mv-pc-03.png");
}
@media screen and (max-width: 767px) {
  .p-mv__slide--03 {
    background-image: url("../img/top/mv-sp-03.png");
  }
}

.p-mv__copy {
  position: absolute;
  top: 27.1875rem;
  left: 3.125rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    top: auto;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}

.p-mv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-mv__titleSet {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-mv__titleSet {
    gap: 0.5rem;
  }
}

.p-mv__titleSet--pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mv__titleSet--pc {
    display: none;
  }
}

.p-mv__titleSet--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mv__titleSet--sp {
    display: flex;
  }
}

.p-mv__titleLine {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.75rem;
  background-color: #fff;
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv__titleLine {
    padding-inline: 0.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.p-mv__sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  padding-inline: 0.625rem;
  background-color: #023E78;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.45;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv__sub {
    margin-top: 1rem;
    padding-inline: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-news {
  position: relative;
  overflow: hidden;
}

.p-news__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/top/news-bg-v2.svg");
  background-position: 0 30.4375rem;
  background-repeat: no-repeat;
  background-size: 100% 40rem;
}
@media screen and (max-width: 767px) {
  .p-news__deco {
    background-image: url("../img/top/news-bg-sp.svg");
    background-position: right bottom;
    background-size: 100% auto;
  }
}

.p-news__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 10.3125rem 10rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    gap: 3.75rem;
    padding-block: 5rem 11.6875rem;
    padding-inline: 1.25rem;
  }
}

.p-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .p-news__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-news__viewMore {
    display: none;
  }
}

.p-news__card {
  width: 48rem;
  max-width: 100%;
  padding-block: 3.75rem 2.5rem;
  padding-inline: 2.5rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-news__card {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-news__item {
  padding-block: 1.5625rem 1.9375rem;
  border-bottom: 1px solid #DDDDDD;
}

.p-news__itemLink {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-news__itemLink {
    gap: 1rem;
  }
}

.p-news__itemMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-news__tag {
  border: 1px solid #E61264;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: #E61264;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__tag {
    padding-block: 0.375rem;
    padding-inline: 1.25rem;
    font-size: 0.75rem;
  }
}

.p-news__date {
  color: #888888;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
}

.p-news__title {
  overflow: hidden;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 0.875rem;
  }
}

.p-news__viewMoreSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-news__viewMoreSp {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

@media (any-hover: hover) {
  .p-news__title {
    transition: color 0.3s;
  }
  .p-news__itemLink:hover .p-news__title {
    color: #023E78;
  }
}
.p-newsList {
  background-color: #fff;
}

.p-newsList__inner {
  display: flex;
  gap: 2.5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 4.375rem 7.5rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-newsList__inner {
    flex-direction: column;
    gap: 6.25rem;
    padding-block: 3.75rem 5rem;
    padding-inline: 1.25rem;
  }
}

.p-newsList__main {
  flex: 1;
  min-width: 0;
}

.p-newsList__heading {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-newsList__heading {
    font-size: 1.25rem;
  }
}

.p-newsList__articles {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-newsList__articles {
    gap: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.p-newsList__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-newsList__card {
    gap: 0.75rem;
  }
}

.p-newsList__thumb {
  flex-shrink: 0;
  width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-newsList__thumb {
    width: 7.5rem;
  }
}

.p-newsList__thumb img {
  display: block;
  width: 100%;
  height: 9.75rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-newsList__thumb img {
    height: 5.625rem;
  }
}

.p-newsList__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-newsList__body {
    gap: 0.5rem;
  }
}

.p-newsList__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-newsList__date {
  color: #888888;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.p-newsList__title {
  overflow: hidden;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-newsList__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    font-size: 0.875rem;
  }
}

.p-newsList__empty {
  margin-top: 2.5rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

@media (any-hover: hover) {
  .p-newsList__card {
    transition: opacity 0.3s;
  }
  .p-newsList__card:hover {
    opacity: 0.7;
  }
}
.p-service {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.p-service__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/top/service-deco-bg-v2.svg");
  background-position: 0 35.25rem;
  background-repeat: no-repeat;
  background-size: 100% 50rem;
}
@media screen and (max-width: 767px) {
  .p-service__deco {
    background-image: url("../img/top/service-deco-bg-sp-v3.svg");
    background-position: 0 70.625rem;
    background-size: 100% 73.75rem;
  }
}

.p-service__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 7.4375rem 6.8125rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-block: 5rem;
    padding-inline: 1.25rem;
  }
}

.p-service__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-service__viewMore {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-service__viewMore {
    display: none;
  }
}

.p-service__cards {
  position: relative;
  min-height: 48.5625rem;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-service__cards {
    min-height: 0;
    margin-top: 3.125rem;
  }
}

.p-service__card {
  position: absolute;
  top: 0;
  width: 20rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__card {
    position: relative;
    width: 100%;
    max-width: 20.9375rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-service__card + .p-service__card {
    margin-top: 4.375rem;
  }
}

.p-service__card--01 {
  top: 0;
  left: 0;
}

.p-service__card--02 {
  top: 3.6875rem;
  left: 24.375rem;
}
@media screen and (max-width: 767px) {
  .p-service__card--02 {
    top: auto;
    left: auto;
  }
}

.p-service__card--03 {
  top: 7.4375rem;
  left: 48.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__card--03 {
    top: auto;
    left: auto;
  }
}

.p-service__photo {
  position: relative;
  z-index: 1;
  width: 20rem;
  max-width: 100%;
  aspect-ratio: 320/427;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__photo {
    width: 100%;
  }
}

.p-service__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service__num {
  position: absolute;
  top: -3.625rem;
  right: 0;
  z-index: 2;
  width: auto;
  height: 7.6875rem;
}

.p-service__cat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -4.625rem;
  margin-left: -2rem;
}
@media screen and (max-width: 767px) {
  .p-service__cat {
    margin-left: -0.9375rem;
  }
}

.p-service__card--02 .p-service__cat,
.p-service__card--03 .p-service__cat {
  margin-top: -7.5625rem;
}

.p-service__catLine {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.375rem;
  padding-inline: 1rem;
  background-color: #fff;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  white-space: nowrap;
}

.p-service__catLine + .p-service__catLine {
  margin-top: 0.5rem;
}

.p-service__text {
  margin-top: 3rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-service__viewMoreSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service__viewMoreSp {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 3.75rem;
    margin-left: auto;
  }
}

.p-serviceDetail {
  position: relative;
  overflow: hidden;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail {
    padding-bottom: 5rem;
  }
}

.p-serviceDetail__deco {
  position: absolute;
  top: 68.375rem;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 83.0625rem;
  background-image: url("../img/service/service-content-deco-pc.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__deco {
    display: none;
  }
}

.p-serviceDetail__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12.375rem;
  max-width: 68.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__inner {
    gap: 5rem;
  }
}

.p-serviceDetail__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  -webkit-transform: translateX(1.875rem);
  transform: translateX(1.875rem);
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__card {
    flex-direction: column;
    align-items: stretch;
    padding-top: 12.5rem;
    -webkit-transform: none;
    transform: none;
  }
}

.p-serviceDetail__card--reverse {
  flex-direction: row-reverse;
  -webkit-transform: translateX(-1.875rem);
  transform: translateX(-1.875rem);
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__card--reverse {
    flex-direction: column;
    -webkit-transform: none;
    transform: none;
  }
}

.p-serviceDetail__body {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 36.875rem;
  margin-top: 3.3125rem;
  margin-right: -3.75rem;
  padding-block: 5.125rem 2.8125rem;
  padding-inline: 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__body {
    width: auto;
    margin-top: 0;
    margin-right: 0;
    padding-block: 5rem 1.875rem;
    padding-inline: 1.25rem;
  }
}

.p-serviceDetail__card--reverse .p-serviceDetail__body {
  margin-right: 0;
  margin-left: -3.75rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__card--reverse .p-serviceDetail__body {
    margin-left: 0;
  }
}

.p-serviceDetail__num {
  position: absolute;
  top: -3.3125rem;
  left: 2.5rem;
  z-index: 1;
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 6.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__num {
    top: -3rem;
    left: 1.25rem;
    font-size: 4.25rem;
  }
}

.p-serviceDetail__num::before {
  content: attr(data-num);
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  z-index: -1;
  color: #fff;
}

.p-serviceDetail__head {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__head {
    margin-top: 1.875rem;
  }
}

.p-serviceDetail__ja {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__ja {
    font-size: 1.75rem;
  }
}

.p-serviceDetail__en {
  margin-top: 0.375rem;
  color: #023E78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__en {
    font-size: 0.875rem;
  }
}

.p-serviceDetail__text {
  margin-top: 1.5rem;
}

.p-serviceDetail__text p {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-serviceDetail__text p + p {
  margin-top: 1.5em;
}

.p-serviceDetail__table {
  margin-top: 1.875rem;
  border-top: 1px solid #CCCCCC;
}

.p-serviceDetail__row {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  padding-block: 0.875rem;
  border-bottom: 1px solid #CCCCCC;
}

.p-serviceDetail__label {
  flex-shrink: 0;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
}

.p-serviceDetail__value {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-serviceDetail__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19rem;
  max-width: 100%;
  min-height: 4.5rem;
  margin-top: 1.875rem;
  padding-inline: 1.25rem;
  border: 1px solid #023E78;
  background-color: #fff;
  color: #023E78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__btn {
    width: 100%;
  }
}

.p-serviceDetail__btnArrow {
  position: absolute;
  top: 50%;
  right: 1.625rem;
  width: 1.25rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-serviceDetail__photo {
  flex-shrink: 0;
  width: 35rem;
  margin-top: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__photo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 11.75rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-serviceDetail__card--reverse .p-serviceDetail__photo {
    right: auto;
    left: 0;
  }
}

.p-serviceDetail__photo img {
  display: block;
  width: 100%;
  height: 56rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDetail__photo img {
    height: 18.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-serviceDetail__num {
    top: -8.75rem;
    left: 1rem;
  }
  .p-serviceDetail__card--reverse .p-serviceDetail__num {
    left: auto;
    right: 1rem;
  }
}
@media (any-hover: hover) {
  .p-serviceDetail__btn:hover {
    opacity: 0.7;
  }
}
.p-serviceIntro {
  display: flex;
  justify-content: center;
  padding-block: 4.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-serviceIntro {
    padding-block: 3.75rem;
  }
}

.p-serviceIntro__title {
  max-width: 45.4375rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceIntro__title {
    max-width: 18.4375rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-sidebar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-sidebar {
    width: 100%;
    gap: 3.75rem;
  }
}

.p-sidebar__title {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

.p-sidebar__news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.p-sidebar__newsLink {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-sidebar__newsThumb {
  flex-shrink: 0;
  width: 6.25rem;
}

.p-sidebar__newsThumb img {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-sidebar__newsBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-sidebar__newsMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-sidebar__newsDate {
  color: #888888;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.p-sidebar__newsTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-sidebar__cats {
  margin-top: 0.9375rem;
  border-top: 1px solid #DDDDDD;
}

.p-sidebar__catItem {
  border-bottom: 1px solid #DDDDDD;
}

.p-sidebar__catLink {
  position: relative;
  display: block;
  padding-block: 1.125rem;
  padding-left: 2.4375rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.p-sidebar__catLink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../img/news/news-category-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .p-sidebar__newsLink,
  .p-sidebar__catLink {
    transition: opacity 0.3s;
  }
  .p-sidebar__newsLink:hover,
  .p-sidebar__catLink:hover {
    opacity: 0.7;
  }
}
.p-staff {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.p-staff__deco {
  position: absolute;
  left: 0;
  bottom: -2.8125rem;
  z-index: 0;
  width: 100%;
  height: 50rem;
  background-image: url("../img/about/staff-deco-pc.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-staff__deco {
    top: 56.75rem;
    bottom: auto;
    height: 77.125rem;
    background-image: url("../img/about/staff-deco-sp.svg");
  }
}

.p-staff__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-block: 7.5rem 11.6875rem;
  padding-inline: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__inner {
    padding-block: 3.75rem 9.6875rem;
    padding-inline: 1.25rem;
  }
}

.p-staff__title {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.p-staff__cards {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  width: 43rem;
  max-width: 100%;
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-staff__cards {
    width: 20.9375rem;
    margin-top: 2.5rem;
  }
}

.p-staff__card {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-staff__card {
    flex-direction: column;
    align-items: center;
    gap: 1.375rem;
  }
}

.p-staff__photo {
  flex-shrink: 0;
  width: 15rem;
  max-width: 100%;
}

.p-staff__photo img {
  display: block;
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-staff__body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 25.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__body {
    gap: 1.0625rem;
    width: 100%;
  }
}

.p-staff__name {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.p-staff__role {
  font-size: 0.875rem;
}

.p-staff__personName {
  font-size: 1.25rem;
}

.p-staff__desc {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-staff__sns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-staff__snsItem img {
  display: block;
  width: 2rem;
  height: 2rem;
}

@media (any-hover: hover) {
  .p-staff__snsItem a {
    transition: opacity 0.3s;
  }
  .p-staff__snsItem a:hover {
    opacity: 0.7;
  }
}
.u-base1 {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.u-base2 {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.u-flex {
  display: flex;
}

.u-font14 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

.u-font16 {
  font-size: 1rem;
}

.u-font18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .u-font18 {
    font-size: 1rem;
  }
}

.u-font20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .u-font20 {
    font-size: 1rem;
  }
}

.u-font22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .u-font22 {
    font-size: 1.125rem;
  }
}

.u-font24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .u-font24 {
    font-size: 1.125rem;
  }
}

.u-font28 {
  font-size: 1.75rem;
}

.u-font32 {
  font-size: 2rem;
}

.u-font40 {
  font-size: 2.5rem;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

@media screen and (max-width: 767px) {
  .u-mt100 {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-shadow {
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}
.u-text-red {
  color: #F20003;
}

.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}
/*# sourceMappingURL=sourcemaps/style.css.map */