@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
    scroll-padding-top: 3.75rem;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #515962;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 3.75rem;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .c-btn1:hover,
  .c-card1__link:hover,
  .p-nav__link:hover,
  .p-nav__contact:hover,
  .p-header__telLink:hover,
  .p-banner__img a:hover,
  .p-archive__catLink:hover,
  .p-archive__pagination a:hover {
    opacity: 1;
  }
}
.js-enabled .js-fadeup {
  opacity: 0;
  translate: 0 1.875rem;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.js-enabled .js-fadeup.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .js-fadeup {
    opacity: 1;
    translate: 0 0;
    -webkit-transition: none;
    transition: none;
  }
}
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* 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;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-box {
  border-left: 1rem solid #004098;
  -webkit-box-shadow: 0 0.9375rem 1.875rem rgba(81, 89, 98, .05);
          box-shadow: 0 0.9375rem 1.875rem rgba(81, 89, 98, .05);
  border-radius: 2.5rem;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-box {
    border-left: 0.625rem solid #004098;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 78.125rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-btn1 {
  display: inline-block;
  min-width: 15rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  position: relative;
  overflow: clip;
  border-radius: 6.1875rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn1 {
    background-color: #FFB000;
    color: #fff;
    font-size: 1.125rem;
    padding-right: 3rem;
  }
}
.c-btn1:before {
  content: "";
  display: block;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #515962;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: -1;
  -webkit-transition: background-color 0.5s ease, scale 0.5s ease;
  transition: background-color 0.5s ease, scale 0.5s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 768px) {
  .c-btn1:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-btn1:after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    rotate: 45deg;
    translate: 0 -50%;
  }
}
.c-btn1.--green {
  background-color: #06C755;
  color: #fff;
}
@media (any-hover: hover) {
  .c-btn1:hover {
    color: #fff;
  }
  .c-btn1:hover:before {
    background-color: #FFB000;
    scale: 100;
  }
  .c-btn1:hover.--green {
    background-color: #06C755;
    color: #fff;
  }
}

.c-card1 {
  border-radius: 1.25rem;
  overflow: clip;
  -webkit-box-shadow: 0 0.625rem 1.25rem rgba(81, 89, 98, .05);
          box-shadow: 0 0.625rem 1.25rem rgba(81, 89, 98, .05);
  height: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-card1.js-fadeup {
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .c-card1:hover {
    -webkit-box-shadow: 0 1rem 2rem rgba(81, 89, 98, .18);
            box-shadow: 0 1rem 2rem rgba(81, 89, 98, .18);
  }
  .c-card1:hover .c-card1__img {
    scale: 1.05;
  }
  .c-card1:hover .c-card1__title {
    color: #FFB000;
  }
}

.c-card1__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.c-card1__img {
  width: 100%;
  height: auto;
  aspect-ratio: 386/250;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.4s ease;
  transition: scale 0.4s ease;
}

.c-card1__body {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0.5rem;
}

.c-card1__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  line-height: 1.1875;
  font-weight: 700;
  color: #004098;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.c-card1__time {
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-weight: 700;
  color: #515962;
  display: block;
}

.c-card1__tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-card1__tag {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-weight: 400;
  color: #fff;
  background-color: #515962;
  padding: 0.25rem 1rem;
  border-radius: 2.5rem;
}

