@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "noto sans jp", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100px, #00CD70 100px, #00CD70 calc(100% - 200px), #FFFFFF calc(100% - 200px), #FFFFFF 100%);
}

span {
  display: inline-block;
}

@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
/*****************************
* 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 */
/* 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-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-right: 50px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-inner.l-inner--sm {
  max-width: 1150px;
}

.l-inner.l-inner--lg {
  max-width: 1280px;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .l-inner.l-inner--lg {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.c-btn02 {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 16px;
  padding: 12px 24px 12px 20px;
  text-align: center;
  background-color: #333;
  min-width: 190px;
  border-radius: 15px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn02::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url(../images/icon-arrow-white.svg) no-repeat center/contain;
  margin-left: 12px;
}

@media (hover: hover) {
  .c-btn02:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
.p-floating-btn-sp {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-floating-btn-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #ED1E79;
    border: 1px solid #333;
    z-index: 100;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s; /* 透明度と位置の変化に時間をかけます */
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 初期状態では少し下にずれています */
  }
}

.p-floating-btn-sp.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-floating-btn-sp a {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-floating-btn-sp.is-visible a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-floating-btn-sp a img {
  width: 100%;
  height: auto;
}

.p-floating-btn-sp__text {
  width: 164px;
  position: relative;
}

.p-floating-btn-sp__text::before {
  content: "";
  width: 32px;
  height: 33px;
  display: inline-block;
  background: url(../images/icon-serach.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-floating-btn {
  display: none;
  width: 140px;
  height: 140px;
  position: fixed;
  bottom: 20px;
  right: calc(50% - 610px);
  z-index: 3;
}
@media screen and (max-width: 1250px) {
  .p-floating-btn {
    right: 25px;
  }
}

.p-intro {
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-intro {
    margin-top: -15px;
  }
}

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

.p-intro__body {
  position: relative;
  z-index: 2;
}

.p-intro__title {
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-intro__title {
    margin-top: 0;
  }
}

.p-intro__arrow {
  height: 95px;
  text-align: center;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .p-intro__arrow {
    margin-top: 32px;
  }
}

.p-intro__arrow-img {
  width: 23px;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-intro__arrow-img {
    width: 17px;
  }
}

.p-intro__arrow-img img {
  width: 100%;
  height: auto;
  -webkit-animation: arrowlong01 2s ease infinite;
          animation: arrowlong01 2s ease infinite;
  -webkit-transform-origin: top;
          transform-origin: top;
}

@-webkit-keyframes arrowlong01 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0.1;
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}

@keyframes arrowlong01 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0.1;
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
.p-intro__voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 768px;
  margin-inline: auto;
}

.p-intro__voice-wrap01 {
  width: 66.7938931298%;
  padding-right: 1.875rem;
}

.p-intro__voice-wrap02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0rem;
}

.p-intro__voice-wrap03 {
  width: 29.262086514%;
}

