* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4e4e4e;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #FFFFFA 25%, #84E9F2 100%);
  background-attachment: fixed;
}
@media (min-width: 1100px) {
  body {
    min-height: 100vh;
    padding: 49px 104px;
    position: relative;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-pc-layout {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 3%;
}
@media (min-width: 1100px) {
  .l-pc-layout {
    gap: min(80px, 5%);
  }
}
.l-pc-layout__main {
  flex-shrink: 0;
  background: #ffffff;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1100px) {
  .l-pc-layout__main {
    max-width: 375px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 80px;
  }
}
.l-pc-layout__bg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
}
.l-pc-layout__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.l-pc-sidebar-left {
  position: sticky;
  top: 49px;
  align-self: flex-start;
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  height: calc(100vh - 49px);
}
@media screen and (max-width: 1100px) {
  .l-pc-sidebar-left {
    display: none;
  }
}
.l-pc-sidebar-left__logo {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.l-pc-sidebar-left__logo img {
  width: 251px;
  height: auto;
  display: block;
}
.l-pc-sidebar-left__tagline {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1FBBCB;
  text-align: center;
  margin-bottom: 60px;
}
.l-pc-sidebar-left__nav {
  list-style: none;
  padding: 100px 0 0 20px;
  margin: 0;
}
.l-pc-sidebar-left__nav-item {
  margin-bottom: 26px;
  position: relative;
  padding-left: 20px;
}
.l-pc-sidebar-left__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg width="12" height="15" viewBox="0 0 12 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.92511 13.9251L10.9251 7.42017L0.92511 0.92511" stroke="%23FC909D" stroke-width="1.85" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: contain;
}
.l-pc-sidebar-left__nav-link {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e;
  line-height: 1.875;
}
.l-pc-sidebar-left__nav-link:hover {
  color: #6ed3dd;
}

.l-pc-sidebar-right {
  position: sticky;
  top: 49px;
  align-self: flex-start;
  width: min(335px, 35%);
  flex-shrink: 0;
  height: calc(100vh - 98px);
}
@media screen and (max-width: 1100px) {
  .l-pc-sidebar-right {
    display: none;
  }
}
.l-pc-sidebar-right__inner {
  height: 100%;
}
.l-pc-sidebar-right__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4e4e4e;
  text-align: center;
  line-height: 1.67;
  margin-top: 240px;
  margin-bottom: 30px;
}
.l-pc-sidebar-right__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fc909d;
  color: #ffffff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 24px;
  border-radius: 50px;
  width: 100%;
  height: 60px;
  text-align: center;
  position: relative;
}
.l-pc-sidebar-right__cta-btn:hover {
  opacity: 0.9;
}
.l-pc-sidebar-right__sns {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.l-pc-sidebar-right__sns-link {
  display: block;
  width: 40px;
  height: 40px;
}
.l-pc-sidebar-right__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header {
  background-color: #6ed3dd;
  border-bottom: 1px solid #e0e0e0;
}
@media (min-width: 1100px) {
  .p-header {
    display: none;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  height: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .p-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 40px;
  }
}
@media (min-width: 1100px) {
  .p-header__inner {
    padding: 6px 104px;
  }
}
.p-header__logo-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-header__logo-link {
  display: block;
  height: 46px;
}
.p-header__logo {
  width: 208px;
  height: 40px;
}
.p-header__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  margin: 0;
}
.p-header__cta {
  flex-shrink: 0;
}
.p-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fc909d;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 7.5px 16px 7.89px;
  border-radius: 4px;
  width: 130px;
  height: 60px;
  text-align: center;
  white-space: nowrap;
  line-height: 20px;
}