.c-title1 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #004098;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title1 {
    font-size: 1.75rem;
  }
}
.c-title1[data-en]:before {
  content: attr(data-en);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FFB000;
  text-indent: 0.2em;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-title1[data-en]:before {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
.c-title1:after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.125rem;
  background-color: #FFB000;
  border-radius: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.c-title1.--white {
  color: #fff;
}
.c-title1.--white[data-en]:before {
  color: rgba(255, 255, 255, .7);
}

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

.p-about__wrap {
  border: 0.3125rem solid #FFB000;
  border-radius: 5rem;
  padding: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about__wrap {
    padding: 2.5rem 0.9375rem;
    border-radius: 3.75rem;
  }
}

.p-about__head {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__head {
    font-size: 1.75rem;
  }
}
.p-about__head strong {
  font-size: 3rem;
  line-height: 1.3333333333;
  color: #FFB000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about__head strong {
    font-size: 2rem;
  }
}
.p-about__head strong:before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, rgba(255, 176, 0, .2)), to(rgba(255, 176, 0, .2)));
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(255, 176, 0, .2) 70%, rgba(255, 176, 0, .2) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-about__imgLg {
  background-color: #fff;
  padding: 0.9375rem;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .1);
          box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .1);
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about__imgLg {
    padding: 0.625rem;
    margin-top: 1.875rem;
    border-radius: 1.875rem;
  }
}
.p-about__imgLg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1040/430;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__imgLg img {
    aspect-ratio: 480/320;
    border-radius: 1.25rem;
  }
}

.p-about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.25rem;
  }
}

.p-about__textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-about__text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-about__text {
    font-size: 0.875rem;
  }
}

.p-about__btn {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-about__btn {
    margin-top: 1.25rem;
    text-align: center;
  }
}

.p-about__img {
  background-color: #fff;
  padding: 0.9375rem;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .1);
          box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .1);
  max-width: 31.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__img {
    max-width: 100%;
    border-radius: 1.875rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-about__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 480/320;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__img img {
    border-radius: 1.25rem;
  }
}

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

.p-archive__head {
  text-align: center;
}

.p-archive__breadcrumb {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  color: #515962;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.p-archive__breadcrumb a {
  color: #004098;
}
@media (any-hover: hover) {
  .p-archive__breadcrumb a:hover {
    text-decoration: underline;
  }
}
.p-archive__breadcrumb span {
  color: #515962;
}

.p-archive__body {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: 15.3125rem 1fr;
  gap: 5.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-archive__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.875rem;
    margin-left: 0;
  }
}

.p-archive__side {
  position: sticky;
  top: 2.5rem;
  background-color: rgba(255, 176, 0, .2);
  padding: 2.5rem;
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .p-archive__side {
    position: static;
    top: auto;
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-archive__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__cats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 0.75rem;
  }
}

.p-archive__catLink {
  display: block;
  padding: 0.75rem 1.25rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #515962;
  background-color: transparent;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-archive__catLink {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #FFB000;
    font-size: 0.875rem;
  }
}
.p-archive__catLink.is-active {
  color: #fff;
  background-color: #FFB000;
}
@media screen and (max-width: 768px) {
  .p-archive__catLink.is-active {
    color: #fff;
    background-color: #FFB000;
  }
}
@media (any-hover: hover) {
  .p-archive__catLink:hover {
    color: #515962;
    background-color: rgba(255, 176, 0, .35);
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .p-archive__catLink:hover {
    color: #fff;
    background-color: #FFB000;
  }
}

.p-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-archive__list {
    grid-template-columns: 1fr;
  }
}

.p-archive__item.js-fadeup:nth-child(2n) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.p-archive__empty {
  margin-top: 3.125rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #515962;
}

