@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5748031496vw;
  }
}
@media (min-width: 1016px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #474747;
  letter-spacing: 0.05em;
  line-height: 130%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

.bnr {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-image: url("../images/bg_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .bnr {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }
}

.bnr__image {
  width: 100%;
}

.cta {
  padding-top: 36px;
  padding-top: 2.25rem;
  padding-bottom: 36.3px;
  padding-bottom: 2.26875rem;
  background: -webkit-gradient(linear, left top, right top, from(#C9BEF2), to(#BE96D1));
  background: linear-gradient(90deg, #C9BEF2 0%, #BE96D1 100%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.cta__text {
  font-size: 16px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 130%;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 1.25rem;
  }
}

.cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25.5px;
  gap: 1.59375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  background-color: #DCD20D;
  border-radius: 6.25rem;
  border: 2px solid #ffffff;
  border: 0.125rem solid #ffffff;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 6.5px 17px;
  padding: 0.40625rem 1.0625rem;
  min-width: 345px;
  min-width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    gap: 1.875rem;
    margin-top: 0.5625rem;
    font-size: 1.75rem;
    padding: 0.4375rem 1.25rem;
    min-width: 25.5rem;
  }
}

.cta__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  width: 3.875rem;
  height: 62px;
  height: 3.875rem;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #E57A75;
  border: 0.0625rem solid #E57A75;
  color: #E57A75;
  font-size: 13.5px;
  font-size: 0.84375rem;
  font-weight: 700;
  line-height: 117%;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .cta__btn span {
    width: 4.5625rem;
    height: 4.5625rem;
    font-size: 1rem;
  }
}

.fixedBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(190, 150, 209, .6);
  padding-top: 14px;
  padding-top: 0.875rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .fixedBtn {
    background: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    bottom: 1.875rem;
    right: 1.875rem;
    left: auto;
    left: initial;
  }
}

.fixedBtn .cta__btn {
  margin-top: 0;
}

.footer {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5.25rem;
    padding-bottom: 5.1875rem;
  }
}

.footer__copy {
  text-align: center;
}

.footer__copy small {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__copy small {
    font-size: 0.875rem;
  }
}

.header__logoWrap {
  position: absolute;
  top: 16px;
  top: 1rem;
  left: 4vw;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.2px;
  gap: 0.6375rem;
}
@media screen and (min-width: 768px) {
  .header__logoWrap {
    top: 1.5rem;
    left: 7.569vw;
    gap: 1.278125rem;
  }
}

.header__logoImage {
  width: 31.3px;
  width: 1.95625rem;
  height: 35.5px;
  height: 2.21875rem;
}
@media screen and (min-width: 768px) {
  .header__logoImage {
    width: 3.909375rem;
    height: 4.4375rem;
  }
}

.header__logoAccess span {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 130%;
  letter-spacing: 0.1em;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logoAccess span {
    font-size: 1.25rem;
  }
}

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

.sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sectionTitle {
    font-size: 2.5rem;
  }
}

.sectionTitle span {
  font-family: "Lora", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #8777C2;
  line-height: 130%;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sectionTitle span {
    font-size: 1.25rem;
  }
}

.ages {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-image: url("../images/bg_ages.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .ages {
    padding-top: 2.4375rem;
    padding-bottom: 4.5rem;
  }
}

.ages__wrap {
  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;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ages__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem;
    margin-top: 0.8125rem;
  }
}

.ages__title {
  text-align: center;
}

.ages__title img {
  width: 100%;
  max-width: 377px;
  max-width: 23.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ages__title img {
    width: 23.5625rem;
  }
}

.ages__title span {
  background-color: #ffffff;
}

.ages__graph {
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .ages__graph {
    width: 33.956%;
    margin-top: 1.5625rem;
  }
}

.ages__image {
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ages__image {
    width: 45.767%;
    margin-top: 0;
  }
}

.ages__image img:first-child {
  width: 72.903%;
  margin-left: auto;
}

.ages__image img:last-child {
  width: 50.752%;
  margin-top: -10vw;
}
@media screen and (min-width: 768px) {
  .ages__image img:last-child {
    margin-top: -4vw;
  }
}

