@charset "UTF-8";
@media screen and (max-width: 1439px) and (min-width: 767px) {
  html {
    font-size: min(1600 / 1440 * 1vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(12px, 1600 / 390 * 1vw, 16px);
  }
}

body {
  color: #333333;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", sans-serif;
  background: #FFFFFF;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #333333;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

img,
svg {
  width: 100%;
  height: 100%;
}

button {
  color: inherit;
  background: transparent;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 11.3125rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 34.375rem;
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 499px) {
  .l-inner {
    max-width: 100%;
  }
}

.l-section {
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 1.875rem;
  }
}
.l-section.--middle {
  padding-block: 3.0625rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-section.--middle {
    padding-block: 1.875rem;
  }
}
.l-section.--small {
  padding-block: 1.8125rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-section.--small {
    padding-block: 1.25rem;
  }
}
.l-section.--bottom {
  padding-block: 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-section.--bottom {
    padding-block: 0.625rem 1.875rem;
  }
}
.l-section.--green {
  background: #ECFFFD;
}

.c-cta {
  text-align: center;
}

.c-cta__title {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  padding-bottom: 2.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-cta__title {
    font-size: 1rem;
    padding-bottom: 1.1875rem;
  }
}
.c-cta__title::after {
  content: "";
  position: absolute;
  background: url("../img/deco_bubble.svg") no-repeat center center/cover;
  width: 32.5625rem;
  height: 1.375rem;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .c-cta__title::after {
    width: 19rem;
    height: 0.75rem;
  }
}

.c-cta__text {
  margin-top: 1.1875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-cta__text {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.c-cta__btn-text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-cta__btn-text {
    margin-top: 1rem;
    font-size: 1rem;
    gap: 1em;
  }
}
.c-cta__btn-text::before, .c-cta__btn-text::after {
  color: #FF8A5D;
}
.c-cta__btn-text::before {
  content: "＼";
}
.c-cta__btn-text::after {
  content: "／";
}

.c-cta__btn {
  margin: 0.3125rem auto 0;
  width: 38.1875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    width: 21.875rem;
  }
}
@media (any-hover: hover) {
  .c-cta__btn:hover {
    opacity: 0.8;
  }
}

.c-cta__fixed {
  position: fixed;
  bottom: 0.625rem;
  left: 50%;
  translate: -50%;
  z-index: 90;
}

.c-cta__fixed {
  position: fixed;
  bottom: 0.625rem;
  left: 50%;
  translate: -50%;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.c-cta__fixed.js-show {
  opacity: 1;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .c-cta__fixed.js-show:hover {
    opacity: 0.8;
  }
}

/* アニメーション前の初期状態 */
.animated__fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* アニメーション後の表示状態 */
.animated__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

.c-green {
  color: #3DC0B2;
}

.c-orange {
  color: #FF8A5D;
}

.c-marker {
  background: linear-gradient(transparent 70%, #fcff8b 70%);
}

.p-fv__title {
  color: #fff;
  text-align: center;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #3dc0b2;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.p-worries {
  padding-block: 3.125rem 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worries {
    padding-block: 1.875rem;
  }
}

.p-worries__title {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-worries__title {
    font-size: 1.25rem;
  }
}
.p-worries__title span {
  font-size: 2.25rem;
  background-image: radial-gradient(circle at center, #3DC0B2 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.7em; /* 点の間隔とサイズ調整 */
  padding-top: 0.9375rem; /* 縦方向の位置調整 */
}
@media screen and (max-width: 767px) {
  .p-worries__title span {
    font-size: 1.5rem;
    background-size: 1em 0.5em; /* 点の間隔とサイズ調整 */
    padding-top: 0.375rem; /* 縦方向の位置調整 */
  }
}

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

.p-worries__item:nth-of-type(3) .p-worries__item-title {
  margin-top: 0;
  padding-bottom: 1.25rem;
}

.p-worries__num {
  color: #3DC0B2;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-worries__num {
    font-size: 0.75rem;
  }
}

.p-worries__item-title {
  margin-top: 1.125rem;
  color: #FF8A5D;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  padding-bottom: 2.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-worries__item-title {
    margin-top: 0.25rem;
    font-size: 1.125rem;
    padding-bottom: 1.3125rem;
  }
}
.p-worries__item-title::after {
  content: "";
  position: absolute;
  background: url("../img/deco_bubble.svg") no-repeat center center/cover;
  width: 20.375rem;
  height: 0.75rem;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-worries__item-title::after {
    width: 18.75rem;
    height: 0.6875rem;
  }
}

.p-worries__text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-worries__text {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}
.p-worries__text span {
  font-weight: 600;
  display: inline;
}

.p-warries__img {
  width: 23.9375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-warries__img {
    margin-top: 1.875rem;
    width: 11.25rem;
  }
}

.p-resolve {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-resolve {
    padding-bottom: 1.875rem;
  }
}

.p-resolve__title-wrap {
  padding-block: 3.3125rem 4rem;
  background: url("../img/bg_resolve-title.svg") no-repeat center center/cover;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-resolve__title-wrap {
    padding-block: 0.6875rem 2.1875rem;
    background: url("../img/sp_bg_resolve-title.svg") no-repeat center center/cover;
  }
}
.p-resolve__title-wrap::before {
  content: "＼";
}
.p-resolve__title-wrap::after {
  content: "／";
}

.p-resolve__title {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-resolve__title {
    font-size: 1.25rem;
  }
}
.p-resolve__title span {
  color: #3DC0B2;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-resolve__title span {
    font-size: 1.25rem;
  }
}

.p-resolve__lists {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-resolve__lists {
    margin-top: 1.25rem;
    gap: 0.625rem;
  }
}

.p-resolve__list {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  padding-left: 2.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-resolve__list {
    font-size: 1rem;
    padding-left: 1.5625rem;
  }
}
.p-resolve__list span {
  display: inline;
}
.p-resolve__list::before {
  content: "";
  position: absolute;
  background: url("../img/icon_check.svg") no-repeat center center/cover;
  width: 1.5625rem;
  height: 1.5625rem;
  top: 0.1875rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-resolve__list::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 0.3125rem;
  }
}

