@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #333;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

.js-fadein,
.js-fadein-delay {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; /* スムーズに表示 */
}

.simplebar-track {
  width: 0.845625rem;
}

.simplebar-track .simplebar-scrollbar {
  height: 3rem !important;
}
@media screen and (min-width: 768px) {
  .simplebar-track .simplebar-scrollbar {
    height: 3.5rem !important;
  }
}

.simplebar-track.simplebar-vertical {
  width: 0.75rem;
  top: 0.375rem;
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .simplebar-track.simplebar-vertical {
    width: 0.875rem;
  }
}

.simplebar-track {
  background: #f9f9f9;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track .simplebar-scrollbar::before {
  width: 100%;
  height: 100%;
  background: #2fbf77;
  border: 1px solid #cccccc;
  border-radius: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*****************************
* 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-column {
  padding-top: 5rem;
  padding-bottom: 9.375rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5rem;
}
@media screen and (min-width: 768px) {
  .l-column {
    padding-top: 6.75rem;
    padding-bottom: 15.3125rem;
    grid-template-columns: 40.625rem 18.75rem;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .l-column__side {
    margin-top: 0.75rem;
  }
}

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

.l-top {
  background: transparent url(../images/top/bg_layout.png) no-repeat center center/cover;
}

.c-btn01 {
  display: block;
  height: 3.125rem;
  padding: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  border-radius: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    height: 4.1875rem;
    padding: 1px;
  }
}

@media screen and (min-width: 768px) {
  .c-btn01:hover {
    opacity: 1;
  }
}

.c-btn01__inner {
  width: 100%;
  height: 100%;
  padding: 0 0.625rem;
  background: #fff;
  border-radius: 32px;
  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;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  a:hover .c-btn01__inner {
    background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
    background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  }
}

.c-btn01__text {
  display: inline-block;
  padding-right: 1.25rem;
  font-size: 0.9375rem;
  color: #2fbf77;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn01__text {
    padding-right: 2.375rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover .c-btn01__text {
    color: #fff;
  }
}

.c-btn01__text::after {
  content: "";
  width: 0.6875rem;
  height: 1.125rem;
  background: transparent url(../images/common/arrow_next.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  a:hover .c-btn01__text::after {
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-image: url(../images/common/arrow_next.svg);
            mask-image: url(../images/common/arrow_next.svg);
    background: #fff;
  }
}

.c-btn02 {
  width: 100%;
  display: block;
  height: 3.125rem;
  padding: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  border-radius: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn02 {
    height: 4.1875rem;
    padding: 1px;
  }
}

@media screen and (min-width: 768px) {
  .c-btn02:hover {
    opacity: 1;
  }
}

.c-btn02__inner {
  width: 100%;
  height: 100%;
  padding: 0 0.625rem;
  background: #fff;
  border-radius: 32px;
  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;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  a:hover .c-btn02__inner {
    background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
    background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  }
}

.c-btn02__text {
  display: inline-block;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: #2fbf77;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn02__text {
    padding-left: 2.375rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover .c-btn02__text {
    color: #fff;
  }
}

.c-btn02__text::after {
  content: "";
  width: 0.6875rem;
  height: 1.125rem;
  background: transparent url(../images/common/arrow_prev.svg) no-repeat center center/100%;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  a:hover .c-btn02__text::after {
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-image: url(../images/common/arrow_prev.svg);
            mask-image: url(../images/common/arrow_prev.svg);
    background: #fff;
  }
}

.c-btn03 {
  display: block;
  height: 3.125rem;
  padding: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn03 {
    height: 3.75rem;
    padding: 1px;
  }
}

@media screen and (min-width: 768px) {
  .c-btn03:hover {
    opacity: 1;
  }
}

.c-btn03__inner {
  width: 100%;
  height: 100%;
  padding: 0 0.625rem;
  background: #fff;
  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;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  a:hover .c-btn03__inner {
    background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
    background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  }
}

.c-btn03__text {
  display: inline-block;
  font-size: 0.9375rem;
  color: #2fbf77;
  line-height: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn03__text {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover .c-btn03__text {
    color: #fff;
  }
}

.c-category {
  padding: 0.3125rem 0.375rem 0.3125rem 0.4375rem;
  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: 0.6875rem;
  color: #fff;
  line-height: 1;
  background: #909090;
}
@media screen and (min-width: 768px) {
  .c-category {
    padding: 0.3125rem 0.375rem 0.3125rem 0.4375rem;
    font-size: 0.6875rem;
  }
}

.c-feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-feature-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-feature-card__img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-feature-card__img {
    width: 43%;
  }
}

.c-feature-card__img img {
  width: 100%;
  height: auto;
}

.c-feature-card__body {
  padding: 1rem 1rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-feature-card__body {
    width: 50%;
    margin-top: -2.5rem;
    padding: 0;
    position: static;
  }
}

.c-feature-card__title {
  font-size: 1.25rem;
  color: #2fbf77;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-feature-card__title {
    font-size: 1.625rem;
  }
}

.c-feature-card__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-feature-card__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-feature-card__number {
  font-size: 8.75rem;
  color: rgba(48, 167, 191, .05);
  line-height: 0.8;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-feature-card__number {
    font-size: 18.75rem;
    top: -3.125rem;
    right: -1.5625rem;
  }
}

.c-flow-card {
  padding: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-flow-card {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-flow-card__head {
    width: 42.5%;
  }
}

.c-flow-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-flow-card__title--number {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-flow-card__title--number {
    font-size: 1.625rem;
  }
}

.c-flow-card__title--main {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-flow-card__title--main {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-flow-card__body {
    width: 55%;
  }
}

.c-flow-card__text {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-flow-card__text {
    font-size: 1rem;
  }
}

.c-reason-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-reason-card__img img {
  width: 100%;
  height: auto;
}

.c-reason-card__body {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-reason-card__body {
    margin-top: 1.5rem;
  }
}

.c-reason-card__title {
  font-size: 1.125rem;
  color: #2fbf77;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-reason-card__title {
    font-size: 1.25rem;
  }
}

.c-reason-card__text {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-reason-card__text {
    width: 89.6153846154%;
    margin-inline: auto;
    margin-top: 0.875rem;
    font-size: 1rem;
    text-align: left;
  }
}

.c-section-img img {
  width: 100%;
  height: auto;
}

.c-service-card01 {
  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 (min-width: 768px) {
  .c-service-card01 {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 3.4375rem;
       -moz-column-gap: 3.4375rem;
            column-gap: 3.4375rem;
  }
}

.c-service-card01__img {
  -webkit-box-shadow: 0 0 2.5rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 2.5rem rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .c-service-card01__img {
    width: 48.6725663717%;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(even) .c-service-card01__img {
    width: 48.2300884956%;
  }
}

.c-service-card01__img img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}

.c-service-card01__body {
  padding-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-service-card01__body {
    width: 46.4601769912%;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(odd) .c-service-card01__body {
    width: 48.6725663717%;
    padding-left: 8rem;
  }
}

.c-service-card01__body:before {
  display: block;
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: "0" counter(number); /* 表示形式を指定 */
  font-size: 12.5rem;
  color: rgba(48, 167, 191, .05);
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-service-card01__body:before {
    font-size: 18.75rem;
  }
}

.c-service-card01:nth-child(odd) .c-service-card01__body:before {
  top: -1.5625rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(odd) .c-service-card01__body:before {
    top: -6.875rem;
    right: -1.25rem;
  }
}

.c-service-card01:nth-child(even) .c-service-card01__body:before {
  top: -1.5625rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(even) .c-service-card01__body:before {
    top: -6.875rem;
    right: 5.625rem;
  }
}

.c-service-card01__title {
  font-size: 1.5rem;
  color: #2fbf77;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-service-card01__title {
    font-size: 1.875rem;
  }
}

.c-service-card01__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-service-card01__text {
    width: 94.7867298578%;
    margin-top: 1.4375rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c-service-card01:nth-child(even) .c-service-card01__text {
    width: 72.7272727273%;
  }
}

.c-service-card01__btn {
  max-width: 23.75rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-service-card01__btn {
    width: 19.5rem;
    margin-inline: 0;
    margin-top: 3.125rem;
  }
}

.c-title01 {
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title01 {
    padding-left: 2rem;
  }
}

.c-title01::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #2fbf77;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.c-title01--company::before {
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-title01--company::before {
    height: 2.6875rem;
  }
}

.c-title01__main {
  font-size: 2.25rem;
  color: #2fbf77;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-title01__main {
    font-size: 3.75rem;
  }
}

.c-title01__sub {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-title01__sub {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

.c-title02 {
  display: inline-block;
  position: relative;
}

.c-title02__main {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title02__main {
    font-size: 5rem;
  }
}

.c-title02__main::before {
  content: "";
  width: 1px;
  height: 0;
  background: #fff;
  position: absolute;
  top: -0.25rem;
  left: 1.875rem;
  transform: rotate(45deg) translate(0, 0);
  -webkit-transform: rotate(45deg) translate(0, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: height 2s ease;
  transition: height 2s ease;
}
@media screen and (min-width: 768px) {
  .c-title02__main::before {
    top: -0.625rem;
    left: 3.375rem;
  }
}

.c-title02__main.is-animated::before {
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-title02__main.is-animated::before {
    height: 6.25rem;
  }
}

.c-title02__main::after {
  content: "";
  width: 1px;
  height: 0;
  background: #fff;
  position: absolute;
  top: 1.75rem;
  left: 0.875rem;
  transform: rotate(45deg) translate(0, 0);
  -webkit-transform: rotate(45deg) translate(0, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}
@media screen and (min-width: 768px) {
  .c-title02__main::after {
    top: 2.75rem;
    left: 1.875rem;
  }
}

.c-title02__main.is-animated::after {
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .c-title02__main.is-animated::after {
    height: 3.75rem;
  }
}

.c-title02__sub {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title02__sub {
    margin-top: 1.125rem;
    font-size: 1.125rem;
  }
}

.c-title03 {
  display: inline-block;
  font-size: 1.5rem;
  color: #2fbf77;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title03 {
    font-size: 1.875rem;
  }
}

.c-trouble-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-trouble-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .c-trouble-card__img {
    width: 37.1428571429%;
  }
}

.c-trouble-card__img img {
  width: 100%;
  height: auto;
}

.c-trouble-card__body {
  min-height: 8.75rem;
  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: 1.25rem 1.5rem 1.25rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-trouble-card__body {
    width: 62.8571428571%;
    min-height: auto;
    padding: 0.625rem 1.5rem 0.625rem 1.75rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-trouble-card__text {
  padding-left: 3rem;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-trouble-card__text {
    font-size: 1.25rem;
    line-height: 2.25;
  }
}

.c-trouble-card__text::before {
  content: "";
  width: 1.8125rem;
  height: 1.3125rem;
  background: transparent url(../images/common/icon_check.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-article {
  padding-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-article {
    padding-bottom: 3.375rem;
  }
}

.p-article p {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-article p {
    margin-bottom: 2.8125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-article #toc_container {
  margin-bottom: 6.0625rem;
  padding: 2.75rem 2.625rem 5rem;
  background: #e4f1ea;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container {
    margin-bottom: 5rem;
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}

.p-article #toc_container .toc_title {
  margin-bottom: 0;
  font-size: 1.5625rem;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_title {
    font-size: 1.25rem;
  }
}

.p-article #toc_container .toc_list {
  counter-reset: number 0; /* number のカウンタを 0 にセット */
  margin-top: 2.3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}

.p-article #toc_container .toc_list li {
  font-size: 1rem;
  color: #424242;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_list li {
    font-size: 0.9375rem;
  }
}

.p-article #toc_container .toc_list li:before {
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: counter(number) "."; /* 表示形式を指定 */
  position: absolute;
  top: 0;
  left: 0;
}

.p-article #toc_container .toc_list li a {
  padding-left: 1.875rem;
  font-size: 1rem;
  color: #424242;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_list li a {
    padding-left: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-article h2 {
  margin-bottom: 2rem;
  padding-bottom: 0.625rem;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-bottom: 2px solid #2fbf77;
}
@media screen and (min-width: 768px) {
  .p-article h2 {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    font-size: 1.75rem;
  }
}

.p-article h3 {
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article h3 {
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-article h3::before {
  content: "";
  width: 0.25rem;
  height: 100%;
  background: #2fbf77;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-article h3::before {
    width: 0.375rem;
  }
}

.p-article h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-article .wp-block-image {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-image {
    margin-bottom: 3.25rem;
  }
}

.p-article .wp-block-quote {
  margin-bottom: 5rem;
  padding: 1.1875rem 2.25rem;
  background: #eeeeee;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-quote {
    margin-bottom: 3.125rem;
  }
}

.p-article .wp-block-quote p {
  margin-bottom: 2.625rem;
  font-size: 0.875rem;
  color: #424242;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-quote p {
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.p-article .wp-block-preformatted {
  padding: 1.1875rem 2.25rem;
  font-size: 0.875rem;
  color: #424242;
  line-height: 2.5;
  background: #eeeeee;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-preformatted {
    padding: 0.9375rem 1.5625rem;
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.p-article .p-blog_card1 {
  margin-bottom: 3.75rem;
  padding-top: 1.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1 {
    margin-bottom: 2.8125rem;
  }
}

.p-article .p-blog_card1__link {
  padding: 1rem 1.5625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid #2fbf77;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__link {
    padding: 1.25rem 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-article .p-blog_card1__link::before {
  content: "この記事も合わせて読む";
  height: 2.0625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  padding: 0.3125rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  font-weight: bold;
  background: #2fbf77;
  position: absolute;
  top: -2.0625rem;
  left: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__link::before {
    font-size: 0.8125rem;
  }
}

.p-article .p-blog_card1__img {
  width: 36.6666666667%;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__img {
    width: 100%;
    margin-top: 0;
  }
}

.p-article .p-blog_card1__img img {
  width: 100%;
  aspect-ratio: 220/140;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

.p-article .p-blog_card1__body {
  width: 57.8333333333%;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__body {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-article .p-blog_card1__title {
  margin-bottom: 0;
  font-size: 1.125rem;
  color: #000;
  line-height: 1.6666666667;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__title {
    font-size: 1rem;
  }
}

.p-article .p-blog_card1__text {
  margin-top: 0.6875rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #424242;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-article .p-blog_card1__text {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blog-article {
    margin-top: 0.75rem;
  }
}

.p-blog-article__head {
  margin-bottom: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-blog-article__head {
    margin-bottom: 2.875rem;
  }
}

.p-blog-article__detail {
  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: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-blog-article__detail {
    -webkit-column-gap: 1.4375rem;
       -moz-column-gap: 1.4375rem;
            column-gap: 1.4375rem;
  }
}

.p-blog-article__date {
  font-size: 0.75rem;
  color: #909090;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-blog-article__date {
    font-size: 0.8125rem;
  }
}

.p-blog-article__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog-article__cateList {
    gap: 0.9375rem;
  }
}

.p-blog-article__title {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-blog-article__title {
    margin-top: 1.5rem;
    font-size: 1.375rem;
  }
}

.p-blog-article__img {
  margin-top: 1rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, .2);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-blog-article__img {
    margin-top: 1.625rem;
    -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, .2);
            box-shadow: 0 0 1.25rem rgba(0, 0, 0, .2);
  }
}

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

.p-blog-article__btn {
  width: 19.5625rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blog-article__btn {
    width: 19.5625rem;
    margin-inline: 0;
    margin-top: 5rem;
    margin-right: auto;
  }
}

.p-blog__list {
  margin-top: 2.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blog__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.9375rem;
       -moz-column-gap: 2.9375rem;
            column-gap: 2.9375rem;
    row-gap: 4.25rem;
  }
}

.p-blog__pagenation {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__pagenation {
    margin-top: 8.375rem;
  }
}

.p-breadcrumb {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
  }
}

.p-breadcrumb--gray {
  background: #f9f9f9;
}

@media screen and (min-width: 768px) {
  .p-breadcrumb__inner {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}

.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: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner ul li {
    margin-right: 2rem;
  }
}

.p-breadcrumb__inner ul li:nth-child(n+2) {
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner ul li:nth-child(n+2) {
    padding-left: 2.3125rem;
  }
}

.p-breadcrumb__inner ul li:last-child {
  margin-right: 0;
}

.p-breadcrumb__inner ul li:nth-child(n+2)::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.625rem solid #2fbf77;
  border-right: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner ul li:nth-child(n+2)::before {
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.75rem solid #2fbf77;
  }
}

.p-breadcrumb__inner ul li a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner ul li a {
    font-size: 1rem;
  }
}

