* {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333333;
  text-decoration: none;
}

body {
  background: #F6F0F2;
}

li {
  list-style: none;
}

.content {
  max-width: 414px;
  min-width: 375px;
  margin: 0 auto;
  background: #FDFAF8;
  overflow: hidden;
}

.top {
  margin: 0 auto;
  position: relative;
}

.top__bg {
  background-repeat:no-repeat;
  width: 100%;
}

.top__inner__content {
  width: 100%;
  height: 100%;
  padding: 36px 25px 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.top__headline {
  font-size: 27px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FDFAF8;
}

.top__headline p {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 0 2px;
}

.top__headline p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: #EAC3CE;
  z-index: -1;
}

.logo {
 margin: 10% 0;
}

.circle__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.circle {
  position: relative;
  width: 103px;
  height: 103px;
  background: #DE92A7;
  border-radius: 50%;
}

.circle.fade.active {
  animation-name: zoomInAnime;
  animation-fill-mode: forwards;
  animation-duration: .5s;
  opacity: 0;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.circle__inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

}

.circle p,
.circle span {
  color: #FDFAF8;
  font-weight: 500;
}

.circle-1 {
  font-size: 14px;
  line-height: 22px;
  animation-delay: .5s;
}
.circle-1 .emp {
  font-size: 20px;
}
.circle-1 span {
  font-size: 25px;
}

.circle-2 {
  font-size: 10px;
  animation-delay: 1s;
}

.circle-2 span {
  font-size: 15px;
}

.circle-3 {
  font-size: 10px;
  animation-delay: 1.5s;
}

.circle-3 span {
  font-size: 19px;
}

.top__text {
  margin: 20px auto;
}

.top__text p {
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #FDFAF8;
}

.button {
  width: 310px;
  height: 60px;
  background: #DE92A7;
  border-radius: 47px;
  margin: 0 auto;
}

.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.button a:active {
  transform: scale(.95);
}

.button p {
  color: #FDFAF8;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 3px;
}

.button img {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
  animation: Arrow 1s linear 1s infinite;
}

@keyframes Arrow {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(5px, -50%);
  }
}

.top .button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
} 

.vision {
  width: 100%;
  position: relative;
}

.vision__bg {
  padding-top: 30px;
  background-repeat: no-repeat;
}

.vision__inner__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 65px;
}

.vision__headline {
  margin: 40px auto 25px;
  color: #DE92A7;
  font-size: 27px;
  font-weight: 600;
  line-height: 35px;
}

.vision__text p,
.vision__text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 25.5px;
  
}

.vision__text span {
  text-shadow: 1px 0.5px 0 #FDFAF8;
  position: relative;
  z-index: 3;
}

.vision__text span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: #EAC3CE;
  z-index: -1;
}

.whyX {
  width: 100%;
  position: relative;
  padding: 25px 17px 32px;
}

.whyX__headline {
  text-align: center;
  margin-bottom: 20px;
}

.whyX__headline img {
  width: 100%;
}

.whyX__headline p {
  font-size: 13px;
  font-weight: 500;
}


.whyX__listItems ol {
  counter-reset: list;
  list-style-type: none;
  padding-left: 20px;
}

.whyX__listItems ol li {
  position: relative;
  width: fit-content;
  margin: 7px 0 7px 0px;
  padding-left: 40px;
  padding-right: 15px;
  color: #FDFAF8;
  font-weight: 400;
  font-size: 13px;
  line-height: 30px;
  background: #DE92A7;
  border-radius: 20px;
}

.whyX__listItems ol li:before {
  content: counter(list);
    counter-increment: list;
    position: absolute;
    top: 50%;
    left: -15px;
    height: 40px;
    width: 40px;
    transform: translateY(-50%);
    background: #EAC3CE;
    color: #FDFAF8;
    font-size: 28px;
    line-height: 35px;
    border: 5px solid #FDFAF8;
    text-align: center;
    font-weight: 500;
    border-radius: 26px;
}

.whyX__listItems p {
  font-size: 12px;
  font-weight: 500;
  padding: 20px 0;
}

.whyX__listItems span {
  color: #DA6C8A;
}