.p-archive__pagination {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__pagination {
    margin-top: 2.5rem;
  }
}
.p-archive__pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #004098;
  background-color: #fff;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(81, 89, 98, .08);
          box-shadow: 0 0.3125rem 0.9375rem rgba(81, 89, 98, .08);
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-archive__pagination .page-numbers.current {
  color: #fff;
  background-color: #004098;
}
.p-archive__pagination .page-numbers.dots {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
@media (any-hover: hover) {
  .p-archive__pagination a.page-numbers:hover {
    color: #fff;
    background-color: #004098;
  }
}

.p-banner {
  padding-block: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-banner {
    padding-block: 3.75rem;
    margin-top: 1.25rem;
  }
}

.p-banner__img {
  max-width: 40rem;
  margin-inline: auto;
  position: relative;
}
.p-banner__img a {
  display: block;
  position: relativee;
}
.p-banner__img a:before {
  content: "";
  display: block;
  width: 8rem;
  height: 9.9375rem;
  background: url(../images/top/banner_icon.webp) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  rotate: 90deg;
  translate: -90% -90%;
  z-index: 1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-banner__img a:before {
    width: 3.5rem;
    height: 4.375rem;
    translate: -10% -90%;
  }
}
.p-banner__img a:after {
  content: "";
  display: block;
  width: 8rem;
  height: 9.9375rem;
  background: url(../images/top/banner_icon.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  rotate: -90deg;
  translate: 90% 90%;
  z-index: 1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-banner__img a:after {
    width: 3.5rem;
    height: 4.375rem;
    translate: 10% 90%;
  }
}
@media (any-hover: hover) {
  .p-banner__img a:hover:before {
    scale: 1.1;
  }
  .p-banner__img a:hover:after {
    scale: 1.1;
  }
}

.p-banner__img {
  width: 100%;
  height: auto;
  aspect-ratio: 640/200;
}
@media screen and (max-width: 768px) {
  .p-banner__img {
    max-width: 85%;
    margin-inline: auto;
  }
}

.p-banner__imgText {
  width: 19.75rem;
  height: auto;
  position: absolute;
  top: -8.5625rem;
  right: -11.5rem;
}
@media screen and (max-width: 768px) {
  .p-banner__imgText {
    width: 11.25rem;
    top: -6.25rem;
    right: -3.125rem;
  }
}

.p-breadcrumbs {
  margin-top: 1.25rem;
}

.p-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-breadcrumbs__item {
  font-size: 0.9375rem;
  font-weight: 500;
}
.p-breadcrumbs__item:not(:first-child)::before {
  content: "/";
  margin-right: 0.625rem;
}

.p-company {
  padding-block: 6rem;
  background-color: #F7F8FA;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-company {
    padding-block: 3.5rem;
    margin-top: 3.125rem;
  }
}
.p-company:has(+ .p-contact) {
  padding-bottom: 13.5rem;
}
@media screen and (max-width: 768px) {
  .p-company:has(+ .p-contact) {
    padding-bottom: 7.25rem;
  }
}

.p-company__list {
  margin-top: 3rem;
  border-top: 0.0625rem solid rgba(81, 89, 98, .15);
  max-width: 46.875rem;
  margin-inline: auto;
  padding: 3.5rem;
  border: 0.1875rem solid #FFB000;
  border-radius: 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-company__list {
    margin-top: 1.875rem;
    border-radius: 1.875rem;
  }
}

.p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.0625rem solid rgba(81, 89, 98, .15);
}
@media screen and (max-width: 768px) {
  .p-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-company__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.75rem;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #004098;
}
@media screen and (max-width: 768px) {
  .p-company__term {
    width: 100%;
    padding: 1rem 0.5rem 0.25rem;
  }
}

.p-company__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-company__desc {
    padding: 0rem 0.5rem 1rem;
  }
}

.p-contact {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #004098;
  border-radius: 7.5rem 7.5rem 0 0;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact {
    border-radius: 3.75rem 3.75rem 0 0;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    margin-top: 3.75rem;
  }
}

.p-news + .p-contact,
.p-company + .p-contact {
  margin-top: -7.5rem;
}
@media screen and (max-width: 768px) {
  .p-news + .p-contact,
  .p-company + .p-contact {
    margin-top: -3.75rem;
  }
}

.p-contact__box {
  background-color: #fff;
  padding: 5rem;
  border-radius: 2.5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-contact__box {
    padding: 1.5625rem;
    border-radius: 1.875rem;
  }
}
.p-contact__box.--sm {
  padding: 2.5rem;
  max-width: 47.6875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact__box.--sm {
    max-width: 100%;
    padding: 1.5625rem;
  }
}

.p-contact__boxInner {
  border-block: 0.1875rem solid #06C755;
  padding-block: 2rem;
}
@media screen and (max-width: 768px) {
  .p-contact__boxInner {
    padding-block: 1.25rem;
  }
}