.p-breadcrumb__inner ul li:first-child a {
  color: #2fbf77;
}

.p-breadcrumb__inner ul li span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner ul li span {
    font-size: 1rem;
  }
}

.p-case-card01 {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  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 (min-width: 768px) {
  .p-case-card01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-case-card01__img {
    width: 48%;
  }
}

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

.p-case-card01__body {
  padding: 1.5rem 1.5rem 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-case-card01__body {
    width: 52%;
    padding: 2.75rem 2.25rem 1.75rem 2.0625rem;
  }
}

.p-case-card01__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
}

.p-case-card01__person {
  width: 4rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .p-case-card01__person {
    width: 5rem;
    height: 5rem;
  }
}

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

.p-case-card01__detail {
  width: calc(100% - 4.875rem);
}
@media screen and (min-width: 768px) {
  .p-case-card01__detail {
    width: calc(100% - 5.875rem);
  }
}

.p-case-card01__name {
  font-size: 1.125rem;
  color: #2fbf77;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-case-card01__name {
    font-size: 1.25rem;
  }
}

.p-case-card01__access {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-case-card01__access {
    font-size: 1rem;
  }
}

.p-case-card01__bottom {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-case-card01__bottom {
    margin-top: 2rem;
    padding-left: 2.1875rem;
  }
}