.p-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-fv {
    max-width: 37.5rem;
    margin: 0 auto;
  }
}
@media (min-width: 1100px) {
  .p-fv {
    max-width: 100%;
    border-radius: 0;
  }
}
.p-fv__content {
  width: 100%;
  height: 100%;
}
.p-fv__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-trouble {
  background: linear-gradient(180deg, #6ed3dd 50%, #FCF6CB 50%);
  padding: 0 0 80px;
  position: relative;
}
.p-trouble__bg-top {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  top: 1px;
}
.p-trouble__bg-top img {
  width: 100%;
  height: auto;
  display: block;
}
.p-trouble__bg-bottom {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  bottom: 1px;
}
.p-trouble__bg-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
.p-trouble__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-trouble__inner {
    max-width: 37.5rem;
  }
}
.p-trouble__inner {
  position: relative;
  z-index: 2;
  background: #ffffff;
}
.p-trouble__moyamoya {
  width: 100%;
  height: auto;
}
.p-trouble__header {
  text-align: center;
  position: relative;
  z-index: 3;
}
.p-trouble__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.5;
  background-image: url("../images/corching/titlebg-trouble02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 30px 0;
}
.p-trouble__list-wrap {
  background: #ffffff;
  padding: 0 0 30px;
  position: relative;
  z-index: 3;
}
.p-trouble__list {
  max-width: 265px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
}
.p-trouble__item {
  position: relative;
  padding: 1em 0 1em 1em;
  font-size: 16px;
  color: #4e4e4e;
  line-height: 1.5;
  border-bottom: 2px dotted #e0e0e0;
}
.p-trouble__item p {
  position: relative;
  margin: 0;
}
.p-trouble__item p::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: -1.5em;
  top: 0.5em;
  width: 18px;
  height: 14px;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 5.78571L7.21429 11.5L16.5 1.5" stroke="%23FC909D" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center;
  background-size: contain;
}
.p-trouble__illustration {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 175px;
  height: auto;
  z-index: 2;
}
.p-trouble__illustration img {
  width: 100%;
  height: auto;
}

.p-solution {
  background: #fff4f5;
  padding: 40px 0 34px;
  position: relative;
}
.p-solution::after {
  position: absolute;
  content: "";
  bottom: -9.25vw;
  left: 0;
  width: 100%;
  height: 9.25vw;
  background: #fff4f5;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 10;
}
@media (min-width: 768px) {
  .p-solution::after {
    bottom: -34px;
    height: 34px;
  }
}
.p-solution__inner {
  margin: 0 auto;
  padding: 0 10px;
}
.p-solution__title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.p-solution__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 20px 0 30px;
  background-image: url("../images/corching/titlebg-trouble.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-solution__title-sm {
  display: block;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.p-solution__emphasis {
  color: #fc909d;
}
.p-solution__title-primary {
  color: #6ed3dd;
}
.p-solution__content {
  font-size: 16px;
  line-height: 1.575;
  position: relative;
  z-index: 3;
  padding: 0 10px;
}
.p-solution__content p {
  margin-bottom: 1.5em;
}

.p-coach {
  background: #ffffff;
  padding: 55px 0 40px;
}
.p-coach__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-coach__inner {
    max-width: 37.5rem;
  }
}
.p-coach__inner {
  position: relative;
}
.p-coach__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4e4e4e;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  background: url("../images/corching/bg_stars.svg") no-repeat center;
  background-size: 87%;
  padding: 10px 0;
}
.p-coach__title-sm {
  font-size: 16px;
}
.p-coach__title-accent--pink {
  color: #fc909d;
}
.p-coach__title-accent--cyan {
  color: #1FBBCB;
}
.p-coach__title-accent--bg-pink {
  background-color: #FFE8EA;
  margin: 0 4px;
}
.p-coach__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.p-coach__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-cta {
  background: url("../images/corching/bg-cta.png") no-repeat center;
  background-size: cover;
  padding: 40px 0;
}
.p-cta__inner {
  text-align: center;
  padding: 0 15px;
  margin: 0 auto;
}
.p-cta__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4e4e4e;
  line-height: 1.6;
  margin-bottom: 30px;
}
.p-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fc909d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 24px;
  border-radius: 50px;
  width: min(335px, 100%);
  height: 60px;
  text-align: center;
  gap: 25px;
}
.p-cta__btn-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  width: 10px;
  height: 15px;
  line-height: 0;
}

.p-points {
  background: #6ed3dd;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-points__dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/dots-8px.png");
  background-size: 8px 8px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.p-points__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-points__inner {
    max-width: 37.5rem;
  }
}
.p-points__inner {
  position: relative;
  z-index: 3;
}
.p-points__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}
.p-points__heading-line {
  width: 26px;
  height: auto;
  flex-shrink: 0;
}
.p-points__heading-line--left {
  transform: scaleX(-1);
}
.p-points__heading {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: -0.05em;
}
.p-points__subheading {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}
.p-points__subheading-number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #fcee21;
}
.p-points__subheading-text {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
.p-points__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-point {
  background: #ffffff;
  border-radius: 30px;
  overflow: visible;
  position: relative;
  margin-top: 40px;
}
.p-point__label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #709498;
  color: #ffffff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 3px 30px;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 129px;
  height: 40px;
}
.p-point__label-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}
.p-point__label-number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fcee21;
  line-height: 1;
  position: relative;
  bottom: -1px;
}
.p-point__body {
  padding: 25px 20px;
}
.p-point__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.p-point__icon {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-point__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-point__title {
  flex: 1;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f67685;
  margin: 0;
  line-height: 1.33;
  text-align: left;
}
.p-point__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.79;
  color: #555;
  text-align: justify;
  margin: 0;
}