.improve {
  width: 100%;
  position: relative;
  height: 1100px;
}

.improve__bg {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0);
}

.improve__inner__content {
  position: absolute;
  width: 100%;
  top: 110px;
  left: 0;
}

.improve__headline{
  color:#DE92A7;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.improve__item {
  position: relative;
  display: flex;
  align-items: end;
  flex-wrap:nowrap;
  margin: 0 auto 25px;
  width: fit-content;
}

.improve__item img {
  height: min-content;
  z-index: 2;
}

.improve__item-2 img {
  margin-right: -40px;
  margin-bottom: -10px;
}

.improve__item-3 img {
  margin-left: -25px;
  margin-bottom: -5px;
}

.improve__item-4 img {
  margin-right: -40px;
  margin-bottom: -8px;
}

.improve__item-5 img {
  margin-left: -50px;
  margin-bottom: -15px;
}

.improve__item__title {
  font-size: 18px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FDFAF8;
  margin-bottom: 10px;
  word-break: keep-all;
  letter-spacing: 0.8px;
}

.improve__item__title span {
  font-size: 35px;
  padding-right: 8px;
}

.improve__item__text p {
  font-size: 10px;
  line-height: 15px;
  font-weight: 500;
  background: #fff;
  height: fit-content;
  padding: 6px 10px;
  border-radius: 10px;
  width: max-content;
}

.improve__item__text span {
  color: #DA6C8A;
}

.improve__message {
  padding: 35px 0;
}

.improve__message__headline {
  margin-top: 10px;
  padding-left: 27px;
}

.improve__message__headline p {
  font-size: 19px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FDFAF8;
  line-height: 28px;
}

.improve__message__headline span {
  position: absolute;
  z-index: 3;
}

.improve__message__headline span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #EAC3CE;
    z-index: -1;
}

.improve__message__text {
  margin: 60px auto 30px;
  line-height: 20px;
  padding-left: 27px;
}

.improve__message__text p {
  font-size: 13px;
  font-weight: 500;
}

.improve__message__text span {
  color: #DA6C8A
}

.worries {
  background: #F4DFE6;
  padding: 15px 0;
}

.worries__headline {
  font-size: 24px;
  font-weight: 700;
  color: #DE92A7;
  text-shadow: 1px 1px 0 #FDFAF8;
  letter-spacing: 0.2px;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.worries__headline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #DE92A7;
  bottom: -2px;
  left: 0;
  z-index: 2;
}

.worries__headline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FDFAF8;
  bottom: -3px;
  left: 1px;
  z-index: 1;
}

.worries__img {
  text-align: center;
  margin: 30px auto 10px;
}

.worries__text {
  padding-left: 30px;
  padding-bottom: 20px;
}

.worries__text p {
  font-size: 14px;
  font-weight: 500;
  text-shadow: 1px 1px 0 #FDFAF8;
  line-height: 20px;
}

.worries__text span {
  position: relative;
  z-index: 3;
}

.worries__text span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #EAC3CE;
  z-index: -1;
}

.feature {
  padding: 20px 10px;
}

.feature__headline {
  text-align: center;
}

.feature__item {
  margin: 10px auto 20px;
}

.feature__title {
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
}

.feature__text__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EAC3CE;
  border-radius: 10px;
  padding:10px 13px 15px;
}

.feature__text {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 10px;
  width: 100%;
}

.feature__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.1px;
}

.feature__text span {
  color: #DA6C8A;
}

.merit {
  counter-reset: num;
}

.merit__headline {
  text-align: center;
  margin-bottom: 15px;
}

.merit__item {
  padding: 0 10px;
  margin-bottom: 35px;
}

.merit__title {
  font-size: 17px;
  color: #DE92A7;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  width: fit-content;
  margin: 0 auto 6px;
}

.merit__title::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 17px;
  background: #DE92A7;
  top: 5px;
  left: -10px;
  transform: rotate(-35deg);
}

.merit__title::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 17px;
  background: #DE92A7;
  top: 6px;
  right: -7px;
  transform: rotate(35deg);
}

.merit__text {
  background: #DE92A7;
  padding: 10px;
  position: relative;
  border-radius: 10px;
}

