@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 180%;
  font-weight: 500;
  color: #473C2D;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.16px;
  }
}

.inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .inner {
    padding-inline: 20px;
    max-width: calc(100% + 40px);
  }
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
  }
}

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

.hidden-sp2 {
  display: block;
}
@media screen and (min-width: 600px) {
  .hidden-sp2 {
    display: none;
  }
}

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

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

.hidden-pc3 {
  display: none;
}
@media screen and (min-width: 600px) {
  .hidden-pc3 {
    display: block;
  }
}

.button {
  background: -webkit-gradient(linear, left top, right top, from(#E0AEB1), to(#ECADA2));
  background: linear-gradient(90deg, #E0AEB1 0%, #ECADA2 100%);
  border-radius: 9999px;
  max-width: 230px;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 12px;
  text-align: center;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .button {
    padding-top: 12px;
    min-width: 240px;
  }
}
.button:hover {
  opacity: 0.8;
}
.button:hover .button__text::after {
  right: -5px;
}

.button__drawer {
  background: #4E9F8B;
  width: 263px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__drawer:hover {
  opacity: 0.8;
}

.button__text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding-right: 26px;
  line-height: normal;
  position: relative;
}
@media screen and (min-width: 768px) {
  .button__text {
    font-size: 18px;
    padding-right: 28px;
  }
}
.button__text::after {
  position: absolute;
  content: "";
  background-image: url(../img/button_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 6px;
  height: 11px;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .button__text::after {
    width: 8px;
    height: 13px;
  }
}

.cta {
  background-image: url(../img/cta_bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    background-image: url(../img/cta_bg-pc.png);
    padding-top: 80px;
    padding-bottom: 62px;
  }
}

.cta__button {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__button {
    margin-top: 18px;
  }
}

.section-title {
  font-size: 18px;
  color: #4E9F8B;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.18px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 24px;
    letter-spacing: 0.24px;
  }
}

.underline_green {
  border-bottom: 2px solid #4E9F8B;
  font-weight: 700;
}

.underline_pink {
  border-bottom: 2px solid #E0AEB1;
  font-weight: 700;
}

.header {
  height: 60px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
.header.is-scrolled {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
.header.is-scrolled.is-menu-open {
  background-color: transparent !important;
}

.header__inner {
  padding-inline: 20px;
  padding-block: 14.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 40px;
    padding-block: 20px;
  }
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.header__logo a {
  height: auto;
}
.header__logo a img {
  width: 52px;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 70px;
  }
}
.header__logo.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-nav__item {
  position: relative;
}

.has-submenu {
  position: relative;
}

.header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  padding: 14px 20px 28px 36px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
  width: 210px;
}
.header-submenu li {
  margin-top: 8px;
  position: relative;
}
.header-submenu li::before {
  position: absolute;
  content: "";
  background-image: url(../img/submenu_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 6px;
  height: 9px;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-submenu .header-submenu__link {
  font-size: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header-submenu .header-submenu__link:hover {
  color: #4E9F8B;
}

/* PCは hover で出す */
@media (hover: hover) and (pointer: fine) {
  .has-submenu:hover .header-submenu {
    display: block;
  }
}
.header-nav__arrow,
.js-accordion-toggle {
  position: relative;
  padding-right: 13px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header-nav__arrow::after,
.js-accordion-toggle::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 8px;
  height: 5px;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-nav__arrow::after {
  background-image: url(../img/nav_arrow.png);
}

.js-accordion-toggle::after {
  background-image: url(../img/hamburger_arrow.png);
}

.has-submenu.open > .header-nav__item-link.header-nav__arrow::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.has-submenu.is-open > .drawer-content__item-link.js-accordion-toggle::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.header-nav__item-link {
  cursor: pointer;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.header-nav__item-link:hover {
  color: #4E9F8B;
}

.drawer-content__item-link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #473C2D;
}
.drawer-content__item-link:hover {
  color: #4E9F8B;
}

.drawer-content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#EEF9FF), to(#F8FBF2));
  background: linear-gradient(180deg, #EEF9FF 0%, #F8FBF2 100%);
  z-index: 50;
  padding-top: 100px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  overflow-y: auto; /* 縦スクロールを有効に */
}
@media screen and (min-width: 768px) {
  .drawer-content {
    width: 600px;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
}
@media screen and (min-width: 1280px) {
  .drawer-content {
    width: 100%;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content.is-checked .header .is-scrolled {
  background: none;
}

.drawer-content__wrapper {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .drawer-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.drawer-content__menu {
  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;
  padding-bottom: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .drawer-content__menu {
    width: 100%;
    right: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-top: 60px;
    padding-left: 120px;
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .drawer-content__menu {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    right: 0;
    height: 100vh;
    gap: 20px;
  }
}

.drawer-content__link {
  font-size: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer-content__link {
    font-size: 16px;
    width: 300px;
  }
}
.drawer-content__link:hover {
  color: #4E9F8B;
}

.drawer-content__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .drawer-content__sns {
    gap: 20px;
  }
}

.drawer-content__snsLink {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.drawer-content__snsLink:hover {
  opacity: 0.7;
}
.drawer-content__snsLink img {
  width: 44px;
}
@media screen and (min-width: 768px) {
  .drawer-content__snsLink img {
    width: 60px;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    width: 64px;
    height: 64px;
  }
}
.drawer-icon.is-checked {
  z-index: 100;
}
.drawer-icon.is-checked .drawer-icon__bar {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .drawer-icon.is-checked .drawer-icon__bar {
    left: 36%;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background: #473C2D;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    width: 24px;
  }
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(1) {
    top: 18px;
  }
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(2) {
    top: 28px;
  }
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(3) {
    top: 28px;
  }
}

.drawer-icon__text {
  color: #FFF;
  font-size: 12px;
  line-height: normal;
  position: absolute;
  top: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .drawer-icon__text {
    top: 30px;
    font-size: 13px;
  }
}

.drawer-submenu {
  margin-top: 14px;
  padding: 20px 45px 20px 30px;
  background: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.drawer-submenu__link {
  display: block;
  text-decoration: none;
  position: relative;
  padding-left: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.drawer-submenu__link::before {
  position: absolute;
  content: "";
  background-image: url(../img/hamburger_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 8px;
  height: 5px;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.drawer-submenu__link:hover {
  color: #4E9F8B;
}

.mv {
  max-width: 100%;
}

.mv-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .mv-inner {
    padding-inline: 40px;
  }
}

.mv__bg {
  background-image: url(../img/mv_sp.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  width: 100%;
  min-height: 600px;
  position: relative;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  .mv__bg {
    background-position: right top;
    background-image: url(../img/mv_pc.png);
  }
}
@media screen and (min-width: 768px) {
  .mv__bg {
    background-position: center center;
    min-height: 730px;
  }
}

.mv__inner {
  padding-inline: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-inline: 40px;
  }
}
.mv__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 413px;
  color: #fff;
  text-shadow: 0 0 10px rgba(47, 80, 51, 0.7);
}
@media screen and (min-width: 768px) {
  .mv__lead {
    padding-top: 562px;
    font-size: 28px;
  }
}
.mv__lead1,
.mv__lead2 {
  display: inline-block;
}
.mv__lead1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .mv__lead1 {
    font-size: 60px;
    font-weight: 600;
  }
}

.mv__lead2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .mv__lead2 {
    font-size: 22px;
    line-height: 180%; /* 36px */
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__lead2 {
    font-size: 24px;
  }
}

.concerns {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .concerns {
    padding-inline: 40px;
  }
}

.concerns__inner {
  margin-top: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-inline: 17px;
  background-color: #F8FBF2;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .concerns__inner {
    margin-top: 40px;
    padding-top: 150px;
    padding-inline: 30px;
  }
}

.concerns__content-top {
  margin-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .concerns__content-top {
    margin-top: 66px;
    padding-bottom: 100px;
  }
}

.concerns__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 60px;
  margin-right: auto;
  margin-left: auto;
  max-width: 570px;
}
@media screen and (min-width: 768px) {
  .concerns__boxes {
    max-width: 750px;
    gap: 50px 140px;
  }
}

.concerns__box {
  height: auto;
  background-image: url(../img/concerns_bg.png);
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concerns__box {
    width: 128px;
    height: 128px;
  }
}
.concerns__box:last-child .concerns__box-text {
  width: 200px;
  right: -50%;
}
@media screen and (min-width: 768px) {
  .concerns__box:last-child .concerns__box-text {
    width: 220px;
    right: -50px;
  }
}

.concerns__box-text {
  text-align: center;
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 150px;
}
@media screen and (min-width: 768px) {
  .concerns__box-text {
    width: 220px;
    right: -50px;
  }
}

.concerns__content-bottom {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .concerns__content-bottom {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding-block: 70px;
  }
}

.concerns__texts {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .concerns__texts {
    gap: 30px;
  }
}

.button__about {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .button__about {
    margin-top: 40px;
  }
}

.greeting1 {
  margin-block: 80px;
}
@media screen and (min-width: 768px) {
  .greeting1 {
    margin-block: 150px;
  }
}

.greeting1__inner {
  padding-inline: 50px;
}

.greeting1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .greeting1__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    gap: 54px;
  }
}

.greeting1__left {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .greeting1__left {
    margin-top: 0;
  }
}

.greeting1__logo {
  text-align: center;
}

.greeting1__image {
  max-width: 180px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .greeting1__image {
    max-width: 322px;
  }
}

@media screen and (min-width: 768px) {
  .greeting1__right {
    width: 525px;
  }
}

.greeting1__texts {
  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;
}
@media screen and (min-width: 768px) {
  .greeting1__texts {
    gap: 22px;
  }
}

.button__greeting1 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .button__greeting1 {
    margin-top: 40px;
    margin-left: 0;
  }
}

.counseling {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .counseling {
    padding-inline: 40px;
  }
}

.counseling__inner {
  padding: 80px 30px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(224, 174, 177, 0.1)), to(rgba(236, 173, 162, 0.1)));
  background: linear-gradient(90deg, rgba(224, 174, 177, 0.1) 0%, rgba(236, 173, 162, 0.1) 100%);
}
@media screen and (min-width: 768px) {
  .counseling__inner {
    padding-block: 130px;
  }
}

.counseling__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .counseling__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .counseling__content {
    gap: 88px;
  }
}

.counseling__left {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .counseling__left {
    width: 436px;
    margin-top: 0;
  }
}

.counseling__title {
  color: #E0AEB1;
}

.counseling__texts {
  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;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .counseling__texts {
    margin-top: 50px;
  }
}

.button__counseling {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .button__counseling {
    margin-top: 40px;
  }
}

.counseling__logo {
  text-align: center;
}

.counseling__image {
  max-width: 210px;
  width: 100%;
  -webkit-filter: drop-shadow(6px 6px 20px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(6px 6px 20px rgba(0, 0, 0, 0.05));
}
@media screen and (min-width: 768px) {
  .counseling__image {
    max-width: 376px;
  }
}

.voice {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-block: 150px;
  }
}

@media screen and (min-width: 600px) {
  .voice__inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 768px) {
  .voice__inner {
    padding-inline: 100px;
  }
}

.voice__boxes {
  margin-top: 50px;
  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: 1280px) {
  .voice__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1000px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 80px;
  }
}

.voice__box {
  background: #F8FBF2;
  padding: 40px 30px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .voice__box {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .voice__box {
    padding: 42px 42px 46px 42px;
  }
}

.voice__text {
  letter-spacing: 0.14px;
}

.voice-underline {
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.14px;
  border-bottom: 2px solid #4E9F8B;
}

.voice__box-bottom {
  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;
  margin-top: 25px;
  gap: 17px;
}
@media screen and (min-width: 600px) {
  .voice__box-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .voice__box-bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.voice__icon img {
  width: 56px;
  -webkit-filter: drop-shadow(0 0 10px rgba(215, 218, 209, 0.5));
          filter: drop-shadow(0 0 10px rgba(215, 218, 209, 0.5));
}
@media screen and (min-width: 768px) {
  .voice__icon img {
    width: 60px;
  }
}

.case {
  padding-top: 80px;
  padding-bottom: 90px;
  background: #F8FBF2;
}
@media screen and (min-width: 768px) {
  .case {
    padding-top: 100px;
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 768px) {
  .case__inner {
    padding-inline: 40px;
    max-width: 1148px;
  }
}

.case__content {
  margin-inline: auto;
  margin-top: 40px;
  max-width: 335px;
  position: relative;
  padding-right: 32px;
  padding-left: 32px;
}
@media screen and (min-width: 600px) {
  .case__content {
    max-width: 600px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 768px) {
  .case__content {
    margin-top: 60px;
    max-width: 1068px;
  }
}

.case__swiper {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .case__swiper {
    max-width: 988px;
    width: 100%;
  }
}

.swiper-wrapper {
  width: 100% !important;
  -webkit-transition-timing-function: ease !important;
          transition-timing-function: ease !important;
}

.case__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide__image {
  text-align: center;
  width: inherit;
}
.swiper-slide__image img {
  width: 275px;
}
@media screen and (min-width: 768px) {
  .swiper-slide__image img {
    width: 316px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.case__prev,
.case__next {
  position: absolute;
  width: 20px !important;
  height: 14px !important;
  top: 54% !important;
  display: block;
  background: url(../img/swiper_arrow.png) no-repeat center center/contain;
}
@media screen and (min-width: 600px) {
  .case__prev,
  .case__next {
    width: 28px !important;
    height: 19px !important;
  }
}
@media screen and (min-width: 1280px) {
  .case__prev,
  .case__next {
    top: 53% !important;
  }
}

.case__prev {
  left: 0px !important;
}

.case__next {
  right: 0px !important;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.case__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .case__button {
    margin-top: 40px;
  }
}

.faq {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 150px;
  }
}

@media screen and (min-width: 768px) {
  .faq__inner {
    padding-inline: 40px;
    max-width: 1080px;
  }
}

.faq__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .faq__content {
    margin-top: 80px;
  }
}

.faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .faq__boxes {
    gap: 20px;
  }
}

.faq__box .faq-box__head {
  position: relative;
  padding: 18px 60px 18px 20px;
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 17px;
  background-color: #F8FBF2;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .faq__box .faq-box__head {
    padding: 20px 30px 20px 30px;
    gap: 32px;
  }
}
.faq__box .faq-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  background-image: url(../img/faq_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .faq__box .faq-box__head::after {
    right: 30px;
    width: 30px;
    height: 30px;
  }
}
.faq__box.is-open .faq-box__head::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.faq-box__head-text,
.faq-box__a-text {
  font-weight: 500;
  display: block;
  text-align: left;
  color: #473C2D;
}

.faq-box__head-icon,
.faq-box__a-icon {
  font-size: 20px;
  font-weight: 700;
  display: block;
  text-align: left;
}

.faq-box__head-icon {
  color: #4E9F8B;
}

.faq-box__a-icon {
  color: #E0AEB1;
}

.faq-box__body {
  padding: 16px 37px 20px 20px;
  display: none;
  background: #FCFCFC;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .faq-box__body {
    padding: 36px 78px 36px 30px;
  }
}

.faq-box__a {
  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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .faq-box__a {
    gap: 32px;
  }
}

.footer {
  margin-top: 80px;
  padding-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 150px;
  }
}

.instagram {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .instagram__posts {
    max-width: 1080px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .instagram__posts {
    max-width: 1000px;
  }
}

.instagram_url {
  color: #4E9F8B;
  border-bottom: 1px solid #4E9F8B;
}

.footer__content-bottom {
  margin-top: 60px;
  margin-bottom: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline: 17px;
  border-radius: 20px;
  background-image: url(../img/footer_bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 600px) {
  .footer__content-bottom {
    background-position: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__content-bottom {
    background-image: url(../img/footer_bg-pc.png);
    padding: 64px 40px 59px 40px;
    background-position: top right;
  }
}

.footer__content-bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__content-bottom-wrap {
    gap: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__content-bottom-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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 82px;
  }
}

.footer__company {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 26px 48px 26px;
}
@media screen and (min-width: 768px) {
  .footer__company {
    padding: 40px 44px 50px 44px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__company {
    width: 100%;
    max-width: 364px;
  }
}

.footer__company-name {
  color: #4E9F8B;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.footer__company-info {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.footer__company-info tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.footer__company-info th {
  width: 56px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .footer__company-info th {
    width: 66px;
  }
}
.footer__company-info tr {
  display: inline-block;
}
.footer__company-info td {
  text-align: left;
  padding-left: 20px;
}
.footer__company-info th,
.footer__company-info td {
  font-weight: 700;
}

.footer-nav__items {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .footer-nav__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 400px;
    height: 100%;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav__items {
    gap: 10px 46px;
    margin-top: 40px;
    min-height: 300px;
    min-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .footer-nav__items {
    max-height: 200px;
    max-width: 740px;
  }
}
@media screen and (min-width: 1280px) {
  .footer-nav__items {
    max-height: 260px;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-nav__item .button {
  margin-left: 0;
}

.footer-nav__item-link {
  font-weight: 700;
}

.footer-nav__item-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.footer-nav-child__item {
  padding-left: 14px;
  position: relative;
}
.footer-nav-child__item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: #4E9F8B;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__copyright {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 1280px) {
  .pagetop {
    width: 67px;
    height: 67px;
    right: 50px;
    bottom: 66px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .floating_button {
    position: fixed;
    right: 0;
    top: 20%;
    background: #4E9F8B;
    border-radius: 20px 0 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px; /* 111.111% */
    letter-spacing: 0.15em;
    padding: 30px 26px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    z-index: 10;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .floating_button:hover {
    background: #448B79;
  }
}

.page__top {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .page__top {
    padding-inline: 40px;
  }
}

.page__top-inner {
  padding-block: 84px;
  background-image: url(../img/page-top_sp.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .page__top-inner {
    padding-top: 154px;
    padding-bottom: 154px;
    background-image: url(../img/page-top_pc.png);
  }
}

.page__top-text {
  text-align: center;
}
.page__top-title {
  color: #fff;
  text-shadow: 0 0 15px rgba(143, 195, 193, 0.69);
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.44px;
}
@media screen and (min-width: 768px) {
  .page__top-title {
    font-size: 30px;
    letter-spacing: 0.6px;
  }
}

.message {
  margin-top: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .message {
    margin-top: 40px;
    padding-inline: 40px;
  }
}

.leaves_right,
.leaves_left {
  position: relative;
}
.leaves_right::after,
.leaves_left::after {
  position: absolute;
  content: "";
  background-image: url(../img/leaves_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 176px;
  height: 162px;
}
@media screen and (min-width: 768px) {
  .leaves_right::after,
  .leaves_left::after {
    width: 300px;
    height: 270px;
  }
}

.leaves_right::after {
  bottom: -9%;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .leaves_right::after {
    bottom: -26%;
  }
}
@media screen and (min-width: 1280px) {
  .leaves_right::after {
    bottom: -16%;
  }
}

.leaves_left::after {
  bottom: -9%;
  left: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 600px) {
  .leaves_left::after {
    bottom: -13%;
  }
}

.message__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#EEF9FF), to(#F8FBF2));
  background: linear-gradient(180deg, #EEF9FF 0%, #F8FBF2 100%);
  padding: 60px 17px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .message__inner {
    padding-block: 100px;
  }
}

.message__content {
  background: #fff;
  padding: 50px 20px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .message__content {
    padding: 70px 30px;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
}

.message__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .message__texts {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.topics {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .topics {
    padding-block: 130px;
  }
}

.topics__title {
  color: #E0AEB1;
}

.topics__boxes {
  margin-top: 50px;
  padding-inline: 34px;
  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;
}
@media screen and (min-width: 900px) {
  .topics__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 0;
    margin-top: 80px;
  }
}

.topics__box {
  background: #FCF7F6;
  border-radius: 150px 150px 0 0;
  padding-top: 50px;
  padding-bottom: 40px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
  width: 265px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .topics__box {
    max-width: 285px;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }
}

.topics__box-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  display: inline-block;
  border-bottom: 2px solid #E0AEB1;
}
@media screen and (min-width: 768px) {
  .topics__box-title {
    font-size: 18px;
    letter-spacing: 0.18px;
    padding-bottom: 3px;
  }
}

.topics__box-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  margin-top: 24px;
}

.topics__box-text {
  position: relative;
  padding-left: 28px;
}
.topics__box-text::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/topics_tick.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.effect {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .effect {
    padding-inline: 40px;
  }
}

.effect__inner {
  background-color: #F8FBF2;
  padding: 80px 30px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .effect__inner {
    padding-block: 150px;
  }
}

.effect__title {
  color: #4E9F8B;
}

.effect__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .effect__texts {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.greeting2 {
  margin-block: 80px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .greeting2 {
    padding-inline: 40px;
    margin-top: 130px;
    margin-bottom: 0;
  }
}

.greeting2__inner {
  background: #FCF7F6;
  padding-inline: 17px;
  border-radius: 20px;
  padding-top: 70px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .greeting2__inner {
    padding-block: 150px;
  }
}

.greeting2__title {
  color: #E0AEB1;
}

.greeting2__content-top {
  background: #fff;
  margin-top: 30px;
  padding: 50px 20px;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .greeting2__content-top {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-block: 70px;
    padding-inline: 30px;
    margin-top: 70px;
  }
}

.greeting2__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 600px) {
  .greeting2__texts {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .greeting2__texts {
    margin-left: auto;
    margin-right: auto;
    gap: 22px;
  }
}

.greeting2__content-bottom {
  margin-top: 50px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .greeting2__content-bottom {
    margin-top: 100px;
  }
}

.greeting2__bottomWrap {
  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: 900px) {
  .greeting2__bottomWrap {
    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;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.greeting2__image img {
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .greeting2__image img {
    max-width: 340px;
  }
}

.greeting2__introduce {
  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;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .greeting2__introduce {
    margin-left: 60px;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.greeting2__name {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2px;
  color: #E0AEB1;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .greeting2__name {
    text-align: left;
  }
}

.greeting2_qualification {
  font-weight: 700;
}

.flow {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-block: 150px;
  }
}

.flow__inner {
  padding-inline: 30px;
}

.flow__steps {
  margin-top: 50px;
  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: 40px;
}
@media screen and (min-width: 768px) {
  .flow__steps {
    margin-top: 90px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
.flow__steps::after {
  position: absolute;
  content: "";
  height: 92%;
  width: 2px;
  top: 0px;
  left: 18px;
  z-index: -1;
  background: repeating-linear-gradient(to bottom, #E0AEB1, #E0AEB1 4px, transparent 4px, transparent 8px);
}
@media screen and (min-width: 768px) {
  .flow__steps::after {
    left: 20px;
  }
}

.flow__text-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #E0AEB1;
  position: relative;
  padding-left: 50px;
}
@media screen and (min-width: 768px) {
  .flow__text-title {
    font-size: 18px;
    letter-spacing: 0.18px;
    padding-left: 65px;
  }
}
.flow__text-title::before {
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .flow__text-title::before {
    width: 42px;
    height: 42px;
  }
}
.flow__text-title.is-step1::before {
  background-image: url(../img/flow_1.png);
}
.flow__text-title.is-step2::before {
  background-image: url(../img/flow_2.png);
}
.flow__text-title.is-step3::before {
  background-image: url(../img/flow_3.png);
}
.flow__text-title.is-step4::before {
  background-image: url(../img/flow_4.png);
}
.flow__text-title.is-step5::before {
  background-image: url(../img/flow_5.png);
}

.flow__text-info {
  padding-left: 50px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .flow__text-info {
    padding-left: 65px;
    margin-top: 6px;
  }
}

.flow__attention {
  color: #E0AEB1;
  border-bottom: 1px solid #E0AEB1;
}

.menu {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .menu {
    padding-top: 100px;
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 768px) {
  .menu__inner {
    max-width: 1080px;
    padding-inline: 40px;
  }
}

.menu__tax {
  margin-top: 40px;
  text-align: center;
  font-weight: 500;
}

.menu__tab {
  width: 100%;
  margin: auto;
  position: relative;
  margin-top: 98px;
}
@media screen and (min-width: 768px) {
  .menu__tab {
    margin-top: 69px;
  }
}

.menu__tab-list {
  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;
  margin: 0 auto;
  width: 366px;
  position: absolute;
  top: -58px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .menu__tab-list {
    width: 95%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    top: -18px;
  }
}
@media screen and (min-width: 600px) and (min-width: 768px) {
  .menu__tab-list {
    -webkit-box-shadow: 5px 5px 16px 0 rgba(169, 169, 169, 0.2);
            box-shadow: 5px 5px 16px 0 rgba(169, 169, 169, 0.2);
    max-width: 840px;
    top: -28px;
  }
}
@media screen and (min-width: 600px) and (min-width: 1280px) {
  .menu__tab-list {
    width: 100%;
  }
}

.menu__tab-list-name {
  max-width: 150px;
  width: 100%;
  list-style: none;
  padding: 6px 10px;
  background: #FFF;
  -webkit-box-shadow: 5px 5px 16px 0px rgba(169, 169, 169, 0.2);
          box-shadow: 5px 5px 16px 0px rgba(169, 169, 169, 0.2);
  font-weight: 500;
  cursor: pointer;
  /* widthを同じ比率で分けあう */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .menu__tab-list-name {
    max-width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .menu__tab-list-name {
    max-width: 280px;
    padding: 16px 30px;
    font-size: 18px;
    line-height: normal;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.menu__tab-list-name:first-child {
  width: 100%;
  margin-inline: 75px;
}
@media screen and (min-width: 600px) {
  .menu__tab-list-name:first-child {
    margin-inline: 0;
  }
}
.menu__tab-list-name:hover {
  background: #f7f7f7;
}

/* アクティブなタブはデザインを変えて選択中であることが解るようにする */
.active {
  background: #E0AEB1;
  color: #fff;
}
.active:hover {
  background: #E0AEB1;
}

/* コンテンツは原則非表示 */
.menu__tab-content {
  display: none;
  border: 1px solid #E0AEB1;
  padding: 59px 20px 49px 20px;
  min-width: 295px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu__tab-content {
    padding-top: 90px;
    padding-bottom: 64px;
    padding-inline: 50px;
  }
}
.menu__tab-content:nth-of-type(2) th,
.menu__tab-content:nth-of-type(2) td {
  padding-top: 8px;
}

/* .showがついたコンテンツのみ表示 */
.show {
  display: block;
}

.menu__tab-text {
  text-align: center;
}

.menu__tab-info {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  padding-bottom: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu__tab-info {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
.menu__tab-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #E0AEB1;
}
@media screen and (min-width: 768px) {
  .menu__tab-info::after {
    width: 60px;
  }
}

.menu__tab-description {
  margin-top: 20px;
  font-weight: 500;
  line-height: 26px; /* 173.333% */
  letter-spacing: 0.45px;
}
@media screen and (min-width: 768px) {
  .menu__tab-description {
    margin-top: 30px;
  }
}

.menu__table {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  table-layout: fixed;
}
.menu__table tbody {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 8px;
}
.menu__table tbody th,
.menu__table tbody td {
  border: 1px solid #DBDBDB;
  text-align: center;
  font-weight: 500;
  max-width: 325px;
  width: 100%;
  vertical-align: middle;
  font-size: 18px;
  border: 1px solid #E0AEB1;
}
.menu__table tbody th {
  text-align: center;
  padding: 4px 8px 4px 8px;
  min-width: 146px;
  background: #F8FBF2;
}
.menu__table tbody td {
  background: #fff;
  width: 148px;
  padding-inline: 10px;
}
.menu__table tbody tr {
  max-width: 649px;
  width: 100%;
}
.menu__table tbody th,
.menu__table tbody td {
  height: 58px;
  width: 325px;
}

.menu__asterisk {
  color: #E0AEB1;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.36px;
}

.menu__explains {
  margin-top: 30px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .menu__explains {
    gap: 2px;
  }
}

.menu__explain {
  color: #565656;
  padding-left: 27px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu__explain {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.42px;
  }
}
.menu__explain::before {
  content: "※1";
  position: absolute;
  top: 0;
  left: 0;
  color: #E0AEB1;
  font-weight: 500;
}
.menu__explain:nth-of-type(2)::before {
  content: "※2";
}

.attention {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #F8FBF2;
}
@media screen and (min-width: 768px) {
  .attention {
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 768px) {
  .attention__inner {
    max-width: 1080px;
    padding-inline: 40px;
  }
}

.attention__texts {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .attention__texts {
    text-align: center;
    gap: 0;
  }
}

.attention__text {
  font-weight: 500;
}

.attention__boxes {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.attention__box .attention-box__head {
  position: relative;
  padding: 11px 50px 11px 20px;
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  background-color: #E0AEB1;
}
@media screen and (min-width: 768px) {
  .attention__box .attention-box__head {
    padding: 13px 30px;
    gap: 23px;
  }
}
.attention__box .attention-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 19px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .attention__box .attention-box__head::after {
    right: 30px;
    width: 21px;
  }
}
.attention__box .attention-box__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 29px;
  width: 1px;
  height: 19px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (min-width: 768px) {
  .attention__box .attention-box__head::before {
    right: 40px;
    height: 21px;
  }
}
.attention__box.is-open .attention-box__head::after {
  display: block;
}
.attention__box.is-open .attention-box__head::before {
  display: block;
}

.attention-box__head-text,
.attention-box__a-text {
  font-weight: 500;
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .attention-box__head-text,
  .attention-box__a-text {
    letter-spacing: 0.48px;
  }
}

.attention-box__head-icon {
  font-weight: 500;
  display: block;
  text-align: left;
  color: #fff;
}

.attention-box__head-text {
  color: #fff;
}

.attention-box__body {
  padding: 20px 20px 24px 20px;
  display: none;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .attention-box__body {
    padding: 30px 60px 40px 60px;
  }
}

.attention-box__a {
  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: start;
  gap: 30px;
  padding-left: 15px;
}

.attention-box__a-text {
  position: relative;
}
.attention-box__a-text::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #E0AEB1;
  border-radius: 50%;
  top: 10px;
  left: -15px;
}

.attention-box__a-top,
.attention-box__a-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .attention-box__a-top,
  .attention-box__a-bottom {
    gap: 2px;
  }
}

@media screen and (min-width: 768px) {
  .attention-box__a-bottom .attention-box__a-text {
    padding-left: 32px;
  }
  .attention-box__a-bottom .attention-box__a-text::before {
    left: 15px;
  }
}

.attention-box__a-title {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .attention-box__a-title {
    padding-left: 16px;
  }
}
.attention-box__a-title::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/attention.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  top: 4px;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .attention-box__a-title::before {
    width: 26px;
    height: 26px;
  }
}

.attention-box__a-point {
  font-weight: 500;
  margin-bottom: 6px;
}

.attention-box__a-explain {
  font-weight: 500;
}

.attention__box-2 .attention-box__body .attention-box__a {
  padding-left: 0;
}
.attention__box-2 .attention-box__body .attention-box__a .attention-box__a-text {
  padding-left: 15px;
}
.attention__box-2 .attention-box__body .attention-box__a .attention-box__a-text::before {
  left: 0;
}
.attention__box-2 .attention-box__body .attention-box__a .attention-box__a-top {
  gap: 14px;
}

.attention__box-3 .attention-box__body .attention-box__a {
  padding-left: 0;
  gap: 14px;
}
.attention__box-3 .attention-box__body .attention-box__a .attention-box__a-text {
  padding-left: 30px;
}
.attention__box-3 .attention-box__body .attention-box__a .attention-box__a-text::before {
  left: 15px;
}

.attention-box__explain {
  padding-left: 15px;
  margin-top: 8px;
  font-weight: 500;
}

.attention-box__asterisk {
  margin-top: 30px;
}
.attention-box__asterisk p {
  font-weight: 500;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1.5s ease-in;
  transition: opacity 1s, -webkit-transform 1.5s ease-in;
  transition: opacity 1s, transform 1.5s ease-in;
  transition: opacity 1s, transform 1.5s ease-in, -webkit-transform 1.5s ease-in;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.first {
  margin-top: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .first {
    margin-top: 40px;
    padding-inline: 40px;
  }
}

.first__inner {
  padding-block: 80px;
  background: #F8FBF2;
  border-radius: 20px;
}

.first__content {
  background-image: url(../img/concerns_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 260px;
  height: 260px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .first__content {
    width: 375px;
    height: 375px;
  }
}
.first__content .button__about {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .first__content .button__about {
    margin-top: 20px;
  }
}

.first__text {
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.16px;
}
@media screen and (min-width: 768px) {
  .first__text {
    font-size: 20px;
    line-height: 180%; /* 36px */
  }
}

.counseling-menu {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .counseling-menu {
    margin-block: 100px;
  }
}

@media screen and (min-width: 768px) {
  .counseling-menu__inner {
    max-width: 1080px;
    padding-inline: 40px;
  }
}

.counseling-menu__session {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .counseling-menu__session {
    font-size: 20px;
  }
}
.counseling-menu__session::after {
  position: absolute;
  content: "";
  background: rgba(224, 174, 177, 0.6);
  width: 100%;
  height: 8px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.counseling-menu__boxes {
  margin-top: 50px;
  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;
}
@media screen and (min-width: 1280px) {
  .counseling-menu__boxes {
    margin-top: 80px;
    -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: 50px;
    max-width: 1000px;
  }
}

.counseling-menu__box {
  background-image: url(../img/counseling-menu_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 22px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .counseling-menu__box {
    padding: 46px;
    min-width: 470px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.counseling-menu__wrapper {
  padding-block: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  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-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .counseling-menu__wrapper {
    padding-top: 38px;
    padding-bottom: 48px;
    padding-inline: 30px;
  }
}

.counseling-menu__info {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .counseling-menu__info {
    margin-top: 22px;
  }
}
.counseling-menu__info tbody {
  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;
}
@media screen and (min-width: 768px) {
  .counseling-menu__info tbody {
    gap: 6px;
  }
}
.counseling-menu__info tbody tr th {
  background: #4E9F8B;
  color: #fff;
  border-radius: 100px;
  padding: 1px 16px 2px 16px;
  width: 90px;
}
@media screen and (min-width: 768px) {
  .counseling-menu__info tbody tr th {
    width: 100px;
  }
}
.counseling-menu__info tbody tr td {
  font-size: 16px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .counseling-menu__info tbody tr td {
    font-size: 18px;
    padding-left: 30px;
  }
}

.counseling-menu__text {
  margin-top: 8px;
}

.brushUp {
  margin-top: 60px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .brushUp {
    margin-top: 80px;
    padding-inline: 40px;
  }
}
.brushUp::after {
  position: absolute;
  content: "";
  background-color: #FCF7F6;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 0;
  width: calc(100% - 40px);
  height: 100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .brushUp::after {
    width: calc(100% - 80px);
    height: 200px;
  }
}

.brushUp__inner {
  padding-top: 80px;
  padding-bottom: 90px;
  padding-inline: 17px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8FBF2), to(#EEF9FF));
  background: linear-gradient(180deg, #F8FBF2 0%, #EEF9FF 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 600px) {
  .brushUp__inner {
    padding-bottom: 120px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  }
}
@media screen and (min-width: 768px) {
  .brushUp__inner {
    padding-top: 120px;
    padding-bottom: 170px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  }
}
@media screen and (min-width: 1280px) {
  .brushUp__inner {
    padding-bottom: 200px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 120px), 50% 100%, 0 calc(100% - 120px));
  }
}

.brushUp__title {
  font-size: 30px;
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .brushUp__title {
    font-size: 36px;
    letter-spacing: 0.36px;
  }
}

.brushUp__content-top {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  text-align: center;
  padding-inline: 13px;
}
@media screen and (min-width: 768px) {
  .brushUp__content-top {
    gap: 70px;
  }
}

.brushUp__image {
  max-width: 150px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .brushUp__image {
    max-width: 200px;
  }
}

.brushUp__content-title {
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0.16px;
}
@media screen and (min-width: 768px) {
  .brushUp__content-title {
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.22px;
  }
}

.brushUp__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .brushUp__texts {
    text-align: center;
  }
}

.brushUp__content-bottom {
  margin-top: 60px;
  padding-block: 60px;
  background: #fff;
  border-radius: 20px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .brushUp__content-bottom {
    margin-top: 100px;
    padding-block: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 40px;
  }
}

.brushUp__recommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 224px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .brushUp__recommend-list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 770px;
    width: 100%;
    gap: 8px 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .brushUp__recommend-list {
    gap: 8px 60px;
  }
}

.brushUp__recommend-item {
  position: relative;
  padding-left: 28px;
  line-height: 150%;
  list-style: none;
}
.brushUp__recommend-item::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #4E9F8B;
  -webkit-mask-image: url(../img/topics_tick.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/topics_tick.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  left: 0;
  top: 2px;
}
@media screen and (min-width: 768px) {
  .brushUp__recommend-item::before {
    top: 3px;
  }
}

.brushUp__recommend-text {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .brushUp__recommend-text {
    padding-inline: 30px;
    text-align: center;
    margin-top: 50px;
  }
}

.brushUp__course {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .brushUp__course {
    margin-top: 100px;
  }
}

.brushUp__course-text {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .brushUp__course-text {
    margin-top: 50px;
  }
}

.brushUp__course .faq__boxes {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .brushUp__course .faq__boxes {
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.brushUp__course .faq__boxes .faq__box .faq-box__head {
  background-color: #FCFCFC;
}
.brushUp__course .faq__boxes .faq__box .faq-box__body {
  padding-inline: 30px;
  padding-bottom: 40px;
}
.brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 900px) {
  .brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper {
    -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;
    margin-left: auto;
    margin-right: auto;
  }
}
.brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper .faq-box__a-text {
  margin-top: 24px;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper .faq-box__a-text {
    margin-top: 0;
    max-width: 464px;
  }
}
.brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper .faq-box__a-text-image {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper .faq-box__a-text-image {
    max-width: 367px;
    width: 100%;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .brushUp__course .faq__boxes .faq__box .faq-box__body .faq-box__a .faq-box__a-wrapper .faq-box__a-text-image {
    margin-left: 50px;
  }
}

.faq-box__a-text-image {
  border-radius: 10px;
}

.text_gray {
  color: #929292;
}

.advance {
  margin-top: -60px;
  margin-bottom: 60px;
  padding-inline: 20px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .advance {
    padding-inline: 40px;
    margin-bottom: 80px;
  }
}

.advance__inner {
  background: #FCF7F6;
  padding-bottom: 70px;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .advance__inner {
    padding-bottom: 130px;
  }
}

.advance__title {
  padding-top: 40px;
  color: #E0AEB1;
}
@media screen and (min-width: 768px) {
  .advance__title {
    padding-top: 100px;
  }
}

.advance__course-title {
  color: #E0AEB1;
}

.advance__course .faq__boxes .faq__box .faq-box__head .faq-box__head-icon {
  color: #E0AEB1;
}
.advance__course .faq__boxes .faq__box .faq-box__head::after {
  background-image: url(../img/advance_arrow.png);
}
.about-numerology {
  margin-block: 60px;
}
@media screen and (min-width: 768px) {
  .about-numerology {
    margin-top: 100px;
    margin-bottom: 120px;
  }
}

.about-numerology__inner {
  padding-inline: 30px;
}
@media screen and (min-width: 600px) {
  .about-numerology__inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 768px) {
  .about-numerology__inner {
    max-width: 780px;
  }
}

.about-numerology__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .about-numerology__content {
    margin-top: 80px;
  }
}

.about-numerology__texts {
  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;
}
@media screen and (min-width: 768px) {
  .about-numerology__texts {
    gap: 25px;
  }
}

.direction {
  padding-inline: 20px;
}

.direction__inner {
  padding-top: 80px;
  padding-bottom: 79px;
  padding-inline: 17px;
  background: #F8FBF2;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  .direction__inner {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  .direction__inner {
    padding-inline: 40px;
    padding-block: 100px;
  }
}

.direction__content {
  margin-top: 30px;
  padding: 50px 30px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .direction__content {
    margin-top: 70px;
    padding-block: 70px;
  }
}

.direction__texts {
  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;
}
@media screen and (min-width: 768px) {
  .direction__texts {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }
}

.numerology-menu {
  margin-top: 80px;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .numerology-menu {
    margin-block: 100px;
  }
}

.numerology-menu__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .numerology-menu__content {
    margin-top: 50px;
  }
}
.numerology-menu__content .button {
  margin-top: 20px;
}

.numerology-menu__text {
  text-align: center;
}

.nav__instagram img {
  width: 36px;
  height: 36px;
}

.nav__instagram-head img {
  width: 30px;
  height: 30px;
}