.p-contact__lead {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #515962;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-contact__lead {
    font-size: 1.125rem;
  }
}
.p-contact__lead:before {
  content: "";
  display: block;
  width: 2rem;
  height: 3rem;
  background: url(../images/common/contact_icon.webp) no-repeat center center/contain;
}
.p-contact__lead:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3rem;
  background: url(../images/common/contact_icon.webp) no-repeat center center/contain;
  scale: -1 1;
}

.p-contact__account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact__account {
    gap: 0.625rem;
  }
}

.p-contact__textBox {
  display: grid;
  gap: 1.5rem;
}

.p-contact__textLabel {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .p-contact__textLabel {
    font-size: 2rem;
  }
}

.p-contact__textValue {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #515962;
}
@media screen and (max-width: 768px) {
  .p-contact__textValue {
    font-size: 1rem;
  }
}

.p-contact__qr {
  display: block;
}
.p-contact__qr img {
  width: 10rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-contact__qr img {
    width: 6.25rem;
  }
}

.p-contact__btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__btn {
    margin-top: 1rem;
  }
}

.p-fixedCta {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-fixedCta {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 90;
  }
}

.p-fixedCta__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
}

.p-fixedCta__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  padding-inline: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}
.p-fixedCta__link.--tel {
  background-color: #004098;
}
.p-fixedCta__link.--line {
  background-color: #06C755;
}
.p-fixedCta__link.--contact {
  background-color: #FFB000;
}

.p-footer {
  padding-block: 2.5rem;
  background-color: #CDD3DB;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-bottom: 6.5rem;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__head {
    text-align: center;
  }
}
.p-footer__head address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5714285714;
  font-weight: 700;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__head address {
    font-size: 0.875rem;
  }
}

.p-footer__logo {
  width: 18.0625rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 15rem;
    margin-inline: auto;
  }
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p-footer__nav {
    margin-top: 3.125rem;
  }
}

.p-footer__coyp {
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 2rem;
  text-align: center;
}

.p-form {
  color: #515962;
}

.p-form__note {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.p-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

.p-form__item {
  min-width: 0;
}

.p-form__item--full {
  grid-column: 1/-1;
}

.p-form__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.p-form__required {
  color: #FFB000;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #515962;
  background-color: transparent;
  border: none;
  border-bottom: 0.0625rem solid #c8ccd2;
  border-radius: 0;
  padding: 0.5rem 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form__input::-webkit-input-placeholder,
.p-form__select::-webkit-input-placeholder,
.p-form__textarea::-webkit-input-placeholder {
  color: #a8adb4;
}
.p-form__input::-moz-placeholder,
.p-form__select::-moz-placeholder,
.p-form__textarea::-moz-placeholder {
  color: #a8adb4;
}
.p-form__input::-ms-input-placeholder,
.p-form__select::-ms-input-placeholder,
.p-form__textarea::-ms-input-placeholder {
  color: #a8adb4;
}
.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: #a8adb4;
}
.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  outline: none;
  border-bottom-color: #004098;
}

.p-form__select {
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23515962' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}

.p-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-form__agree {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-form__agree {
    margin-top: 2rem;
  }
}
.p-form__agree .wpcf7-list-item {
  margin: 0;
}
.p-form__agree label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
}
.p-form__agree input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #515962;
}

.p-form__submitWrap {
  margin-top: 2rem;
  text-align: center;
}

.p-form__submit {
  display: inline-block;
  min-width: 12.5rem;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #515962;
  border: none;
  border-radius: 6.1875rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-form__submit:hover {
    opacity: 0.85;
  }
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}
.p-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #d93025;
  margin-top: 0.25rem;
}
.p-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  border-radius: 0.5rem;
}