.p-case-card01__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-case-card01__list:nth-child(n+2) {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-case-card01__list:nth-child(n+2) {
    margin-top: 0.75rem;
  }
}

.p-case-card01__term {
  width: 5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-case-card01__term {
    width: 6.25rem;
    font-size: 1.125rem;
  }
}

.p-case-card01__desc {
  width: calc(100% - 5rem);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-case-card01__desc {
    width: calc(100% - 6.25rem);
    font-size: 1.125rem;
  }
}

.p-case-card01__area {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-case-card01__area {
    margin-top: 0.875rem;
  }
}

.p-case-card01__area--title {
  display: inline-block;
  padding-right: 1.3125rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-case-card01__area--title {
    padding-right: 1.3125rem;
    font-size: 1.125rem;
    cursor: pointer;
  }
}

.p-case-card01__area--title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-top: 0.3125rem solid #2fbf77;
  border-bottom: 0;
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-case-card01__area--text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-case-card01__area--text {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}

.p-company-about {
  margin-top: 3.75rem;
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  background: transparent url(../images/company/about_img.jpg) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-company-about {
    margin-top: 7.375rem;
    padding-top: 6.375rem;
    padding-bottom: 9.875rem;
  }
}

.p-company-about::before {
  content: "";
  width: 35.125rem;
  height: 29.8125rem;
  background: transparent url(../images/company/about_bg.png) no-repeat center center/cover;
  position: absolute;
  bottom: -1rem;
  left: 48.5%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-company-about::before {
    width: 46.9375rem;
    height: 39.8125rem;
    bottom: -1.8125rem;
    left: 48.5%;
  }
}

.p-company-about__inner {
  position: relative;
  z-index: 1;
}

.p-company-about__title {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-company-about__title {
    font-size: 1.875rem;
  }
}

.p-company-about__area {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-about__area {
    margin-top: 3.75rem;
  }
}

.p-company-about__text {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-company-about__text {
    font-size: 1rem;
  }
}

.p-contact {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 7.75rem;
    padding-bottom: 14.375rem;
  }
}

.p-contact::before {
  content: "";
  width: 16.375rem;
  height: 21.6875rem;
  background: transparent url(../images/common/sub_layout.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-contact::before {
    width: 32.75rem;
    height: 43.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__inner {
    max-width: 59.375rem;
  }
}

.p-contact__head {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    margin-bottom: 10.625rem;
  }
}

.p-contact__read {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__read {
    font-size: 1rem;
    text-align: center;
  }
}

.p-contact__area {
  margin-top: 3.75rem;
  padding-top: 3rem;
  padding-bottom: 2.625rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .2);
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__area {
    margin-top: 5.625rem;
    padding-top: 3.8125rem;
    padding-bottom: 4.125rem;
    -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
            box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
  }
}

@media screen and (min-width: 768px) {
  .p-contact__area.thanks {
    padding-top: 4.0625rem;
  }
}

.p-contact__area--inner {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-contact__area--inner {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }
}

.p-contact__area--read {
  font-size: 1rem;
  color: #2fbf77;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__area--read {
    font-size: 1.25rem;
  }
}

.p-contact__area--tel {
  display: inline-block;
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__area--tel {
    margin-top: 2.375rem;
    padding-left: 3.875rem;
    font-size: 3.75rem;
    pointer-events: none;
  }
}

.p-contact__area--tel::before {
  content: "";
  width: 1.5rem;
  height: 2.125rem;
  background: transparent url(../images/common/icon_tel.svg) no-repeat center center/100%;
  position: absolute;
  top: 65%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-contact__area--tel::before {
    width: 2rem;
    height: 2.875rem;
    top: 65%;
  }
}

.p-contact__area--text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #666666;
  text-align: center;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__area--text {
    margin-top: 1.6875rem;
    font-size: 1.125rem;
  }
}

.p-contact__area.thanks .p-contact__area--text {
  margin-top: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__area.thanks .p-contact__area--text {
    font-size: 1rem;
  }
}

.p-contact__area--btn {
  width: 19.5625rem;
  margin-top: 2.125rem;
}

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

.p-contact__step {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__step {
    margin-top: 6.5rem;
  }
}

.p-contact__form {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 6.875rem;
  }
}

.p-cta {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  background: transparent url(../images/common/contact.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-top: 6.875rem;
    padding-bottom: 7.625rem;
  }
}

.p-cta::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .75);
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.p-cta__read {
  margin-top: 2rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-cta__read {
    margin-top: 2.1875rem;
    font-size: 1rem;
  }
}

.p-cta__wrap {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-cta__wrap {
    margin-top: 5.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}

.p-cta__box {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cta__box {
    width: 28.125rem;
    max-width: none;
    margin-inline: 0;
  }
}

.p-cta__boxTitle {
  margin-bottom: 0.5rem;
  padding-left: 1.375rem;
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta__boxTitle {
    margin-bottom: 0.875rem;
    padding-left: 1.375rem;
    font-size: 1.125rem;
  }
}

.p-cta__boxTitle::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cta__boxTitle::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-cta__btn {
  height: 5.625rem;
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    height: 6.25rem;
  }
}

.p-cta__box--tel .p-cta__btn {
  border: 1px solid #fff;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-cta__box--tel .p-cta__btn {
    pointer-events: none;
  }
}

.p-cta__box--contact .p-cta__btn {
  border: 1px solid #2fbf77;
  background: #2fbf77;
  border-radius: 0.625rem;
}

.p-cta__btn--number {
  position: relative;
}

.p-cta__box--tel .p-cta__btn--number {
  padding-left: 2rem;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-cta__box--tel .p-cta__btn--number {
    padding-left: 2.8125rem;
    font-size: 2.5rem;
  }
}

.p-cta__box--tel .p-cta__btn--number::before {
  content: "";
  width: 1.25rem;
  height: 1.875rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/icon_tel.svg);
          mask-image: url(../images/common/icon_tel.svg);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cta__box--tel .p-cta__btn--number::before {
    width: 1.625rem;
    height: 2.25rem;
  }
}

.p-cta__box--contact .p-cta__btn--number {
  padding-left: 3.25rem;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-cta__box--contact .p-cta__btn--number {
    padding-left: 3.8125rem;
    font-size: 1.5625rem;
  }
}

.p-cta__box--contact .p-cta__btn--number::before {
  content: "";
  width: 2.375rem;
  height: 1.5rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/icon_mail.svg);
          mask-image: url(../images/common/icon_mail.svg);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cta__box--contact .p-cta__btn--number::before {
    width: 2.5rem;
    height: 1.5625rem;
  }
}

.p-cta__btn--text {
  display: block;
  font-size: 0.6875rem;
  color: #fff;
  line-height: 1;
  position: absolute;
  bottom: 0.375rem;
  right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-cta__btn--text {
    font-size: 0.75rem;
    bottom: 0.375rem;
    right: 3.0625rem;
  }
}

.p-fix-contact {
  width: 3.125rem;
  position: fixed;
  top: 36%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-fix-contact {
    width: 3.75rem;
    height: 12.6875rem;
    top: 44%;
  }
}

.p-fix-contact__btn {
  padding: 1.25rem 0.625rem;
  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;
  background: #2fbf77;
}
@media screen and (min-width: 768px) {
  .p-fix-contact__btn {
    padding: 1.75rem 0.625rem;
  }
}