.merit__text::before {
  counter-increment: num 1;
  content: '0'counter(num);
  position: absolute;
  font-size: 144px;
  font-weight: 500;
  bottom: 0;
  line-height: 155px;
  color: rgba(253, 250, 248, 0.15);
}

.merit__text p,
.merit__text span 
{
  color: #fff;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 19px;
  white-space: nowrap;
  letter-spacing: 0.9px;
}

.merit__text span {
  font-weight: 700;
}

.merit__text img {
  position: absolute;
}

.merit__text .merit__img {
  display: block;
  width: 100%;
  max-width: 80px;
  position: absolute;
  bottom: -75px;
  right: 0;
}

.merit__text .merit__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.merit__item-1 img{
  bottom: -30px;
  right: -15px;
}

.merit__item-2 img{
  top: -15px;
  right: -8px;
}

.merit__item-3 img {
  bottom: 10px;
  right: 5px;
}

.merit__item-4 img {
  bottom: 62px;
  right: -10px;
}

.merit__item-5 img {
  bottom: -22px;
  right: 7px;
}

.merit__item-6 img {
  bottom: 5px;
  right: 5px;
}

.merit__item-7 img {
  bottom: 100px;
  right: 15px;
}

.merit__item-8 img {
  bottom: 0px;
  right: 15px;
}

.meeting {
  height: 1220px;
  margin-bottom: 150px;
}

.meeting__headline {
  width: fit-content;
  margin: 0 auto;
  font-size: 22px;
  color: #DE92A7;
  font-weight: 700;
  position: relative;
}

.meeting__headline span:first-of-type::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DE92A7;
  top: calc(50% + 2px);
  left: -15px;
  transform: translateY(-50%);
}

.meeting__headline span:first-of-type::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DE92A7;
    top: calc(50% + 2px);
    right: -15px;
    transform: translateY(-50%);
}

.meeting__headline span:last-of-type::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EAC3CE;
  top: calc(50% + 2px);
  left: -27px;
  transform: translateY(-50%);
}

.meeting__headline span:last-of-type::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EAC3CE;
  top: calc(50% + 2px);
  right: -27px;
  transform: translateY(-50%);
}

.meeting__text {
  margin: 20px auto;
}

.meeting__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  width: max-content;
  margin: 0 auto;
}

.meeting__text span {
  color: #DA6C8A;
}

.meeting__timeline > li {
  margin-bottom: 60px;
  overflow: hidden;
  margin: 0;
  position: relative;
  list-style: none;
}

.timeline__content {
  float: left;
  border-left: 3px #F4DFE6 solid;
  padding-left: 30px;
  margin-left: 40px;
  position: relative;
  padding-bottom: 15px;
}
.timeline__content.dashed {
  border-left: 3px #F4DFE6 dotted;
}

.timeline__content.last-item {
  padding-bottom: 0;
  height: 70px;
}

.timeline__content__dammy {
  height: 40px;
  border-left: 3px #F4DFE6 dotted;
  padding-left: 30px;
  margin-left: 40px;
  position: relative;
}

.timeline__content::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #F4DFE6;
  position: absolute;
  left: -6.5px;
  top: 0;
  transform: rotate(-45deg);
}

.timeline__content h3,
.timeline__content p {
  position: relative;
  top: -15px
}

.timeline__content h3,
.timeline__content span
 {
  font-size: 22px;
  font-weight: 600;
  color: #DE92A7;
}

.timeline__content span {
  font-size: 14px;
  line-height: 12px;
  padding-right: 7px;
}

.timeline__content p {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
}

.slack__headline {
  width: fit-content;
  margin: 0 auto;
  color: #DE92A7;
  font-size: 20px;
  font-weight: 600;
  padding-left: 55px;
  margin-top: 50px;
  margin-top: 270px;
  letter-spacing: 1px;
  position: relative;
}