.p-contact__form .wpcf7 {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.p-fv__inner {
  position: relative;
}

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

.p-fv__icon {
  width: 15rem;
  position: absolute;
  bottom: 5.3125rem;
  right: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-fv__icon {
    width: 8.4375rem;
    bottom: auto;
    bottom: initial;
    top: 50%;
    right: 0;
    translate: -25% 50%;
  }
}
.p-fv__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.p-header {
  padding-block: 1.125rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding-block: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid #CDD3DB;
  }
}

.p-header__inner {
  max-width: 84.125rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    height: 3.75rem;
    padding-inline: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
}

.p-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__body {
    width: 100%;
    gap: 0;
  }
}

.p-header__tel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-header__tel {
    display: none;
  }
}

.p-header__telLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: #004098;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__telLink:hover {
    color: #FFB000;
  }
}

.p-header__telLabel {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFB000;
}

.p-header__telNote {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  line-height: 1.4;
  font-weight: 500;
}

.p-header__head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-header__head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-header__open {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.3125rem;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: -0.625rem;
  }
}
.p-header__open span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #FFB000;
  border-radius: 0.0625rem;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.p-header__open.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.4375rem) rotate(45deg);
          transform: translateY(0.4375rem) rotate(45deg);
}
.p-header__open.is-active span:nth-child(2) {
  opacity: 0;
}
.p-header__open.is-active span:nth-child(3) {
  -webkit-transform: translateY(-0.4375rem) rotate(-45deg);
          transform: translateY(-0.4375rem) rotate(-45deg);
}

.p-header__logo {
  width: 18.0625rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 11.875rem;
  }
}
.p-header__logo a {
  display: block;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p-header__drawer {
    position: fixed;
    top: 3.75rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 3.75rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: #fff;
    z-index: 99;
    padding: 1.25rem 1.25rem 2.5rem;
    display: none;
  }
}

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

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

.p-message__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-message__body {
    margin-top: 1.875rem;
  }
}
.p-message__body:has(.p-message__img) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .p-message__body:has(.p-message__img) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-message__img {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .p-message__img {
    position: static;
    width: 100%;
  }
}
.p-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  aspect-ratio: 480/640;
}
@media screen and (max-width: 768px) {
  .p-message__img img {
    height: auto;
  }
}

.p-message__textWrap {
  width: 100%;
  background-color: #fff;
  margin-right: -2.5rem;
}
.p-message__body:has(.p-message__img) .p-message__textWrap {
  position: relative;
  z-index: 1;
  width: 64%;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-message__body:has(.p-message__img) .p-message__textWrap {
    width: 100%;
    margin-top: -2.5rem;
  }
}

.p-message__keyword {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #004098;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, transparent), color-stop(65%, rgba(255, 176, 0, .4)), to(rgba(255, 176, 0, .4)));
  background: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(255, 176, 0, .4) 65%, rgba(255, 176, 0, .4) 100%);
}
@media screen and (max-width: 768px) {
  .p-message__keyword {
    font-size: 1.375rem;
  }
}

.p-message__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    margin-top: 1rem;
  }
}

.p-message__sign {
  margin-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-message__sign {
    margin-top: 1.5rem;
  }
}

.p-message__position {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.p-message__name {
  display: block;
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-message__name {
    font-size: 1.5rem;
  }
}

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    gap: 1.5rem;
  }
}

.p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    border-top: 1px solid #CDD3DB;
  }
}

@media screen and (max-width: 768px) {
  .p-nav__item {
    border-bottom: 1px solid #CDD3DB;
  }
}

.p-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 700;
  padding-inline: 0.625rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-nav__link {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.25rem;
    font-size: 1rem;
    padding: 0.8125rem 1.75rem 0.8125rem 0.25rem;
    color: #004098;
  }
}
@media (any-hover: hover) {
  .p-nav__link:hover {
    color: #FFB000;
  }
}
@media screen and (max-width: 768px) {
  .p-nav__link[data-en]:before {
    content: attr(data-en);
    font-family: "Montserrat", sans-serif;
    font-size: 0.6875rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #FFB000;
  }
}
@media screen and (max-width: 768px) {
  .p-nav__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid #FFB000;
    border-right: 0.125rem solid #FFB000;
    translate: 0 -50%;
    rotate: 45deg;
  }
}