.p-fix-contact__text {
  padding-top: 1.8125rem;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-fix-contact__text {
    font-size: 1.125rem;
  }
}

.p-fix-contact__text::before {
  content: "";
  width: 1.5rem;
  height: 0.9375rem;
  background: transparent url(../images/common/icon_mail.svg) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-fix-contact__text::before {
    width: 1.875rem;
    height: 1.1875rem;
  }
}

.p-footer {
  padding-top: 2.6875rem;
  background: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 2.6875rem;
  }
}

.p-footer__top {
  padding-bottom: 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 (min-width: 768px) {
  .p-footer__top {
    padding-bottom: 6.5625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__logo {
  display: block;
  width: 5.6875rem;
}

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

.p-footer__name {
  margin-top: 2rem;
  font-size: 1.5625rem;
  color: #000;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-footer__name {
    margin-top: 3rem;
    font-size: 1.5625rem;
  }
}

.p-footer__access {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__access {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-footer__nav {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.375rem;
     -moz-column-gap: 4.375rem;
          column-gap: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 3.4375rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 5.6875rem;
       -moz-column-gap: 5.6875rem;
            column-gap: 5.6875rem;
  }
}

.p-footer__navList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__navList {
    row-gap: 1.75rem;
  }
}

.p-footer__navLink {
  display: block;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__navLink {
    font-size: 1.125rem;
  }
}

.p-footer__navList--subList {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__navList--subList {
    margin-top: 2.4375rem;
    row-gap: 1.5rem;
  }
}

.p-footer__navList--subLink {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-footer__navList--subLink {
    font-size: 0.875rem;
  }
}

.p-footer__bottom {
  background: #333;
  position: relative;
}

.p-footer__bottom--inner {
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-footer__policy {
  padding-right: 1rem;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__policy {
    padding-right: 1.5625rem;
    font-size: 0.625rem;
  }
}

.p-footer__copy {
  padding-left: 1rem;
  font-size: 0.625rem;
  color: #f0f0f0;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    padding-left: 1.75rem;
    font-size: 0.625rem;
  }
}

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

@media screen and (min-width: 768px) {
  .p-form__inner {
    max-width: 56.875rem;
  }
}

.p-form__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-form__list {
    row-gap: 4.375rem;
  }
}

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

.p-form__head {
  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;
}

.p-form__head__title {
  width: 100%;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-form__head__title {
    font-size: 1.125rem;
  }
}

.p-form__head__title p {
  display: inline-block;
  position: relative;
}

.p-form__head__title.required p {
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__head__title.required p {
    padding-right: 2.125rem;
  }
}

.p-form__head__title.required p::after {
  content: "※";
  display: block;
  font-size: 1rem;
  color: #ff0404;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: absolute;
  top: 70%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-form__head__title.required p::after {
    font-size: 1.125rem;
  }
}

.p-form__body {
  width: 100%;
  margin-top: 1rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__body {
    margin-top: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

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

.p-form__text {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__text {
    font-size: 1rem;
  }
}

/******************* form base *******************/
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form textarea,
.p-form select {
  width: 100%;
  height: 3.125rem;
  padding: 0.625rem 0.625rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email],
  .p-form textarea,
  .p-form select {
    height: 3.375rem;
    padding: 0.625rem 1.3125rem;
    font-size: 1rem;
  }
}

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

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

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

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

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

.p-form input[type=radio] {
  width: 0.96875rem;
  height: 0.96875rem;
  margin-right: 0.625rem;
}

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

.p-form span.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;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form span.wpcf7-list-item {
    font-size: 1.125rem;
    cursor: pointer;
  }
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}

.p-form .wpcf7-form-control-wrap .wpcf7-radio {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form .wpcf7-form-control-wrap .wpcf7-radio {
    -webkit-column-gap: 2.375rem;
       -moz-column-gap: 2.375rem;
            column-gap: 2.375rem;
  }
}

.p-form .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item-label::before,
.p-form .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item-label::after {
  display: none;
}

.p-form textarea {
  height: 10rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-form textarea {
    height: 15rem;
    padding: 1rem 1.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form input.form_name,
  .p-form input.form_kana {
    width: 27.5rem;
    margin-top: 0.625rem;
  }
}

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

.p-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/contact/arrow_select.svg) 96% 50% no-repeat;
  background-size: auto;
  background-size: 1.25rem;
  font-size: 1rem;
  color: #000;
  line-height: 2;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.p-form select::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form select {
    width: 100%;
    line-height: 1;
    background: url(../images/contact/arrow_select.svg) 94% 50% no-repeat;
    background-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form select {
    font-size: 0.875rem;
  }
}

.mw_wp_form .error {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 1rem;
  }
}

/******************* 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 (min-width: 768px) {
  .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;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__detail {
    row-gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form .p-form__item.form_name .p-form__detail,
  .p-form .p-form__item.form_kana .p-form__detail {
    width: 27.5rem;
  }
}

/* 郵便番号 */
.p-form .p-form__item.form_post .p-form__post p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
}

.p-form .p-form__item.form_post .p-form__post span {
  width: 12rem;
}
@media screen and (min-width: 768px) {
  .p-form .p-form__item.form_post .p-form__post span {
    width: 12rem;
  }
}

.p-form .p-form__item.form_post .p-form__adress {
  width: 100%;
}

/* 電話番号 */
.p-form__detail p {
  width: 100%;
}

.p-form__postbtn {
  margin-top: 0.75rem;
  padding: 0.6875rem 1.25rem 0.5625rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  font-weight: bold;
  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;
  background: #2fbf77;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .p-form__postbtn {
    margin-top: 0;
    margin-left: 0.9375rem;
    padding: 1rem 1.3125rem 0.9375rem;
  }
}