.slack__headline::before {
  content: url('./asset/slack.png');
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slack__text p {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin: 25px auto;
}

.slack__example {
  width: max-content;
  margin: 0 auto;
  background: #DE92A7;
  padding: 7px 15px;
  width: 230px;
}

.slack__example ul {
  list-style: none;
}

.slack__example li {
  color: #FDFAF8;
  font-size: 13px;
  line-height: 22px;
}

.slack__note {
  margin: 0 auto;
  width: 230px;
}

.slack__note p{
  color: #DE92A7;
  font-size: 8px;
  letter-spacing: -0.4px;
}

.conversation {
  padding: 40px 0;
}

.conversation__headline {
  color: #DE92A7;
  font-size: 25px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
  line-height: 32px;
}

.conversation__headline::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 80%;
  background: #DE92A7;
  top: calc(50% + 2px);
  left: -20px;
  transform: translateY(-50%);
}

.conversation__headline::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 80%;
  background: #DE92A7;
  top: calc(50% + 2px);
  right: -20px;
  transform: translateY(-50%);
}

.conversation__text {
  font-size: 14px;
  font-weight: 500;
  margin: 20px auto;
  text-align: center;
}

.conversation__title {
  display: flex;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.conversation__title p {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

.conversation__title span {
  font-size: 13px;
  margin-right: 5px;
}

.conversation__title::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 80%;
  top: calc(50% + 2px);
  left: -15px;
  transform: translateY(-50%);
  background: #DE92A7;
}

.conversation__list {
  width: 320px;
  margin: 0 auto;
}

.conversation__comment {
  position: relative;
  width: 240px;
  height: auto;
  padding: 5px;
  background-color: #F4DFE6;
  border-radius: 10px;
  line-height: 13px;
  margin-top: 20px;
}

.conversation__comment:nth-of-type(1) {
  transition: .5s;
}
.conversation__comment:nth-of-type(2) {
  transition: 1s;
}
.conversation__comment:nth-of-type(3) {
  transition: 1.5s;
}
.conversation__comment:nth-of-type(4) {
  transition: 2s;
}
.conversation__comment:nth-of-type(5) {
  transition: 2.5s;
}
.conversation__comment:nth-of-type(6) {
  transition: 3s;
}
.conversation__comment:nth-of-type(7) {
  transition: 3.5s;
}
.conversation__comment:nth-of-type(8) {
  transition: 4s;
}
.conversation__comment:nth-of-type(9) {
  transition: 4.5s;
}
.conversation__comment:nth-of-type(10) {
  transition: 5s;
}
.conversation__comment:nth-of-type(11) {
  transition: 5.5s;
}
.conversation__comment:nth-of-type(12) {
  transition: 6s;
}

.conversation__comment p {
  font-size: 10px;
  font-weight: 500;
  position: relative;
  padding: 5px;
  z-index: 3;
  width:  fit-content;
  margin: 0 auto;
  min-height: 50px;
  display: grid;
  align-items: center;
}

.conversation__comment p::before {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 8px;
  width: 230px;
  height: 100%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.conversation__comment span {
  color: #DA6C8A;
  display: contents;
}

.conversation__beginner {
  z-index: 3;
}

.conversation__beginner::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -11px;
  bottom: -3.6px;
  border-right: 33px solid #F4DFE6;
  border-top: 33px solid transparent;
  border-bottom: 7px solid transparent;
  transform: rotate(90deg);
  border-radius: 5px;
  z-index: -1;
}

.beginner-1::before {
  content: url('./asset/beginner-1.png');
  position: absolute;
  right: -75px;
  bottom: 0
}

.beginner-2::before {
  content: url('./asset/beginner-2.png');
  position: absolute;
  right: -75px;
  bottom: 0
}

.beginner-3::before {
  content: url('./asset/beginner-3.png');
  position: absolute;
  right: -75px;
  bottom: 0
}

.conversation__satochin {
  z-index: 3;
  margin-left: 80px;
  position: relative;
}

.conversation__satochin::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -11px;
  bottom: -3.6px;
  border-right: 33px solid #F4DFE6;
  border-top: 7px solid transparent;
  border-bottom: 33px solid transparent;
  transform: rotate(90deg);
  border-radius: 5px;
  z-index: -1;
}

.conversation__satochin::before {
  content: url('./asset/satochinkun.png');
  position: absolute;
  bottom: 0;
  left: -75px;
}