.faq {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  background-color: #F5F6F9;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.faq__list {
  margin-top: 48px;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__list {
    gap: 2rem;
  }
}

.faq__item {
  background-color: #ffffff;
}

.faq__question {
  padding: 16px 40px 16px 16px;
  padding: 1rem 2.5rem 1rem 1rem;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #474747;
  line-height: 170%;
  letter-spacing: 0.05em;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq__question {
    padding: 1.5rem 4.875rem 1.5rem 1.5rem;
    font-size: 1.375rem;
    gap: 1.25rem;
  }
}

.faq__question::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #8777C2;
  border: 0.0625rem solid #8777C2;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  color: #8777C2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq__question::before {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

.faq__question::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-top: 2px solid #8777C2;
  border-top: 0.125rem solid #8777C2;
  border-right: 2px solid #8777C2;
  border-right: 0.125rem solid #8777C2;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px) {
  .faq__question::after {
    width: 0.9375rem;
    height: 0.9375rem;
    right: 2.4375rem;
  }
}

.faq__question[aria-expanded=false]::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.faq__answer {
  padding: 16px 40px 20px 16px;
  padding: 1rem 2.5rem 1.25rem 1rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    padding: 1rem 4.875rem 2rem 1.5rem;
  }
}

.faq__answer div {
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq__answer div {
    gap: 1.25rem;
  }
}

