@charset "UTF-8";
/*     mixin     */
/*----------- common -----------------------------------------*/
body {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #502403;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.core-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

/* セクションタイトル */
.sec__heading {
  display: inline-block;
  font-size: clamp(18px, 3.3vw, 33px);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.sec__heading::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #E8A5A5;
  top: 50%;
  left: -1em;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}
.sec__heading::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #E8A5A5;
  top: 50%;
  right: -1em;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}

/* CTA ボタン */
.btn__wrap {
  font-size: clamp(16px, 3vw, 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(300px, 56vw, 560px);
  padding: 1em 0;
  border-radius: 1.5em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.36);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.36);
  background-image: linear-gradient(60deg, #B74DB9 0%, #DC4C84 25%, #EF8A60 50%, #DC4C84 75%, #B74D89 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: vertical 2s linear infinite;
          animation: vertical 2s linear infinite;
}
.btn__txt {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-right: 0.6em;
}
.btn__arrow {
  width: 2em;
  height: auto;
}
.btn__note {
  font-size: 0.8em;
  font-weight: bold;
  line-height: 3;
}

.btn:hover {
  background-position: 99% 50%;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translate(0px, -3px);
            transform: translate(0px, -3px);
  }
  10% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
  20% {
    -webkit-transform: translate(0px, -3px);
            transform: translate(0px, -3px);
  }
  30% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
  40% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes vertical {
  0% {
    -webkit-transform: translate(0px, -3px);
            transform: translate(0px, -3px);
  }
  10% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
  20% {
    -webkit-transform: translate(0px, -3px);
            transform: translate(0px, -3px);
  }
  30% {
    -webkit-transform: translate(0px, 3px);
            transform: translate(0px, 3px);
  }
  40% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
/* 改行 */
.display--tab {
  display: none;
}
@media (max-width: 1000px) {
  .display--tab {
    display: block;
  }
}

.display--sp {
  display: none;
}
@media (max-width: 580px) {
  .display--sp {
    display: block;
  }
}

.hidden--tab {
  display: block;
}
@media (max-width: 1000px) {
  .hidden--tab {
    display: none;
  }
}

.hidden--sp {
  display: block;
}
@media (max-width: 580px) {
  .hidden--sp {
    display: none;
  }
}

/* バナー */
.bnr {
  position: relative;
  width: 90%;
  padding: 3% 5% 3% 0;
  background-color: #fff;
  border-radius: min(2vw, 20px);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.bnr::after {
  position: absolute;
  content: "";
  width: min(200px, 20vw);
  aspect-ratio: 1;
  background-image: url("../img/100.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
  -webkit-transform: translate(-20%, -30%);
          transform: translate(-20%, -30%);
}
.bnr.is-lp02::after {
  width: min(160px, 16vw);
}

.bnr__txt {
  color: #CA3825;
  font-size: clamp(18px, 4.6vw, 46px);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.is-lp02 .bnr__txt {
  font-size: clamp(15px, 3.8vw, 38px);
}

.bnr__img {
  position: absolute;
  width: auto;
  height: 130%;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 580px) {
  .bnr__img {
    -webkit-transform: translate(10%, -50%);
            transform: translate(10%, -50%);
  }
}
.bnr__img.is-lp02 {
  height: 60%;
  top: 70%;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
}
@media (min-width: 1200px) {
  .bnr__img.is-lp02 {
    height: 70%;
    top: 60%;
    -webkit-transform: translate(40%, -50%);
            transform: translate(40%, -50%);
  }
}
@media (max-width: 580px) {
  .bnr__img.is-lp02 {
    display: none;
  }
}

.bnr__img02 {
  display: none;
}
@media (max-width: 580px) {
  .bnr__img02 {
    display: block;
    width: 70%;
    max-width: 600px;
    margin-bottom: 8%;
  }
}

/* アニメーション */
.js-inview.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.js-inview.fadein.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*----------- catch -----------------------------------------*/
.catch {
  background-color: #FAF5F0;
}

.catch__content {
  padding: 5% 0;
  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;
}

.catch__lead {
  font-size: clamp(13px, 3vw, 30px);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.catch__lead .underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #E8A5A5), color-stop(90%, #E8A5A5), color-stop(90%, transparent));
  background-image: linear-gradient(transparent 70%, #E8A5A5 70%, #E8A5A5 90%, transparent 90%);
}

.catch__bnr {
  margin: 10% 0 6.5%;
}
.catch__bnr.is-lp02 {
  padding: 3% 0;
}

/*----------- strength ----------------------------------------*/
.strength {
  background-image: url("../img/strength-bg.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.strength__content {
  padding-top: min(160px, 16vw);
  padding-bottom: min(100px, 10vw);
}

.strength-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.strength-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(18px, 3.3vw, 33px);
  font-weight: bold;
  line-height: 2;
}

.strength-list__icon {
  width: 1em;
  padding-top: 0.2em;
  margin-right: 0.3em;
}

/*----------- example -----------------------------------------*/
.example {
  background-color: #F2EEEE;
}

.example__content {
  padding: 10% 0;
  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;
}

.example-list {
  margin-top: min(10vw, 100px);
  width: 90%;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.8em;
}

.example-list__item {
  background-color: #fff;
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.example-list__num {
  width: 3.5em;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #E8A5A5), color-stop(50%, transparent));
  background-image: linear-gradient(to right bottom, #E8A5A5 50%, transparent 50%);
  padding: 0.3em;
}

.example-list__txt {
  display: inline-block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.6em;
}

.example-list__etc {
  width: 90%;
  font-size: clamp(16px, 2.8vw, 28px);
  font-weight: bold;
  line-height: 3;
  text-align: right;
}

/*----------- voice -----------------------------------------*/
.voice {
  background-image: url("../img/voice-bg.png");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  padding-top: min(100px, 10vw);
  padding-bottom: min(60px, 6vw);
  position: relative;
  z-index: 0;
}
@media (max-width: 1000px) {
  .voice {
    background-image: url("../img/voice-bg--sp.png");
  }
}

.voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(60px, 6vw);
}
@media (min-width: 1200px) {
  .voice__content {
    gap: min(20px, 2vw);
  }
}

.voice-list {
  width: 90%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(60px, 6vw);
}
@media (min-width: 1200px) {
  .voice-list {
    width: 100%;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (max-width: 580px) {
  .voice-list {
    gap: 8vw;
  }
}

.voice-list__item {
  position: relative;
  width: 100%;
  background-color: #E6EBEC;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.4;
  padding: 3em 2em 2em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1200px) {
  .voice-list__item {
    width: 30%;
    aspect-ratio: 1/1;
  }
}
.voice-list__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #BEC9CD;
  top: 0.5em;
  left: 0.5em;
  z-index: -1;
}

@media (min-width: 1200px) {
  .voice-list__item:nth-of-type(1) {
    margin-top: 8em;
  }
  .voice-list__item:nth-of-type(2) {
    margin-top: 4em;
  }
}
.voice-list__item-ttl {
  position: absolute;
  width: 24%;
  min-width: 120px;
  top: 0;
  left: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1200px) {
  .voice-list__item-ttl {
    width: 60%;
  }
}

/*----------- cta -------------------------------------------*/
.cta {
  background-color: #FAF5F0;
}

.cta__content {
  position: relative;
  max-width: 1000px;
  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;
  padding-top: min(120px, 12vw);
  padding-bottom: min(60px, 6vw);
  gap: min(4vw, 40px);
}
@media (min-width: 1200px) {
  .cta__content {
    max-width: none;
    gap: min(10vw, 100px);
  }
}
@media (max-width: 1000px) {
  .cta__content {
    padding-top: min(30px, 3vw);
  }
}

.cta__heading {
  color: #CA3825;
  font-size: clamp(16px, 4.2vw, 42px);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  position: relative;
  display: none;
}
@media (min-width: 1200px) {
  .cta__heading {
    display: block;
  }
}
.cta__heading .underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #E99489), color-stop(90%, #E99489), color-stop(90%, transparent));
  background-image: linear-gradient(transparent 70%, #E99489 70%, #E99489 90%, transparent 90%);
}
.cta__heading::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #CA3825;
  bottom: 0;
  left: -0.4em;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.cta__heading::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #CA3825;
  bottom: 0;
  right: -0.4em;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.cta__img {
  display: none;
}
@media (min-width: 1200px) {
  .cta__img {
    width: 20%;
    min-width: 120px;
    display: block;
    position: absolute;
    bottom: 5%;
    right: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media (min-width: 1200px) {
  .cta__img.is-lp02 {
    width: 20%;
    min-width: 120px;
    display: block;
    position: absolute;
    top: 60%;
    right: 0;
    -webkit-transform: translateX(-35%);
            transform: translateX(-35%);
  }
  .cta__img.is-lp02::after {
    position: absolute;
    content: "";
    width: 50%;
    aspect-ratio: 1;
    background: url("../img/100.png") no-repeat center center/contain;
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -60%);
            transform: translate(50%, -60%);
  }
}

.cta__bnr {
  margin: 6% 0 4%;
  display: block;
}
@media (min-width: 1200px) {
  .cta__bnr {
    display: none;
  }
}

/*----------- profile -------------------------------------------*/
.profile {
  border: 1.7vw solid #F2E4E6;
  padding: 10% 0 6%;
  background-image: url("../img/profile-bg02.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1400px) {
  .profile {
    border: 24px solid #F2E4E6;
  }
}

.profile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(100px, 10vw);
}

.profile__content {
  width: 90%;
  margin: 0 auto;
}

.profile__self-introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.profile__self-introduction::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 70%;
  background-image: url("../img/insta-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 580px) {
  .profile__self-introduction {
    -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;
  }
}

.profile__img {
  width: 20%;
  height: auto;
}
@media (max-width: 580px) {
  .profile__img {
    width: 40%;
    min-width: 100px;
  }
}

.profile__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1.5em;
}
@media (max-width: 580px) {
  .profile__txt {
    padding: 0 2em;
  }
}

.profile__name {
  color: #E8A5A5;
  font-size: 1.4em;
}

.profile__detail {
  margin-top: 0.4em;
}

.profile__media-introduction {
  margin-top: min(100px, 10vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 500px) {
  .profile__media-introduction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.profile__media-introduction-img {
  width: 40%;
  margin-top: -6%;
}
@media (max-width: 580px) {
  .profile__media-introduction-img {
    width: 30%;
  }
}
@media (max-width: 500px) {
  .profile__media-introduction-img {
    width: 50%;
    margin-top: 4%;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

/*----------- message -------------------------------------------*/
:root {
  --scrollbar-width: calc(100vw - 100%);
}

.some-element {
  width: calc(100% + var(--scrollbar-width));
}

.message__top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#F2E4E6));
  background-image: linear-gradient(#fff 0%, #F2E4E6 100%);
  padding: 14% 0 6%;
  position: relative;
}
.message__top::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc((100vw - --scrollbar-width) / 2) solid transparent;
  border-left: calc((100vw - --scrollbar-width) / 2) solid transparent;
  border-top: 6vw solid #F2E4E6;
  border-bottom: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (min-width: 1400px) {
  .message__top::after {
    border-right: 700px solid transparent;
    border-left: 700px solid transparent;
    border-top: 84px solid #F2E4E6;
  }
}

.message__lead {
  font-size: clamp(18px, 3.3vw, 33px);
  font-weight: bold;
  text-align: center;
}

.message__txt {
  margin-top: 2em;
  font-size: clamp(14px, 2.4vw, 24px);
  font-weight: bold;
  line-height: 2;
  text-align: center;
  position: relative;
}
.message__txt::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  background-image: url("../img/insta-icon--white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: 10%;
}
@media (max-width: 580px) {
  .message__txt::after {
    left: 2em;
  }
}

.message__bottom {
  padding: 20% 0 10%;
  background-image: url("../img/message-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message-list {
  width: 96%;
  margin: 0 auto;
}

.message-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.message-list__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.message-list__item:not(:first-child) {
  margin-top: 10%;
}
@media (max-width: 580px) {
  .message-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message-list__item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.message-list__img {
  width: 38%;
  min-width: 180px;
}

.message-list__txt {
  width: 57%;
  min-width: 300px;
  font-size: clamp(14px, 2vw, 20px);
}

.message-list__lead {
  color: #E8A5A5;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 2.1;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0.4em;
}

.message-list__detail {
  text-align: justify;
  line-height: 1.6;
}
.message-list__detail:nth-of-type(2) {
  margin-top: 1em;
}

/*----------- achieve -------------------------------------------*/
.achieve {
  padding: 8% 0 6%;
  background-color: #F2EEEE;
}

.achieve__heading {
  color: #E8A5A5;
  font-size: clamp(18px, 3.1vw, 31px);
  font-weight: bold;
  text-align: center;
  position: relative;
}
.achieve__heading::after {
  position: absolute;
  content: "";
  width: 4.6em;
  height: 4.6em;
  background-image: url("../img/insta-icon--white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: -2em;
  right: 0.4em;
}
@media (max-width: 1000px) {
  .achieve__heading::after {
    width: 3em;
    height: 3em;
    top: -1em;
  }
}
@media (max-width: 580px) {
  .achieve__heading::after {
    top: 1em;
  }
}

.achieve__content {
  margin-top: 8%;
  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;
}

.achieve__grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
}
.achieve__grid::before {
  position: absolute;
  content: "";
  width: 6em;
  height: 6em;
  background-image: url("../img/insta-icon--white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-160%, 0) scale(-1, 1);
          transform: translate(-160%, 0) scale(-1, 1);
}
@media screen and (max-width: 1200px) {
  .achieve__grid::before {
    display: none;
  }
}

.achieve__txt {
  width: 90%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8%;
  position: relative;
}
.achieve__txt::before {
  position: absolute;
  content: "";
  width: 6em;
  height: 6em;
  background-image: url("../img/insta-icon--white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(120%, 80%);
          transform: translate(120%, 80%);
}
@media screen and (max-width: 1400px) {
  .achieve__txt::before {
    display: none;
  }
}

.achieve__txt-lead {
  color: #E8A5A5;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.achieve__txt-detail {
  margin-top: 6%;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  text-align: justify;
}

/*----------- teaching -------------------------------------------*/
.teaching {
  padding: 15% 0 6%;
  background-color: #F2EEEE;
  overflow: hidden;
}

.teaching__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;
}

.teaching__heading {
  display: inline-block;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 12%;
  position: relative;
}
.teaching__heading::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  background-image: url("../img/book.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  right: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
@media (max-width: 580px) {
  .teaching__heading::after {
    width: 24%;
    height: 124%;
    -webkit-transform: translate(120%, -20%);
            transform: translate(120%, -20%);
  }
}

.teaching__content {
  width: 80%;
  min-width: 350px;
  margin: 0 auto;
}

/*----------- footer -------------------------------------------*/
.footer {
  height: 2.6em;
  font-size: 14px;
  background-color: #faf5f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
}
@media (max-width: 1000px) {
  .footer {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */