@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1074px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  color: #333;
}

a:hover,
button:hover {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.js-fadeHead {
  opacity: 0;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1.8s;
  transition: all 1.8s;
}

/*****************************
* 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-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-archive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-archive__main {
  width: 67.7%;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .l-archive__main {
    width: auto;
    margin-top: 0;
    padding-bottom: 7.5rem;
  }
}

.l-archive__side {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .l-archive__side {
    width: auto;
  }
}

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

.l-sticky {
  max-width: 65.625rem;
  margin-top: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-sticky {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 0;
  }
}

.l-sticky__left {
  width: 11.875rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 8.375rem;
  position: sticky;
  top: 6.25rem;
  left: 0;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .l-sticky__left {
    width: 100%;
    margin-left: 0;
    padding-top: 3.75rem;
    padding-bottom: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    position: static;
  }
}

.l-sticky__right {
  width: 48.4375rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-sticky__right {
    width: auto;
    margin-left: 0;
  }
}

.l-sticky__bg {
  display: block;
  width: 99.8vw;
  height: 100%;
  margin: 0 calc(34.9% - 50vw);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-sticky__bg {
    width: 100%;
    margin: 0;
  }
}

.c-btn01 {
  padding: 0.9375rem 3.125rem 0.9375rem 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 27.5px;
  background: #1f874a;
  border: 1px solid #1f874a;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01--black {
  background: #333;
  border: 1px solid #333;
}

.c-btn01--white {
  color: #000;
  background: transparent;
  border: 1px solid #000;
}

.c-btn01--white:hover {
  color: #fff;
  background: #000;
}
@media screen and (max-width: 767px) {
  .c-btn01--white:hover {
    color: #000;
    background: transparent;
  }
}

.c-btn01::after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 27.5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01:hover::after {
  width: 100%;
  border: 1px solid #1f874a;
}
@media screen and (max-width: 767px) {
  .c-btn01:hover::after {
    width: 0;
  }
}

.c-btn01--black:hover::after {
  background: #fff;
  border: 1px solid #333;
}

.c-btn01--white:hover::after {
  background: #000;
  border: 1px solid #000;
}

.c-btn01__text {
  width: 100%;
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01--white .c-btn01__text {
  color: #000;
}

.c-btn01:hover .c-btn01__text {
  color: #1f874a;
}
@media screen and (max-width: 767px) {
  .c-btn01:hover .c-btn01__text {
    color: #fff;
  }
}

.c-btn01--black:hover .c-btn01__text {
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-btn01--black:hover .c-btn01__text {
    color: #fff;
  }
}

.c-btn01--white:hover .c-btn01__text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn01--white:hover .c-btn01__text {
    color: #333;
  }
}

.c-btn01__text::before {
  content: "";
  width: 0.375rem;
  height: 0.625rem;
  background: #1f874a;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: -1.625rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01:hover .c-btn01__text::before {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn01:hover .c-btn01__text::before {
    background: #1f874a;
  }
}

.c-btn01--black .c-btn01__text::before {
  background: #333;
}

.c-btn01--black:hover .c-btn01__text::before {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn01--black:hover .c-btn01__text::before {
    background: #333;
  }
}

.c-btn01--white .c-btn01__text::before {
  background: #fff;
}

.c-btn01--white:hover .c-btn01__text::before {
  background: #000;
}
@media screen and (max-width: 767px) {
  .c-btn01--white:hover .c-btn01__text::before {
    background: #fff;
  }
}

.c-btn01__text::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -2.375rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01:hover .c-btn01__text::after {
  background: #1f874a;
}
@media screen and (max-width: 767px) {
  .c-btn01:hover .c-btn01__text::after {
    background: #fff;
  }
}

.c-btn01--black:hover .c-btn01__text::after {
  background: #333;
}
@media screen and (max-width: 767px) {
  .c-btn01--black:hover .c-btn01__text::after {
    background: #fff;
  }
}

.c-btn01--white .c-btn01__text::after {
  background: #000;
}

.c-btn01--white:hover .c-btn01__text::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn01--white:hover .c-btn01__text::after {
    background: #000;
  }
}

.c-btn02 {
  display: block;
  padding: 1rem 1.25rem;
  background: #cccccc;
  border-radius: 28px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn02::after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 27.5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn02:hover::after {
  width: 100%;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .c-btn02:hover::after {
    width: 0;
  }
}

.c-btn02__text {
  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;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: bold;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn02__text {
    font-size: 1rem;
  }
}

.c-category01 {
  min-width: 7.3125rem;
  padding: 0.4375rem 1rem 0.4375rem 1.0625rem;
  font-size: max(10px, 0.875rem);
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background: #f5f5f5;
  border-radius: 14px;
}
@media screen and (max-width: 767px) {
  .c-category01 {
    font-size: 0.8125rem;
  }
}

.c-title01 {
  display: inline-block;
}

.c-title01__sub {
  display: block;
  font-size: 1rem;
  color: #1f874a;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-title01__sub {
    font-size: 0.875rem;
  }
}

.c-title01__main {
  margin-top: 0.625rem;
  font-size: 2.625rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title01__main {
    margin-top: 0.3125rem;
    font-size: 1.875rem;
  }
}

.c-title01--sm .c-title01__main {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-title01--sm .c-title01__main {
    font-size: 1.875rem;
  }
}

.c-title02 {
  display: inline-block;
  font-size: 2.25rem;
  line-height: 1.3333333333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 1.875rem;
  }
}

.c-title03 {
  display: inline-block;
}

.c-title03__main {
  font-size: 2.25rem;
  line-height: 1.3333333333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title03__main {
    font-size: 1.875rem;
  }
}

.c-title03__sub {
  margin-top: 1.625rem;
  font-size: 1.5rem;
  color: #1f874a;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title03__sub {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.p-about-concept {
  padding-top: 3rem;
  padding-bottom: 4.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-concept {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}

.p-about-concept::after {
  content: "";
  width: 44.25rem;
  height: 19rem;
  background: transparent url(../images/about/bg_wave_right01.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 3.125rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-concept::after {
    width: 21.875rem;
    height: 9.375rem;
    bottom: 0;
  }
}

.p-about-concept__inner {
  max-width: 65.625rem;
}

.p-about-concept__title {
  text-align: center;
}

.p-about-concept__body {
  margin-top: 1.875rem;
}

.p-about-concept__text {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2.6666666667;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-concept__text {
    font-size: 1rem;
    text-align: left;
    line-height: 2;
  }
}

.p-about-promise {
  padding-top: 6.375rem;
  padding-bottom: 6.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-promise {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.p-about-promise__inner {
  max-width: 65.625rem;
}

.p-about-promise__title {
  text-align: center;
}

.p-about-promise__list {
  margin-top: 3.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about-promise__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.p-about-strengths {
  padding-top: 7.5rem;
  padding-bottom: 6.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-strengths {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.p-about-strengths::after {
  content: "";
  width: 36.875rem;
  height: 19rem;
  background: transparent url(../images/about/bg_wave_left.svg) no-repeat center
    center/100%;
  position: absolute;
  bottom: -8.5rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-strengths::after {
    width: 21.875rem;
    height: 9.375rem;
    bottom: -4rem;
  }
}

.p-about-strengths__inner {
  max-width: 65.625rem;
}

.p-about-strengths__title {
  text-align: center;
}

.p-about-strengths__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-strengths__list {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
}

.p-about {
  padding-top: 6.625rem;
  padding-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
  }
}

.p-about::after {
  content: "";
  width: 38.125rem;
  height: 16.25rem;
  background: transparent url(../images/about/bg_wave_right02.svg) no-repeat
    center center/100%;
  position: absolute;
  top: -5.625rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about::after {
    width: 21.875rem;
    height: 9.375rem;
    top: -3.75rem;
  }
}

.p-about__inner {
  max-width: 65.625rem;
}

.p-about__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    gap: 3rem;
  }
}
.p-about__list ul {
  list-style-type: disc;
  padding-left: 24px;
}
.p-about__list ul li {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}

.p-about__item h4 {
  padding-top: 30px;
}

.p-about__title--sub {
  font-size: 3.75rem;
  color: #8f8f8f;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about__title--sub {
    font-size: 2.5rem;
  }
}

.p-about__title--main {
  margin-top: 0.5625rem;
  font-size: 1.25rem;
  color: #1f874a;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about__title--main {
    font-size: 1.125rem;
  }
}

.p-about__read {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__read {
    font-size: 0.875rem;
  }
}

.p-about__text {
  margin-top: 7.125rem;
  font-size: 1.25rem;
  line-height: 2.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 3.5rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-article_card1 {
  margin-bottom: 1.75rem;
  padding: 3.75rem 2.3125rem 3.5rem;
  background: transparent url(../images/common/bg_contact.png) no-repeat center
    center/cover;
}
@media screen and (max-width: 767px) {
  .p-article_card1 {
    padding: 2rem 1.25rem 2rem;
  }
}

.p-article_card1__title {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.6666666667;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-article_card1__title {
    font-size: 1.25rem;
  }
}

.p-article_card1__text {
  margin-top: 1.125rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-article_card1__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-article_card1__btn {
  margin-top: 2.625rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-article_card1__btn {
    margin-top: 2rem;
  }
}

.p-breadcrumb {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.p-breadcrumb__inner {
  max-width: 65.625rem;
}

.p-breadcrumb__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-breadcrumb__inner ul li {
  margin-right: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li {
    margin-right: 0.5rem;
  }
}

.p-breadcrumb__inner ul li:nth-child(n + 2) {
  padding-left: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li:nth-child(n + 2) {
    padding-left: 1rem;
  }
}

.p-breadcrumb__inner ul li:nth-child(n + 2)::before {
  content: ">";
  font-size: 1rem;
  line-height: 1.5;
  position: absolute;
  top: 0.125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li:nth-child(n + 2)::before {
    font-size: 0.875rem;
    top: 0;
  }
}

.p-breadcrumb__inner ul li a,
.p-breadcrumb__inner ul li span {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li a,
  .p-breadcrumb__inner ul li span {
    font-size: 0.875rem;
  }
}

.p-card01__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 320/180;
  border-radius: 10px;
}

.p-card01__body {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-card01__body {
    margin-top: 1rem;
  }
}

.p-card01__top {
  padding-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
  border-bottom: 1px solid #e9e9e9;
}
@media screen and (max-width: 767px) {
  .p-card01__top {
    padding-bottom: 1rem;
    gap: 0.3125rem;
  }
}

.p-card01__title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-card01__title {
    font-size: 1.125rem;
  }
}

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

.p-card01__bottom {
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-card01__bottom {
    padding-top: 1rem;
  }
}

.p-card01__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}

.p-card01__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-card01__term {
  min-width: 3.5rem;
  height: 1.75rem;
  margin-right: 0.9375rem;
  padding: 0.125rem 0.75rem 0.125rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-card01__term {
    font-size: 0.875rem;
  }
}

.p-card01__desc {
  font-size: 1rem;
  color: #8f8f8f;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card01__desc {
    font-size: 0.875rem;
  }
}

.p-card02__head {
  min-height: 7.5rem;
  padding: 2rem 1.75rem 1.625rem;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 17.7px rgba(0, 0, 0, 0.13);
  box-shadow: 0 0 17.7px rgba(0, 0, 0, 0.13);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-card02__head {
    padding: 2rem 2.5rem 1.625rem;
  }
}

.p-card02__icon img {
  height: auto;
}

.p-card02__title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card02__title {
    font-size: 1.125rem;
  }
}

.p-card02__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-card02__body {
    margin-top: 0.625rem;
  }
}

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

.p-card03__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 300/200;
}

.p-card03__body {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-card03__body {
    margin-top: 1rem;
  }
}

.p-card03__detail {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.3125rem;
}

.p-card03__post {
  padding-right: 0.125rem;
  padding-left: 0.125rem;
  font-size: 1rem;
  color: #1f874a;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card03__post {
    font-size: 0.875rem;
  }
}

.p-card03__name {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card03__name {
    font-size: 1.25rem;
  }
}

.p-card03__araa {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-card03__araa {
    margin-top: 0.75rem;
  }
}

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

.p-card04 {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
  box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
}

.p-card04__inner {
  padding: 2.0625rem 1.6875rem 2.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5.25rem;
  -moz-column-gap: 5.25rem;
  column-gap: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-card04__inner {
    padding: 1.5rem 1rem 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

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

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

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

.p-card04__body {
  width: 46.25rem;
}
@media screen and (max-width: 767px) {
  .p-card04__body {
    width: 75.4716981132%;
  }
}

.p-card04__title {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card04__title {
    font-size: 1.125rem;
  }
}

.p-card04__text {
  margin-top: 0.375rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card04__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-card05 {
  height: 100%;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}

.p-card05__inner {
  height: 100%;
  padding: 2.5rem 1.25rem 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-card05__inner {
    padding: 1.5rem 1.25rem 2rem;
  }
}

.p-card05__title {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: bold;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-card05__title {
    font-size: 1.125rem;
  }
}

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

.p-card05__icon img {
  height: auto;
}

.p-card05__list {
  margin-top: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-card05__list {
    margin-top: 2rem;
  }
}

.p-card05__item {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card05__item {
    font-size: 0.875rem;
  }
}

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

.p-card06__head {
  width: 14.375rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-card06__head {
    width: auto;
    padding-left: 0;
  }
}

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

.p-card06__icon img {
  height: auto;
}

.p-card06__body {
  width: 31.125rem;
}
@media screen and (max-width: 767px) {
  .p-card06__body {
    width: auto;
    margin-top: 1.5rem;
  }
}

.p-card06__read {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card06__read {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-card06__text {
  margin-top: 0.125rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card06__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-card07 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-card07__head {
  height: 9.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-card07__head {
    height: 6.25rem;
  }
}

.p-card07__icon img {
  height: auto;
}

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

.p-card07__read {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-card07__read {
    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: 1.125rem;
  }
}

.p-card07__text {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card07__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-card08 {
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
  box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
}

.p-card08__inner {
  padding: 0.6875rem 1rem 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-card08__inner {
    padding: 0.5rem 0.625rem 1rem;
  }
}

.p-card08__title {
  margin-left: 0.25rem;
  font-size: 1rem;
  color: #1f874a;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card08__title {
    font-size: 0.875rem;
  }
}

.p-card08__list {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .p-card08__list {
    margin-top: 0.5rem;
    row-gap: 0.625rem;
  }
}

.p-card08__item {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card08__item {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.p-case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 2.1875rem;
  -moz-column-gap: 2.1875rem;
  column-gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-case-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-case-card__img {
  width: 16.125rem;
  margin-top: 2.5rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__img {
    width: auto;
    margin-top: 0;
    margin-right: 0;
  }
}

.p-case-card__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-case-card__body {
  width: 26.5625rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__body {
    width: auto;
    padding: 1rem 0.5rem 0;
  }
}

.p-case-card__number {
  font-size: 1rem;
  color: #1f874a;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-case-card__number {
    font-size: 0.9375rem;
  }
}

.p-case-card__main {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-case-card__main {
    margin-top: 0.375rem;
    font-size: 0.9375rem;
  }
}

.p-case-card__list {
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__list {
    margin-top: 1rem;
  }
}

.p-case-card__item {
  padding-left: 0.625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case-card__item {
    font-size: 0.875rem;
  }
}

.p-case-card__item::before {
  content: "・";
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__item::before {
    font-size: 0.875rem;
  }
}

.p-company {
  padding-top: 3rem;
  padding-bottom: 16rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-top: 2.5rem;
    padding-bottom: 8.75rem;
  }
}

.p-company::after {
  content: "";
  width: 38.0625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-company__inner {
  max-width: 53.125rem;
}

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

.p-company__list {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    margin-top: 2rem;
  }
}

.p-company__item {
  border-bottom: 1px solid #cccccc;
}

.p-company__wrap {
  padding: 2.4375rem 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.8125rem;
  -moz-column-gap: 1.8125rem;
  column-gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company__wrap {
    padding: 1rem 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }
}

.p-company__head {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-company__head {
    width: auto;
  }
}

.p-company__subtitle {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__subtitle {
    font-size: 1rem;
  }
}

.p-company__body {
  width: calc(100% - 16.4375rem);
}
@media screen and (max-width: 767px) {
  .p-company__body {
    width: auto;
  }
}

.p-company__text {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    font-size: 1rem;
  }
}

.p-company__map {
  padding-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__map {
    padding-bottom: 1.5rem;
  }
}

.p-company__map iframe {
  width: 100%;
  height: 19.375rem;
  display: block;
}

.p-contact {
  padding-top: 2.875rem;
  padding-bottom: 22.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 2.5rem;
    padding-bottom: 11.25rem;
  }
}

.p-contact.p-contact--thanks {
  padding-bottom: 19.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact.p-contact--thanks {
    padding-bottom: 8.75rem;
  }
}

.p-contact::after {
  content: "";
  width: 38.1875rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 4.6875rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-contact::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 2.5rem;
  }
}

.p-contact.p-contact--thanks::after {
  bottom: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact.p-contact--thanks::after {
    bottom: 1.25rem;
  }
}

.p-contact__inner {
  max-width: 65.625rem;
}

.p-contact__title {
  margin-bottom: 4.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    margin-bottom: 2rem;
  }
}

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

.p-contact__btn {
  width: 18.75rem;
  margin-inline: auto;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 3.5rem;
  }
}

.p-contact__body {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 1.5rem;
  }
}

.p-cta-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-cta-card {
    height: auto;
  }
}

.p-cta-card__title {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-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: 767px) {
  .p-cta-card__title {
    height: auto;
  }
}

.p-cta-card__title--icon img {
  height: auto;
}

.p-cta-card__title--main {
  margin-top: 1.6875rem;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-cta-card__title--main {
    font-size: 1.25rem;
  }
}

.p-cta-card__text {
  margin-top: 0.5625rem;
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cta-card__text {
    font-size: 0.875rem;
  }
}

.p-cta-card__btn {
  margin-top: 1.875rem;
  width: 18.75rem;
  margin-inline: auto;
}

.p-cta {
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
  background: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.p-cta__inner {
  max-width: 57.5rem;
}

.p-cta__wrap {
  padding-top: 1.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-cta__wrap::before {
  content: "";
  width: 1px;
  height: 15.9375rem;
  background: #d2d2d2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .p-cta__wrap::before {
    display: none;
  }
}

.p-cta__box {
  width: 41.0344827586%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__box:nth-child(odd) {
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__box:nth-child(n + 2) {
    padding-top: 2.5rem;
    border-top: 1px solid #d2d2d2;
  }
}

.p-faq-card__head {
  padding: 1.375rem 2.8125rem 1.375rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq-card__head {
    padding: 1rem 1.875rem 1rem 0.5rem;
  }
}

.p-faq-card__head::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-faq-card__head::before {
    width: 1rem;
    height: 1px;
    right: 0.5625rem;
  }
}

.p-faq-card__head::after {
  content: "";
  width: 1px;
  height: 1rem;
  background: #333;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-faq-card__head::after {
    width: 1px;
    height: 1rem;
    right: 1.0625rem;
  }
}

.p-faq-card__head.active::after {
  display: none;
}

.p-faq-card__title {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-faq-card__title {
    font-size: 0.875rem;
  }
}

.p-faq-card__body {
  padding: 0 1.875rem 1.75rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq-card__body {
    padding: 0 1.875rem 0.9375rem 0.5rem;
  }
}

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

.p-flow-card01 {
  height: 100%;
  padding: 2.625rem 1.625rem 3.125rem;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-flow-card01 {
    padding: 1.5rem 1rem 2rem;
  }
}

.p-flow-card01__title--sub {
  display: block;
  font-size: 1rem;
  color: #1f874a;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-flow-card01__title--sub {
    font-size: 0.8125rem;
  }
}

.p-flow-card01__title--main {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-flow-card01__title--main {
    font-size: 1.125rem;
  }
}

.p-flow-card01__body {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow-card01__body {
    margin-top: 1.5rem;
  }
}

.p-flow-card01__text {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-flow-card01__text {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

.p-flow-card02 {
  padding: 2.5rem 3rem 4.375rem 2.75rem;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow-card02 {
    padding: 1.5rem 1rem 2rem 1rem;
  }
}

.p-flow-card02::after {
  content: "";
  width: 1.0625rem;
  height: 0.625rem;
  background: #fff;
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.p-promotion-flow__box:last-child .p-flow-card02::after {
  display: none;
}

.p-flow-card02__number {
  display: block;
  font-size: 1rem;
  color: #1f874a;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-flow-card02__number {
    font-size: 1rem;
  }
}

.p-flow-card02__main {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-flow-card02__main {
    margin-top: 0.3125rem;
    font-size: 1.125rem;
  }
}

.p-flow-card02__text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-flow-card02__text {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}

.p-footer {
  padding-top: 7.5rem;
  background: #333;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.5rem;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3.5rem;
  }
}

.p-footer__logo {
  width: 11.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 11.5625rem;
    margin-inline: auto;
  }
}

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

.p-footer__nav {
  width: 28.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}

.p-footer__navList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5625rem;
}

.p-footer__navLink {
  display: block;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-footer__navLink {
    font-size: 1rem;
  }
}

.p-footer__navList--subList {
  margin-top: 0.3125rem;
}

.p-footer__navList--subItem {
  padding-left: 1.125rem;
  position: relative;
}

.p-footer__navList--subItem::before {
  content: "";
  width: 0.5rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-footer__navList--subLink {
  font-size: 0.875rem;
  color: #fff;
  line-height: 2.2857142857;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__navList--subLink {
    font-size: 0.8125rem;
  }
}

.p-footer__body {
  margin-top: 13.25rem;
  padding: 0.625rem 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__body {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-footer__subList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.p-footer__subLink {
  display: block;
  font-size: max(10px, 0.75rem);
  color: #939393;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__subLink {
    font-size: 0.75rem;
  }
}

.p-footer__copy {
  font-size: max(10px, 0.75rem);
  color: #939393;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.75rem;
    text-align: center;
  }
}

.p-form__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  border-top: 1px solid #ccc;
}

.p-form__item {
  padding: 3rem 2.5rem 2.8125rem 2.1875rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    padding: 2rem 1.25rem 2rem;
  }
}

.p-form__item dl {
  display: grid;
  grid-template-columns: 25.9459459459% 71.3513513514%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__item dl {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-form__head {
  width: 100%;
  margin-top: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-form__head {
    margin-top: 0;
  }
}

.form_profession .p-form__head {
  margin-top: 0;
}

.p-form__head__title {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__head__title {
    font-size: 1rem;
  }
}

.p-form__head__title p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 0.8125rem;
  -moz-column-gap: 0.8125rem;
  column-gap: 0.8125rem;
  row-gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-form__head__title p {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-form__head__title span.required,
.p-form__head__title span.any {
  width: 3.6875rem;
  padding: 0.25rem 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.p-form__head__title span.required {
  color: #fff;
  background: #1f874a;
}

.p-form__head__title span.any {
  color: #54ba9f;
  background: #fff;
  border: 1px solid #54ba9f;
}

.p-form__body {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-form__body {
    margin-top: 1rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-form__privacy {
  margin-top: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.1875rem;
  -moz-column-gap: 0.1875rem;
  column-gap: 0.1875rem;
}

.p-form__privacy .wpcf7-list-item {
  margin: 0 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__privacy .wpcf7-list-item {
    margin: 0;
  }
}

.p-form__privacy .p-form__privacy--text {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__privacy .p-form__privacy--text {
    font-size: 1rem;
  }
}

.p-form__privacy .p-form__privacy--text a {
  display: inline-block;
  padding-bottom: 0.3125rem;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#ccc),
      to(#ccc)
    )
    100% 100%/0 1px no-repeat;
  background: linear-gradient(#ccc, #ccc) 100% 100%/0 1px no-repeat;
  background-size: 100% 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__privacy .p-form__privacy--text a {
    padding-bottom: 0.1875rem;
  }
}

.p-form__body .mw_wp_form .error {
  margin-top: 0.3125rem;
}

/******************* form base *******************/
.p-form label {
  cursor: pointer;
}

.p-form input,
.p-form textarea,
.p-form select {
  width: 100%;
  height: 3.125rem;
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-form input,
  .p-form textarea,
  .p-form select {
    padding: 0.625rem 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-form ::-webkit-input-placeholder {
  color: #bbbbbb;
}

.p-form ::-moz-placeholder {
  color: #bbbbbb;
}

.p-form ::-ms-input-placeholder {
  color: #bbbbbb;
}

.p-form ::placeholder {
  color: #bbbbbb;
}

.p-form input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin-right: 0.25rem;
  margin-left: 0;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  vertical-align: middle;
}

.p-form input.required,
.p-form textarea.required,
.p-form select.required {
  background-color: #f9d5d5;
}

.p-form .wpcf7-checkbox {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  row-gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-checkbox {
    margin-top: 0.625rem;
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
    row-gap: 1.25rem;
  }
}

.p-form .wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-checkbox .wpcf7-list-item {
    font-size: 0.9375rem;
  }
}

.p-form textarea {
  height: 18.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-form textarea {
    height: 9.375rem;
  }
}

.p-form input.form_name,
.p-form input.form_kana {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-form input.form_name,
  .p-form input.form_kana {
    width: 100%;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-form input.form_company,
  .p-form input.form_tel,
  .p-form input.form_mail {
    width: 100%;
  }
}

.p-form select {
  width: 18.125rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
  background: #fff url(../images/common/arrow_select.svg) 97% center no-repeat;
  background-size: 1.375rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form select {
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    background: #fff url(../images/common/arrow_select.svg) 96% center no-repeat;
    background-size: 1rem;
  }
}

.mw_wp_form .error {
  width: 100%;
}

/******************* END./form base *******************/
.p-form__head__text {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__head__text {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.08em;
  }
}

.p-form__detail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-form__detail {
    display: block;
  }
}

.p-form__detail:nth-of-type(n + 2) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__detail:nth-of-type(n + 2) {
    margin-top: 1.25rem;
  }
}