.form-hope__title {
  width: 5rem;
  margin-right: 1.875rem;
  margin-left: 0.3125rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .form-hope__title {
    margin-right: 0.9375rem;
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.p-form__body__text {
  width: 100%;
  margin-top: 0.625rem;
  font-size: 1rem;
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-form__body__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.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 (min-width: 768px) {
  .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 (min-width: 768px) {
  .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 (min-width: 768px) {
  .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__policy {
  margin-top: 3rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-form__policy {
    margin-top: 4.5rem;
  }
}

.p-form__policy--head {
  height: 15.625rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  background: #f9f9f9;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-form__policy--head {
    height: 15.625rem;
    padding: 2.25rem 4.375rem 1.75rem 2rem;
  }
}

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

.p-form__policy--text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__policy--text {
    font-size: 1rem;
    line-height: 2.25;
  }
}

.p-form__policy--btn {
  margin-top: 3.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__policy--btn {
    margin-top: 3.375rem;
  }
}

.p-form__policy--btn a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#333, #333) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-form__policy--btn a {
    font-size: 1rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .p-form__policy--btn a:hover {
    opacity: 0.7;
  }
}

.p-form .p-form__policy--btn input[type=checkbox] {
  margin-right: 1rem;
}

.p-form__policy p {
  display: inline;
  font-size: 0.875rem;
  color: #46463E;
  text-align: left;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__policy p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-form .p-form__policy span.wpcf7-list-item {
  display: inline-block;
}

.p-form__policy p span.wpcf7-form-control-wrap {
  width: auto;
  display: inline-block;
}

.p-form__policy p span.wpcf7-list-item-label {
  display: none;
}

.p-form__policy .wpcf7-form-control {
  width: 1rem;
  height: 1rem;
}

.p-form__policy .wpcf7-not-valid-tip {
  width: 9.375rem;
  position: absolute;
  bottom: -3.4375rem;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .p-form__policy .wpcf7-not-valid-tip {
    width: 11.25rem;
    bottom: -2.5rem;
    left: 0;
  }
}

.p-form__btn {
  width: 100%;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn {
    margin-top: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

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

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

.p-form__btn--send {
  position: relative;
}

.p-form__btn--send::after {
  content: "";
  width: 0.6875rem;
  height: 1.125rem;
  background: transparent url(../images/common/arrow_next.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
}

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

.p-form__btn input {
  width: 100%;
  height: 4rem;
  font-size: 1rem;
  color: #2fbf77;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #2fbf77;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-form__btn input {
    height: 4rem;
    font-size: 1.125rem;
  }
}

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

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

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

.p-greeting {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-greeting {
    padding-top: 10rem;
    padding-bottom: 7.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-greeting::before {
    content: "";
    width: 34.625rem;
    height: 43.3125rem;
    background: transparent url(../images/company/bg_greeting.png) no-repeat center center/100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-greeting__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-greeting__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-greeting__body {
  padding-top: 2rem;
  padding-right: 1.25rem;
  padding-left: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-greeting__body {
    width: 40.7692307692%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 3rem;
    padding-bottom: 6.25rem;
  }
}

.p-greeting__body::before {
  content: "";
  width: 17.3125rem;
  height: 21.625rem;
  background: transparent url(../images/top/bg_about.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-greeting__body::before {
    display: none;
  }
}

.p-greeting__body::after {
  content: "";
  width: 1px;
  height: 50.3875968992%;
  background: #2fbf77;
  position: absolute;
  bottom: 0.125rem;
  left: 3rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__body::after {
    height: 75.5%;
    bottom: 0.125rem;
    left: 0.25rem;
  }
}
@media (max-width: 440px) {
  .p-greeting__body::after {
    height: 62.015503876%;
  }
}

.p-greeting__en {
  display: inline-block;
  font-size: 0.875rem;
  color: #2fbf77;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 6.25rem;
  left: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-greeting__en {
    font-size: 0.9375rem;
    top: 4.8125rem;
    left: -2.6875rem;
  }
}

.p-greeting__area {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__area {
    width: 89.2116182573%;
    margin-top: 2rem;
    row-gap: 2.125rem;
  }
}

.p-greeting__text {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-greeting__text {
    font-size: 1rem;
  }
}

.p-greeting__name {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-greeting__name {
    margin-top: 3.3125rem;
    font-size: 1.25rem;
  }
}

.p-greeting__img {
  margin-left: 2.5rem;
  border-radius: 0.625rem 0 0 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-greeting__img {
    width: 46.1538461538%;
    margin-top: 0.25rem;
    margin-left: 0;
  }
}

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

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-header.wht {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .8);
    background: rgba(47, 191, 119, .8);
  }
}

.p-header__inner {
  padding: 0.625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0;
    padding-left: 3.1875rem;
  }
}

.p-header__logo {
  width: 3.25rem;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    margin-top: 1.6875rem;
    margin-bottom: 1.6875rem;
  }
}

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

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

.p-header__hamburger .line {
  width: 25px;
  height: 2px;
  display: block;
  background: #2fbf77;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger .line {
    display: none;
  }
}

.p-header__hamburger.active .line {
  background: #fff;
}

.p-header__hamburger .line:nth-child(2),
.p-header__hamburger .line:nth-child(3) {
  margin-top: 8px;
}
.p-header__hamburger.active .line:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}
.p-header__hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.active .line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.p-header__nav {
  width: 100%;
  height: 100vh;
  padding-top: 1.25rem;
  padding-bottom: 7.5rem;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 10;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  overflow-y: scroll;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .8);
  background: rgba(47, 191, 119, .8);
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    width: 49.375rem;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    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;
    position: relative;
    right: auto;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
    background: none;
    overflow-y: visible;
  }
}

.p-header__nav.active {
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-header__navWrap {
    width: 32.25rem;
    margin-top: 0.9375rem;
  }
}

.p-header__read {
  width: 63.1578947368%;
  margin-top: 0.625rem;
  margin-left: 5rem;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-header__read {
    width: auto;
    margin-top: 0;
    margin-left: 0;
    font-size: 0.625rem;
    text-align: right;
  }
}

.p-header__navList {
  margin-top: 2.5rem;
  padding: 0 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 (min-width: 768px) {
  .p-header__navList {
    margin-top: 0.625rem;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.p-header__navItem {
  position: relative;
}

.p-header__navLink {
  display: block;
  padding: 0.9375rem 0.625rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__navLink {
    padding: 0;
    font-size: 1rem;
    letter-spacing: -0.03em;
    border-bottom: none;
  }
}

.p-header__navItem:first-child .p-header__navLink {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-header__navItem:first-child .p-header__navLink {
    border-top: none;
  }
}

span.p-header__navLink::before {
  content: "";
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  span.p-header__navLink::before {
    display: none;
  }
}

span.p-header__navLink::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2.9375rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  span.p-header__navLink::after {
    display: none;
  }
}

span.p-header__navLink.active::after {
  display: none;
}

.p-header__tel {
  width: 18.75rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, .7);
}
@media screen and (min-width: 768px) {
  .p-header__tel {
    width: 15.5rem;
    margin-inline: 0;
    margin-top: 0;
  }
}

.p-header__tel--btn {
  display: block;
  padding: 0.9375rem 0.8125rem 1.0625rem 1.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header__tel--btn {
    padding: 0.9375rem 0.8125rem 1.0625rem 1.3125rem;
    text-align: left;
    pointer-events: none;
  }
}

.p-header__tel--body {
  padding-left: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__tel--body {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 0.6875rem;
  }
}

.p-header__tel--body::after {
  content: "";
  width: 1.5625rem;
  height: 2.1875rem;
  background: transparent url(../images/common/icon_tel.svg) no-repeat center center/100%;
  position: absolute;
  top: 53%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-header__tel--body::after {
    width: 1.5625rem;
    height: 2.1875rem;
  }
}

.p-header__tel--number {
  display: block;
  font-size: 1.5625rem;
  color: #2fbf77;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-header__tel--number {
    margin-right: 0.3125rem;
    font-size: 1.5625rem;
  }
}

.p-header__tel--text {
  display: block;
  font-size: 0.75rem;
  color: #2fbf77;
  line-height: 1;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-header__tel--text {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header__dropdown {
    display: none;
    width: 18.75rem;
    background: #fff;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    position: absolute;
    top: 1.875rem;
    left: 0;
    z-index: 100;
  }
}

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

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

.p-list01 {
  display: block;
}

.p-list01__img {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .2);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-list01__img {
    -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
            box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
  }
}

.p-list01__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 300/185;
}

.p-list01__body {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-list01__body {
    margin-top: 1.875rem;
  }
}

.p-list01__date {
  font-size: 0.8125rem;
  color: #909090;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-list01__date {
    font-size: 0.8125rem;
  }
}

.p-list01__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-list01__cate {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}

.p-list01__title {
  width: 100%;
  margin-top: 0.1875rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-list01__title {
    margin-top: 0.1875rem;
    font-size: 1rem;
  }
}

.p-mv {
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: auto;
  }
}

.p-mv__inner {
  height: 100%;
}

.p-mv__wrapper {
  height: 100%;
  position: relative;
}

.p-mv__swiper {
  height: 100%;
}

.p-mv__swiper .swiper-wrapper {
  height: 100%;
}

.p-mv__slide {
  height: 100%;
}

.p-mv__pagination.swiper-pagination-bullets {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  left: auto;
  right: 0.625rem;
  bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination.swiper-pagination-bullets {
    left: auto;
    right: 1.125rem;
    bottom: 1rem;
  }
}

.p-mv__pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  margin: 0 0.375rem;
  background: #cccccc;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.625rem;
    background: #cccccc;
  }
}

.p-mv__pagination.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.625rem;
  height: 0.625rem;
  background: #2fbf77;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.p-mv__img {
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    height: auto;
  }
}

.p-mv__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-position: 60% center;
     object-position: 60% center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    height: auto;
    -o-object-position: center center;
       object-position: center center;
  }
}

.p-mv__body {
  width: 94%;
  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;
  position: relative;
  position: absolute;
  top: 49.5%;
  left: 51%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__body {
    width: 54.3125rem;
    height: 35rem;
  }
}

.p-mv__body::after {
  content: "";
  width: 21.5625rem;
  height: 14rem;
  background: transparent url(../images/top/bg_mv.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-mv__body::after {
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 2.375rem;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
  }
}

.p-mv__read {
  font-size: 1.375rem;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__read {
    font-size: 2.5rem;
  }
}

.p-mv__read span {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-mv__read span {
    font-size: 3.125rem;
  }
}

.p-mv__news {
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  z-index: 1;
}

.p-notfound {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-notfound {
    padding-top: 6.25rem;
    padding-bottom: 11.25rem;
  }
}

.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 (min-width: 768px) {
  .p-notfound__read {
    font-size: 1.125rem;
  }
}

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

.p-office {
  padding-top: 2.375rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-office {
    padding-top: 3.75rem;
    padding-bottom: 12.1875rem;
  }
}

.p-office__list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-office__list {
    margin-top: 4.875rem;
  }
}