.p-results {
  background: rgba(255, 245, 158, 0.27);
  padding: 40px 0 65px;
  position: relative;
  overflow: hidden;
  margin-bottom: -25px;
}
.p-results__bg {
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.p-results__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-results__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-results__inner {
    max-width: 37.5rem;
  }
}
.p-results__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-results__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.p-results__header::before, .p-results__header::after {
  content: "";
  width: 85px;
  height: 108px;
  background-image: url("../images/corching/laurel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.p-results__header::before {
  position: absolute;
  left: -20px;
}
.p-results__header::after {
  position: absolute;
  right: -20px;
  transform: scaleX(-1);
}
.p-results__title-wrap {
  text-align: center;
}
.p-results__title-sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.875;
  margin: 0 0 5px;
}
.p-results__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.5;
  letter-spacing: 1.4px;
  margin: 0;
}
.p-results__highlight {
  color: #fc909d;
}
.p-results__subtitle {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.5;
  letter-spacing: 1.4px;
  margin: 0;
}
.p-results__number {
  font-size: 30px;
}
.p-results__desc {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1fbbcb;
  line-height: 1.875;
  margin-bottom: 40px;
}
.p-results__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  position: relative;
}
.p-results__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-results__icon {
  width: 100%;
}
@media (min-width: 768px) {
  .p-results__icon {
    width: 144px;
    height: 150px;
  }
}
.p-results__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-results__label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.875;
}
.p-results__bulb-wrap {
  position: relative;
}
.p-results__bulb {
  position: absolute;
  top: -5%;
  bottom: 0;
  right: -2%;
  left: 0;
  margin: auto;
  width: 72px;
  height: 69px;
  pointer-events: auto;
}
.p-results__bulb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-change {
  background: #ffe8ea;
  border-radius: 30px 30px 0 0;
  padding: 40px 0 0;
  position: relative;
}
.p-change__dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/dots-9px-white.png");
  background-size: 9px 9px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  border-radius: 30px 30px 0 0;
}
.p-change__sparkle {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  margin: auto;
  width: 72%;
  z-index: 2;
  pointer-events: none;
}
.p-change__sparkle img {
  width: 100%;
  height: auto;
}
.p-change__inner {
  position: relative;
  z-index: 3;
  padding: 0 30px 160px;
}
.p-change__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
.p-change__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-change__item {
  position: relative;
  width: 100%;
}
.p-change__item--1 .p-change__bubble, .p-change__item--3 .p-change__bubble, .p-change__item--5 .p-change__bubble, .p-change__item--7 .p-change__bubble {
  margin-right: auto;
  margin-left: 0;
}
.p-change__item--2 .p-change__bubble, .p-change__item--4 .p-change__bubble, .p-change__item--6 .p-change__bubble, .p-change__item--8 .p-change__bubble {
  margin-left: auto;
  margin-right: 0;
}
.p-change__item--1 {
  z-index: 3;
}
.p-change__item--1 .p-change__bubble {
  width: 190px;
}
.p-change__item--1 .p-change__bubble .p-change__text {
  top: 41%;
}
.p-change__item--2 {
  z-index: 2;
}
.p-change__item--2 .p-change__bubble {
  width: 207px;
  margin-top: -35px;
}
.p-change__item--2 .p-change__bubble .p-change__text {
  top: 40%;
}
.p-change__item--3 .p-change__bubble {
  width: 226px;
  margin-top: -20px;
}
.p-change__item--3 .p-change__bubble .p-change__text {
  top: 45%;
}
.p-change__item--4 {
  z-index: 3;
}
.p-change__item--4 .p-change__bubble {
  width: 209px;
  margin-top: -10px;
}
.p-change__item--4 .p-change__bubble .p-change__text {
  top: 43%;
}
.p-change__item--5 .p-change__bubble {
  width: 190px;
  margin-top: -24px;
}
.p-change__item--5 .p-change__bubble .p-change__text {
  top: 41%;
}
.p-change__item--6 {
  z-index: 3;
}
.p-change__item--6 .p-change__bubble {
  width: 231px;
  margin-top: -27px;
}
.p-change__item--6 .p-change__bubble .p-change__text {
  top: 41%;
}
.p-change__item--7 {
  z-index: 2;
}
.p-change__item--7 .p-change__bubble {
  width: 208px;
  margin-top: -35px;
}
.p-change__item--7 .p-change__bubble .p-change__text {
  top: 38%;
}
.p-change__item--8 .p-change__bubble {
  width: 239px;
  margin-top: -10px;
}
.p-change__item--8 .p-change__bubble .p-change__text {
  top: 40%;
}
.p-change__bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-change__bubble-bg {
  width: 100%;
  height: auto;
  display: block;
}
.p-change__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4e4e4e;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  width: 90%;
}
.p-change__illustration {
  width: 142px;
  position: absolute;
  bottom: -8px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.p-change__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.p-about {
  background: #6ed3dd;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}
.p-about__dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/dots-8px.png");
  background-size: 8px 8px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.p-about__lead {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.p-about__header {
  text-align: center;
  margin-bottom: 30px;
}
.p-about__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 5px;
}
.p-about__subtitle {
  line-height: 1;
  margin: 0;
}
.p-about__image {
  margin-bottom: 30px;
  border-radius: 30px;
  overflow: hidden;
}
.p-about__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.p-about__content {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.p-about__content p {
  margin-bottom: 1.5em;
}
.p-about__content p:last-child {
  margin-bottom: 0;
}
.p-about__info {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px 15px 15px;
  margin: 40px 20px 0;
  position: relative;
  z-index: 2;
}
.p-about__info-item {
  margin-bottom: 20px;
}
.p-about__info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-about__info-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #4e4e4e;
  margin: 0;
}
.p-about__info-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f67685;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-bottom: 0.5em;
  border-bottom: 1px dashed #4e4e4e;
}
.p-about__info-image {
  margin-top: 20px;
  border-radius: 0;
  overflow: hidden;
}
.p-about__info-image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-flow {
  background: rgba(255, 232, 234, 0.7);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-flow__dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/dots-9px-white.png");
  background-size: 9px 9px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.p-flow__inner {
  position: relative;
  z-index: 2;
}
.p-flow__header {
  text-align: center;
  padding: 0 20px;
}
.p-flow__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.5;
  margin-bottom: 5px;
}
.p-flow__subtitle {
  line-height: 1;
  margin: 0;
}
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-flow__item {
  position: relative;
}
.p-flow__item--left .p-flow__number {
  right: 40px;
  left: auto;
}
.p-flow__item--left .p-flow__image {
  margin-left: 0;
  margin-right: 20px;
  border-radius: 0 30px 30px 0;
}
.p-flow__item--left .p-flow__image img {
  border-radius: 0 30px 30px 0;
}
.p-flow__item--right .p-flow__number {
  left: 40px;
  right: auto;
}
.p-flow__item--right .p-flow__image {
  margin-left: 20px;
  margin-right: 0;
  border-radius: 30px 0 0 30px;
}
.p-flow__item--right .p-flow__image img {
  border-radius: 30px 0 0 30px;
}
.p-flow__number {
  position: absolute;
  top: -10px;
  width: 80px;
  height: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-flow__image {
  width: calc(100% - 20px);
  height: 200px;
  overflow: hidden;
  margin-top: 42px;
}
.p-flow__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-flow__content {
  padding: 10px 27px 0;
}
.p-flow__item-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #36c5d3;
  line-height: 1.67;
  margin: 0 0 15px;
  padding-bottom: 0.5em;
  border-bottom: 2px dotted #4e4e4e;
}
.p-flow__text {
  font-size: 16px;
  line-height: 1.6;
  color: #4e4e4e;
}
.p-flow__text p {
  margin: 0 0 1em;
}
.p-flow__text p:last-child {
  margin-bottom: 0;
}

.p-profile {
  background: linear-gradient(180deg, #ffffff 0%, #b7f3f6 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-profile__texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/texture-profile.png");
  background-size: 134px 134px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.p-profile__inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.p-profile__header {
  text-align: center;
  margin-bottom: 15px;
}
.p-profile__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.p-profile__subtitle {
  line-height: 1;
  margin: 0;
}
.p-profile__photo-area {
  position: relative;
  margin-bottom: 15px;
}
.p-profile__sparkle {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 288px;
  height: 110px;
  z-index: 1;
  pointer-events: none;
}
.p-profile__sparkle img {
  width: 100%;
  height: auto;
}
.p-profile__photo {
  position: relative;
  width: 156px;
  height: 156px;
  margin: 0 auto;
  z-index: 2;
}
.p-profile__info {
  text-align: center;
  margin-bottom: 20px;
}
.p-profile__role {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e;
  margin-bottom: 10px;
}
.p-profile__name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-profile__name-en {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f67685;
  letter-spacing: 0;
  line-height: 1.9;
}
.p-profile__name-ja {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 1.5;
}
.p-profile__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.p-profile__sns-link {
  display: block;
  width: 55px;
  height: 55px;
}
.p-profile__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-profile__text {
  font-size: 16px;
  line-height: 1.6;
  color: #4e4e4e;
}
.p-profile__text p {
  margin-bottom: 1.5em;
}
.p-profile__text p:last-child {
  margin-bottom: 0;
}

.p-voice {
  background: #6ed3dd;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-voice__dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/corching/dots-8px.png");
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.p-voice__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-voice__inner {
    max-width: 37.5rem;
  }
}
.p-voice__inner {
  position: relative;
  z-index: 2;
}
.p-voice__header {
  text-align: center;
  margin-bottom: 30px;
}
.p-voice__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.p-voice__subtitle {
  line-height: 1;
  margin: 0;
}
.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-voice__item {
  background: #ffffff;
  border-radius: 30px;
  padding: 20px 18px;
  position: relative;
  box-shadow: 0px 0px 4px 0px rgba(21, 46, 51, 0.25);
}
.p-voice__item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.p-voice__item-icon {
  width: 93px;
  flex-shrink: 0;
}
.p-voice__item-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: -45px;
}
.p-voice__item-profile {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.p-voice__item-profile--pink {
  color: #fc909d;
}
.p-voice__item-profile--cyan {
  color: #1FBBCB;
}
.p-voice__item-title {
  display: grid;
  align-items: center;
}
.p-voice__item-title-text {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 22px;
  text-align: left;
  margin: 0;
}
.p-voice__item-separator {
  width: 100%;
  height: 0;
  border-top: 2px dashed #4e4e4e;
  margin-bottom: 20px;
}
.p-voice__item-body {
  font-size: 14px;
  line-height: 1.8;
  color: #4e4e4e;
  position: relative;
  transition: max-height 0.4s ease;
}
.p-voice__item-body p {
  margin-bottom: 1em;
}
.p-voice__item-body p:last-child {
  margin-bottom: 0;
}
.p-voice__item.is-collapsed .p-voice__item-body {
  max-height: 120px;
  overflow: hidden;
}
.p-voice__item:not(.is-collapsed) .p-voice__item-body {
  max-height: none;
  overflow: visible;
}
.p-voice__highlight {
  font-weight: 700;
}
.p-voice__highlight--pink {
  color: #f67685;
}
.p-voice__highlight--cyan {
  color: #36c5d3;
}
.p-voice__item-fade {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.p-voice__item:not(.is-collapsed) .p-voice__item-fade {
  opacity: 0;
}
.p-voice__more {
  display: block;
  width: 158px;
  height: 33px;
  text-align: center;
  background: #709498;
  color: #ffffff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 33px;
  padding: 0;
  border-radius: 50px;
  margin: 15px auto 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
  z-index: 3;
  position: relative;
  border: 0;
  cursor: pointer;
}
.p-voice__more:hover {
  opacity: 0.8;
}

.p-plan {
  background: #ffffff url("../images/corching/bg-plan.png") no-repeat center center;
  background-size: cover;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-plan__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-plan__inner {
    max-width: 37.5rem;
  }
}
.p-plan__inner {
  position: relative;
  z-index: 2;
}
.p-plan__header {
  text-align: center;
  margin-bottom: 40px;
}
.p-plan__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  margin-bottom: 5px;
}
.p-plan__subtitle {
  line-height: 1;
  margin: 0;
}
.p-plan__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.p-plan__item {
  background: #ffffff;
  border: 3px solid #a2c9ce;
  border-radius: 30px;
  overflow: visible;
  position: relative;
}
.p-plan__item--recommend {
  border: 4px solid #36c5d3;
}
.p-plan__recommend-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/corching/bg-plan-pickup.svg") no-repeat center center;
  background-size: contain;
  color: #ffffff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  width: 105px;
  height: 59px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.p-plan__item-header {
  background: #a2c9ce;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 24px 24px 0 0;
  min-height: 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-plan__item--recommend .p-plan__item-header {
  background: #36c5d3;
  min-height: 161px;
}
.p-plan__item-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.p-plan__item--recommend .p-plan__item-title {
  font-size: 24px;
  line-height: 1.1;
}
.p-plan__item-desc {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fc909d;
  line-height: 1.5;
  margin: -10px 0 20px;
}
.p-plan__item-body {
  padding: 30px 18px;
  text-align: center;
}
.p-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}
.p-plan__features li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-plan__price-original {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4e4e4e;
  text-decoration: line-through;
  margin-bottom: 10px;
}
.p-plan__price {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #4e4e4e;
  margin-bottom: 20px;
}
.p-plan__price-num {
  font-size: 38px;
}
.p-plan__price-tax {
  font-size: 16px;
}
.p-plan__discount {
  background: #ffe8ea;
  color: #f67685;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}
.p-plan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fc909d;
  color: #ffffff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: min(16px, 4.5vw);
  font-weight: 700;
  padding: 20px 24px;
  border-radius: 50px;
  width: 100%;
  height: 60px;
  text-align: center;
  position: relative;
  gap: 8px;
}
.p-plan__btn:hover {
  opacity: 0.8;
}
.p-plan__btn-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  width: 10px;
  height: 15px;
  line-height: 0;
}
@media (max-width: 374px) {
  .p-plan__btn-icon {
    right: 7%;
  }
}
.p-plan__note {
  font-size: 14px;
  line-height: 1.8;
  color: #4e4e4e;
}
.p-plan__note p {
  margin-bottom: 0.5em;
}
.p-plan__note p:last-child {
  margin-bottom: 0;
}
.p-plan__note-bullet {
  color: #6ed3dd;
}

.p-faq {
  background: #e7eded;
  padding: 40px 0;
}
.p-faq__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-faq__inner {
    max-width: 37.5rem;
  }
}
.p-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.p-faq__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e4e4e;
  line-height: 30px;
  margin-bottom: 5px;
}
.p-faq__subtitle {
  line-height: 1;
  margin: 0;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-faq__list {
    gap: 30px;
  }
}
.p-faq__item {
  background: #ffffff;
  border-radius: 30px 0 30px 0;
  padding: 25px 20px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}