.p-resolve__img {
  width: 26.625rem;
  height: auto;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-resolve__img {
    width: 14.9375rem;
  }
}

.p-resolve__bottom-title {
  margin-top: 7.5rem;
  font-size: 2rem;
  letter-spacing: 0.01em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-title {
    margin-top: 4.375rem;
    font-size: 1.25rem;
  }
}
.p-resolve__bottom-title::before {
  content: "";
  position: absolute;
  width: 0.1875rem;
  height: 3.75rem;
  background: #3DC0B2;
  top: -5.625rem;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-title::before {
    width: 0.125rem;
    height: 2.5rem;
    top: -3.75rem;
  }
}

.p-resolve__bottom-text {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
.p-resolve__bottom-text p {
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-text p {
    display: inline-block;
  }
}

.p-resolve__bottom-text--blue {
  color: #377CC8;
  border-bottom: 0.0625rem solid #377CC8;
}
.p-resolve__bottom-text--blue span {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-text--blue span {
    font-size: 1.25rem;
  }
}

.p-resolve__bottom-graph {
  display: block;
  margin: 3.75rem auto 0;
  width: 61.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-graph {
    margin: 1.875rem auto 0;
    width: 21.875rem;
  }
}

.p-resolve__bottom-price {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-price {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
.p-resolve__bottom-price .green {
  color: #3DC0B2;
}
.p-resolve__bottom-price .large {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-price .large {
    font-size: 1.5rem;
  }
}

.p-resolve__bottom-img {
  display: block;
  margin: 3.75rem auto 0;
  width: 53.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-resolve__bottom-img {
    margin: 1.25rem auto 0;
    width: 21.875rem;
  }
}

.p-difference {
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-difference__title {
  background: #FFFFFF;
  border: 0.0625rem solid #3DC0B2;
  padding: 0.75rem 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  max-width: 54.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-difference__title {
    padding: 0.625rem 2.4375rem;
    font-size: 1.25rem;
  }
  .p-difference__title small {
    font-size: 1rem;
  }
}

.p-difference__table {
  margin-top: 3.75rem;
  margin-inline: auto;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-difference__table {
    margin-top: 1.25rem;
  }
}
.p-difference__table thead {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-difference__table thead {
    font-size: 0.875rem;
  }
}
.p-difference__table thead th,
.p-difference__table thead td {
  background: transparent !important;
  border: none !important;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-difference__table thead th,
  .p-difference__table thead td {
    padding-top: 0;
    padding-bottom: 0.5rem;
  }
}
.p-difference__table tbody {
  font-size: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-difference__table tbody {
    font-size: 0.875rem;
  }
}
.p-difference__table tbody tr:first-child th:first-of-type {
  border-top-left-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-difference__table tbody tr:first-child th:first-of-type {
    border-top-left-radius: 1.25rem;
  }
}
.p-difference__table tbody tr:first-child td:last-of-type {
  border-top-right-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-difference__table tbody tr:first-child td:last-of-type {
    border-top-right-radius: 1.25rem;
  }
}
.p-difference__table tbody tr:last-child th:first-of-type {
  border-bottom-left-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-difference__table tbody tr:last-child th:first-of-type {
    border-bottom-left-radius: 1.25rem;
  }
}
.p-difference__table tbody tr:last-child td:last-of-type {
  border-bottom-right-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-difference__table tbody tr:last-child td:last-of-type {
    border-bottom-right-radius: 1.25rem;
  }
}
.p-difference__table tbody span {
  font-weight: 300;
}
.p-difference__table th,
.p-difference__table td {
  border-right: 0.1875rem solid #3DC0B2;
  border-bottom: 0.1875rem solid #3DC0B2;
}
.p-difference__table th:first-of-type {
  border-left: 0.1875rem solid #3DC0B2;
}
.p-difference__table tr:first-child th,
.p-difference__table tr:first-child td {
  border-top: 0.1875rem solid #3DC0B2;
}
.p-difference__table tr:last-child th,
.p-difference__table tr:last-child td {
  border-bottom: 0.1875rem solid #3DC0B2;
}
.p-difference__table th {
  width: 12.5rem;
  padding-block: 0.875rem;
  background: #FFFFFF;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-difference__table th {
    width: 4.875rem;
    padding-block: 0.8125rem;
  }
}
.p-difference__table td {
  width: 21.875rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-difference__table td {
    width: 8.5rem;
    padding-block: 0.625rem;
  }
}
.p-difference__table td:first-of-type {
  background: #f8f8f8;
}
.p-difference__table td:last-of-type {
  background: #fff1eb;
}

.p-example__title {
  font-size: 2rem;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-example__title {
    font-size: 1.25rem;
  }
}

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

.p-example__item {
  padding: 2.375rem 2.625rem 2.5rem;
  border-radius: 1.5625rem;
  border: 0.1875rem solid #3DC0B2;
}
.p-example__item:last-child {
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-example__item:last-child {
    padding: 1.5625rem 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-example__item {
    padding: 1.5625rem 1.875rem;
    border: 0.125rem solid #3DC0B2;
  }
}
.p-example__item img {
  width: 9.625rem;
  height: auto;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-example__item img {
    width: 6.25rem;
  }
}

.p-example__job {
  margin-top: 1.125rem;
  color: #3DC0B2;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
  text-align: center;
  letter-spacing: 0.01em;
  background-image: linear-gradient(to right, #3DC0B2 4px, transparent 4px);
  background-size: 8px 1.5px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 767px) {
  .p-example__job {
    margin-top: 1.25rem;
  }
}

.p-example__tags {
  margin-top: 0.875rem;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-example__tags {
    margin-top: 0.625rem;
    gap: 0.3125rem;
  }
}

.p-example__tag {
  border-radius: 0.9375rem;
  background: #3DC0B2;
  color: #ECFFFD;
  text-align: center;
  padding: 0 0.625rem;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-example__tag {
    padding: 0.125rem 0.9375rem 0.1875rem;
    font-size: 1rem;
  }
}

.p-example__item-title {
  margin: 1.25rem auto 0;
  width: fit-content;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}
.p-example__item-title:last-of-type {
  margin: 0.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-example__item-title {
    margin: 0.625rem auto 0;
    font-size: 1.5rem;
  }
}
.p-example__item-title p,
.p-example__item-title span {
  display: inline;
}
.p-example__item-title p {
  font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-example__item-title p {
    font-size: 1.5rem;
  }
}
.p-example__item-title span {
  font-size: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-example__item-title span {
    font-size: 2rem;
  }
}

.p-example__text {
  margin-top: 1.875rem;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-example__text {
    margin-top: 0.625rem;
    text-align: center;
    font-size: 0.625rem;
  }
}

.p-reason__title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    font-size: 1.25rem;
  }
}

.p-reason__text {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    font-size: 1rem;
  }
}

.p-reason__lists {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  max-width: 52.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-reason__lists {
    margin-top: 1.875rem;
    gap: 1.25rem;
  }
}

.p-reason__list {
  padding-bottom: 1.875rem;
  border-bottom: 0.125rem solid #3DC0B2;
  display: flex;
  align-items: start;
  gap: 0.6875rem;
}
.p-reason__list:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    padding-bottom: 1.25rem;
  }
}
.p-reason__list img {
  width: 5.3125rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__list img {
    width: 2.8125rem;
  }
}