.p-nav__tel {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-nav__tel {
    display: block;
    padding: 1rem;
    background-color: #F2F6FB;
    border-radius: 0.5rem;
    text-align: center;
  }
}

.p-nav__telLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #004098;
  letter-spacing: 0.02em;
}

.p-nav__telLabel {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFB000;
}

.p-nav__telNote {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}

.p-nav__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-nav__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.875rem;
  }
}

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

.p-nav__contact {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #FFB000;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .p-nav__contact {
    display: block;
    width: 100%;
    padding: 0.9375rem 1.5rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-nav__contact:hover {
    border-bottom: none;
  }
}

.p-nav__line {
  display: inline-grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
  background-color: #06C755;
  border-radius: 0.3125rem;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}

.p-news {
  padding-block: 6rem;
  background-color: #F2F6FB;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-block: 3.5rem;
  }
}
.p-news:has(+ .p-contact) {
  padding-bottom: 13.5rem;
}
@media screen and (max-width: 768px) {
  .p-news:has(+ .p-contact) {
    padding-bottom: 7.25rem;
  }
}

.p-news__list {
  display: grid;
  gap: 0.9375rem;
  margin-top: 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-news__list {
    margin-top: 1.875rem;
  }
}

.p-news__item {
  padding-bottom: 0.9375rem;
  border-bottom: 1px dashed #CDD3DB;
  display: grid;
  grid-template-columns: 8.125rem 1fr;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-news__item {
    grid-template-columns: 1fr;
  }
}

.p-news__time {
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 900;
  color: #004098;
}

.p-news__title {
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 400;
}

.p-service {
  padding-block: 6rem;
  background-color: #FFF8EC;
}
@media screen and (max-width: 768px) {
  .p-service {
    padding-block: 3.5rem;
  }
}

.p-service__list {
  display: grid;
  gap: 4.0625rem;
  margin-top: 2.5rem;
}

.p-service__titleLg {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__titleLg {
    font-size: 1.25rem;
  }
}

.p-service__listSm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-service__listSm {
    grid-template-columns: 1fr;
  }
}
.p-service__listSm.--lg {
  grid-template-columns: 1fr;
}
.p-service__listSm.--lg .p-service__itemSm {
  grid-template-rows: auto;
  border-color: #CDD3DB;
}

.p-service__itemSm {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1.25rem;
  padding: 1.875rem 1.5625rem;
  border-bottom: 1rem solid #FFB000;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 0.9375rem 1.875rem rgba(81, 89, 98, .25);
          box-shadow: 0 0.9375rem 1.875rem rgba(81, 89, 98, .25);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-service__itemSm {
    border-radius: 1.875rem;
    padding: 1.25rem;
  }
}
.p-service__itemSm:nth-child(2n+2) {
  border-color: #CDD3DB;
}
.p-service__itemSm.js-fadeup {
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, box-shadow 0.3s ease;
  transition: opacity 0.8s ease, translate 0.8s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-service__itemSm.js-fadeup:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-service__itemSm.js-fadeup:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media (any-hover: hover) {
  .p-service__itemSm:hover {
    -webkit-box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .3);
            box-shadow: 0 1.25rem 2.5rem rgba(81, 89, 98, .3);
  }
}

.p-service__imgWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-service__imgWrap {
    grid-template-columns: 1fr;
  }
}
.p-service__imgWrap .p-service__imgSm {
  aspect-ratio: 552/240;
}

.p-service__imgSm {
  width: 100%;
  height: auto;
  aspect-ratio: 300/240;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__imgSm {
    border-radius: 1.875rem;
  }
}

.p-service__titleSm {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 700;
  color: #004098;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 768px) {
  .p-service__titleSm {
    font-size: 1.25rem;
  }
}