.recommend {
  background: #fff;
  width: 85%;
  margin: 40px auto;
  padding: 20px 20px;
  position: relative;
}

.line {
  width: 100%;
}

.recommend .line:first-of-type {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
}

.recommend .line:last-of-type {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
}

.recommend__subheadline {
  position: relative;
  padding-left: 75px;
}

.recommend__subheadline p{
  color: #DE92A7;
  font-size: 17px;
  font-weight: 700;
}

.balloon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  width: 62px;
  height: 62px;
  bottom: 0;
  left: 10px;
  text-align: center;
  background: #DE92A7;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon p {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-align: center;
}

.balloon::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -9px;
  margin-top: -9px;
  border: 7px solid transparent;
  border-left: 11px solid #DE92A7;
  z-index: 0;
  -webkit-transform: rotate(32deg);
  transform: rotate(32deg);
}

.recommend__headline {
  color: #DE92A7;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.5px;
}

.recommend__list {
  margin: 0 auto;
  width: fit-content;
  counter-reset: recommend;
  margin: 20px auto 15px;
}

.recommend__list li{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  text-shadow: 1px 1px 0 #FDFAF8;
  position: relative;
}

.recommend__list span {
  position: relative;
  z-index: 2;
}

.recommend__list span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: #EAC3CE;
  z-index: -1;
}

.recommend__list li::before {
  counter-increment: recommend 1;
  content: counter(recommend);
  position: absolute;
  font-size: 14px;
  text-align: center;
  width: 18px;
  height: 18px;
  background: #DE92A7;
  color: #fff;
  text-shadow: none;
  line-height: 16px;
  bottom: 0;
  left: -25px;
  border-radius: 50%;
}

.member {
  padding: 25px 25px 40px;
}

.member__headline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.member__headline {
  color: #FDFAF8;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}

.member__headline span {
  color: #FDFAF8;
  font-size: 23px;
  font-weight: 600;
}

.member__headline::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 75px;
  background: #DE92A7;
  transform: rotate(-3deg);
  z-index: -1;
}

.member__headline::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 34px;
  top: 19px;
  background: #EAC3CE;
  transform: rotate(11deg);
  z-index: -2;
}

.member__item {
  text-align: center;
  padding: 25px 0;
}

.member__item .icon {
  width: 128px;
  height: 128px;
  margin-bottom: 10px;
}

.member .member__name {
  color: #DE92A7;
  font-size: 24px;
  font-weight: 700;
}

.member .follower {
  margin: 10px auto;
}

.member .follower p {
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
}

.member .follower span {
  color: #DE92A7;
  font-size: 36px;
  letter-spacing: 2px;
}

.member__keyword p{
  color: #DE92A7;
  font-size: 20px;
  font-weight: 700;
}

.member__graph {
  margin: 15px auto 0;
}

.member__graph img {
  width: 310px;
  height: auto;
  border: 3px solid#DE92A7;
  border-radius: 2px;
}

.member__list li{
  color: #DE92A7;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 8px;
  line-height: 20px;
}

.member__list p {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.member__list span {
  font-weight: 900;
}

.introduce {
  padding: 23px;
}

.introduce__headline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 24px;
  margin-bottom: 55px;
  z-index: 2;
}

.introduce__headline p {
  color: #FDFAF8;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.1px;
}

.introduce__headline span {
  color: #FDFAF8;
  font-size: 10px;
  margin-right: 2px;
  letter-spacing: .8px;
}

.introduce__headline p:last-of-type {
  font-size: 22px;
  letter-spacing: .8px;
}

.introduce__headline::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 75px;
  background: #DE92A7;
  transform: rotate(3deg);
  z-index: -1;
}

.introduce__headline::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 34px;
  top: 3px;
  background: #EAC3CE;
  transform: rotate(-11deg);
  z-index: -2;
}

.introduce__item {
  position: relative;
  height: 165px;
  margin: 0 auto 20px;
  z-index: 2;
  width: 330px;
}