.p-office__item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-office__item {
    padding-top: 2.625rem;
    padding-bottom: 2.875rem;
  }
}

.p-office__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-office__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-office__term {
    width: 24.2%;
  }
}

.p-office__term--text {
  font-size: 1rem;
  color: #30a7bf;
  line-height: 1.7777777778;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-office__term--text {
    margin-left: 0.625rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-office__desc {
    width: 75.8%;
  }
}

.p-office__desc--text {
  font-size: 1rem;
  line-height: 1.7777777778;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-office__desc--text {
    font-size: 1.125rem;
  }
}

.p-office__desc--map {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-office__desc--map {
    margin-top: 1.5rem;
  }
}

.p-office__desc--map iframe {
  display: block;
  width: 100%;
  height: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-office__desc--map iframe {
    width: 88.9182058047%;
  }
}

.p-page-link {
  padding-top: 3.75rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-page-link {
    padding-top: 7.375rem;
    padding-bottom: 0.625rem;
  }
}

.p-page-link__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-page-link__wrap {
    grid-template-columns: repeat(5, 1fr);
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    row-gap: 0.75rem;
  }
}

.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;
}
@media screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi {
    -webkit-column-gap: 1.1875rem;
       -moz-column-gap: 1.1875rem;
            column-gap: 1.1875rem;
  }
}

.p-pagination .current,
.p-pagination .page,
.p-pagination a {
  width: 2.5rem;
  height: 2.5rem;
  border-color: #2fbf77 !important;
  border: 1px solid #2fbf77;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-pagination .current,
  .p-pagination .page,
  .p-pagination a {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.p-pagination .current,
.p-pagination .page {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-pagination .current,
  .p-pagination .page {
    font-size: 1.125rem;
  }
}

.p-pagination .current {
  color: #fff;
  background: #2fbf77;
}

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

.p-pagination .previouspostslink {
  position: relative;
}

.p-pagination .nextpostslink {
  position: relative;
}

.p-pagination a img {
  width: 0.6875rem;
  height: 1.125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-pagination a img {
    width: 0.6875rem;
    height: 1.125rem;
  }
}

.p-question-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
}

.p-question-card__q {
  width: 3.125rem;
  display: inline-block;
  font-size: 2.5rem;
  color: #2fbf77;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-question-card__q {
    width: 3.75rem;
    font-size: 3.125rem;
  }
}

.p-question-card__title {
  margin-top: 0.625rem;
  font-size: 1rem;
  color: #2fbf77;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-question-card__title {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    line-height: 2.5;
  }
}

.p-question-card__body {
  margin-top: 1rem;
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-question-card__body {
    margin-top: 0.875rem;
    padding-left: 3.125rem;
  }
}

.p-question-card__a {
  width: 3.125rem;
  display: inline-block;
  font-size: 2.5rem;
  color: #30a7bf;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-question-card__a {
    width: 3.75rem;
    font-size: 3.125rem;
  }
}

.p-question-card__text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-question-card__text {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.p-recruit {
  padding-top: 5rem;
  padding-bottom: 3.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    padding-top: 7.125rem;
    padding-bottom: 4.375rem;
  }
}

.p-recruit::before {
  content: "";
  width: 16.375rem;
  height: 21.6875rem;
  background: transparent url(../images/common/sub_layout.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit::before {
    width: 32.75rem;
    height: 43.375rem;
  }
}

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

.p-recruit__read {
  font-size: 1.5rem;
  color: #2fbf77;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruit__read {
    font-size: 1.875rem;
  }
}

.p-recruit__text {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    margin-top: 2.1875rem;
    font-size: 1rem;
  }
}

.p-recruit__bottom {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__bottom {
    margin-top: 5.9375rem;
  }
}

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

@media screen and (min-width: 768px) {
  .p-recruit__img {
    width: 50%;
  }
}

.p-recruit__img--01 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__img--01 {
    margin-top: 4.375rem;
  }
}

.p-recruit__img img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 2.5rem rgba(0, 0, 0, .2);
}

.p-recruitment {
  padding-top: 2.375rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-recruitment {
    padding-top: 3.75rem;
    padding-bottom: 12.1875rem;
  }
}

.p-recruitment__list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruitment__list {
    margin-top: 2.875rem;
  }
}

.p-recruitment__item {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-recruitment__item {
    padding-top: 2.625rem;
    padding-bottom: 3.1875rem;
  }
}

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

@media screen and (min-width: 768px) {
  .p-recruitment__term {
    width: 24.2%;
  }
}

.p-recruitment__term--text {
  font-size: 1rem;
  color: #30a7bf;
  line-height: 1.7777777778;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-recruitment__term--text {
    margin-left: 0.625rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruitment__desc {
    width: 75.8%;
  }
}

.p-recruitment__desc--text {
  font-size: 1rem;
  line-height: 1.7777777778;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruitment__desc--text {
    font-size: 1.125rem;
  }
}

.p-section-title {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-section-title {
    padding-top: 5.75rem;
    padding-bottom: 3.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-section-title__inner {
    max-width: 68.125rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.p-section-title__sub {
  display: block;
  font-size: 2.125rem;
  color: #2fbf77;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  word-break: break-all;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-section-title__sub {
    font-size: 3.75rem;
    line-height: 1.5;
  }
}

.p-section-title__sub::before {
  content: "";
  width: 1px;
  height: 2.6875rem;
  background: #2fbf77;
  position: absolute;
  top: 50%;
  left: -1.625rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-section-title__main {
  margin-top: 1rem;
  margin-left: 0.25rem;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-section-title__main {
    margin-top: 0.875rem;
    margin-left: 0.25rem;
    font-size: 1.5625rem;
  }
}

.p-service {
  padding-top: 6rem;
  padding-bottom: 6.25rem;
  position: relative;
  background: transparent url(../images/top/service_bg_bottom.png) no-repeat left bottom/100% auto;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
    background: transparent url(../images/top/service_bg_bottom.png) no-repeat left bottom/80% auto;
  }
}

.p-service::before {
  content: "";
  width: 100%;
  height: 24.6875rem;
  background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  position: absolute;
  top: 0;
  left: 0;
}

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

.p-service__body {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    margin-top: 2.1875rem;
  }
}

.p-service__box:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__box:nth-child(n+2) {
    margin-top: 2.8125rem;
  }
}

.p-service__subtitle {
  padding-left: 2rem;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__subtitle {
    font-size: 1.25rem;
  }
}

.p-service__subtitle::before {
  content: "";
  width: 0.75rem;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
}

.p-service__subtitle::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-service__box--inspection .p-service__subtitle {
  color: #fff;
}

.p-service__box--inspection .p-service__subtitle::after {
  background: #fff;
}

.p-service__box--reform .p-service__subtitle::after,
.p-service__box--leisure .p-service__subtitle::after {
  background: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
}

.p-service__list1 {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__list1 {
    margin-top: 0.625rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.9375rem;
  }
}

.p-service__list2 {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__list2 {
    margin-top: 0.625rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.25rem;
  }
}

.p-side {
  padding: 1.1875rem 1.125rem 2.5rem 0.6875rem;
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, .2);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, .2);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-side {
    -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
            box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
  }
}

.p-side:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-side:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}

.p-side__head {
  padding-left: 0.6875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2fbf77;
}

.p-side__title {
  font-size: 1.125rem;
  color: #2fbf77;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-side__title {
    font-size: 1.25rem;
  }
}

.p-side__body {
  margin-top: 1.0625rem;
}

.p-side__list {
  padding-left: 0.9375rem;
}

.p-side__list .cat-item {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-side__list .cat-item {
    font-size: 1rem;
  }
}

.p-side__list .cat-item:nth-child(n+2) {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-side__list .cat-item:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
}

.p-side__box {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ccc;
}

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

.p-side__box--head {
  padding-left: 0.1875rem;
  cursor: pointer;
  position: relative;
}

.p-side__box--head::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.625rem solid transparent;
  border-left: 0.625rem solid transparent;
  border-top: 0.625rem solid #2fbf77;
  border-bottom: 0;
  position: absolute;
  top: 58%;
  right: 0.6875rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-side__box--head.active::after {
  top: 10%;
  transform: rotateZ(180deg) translate(0, -50%);
  -webkit-transform: rotateZ(180deg) translate(0, -50%);
}

.p-side__box--title {
  padding: 0 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-side__box--title {
    font-size: 1rem;
  }
}