.form_profession .p-form__detail {
  width: 90%;
}

.p-form__detail p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__detail p {
    font-size: 0.875rem;
  }
}

.p-form--confirm .p-form__detail p {
  margin-top: 0.625rem;
}

.p-form__text {
  width: 100%;
  margin-top: 0.4375rem;
  margin-left: 0.125rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__text {
    font-size: 0.875rem;
  }
}

.p-form__text::before {
  content: "※";
  display: inline-block;
  font-size: 1rem;
  color: #ff0000;
  line-height: 1.875;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__text::before {
    font-size: 0.875rem;
  }
}

.p-form__detail_name {
  width: 22.0625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.005em;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-form__detail_name {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-form__detail_name:nth-child(n + 2) {
    margin-top: 0.625rem;
  }
}

.form-name__title {
  margin-right: auto;
  font-size: 1rem;
  color: #333;
  line-height: 2;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 767px) {
  .form-name__title {
    font-size: 0.875rem;
  }
}

.p-form__item.form_name .form-name__title {
  margin-right: 2.1875rem;
}

.p-form__item.form_kana .form-name__title {
  margin-right: 1.25rem;
}

.p-form__btn {
  width: 100%;
  margin-top: 6.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-form__btn--send,
.p-form__btn--prev {
  width: 100%;
  max-width: 18.75rem;
  height: 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-form__btn--send,
  .p-form__btn--prev {
    max-width: 28.125rem;
    margin-inline: auto;
  }
}

.p-form__btn--send:hover,
.p-form__btn--prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-form__btn--send:hover,
  .p-form__btn--prev:hover {
    opacity: 1;
  }
}

.p-form__btn--send {
  border: 1px solid #1f874a;
  background: #1f874a;
  border-radius: 28px;
}

.p-form--confirm .p-form__btn--send,
.p-form--confirm .p-form__btn--prev {
  width: 80%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form--confirm .p-form__btn--send,
  .p-form--confirm .p-form__btn--prev {
    width: 100%;
  }
}

.p-form__btn input {
  height: 3.75rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  font-weight: bold;
  border-radius: 28px;
  background: #1f874a;
  border: 1px solid #1f874a;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-form__btn input {
    height: 3.75rem;
    font-size: 0.9375rem;
  }
}