.p-faq__question {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #4e4e4e;
}
.p-faq__q-label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #36c5d3;
  line-height: 30px;
  flex-shrink: 0;
  padding-top: 0;
}
.p-faq__q-text {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e;
  line-height: 25px;
  margin: 0;
  padding-top: 2px;
}
.p-faq__answer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.p-faq__a-label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fc909d;
  line-height: 30px;
  flex-shrink: 0;
  padding-top: 0;
}
.p-faq__a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.6px;
  color: #4e4e4e;
  margin: 0;
  padding-top: 2px;
}

.p-footer {
  background: #6ed3dd;
  color: #ffffff;
  padding: 37px 0 30px;
}
.p-footer__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-footer__inner {
    max-width: 37.5rem;
  }
}
.p-footer__inner {
  text-align: center;
}
.p-footer__logo {
  margin-bottom: 10px;
}
.p-footer__logo img {
  width: 197px;
  height: auto;
}
.p-footer__coach {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 40px;
}
.p-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.p-footer__sns-link {
  display: block;
  width: 50px;
  height: 50px;
  transition: transform 0.2s;
}
.p-footer__sns-link:hover {
  transform: scale(1.1);
}
.p-footer__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}
.p-footer__nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 25px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-footer__nav a:hover {
  opacity: 0.8;
}
.p-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  line-height: 25px;
  text-align: center;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fadeup--large {
  transform: translateY(30px);
}
.js-fadeup--large.is-visible {
  transform: translateY(0);
}

.u-text-pink {
  color: #fc919e;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-large {
  font-size: 1.5em;
}

.u-text-pink-bold {
  color: #fc919e;
  font-weight: 700;
}

.u-text-large-bold {
  font-size: 1.5em;
  font-weight: 700;
}

.u-text-pink-large-bold {
  color: #fc919e;
  font-size: 1.5em;
  font-weight: 700;
}
/*# sourceMappingURL=page-corching.css.map */