.p-side__box--body {
  margin-top: 1.0625rem;
  padding-left: 0.1875rem;
}

.p-side__subList {
  padding-left: 2.0625rem;
}

.p-side__subItem {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-side__subItem {
    font-size: 1rem;
  }
}

.p-side__subItem:nth-child(n+2) {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-side__subItem:nth-child(n+2) {
    margin-top: 0.75rem;
  }
}

.p-side__subItem::before {
  content: "-";
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-side__subItem::before {
    font-size: 0.9375rem;
  }
}

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

.p-step__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-step__list {
    -webkit-column-gap: 6.875rem;
       -moz-column-gap: 6.875rem;
            column-gap: 6.875rem;
  }
}

.p-step__list::before {
  content: "";
  width: 94%;
  height: 2px;
  background: #cccccc;
  position: absolute;
  top: 0.6875rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.p-step__item {
  padding-top: 2.625rem;
  font-size: 0.875rem;
  color: #cccccc;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-step__item {
    padding-top: 2.625rem;
    font-size: 1rem;
  }
}

.p-step__item.active {
  color: #333;
}

.p-step__item::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: #cccccc;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.p-step__item.active::before {
  background: #2fbf77;
}

.p-step__item.active::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 1px solid #2fbf77;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.p-sub-about {
  padding-top: 3.875rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sub-about {
    padding-top: 4.375rem;
    padding-bottom: 6.9375rem;
  }
}

.p-sub-about__inner {
  position: relative;
  z-index: 1;
}

.p-sub-about__title .c-title03 {
  color: #fff;
}

.p-sub-about__area {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-about__area {
    margin-top: 2rem;
  }
}

.p-sub-about__text {
  font-size: 0.875rem;
  color: #fff;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-sub-about__text {
    font-size: 1rem;
  }
}

.p-sub-about__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.p-sub-about__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
}

.p-sub-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-sub-area {
  padding-top: 3.375rem;
  padding-bottom: 2.625rem;
  background: #f9f9f9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-area {
    padding-top: 4.25rem;
    padding-bottom: 2.5rem;
  }
}

.p-sub-area::before {
  content: "";
  width: 17.375rem;
  height: 22rem;
  background: transparent url(../images/common/bg_construction.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-area::before {
    width: 34.6875rem;
    height: 44rem;
  }
}

.p-sub-area__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-area__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-area__head {
    width: 42%;
  }
}

.p-sub-area__detail {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-area__detail {
    margin-top: 2.25rem;
  }
}

.p-sub-area__read {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-sub-area__read {
    font-size: 1.25rem;
  }
}

.p-sub-area__attention {
  width: 9.8125rem;
  height: 2.1875rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  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;
  background: #2fbf77;
}
@media screen and (min-width: 768px) {
  .p-sub-area__attention {
    margin-top: 0.875rem;
    font-size: 1rem;
  }
}

.p-sub-area__area {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-area__area {
    width: 71.4285714286%;
    margin-top: 3rem;
    row-gap: 1.875rem;
  }
}

.p-sub-area__text {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-sub-area__text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-area__body {
    width: 49.1%;
    margin-top: -1.125rem;
    margin-right: 5.2%;
  }
}

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

.p-sub-case {
  padding-top: 3.75rem;
  padding-bottom: 6rem;
  background: #f9f9f9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-case {
    padding-top: 6.25rem;
    padding-bottom: 7.875rem;
  }
}

.p-sub-case::before {
  content: "";
  width: 15.9375rem;
  height: 21rem;
  background: transparent url(../images/common/bg_case.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-case::before {
    width: 31.875rem;
    height: 41.9375rem;
  }
}

.p-sub-case__inner {
  position: relative;
}

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

.p-sub-case__wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sub-case__wrap {
    margin-top: 7.1875rem;
    row-gap: 3.125rem;
  }
}

.p-sub-comparison {
  padding-top: 4.5rem;
  padding-bottom: 3.75rem;
  background: #ecfff5;
}
@media screen and (min-width: 768px) {
  .p-sub-comparison {
    padding-top: 5.625rem;
    padding-bottom: 5.875rem;
  }
}

.p-sub-comparison__title {
  text-align: center;
}

.p-sub-comparison__wrap {
  max-width: 38.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-comparison__wrap {
    max-width: none;
  }
}

.p-sub-comparison__table {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-sub-comparison__table {
    overflow-x: visible;
  }
}

.p-sub-feature {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-feature {
    padding-top: 7.5rem;
    padding-bottom: 6.4375rem;
  }
}

.p-sub-feature::before {
  content: "";
  width: 16.5625rem;
  height: 22rem;
  background: transparent url(../images/common/bg_reason.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-feature::before {
    width: 33.125rem;
    height: 44rem;
  }
}

.p-sub-feature__title {
  text-align: center;
}

.p-sub-feature__wrap {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-feature__wrap {
    margin-top: 7.25rem;
    row-gap: 5.3125rem;
  }
}

.p-sub-flow {
  padding-top: 3.75rem;
  padding-bottom: 5.25rem;
  background: linear-gradient(135deg, rgba(84, 186, 133, .8) 0%, rgba(48, 167, 191, .8) 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-flow {
    padding-top: 6.25rem;
    padding-bottom: 8.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-flow__inner {
    max-width: 53.125rem;
  }
}

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

.p-sub-flow__title .c-title03 {
  color: #fff;
}

.p-sub-flow__wrap {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__wrap {
    margin-top: 1.25rem;
  }
}

.p-sub-flow__box {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  background: transparent url(../images/common/border_flow.png) no-repeat center bottom/100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__box {
    padding-top: 3.625rem;
    padding-bottom: 2.25rem;
  }
}

.p-sub-flow__box:last-child {
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-flow__box:last-child {
    padding-bottom: 1.875rem;
  }
}

.p-sub-flow__box:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.25rem solid transparent;
  border-left: 1.25rem solid transparent;
  border-top: 1.125rem solid #fff;
  border-bottom: 0;
  position: absolute;
  bottom: -1.125rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-sub-flow__box:not(:last-child)::after {
    border-right: 1.5625rem solid transparent;
    border-left: 1.5625rem solid transparent;
    border-top: 1.375rem solid #fff;
    bottom: -1.375rem;
  }
}

.p-sub-mv__inner {
  position: relative;
}

.p-sub-mv__title {
  width: 100%;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  font-size: 2rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 1.25rem;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    width: 76.1538461538%;
    padding-right: 0;
    padding-left: 0;
    font-size: 3.125rem;
    line-height: 1;
    top: auto;
    bottom: 6.5625rem;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
  }
}

.p-sub-mv__img {
  position: relative;
}

.p-sub-mv__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent url(../images/common/sub-mv_bg.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-sub-mv__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
}

.p-sub-mv__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 380/240;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__img img {
    aspect-ratio: 1300/380;
  }
}

.p-sub-question {
  padding-top: 3.75rem;
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-question {
    padding-top: 7.375rem;
    padding-bottom: 8.125rem;
  }
}

.p-sub-question::before {
  content: "";
  width: 15.9375rem;
  height: 20.125rem;
  background: transparent url(../images/common/bg_question.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-question::before {
    width: 31.875rem;
    height: 40.25rem;
  }
}

.p-sub-question__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-question__inner {
    max-width: 59.375rem;
  }
}

.p-sub-question__title {
  text-align: center;
}

.p-sub-question__wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-question__wrap {
    margin-top: 4.375rem;
    row-gap: 3.125rem;
  }
}

.p-sub-question__box {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-sub-question__box {
    padding-bottom: 2.1875rem;
  }
}

.p-sub-reason {
  padding-top: 3.375rem;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-reason {
    padding-top: 5.625rem;
    padding-bottom: 7rem;
  }
}