.p-service__textSm {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-service__textSm {
    font-size: 0.875rem;
  }
}

.p-subFv {
  padding-top: 4.1875rem;
  padding-bottom: 4.6875rem;
  position: relative;
}
.p-subFv .p-subFv__inner {
  height: 100%;
  position: relative;
  z-index: 1;
}
.p-subFv .p-subFv__head {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-subFv .p-subFv__head {
    font-size: 1.75rem;
  }
}
.p-subFv .p-subFv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-subFv .p-subFv__img img {
  width: 100%;
  height: 100%;
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-works {
  padding-block: 5rem;
}
@media screen and (max-width: 768px) {
  .p-works {
    padding-block: 3rem;
  }
}

.p-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-works__list {
    grid-template-columns: 1fr;
  }
}

.p-works__item.js-fadeup:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-works__item.js-fadeup:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

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

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

.p-worksDetail__wrap {
  border: 0.1875rem solid #FFB000;
  border-radius: 2.5rem;
  padding: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__wrap {
    padding: 1.5625rem 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-worksDetail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.p-worksDetail__title {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #004098;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__title {
    font-size: 1.375rem;
  }
}

.p-worksDetail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__meta {
    gap: 0.75rem;
  }
}

.p-worksDetail__time {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-worksDetail__tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.p-worksDetail__tag {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  color: #004098;
  border: 0.0625rem solid #004098;
  border-radius: 6.25rem;
  padding: 0.375rem 1rem;
}

.p-worksDetail__thumbnail {
  margin-top: 1.5rem;
}
.p-worksDetail__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__thumbnail img {
    border-radius: 0.75rem;
  }
}

.p-worksDetail__info {
  margin-top: 2rem;
  border-top: 0.0625rem solid rgba(81, 89, 98, .15);
}
@media screen and (max-width: 768px) {
  .p-worksDetail__info {
    margin-top: 1.5rem;
  }
}

.p-worksDetail__infoRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.0625rem solid rgba(81, 89, 98, .15);
}

.p-worksDetail__infoTerm {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #004098;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__infoTerm {
    width: 6.875rem;
    padding: 0.75rem 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-worksDetail__infoDesc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__infoDesc {
    padding: 0.75rem 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-worksDetail__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__imgs {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

.p-worksDetail__imgItem img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__imgItem img {
    border-radius: 0.75rem;
  }
}

.p-worksDetail__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__body {
    margin-top: 2rem;
  }
}
.p-worksDetail__body h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #515962;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__body h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
}
.p-worksDetail__body h2:first-child {
  margin-top: 0;
}
.p-worksDetail__body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #004098;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__body h3 {
    font-size: 1.125rem;
  }
}
.p-worksDetail__body p {
  font-size: 1rem;
  line-height: 2;
}
.p-worksDetail__body p + p {
  margin-top: 1.5rem;
}
.p-worksDetail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.p-worksDetail__body .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-block: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__body .wp-block-gallery {
    gap: 0.75rem;
    margin-block: 1.5rem;
  }
}
.p-worksDetail__body .wp-block-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__body .wp-block-gallery img {
    border-radius: 0.75rem;
  }
}

.p-worksDetail__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-worksDetail__pager {
    margin-top: 1.5rem;
  }
}

.p-worksDetail__pagerItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #004098;
}
.p-worksDetail__pagerItem.--prev::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375rem 0.5625rem 0.375rem 0;
  border-color: transparent #FFB000 transparent transparent;
}
.p-worksDetail__pagerItem.--next {
  margin-left: auto;
}
.p-worksDetail__pagerItem.--next::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375rem 0 0.375rem 0.5625rem;
  border-color: transparent transparent transparent #FFB000;
}
.p-worksDetail__pagerItem.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.u-align--center {
  text-align: center;
}
.u-align--center-pc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .u-align--center-pc {
    text-align: left;
  }
}

.u-color--orange {
  color: #FFB000;
}

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

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