.faq__answer div::before {
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #DCD20D;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq__answer div::before {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

.feature {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  background-image: url("../images/bg_feature.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 5.1875rem;
    padding-bottom: 4.375rem;
  }
}

.feature__lead {
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__lead {
    margin-top: 1.6875rem;
  }
}

.feature__lead span {
  display: inline-block;
  background-color: #8777C2;
  border-radius: 6.25rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .feature__lead span {
    padding: 0.625rem 1.125rem 0.875rem 1.5rem;
    font-size: 1.5rem;
  }
}

.feature__intro {
  margin-top: 33px;
  margin-top: 2.0625rem;
  background-color: #ffffff;
  padding: 40px 20px 40px 20px;
  padding: 2.5rem 1.25rem 2.5rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .feature__intro {
    padding: 1.4375rem 4.6875rem 2rem 6.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.3125rem;
  }
}

.feature__introImage {
  width: 79.124%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .feature__introImage {
    width: 28.143%;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: 0;
  }
}

.feature__introText {
  display: contents;
}
@media screen and (min-width: 768px) {
  .feature__introText {
    display: block;
    margin-top: 1.125rem;
  }
}

.feature__introTitle {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #8777C2;
  line-height: 170%;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed #8777C2;
  border-bottom: 0.125rem dashed #8777C2;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.feature__introDesc {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 170%;
  letter-spacing: 0.05em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .feature__introDesc {
    margin-top: 1.5rem;
  }
}

.feature__list {
  margin-top: 56px;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .feature__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.feature__item {
  background-color: #ffffff;
  position: relative;
  padding: 30px 24px;
  padding: 1.875rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .feature__item {
    padding: 2.5rem 3rem;
  }
}

.feature__item::before {
  content: "";
  display: block;
  width: 78px;
  width: 4.875rem;
  height: 71px;
  height: 4.4375rem;
  background-image: url("../images/feature_numBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .feature__item::before {
    width: 6.5rem;
    height: 5.9375rem;
  }
}

.feature__itemNumber {
  position: absolute;
  color: #ffffff;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Lora", serif;
  line-height: 100%;
  top: 9px;
  top: 0.5625rem;
  left: 12px;
  left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .feature__itemNumber {
    font-size: 2.5rem;
    top: 1rem;
    left: 1.0625rem;
  }
}

.feature__itemTitle {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Noto Serif JP", serif;
  line-height: 150%;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__itemTitle {
    font-size: 1.875rem;
  }
}

.feature__itemImage {
  margin-top: 16px;
  margin-top: 1rem;
  width: 94.132%;
  margin-inline: auto;
}

.feature__itemImage img {
  aspect-ratio: 369/204;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__itemText {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
}

.feature__itemText strong {
  background-color: #F1EEAE;
}

.flow {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 4.5rem;
    padding-bottom: 4.375rem;
  }
}

.flow__list {
  margin-top: 46px;
  margin-top: 2.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  gap: 3.125rem;
}

.flow__item {
  background-color: #F5F6F9;
  border: 2px dashed #8777C2;
  border: 0.125rem dashed #8777C2;
  border-radius: 0.625rem;
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.5rem;
    padding: 2rem 4.3125rem 1.875rem 2.375rem;
  }
}

.flow__item:not(:last-child)::before {
  content: "";
  display: block;
  width: 112px;
  width: 7rem;
  height: 28px;
  height: 1.75rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#9FAEDF), to(#8777C2));
  background: linear-gradient(180deg, #9FAEDF 0%, #8777C2 100%);
  position: absolute;
  bottom: -30px;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow__item:not(:last-child)::before {
    width: 7rem;
    height: 1.75rem;
    bottom: -1.875rem;
  }
}

.flow__itemContent {
  display: contents;
}
@media screen and (min-width: 768px) {
  .flow__itemContent {
    display: block;
    margin-top: 0.375rem;
  }
}

.flow__itemNumber {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 130%;
  background-color: #8777C2;
  padding: 0 19px 0 15px;
  padding: 0 1.1875rem 0 0.9375rem;
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .flow__itemNumber {
    font-size: 1.5rem;
  }
}

.flow__itemNumber::before {
  content: "";
  display: block;
  background-color: #F5F6F9;
  width: 8px;
  width: 0.5rem;
  height: 9px;
  height: 0.5625rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -4px;
  right: -0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow__itemNumber span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .flow__itemNumber span {
    font-size: 2rem;
  }
}

.flow__itemTitle {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #8777C2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .flow__itemTitle {
    font-size: 1.875rem;
  }
}

.flow__itemText {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 170%;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.flow__itemImage {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .flow__itemImage {
    width: 34.292%;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: 0;
  }
}

.flow__itemImage img {
  aspect-ratio: 310/204;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv__image img {
  aspect-ratio: 750/1168;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .mv__image img {
    aspect-ratio: 1440/730;
  }
}

.mv__contents {
  position: absolute;
  top: 18.666vw;
  left: 4vw;
}
@media screen and (min-width: 768px) {
  .mv__contents {
    top: 12.3vw;
    left: 7.569vw;
  }
}

.mv__catchMain {
  width: 92vw;
}
@media screen and (min-width: 768px) {
  .mv__catchMain {
    width: 55.5vw;
  }
}

.mv__subTitle {
  margin-top: 4vw;
  width: 78.666vw;
}
@media screen and (min-width: 768px) {
  .mv__subTitle {
    margin-top: 3.05vw;
    width: 40.972vw;
  }
}

.mv__title {
  margin-top: 3vw;
  font-size: 12.8vw;
  font-family: "Noto Serif JP", serif;
  color: #8777C2;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin-top: 0.35vw;
    font-size: 5.555vw;
  }
}

.mv__title::before {
  content: "";
  display: block;
  width: 66.8vw;
  height: 1px;
  height: 0.0625rem;
  background-color: #8777C2;
  position: absolute;
  bottom: -1.066vw;
  right: 0.5vw;
}
@media screen and (min-width: 768px) {
  .mv__title::before {
    width: 34.791vw;
    bottom: -0.555vw;
  }
}

.mv__list {
  margin-top: 67.066vw;
  margin-left: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .mv__list {
    margin-top: 2.5vw;
    margin-left: 0;
  }
}

.mv__item {
  width: 23.924vw;
  height: 23.924vw;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(156,107,180,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 7px rgba(156, 107, 180, .25));
          filter: drop-shadow(0 0 7px rgba(156, 107, 180, .25));
  -webkit-filter: drop-shadow(0 0 0.4375rem rgba(156, 107, 180, .25));
          filter: drop-shadow(0 0 0.4375rem rgba(156, 107, 180, .25));
}
@media screen and (min-width: 768px) {
  .mv__item {
    width: 10.277vw;
    height: 10.277vw;
  }
}

.mv__item:nth-child(2) {
  margin-left: 4.266vw;
}
@media screen and (min-width: 768px) {
  .mv__item:nth-child(2) {
    margin-left: 1.319vw;
  }
}

.mv__item:last-child {
  width: 23.438vw;
  height: 24.57vw;
  -webkit-filter: none;
          filter: none;
  margin-left: 4.5vw;
}
@media screen and (min-width: 768px) {
  .mv__item:last-child {
    width: 10.069vw;
    height: 10.555vw;
    margin-left: 1.736vw;
  }
}

.overview {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .overview {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.overview__remark {
  text-align: center;
}

.overview__remark span {
  display: inline-block;
  background-color: #8777C2;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
  padding: 5px 50px;
  padding: 0.3125rem 3.125rem;
  position: relative;
  border-radius: 6.25rem;
}

.overview__remark span::before {
  content: "";
  display: block;
  width: 26px;
  width: 1.625rem;
  height: 9px;
  height: 0.5625rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #8777C2;
  position: absolute;
  bottom: -8px;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.overview__title {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.overview__profile {
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #EDF2F8;
  padding: 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .overview__profile {
    padding: 2.5rem 4.5rem 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.125rem;
  }
}

@media screen and (min-width: 768px) {
  .overview__profileContent {
    margin-top: 0.875rem;
  }
}

.overview__profileName {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #8777C2;
  border-bottom: 0.125rem dashed #8777C2;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .overview__profileName {
    font-size: 1.25rem;
  }
}

.overview__profileName span {
  font-size: 28px;
  font-size: 1.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .overview__profileName span {
    font-size: 1.875rem;
    margin-left: 1rem;
  }
}

.overview__profileLabel {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.overview__profileLabel span {
  background-color: #ffffff;
  color: #8777C2;
  padding: 0 6px;
  padding: 0 0.375rem;
  line-height: 170%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.overview__itemText {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
}

.overview__profileImage {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .overview__profileImage {
    width: 35.321%;
  }
}

.overview__profileImage img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 0.4375rem rgba(163, 160, 163, .25);
          box-shadow: 0 0 0.4375rem rgba(163, 160, 163, .25);
}

.overview__clinic {
  margin-top: 32px;
  margin-top: 2rem;
  background-color: #EDF2F8;
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .overview__clinic {
    padding: 2.875rem 2.75rem 3rem 4.5rem;
  }
}

.overview__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  border-bottom: 2px dashed #8777C2;
  border-bottom: 0.125rem dashed #8777C2;
  display: inline-block;
}

.overview__clinicContent {
  margin-top: 26px;
  margin-top: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .overview__clinicContent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.875rem;
  }
}

.overview__clinicInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.overview__clinicLabel {
  display: inline-block;
  background-color: #8777C2;
  padding: 0 31px;
  padding: 0 1.9375rem;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 170%;
  min-width: 129px;
  min-width: 8.0625rem;
}

.overview__itemText {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
}

.overview__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .overview__map {
    width: 46.444%;
  }
}

.overview__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 418/389;
}

.recommend {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .recommend {
    padding-top: 4.5rem;
    padding-bottom: 4.625rem;
  }
}

.recommend::before {
  content: "";
  display: block;
  width: 115px;
  width: 7.1875rem;
  height: 33px;
  height: 2.0625rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#F2EEFF), to(#8777C2));
  background: linear-gradient(180deg, #F2EEFF 0%, #8777C2 100%);
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .recommend::before {
    width: 14.375rem;
    height: 4.1875rem;
    bottom: -2.5rem;
  }
}

.recommend__body {
  margin-top: 20px;
  margin-top: 1.25rem;
  border: 2px dashed #8777C2;
  border: 0.125rem dashed #8777C2;
  border-radius: 0.625rem;
  background-color: #F8F7FA;
  padding-block: 30px;
  padding-block: 1.875rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recommend__body {
    margin-top: 2rem;
    padding-block: 2.75rem;
  }
}

.recommend__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .recommend__list {
    gap: 2rem;
  }
}

.recommend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .recommend__item {
    gap: 1rem;
  }
}

.recommend__item::before {
  content: "";
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: url("../images/icon_check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recommend__item p {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .recommend__item p {
    font-size: 1.375rem;
  }
}

.recommend__item p strong {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .recommend__item p strong {
    font-size: 1.5625rem;
  }
}

.treatment {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  background-color: #F5F6F9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .treatment {
    padding-bottom: 4.5rem;
  }
}