.p-sub-reason::before {
  content: "";
  width: 16.5625rem;
  height: 22rem;
  background: transparent url(../images/common/bg_reason.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-reason::before {
    width: 33.125rem;
    height: 44rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-reason__inner {
    max-width: 60.375rem;
  }
}

.p-sub-reason__title {
  text-align: center;
}

.p-sub-reason__read {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__read {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-sub-reason__wrap {
  width: 84.2105263158%;
  margin-inline: auto;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-column-gap: 4.1875rem;
     -moz-column-gap: 4.1875rem;
          column-gap: 4.1875rem;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__wrap {
    width: auto;
    margin-inline: 0;
    margin-top: 5.125rem;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
}

.p-table {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-table {
    padding-top: 4rem;
    padding-bottom: 1.25rem;
  }
}

.p-table::after {
  content: "";
  width: 8.25rem;
  height: 94.0711462451%;
  background: transparent;
  border: 3px solid #2fbf77;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 6.5rem;
}
@media screen and (min-width: 768px) {
  .p-table::after {
    width: 12.75rem;
    height: 89.4230769231%;
    bottom: 0;
    left: 12.375rem;
  }
}

.p-table tbody {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-table tbody {
    row-gap: 0.625rem;
  }
}

.p-table__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-table__list {
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
}

.p-table__head {
  width: 6.25rem;
  height: 3.625rem;
  padding: 0.625rem 0.5rem;
  background: #2fbf77;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-table__head {
    width: 11.875rem;
    height: 4.25rem;
    padding: 0.625rem 1.5625rem;
  }
}

.p-table__head.p-table__head--blank {
  background: transparent;
}

.p-table__body {
  width: 7.5rem;
  height: 3.625rem;
  padding: 0.625rem 0.25rem;
  background: #dddddd;
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-table__body {
    width: 11.875rem;
    height: 4.25rem;
    padding: 0.625rem 0.25rem;
  }
}

.p-table__body--top {
  padding: 0.625rem 0;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .p-table__body--top {
    padding: 0.90625rem 0;
  }
}

.p-table__body--haradatoso {
  background: #fff;
}

.p-table__body--top.p-table__body--haradatoso {
  background: transparent;
}

.p-table__title {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-table__title {
    font-size: 1.25rem;
  }
}

.p-table__body--haradatoso .p-table__title {
  color: #2fbf77;
}

.p-table__text {
  font-size: 0.8125rem;
  text-align: center;
  color: #666666;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-table__text {
    font-size: 1rem;
  }
}

.p-table__head .p-table__text {
  font-size: 0.875rem;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-table__head .p-table__text {
    font-size: 1.125rem;
  }
}

.p-table__body--haradatoso .p-table__text {
  color: #2fbf77;
}

.p-top-about {
  padding-top: 6.25rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding-top: 12.5rem;
    padding-bottom: 9.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about::before {
    content: "";
    width: 34.625rem;
    height: 43.3125rem;
    background: transparent url(../images/top/bg_about.png) no-repeat center center/100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-about__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-top-about__body {
  padding-top: 2rem;
  padding-right: 1.25rem;
  padding-left: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-about__body {
    width: 40.7692307692%;
    padding-top: 1.4375rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}

.p-top-about__body::before {
  content: "";
  width: 17.3125rem;
  height: 21.625rem;
  background: transparent url(../images/top/bg_about.png) no-repeat center center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-top-about__body::before {
    display: none;
  }
}

.p-top-about__body::after {
  content: "";
  width: 1px;
  height: 69.1244239631%;
  background: #2fbf77;
  position: absolute;
  bottom: 0.125rem;
  left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__body::after {
    height: 80.8333333333%;
    bottom: 0.125rem;
    left: 0.25rem;
  }
}

.p-top-about__en {
  display: inline-block;
  font-size: 0.875rem;
  color: #2fbf77;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 3.875rem;
  left: 0.625rem;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-top-about__en {
    font-size: 0.9375rem;
    top: 3.375rem;
    left: -1.8125rem;
  }
}

.p-top-about__read {
  font-size: 1.625rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-about__read {
    font-size: 2.1875rem;
  }
}

.p-top-about__area {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__area {
    width: 89.2116182573%;
    margin-top: 2.4375rem;
    row-gap: 2.125rem;
  }
}

.p-top-about__text {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    font-size: 1rem;
  }
}

.p-top-about__btn {
  width: 18.875rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__btn {
    width: 18.875rem;
    margin-top: 6.375rem;
  }
}

.p-top-about__img {
  margin-left: 2.5rem;
  border-radius: 0.625rem 0 0 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-about__img {
    width: 46.1538461538%;
    margin-left: 0;
  }
}

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

.p-top-company {
  margin-top: 2.8125rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-company {
    margin-top: 5rem;
    padding-bottom: 9.4375rem;
  }
}

.p-top-company__inner {
  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 (min-width: 768px) {
  .p-top-company__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-company__img {
    width: 50%;
  }
}

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

.p-top-company__body {
  padding-top: 2.5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-company__body {
    width: 43.8461538462%;
    padding-top: 2.625rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.p-top-company__area {
  margin-top: 1.5rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-company__area {
    width: 80.701754386%;
    margin-right: auto;
    margin-top: 2.75rem;
    margin-left: 1.875rem;
  }
}

.p-top-company__read {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-company__read {
    font-size: 1.5625rem;
  }
}

.p-top-company__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-top-company__text {
    margin-top: 1.1875rem;
    font-size: 1rem;
  }
}

.p-top-gallery {
  position: relative;
}

.p-top-gallery::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-top-gallery__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear; /* 一定速度を保つために線形 */
}

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

.p-top-news {
  width: 80%;
  padding: 0.625rem 0.9375rem;
  border-radius: 0 10px 0 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    width: 57.6923076923%;
    padding: 0.9375rem 1.875rem;
  }
}

.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top-news__title {
  font-size: 1.5625rem;
  color: #2fbf77;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-top-news__title {
    padding-right: 1.625rem;
    font-size: 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-news__body {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-news__body {
    padding-left: 1.75rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-news__body::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #2fbf77;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
}

.p-top-news__list {
  height: 100%;
}

.p-top-news__item {
  height: 100%;
}

.p-top-news__link {
  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;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
}

.p-top-news__date {
  width: 5.625rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-news__date {
    width: 6.875rem;
    font-size: 1.125rem;
  }
}

.p-top-news__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-top-news__text {
    font-size: 1.125rem;
  }
}

.p-top-service {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  background: linear-gradient(135deg, rgba(84, 186, 133, .8) 0%, rgba(48, 167, 191, .8) 100%);
}
@media screen and (min-width: 768px) {
  .p-top-service {
    padding-top: 11.875rem;
    padding-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-service__inner {
    max-width: 74.375rem;
  }
}

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

.p-top-service__wrap {
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-service__wrap {
    margin-top: 4.5625rem;
  }
}

.p-top-service__wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0.625rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-top-service__wrap::after {
    width: 87.7192982456%;
  }
}

.p-top-service__list {
  padding: 3rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5rem;
  position: relative;
  z-index: 1;
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}
@media screen and (min-width: 768px) {
  .p-top-service__list {
    padding: 7.375rem 0 6.75rem;
    row-gap: 7.375rem;
  }
}

.p-top-topics {
  margin-left: 1.25rem;
  background: #fff;
  border-radius: 0.625rem 0 0 0.625rem;
  position: relative;
  top: -1.875rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-topics {
    width: 92.3076923077%;
    margin-left: auto;
    top: -4.375rem;
  }
}

.p-top-topics__inner {
  padding-top: 2.8125rem;
  padding-bottom: 2.5rem;
  padding-left: 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 (min-width: 768px) {
  .p-top-topics__inner {
    padding-top: 5.625rem;
    padding-bottom: 5.8125rem;
    padding-left: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-top-topics__top {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-topics__top {
    display: block;
    width: 30.4347826087%;
  }
}

.p-top-topics__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-topics__btn {
  width: 15.4375rem;
  margin-inline: auto;
  margin-top: 3.75rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-top-topics__btn {
    width: 15.4375rem;
    margin-inline: 0;
    margin-top: 6.25rem;
  }
}

.p-top-topics__bottom {
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-topics__bottom {
    width: 63.2173913043%;
    margin-top: 0.625rem;
  }
}

.p-trouble {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, rgba(84, 186, 133, .8) 0%, rgba(48, 167, 191, .8) 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-top: 5.75rem;
    padding-bottom: 10.875rem;
  }
}

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

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

.p-trouble__title .c-title03 {
  color: #fff;
}

.p-trouble__read {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-trouble__read {
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}

.p-trouble__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-trouble__list {
    width: 70%;
    margin-inline: auto;
    margin-top: 4.875rem;
  }
}

.u-marker-grad {
  padding: 0.1875rem 0.5625rem 0;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(#54ba85), to(#30a7bf));
  background-image: linear-gradient(90deg, #54ba85 0%, #30a7bf 100%);
  background-size: 100% 84%;
  background-position: 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 1.5s ease-out;
  transition: background-size 1.5s ease-out;
}

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

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


.p-footer__navLink.non_link {
	pointer-events: none;
}