@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
  font: inherit;
  font-size: 100%;
  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;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 63px;
  font-size: 16px;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

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

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

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  opacity: 0.8; /* ホバー時の透過度を設定 */
}
@media screen and (min-width: 800px) {
  a:hover {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-inner {
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .l-inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .l-inner {
    padding-inline: 100px;
    max-width: 1280px;
  }
}

.l-header {
  z-index: 997;
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  height: 62px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 800px) {
  .l-header {
    position: sticky;
    right: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
  }
}

.l-header__inner {
  position: relative;
  padding-inline: 15px;
  padding-block: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .l-header__inner {
    padding-inline: 24px;
    margin-inline: auto;
    display: block;
  }
}

.l-header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo {
  width: 165px;
}
@media screen and (min-width: 800px) {
  .l-header__logo {
    width: 280px;
  }
}

.l-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#dfb8c4), to(#b7a4c9));
  background: linear-gradient(90deg, #dfb8c4 0%, #b7a4c9 100%);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 800px) {
  .l-header__btn {
    padding: 10px 20px;
  }
}
.l-header__btn:hover {
  opacity: 1;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.l-header__btn span {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71429;
}
@media screen and (min-width: 800px) {
  .l-header__btn span {
    font-size: 1rem;
    line-height: 1.5; /* 150% */
  }
}

.l-footer {
  background-color: #222; /* フッターの背景色 */
  color: #fff; /* テキストの色 */
  padding-block: 17px 62px;
}
@media screen and (min-width: 800px) {
  .l-footer {
    padding-block: 21px 62px;
  }
}

.footer-inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .footer-inner {
    padding-inline: 36px;
    max-width: 1366px;
    margin-inline: auto;
  }
}

.footer__copyright {
  text-align: center;
  padding-top: 10px;
  font-size: 0.75rem; /* コピーライトのフォントサイズ */
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0px;
}
@media screen and (min-width: 800px) {
  .footer__copyright {
    padding-top: 0;
  }
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-button {
  border: solid 1px #fff;
  display: block;
  font-size: 1.125rem;
  width: clamp(345px, 345px + (205) * (100vw - 375px) / (1280 - 375), 550px);
  height: clamp(40px, 40px + (35) * (100vw - 375px) / (1280 - 375), 75px);
  display: grid;
  place-items: center;
  text-align: center;
}
/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.p-fv__inner {
  width: 100%;
  height: auto;
}
.p-fv__inner img {
  width: 100%;
  height: auto;
  display: inline;
}
.p-fv__inner picture {
  display: inline;
}
/*----------------------------------
    about
-----------------------------------*/
.p-about {
  overflow-x: hidden;
  padding-block: 30px;
}
@media screen and (min-width: 800px) {
  .p-about {
    padding-block: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about {
    padding-block: 30px;
  }
}

.p-about__bubbles {
  padding-inline: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 450px;
  margin-inline: auto;
  gap: 9px;
}
@media screen and (min-width: 800px) {
  .p-about__bubbles {
    max-width: 680px;
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bubbles {
    max-width: 900px;
  }
}

.p-about__bubble-1 {
  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;
  gap: 19px;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-1 {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.p-about__bubble-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-2 {
    padding-left: 100px;
    margin-top: -59px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bubble-2 {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -69px;
  }
}

.p-about__bubble-img {
  width: 90px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-img {
    width: 110px;
  }
}
.p-about__bubble-img::before {
  content: "";
  position: absolute;
  width: 103px;
  height: 103px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-about__bubble-img--1::before {
  left: -50px;
  top: 97%;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-img--1::before {
    left: -85px;
    top: 115%;
    width: 145px;
    height: 145px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bubble-img--1::before {
    left: -140px;
    top: 100%;
    width: 166px;
    height: 166px;
  }
}

.p-about__bubble-img--2::before {
  right: -67px;
  top: 14%;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-img--2::before {
    right: -90px;
    top: 0%;
    width: 166px;
    height: 166px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bubble-img--2::before {
    right: -145px;
    top: 50%;
    width: 190px;
    height: 190px;
  }
}

.p-about__bubble-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  padding: 10px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 20px;
  border: 2px solid #b7a4c9;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-about__bubble-text {
    max-width: 544px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__bubble-text {
    max-width: none;
  }
}
.p-about__bubble-text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
}

.p-about__bubble-text--1::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: -10deg;
  width: 14px;
  height: 2px;
  background-color: #b7a4c9;
}

.p-about__bubble-text--2::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 7deg;
  width: 24px;
  height: 2px;
  background-color: #b7a4c9;
}

.p-about__contents {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .p-about__contents {
    padding-top: 0px;
  }
}

.p-about__text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5; /* 150% */
}

.p-about__title {
  color: #555;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}

.p-about__text--3 span {
  display: inline;
}

/*----------------------------------
    introduction
-----------------------------------*/
.p-introduction {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 197, 207, 0.2)), to(rgba(175, 157, 192, 0.2)));
  background: linear-gradient(180deg, rgba(230, 197, 207, 0.2) 0%, rgba(175, 157, 192, 0.2) 100%);
  padding-block: 56px 28px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-introduction {
    padding-block: 78px 39px;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction {
    padding-block: 119px 58px;
  }
}
.p-introduction::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 800px) {
  .p-introduction::after {
    height: 38px;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction::after {
    height: 59px;
  }
}

.p-introduction__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-introduction__title h2 {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.47;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-introduction__title h2 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
@media screen and (min-width: 800px) {
  .p-introduction__title h2 {
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction__title h2 {
    font-size: 1.75rem;
  }
}
.p-introduction__title .p-introduction__title-img-left {
  position: absolute;
  top: 6px;
  left: -40px;
  width: 25px;
}
@media screen and (min-width: 800px) {
  .p-introduction__title .p-introduction__title-img-left {
    width: 30px;
    left: -44px;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction__title .p-introduction__title-img-left {
    width: 35px;
    left: -49px;
  }
}
.p-introduction__title .p-introduction__title-img-right {
  position: absolute;
  top: 6px;
  right: -40px;
  width: 25px;
}
@media screen and (min-width: 800px) {
  .p-introduction__title .p-introduction__title-img-right {
    width: 30px;
    right: -44px;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction__title .p-introduction__title-img-right {
    width: 35px;
    right: -49px;
  }
}

.p-introduction__title-strong {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.27;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-introduction__title-strong {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
@media screen and (min-width: 800px) {
  .p-introduction__title-strong {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction__title-strong {
    font-size: 2rem;
  }
}

.p-introduction__title-img {
  padding-top: 14px;
  width: 41px;
  margin-inline: auto;
}

.p-introduction__text {
  margin-inline: auto;
  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;
}
.p-introduction__text p {
  /* 大きめP（regular18） */
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5; /* 150% */
}

.p-introduction__contents {
  background-color: #fff;
  padding-inline: 20px;
  padding-block: 25px;
  margin-top: 31px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .p-introduction__contents {
    max-width: none;
    padding-block: 24px;
    padding-inline: 17px;
  }
}
@media screen and (min-width: 800px) and (min-width: 1280px) {
  .p-introduction__contents {
    padding-block: 40px;
    padding-inline: 39px;
  }
}

.p-introduction__contents-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 800px) {
  .p-introduction__contents-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-introduction__contents-items {
    gap: 40px;
  }
}

.p-introduction__contents-item {
  width: 100%;
  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;
  gap: 15px;
}
@media screen and (min-width: 800px) {
  .p-introduction__contents-item {
    width: calc((100% - 64px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-introduction__contents-item-title-en {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  padding-inline: 10px;
}
.p-introduction__contents-item-title-en p {
  text-align: center;
  /* 英字（36、30、） */
  font-family: "Cinzel Decorative", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9; /* 90% */
}
@media screen and (min-width: 1280px) {
  .p-introduction__contents-item-title-en p {
    font-size: 2.25rem;
    line-height: 0.75; /* 90% */
  }
}

.p-introduction__contents-item-title-en--purple p {
  color: #a68ebd;
}

.p-introduction__contents-item-title-en--pink p {
  color: #c594a3;
}

.p-introduction__contents-item-title-en--brown p {
  color: #b7a57c;
}

.p-introduction__contents-item-title-ja p {
  color: #555;
  text-align: center;
  /* H5（zen kaku bold20） */
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.35; /* 135% */
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-introduction__contents-item-title-ja p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

.p-introduction__contents-item-text p {
  color: #333;
  /* P（regular16、段落10） */
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* 150% */
}
.p-introduction__contents-item-text p + p {
  margin-top: 10px;
}
@media screen and (min-width: 800px) {
  .p-introduction__contents-item-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-introduction__contents-item-text p:last-child {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .p-introduction__contents-item-text p + p {
    margin-top: 10px;
  }
}
.p-introduction__contents-item-text p {
  color: #333;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-introduction__contents-item-top-border {
  width: 100%;
  height: 25px;
}

.p-introduction__contents-item-top-border--purple {
  border-top: 1px solid #af9dc0;
  border-left: 1px solid #af9dc0;
  border-right: 1px solid #af9dc0;
  border-bottom: 0px;
}

.p-introduction__contents-item-top-border--pink {
  border-top: 1px solid #dfb8c4;
  border-left: 1px solid #dfb8c4;
  border-right: 1px solid #dfb8c4;
  border-bottom: 0px;
}

.p-introduction__contents-item-top-border--brown {
  border-top: 1px solid #d1c098;
  border-left: 1px solid #d1c098;
  border-right: 1px solid #d1c098;
  border-bottom: 0px;
}

.p-introduction__contents-item-bottom-border {
  margin-top: -5px;
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 800px) {
  .p-introduction__contents-item-bottom-border {
    margin-top: -7px;
  }
}

.p-introduction__contents-item-bottom-border--purple {
  border-top: 0px;
  border-left: 1px solid #b7a4c9;
  border-right: 1px solid #b7a4c9;
  border-bottom: 1px solid #b7a4c9;
}

.p-introduction__contents-item-bottom-border--pink {
  border-top: 0px;
  border-left: 1px solid #dfb8c4;
  border-right: 1px solid #dfb8c4;
  border-bottom: 1px solid #dfb8c4;
}

.p-introduction__contents-item-bottom-border--brown {
  border-top: 0px;
  border-left: 1px solid #d1c098;
  border-right: 1px solid #d1c098;
  border-bottom: 1px solid #d1c098;
}

/*----------------------------------
    lessons
-----------------------------------*/
.p-lessons {
  padding-block: 40px 32px;
}
@media screen and (min-width: 800px) {
  .p-lessons {
    padding-block: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-lessons {
    padding-block: 40px 58px;
  }
}

.p-lessons__inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .p-lessons__inner {
    padding-inline: 40px;
  }
}

.p-lesson__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.p-lesson__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  display: flex;
  padding: 7px 10px;
  border-radius: 12px;
  border: 2px solid #d1c098;
  color: #b7a57c;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71; /* 171.429% */
  min-width: 160px;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-lesson__button:hover {
  opacity: 1;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
@media screen and (min-width: 800px) {
  .p-lesson__button {
    font-size: 1rem;
    padding: 9px 19px;
    line-height: 1.5;
    min-width: 180px;
  }
}

.p-lesson__button-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-lessons__top {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .p-lessons__top {
    padding-top: 29px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 800px) and (min-width: 1280px) {
  .p-lessons__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

@media screen and (min-width: 800px) {
  .p-lessons__title-box {
    padding-inline: 10px;
    width: 266px;
  }
}
@media screen and (min-width: 800px) and (min-width: 1280px) {
  .p-lessons__title-box {
    padding-inline: 0px;
    width: 296px;
    margin-left: -80px;
  }
}

#lesson-2 .p-lessons__top {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  #lesson-2 .p-lessons__top {
    padding-top: 29px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 800px) and (min-width: 1280px) {
  #lesson-2 .p-lessons__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
@media screen and (min-width: 800px) {
  #lesson-2 .p-lessons__title-box {
    padding-inline: 0px;
    width: 289px;
    margin-left: 10px;
  }
}
@media screen and (min-width: 1280px) {
  #lesson-2 .p-lessons__title-box {
    margin-left: 0px;
  }
}

.p-lessons__title h2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.27; /* 117.241% */
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-lessons__title h2 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
@media screen and (min-width: 800px) {
  .p-lessons__title h2 {
    text-align: center;
    font-size: 1.625rem;
    line-height: 1.14;
  }
}
@media screen and (min-width: 1280px) {
  .p-lessons__title h2 {
    font-size: 2rem;
  }
}

.p-lessons__title-num {
  color: #333;
  text-align: center;
  /* 数字（月） */
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.8125rem;
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.17; /* 117.241% */
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-lessons__title-num {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
@media screen and (min-width: 800px) {
  .p-lessons__title-num {
    font-size: 2.125rem;
    line-height: 1.14;
  }
}
@media screen and (min-width: 1280px) {
  .p-lessons__title-num {
    font-size: 2.625rem;
  }
}

.p-lessons__title-img {
  padding-top: 11px;
  width: 41px;
  margin-inline: auto;
}

.p-lessons__title-en {
  margin-top: -8px;
}
@media screen and (min-width: 800px) {
  .p-lessons__title-en {
    margin-top: -5px;
  }
}
.p-lessons__title-en p {
  color: #a49f94;
  text-align: center;
  font-family: "Cinzel Decorative", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.12; /* 112.5% */
}

.p-lessons__link-box {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.5px;
}
.p-lessons__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (min-width: 800px) {
  .p-lessons__link {
    gap: 5px;
  }
}

.p-lessons__link-label {
  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;
  min-width: 60px;
  height: 25px;
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
  border-radius: 5px;
}

.p-lessons__link-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/*----------------------------------
    swiper
-----------------------------------*/
.p-lessons__main {
  padding-top: 39px;
}
@media screen and (min-width: 1280px) {
  .p-lessons__main {
    padding-top: 40px;
  }
}
.p-lessons__main .swiper {
  max-width: 1620px;
}
.p-lessons__main .swiper .swiper-wrapper {
  padding-bottom: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: -webkit-grab;
  cursor: grab;
}
.p-lessons__main .swiper .swiper-wrapper:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-lessons__main .swiper .swiper-slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px !important;
}
@media screen and (min-width: 1280px) {
  .p-lessons__main .swiper .swiper-slide {
    width: 350px !important;
  }
}
.p-lessons__main .p-lessons__main-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 300px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1280px) {
  .p-lessons__main .p-lessons__main-item {
    width: 350px;
  }
}
.p-lessons__main .p-lessons__main-item-label {
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-lessons__main .p-lessons__main-item-label::before {
  content: "";
  position: absolute;
  right: -7.9px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 21px 12px;
}
.p-lessons__main .p-lessons__main-item-label::after {
  content: "";
  position: absolute;
  right: -7.9px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 0 0 12px;
}
.p-lessons__main .p-lessons__main-item-label-text {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.43; /* 142.857% */
}
.p-lessons__main .p-lessons__main-item-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.p-lessons__main .p-lessons__main-item-img img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lessons__main .p-lessons__main-item-text {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-lessons__main .p-lessons__main-item-text p {
  text-align: center;
  line-height: 1.5;
  color: #555;
  text-align: center;
  /* H5（zen kaku bold20） */
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35; /* 135% */
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-lessons__main .p-lessons__main-item-text p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
.p-lessons__main .p-lessons__main-item-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}
.p-lessons__main .p-lessons__main-item-points {
  margin-top: 23px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 12px 17px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #b7a4c9;
  background: #fff;
  margin-inline: 20px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-lessons__main .p-lessons__main-item-points {
    margin-top: 26px;
    margin-inline: 45px;
  }
}
.p-lessons__main .p-lessons__main-item-points-title {
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  background: #fff;
}
.p-lessons__main .p-lessons__main-item-points-title p {
  text-align: center;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.p-lessons__main .p-lessons__main-item-point-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.p-lessons__main .p-lessons__main-item-point-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
.p-lessons__main .p-lessons__main-item-point-text-item i {
  margin-top: 4px;
}
.p-lessons__main .p-lessons__main-item-spacer {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 20px;
}
.p-lessons__main .p-lessons__main-item-btn-wrapper {
  margin-top: auto;
  margin-bottom: 20px;
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .p-lessons__main .p-lessons__main-item-btn-wrapper {
    padding-top: 14px;
  }
}
.p-lessons__main .p-lessons__main-item-btn a {
  display: block;
  text-align: center;
}
.p-lessons__main .fa-circle-check {
  color: #b7a4c9;
}
.p-lessons__main .p-lessons__main-item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 2px;
}
.p-lessons__main .p-lessons__main-item-btn-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.p-lessons__main .p-lessons__main-item-points-title-purple {
  color: #a68ebd;
  border: 1px solid #b7a4c9;
}
.p-lessons__main .p-lessons__main-item-points-title-pink {
  color: #c594a3;
  border: 1px solid #dfb8c4;
}
.p-lessons__main .p-lessons__main-item-points-title-brown {
  color: #b7a57c;
  border: 1px solid #d1c098;
}
.p-lessons__main .p-lessons__main-item-points-purple {
  border: 1px solid #b7a4c9;
  background: #fff;
}
.p-lessons__main .p-lessons__main-item-point-text-purple .fa-circle-check {
  color: #b7a4c9;
}
.p-lessons__main .p-lessons__main-item-points-pink {
  border: 1px solid #dfb8c4;
  background: #fff;
}
.p-lessons__main .p-lessons__main-item-point-text-pink .fa-circle-check {
  color: #dfb8c4;
}
.p-lessons__main .p-lessons__main-item-points-brown {
  border: 1px solid #d1c098;
  background: #fff;
}
.p-lessons__main .p-lessons__main-item-point-text-brown .fa-circle-check {
  color: #d1c098;
}
.p-lessons__main .p-lessons__main-item-btn-purple {
  color: #a68ebd;
  border-bottom: 1px solid #a68ebd;
}
.p-lessons__main .p-lessons__main-item-btn-purple svg path {
  fill: #a68ebd;
}
.p-lessons__main .p-lessons__main-item-btn-pink {
  color: #c594a3;
  border-bottom: 1px solid #c594a3;
}
.p-lessons__main .p-lessons__main-item-btn-pink svg path {
  fill: #c594a3;
}
.p-lessons__main .p-lessons__main-item-btn-brown {
  color: #b7a57c;
  border-bottom: 1px solid #b7a57c;
}
.p-lessons__main .p-lessons__main-item-btn-brown svg path {
  fill: #b7a57c;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

#lesson-2 {
  padding-top: 30px;
}

/*----------------------------------
    voice
-----------------------------------*/
.p-voice {
  padding-block: 30px 34px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 184, 196, 0.2)), to(rgba(183, 164, 201, 0.2)));
  background: linear-gradient(180deg, rgba(223, 184, 196, 0.2) 0%, rgba(183, 164, 201, 0.2) 100%);
}
@media screen and (min-width: 800px) {
  .p-voice {
    padding-block: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-voice {
    padding-block: 60px;
  }
}

.p-voice__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 15px 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  border-radius: 30px;
  border-bottom: 1px solid #c594a3;
  border-left: 1px solid #c594a3;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-voice__title::before {
  content: "";
  position: absolute;
  left: 45%;
  bottom: -8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 53deg;
  width: 33px;
  height: 1px;
  background-color: #c594a3;
}
.p-voice__title h2 {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.27; /* 127.273% */
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-voice__title h2 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
@media screen and (min-width: 800px) {
  .p-voice__title h2 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-voice__title h2 {
    font-size: 2rem;
    line-height: 1.25; /* 127.273% */
  }
}

.p-voice__title-img {
  width: 41px;
  margin-inline: auto;
  padding-top: 28px;
}

.p-voice__title-en {
  margin-inline: auto;
  margin-top: -8px;
}
.p-voice__title-en p {
  color: #a49f94;
  text-align: center;
  font-family: "Cinzel Decorative", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.12; /* 112.5% */
}

.p-voice__contents {
  padding-top: 23px;
}
@media screen and (min-width: 800px) {
  .p-voice__contents {
    max-width: 960px;
    margin-inline: auto;
    padding-top: 19px;
  }
}
@media screen and (min-width: 1280px) {
  .p-voice__contents {
    padding-top: 25px;
  }
}

.p-voice__contents-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media screen and (min-width: 670px) {
  .p-voice__contents-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .p-voice__contents-items {
    gap: 40px;
  }
}

.p-voice__contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 670px) {
  .p-voice__contents-item {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 1280px) {
  .p-voice__contents-item {
    width: calc(50% - 20px);
  }
}
.p-voice__contents-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfb8c4;
}

.p-voice__contents-item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
}

.p-voice__contents-item-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-voice__contents-item-name p {
  color: #555;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}
@supports (-webkit-hyphens: none) and (not (-ms-hyphens: none)) {
  .p-voice__contents-item-name p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

.p-voice__contents-item-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 9px;
}
.p-voice__contents-item-text p {
  /* P（regular16、段落10） */
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* 150% */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-voice__contents-item-text p + p {
  padding-top: 10px;
}

/*----------------------------------
    cta
-----------------------------------*/
.p-cta {
  background: -webkit-gradient(linear, left top, left bottom, from(#dfb8c4), to(#b7a4c9));
  background: linear-gradient(180deg, #dfb8c4 0%, #b7a4c9 100%);
  padding-block: 30px;
}
@media screen and (min-width: 800px) {
  .p-cta {
    padding-block: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-cta {
    padding-block: 60px;
  }
}

.p-cta__inner {
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .p-cta__inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .p-cta__inner {
    padding-inline: 100px;
    max-width: 1280px;
  }
}

.p-cta__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
}
@media screen and (min-width: 690px) {
  .p-cta__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 32px;
  }
}
@media screen and (min-width: 800px) {
  .p-cta__contents {
    gap: 41px;
    max-width: 960px;
    margin-inline: auto;
  }
}

.p-cta__contents-item {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-cta__contents-item:hover {
  opacity: 1;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.p-cta__contents-item-title-sub {
  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;
  border-radius: 64px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-cta__contents-item-title-sub::before {
  content: "";
  position: absolute;
  left: 45%;
  bottom: -8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 53deg;
  width: 33px;
  height: 1px;
  background-color: #fff;
}
.p-cta__contents-item-title-sub p {
  color: #555;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.43; /* 143.75% */
}

.p-cta__contents-item-title-sub-basic {
  padding: 10px 21px;
}
@media screen and (min-width: 1280px) {
  .p-cta__contents-item-title-sub-basic {
    padding: 10px 15px;
  }
}

.p-cta__contents-item-title-sub-bon {
  padding: 10px 28px;
}
@media screen and (min-width: 1280px) {
  .p-cta__contents-item-title-sub-bon {
    padding: 10px 21px;
  }
}

.p-cta__contents-item-title {
  padding-top: 30px;
  width: 250px;
  margin-inline: auto;
}
@media screen and (min-width: 690px) {
  .p-cta__contents-item-title {
    width: 250px;
  }
  .p-cta__contents-item-title img {
    width: 250px;
    height: 35px;
  }
}
@media screen and (min-width: 800px) {
  .p-cta__contents-item-title {
    padding-top: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-cta__contents-item-title {
    padding-top: 23px;
    width: 300px;
  }
  .p-cta__contents-item-title img {
    width: 300px;
    height: 50px;
  }
}

.p-cta__contents-item-img {
  padding-top: 12px;
}

.p-cta__contents-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.p-cta__contents-item-text p {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}

.p-cta__contents-item-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #555;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-cta__contents-item-btn img {
  width: 14px;
  height: 13px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.u-hidden-xl {
  display: block;
}
@media screen and (min-width: 1280px) {
  .u-hidden-xl {
    display: none;
  }
}

.u-hidden-md {
  display: none;
}
@media screen and (min-width: 800px) {
  .u-hidden-md {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .u-hidden-md {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 800px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.u-color-white {
  color: #fff;
}

.u-label-purple {
  background-color: #b7a4c9;
}
.u-label-purple::after {
  border-color: transparent transparent transparent #b7a4c9;
}
.u-label-purple::before {
  border-color: transparent transparent transparent #b7a4c9;
}

.u-label-pink {
  background-color: #dfb8c4;
}
.u-label-pink::after {
  border-color: transparent transparent transparent #dfb8c4;
}
.u-label-pink::before {
  border-color: transparent transparent transparent #dfb8c4;
}

.u-label-brown {
  background-color: #d1c098;
}
.u-label-brown::after {
  border-color: transparent transparent transparent #d1c098;
}
.u-label-brown::before {
  border-color: transparent transparent transparent #d1c098;
}

.u-voice-color-pink {
  color: #c594a3;
  font-weight: 700;
  display: inline;
}

.u-bg-white {
  background-color: #fff;
}

.u-dib {
  display: inline-block;
}

.u-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
  text-decoration-color: #dfb8c4;
}

.u-text-deco-pink-1 {
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  padding-right: 2px;
  margin-left: 4px;
}

.u-text-deco-pink-2 {
  -webkit-transform: translateY(-8%);
          transform: translateY(-8%);
  padding-left: 2px;
  margin-right: 4px;
}

.u-text-deco-purple-1 {
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  padding-right: 2px;
}

.u-text-deco-purple-2 {
  -webkit-transform: translateY(-8%);
          transform: translateY(-8%);
  padding-left: 2px;
}

.u-text-deco-orange-1 {
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  padding-right: 2px;
}

.u-text-deco-orange-2 {
  -webkit-transform: translateY(-8%);
          transform: translateY(-8%);
  padding-left: 2px;
}

.u-text-bold {
  font-weight: 700;
}

.u-di {
  display: inline;
}