.p-form__btn--prev input {
  display: block !important;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.p-form__btn--send input:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-form__btn--send input:hover {
    opacity: 1;
  }
}

.p-form__btn--prev input:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-form__btn--prev input:hover {
    opacity: 1;
  }
}

.p-gray-card {
  padding: 2rem 3.125rem 2.125rem 2.5rem;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-gray-card {
    padding: 2rem 1.5rem 2.125rem;
  }
}

.p-gray-card__title {
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-gray-card__title {
    font-size: 1.125rem;
  }
}

.p-gray-card__list {
  margin-top: 0.8125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-gray-card__item {
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-gray-card__item {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}

.p-gray-card__item::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 0.875rem;
  left: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-gray-card__item::before {
    top: 0.6875rem;
    left: 0;
  }
}

.p-header {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-header__inner {
  height: 4.9375rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 3.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header__logo {
  width: 21.25rem;
  width: 31.3573883162%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: auto;
    position: relative;
    z-index: 50;
  }
}

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

.p-header__logo--link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-header__logo--link:hover {
    opacity: 1;
  }
}

.p-header__logo--img {
  margin-right: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo--img {
    width: 8.75rem;
    margin-right: 0.25rem;
  }
}

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

.p-header__logo--text {
  display: block;
  font-size: 0.875rem;
  color: #1f874a;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-header__logo--text {
    font-size: 0.75rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    position: relative;
    z-index: 50;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger .line {
    width: 25px;
    height: 2px;
    display: block;
    background-color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger .line:nth-child(2),
  .p-header__hamburger .line:nth-child(3) {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.active .line:nth-child(1) {
    -webkit-transform: translateY(0.6875rem) rotate(45deg);
    transform: translateY(0.6875rem) rotate(45deg);
  }
}

.p-header__hamburger.active .line:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.active .line:nth-child(3) {
    -webkit-transform: translateY(-0.625rem) rotate(-45deg);
    transform: translateY(-0.625rem) rotate(-45deg);
  }
}

.p-header__nav {
  width: 67.9553264605%;
  max-width: 49.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    width: 100%;
    height: 100vh;
    padding-bottom: 7.5rem;
    padding-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: -120%;
    z-index: 10;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav.active {
    right: 0;
  }
}

.p-header__navList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__navList {
    width: 100%;
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.p-header__navItem {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__navItem {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header__navItem > a,
.p-header__navItem > span {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-header__navItem > a,
  .p-header__navItem > span {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #333;
  }
}

.p-header__navText {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__navText {
    display: block;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    border-bottom: 1px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-header__navItem:first-child .p-header__navText {
    border-top: 1px solid #fff;
  }
}

.p-header__navText.js-hover {
  padding-right: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-header__navText.js-hover {
    padding-right: 1rem;
  }
}

.p-header__navText.js-hover::after {
  content: "";
  width: 0.25rem;
  height: 0.5rem;
  background: #333;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 40%;
  right: 0;
  transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-header__navText.js-hover::after {
    right: 1.25rem;
  }
}

.p-header__contact {
  margin-left: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    width: 100%;
    margin-top: 2.5rem;
    margin-left: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header__contact a {
  width: 9.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: #1f874a;
  border-radius: 24px;
  border: 1px solid #1f874a;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__contact a {
    width: 18.75rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.9375rem;
  }
}

.p-header__contact a:hover {
  color: #1f874a;
}
@media screen and (max-width: 767px) {
  .p-header__contact a:hover {
    color: #fff;
  }
}

.p-header__contact a::after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}

.p-header__contact a:hover::after {
  width: 100%;
  border: 1px solid #1f874a;
}
@media screen and (max-width: 767px) {
  .p-header__contact a:hover::after {
    width: 0;
    background: #1f874a;
  }
}

.p-header__dropdown {
  display: none;
  width: 13.75rem;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 1.5625rem;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__dropdown {
    width: 100%;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    top: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-header__dropdownItem:nth-child(n + 2) {
    border-top: 1px solid #fff;
  }
}

.p-header__dropdownItem a {
  display: block;
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__dropdownItem a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #fff;
    background: #1f874a;
  }
}

.p-header__dropdownItem a:hover {
  color: #fff;
  background: #1f874a;
}
@media screen and (max-width: 767px) {
  .p-header__dropdownItem a:hover {
    color: #333;
    background: #fff;
  }
}

.p-law {
  padding-top: 2.9375rem;
  padding-bottom: 24.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-law {
    padding-top: 3rem;
    padding-bottom: 12.5rem;
  }
}

.p-law::after {
  content: "";
  width: 38.1875rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 3.4375rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-law::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-law__inner {
  max-width: 65.625rem;
}

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

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

.p-law__item {
  padding-right: 1.875rem;
  padding-left: 2.1875rem;
  padding-bottom: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-law__item {
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-law__head {
  width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-law__head {
    width: auto;
  }
}

.p-law__subtitle {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-law__subtitle {
    font-size: 1rem;
  }
}

.p-law__body {
  width: 41.625rem;
  margin-top: 0.3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-law__body {
    width: auto;
    margin-top: 1rem;
    gap: 0.75rem;
  }
}

.p-law__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-law__wrap {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

.p-law__term {
  width: 7rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-law__term {
    font-size: 0.875rem;
  }
}

.p-law__desc {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-law__desc {
    width: calc(100% - 8rem);
    font-size: 0.875rem;
  }
}

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

.p-line-case {
  position: relative;
}

.p-line-case__bg {
  background: transparent url(../images/service/line/bg_case.png) no-repeat
    center center/cover;
}

.p-line-case__inner {
  padding-top: 3.6875rem;
  padding-bottom: 3.75rem;
  position: relative;
}
.p-line-case__title {
  font-size: 1.5rem;
  color: #1f874a;
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-line-case__title {
    font-size: 1.25rem;
  }
}

.p-line-case__wrap {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-line-case__wrap {
    margin-top: 2rem;
    row-gap: 2.5rem;
  }
}

.p-line-case__btn {
  width: 18.75rem;
  margin-inline: auto;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-line-case__btn {
    margin-top: 2.5rem;
  }
}

.p-line-faq {
  padding-top: 7.5rem;
  padding-bottom: 21.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-faq {
    padding-top: 4rem;
    padding-bottom: 8.75rem;
  }
}

.p-line-faq__bg::after {
  content: "";
  width: 30.125rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_right04.svg)
    no-repeat center center/100%;
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-faq__bg::after {
    width: 15.0625rem;
    height: 9.5rem;
    bottom: 0.5rem;
  }
}

.p-line-faq__inner {
  position: relative;
}

.p-line-faq__title {
  text-align: center;
}

.p-line-faq__list {
  margin-top: 4.375rem;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-line-faq__list {
    margin-top: 3rem;
  }
}

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

.p-line-flow {
  padding-top: 4.75rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-flow {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.p-line-flow__bg::after {
  content: "";
  width: 42.75rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_left03.svg)
    no-repeat center center/100%;
  position: absolute;
  bottom: -9.5rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-flow__bg::after {
    width: 21.375rem;
    height: 9.5rem;
    bottom: -4rem;
  }
}

.p-line-flow__inner {
  position: relative;
}

.p-line-support__title {
  text-align: center;
}

.p-line-flow__wrap {
  margin-top: 5.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  row-gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-line-flow__wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
}

.p-line-flow__box {
  position: relative;
}

.p-line-flow__box::before {
  content: "";
  width: 0.625rem;
  height: 1.0625rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: -0.3125rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-line-flow__box:last-child::before {
  display: none;
}

.p-line-flow__box::after {
  content: "";
  width: 2.5rem;
  height: 1.9375rem;
  background: transparent url(../images/service/arriw_flow_right.svg) no-repeat
    center center/100%;
  position: absolute;
  top: 50%;
  right: -1.875rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .p-line-flow__box::after {
    width: 1.625rem;
    height: 1.3125rem;
    right: -1rem;
  }
}

.p-line-flow__box:last-child::after {
  display: none;
}

.p-line-lstep {
  padding-top: 8.75rem;
  padding-bottom: 4.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-lstep {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
}

.p-line-lstep__bg::before {
  content: "";
  width: 31.5rem;
  height: 19rem;
  background: transparent url(../images/service/promotion/bg_wave_right02.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -10.125rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-lstep__bg::before {
    width: 15.75rem;
    height: 9.5rem;
    top: -6rem;
  }
}

.p-line-lstep__inner {
  position: relative;
}

.p-line-lstep__title {
  text-align: center;
}

.p-line-lstep__read {
  margin-top: 2.1875rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-lstep__read {
    font-size: 0.875rem;
  }
}

.p-line-lstep__wrap {
  margin-top: 4.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  row-gap: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-line-lstep__wrap {
    margin-top: 2rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}

.p-line-media {
  padding-top: 11.25rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-media {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.p-line-media__bg {
  position: relative;
}

.p-line-media__bg::before {
  content: "";
  width: 35.5rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_left02.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -12.1875rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-media__bg::before {
    width: 17.75rem;
    height: 9.5rem;
    top: -6.25rem;
  }
}

.p-line-media__title {
  text-align: center;
}

.p-line-media__read {
  margin-top: 2.125rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-media__read {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-line-media__wrap {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-line-media__wrap {
    margin-top: 2rem;
    row-gap: 2.5rem;
  }
}

.p-line-operation {
  padding-top: 5.875rem;
  padding-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-operation {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
}

.p-line-operation__bg::after {
  content: "";
  width: 33rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_left01.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -3.875rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-operation__bg::after {
    width: 16.5rem;
    height: 9.5rem;
    top: -3rem;
  }
}

.p-line-operation__inner {
  position: relative;
}

.p-line-operation__title .c-title03__sub {
  margin-top: 0.875rem;
}

.p-line-operation__read {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-operation__read {
    font-size: 0.875rem;
  }
}

.p-line-operation__wrap {
  margin-top: 4.6875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .p-line-operation__wrap {
    margin-top: 2.5rem;
    row-gap: 4rem;
  }
}

.p-line-service {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-service {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}

.p-line-service__bg::before {
  content: "";
  width: 42.75rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_right01.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -16.375rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-service__bg::before {
    width: 21.375rem;
    height: 9.5rem;
    top: -7rem;
  }
}

.p-line-service__inner {
  position: relative;
}

.p-line-service__title {
  text-align: center;
}

.p-line-service__read {
  margin-top: 2.75rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-service__read {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

.p-line-service__wrap {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}

.p-line-service__step {
  position: relative;
}

.p-line-service__step:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 23px solid #cccccc;
  border-bottom: 0;
  position: absolute;
  bottom: -0.875rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.p-line-service__step--last {
  padding: 0.625rem 0 1.0625rem;
  background: #f7f7f7;
}

.p-line-service__step--text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-service__step--text {
    font-size: 0.875rem;
  }
}

.p-line-support {
  padding-top: 11.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-line-support {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.p-line-support__bg::after {
  content: "";
  width: 29rem;
  height: 19rem;
  background: transparent url(../images/service/line/bg_wave_right03.svg)
    no-repeat center center/100%;
  position: absolute;
  bottom: -4.375rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-line-support__bg::after {
    width: 14.5rem;
    height: 9.5rem;
    bottom: -2rem;
  }
}

.p-line-support__inner {
  position: relative;
}

.p-line-support__title {
  text-align: center;
}

.p-line-support__read {
  margin-top: 2.25rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-line-support__read {
    font-size: 0.875rem;
  }
}

.p-line-support__wrap {
  margin-top: 3.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-line-support__wrap {
    margin-top: 3rem;
    row-gap: 3.5rem;
  }
}

.p-line-support__subTitle {
  padding: 0.5625rem 1.75rem 0.625rem;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  font-weight: bold;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-line-support__subTitle {
    padding: 0.5625rem 1.5rem 0.625rem;
    font-size: 1.125rem;
  }
}

.p-line-support__list {
  margin-top: 1.8125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  row-gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-line-support__list {
    margin-top: 1.5rem;
  }
}

.p-link-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.25rem;
}

.p-link-group__title {
  font-size: 0.875rem;
  color: #1f874a;
  line-height: 1.8571428571;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-link-group__title {
    font-size: 0.8125rem;
  }
}

.p-link-group__list {
  margin-top: 0.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-link-group__list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

.p-link-group__item {
  padding-left: 0.6875rem;
  position: relative;
}

.p-link-group__item::before {
  content: "";
  width: 0.3125rem;
  height: 0.5rem;
  background: #333;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 0.3125rem;
  left: 0;
  z-index: 1;
}

.p-link-group__item.js-link::before {
  background: #1f874a;
}

.p-link-group__item a {
  display: block;
  font-size: max(10px, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-link-group__item a {
    font-size: 0.75rem;
  }
}

.p-link-group__item.js-link a {
  color: #1f874a;
}

.p-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-list01 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 0.625rem;
  }
}

.p-list01__date {
  margin-right: 1.3125rem;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-list01__date {
    font-size: 0.875rem;
  }
}

.p-list01__cate {
  margin-right: 3.8125rem;
}

.p-list01__title {
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-list01__title {
    width: 100%;
    margin-top: 0;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mv {
    height: 30rem;
  }
}

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

.p-mv__swiper {
  width: 100%;
  height: 100%;
}

.p-mv__img {
  height: 100%;
}

.p-mv__img img {
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__img img {
    height: 100%;
  }
}

.p-mv__body {
  width: 100%;
  padding-bottom: 5.625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    padding-bottom: 3.5rem;
  }
}

.p-mv__read {
  font-size: 3.125rem;
  line-height: 1.4;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-mv__read {
    font-size: 1.75rem;
  }
}

.p-mv__text {
  margin-top: 1.625rem;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 1.25rem;
  }
}

.p-news-article p {
  margin-bottom: 3.625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-article p {
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }
}

.p-news-article figure {
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-article figure {
    margin-bottom: 2rem;
  }
}

.p-news-article figure img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-news-single {
  padding-top: 3.625rem;
  padding-bottom: 20.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-single {
    padding-top: 2.5rem;
    padding-bottom: 12.5rem;
  }
}

.p-news-single::after {
  content: "";
  width: 38.625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 6.25rem;
  right: 0.3125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news-single::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-news-single__inner {
  max-width: 65.625rem;
}

.p-news-single__head {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}

.p-news-single__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.4375rem;
  -moz-column-gap: 1.4375rem;
  column-gap: 1.4375rem;
}

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

.p-news-single__title {
  margin-top: 0.9375rem;
  font-size: 2.125rem;
  line-height: 1.7647058824;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.5rem;
  }
}

.p-news-single__body {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__body {
    padding-top: 1.5rem;
  }
}

.p-news-single__top {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-news-single__top {
    padding-bottom: 1rem;
  }
}

.p-news-single__btn {
  margin-top: 3.8125rem;
  width: 18.75rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-news-single__btn {
    margin-top: 3rem;
    margin-inline: auto;
  }
}

.p-news {
  padding-top: 3.4375rem;
  padding-bottom: 23.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 2.5rem;
    padding-bottom: 12.5rem;
  }
}

.p-news::after {
  content: "";
  width: 38.625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 6.6875rem;
  right: 0.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-news__inner {
  max-width: 65.625rem;
}

.p-news__item {
  padding-top: 1.625rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #e4e4e4;
}

.p-news__item .p-list01__title {
  margin-top: -0.125rem;
  font-size: 1rem;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-news__item .p-list01__title {
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.p-news__pagination {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__pagination {
    margin-top: 4rem;
  }
}

.p-notfound {
  padding-top: 3.4375rem;
  padding-bottom: 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-notfound {
    padding-top: 2.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-notfound__inner {
  max-width: 65.625rem;
}

.p-notfound__read {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-notfound__read {
    font-size: 1.125rem;
  }
}

.p-notfound__btn {
  margin-top: 7.5rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-notfound__btn {
    margin-top: 5rem;
  }
}

.p-officer {
  padding-top: 1.25rem;
  padding-bottom: 24.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-officer {
    padding-bottom: 11.25rem;
  }
}

.p-officer::after {
  content: "";
  width: 36.875rem;
  height: 19rem;
  background: transparent url(../images/common/bg_wave_left.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 2rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-officer::after {
    width: 18.4375rem;
    height: 9.375rem;
    bottom: 0;
  }
}

.p-officer__inner {
  max-width: 65.625rem;
}

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

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

.p-operation__title {
  padding: 0.65625rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  background: #f7f7f7;
}

.p-operation__title--sub {
  font-size: 1.5rem;
  color: #1f874a;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-operation__title--sub {
    font-size: 1.25rem;
  }
}

.p-operation__title--main {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-operation__title--main {
    font-size: 1.125rem;
  }
}

.p-operation__read {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-operation__read {
    font-size: 0.875rem;
  }
}

.p-operation__wrap {
  margin-top: 2rem;
  display: grid;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-operation__wrap {
    margin-top: 1.5rem;
  }
}

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

.p-operation__wrap--four {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-operation__wrap--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-operation__box {
  padding: 0.9375rem 0.75rem 0.9375rem 1.125rem;
  background: #fff;
  -webkit-box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
  box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
}
@media screen and (max-width: 767px) {
  .p-operation__box {
    padding: 1rem 0.5rem 1rem;
  }
}

.p-operation__box--read {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-operation__box--read {
    font-size: 0.875rem;
  }
}

.p-operation__box--wrap {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-operation__box--text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-operation__box--text {
    font-size: 0.8125rem;
  }
}

.p-operation__box--list {
  margin-top: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-operation__box--list {
    margin-top: 0.5rem;
  }
}

.p-operation__box--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-operation__box--list-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1.0625rem;
  -moz-column-gap: 1.0625rem;
  column-gap: 1.0625rem;
}

.p-operation__box--item {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-operation__box--item {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

.p-pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.p-pagination .current,
.p-pagination .page,
.p-pagination a {
  width: 2.5rem;
  margin: 0;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  font-size: 1.25rem;
  color: #424242;
  line-height: 1;
  font-weight: 500;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-pagination .current,
  .p-pagination .page,
  .p-pagination a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-pagination .current {
  color: #fff;
  background: #1f874a;
  border: 1px solid #1f874a;
}

.p-pagination .wp-pagenavi span.current {
  background: #1f874a;
  border: none;
}

.p-pagination .page {
  color: #333;
}

.p-pagination .previouspostslink,
.p-pagination .nextpostslink {
  border: 1px solid #1f874a;
  background: transparent;
}

.p-pagination a img {
  height: auto;
}

.p-pagination .previouspostslink img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.p-pagination .wp-pagenavi span.pages {
  width: 3.75rem;
  height: 2.5rem;
  margin-right: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-pagination .wp-pagenavi span.pages {
    width: 5rem;
    height: 2.5rem;
    margin-right: 2.34375rem;
    font-size: max(10px, 0.875rem);
  }
}

.p-pagination .wp-pagenavi span.extend {
  width: 3rem;
  margin: 0;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  font-size: 1rem;
  color: #424242;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background: #fff;
  border: 1px solid #878787;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-pagination .wp-pagenavi span.extend {
    width: 2.5rem;
    height: 2.5rem;
    font-size: max(10px, 0.875rem);
  }
}

.p-pagination .wp-pagenavi a.first,
.p-pagination .wp-pagenavi a.last {
  width: 4.25rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-pagination .wp-pagenavi a.first,
  .p-pagination .wp-pagenavi a.last {
    width: 5rem;
    height: 2.5rem;
    font-size: max(10px, 0.875rem);
  }
}

.p-privacy {
  padding-top: 3.1875rem;
  padding-bottom: 19.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-top: 3rem;
    padding-bottom: 10rem;
  }
}

.p-privacy::after {
  content: "";
  width: 38.1875rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 3.4375rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-privacy::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-privacy__inner {
  max-width: 65.625rem;
}

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

.p-privacy__item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
}

.p-privacy__title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 1.125rem;
  }
}

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

.p-promotion-flow {
  padding-top: 10.875rem;
  padding-bottom: 20.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-promotion-flow {
    padding-top: 3.75rem;
    padding-bottom: 10rem;
  }
}

.p-promotion-flow__bg::before {
  content: "";
  width: 29rem;
  height: 19rem;
  background: transparent url(../images/service/promotion/bg_wave_right02.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -8.125rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-promotion-flow__bg::before {
    width: 14.5rem;
    height: 9.5rem;
    top: -5rem;
  }
}

.p-promotion-flow__bg::after {
  content: "";
  width: 31.6875rem;
  height: 19rem;
  background: transparent url(../images/service/promotion/bg_wave_left02.svg)
    no-repeat center center/100%;
  position: absolute;
  bottom: 2.0625rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-promotion-flow__bg::after {
    width: 15.8125rem;
    height: 9.5rem;
    bottom: 0;
  }
}

.p-promotion-flow__inner {
  position: relative;
}

.p-promotion-flow__title {
  text-align: center;
}

.p-promotion-flow__wrap {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-promotion-flow__wrap {
    margin-top: 3rem;
    row-gap: 3rem;
  }
}

.p-promotion-flow__box {
  position: relative;
}

.p-promotion-flow__box::after {
  content: "";
  width: 2.0625rem;
  height: 2.625rem;
  background: transparent url(../images/service/arriw_flow_bottom.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .p-promotion-flow__box::after {
    bottom: -1.75rem;
  }
}

.p-promotion-flow__box:last-child::after {
  display: none;
}

.p-promotion-service {
  padding-top: 8.25rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-promotion-service {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.p-promotion-service__bg::before {
  content: "";
  width: 42.625rem;
  height: 19rem;
  background: transparent url(../images/service/promotion/bg_wave_right01.svg)
    no-repeat center center/100%;
  position: absolute;
  top: -11.75rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-promotion-service__bg::before {
    width: 21.3125rem;
    height: 9.5rem;
    top: -5rem;
  }
}

.p-promotion-service__bg::after {
  content: "";
  width: 35.75rem;
  height: 19rem;
  background: transparent url(../images/service/promotion/bg_wave_left01.svg)
    no-repeat center center/100%;
  position: absolute;
  bottom: -13.375rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-promotion-service__bg::after {
    width: 17.875rem;
    height: 9.5rem;
    bottom: -5rem;
  }
}

.p-promotion-service__inner {
  position: relative;
}

.p-promotion-service__title {
  text-align: center;
}

.p-promotion-service__read {
  margin-top: 3.75rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-promotion-service__read {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

.p-promotion-service__wrap {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-promotion-service__wrap {
    margin-top: 2rem;
    row-gap: 2rem;
  }
}

.p-promotion-strengths {
  padding-top: 11.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-promotion-strengths {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.p-promotion-strengths__title {
  text-align: center;
}

.p-promotion-strengths__wrap {
  margin-top: 5.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-promotion-strengths__wrap {
    margin-top: 3rem;
    row-gap: 2.5rem;
  }
}

.p-promotion-strengths__text {
  margin-top: 4.625rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-promotion-strengths__text {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-recommend-work {
  padding-bottom: 9.25rem;
}
@media screen and (max-width: 767px) {
  .p-recommend-work {
    padding-bottom: 3.5rem;
  }
}

.p-recommend-work__inner {
  max-width: 65.625rem;
}

.p-recommend-work__title {
  text-align: center;
}

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

.p-service-business {
  padding-top: 3.125rem;
  padding-bottom: 5.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-business {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }
}

.p-service-business::after {
  content: "";
  width: 44.25rem;
  height: 19rem;
  background: transparent url(../images/service/bg_wave_right01.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-business::after {
    width: 21.875rem;
    height: 9.375rem;
  }
}

.p-service-business__inner {
  max-width: 65.625rem;
}

.p-service-business__body {
  width: 36.875rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__body {
    width: auto;
    margin-top: 1.5rem;
  }
}

.p-service-business__read {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-business__read {
    font-size: 0.875rem;
  }
}

.p-service-card__head {
  width: 14.375rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-card__head {
    width: 11.25rem;
  }
}

.p-service-card__en img {
  width: 100%;
  height: auto;
  -webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.p-service-card__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.p-service-card__img img {
  height: auto;
}

.p-service-card__body {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-service-card__body {
    margin-top: 0.5rem;
  }
}

.p-service-card__title--main {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service-card__title--main {
    font-size: 1.25rem;
  }
}

.p-service-card__title--sub {
  font-size: 1rem;
  color: #8f8f8f;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-card__title--sub {
    font-size: 0.875rem;
  }
}

.p-service-card__list {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}
@media screen and (max-width: 767px) {
  .p-service-card__list {
    margin-top: 1.5rem;
    gap: 0.625rem;
  }
}

.p-service-card__item {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-card__item {
    font-size: 0.875rem;
  }
}

.p-service-card__item::before {
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: counter(number) " "; /* 表示形式を指定 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.1875rem;
  height: 2.1875rem;
  margin-right: 0.6875rem;
  border: 1px solid #333;
  border-radius: 50%;
}

.p-service-card__text {
  margin-top: 3.125rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-card__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-service-card__btn {
  margin-top: 2.75rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service-card__btn {
    margin-top: 1.5rem;
  }
}

.p-service-card__btn a {
  padding: 0.9375rem 3.125rem 0.9375rem 0.75rem;
}

.p-service-strengths {
  padding-top: 12.8125rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-strengths {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-service-strengths::after {
  content: "";
  width: 37rem;
  height: 19rem;
  background: transparent url(../images/service/bg_wave_left01.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 10.25rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-strengths::after {
    width: 21.875rem;
    height: 9.375rem;
    bottom: 63%;
  }
}

.p-service-strengths__inner {
  max-width: 65.625rem;
}

.p-service-strengths__title {
  text-align: center;
}

.p-service-strengths__read {
  margin-top: 2.3125rem;
  font-size: 1rem;
  text-align: center;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-strengths__read {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

.p-service-strengths__list {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.9375rem;
  -moz-column-gap: 0.9375rem;
  column-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-service-strengths__list {
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
}

.p-service-strengths .p-card02__head {
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

.p-service-strengths .p-card02__body {
  margin-top: 1rem;
  padding: 0 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-service-strengths .p-card02__body {
    margin-top: 0.625rem;
    padding: 0 1rem;
  }
}

.p-service-strengths .p-card02__text {
  line-height: 2.25;
}

.p-service {
  padding-top: 8.75rem;
  padding-bottom: 15.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

.p-service::after {
  content: "";
  width: 38.625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 2.1875rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service::after {
    width: 19.3125rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-service__inner {
  max-width: 59.375rem;
}

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

.p-service__wrap {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 6.875rem;
  -moz-column-gap: 6.875rem;
  column-gap: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__wrap {
    margin-top: 3rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
  }
}

.p-side {
  padding: 1.625rem 0;
  background: #f7f7f7;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.3125rem;
}

.p-side__head {
  padding: 0 1.125rem 0.625rem;
  border-bottom: 1px solid #e9e9e9;
}

.p-side__title {
  font-size: 1.125rem;
  color: #1f874a;
  line-height: 1.6666666667;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-side__title {
    font-size: 1rem;
  }
}

.p-side__body {
  padding: 1.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-side__body {
    padding: 0.9375rem 0;
  }
}

.p-side__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}

.p-side__list--cate {
  padding-right: 2.25rem;
  padding-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-side__list--cate {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.p-side__list a {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-side__list a {
    font-size: 0.875rem;
  }
}

.p-side__box {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-side__box {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.p-side__box:nth-child(n + 2) {
  margin-top: 1.25rem;
}

.p-side__box--head {
  position: relative;
  cursor: pointer;
}

.p-side__box--head::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #1f874a;
  border-bottom: 1px solid #1f874a;
  position: absolute;
  top: 0.5rem;
  right: 0.9375rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.p-side__box--head.active::after {
  position: absolute;
  top: 0.75rem;
  right: 0.9375rem;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

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

.p-side__box--body {
  padding-top: 0.625rem;
}

.p-side__subList {
  margin-left: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.9375rem;
}

.p-side__subItem {
  position: relative;
}

.p-side__subItem::before {
  content: "-";
  display: inline-block;
  font-size: 0.875rem;
  color: #332a2a;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-side__subItem::before {
    font-size: 0.8125rem;
  }
}

.p-side__subItem a {
  display: inline-block;
  font-size: 0.875rem;
  color: #332a2a;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-side__subItem a {
    font-size: 0.8125rem;
  }
}

.p-step-card {
  min-height: 7.5rem;
  padding: 1.5625rem 1.5625rem 1.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
  box-shadow: 0 0 21px rgba(206, 206, 206, 0.36);
}
@media screen and (max-width: 767px) {
  .p-step-card {
    min-height: auto;
    padding: 1.5rem 1.25rem 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-step-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-step-card__inner {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
}

.p-step-card__step {
  margin-right: 1.5625rem;
  font-size: 1.125rem;
  color: #1f874a;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-step-card__step {
    font-size: 1rem;
  }
}

.p-step-card__title {
  margin-right: 3.125rem;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-step-card__title {
    margin-right: 0;
    font-size: 1.125rem;
  }
}

.p-step-card__icon {
  margin-right: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-step-card__icon {
    width: 100%;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-step-card__icon img {
  height: auto;
}

.p-step-card__list {
  width: 25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-step-card__list {
    width: auto;
    max-width: 28.125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

.p-step-card__item {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-step-card__item {
    font-size: 0.875rem;
  }
}

.p-sub-beginning {
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning {
    padding-bottom: 5rem;
  }
}

.p-sub-beginning__title {
  font-size: 2.25rem;
  line-height: 1.3333333333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__title {
    font-size: 1.875rem;
  }
}

.p-sub-beginning__read {
  margin-top: 0.9375rem;
  font-size: 1.5rem;
  color: #1f874a;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__read {
    font-size: 1.25rem;
  }
}

.p-sub-beginning__body {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__body {
    margin-top: 1.5rem;
  }
}

.p-sub-beginning__text {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__text {
    font-size: 0.875rem;
  }
}

.p-sub-beginning__text:nth-child(n + 2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__text:nth-child(n + 2) {
    margin-top: 1rem;
  }
}

.p-sub-beginning__list {
  margin-top: 0.875rem;
}

.p-sub-beginning__item {
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-beginning__item {
    font-size: 0.875rem;
  }
}

.p-sub-beginning__item::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: #cccccc;
  border-radius: 50%;
  position: absolute;
  top: 0.8125rem;
  left: 0.4375rem;
}

.p-sub-mv {
  padding-top: 11.25rem;
  background: transparent url(../images/common/bg_sub-mv.png) no-repeat center
    bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    padding-top: 7.5rem;
  }
}

.p-sub-mv__inner {
  max-width: 65.625rem;
}

.p-sub-mv__body {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__body {
    padding-bottom: 3.5rem;
  }
}

.p-sub-mv__title {
  font-size: 2.625rem;
  text-align: center;
  line-height: 1.1428571429;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title {
    font-size: 2.125rem;
  }
}

.p-top-about {
  padding-top: 7.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-top: 4.5rem;
  }
}

.p-top-about::after {
  content: "";
  width: 33.9375rem;
  height: 10.9375rem;
  background: transparent url(../images/top/bg_about_wave.svg) no-repeat center
    center/100%;
  position: absolute;
  bottom: -3.3125rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-about::after {
    width: 17rem;
    height: 5.5rem;
    bottom: -4.375rem;
  }
}

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

.p-top-about__head {
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__head {
    width: auto;
  }
}

.p-top-about__body {
  margin-top: 2.75rem;
  width: 29.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    margin-top: 1.5rem;
    width: auto;
  }
}

.p-top-about__text {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 0.875rem;
  }
}

.p-top-about__btn {
  margin-top: 3.375rem;
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__btn {
    margin-top: 3rem;
    margin-inline: auto;
  }
}

.p-top-case {
  padding-top: 3.875rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-case {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.p-top-case__title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-case__title .c-title01__main {
    font-size: 1.5rem;
  }
}

.p-top-case__list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
}

.p-top-case__btn {
  margin-top: 3.75rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-case__btn {
    margin-top: 3rem;
  }
}

.p-top-features {
  padding-top: 7rem;
  padding-bottom: 7.5rem;
  background: transparent url(../images/top/bg_features.png) no-repeat center
    center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-features {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.p-top-features__title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-features__title .c-title01__main {
    font-size: 1.625rem;
  }
}

.p-top-features__list {
  margin-top: 3.1875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.p-top-features__btn {
  margin-top: 3.75rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-features__btn {
    margin-top: 3rem;
  }
}

.p-top-news {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-top-news::after {
  content: "";
  width: 33.6875rem;
  height: 18.875rem;
  background: transparent url(../images/top/bg_news_wave.svg) no-repeat center
    center/100%;
  position: absolute;
  bottom: -2.625rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-news::after {
    width: 16.875rem;
    height: 9.4375rem;
    bottom: -1.25rem;
  }
}

.p-top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.625rem;
}

.p-top-news__title {
  font-size: 2.625rem;
  color: #1f874a;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    font-size: 2rem;
  }
}

.p-top-news__btn {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-top: 0.375rem;
  }
}

.p-top-news__btn--link {
  display: inline-block;
  padding-right: 1.125rem;
  font-size: 1rem;
  color: #1f874a;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn--link {
    font-size: 0.875rem;
  }
}

.p-top-news__btn--link::after {
  content: "";
  width: 0.5rem;
  height: 0.75rem;
  background: #1f874a;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
}

.p-top-news__list {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 0.5rem;
  }
}

.p-top-news__item {
  padding: 1.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-top-news__item {
    padding: 1.5rem 0;
  }
}

.p-top-service {
  padding-top: 7.0625rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
}

.p-top-service::after {
  content: "";
  width: 30.375rem;
  height: 14.625rem;
  background: transparent url(../images/top/bg_service_wave.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: -4.75rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-service::after {
    width: 15.1875rem;
    height: 7.3125rem;
    bottom: -2.5rem;
  }
}

.p-top-service__inner {
  max-width: 49.5rem;
}

.p-top-service__title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-service__title .c-title01__main {
    font-size: 1.625rem;
  }
}

.p-top-service__wrap {
  margin-top: 2.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8.5625rem;
  -moz-column-gap: 8.5625rem;
  column-gap: 8.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__wrap {
    grid-template-columns: repeat(1, 18.75rem);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 1.5rem;
  }
}

.p-top-service__btn {
  margin-top: 3.75rem;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn {
    margin-top: 3rem;
  }
}

.p-work-article > h3 {
  margin-top: 5rem;
  margin-bottom: 0.8rem;
  padding: 16px 24px;
  font-size: 1.357rem;
  color: #fff;
  line-height: 1.25;
  font-weight: bold;
  background-color: #323232;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .p-work-article > h3 {
    padding: 14px 24px 18px;
    font-size: 1.05rem;
    line-height: 1.5;
  }
}

.p-work-article > h4 {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #1e8549;
  padding: 10px 6px;
  border-bottom: 3px #1e8549 solid;
}

.p-work-article > h5 {
  color: #1e8549;
  font-size: 1rem;
}

.p-work-article > p {
  margin-top: 1rem;
  margin-bottom: 2.25rem;
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work-article > p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-work-article > figure {
  margin-bottom: rem;
}
@media screen and (max-width: 767px) {
  .p-work-article > figure {
    margin-bottom: 2rem;
  }
}

.p-work-article > figure img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-work-article > .wp-block-preformatted {
  margin-bottom: 4.375rem;
  padding: 1.25rem 1.875rem 1.875rem 1.75rem;
  font-size: 1rem;
  color: #333;
  line-height: 2.25;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "メイリオ", "MS Pゴシック", sans-serif;
  font-weight: 500;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-work-article > .wp-block-preformatted {
    font-size: 0.875rem;
  }
}

.p-work-article #toc_container {
  margin-bottom: 3.5rem;
  padding: 1.25rem 2.5rem 3.5rem;
  background: #f7f7f7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-work-article #toc_container {
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem 2rem;
  }
}

.p-work-article #toc_container.no_bullets {
  width: 100%;
}

.p-work-article .toc_title {
  font-size: 1rem;
  text-align: center;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work-article .toc_title {
    font-size: 0.875rem;
  }
}

.p-work-article .toc_toggle {
  margin-left: 0.75rem;
}

.p-work-article .toc_list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.75rem;
}

.p-work-article .toc_list li a {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work-article .toc_list li a {
    font-size: 0.875rem;
  }
}

.p-work-article .toc_list li a .toc_number {
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-work-article .toc_list li a .toc_number {
    margin-right: 0.1875rem;
  }
}

.p-work-single {
  padding-top: 2.375rem;
  padding-bottom: 10.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-work-single {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.p-work-single::after {
  content: "";
  width: 38.625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 8.25rem;
  right: 0.3125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-work-single::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 4rem;
  }
}

.p-work-single__inner {
  max-width: 65.625rem;
}

.p-work-single__head {
  padding-bottom: 1.6875rem;
  border-bottom: 1px solid #cccccc;
}

.p-work-single__title {
  font-size: 2.125rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-work-single__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-work-single__name {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work-single__name {
    font-size: 0.875rem;
  }
}

.p-work-single__img {
  margin-top: 1rem;
}

.p-work-single__img img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-work-single__list {
  margin-top: 1.0625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5625rem;
}

.p-work-single__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-work-single__term {
  min-width: 3.5rem;
  height: 1.75rem;
  margin-right: 0.9375rem;
  padding: 0.125rem 0.75rem 0.125rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-work-single__term {
    font-size: 0.875rem;
  }
}

.p-work-single__desc {
  font-size: 1rem;
  color: #8f8f8f;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-work-single__desc {
    font-size: 0.875rem;
  }
}

.p-work-single__body {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-work-single__body {
    padding-top: 1.5rem;
  }
}

.p-work-single__top {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-work-single__top {
    padding-bottom: 1rem;
  }
}

.p-work-single__btn {
  margin-top: 4.5rem;
  width: 18.75rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-work-single__btn {
    margin-top: 3rem;
    margin-inline: auto;
  }
}

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

.p-work {
  padding-top: 3.375rem;
  padding-bottom: 19.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-work {
    padding-top: 3.375rem;
    padding-bottom: 11.25rem;
  }
}

.p-work::after {
  content: "";
  width: 38.625rem;
  height: 16.25rem;
  background: transparent url(../images/common/bg_wave_right.svg) no-repeat
    center center/100%;
  position: absolute;
  bottom: 1.5625rem;
  right: 0.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-work::after {
    width: 19.0625rem;
    height: 8.125rem;
    bottom: 1.25rem;
  }
}

.p-work__inner {
  max-width: 65.625rem;
}

.p-work__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 2.0625rem;
  -moz-column-gap: 2.0625rem;
  column-gap: 2.0625rem;
  row-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-work__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-work__cateTitle {
  padding: 0.375rem 0.6875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-work__cateTitle {
    font-size: 0.875rem;
  }
}

.p-work__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2.1875rem;
  -moz-column-gap: 2.1875rem;
  column-gap: 2.1875rem;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-work__cateList {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}

.p-work__cateItem {
  padding-left: 0.875rem;
  position: relative;
}

.p-work__cateItem::before {
  content: "";
  width: 0.375rem;
  height: 0.625rem;
  background: #333;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
}

.p-work__cateItem--active::before {
  background: #1f874a;
}

.p-work__cateItem a {
  display: inline-block;
  padding-bottom: 0.125rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-work__cateItem a {
    font-size: 0.875rem;
  }
}

.p-work__cateItem--active a {
  color: #1f874a;
}

.p-work__cateItem--active a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #1f874a;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-work__body {
  margin-top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-work__body {
    margin-top: 3rem;
  }
}

.p-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-work__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3.75rem;
  }
}

.p-work__pagination {
  margin-top: 8.875rem;
}
@media screen and (max-width: 767px) {
  .p-work__pagination {
    margin-top: 4rem;
  }
}

.u-font-red {
  color: #ff0000;
}

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

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

.p-privacy__date,
.p-privacy__name {
  text-align: right;
}
.p-privacy__list {
  margin-top: 5.3125rem;
}
.p-privacy__item-box {
  border: 1px solid #333;
  padding: 20px;
  h2 {
    text-align: center;
  }
}
.p-privacy__item-address {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}
.p-company__link {
  display: inline-block;
  padding-bottom: 0.3125rem;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#ccc),
      to(#ccc)
    )
    100% 100% / 0 1px no-repeat;
  background: linear-gradient(#ccc, #ccc) 100% 100% / 0 1px no-repeat;
  background-size: 100% 2px;
  position: relative;
}
.p-footer__sns {
  color: white;
  display: flex;
  justify-content: left;
}
.p-card05__item-no {
  font-size: 50px;
}
.p-card05__item-none {
  display: none;
}
.p-card05__item-list {
  margin-top: 1.375rem;
}
.p-about-promise__list-box {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-about-promise__list-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-personal-information__bold {
  font-weight: bold;
}
.p-personal-information__bold span {
  font-weight: 500;
  display: block;
}
.p-personal-information__item {
  gap: 0;
}
.p-personal-information__item p + p {
  padding-left: 31px;
}
.p-personal-information__item-box {
  border: initial;
  padding-bottom: 0;
  gap: 0;
}

.lp_01 img,
.lp_02 img,
.lp_03 img,
.lp_cta img {
  margin: 0 auto;
}

.toku_list {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.toku_list ul {
  display: flex;
  justify-content: flex-end;
}

.toku_list li {
  font-size: 1rem;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .toku_list li {
    font-size: 0.8rem;
  }
}

.p-logo__slider-wrapper {
  overflow: hidden;
  width: 100%;
}
.p-logo__slider {
  display: flex;
  will-change: transform;
}
.p-logo__main-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .p-logo__main-box {
    padding-right: 60px;
  }
}
.p-logo__main-box > li {
  display: flex;
  justify-content: center;
}
.p-logo__main-box > li > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-logo__main-box > li > ul {
    gap: 60px;
  }
}
.p-logo__main-box > li > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
}
.p-logo__main-box > li > ul > li img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.p-logo__main-box > li:nth-child(1) > ul > li:nth-child(1) img {
  max-width: 150px;
}
.p-logo__main-box > li:nth-child(1) > ul > li:nth-child(2) img {
  max-width: 200px;
}
.p-logo__main-box > li:nth-child(1) > ul > li:nth-child(3) img {
  max-width: 180px;
}
.p-logo__main-box > li:nth-child(2) > ul > li:nth-child(1) img {
  max-width: 160px;
}
.p-logo__main-box > li:nth-child(2) > ul > li:nth-child(2) img {
  max-width: 140px;
}
.p-logo__main-box > li:nth-child(2) > ul > li:nth-child(3) {
  max-width: 90px;
}
.p-logo__main-box > li:nth-child(2) > ul > li:nth-child(3) img {
  max-width: 100px;
}
.p-logo__main-box > li:nth-child(2) > ul > li:nth-child(4) img {
  max-width: 120px;
}
.p-logo__main-box > li:nth-child(3) > ul > li:nth-child(1) img {
  max-width: 160px;
}
.p-logo__main-box > li:nth-child(3) > ul > li:nth-child(2) img {
  max-width: 180px;
}
.p-logo__main-box > li:nth-child(3) > ul > li:nth-child(3) {
  max-width: 90px;
}
.p-logo__main-box > li:nth-child(3) > ul > li:nth-child(3) img {
  max-width: 140px;
}
.p-logo__main-box > li:nth-child(3) > ul > li:nth-child(4) img {
  max-width: 110px;
}
.p-logo__list-box {
  gap: 10px !important;
}
@media (min-width: 768px) {
  .p-logo__list-box {
    gap: 60px !important;
  }
}
.p-logo {
  margin-bottom: 7.0625rem;
}

.p-work__achievements-title {
  text-align: center;
}
.p-work__achievements-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.p-work__achievements-img-1 {
  max-width: 90px;
  height: auto;
}
.p-work__achievements-img-2 {
  max-width: 180px;
  height: auto;
}
.p-work__case li {
  padding-left: 20px;
  position: relative;
}
.p-work__case li span {
  position: absolute;
  left: 0;
}
.p-work__case-wrap {
  display: block;
}
@media (min-width: 768px) {
  .p-work__case-wrap {
    display: grid;
  }
}
.p-work__case-title br {
  display: block;
}
@media (min-width: 768px) {
  .p-work__case-title br {
    display: none;
  }
}
.grecaptcha-badge {
	display: none !important;
}

.p-privacy__title-2 {
  font-size: 2.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy__title-2 {
    font-size: 2.125rem;
  }
}

.p-about__profile-img {
  max-width: 322px;
  width: 90%;
  height: auto;
  display: block;
  margin: 1.875rem auto 0;
}
.p-about__profile-name {
  text-align: center;
  margin-top: 1.875rem;
}
.p-about__profile-text {
  text-align: left;
}