.introduce__item::before {
  content: url('./asset/frame.svg');
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.introduce .member__icon {
  position: absolute;
  border: 2px solid #DE92A7;
  width: 60px;
  height: 60.1px;
  border-radius: 8px;
  left: 0;
}

.introduce .member__icon img {
  width: 57px;
  height: 57px;
}

.introduce .member__name {
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 12px;
  left: 90px;
  text-shadow: 1px 1px 0 #FDFAF8;
}

.introduce .member__name span {
  font-size: 19px;
}

.introduce .member__name::before {
  content: '';
  position: absolute;
  width: 2.5px;
  height: 80%;
  top: calc(50% + 2px);
  left: -10px;
  transform: translateY(-50%);
  background: #DE92A7;
  box-shadow: 1px 1px 0 #FDFAF8;
}

.introduce .follower {
  position: absolute;
  top: 10px;
  right: 10px;
  width: max-content;
  background: #fff;
  border-radius: 5px;
  padding: 4px 6px;
}

.introduce .follower p:first-of-type {
  color: #DE92A7;
  font-size: 10px;
  line-height: 5px;
  font-weight: 900;
  transform: scale(0.8) translateX(-10px);
  position: relative
}
.introduce .follower p:last-of-type {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.introduce__text {
  position: absolute;
  top: 50px;
  width: 100%;
  padding: 0 10px;
}

.introduce__text p {
  font-size: 10px;
  font-weight: 500;
  line-height: 17px;
}

.introduce__text p:first-of-type {
  position: relative;
  left: 68px;
}

.more_info {
  background: #DE92A7;
  position: relative;
  padding: 30px 0 5px;
  text-align: center;
}

.more_info .pin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(25deg) ;
}

.more_info__headline {
  color: #FDFAF8;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.more_info__text {
  margin-bottom: 28px;
}

.more_info__text p {
  color: #FDFAF8;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.more_info__item img {
  width: 340px;
}

.more_info__item p {
  position: relative;
  color: #FDFAF8;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: -5px auto 20px;
}


.cost {
  position: relative;
  background: #fff;
  padding: 20px 25px;
  z-index: 2;
  height: 425px;
}

.cost__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.cost__headline {
  color: #DE92A7;
  font-size: 29px;
  font-weight: 700;
}

.cost ul {
  margin: 20px auto 30px;
}

.cost li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 22px;
  position: relative;
  margin-left: 25px;
}

.cost li::before {
  content: url('./asset/check.svg');
  position: absolute;
  top: calc(50% + 2px);
  left: -25px;
  transform: translateY(-50%);
}

.cost__message {
  width: 155px;
  text-align: right;
  margin-bottom: 10px;
}

.cost__message p {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 1.5px;
}

.cost__message span {
  color: #DA6C8A;
  letter-spacing: 1px;
}

.cost__text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.cost__text .monthly {
  writing-mode: vertical-rl;
  color: #DE92A7;
  font-size:20px;
  font-weight: 900;
  line-height: 22px;
  letter-spacing: 4.5px;
}

.cost__text p {
  color: #DE92A7;
  font-size: 39px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 20px;
}

.cost__text span {
  color: #DE92A7;
  font-size: 54px;
  letter-spacing: 3px;
}

.cost__text span.comma {
  font-size: 28px;
  letter-spacing: 2px;
}

.cost__note p {
  font-size: 10px;
  font-weight: 500;
  transform-origin: left center;
  transform: scale(0.8);
  line-height: 11px;
}

.faq {
  background: #F4DFE6;
  padding: 20px 0;
}

.faq__headline {
  color: #DE92A7;
  font-size: 19px;
  font-weight: 700;
  background: #FDFAF8;
  border-radius: 25px;
  width: fit-content;
  margin: 0 auto;
  padding: 7px 33px 10px;
  position: relative;
  margin-bottom: 20px;
}

.faq__headline::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 12px;
  background: #F4DFE6;
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq__headline::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 12px;
  background: #F4DFE6;
  border-radius: 50%;
  transform: translateY(-50%);
}


.faq__item .question {
  background: #DE92A7;
  padding: 8px 0 8px 15px;
}

.faq__item .question {
  color: #FDFAF8;
  font-size: 15px;
  font-weight: 500;
}

.faq__item .answer {
  padding: 15px 20px;
}

.faq__item .answer pre {
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.6px;
}

