@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

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

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 428px) {
  html {
    font-size: 3.738317757vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

.u-inner {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .u-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.c-fill-btn {
  display: inline-block;
  background: #07913A;
  color: #fff;
}

.c-line-btn {
  display: inline-block;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 3.125rem;
  color: #fff;
  padding: 16px 20px 14px;
  padding: 1rem 1.25rem 0.875rem;
  position: relative;
}
.c-line-btn::after {
  position: absolute;
  content: "";
  background: url("../images/common/icon-arrow-right.svg") center/cover;
  width: 30px;
  width: 1.875rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  right: 2.5rem;
}

.c-pagetop {
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  z-index: 20;
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}

.c-pagetop__btn {
  position: relative;
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background: #07913A;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .c-pagetop__btn {
    width: 4.0625rem;
    height: 4.0625rem;
  }
}
.c-pagetop__btn::before {
  position: absolute;
  top: 42%;
  left: 50%;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.c-section-lead {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.c-section-title {
  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;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #313131;
  font-weight: normal;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 3.125px;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2.625rem;
  }
}
.c-section-title::after {
  content: attr(data-en);
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  color: #07913A;
  letter-spacing: 1px;
}

.c-section {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-section {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}

.p-case-item__title {
  width: 100%;
  background: #07913A;
  font-weight: normal;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  padding: 7px;
  padding: 0.4375rem;
  text-align: center;
}

.p-case-item__img {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-case-item__img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-case-item__img::before {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: calc(100% + 60px);
  height: 200px;
  height: 12.5rem;
  background-color: rgba(7, 145, 58, .1);
}
@media screen and (min-width: 768px) {
  .p-case-item__img::before {
    width: 100vw;
    left: 50%;
    top: auto;
    bottom: -6.25rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}

.p-case-item__before,
.p-case-item__after {
  position: relative;
}
.p-case-item__before::before,
.p-case-item__after::before {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 8px;
  right: 0.5rem;
  content: attr(data-situation);
  background: #fff;
  text-transform: uppercase;
  color: #07913A;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
}

.p-case-item__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24.5px 0 24.5px;
  border-color: #F3E300 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .p-case-item__triangle {
    margin-top: 7rem;
    border-width: 42.5px 0 42.5px 40px;
    border-color: transparent transparent transparent #F3E300;
  }
}

.p-case {
  overflow: clip;
}

@media screen and (min-width: 768px) {
  .p-case__inner {
    padding-bottom: 15.625rem;
  }
}

.p-case__list {
  margin-top: 60px;
  margin-top: 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;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-case__list {
    gap: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company__inner {
    max-width: 916px;
  }
}

.p-company__title {
  background: #07913A;
  color: #fff;
  font-weight: normal;
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 7px;
  padding: 0.4375rem;
}

.p-company__list {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 26px;
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__list {
    gap: 1.5rem;
  }
}
.p-company__list--service > * {
  width: calc(50% - 0.8125rem);
  height: 170px;
  height: 10.625rem;
  display: grid;
  place-items: center;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .p-company__list--service > * {
    width: calc(25% - 1.5rem);
    font-size: 1.75rem;
  }
}
.p-company__list--overview > * {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  padding: 20px 25px;
  padding: 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-company__list--overview > * {
    font-size: 1.125rem;
  }
}
.p-company__list--overview dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-company__list--overview dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68px;
          flex: 0 0 68px;
  -ms-flex: 0 0 4.25rem;
      flex: 0 0 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__list--overview dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.875rem;
            flex: 0 0 6.875rem;
  }
}
.p-company__list--overview dd {
  color: #111;
}

.p-company__list-item {
  background-color: #F1F8F3;
  color: #07913A;
}

.p-contact {
  background: url("../images/top/contact-bg-sp.jpg") center/cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact {
    background: none;
  }
}

.p-contact__body {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    padding: 5.4375rem 3.75rem;
  }
}

.p-contact__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.p-contact__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    background-color: #07913A;
    max-width: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-contact__inner > * {
    width: 50%;
  }
}

.p-contact__title {
  text-align: center;
  font-weight: normal;
  padding: 10px 0 14px;
  padding: 0.625rem 0 0.875rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.p-contact__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-contact__cta {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
.p-contact__cta span {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-contact__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-contact__btn .c-line-btn {
  width: 100%;
}

.p-drawer {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #07913A;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  overflow-y: scroll;
}

.p-drawer ul {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
  width: calc(100% - 3.75rem);
}

.p-drawer__link {
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.p-drawer__link a {
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-drawer__link:last-child {
  margin-top: 60px;
  font-weight: bold;
}

/* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
nav.p-drawer.is-active {
  opacity: 100;
  visibility: visible;
}

.p-flow-item {
  position: relative;
}
.p-flow-item::before {
  content: "";
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
  background: #B6E108;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 84px;
  left: 5.25rem;
}

.p-flow-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 62px;
  gap: 3.875rem;
}
.p-flow-item__body img {
  height: 46px;
  height: 2.875rem;
  width: auto;
}
.p-flow-item__body h3 {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #07913A;
}
@media screen and (min-width: 768px) {
  .p-flow-item__body h3 {
    font-size: 2.375rem;
  }
}
.p-flow-item__body p {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-flow-item__img {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-flow-item__img {
    margin-left: auto;
    margin-right: 0;
    width: 94%;
  }
}

.p-flow-item__text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-item__text {
    font-size: 0.9375rem;
    line-height: 2.3;
  }
}

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

.p-flow__list {
  margin-top: 60px;
  margin-top: 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;
  gap: 40px;
  gap: 2.5rem;
  position: relative;
}
.p-flow__list::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  background: #07913A;
  top: 20px;
  top: 1.25rem;
  left: 90px;
  left: 5.625rem;
  z-index: -1;
}

.p-footer {
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}

.p-footer__copyright {
  color: #07913A;
  font-size: 10px;
  font-size: 0.625rem;
}

.p-gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: clip;
}

.p-gnav__link {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  height: inherit;
}

.p-gnav__link a {
  display: grid;
  place-items: center;
  padding: 25px;
  padding: 1.5625rem;
  color: #5D5D5D;
  text-decoration: none;
  font-size: 17px;
  font-size: 1.0625rem;
  height: 101px;
  height: 6.3125rem;
}

.p-gnav__link:nth-last-child(2) {
  padding-right: 45px;
  padding-right: 2.8125rem;
}

.p-gnav__link:last-child a {
  background: #07913A;
  color: #fff;
  padding: 0 64px;
  padding: 0 4rem;
}

.p-hamburger {
  display: block;
  z-index: 3;
  position: relative;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  cursor: pointer;
  text-align: center;
  background-color: #07913A;
}

.p-hamburger span {
  display: block;
  position: absolute;
  width: 32px;
  width: 2rem;
  height: 4px;
  height: 0.25rem;
  left: 14px;
  left: 0.875rem;
  border-radius: 50px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-hamburger span:nth-child(1) {
  top: 16px;
  top: 1rem;
}

.p-hamburger span:nth-child(2) {
  top: 28px;
  top: 1.75rem;
}

.p-hamburger span:nth-child(3) {
  top: 40px;
  top: 2.5rem;
}

/* ナビ開いてる時のバツボタン */
.p-hamburger.is-active {
  background-color: #fff;
}

.p-hamburger.is-active span {
  background-color: #07913A;
}

.p-hamburger.is-active span:nth-child(1) {
  top: 30px;
  top: 1.875rem;
  left: 14px;
  left: 0.875rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.p-hamburger.is-active span:nth-child(3) {
  top: 30px;
  top: 1.875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-header {
  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;
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 6.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__logo {
  width: 43.45%;
  max-width: 186px;
  margin: 11px 0 8px 22px;
  margin: 0.6875rem 0 0.5rem 1.375rem;
}

.p-mv {
  position: relative;
  height: 728px;
  height: 45.5rem;
  background: url(../images/top/mv-sp.jpg) center/cover;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background: url(../images/top/mv-pc.jpg) center/cover;
    height: 56.25rem;
  }
}

.p-mv__inner {
  padding: 168px 30px 0;
  padding: 10.5rem 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding: 5.625rem 9.375rem 0;
  }
}

.p-mv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
}

.p-mv__list-item {
  background: #07913A;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 2px 14px 4px;
  padding: 0.125rem 0.875rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__list-item {
    font-size: 2.5rem;
  }
}

.p-mv__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  gap: 1.25rem;
  font-family: "Noto Serif JP", serif;
}

.p-mv__title span {
  font-size: 48px;
  font-size: 3rem;
  display: inline;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  color: #07913A;
  background: rgba(255, 255, 255, .9);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .p-mv__title span {
    font-size: 6.125rem;
  }
}

.p-mv__banner {
  display: grid;
  place-items: center;
  text-align: center;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: 126px;
  bottom: 7.875rem;
  width: 186px;
  width: 11.625rem;
  height: 186px;
  height: 11.625rem;
  background-color: rgba(237, 109, 1, .8);
  color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-mv__banner {
    width: 20.375rem;
    height: 20.375rem;
    right: 7.375rem;
    bottom: 5rem;
  }
}

.p-mv__banner-text {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .p-mv__banner-text {
    font-size: 3.5rem;
  }
}

.p-mv__banner-text span {
  display: block;
  font-size: 56px;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__banner-text span {
    font-size: 6.125rem;
  }
}

.p-problem__bg {
  position: relative;
  overflow: hidden;
}
.p-problem__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(243, 227, 0, .2);
  width: 200vw;
  height: 180%;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-problem__bg::after {
    -webkit-transform: rotate(55deg);
            transform: rotate(55deg);
  }
}
@media screen and (min-width: 1024px) {
  .p-problem__bg::after {
    height: 120vw;
    -webkit-transform: rotate(62deg);
            transform: rotate(62deg);
  }
}

@media screen and (min-width: 768px) {
  .p-problem__body {
    margin-top: 5.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 4.75rem;
  }
}

.p-problem__list {
  margin-top: 60px;
  margin-top: 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;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    width: 50%;
    margin-top: 0;
  }
}

.p-problem__list-item {
  position: relative;
  padding-left: 44px;
  padding-left: 2.75rem;
}
.p-problem__list-item::before, .p-problem__list-item::after {
  content: "";
  position: absolute;
}
.p-problem__list-item::before {
  height: 27px;
  height: 1.6875rem;
  width: 27px;
  width: 1.6875rem;
  top: 0;
  left: 0;
  background: #07913A;
}
.p-problem__list-item::after {
  background: url("../images/common/icon-check.png") center/cover;
  width: 16px;
  width: 1rem;
  height: 11px;
  height: 0.6875rem;
  top: 8px;
  top: 0.5rem;
  left: 6px;
  left: 0.375rem;
}

.p-problem__img {
  margin-top: 60px;
  margin-top: 3.75rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .p-problem__img {
    margin-top: 0;
    width: 50%;
  }
}

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

.p-reason__list-item {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  position: relative;
  background-color: #07913A;
  color: #fff;
  padding: 140px 50px 80px;
  padding: 8.75rem 3.125rem 5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  letter-spacing: 2.6315px;
}
@media screen and (min-width: 768px) {
  .p-reason__list-item {
    padding: 8.4375rem 3.125rem 5rem;
  }
}
.p-reason__list-item span {
  font-size: 38px;
  font-size: 2.375rem;
  display: block;
}
.p-reason__list-item::before, .p-reason__list-item::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-reason__list-item::before {
  background-color: #fff;
  width: 172px;
  width: 10.75rem;
  height: 112px;
  height: 7rem;
  top: -45px;
  top: -2.8125rem;
  border-radius: 1.875rem;
}
.p-reason__list-item::after {
  top: -23px;
  top: -1.4375rem;
  height: 60px;
  height: 3.75rem;
}
.p-reason__list-item:first-child::after {
  width: 18px;
  width: 1.125rem;
  background: url("../images/top/number-01.png") center/cover;
}
.p-reason__list-item:nth-child(2)::after {
  width: 36px;
  width: 2.25rem;
  background: url("../images/top/number-02.png") center/cover;
}
.p-reason__list-item:nth-child(3)::after {
  width: 37px;
  width: 2.3125rem;
  background: url("../images/top/number-03.png") center/cover;
}
.p-reason__list-item .triangle {
  position: absolute;
  right: 10px;
  right: 0.625rem;
  bottom: 10px;
  bottom: 0.625rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #fff transparent;
}

@media screen and (min-width: 768px) {
  .p-support-item {
    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;
  }
}

@media screen and (min-width: 768px) {
  .p-support-item:nth-child(2n) .p-support-item__img {
    margin-left: auto;
    margin-right: 0;
  }
  .p-support-item:nth-child(2n) .p-support-item__title {
    margin-right: auto;
    margin-left: 0;
    padding: 2.5rem 28.125rem 2.125rem 3.125rem;
  }
  .p-support-item:nth-child(2n) .p-support-item__subtitle {
    padding-left: 3.125rem;
    margin-left: 0;
  }
}

.p-support-item__text {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-support-item__text {
    display: block;
    margin-top: -15.625rem;
    z-index: 1;
  }
}

.p-support-item__subtitle {
  display: block;
  margin-left: auto;
  padding-left: 26px;
  padding-left: 1.625rem;
  width: 86%;
}
.p-support-item__subtitle img {
  height: 30px;
  height: 1.875rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-support-item__subtitle img {
    height: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-support-item__subtitle {
    padding-left: 30rem;
  }
}

.p-support-item__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", serif;
  width: 86%;
  margin-left: auto;
  background-color: #07913A;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 18px 28px;
  padding: 0.625rem 1.125rem 1.75rem;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .p-support-item__title {
    margin-top: 1.125rem;
    width: 84%;
    padding: 2.5rem 3.125rem 2.125rem 28.125rem;
  }
}
.p-support-item__title span {
  font-size: 22px;
  font-size: 1.375rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-support-item__title span {
    font-size: 1.25rem;
  }
}
.p-support-item__title h3 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-support-item__title h3 {
    font-size: 4.6875rem;
  }
}

.p-support-item__img {
  width: 86%;
  margin-top: -20px;
  margin-top: -1.25rem;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-support-item__img {
    width: 50%;
    margin-top: 0;
    z-index: 2;
  }
}

.p-support__list {
  margin-top: 60px;
  margin-top: 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;
  gap: 40px;
  gap: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-support__list {
    margin-left: auto;
    margin-right: auto;
    gap: 5rem;
  }
}
/*# sourceMappingURL=styles.css.map */