.p-intro__voice-img01 {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.p-intro__voice-img02 {
  margin-top: 1.875rem;
}

.p-intro__voice-img04 {
  margin-top: 1.25rem;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.p-intro__voice-img01 img,
.p-intro__voice-img02 img,
.p-intro__voice-img03 img,
.p-intro__voice-img04 img {
  width: 100%;
  height: auto;
}

.p-intro__voice-sp {
  margin-top: -42px;
}

.p-intro__voice-sp__img01 {
  min-width: 309px;
  max-width: 400px;
  width: 80%;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  margin-inline: auto;
}

.p-intro__voice-sp__img02 {
  min-width: 259px;
  width: 80%;
  max-width: 370px;
  margin-top: 20px;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  margin-inline: auto;
}

.p-intro__voice-sp__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  margin-inline: auto;
  max-width: 460px;
}

.p-intro__voice-sp__img03 {
  width: 35%;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.p-intro__voice-sp__img04 {
  width: 59.375%;
}

.p-intro__voice-sp__img01 img,
.p-intro__voice-sp__img02 img,
.p-intro__voice-sp__img03 img,
.p-intro__voice-sp__img04 img {
  width: 100%;
  height: auto;
}

.p-intro__text {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6666666667;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-intro__text {
    font-size: 30px;
    line-height: 1.5;
  }
}

.p-intro__deco01 {
  width: 7.375rem;
  height: 7.8125rem;
  position: absolute;
  left: 71px;
  top: 41px;
}
@media screen and (max-width: 767px) {
  .p-intro__deco01 {
    width: 83px;
    height: 87px;
    left: calc(50% - 200px);
    top: 188px;
  }
}

.p-intro__deco02 {
  width: 200px;
  height: 207px;
  position: absolute;
  left: -34px;
  top: 352px;
}
@media screen and (max-width: 767px) {
  .p-intro__deco02 {
    width: 101px;
    height: 141px;
    left: calc(50% - 220px);
    top: 700px;
  }
}

.p-intro__deco03 {
  width: 115px;
  height: 153px;
  position: absolute;
  right: 90px;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .p-intro__deco03 {
    width: 56px;
    height: 76px;
    right: calc(50% - 160px);
    top: 233px;
  }
}

.p-intro__deco04 {
  width: 116px;
  height: 121px;
  position: absolute;
  right: 67px;
  top: 408px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro__deco04 {
    width: 81px;
    height: 84px;
    right: calc(50% - 205px);
    top: 802px;
  }
}

.p-intro__deco05 {
  width: 211px;
  height: 156px;
  position: absolute;
  right: 67px;
  bottom: -55px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-intro__deco05 {
    right: -80px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__deco05 {
    width: 130px;
    height: 110px;
    right: calc(50% - 280px);
    bottom: -30px;
  }
}

.p-intro__deco01 img,
.p-intro__deco02 img,
.p-intro__deco03 img,
.p-intro__deco04 img,
.p-intro__deco05 img {
  width: 100%;
  height: auto;
}

.p-mv {
  height: 50.75rem;
  background-image: url(../images/bg-mv-pc.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 41.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-mv {
    background: url(../images/bg-mv-sp.png) no-repeat bottom center/cover;
    position: relative;
  }
}

.p-mv::after {
  content: "";
  display: block;
  width: 100%;
  min-width: 78.75rem;
  height: 14.1875rem;
  background: url(../images/bg-mount-pc.png) no-repeat center top;
  background-size: cover;
  position: absolute;
  z-index: 1;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-mv::after {
    height: 6.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-mv::after {
    width: 34.375rem;
    min-width: 34.375rem;
    height: 9.375rem;
    background: url(../images/bg-mount.png) no-repeat center top/contain;
    bottom: 0.8125rem;
  }
}

.p-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.25rem;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #00CD70;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 500px) {
  .p-mv::before {
    height: 0.875rem;
  }
}

.p-mv__inner {
  position: relative;
  height: inherit;
}

.p-mv__body {
  padding-top: 6.25rem;
  max-width: 60rem;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    max-width: 100%;
    padding-top: 10.9375rem;
  }
}

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

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

.p-mv__lead01 {
  width: 13.25rem;
  position: absolute;
  top: 6.875rem;
  left: 0;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__lead01 {
    width: 8.875rem;
    top: 1.25rem;
    left: calc(50% - 9.375rem);
  }
}

.p-mv__lead02 {
  width: 14.4375rem;
  position: absolute;
  top: 6.875rem;
  right: -1.25rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__lead02 {
    width: 8.875rem;
    top: 1.25rem;
    right: calc(50% - 9.375rem);
  }
}

.p-mv__lead01 img,
.p-mv__lead02 img {
  width: 100%;
  height: auto;
}

.p-mv__img01 {
  width: 20rem;
  position: absolute;
  left: calc(50% - 36.25rem);
  bottom: 3.75rem;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .p-mv__img01 {
    width: 16.25rem;
    left: calc(50% - 33.75rem);
    bottom: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__img01 {
    width: 10.625rem;
    left: calc(50% - 11.25rem);
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
    bottom: 2.8125rem;
  }
}

.p-mv__img02 {
  width: 21.25rem;
  position: absolute;
  right: calc(50% - 38.75rem);
  bottom: 5rem;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .p-mv__img02 {
    width: 17.5rem;
    right: calc(50% - 34.375rem);
    bottom: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__img02 {
    width: 11.25rem;
    right: calc(50% - 10.625rem);
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    bottom: 2.8125rem;
  }
}

.p-mv__img01 img,
.p-mv__img02 img {
  width: 100%;
  height: auto;
}

.p-intro__intro .white {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-intro__intro .white {
    font-size: 24px;
  }
}

.p-intro__intro {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 850px) {
  .p-intro__intro {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__intro {
    margin-top: 0;
  }
}

.p-intro__intro .yellow {
  display: inline-block;
  color: #F5E149;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 0.625rem;
  position: relative;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 767px) {
  .p-intro__intro .yellow {
    font-size: 2.1875rem;
    margin-top: 1.25rem;
  }
}

.p-intro__intro .yellow::after {
  content: "";
  display: inline-block;
  width: 3.9375rem;
  height: 3.9375rem;
  background: url(../images/icon-face.png) no-repeat center/contain;
  position: absolute;
  top: 0.1875rem;
  right: -4.375rem;
}
@media screen and (max-width: 1024px) {
  .p-intro__intro .yellow::after {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__intro .yellow::after {
    width: 2.25rem;
    height: 2.25rem;
    top: 3.3125rem;
    right: -4px;
  }
}

.p-panel-area {
  background-color: #fff;
  padding: 36px;
}
@media screen and (max-width: 767px) {
  .p-panel-area {
    padding: 30px 16px 50px 16px;
  }
}

.p-panel-area__btn {
  text-align: center;
}

.p-panel-area__text {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-panel-area__text {
    font-size: 16px;
  }
}

.p-panel-area__area {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-panel-area__area {
    font-size: 24px;
  }
}

.p-panel-area__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 28px;
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .p-panel-area__list {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-panel-area__list {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.p-panel-area__list.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 28px;
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .p-panel-area__list.col2 {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-panel-area__list.col2 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.p-panel-area__list-item a,
.p-panel-area__list-item button {
  color: #000;
  background-color: #fff;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  letter-spacing: 0.04em;
  width: 100%;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .p-panel-area__list-item a,
  .p-panel-area__list-item button {
    font-size: 16px;
    padding: 16px 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-panel-area__list-item a,
  .p-panel-area__list-item button {
    padding: 16px 20px;
  }
}

.p-panel-area__list-item a::after,
.p-panel-area__list-item button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon-search.svg) no-repeat center/contain;
}

.p-panel-area__return {
  text-align: center;
  margin-top: 50px;
}

@media (hover: hover) {
  .p-panel-area__list-item button:hover {
    opacity: 0.7;
  }
}
.p-panel__item {
  display: none;
}

.p-panel__item-wrapper {
  background-color: #F2F2F2;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .p-panel__item-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-panel__item-wrapper02.p-panel__item-wrapper02--blue {
  background-color: #E3F4F8;
}

.p-panel__item:nth-child(2) .p-panel__item-wrapper {
  background-color: #E3F4F8;
}

.p-panel__item.is-active {
  display: block;
  -webkit-animation: panel-show 0.8s ease-in-out forwards;
          animation: panel-show 0.8s ease-in-out forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-panel__item-wrapper02 {
  padding: 20px;
}

.p-point-item01 {
  max-width: 1050px;
  margin-inline: auto;
  position: relative;
}

.p-point-item01__inner {
  position: relative;
  z-index: 2;
}

.p-point-item01::before {
  content: "";
  display: inline-block;
  width: 7.1875rem;
  height: 9.75rem;
  background: url(../images/bg-point02.png) no-repeat center center/contain;
  position: absolute;
  top: 6px;
  left: 63%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .p-point-item01::before {
    left: 85%;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item01::before {
    width: 5.0625rem;
    height: 6.8125rem;
    left: 80%;
    top: -8px;
  }
}

.p-point-item01__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-point-item01__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

.p-point-item01__title-num {
  width: 166px;
}
@media screen and (max-width: 767px) {
  .p-point-item01__title-num {
    width: 94px;
  }
}

.p-point-item01__title-num img {
  width: 100%;
  height: auto;
}

.p-point-item01__title-text {
  width: 346px;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .p-point-item01__title-text {
    width: 200px;
    margin-left: 14px;
  }
}

.p-point-item01__title-text img {
  width: 100%;
  height: auto;
}

.p-point-item01__barometer {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer {
    grid-template-columns: 1fr;
    padding: 15px 35px 35px 35px;
    max-width: 500px;
    margin-inline: auto;
    margin-top: 54px;
  }
}

.p-point-item01__barometer::before {
  content: "";
  display: inline-block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #22B562;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-point-item01__barometer-item {
  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;
  min-height: 139px;
  padding: 35px 25px 35px 0px;
}
@media screen and (max-width: 1024px) {
  .p-point-item01__barometer-item {
    min-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0px 15px 0px;
  }
}

.p-point-item01__barometer-item:nth-child(1) {
  border-bottom: 1px solid #22B562;
  border-right: 1px solid #22B562;
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer-item:nth-child(1) {
    border-right: 0;
  }
}

.p-point-item01__barometer-item:nth-child(2) {
  border-bottom: 1px solid #22B562;
}

.p-point-item01__barometer-item:nth-child(3) {
  border-right: 1px solid #22B562;
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #22B562;
  }
}

.p-point-item01__barometer-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  width: 20.4498977505%;
  margin-top: 20px;
  min-width: 100px;
}
@media screen and (max-width: 1024px) {
  .p-point-item01__barometer-title {
    font-size: 16px;
    min-width: 80px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer-title {
    font-size: 20px;
    width: 100%;
  }
}

.p-point-item01__barometer-img {
  width: 72.8016359918%;
}
@media screen and (max-width: 767px) {
  .p-point-item01__barometer-img {
    width: 100%;
    margin-top: 12px;
  }
}

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

.p-point-item02 {
  position: relative;
}

.p-point-item02::after {
  content: "";
  display: inline-block;
  width: 69.6875rem;
  height: 50.5rem;
  background: url(../images/bg-point03.png) no-repeat center center/contain;
  position: absolute;
  top: 10px;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-point-item02::after {
    background: url(../images/bg-point03-sp.png) no-repeat center center/contain;
    width: 21.3125rem;
    height: 22.1875rem;
    top: -28px;
    left: 48%;
  }
}

.p-point-item02__inner {
  position: relative;
  z-index: 2;
}

.p-point-item02__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 35%;
}
@media screen and (max-width: 1024px) {
  .p-point-item02__title {
    margin-left: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item02__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    margin-left: 0;
  }
}

.p-point-item02__title-num {
  width: 166px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point-item02__title-num {
    width: 94px;
  }
}

.p-point-item02__title-num img {
  width: 100%;
  height: auto;
}

.p-point-item02__title-text {
  width: 346px;
  margin-left: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point-item02__title-text {
    width: 200px;
    margin-left: 14px;
  }
}

.p-point-item02__title-text img {
  width: 100%;
  height: auto;
}

.p-point-item02__img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .p-point-item02__img-area {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 28px;
  }
}

.p-point-item02__img01 {
  width: 51.5%;
  margin-top: 138px;
}
@media screen and (max-width: 767px) {
  .p-point-item02__img01 {
    margin-top: 50px;
  }
}

.p-point-item02__img02 {
  width: 56.6666666667%;
  position: relative;
  z-index: 2;
  margin-left: -80px;
}

.p-point-item02__img01 img,
.p-point-item02__img02 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-point-item02__img01 img,
  .p-point-item02__img02 img {
    border-radius: 10px;
  }
}

.p-point-item03 {
  max-width: 1050px;
  margin-inline: auto;
  position: relative;
}

.p-point-item03::after {
  content: "";
  display: inline-block;
  width: 30.75rem;
  height: 37.1875rem;
  background: url(../images/bg-point04.png) no-repeat center center/contain;
  position: absolute;
  top: 46px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .p-point-item03::after {
    background: url(../images/bg-point04-sp.png) no-repeat center center/contain;
    width: 22.5rem;
    height: 31.25rem;
    left: initial;
    left: calc(50% + 170px);
    top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item03::after {
    background: url(../images/bg-point04-sp.png) no-repeat center center/contain;
    width: 7.4375rem;
    height: 12.875rem;
    left: initial;
    left: calc(50% + 78px);
    top: -23px;
  }
}

.p-point-item03__inner {
  position: relative;
  z-index: 2;
}

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

.p-point-item03__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 107px;
}
@media screen and (max-width: 1024px) {
  .p-point-item03__title {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item03__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    margin-left: 0;
  }
}

.p-point-item03__title-num {
  width: 166px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point-item03__title-num {
    width: 94px;
  }
}

.p-point-item03__title-text span {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-point-item03__title-text span {
    font-size: 12px;
    line-height: 1.3333333333;
    margin-top: 7px;
  }
}

.p-point-item03__title-num img {
  width: 100%;
  height: auto;
}

.p-point-item03__title-text {
  width: 346px;
  margin-left: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point-item03__title-text {
    width: 200px;
    margin-left: 14px;
  }
}

.p-point-item03__title-text img {
  width: 100%;
  height: auto;
}

.p-point-item03__body {
  width: 44.9523809524%;
}
@media screen and (max-width: 1024px) {
  .p-point-item03__body {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item03__body {
    margin-top: 20px;
  }
}

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

.p-point-item03__text {
  font-size: 16px;
  line-height: 2.6666666667;
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .p-point-item03__text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-point-item03__text {
    text-align: left;
    line-height: 1.5;
    margin-top: 20px;
    margin-left: 25px;
  }
}

.p-point {
  padding-top: 100px;
  padding-bottom: 63px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-point {
    padding-bottom: 45px;
  }
}

.p-point::before {
  content: "";
  display: inline-block;
  width: 67.4375rem;
  height: 18.0625rem;
  background: url(../images/bg-point01.png) no-repeat center center/contain;
  position: absolute;
  top: 60px;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-point::before {
    width: 24.75rem;
    height: 21.9375rem;
    background: url(../images/bg-point01-sp.png) no-repeat center center/contain;
    top: 2px;
    left: 56%;
  }
}

.ap-point__inner {
  position: relative;
  z-index: 3;
}

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

.p-point__title .yellow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #F5E149;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3125;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-point__title .yellow {
    font-size: 24px;
  }
}

.p-point__title .yellow::after {
  content: "";
  display: inline-block;
  width: 71px;
  height: 55px;
  background: url(../images/point-title-deco.png) no-repeat center center/contain;
  position: absolute;
  top: -30px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-point__title .yellow::after {
    width: 49px;
    height: 38px;
    top: -22px;
    left: 3px;
  }
}

.p-point__title .white {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  line-height: 1.6666666667;
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .p-point__title .white {
    font-size: 18px;
    margin-top: 12px;
  }
}

.p-point__list {
  margin-top: 92px;
}
@media screen and (max-width: 767px) {
  .p-point__list {
    margin-top: 112px;
  }
}

.p-point__list-item:nth-child(2) {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .p-point__list-item:nth-child(2) {
    margin-top: 50px;
  }
}

.p-point__list-item:nth-child(3) {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .p-point__list-item:nth-child(3) {
    margin-top: 50px;
  }
}

.p-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .p-tab__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
  }
}

.p-tab__item {
  width: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  text-shadow: 0 0 8px rgba(0, 0, 0, .6);
  font-weight: 700;
  text-align: center;
  padding: 5px 10px;
  height: 86px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #007C4A;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-tab__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-tab__item {
    opacity: 0.5;
    width: 100%;
    font-size: 18px;
    height: 63px;
    padding: 3px;
  }
}

.p-tab__item::after {
  content: "";
  display: inline-block;
  width: 2.125rem;
  height: 2.125rem;
  background: url(../images/icon-tab.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="3" dy="3" result="offsetblur" /><feFlood flood-color="rgba(76,76,76,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(2px 2px 0 #4c4c4c);
          filter: drop-shadow(2px 2px 0 #4c4c4c);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-tab__item::after {
    width: 27px;
    height: 27px;
    right: 10px;
  }
}

@media (hover: hover) {
  .p-tab__item:hover {
    background-color: #00AB4E;
  }
  .p-tab__item.is-active:hover {
    background-color: #00CD70;
  }
}
.p-tab__item.is-active:active {
  -webkit-box-shadow: inset 12px 12px 24px #00b463, inset -12px -12px 24px #00e67d;
          box-shadow: inset 12px 12px 24px #00b463, inset -12px -12px 24px #00e67d;
}

.p-tab__item:active {
  background: #00AB4E;
  -webkit-box-shadow: inset 12px 12px 24px #009645, inset -12px -12px 24px #00c057;
          box-shadow: inset 12px 12px 24px #009645, inset -12px -12px 24px #00c057;
}

.p-tab__item.is-active {
  background-color: #22B562;
}

.p-tab__item:active::after {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: translate(2px, calc(-50% + 2px));
          transform: translate(2px, calc(-50% + 2px));
}

.p-tab__item:nth-child(1) {
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-tab__item:nth-child(1) {
    border-radius: 15px;
  }
}

.p-tab__item:nth-child(2) {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .p-tab__item:nth-child(2) {
    border-radius: 15px;
  }
}

.p-tab__item:nth-child(1).is-active {
  height: 102px;
}
@media screen and (max-width: 767px) {
  .p-tab__item:nth-child(1).is-active {
    border: none;
    opacity: 1;
    height: 63px;
  }
}

.p-tab__item:nth-child(2).is-active {
  height: 102px;
}
@media screen and (max-width: 767px) {
  .p-tab__item:nth-child(2).is-active {
    border: none;
    opacity: 1;
    height: 63px;
  }
}

.p-work {
  padding-top: 50px;
  padding-bottom: 130px;
  position: relative;
  overflow-x: hidden;
  background: url(../images/bg-work.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-work {
    background: url(../images/bg-work-sp.png) no-repeat center/cover;
    margin-bottom: 10px;
    padding-bottom: 130px;
    padding-top: 15px;
  }
}

.p-work::after {
  content: "";
  width: 100%;
  height: 170px;
  background: url(../images/bg-mount-pc.png) no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 500px) {
  .p-work::after {
    background: url(../images/bg-work-mount-sp.png) no-repeat center top/cover;
    height: 136px;
    width: 470px;
    bottom: 40px;
  }
}

.p-work__inner {
  position: relative;
  z-index: 2;
}

.p-word__lead {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3157894737;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-word__lead {
    font-size: 20px;
    line-height: 1.85;
    margin-right: -5px;
    margin-left: -5px;
  }
}
.p-word__lead span {
  display: inline-block;
}

.p-work__title {
  max-width: 840px;
  width: 100%;
  margin-inline: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-work__title {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
  }
}

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

.p-work__body {
  background-color: #333;
  border-radius: 20px;
  margin-top: 60px;
  max-width: 905px;
  margin-inline: auto;
  background-color: #fff;
  border: 20px solid #333;
}
@media screen and (max-width: 767px) {
  .p-work__body {
    border: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 40px;
    border-bottom: 27px solid #000;
  }
}

.p-work__banner {
  background-color: #fff;
  max-width: 900px;
  margin-inline: auto;
  border-radius: 18px;
  border: 4px solid #333;
  padding: 25px;
  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;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-work__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
    padding: 65px 20px 20px 20px;
  }
}

.p-work__banner-text {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4583333333;
}

.p-work__banner-text .green {
  color: #00CD70;
  font-size: 24px;
  border-bottom: 2px solid #00CD70;
}

.p-work__banner-link {
  display: block;
  width: 68.8235294118%;
}
@media screen and (max-width: 1024px) {
  .p-work__banner-link {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-work__banner-link {
    margin-top: 22px;
    width: 100%;
  }
}

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

.p-work__icon {
  width: 78px;
  height: 78px;
  position: absolute;
  top: -20px;
  left: -20px;
  -webkit-animation: anime1 0.5s ease 0s infinite alternate;
          animation: anime1 0.5s ease 0s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-work__icon {
    top: -15px;
    left: -15px;
  }
}

@-webkit-keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-work__icon img {
  width: 100%;
  height: auto;
}

.p-worry-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 145px 50px 50px 50px;
  position: relative;
  margin-top: -128px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  min-height: 470px;
}
@media screen and (max-width: 767px) {
  .p-worry-item {
    padding: 90px 32px 30px 32px;
    min-height: 0;
  }
}

.p-worry-item::after {
  content: "";
  display: inline-block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid #22B562;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-worry-item::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

.p-worry-item__img {
  width: 314px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -190px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__img {
    width: 200px;
    top: -120px;
  }
}

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

.p-worry-item__text {
  color: #22B562;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__text {
    font-size: 14px;
    line-height: 1.7142857143;
    margin-bottom: 10px;
  }
}

.p-worry-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  min-height: 128px;
}
@media screen and (max-width: 1024px) {
  .p-worry-item__content {
    margin-top: 15px;
    min-height: 0;
    min-height: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-worry-item__content {
    margin-top: 0;
  }
}

.p-worry-item__profiel {
  width: 30.303030303%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-worry-item__profiel {
    width: 50%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-worry-item__profiel {
    width: 30%;
    padding-left: 0;
  }
}

.p-worry-item__grade {
  display: inline-block;
  color: #000;
  font-size: 14px;
  text-align: center;
  border: 1px solid #4D4D4D;
  border-radius: 10px;
  padding: 3px 15px;
  min-width: 110px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__grade {
    font-size: 10px;
    padding: 0px 5px;
    min-width: 70px;
  }
}

.p-worry-item__name {
  color: #22B562;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3333333333;
  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;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__name {
    font-size: 12px;
  }
}

.p-worry-item__name::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-female.svg) no-repeat center/contain;
  margin-top: 3px;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__name::after {
    width: 13px;
    height: 13px;
  }
}

.p-worry-item__name.p-worry-item__name--male::after {
  background: url(../images/icon-male.svg) no-repeat center/contain;
}

.p-worry-item__list {
  width: 63.1313131313%;
}
@media screen and (max-width: 1024px) {
  .p-worry-item__list {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-worry-item__list {
    width: 65%;
  }
}

.p-worry-item__list-item {
  font-size: 14px;
  line-height: 1.2857142857;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-worry-item__list-item {
    font-size: 12px;
    line-height: 1.3333333333;
  }
}

.p-worry-item__list-item:not(:first-child) {
  margin-top: 5px;
}

.p-worry-item__list-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #22B562;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-worry-item__list-item::before {
    width: 8px;
    height: 8px;
    margin-right: 7px;
  }
}

.p-worry {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0%, transparent 200px, #00AB4E 200px, #00AB4E calc(100% - 200px), transparent calc(100% - 200px), transparent 100%);
  padding-bottom: 145px;
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .p-worry {
    background: linear-gradient(to bottom, transparent 0%, transparent 230px, #00AB4E 230px, #00AB4E calc(100% - 80px), transparent calc(100% - 80px), transparent 100%);
    padding-bottom: 65px;
    margin-bottom: -20px;
  }
}

.p-worry::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 240px;
  min-width: 1280px;
  background: url(../images/bg-worry.png) no-repeat center top/cover;
  position: absolute;
  top: 132px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-worry::before {
    background: url(../images/bg-worry-sp.png) no-repeat center top/cover;
    min-width: 627px;
    height: 118px;
  }
}

.p-worry::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 240px;
  min-width: 1280px;
  background: url(../images/bg-worry.png) no-repeat center bottom/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-worry::after {
    background: url(../images/bg-worry-sp.png) no-repeat center bottom/cover;
    min-width: 627px;
    height: 118px;
  }
}

.p-worry__inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-worry__inner {
    padding-right: 27px;
    padding-left: 27px;
  }
}

.p-worry__title {
  width: 722px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-worry__title {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-worry__title img {
  width: 100%;
  height: auto;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .2));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .2));
}

.p-worry__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 58px;
     -moz-column-gap: 58px;
          column-gap: 58px;
  max-width: 1050px;
  margin-inline: auto;
  margin-top: 310px;
}
@media screen and (max-width: 1024px) {
  .p-worry__items {
    grid-template-columns: 1fr;
    row-gap: 360px;
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-worry__items {
    row-gap: 273px;
    margin-top: 250px;
  }
}

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

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