.p-reason__list-item {
  flex-grow: 1;
}

.p-reason__list-title {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-reason__list-title {
    font-size: 1rem;
  }
}

.p-reason__list-text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-reason__list-text {
    font-size: 0.875rem;
  }
}

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

.p-plan__title {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-plan__title {
    font-size: 1.25rem;
  }
}

.p-plan__bubble {
  margin: 3.375rem auto 0;
  width: 18.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-plan__bubble {
    margin: 1.25rem auto 0;
    width: 11.0625rem;
  }
}

.p-plan__price {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-plan__price {
    font-size: 1.5rem;
  }
}
.p-plan__price span {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-plan__price span {
    font-size: 2.5rem;
  }
}

.p-plan__lists {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan__lists {
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 0.625rem;
    align-items: start;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-plan__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-plan__list {
    font-size: 1rem;
  }
}
.p-plan__list::before {
  content: "";
  background: url("../img/icon_check.svg") no-repeat center center/cover;
  width: 1.5625rem;
  height: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__list::before {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.p-faq__title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.25rem;
  }
}

.p-faq__wrap {
  margin: 3.75rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 56.5625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__wrap {
    margin: 1.25rem auto 0;
    gap: 1.25rem;
  }
}

.p-faq__item {
  border: 0.125rem solid #3DC0B2;
}

.p-faq__q {
  padding: 0.625rem 1.25rem;
  background: #3DC0B2;
  color: #FFFFFF;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    padding: 0.5rem 0.1875rem 0.375rem 0.625rem;
    font-size: 1rem;
  }
}

.p-faq__a {
  padding: 1.25rem;
  background: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    padding: 0.625rem;
    font-size: 1rem;
  }
}
.p-faq__a .list {
  display: flex;
  align-items: start;
  gap: 0.125rem;
}
.p-faq__a .list::before {
  content: "⚪︎";
  font-weight: 300;
}

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