.treatment__top {
  position: relative;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .treatment__top {
    padding-top: 4.5rem;
    padding-bottom: 6.125rem;
  }
}

.treatment__top::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url("../images/bg_treatment.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(145,133,151,0.5)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 10px rgba(145, 133, 151, .5));
          filter: drop-shadow(0 0 10px rgba(145, 133, 151, .5));
  -webkit-filter: drop-shadow(0 0 0.625rem rgba(145, 133, 151, .5));
          filter: drop-shadow(0 0 0.625rem rgba(145, 133, 151, .5));
}

.treatment__title {
  position: relative;
}

.treatment__list {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  row-gap: 12px;
  row-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .treatment__list {
    margin-top: 3.5rem;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
    row-gap: 1.5rem;
  }
}

.treatment__item {
  background-color: #F5F6F9;
  border-radius: 0.625rem;
  border: 2px dashed #8777C2;
  border: 0.125rem dashed #8777C2;
  padding: 40px 12px 20px 20px;
  padding: 2.5rem 0.75rem 1.25rem 1.25rem;
  width: calc(50% - 0.375rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .treatment__item {
    padding: 3.375rem 2.125rem 1.3125rem 2.875rem;
    width: calc(33.33333% - 1.04167rem);
  }
}

.treatment__number {
  position: absolute;
  top: -3px;
  top: -0.1875rem;
  left: -3px;
  left: -0.1875rem;
  font-size: 42px;
  font-size: 2.625rem;
  font-family: "Lora", serif;
  line-height: 100%;
  color: rgba(135, 119, 194, .25);
}
@media screen and (min-width: 768px) {
  .treatment__number {
    font-size: 3.75rem;
  }
}

.treatment__itemTitle {
  display: block;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .treatment__itemTitle {
    font-size: 1.5rem;
  }
}

.treatment__itemText {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 170%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .treatment__itemText {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.treatment__remark {
  margin-top: 32px;
  margin-top: 2rem;
  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;
}

.treatment__remark span:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 170%;
  color: #8777C2;
}
@media screen and (min-width: 768px) {
  .treatment__remark span:first-child {
    font-size: 1.5rem;
  }
}

.treatment__remark span:last-child {
  font-size: 20px;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 170%;
  padding: 1px 37px;
  padding: 0.0625rem 2.3125rem;
  background-color: #8777C2;
  border-radius: 6.25rem;
}
@media screen and (min-width: 768px) {
  .treatment__remark span:last-child {
    font-size: 1.5rem;
  }
}

.treatment__difference {
  margin-top: 32px;
  margin-top: 2rem;
  background-color: #ffffff;
  max-width: 808px;
  max-width: 50.5rem;
  margin-inline: auto;
  -webkit-box-shadow: 0 0 0.4375rem 0.125rem rgba(135, 119, 194, .25);
          box-shadow: 0 0 0.4375rem 0.125rem rgba(135, 119, 194, .25);
  padding: 32px 20px 40px;
  padding: 2rem 1.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .treatment__difference {
    padding: 2rem 0 2.5rem;
  }
}

.treatment__differenceTitle {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 130%;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .treatment__differenceTitle {
    font-size: 2rem;
  }
}

.treatment__differenceTable {
  margin-top: 32px;
  margin-top: 2rem;
  width: 100%;
  max-width: 477.29px;
  max-width: 29.830625rem;
  margin-inline: auto;
  overflow-x: auto;
}

.treatment__differenceTable img {
  min-width: 400px;
  min-width: 25rem;
}

.treatment__scroll {
  display: block;
  max-width: 477.29px;
  max-width: 29.830625rem;
  margin-inline: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .treatment__scroll {
    display: none;
  }
}

.treatment__differenceNote {
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 808px;
  max-width: 50.5rem;
  margin-inline: auto;
}

.treatment__differenceNote small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
}