.faq__img {
  display: block;
  width: 100%;
  max-width: 414px;
}

.faq__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 720;
  object-fit: cover;
  vertical-align: bottom;
}

.message {
  background: #fff;
  border: 18px solid #DE92A7;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.message__bg {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: -1;
}

.message__headline {
  color: #DE92A7;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.message__text p {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.4px;
  text-shadow: 1px 1px 0 #FDFAF8;
}

.message__text span {
  position: relative;
  z-index: 2;
}

.message__text span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: #EAC3CE;
  z-index: -1;
}

.profile {
  padding: 40px 0 10px;
  text-align: center;
}

.profile .icon {
  width: 128px;
  height: 128px;
}

.profile__name {
  color: #DE92A7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 16px;
  margin: 10px auto;
}

.profile__name span {
  color: #DE92A7;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
}

.profile .follower {
  margin-bottom: 20px;
}

.profile .follower p{
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
}

.profile .follower span {
  color: #DE92A7;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 43px;
}

.profile__keyword p{
  color: #DE92A7;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.achievements {
  padding: 25px 0;
}

.achievements__title {
  text-align: center;
  margin-bottom: 25px;
}

.achievements ul {
  padding-left: 35px;
}

.achievements li:not(:last-of-type) {
  margin-bottom: 13px;
}

.achievements li h3{
  color: #DE92A7;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
}
.achievements li p {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.footer {
  position: relative;
  z-index: 2;
  height: fit-content;
}

.footer__bg {
  width: 100%;
  position: absolute;
  z-index: -1;
}

.footer__inner__content {
  padding: 34px 0;
  position: relative;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

.footer__text {
  margin-bottom: 40px;
}

.footer__text p {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #FDFAF8;
}

footer {
  background: #DE92A7;
  text-align: center;
  z-index: 999;
  position: relative;
  width: 100%;
  padding: 5px 0;
}

footer .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

footer .link a{
  color: #FDFAF8;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-decoration: underline;
}

footer small {
  color: #FDFAF8;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
}

.fade.fadein {
  opacity: 0;
  transition: 1s;
  will-change: transform, opacity;
}

.fade.fadein.active {
  opacity: 1;
}

.fade.fade-up {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.fade.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade.marker::before {
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 1s;
  will-change: transform, opacity;
}

.fade.marker.active::before {
  transform: scale(1, 1);
}

.fade.marker:nth-of-type(1)::before {
  transition-duration: .3s;
}
.fade.marker:nth-of-type(2)::before {
  transition-duration: .6s;
}
.fade.marker:nth-of-type(3)::before {
  transition-duration: .9s;
}
.fade.marker:nth-of-type(4)::before {
  transition-duration: 1.2s;
}
.fade.marker:nth-of-type(5)::before {
  transition-duration: 1.5s;
}
.fade.marker:nth-of-type(6)::before {
  transition-duration: 1.8s;
}
.fade.marker:nth-of-type(7)::before {
  transition-duration: 2.1s;
}
.fade.marker:nth-of-type(8)::before {
  transition-duration: 2.4s;
}

.fade.zoom {
  transition: 1s;
  will-change: transform, opacity;
}

.fade.zoom.active {
  animation: zoom .5s ease-in .5s;
}

@keyframes zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

.fade.shake {
  transition: 2s;
  will-change: transform, opacity;
}
.fade.shake.active {
  transform-origin: center bottom;
  animation: shake .8s linear 1s;
}

@keyframes shake {
  0%,
  50% {
    transform: rotate(2deg);
  }

  25%,
  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0);
  }
}

.fade.zoomin {
  transition: 1s;
  opacity: .2;
  transform: scale(0.9);
  will-change: transform, opacity;
}

.fade.zoomin.active {
  opacity: 1;
  transform: scale(1);
}

.fade.rightin {
  transform: translateX(5px);
  opacity: 0;
  transition: .5s;
  will-change: transform, opacity;
}

.fade.leftin {
  transform: translateX(-5px);
  opacity: 0;
  transition: .5s;
  will-change: transform, opacity;
}

.fade.rightin.active,
.fade.leftin.active {
  transform: translateX(0);
  opacity: 1;
}