@charset "UTF-8";
/*----------- 文字種類 --------------*/
/*----------- 色 --------------*/
/*----------- 余白 --------------*/
/*----------- 幅 --------------*/
/*----------- 文字サイズ(最小〜最大値) --------------*/
html {
  font-size: 100%;
}

body {
  color: #5f5f5f;
  min-width: 360px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFFAF3;
  line-height: normal;
}

a {
  color: #5f5f5f;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

@media screen and (max-width: 991px) {
  .pc-hide {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .pc-hide {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .sp-hide {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .sp-hide {
    display: block;
  }
}

.container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.section {
  padding-top: 150px;
}
@media screen and (max-width: 991px) {
  .section {
    padding-top: 70px;
  }
}

.section__heading {
  font-size: clamp(1.25rem, 0.967rem + 1.26vw, 2.5rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  border: 2px solid #F4BCCE;
  padding: 15px 60px 15px 50px;
  text-align: center;
  background-color: #FFFAF3;
}
@media screen and (max-width: 991px) {
  .section__heading {
    padding: 15px 20px;
  }
}
.section__heading::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F4BCCE), to(#FBEBE8));
  background: linear-gradient(to bottom, #F4BCCE 0%, #FBEBE8 100%);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 80%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 50% 80%, 0 100%, 0 0);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .section__heading::before {
    width: 20px;
    height: 30px;
    right: 5px;
  }
}
.section__heading.inview::before {
  opacity: 1;
  top: -20px;
}
@media screen and (max-width: 991px) {
  .section__heading.inview::before {
    top: -15px;
  }
}

.line__btn__container {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .line__btn__container {
    margin-top: 50px;
  }
}

.line__btn {
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding: 25px 30px;
  color: #F4BCCE;
  background-color: #fff;
  text-align: center;
  border: 1px solid #F4BCCE;
  -webkit-box-shadow: 10px 10px 0px #F4BCCE;
          box-shadow: 10px 10px 0px #F4BCCE;
  border-radius: 5px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.line__btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
}
@media screen and (max-width: 991px) {
  .line__btn {
    padding: 15px 30px;
  }
}

/*---------- keyvisual ----------*/
.keyvisual-section {
  padding: 70px 0 100px;
  background: linear-gradient(45deg, #FBEBE8 0%, rgba(251, 235, 232, 0) 100%);
  overflow: hidden;
}
.keyvisual-section .line__btn__container {
  margin-top: 50px;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.5s 0.9s;
  transition: all 0.5s 0.9s;
}
.keyvisual-section .line__btn__container.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 991px) {
  .keyvisual-section .line__btn__container {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .keyvisual-section {
    padding: 30px 0 90px;
  }
}

.keyvisual__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .keyvisual__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.keyvisual__img__container {
  padding-left: 120px;
  position: relative;
  z-index: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .keyvisual__img__container {
    width: 100%;
    padding: 0 15px;
  }
}
.keyvisual__img__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 150%;
  height: 450px;
  background-color: #F4BCCE;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: linear-gradient(to right, #fff, #fff 8px, transparent 8px, transparent 10px), linear-gradient(to left, #fff, #fff 8px, transparent 8px, transparent 10px), linear-gradient(to top, #fff, #fff 8px, transparent 8px, transparent 10px), linear-gradient(to bottom, #fff, #fff 8px, transparent 8px, transparent 10px); /* 左の線 */
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px; /* 右の線 */
  background-position: left top, right bottom, left bottom, right top; /* 上の線 */
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y; /* 左の線 */
}
@media screen and (max-width: 991px) {
  .keyvisual__img__container::before {
    height: 240px;
    width: 120%;
    background-size: 12px 3px, 12px 3px, 3px 12px, 3px 12px; /* 右の線 */
  }
}
.keyvisual__img__container.inview::before {
  left: 60px;
  opacity: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media screen and (max-width: 991px) {
  .keyvisual__img__container.inview::before {
    left: -5px;
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}

.keyvisual__img {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.7s 0.5s;
  transition: all 0.7s 0.5s;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 992px) {
  .keyvisual__img {
    max-width: 700px;
    min-width: 600px;
  }
}
@media screen and (max-width: 991px) {
  .keyvisual__img {
    max-width: 400px;
  }
}
.keyvisual__img.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .keyvisual__content {
    margin-top: 50px;
  }
}

.keyvisual__main-copy {
  font-size: clamp(1.563rem, 1.209rem + 1.57vw, 3.125rem);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #F4BCCE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.keyvisual__main-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.keyvisual__main-copy span {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .keyvisual__main-copy span {
    padding: 5px;
    margin-bottom: 10px;
  }
}
.keyvisual__main-copy span:last-child {
  margin-bottom: 0;
}

.keyvisual__body-copy {
  margin-top: 40px;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  padding: 30px 0;
  background-image: linear-gradient(to right, #F4BCCE, #F4BCCE 5px, transparent 5px, transparent 8px), linear-gradient(to left, #F4BCCE, #F4BCCE 5px, transparent 5px, transparent 8px); /* 下の線 */
  background-size: 10px 4px, 10px 4px; /* 下の線 */
  background-position: left top, right bottom; /* 下の線 */
  background-repeat: repeat-x, repeat-x; /* 下の線 */
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.5s 0.3s;
  transition: all 0.5s 0.3s;
}
@media screen and (max-width: 991px) {
  .keyvisual__body-copy {
    margin-top: 30px;
    padding: 20px 0;
  }
}
.keyvisual__body-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.keyvisual__lead-copy {
  margin-top: 40px;
  font-size: clamp(1.125rem, 0.955rem + 0.75vw, 1.875rem);
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.5s 0.6s;
  transition: all 0.5s 0.6s;
}
@media screen and (max-width: 991px) {
  .keyvisual__lead-copy {
    margin-top: 30px;
  }
}
.keyvisual__lead-copy.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*---------- needs ----------*/
.needs__list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .needs__list {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 20px 0;
    margin-top: 50px;
  }
}

.needs__list__item {
  background-color: #fff;
  position: relative;
  border-radius: 50px;
  border: 1px solid #F4BCCE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 15px 30px 30px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .needs__list__item {
    border-radius: 20px;
    padding: 15px 10px;
  }
}
.needs__list__item.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.needs__list__item::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 45px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #F4BCCE;
}
@media screen and (max-width: 991px) {
  .needs__list__item::before {
    width: 30px;
    height: 20px;
    bottom: -10px;
    right: 14px;
  }
}
.needs__list__item::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #F4BCCE;
}
@media screen and (max-width: 991px) {
  .needs__list__item::after {
    bottom: -15px;
    right: -7px;
    width: 15px;
    height: 15px;
  }
}

.needs__list__check {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  border: 1px solid;
  border-color: #F4BCCE;
}
@media screen and (max-width: 991px) {
  .needs__list__check {
    width: 30px;
    height: 30px;
  }
}
.needs__list__check::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 54%;
  width: 18px;
  height: 13px;
  border-left: 3px solid;
  border-bottom: 3px solid;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .needs__list__check::before {
    width: 15px;
    height: 10px;
  }
}
.needs__list__check::before {
  border-color: #F4BCCE;
}

.needs__list__text {
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  width: calc(100% - 40px);
  padding-left: 15px;
}
@media screen and (max-width: 991px) {
  .needs__list__text {
    width: calc(100% - 30px);
    padding-left: 10px;
  }
}

/*---------- trouble ----------*/
.trouble__container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
          box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
  position: relative;
  padding: 80px 100px 100px;
}
@media screen and (max-width: 991px) {
  .trouble__container {
    padding: 50px 10px;
  }
}
.trouble__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
          box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .trouble__container::before {
    top: -15px;
    left: -10px;
  }
}
.trouble__container::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
          box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
  z-index: -2;
  opacity: 0;
  -webkit-transition: all 0.3s 0.5s;
  transition: all 0.3s 0.5s;
}
@media screen and (max-width: 991px) {
  .trouble__container::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    right: -10px;
  }
}
.trouble__container.inview::before {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .trouble__container.inview::before {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
.trouble__container.inview::after {
  opacity: 1;
}

.trouble__heading {
  background-color: #FBEBE8;
  padding: 15px 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
          clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  position: relative;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.trouble__heading.inview {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .trouble__heading {
    padding: 15px 30px;
  }
}
.trouble__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 10px);
  border-top: 2px dashed #fff;
  border-bottom: 2px dashed #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.trouble__list {
  margin-top: 50px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .trouble__list {
    margin-top: 30px;
  }
}

.trouble__list__item {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #5f5f5f;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
@media screen and (max-width: 991px) {
  .trouble__list__item {
    margin-bottom: 20px;
  }
}
.trouble__list__item:last-of-type {
  margin-bottom: 0;
}
.trouble__list__item.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.trouble__list__check {
  border-color: #5f5f5f;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  border: 1px solid;
}
@media screen and (max-width: 991px) {
  .trouble__list__check {
    width: 30px;
    height: 30px;
  }
}
.trouble__list__check::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 54%;
  width: 18px;
  height: 13px;
  border-left: 3px solid;
  border-bottom: 3px solid;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .trouble__list__check::before {
    width: 15px;
    height: 10px;
  }
}
.trouble__list__check::before {
  border-color: #5f5f5f;
}

.trouble__list__text {
  width: calc(100% - 40px);
  padding-left: 20px;
}
@media screen and (max-width: 991px) {
  .trouble__list__text {
    width: calc(100% - 30px);
    padding-left: 10px;
  }
}

.trouble__summary__container {
  text-align: center;
  margin-top: 50px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.7;
}
.trouble__summary__container.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.trouble__summary {
  display: inline;
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FBEBE8));
  background: linear-gradient(transparent 70%, #FBEBE8 0%);
}

/*---------- solution ----------*/
.solution__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 991px) {
  .solution__list {
    margin: 50px auto 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.solution__list__item {
  background-color: rgba(251, 235, 232, 0.5);
  padding: 30px 50px;
  -webkit-box-shadow: 10px 10px 0 #F4BCCE;
          box-shadow: 10px 10px 0 #F4BCCE;
  border: 1px solid #F4BCCE;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media screen and (max-width: 991px) {
  .solution__list__item {
    padding: 30px 20px;
  }
}
.solution__list__item.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.solution__list__heading {
  font-size: clamp(1.25rem, 1.176rem + 0.32vw, 1.563rem);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #F4BCCE;
  border-bottom: 2px dashed #F4BCCE;
  padding-bottom: 10px;
  text-align: center;
}

.solution__list__text {
  margin-top: 20px;
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
}

/*---------- profile ----------*/
.profile__heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  padding: 20px 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(251, 235, 232, 0.3)), to(#FBEBE8));
  background: linear-gradient(to right, rgba(251, 235, 232, 0.3) 0%, #FBEBE8 100%);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 10px;
  z-index: 0;
  text-align: center;
}
.profile__heading::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: #FBEBE8;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s 0.5s;
  transition: all 0.3s 0.5s;
}
@media screen and (max-width: 991px) {
  .profile__heading::before {
    width: 40px;
    height: 40px;
    top: -15px;
  }
}
.profile__heading::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -25px;
  width: 70px;
  height: 70px;
  background-color: #F4BCCE;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .profile__heading::after {
    width: 50px;
    height: 50px;
    top: -25px;
  }
}
.profile__heading.inview::before {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .profile__heading.inview::before {
    left: -25px;
  }
}
@media screen and (max-width: 991px) {
  .profile__heading.inview::before {
    left: -15px;
  }
}
.profile__heading.inview::after {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .profile__heading.inview::after {
    left: -45px;
  }
}
@media screen and (max-width: 991px) {
  .profile__heading.inview::after {
    left: -25px;
  }
}

.profile__container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .profile__container {
    margin-top: 50px;
  }
}

.profile__wrap {
  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;
  margin-top: 80px;
  margin-left: 80px;
}
@media screen and (max-width: 991px) {
  .profile__wrap {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}

.profile__img__container {
  position: relative;
}
.profile__img__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F4BCCE;
  -webkit-clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
          clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.profile__img__container.inview::before {
  top: 10px;
  right: -15px;
}

.profile__img {
  width: 400px;
  height: 400px;
  -webkit-clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
          clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
@media screen and (max-width: 991px) {
  .profile__img {
    width: 300px;
    height: 300px;
  }
}

.profile__content {
  width: calc(100% - 400px);
  padding-left: 100px;
}
@media screen and (max-width: 991px) {
  .profile__content {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
}

.profile__content__name {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  position: relative;
}
@media screen and (max-width: 991px) {
  .profile__content__name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.profile__content__name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(#F4BCCE, rgba(244, 188, 206, 0));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .profile__content__name::before {
    width: 60px;
    height: 60px;
    left: -20px;
  }
}
.profile__content__name.inview::before {
  opacity: 1;
}

p.profile__content__career {
  margin-top: 50px;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  line-height: 2;
}
@media screen and (max-width: 991px) {
  p.profile__content__career {
    margin-top: 30px;
  }
}

dl.profile__content__career {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  dl.profile__content__career {
    margin-top: 30px;
  }
}
dl.profile__content__career dt {
  width: 120px;
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  font-weight: normal;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  dl.profile__content__career dt {
    width: 90px;
  }
}
dl.profile__content__career dd {
  width: calc(100% - 120px);
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  dl.profile__content__career dd {
    width: calc(100% - 90px);
  }
}

.story__container {
  margin-top: 50px;
  background-color: #FBEBE8;
  padding: 80px 150px;
  position: relative;
}
.story__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: linear-gradient(45deg, #F4BCCE 50%, #FFFAF3 50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 991px) {
  .story__container {
    padding: 60px 20px;
  }
}
.story__container.inview::before {
  width: 40px;
  height: 40px;
}

.story__heading {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}
.story__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 30px;
  background-color: #F4BCCE;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 5px #5f5f5f;
          box-shadow: 2px 2px 5px #5f5f5f;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .story__heading::before {
    width: 20px;
    height: 20px;
  }
}
.story__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 30px;
  background-color: #F4BCCE;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 5px #5f5f5f;
          box-shadow: 2px 2px 5px #5f5f5f;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .story__heading::after {
    width: 20px;
    height: 20px;
  }
}
.story__heading.inview::before {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .story__heading.inview::before {
    left: -60px;
  }
}
@media screen and (max-width: 991px) {
  .story__heading.inview::before {
    left: -40px;
  }
}
.story__heading.inview::after {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .story__heading.inview::after {
    right: -60px;
  }
}
@media screen and (max-width: 991px) {
  .story__heading.inview::after {
    right: -40px;
  }
}

.story__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  background-color: #FBEBE8;
  line-height: 2;
  position: relative;
  z-index: 0;
}
.story__text span {
  display: block;
  margin-bottom: 20px;
}
.story__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 60px);
  height: calc(100% + 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px dashed #F4BCCE;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .story__text::before {
    width: calc(100% + 20px);
  }
}

/*---------- works ----------*/
.works__img__container {
  max-width: 700px;
  margin: 70px auto 0;
  text-align: center;
  position: relative;
}
.works__img__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  background: radial-gradient(#F4BCCE, transparent);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .works__img__container::before {
    width: 130px;
    height: 130px;
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .works__img__container.inview::before {
    bottom: -50px;
    right: -100px;
  }
}
@media screen and (max-width: 991px) {
  .works__img__container.inview::before {
    right: -10px;
    top: -50px;
    bottom: auto;
  }
}

.works__list {
  max-width: 1000px;
  margin: 100px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .works__list {
    margin-top: 50px;
  }
}

.works__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .works__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .works__list__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .works__list__item:nth-child(even) .works__list__content {
    margin-left: 0;
    margin-right: 30px;
  }
}
.works__list__item:first-child {
  margin-top: 0;
}
.works__list__item.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.works__list__icon {
  max-width: 200px;
}
@media screen and (max-width: 991px) {
  .works__list__icon {
    width: 80px;
  }
}

.works__list__icon-container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .works__list__icon-container {
    margin: 0 auto;
  }
}
.works__list__icon-container::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F4BCCE 0%, rgba(244, 188, 206, 0) 100%);
  opacity: 0;
  -webkit-transition: all 0.5s 0.3s;
  transition: all 0.5s 0.3s;
}
@media screen and (max-width: 991px) {
  .works__list__icon-container::before {
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 10px;
  }
}
.works__list__icon-container.inview::before {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .works__list__icon-container.inview::before {
    left: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .works__list__icon-container.inview::before {
    left: 0;
    bottom: 0;
  }
}

.works__list__content {
  margin-left: 30px;
}
@media screen and (max-width: 991px) {
  .works__list__content {
    margin-left: 0;
    margin-top: 20px;
  }
}

.works__list__heading {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
.works__list__heading span {
  color: #F4BCCE;
}

.works__list__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  margin-top: 20px;
}

.works__sub-heading {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  position: relative;
  text-align: center;
}
.works__sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-10deg);
          transform: translate(-50%, -50%) rotate(-10deg);
  width: 300px;
  height: 40px;
  z-index: -1;
  border-radius: 30px;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  background: -webkit-gradient(linear, left top, right top, from(#F4BCCE), to(rgba(244, 188, 206, 0)));
  background: linear-gradient(to right, #F4BCCE 0%, rgba(244, 188, 206, 0) 100%);
  z-index: -2;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .works__sub-heading::before {
    width: 200px;
    height: 30px;
  }
}
.works__sub-heading.inview::before {
  opacity: 1;
}

.works__images__wrap {
  max-width: 1200px;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .works__images__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}

.works__img__inner {
  width: 45%;
  background-color: #fff;
  padding: 30px 30px 80px 30px;
  -webkit-box-shadow: 0px 5px 10px #9c9c9c;
          box-shadow: 0px 5px 10px #9c9c9c;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .works__img__inner {
    width: 100%;
    padding: 20px 20px 50px 20px;
  }
}
.works__img__inner:nth-child(1) {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.works__img__inner:nth-child(2) {
  margin-top: 30px;
  -webkit-transition: all 0.3s 0.3s;
  transition: all 0.3s 0.3s;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}
@media screen and (max-width: 991px) {
  .works__img__inner:nth-child(2) {
    margin-top: 50px;
  }
}
.works__img__inner.inview {
  opacity: 1;
}
.works__img__inner.inview:nth-child(1) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}
.works__img__inner.inview:nth-child(2) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

/*---------- voice ----------*/
.voice__container {
  background-color: #FBEBE8;
  padding: 130px 100px;
}
@media screen and (max-width: 991px) {
  .voice__container {
    padding: 80px 20px;
    width: 100%;
    margin: 0;
  }
}

.voice__list {
  max-width: 1200px;
  margin: 80px auto 0;
}
@media screen and (max-width: 991px) {
  .voice__list {
    margin-top: 50px;
  }
}

.voice__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 70px;
  padding: 50px;
  border-radius: 30px;
  background-color: #FFFAF3;
}
@media screen and (max-width: 991px) {
  .voice__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
  }
}
.voice__list__item:first-child {
  margin-top: 0;
}

.voice__img__container {
  position: relative;
}
.voice__img__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #F4BCCE;
  border-radius: 61% 39% 44% 56%/47% 55% 45% 53%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.voice__img__container.inview::before {
  top: -10px;
  left: -10px;
}

.voice__img {
  max-width: 300px;
  max-height: 300px;
  border-radius: 61% 39% 44% 56%/47% 55% 45% 53%;
}
@media screen and (max-width: 991px) {
  .voice__img {
    max-width: 250px;
    max-height: 250px;
  }
}

.voice__content {
  width: calc(100% - 300px);
  padding-left: 4.5em;
}
@media screen and (max-width: 991px) {
  .voice__content {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

.voice__heading {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #F4BCCE;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.voice__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: #F4BCCE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.voice__heading.inview::before {
  left: 0;
}

.voice__position {
  font-size: clamp(1rem, 0.943rem + 0.25vw, 1.25rem);
  margin-top: 20px;
}

.voice__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  margin-top: 20px;
  line-height: 2;
}

/*---------- flow ----------*/
.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .flow__list {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flow__list__item {
  width: calc(33.3333333333% - 40px);
  background-color: #fff;
  border: 2px solid #F4BCCE;
  border-radius: 30px;
  padding: 50px 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .flow__list__item {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .flow__list__item:nth-child(1) {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .flow__list__item:nth-child(2) {
    -webkit-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
  }
  .flow__list__item:nth-child(3) {
    -webkit-transition: all 0.3s 1s;
    transition: all 0.3s 1s;
  }
}
@media screen and (max-width: 991px) {
  .flow__list__item {
    width: 100%;
    padding: 40px 30px;
    margin-bottom: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
.flow__list__item.inview {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.flow__list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 20px;
  border-top: 4px solid #F4BCCE;
  border-right: 4px solid #F4BCCE;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 991px) {
  .flow__list__item::before {
    top: auto;
    bottom: -45px;
    right: 50%;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
}
.flow__list__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  width: 20px;
  height: 20px;
  border-top: 4px solid #F4BCCE;
  border-right: 4px solid #F4BCCE;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 991px) {
  .flow__list__item::after {
    top: auto;
    bottom: -35px;
    right: 50%;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
}
.flow__list__item:last-child {
  margin-bottom: 0;
}
.flow__list__item:last-child::before, .flow__list__item:last-child::after {
  display: none;
}

.flow__list__step {
  color: #F4BCCE;
  font-size: clamp(1.875rem, 1.592rem + 1.26vw, 3.125rem);
  font-family: "Oooh Baby", cursive;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.flow__list__heading {
  margin-top: 30px;
  font-size: clamp(1.125rem, 1.065rem + 0.25vw, 1.375rem);
  color: #F4BCCE;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .flow__list__heading {
    margin-top: 20px;
  }
}

.flow__list__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
}
@media screen and (max-width: 991px) {
  .flow__list__text {
    margin-top: 20px;
  }
}

/*---------- flow ----------*/
.faq__container {
  max-width: 1200px;
  margin: 60px auto 0;
}

.faq__wrap {
  margin-top: 45px;
  background-color: #fff;
  border: 1px solid #F4BCCE;
  border-radius: 30px;
  -webkit-box-shadow: 0px 3px 5px #9c9c9c;
          box-shadow: 0px 3px 5px #9c9c9c;
  padding: 30px 0;
}
@media screen and (max-width: 991px) {
  .faq__wrap {
    border-radius: 10px;
    margin-top: 30px;
    padding: 20px 0;
  }
}
.faq__wrap:first-child {
  margin-top: 0;
}

.faq__question__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .faq__question__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.faq__answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .faq__answer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.faq__question {
  position: relative;
  padding: 0 70px;
}
@media screen and (max-width: 991px) {
  .faq__question {
    padding: 0 40px 0 20px;
  }
}
.faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 2px;
  background-color: #F4BCCE;
}
@media screen and (max-width: 991px) {
  .faq__question::before {
    width: 25px;
    right: 10px;
  }
}
.faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 2px;
  background-color: #F4BCCE;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .faq__question::after {
    width: 25px;
    right: 10px;
  }
}
.faq__question.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq__answer {
  display: none;
  padding: 0 70px;
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .faq__answer {
    padding: 0 20px;
  }
}

.faq__question__icon {
  font-size: clamp(1.875rem, 1.592rem + 1.26vw, 3.125rem);
  font-family: "Inter", sans-serif;
  color: #F4BCCE;
}

.faq__answer__icon {
  padding-left: 4px;
  color: #fff;
  font-size: clamp(1.875rem, 1.592rem + 1.26vw, 3.125rem);
  font-family: "Inter", sans-serif;
  text-shadow: 2px 2px 0 #F4BCCE, -2px -2px 0 #F4BCCE, -2px 2px 0 #F4BCCE, 2px -2px 0 #F4BCCE, 0px 2px 0 #F4BCCE, 0 -2px 0 #F4BCCE, -2px 0 0 #F4BCCE, 2px 0 0 #F4BCCE;
}
@media screen and (max-width: 991px) {
  .faq__answer__icon {
    padding-left: 0;
    margin-right: 20px;
  }
}

.faq__question__text {
  font-size: clamp(1.25rem, 1.176rem + 0.32vw, 1.563rem);
  margin-left: 30px;
}
@media screen and (max-width: 991px) {
  .faq__question__text {
    margin-left: 0;
  }
}

.faq__answer__text {
  font-size: clamp(1.125rem, 1.065rem + 0.25vw, 1.375rem);
  margin-left: 30px;
}
@media screen and (max-width: 991px) {
  .faq__answer__text {
    margin-left: 0;
  }
}

.present__container {
  margin-top: 100px;
  position: relative;
  padding: 80px 60px;
}
@media screen and (max-width: 991px) {
  .present__container {
    padding: 60px 20px;
  }
}
.present__container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(244, 188, 206, 0.3) 0%, #F4BCCE 100%);
  z-index: -2;
}
.present__container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .present__container.inview::after {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 991px) {
  .present__container.inview::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.present__title {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  padding: 0 30px 25px 30px;
  border-bottom: 2px solid #F4BCCE;
  position: relative;
  color: #F4BCCE;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .present__title {
    padding: 0 0 20px 0;
  }
}
.present__title::before, .present__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #F4BCCE;
}
@media screen and (max-width: 991px) {
  .present__title::before, .present__title::after {
    width: 15px;
    height: 15px;
  }
}
.present__title::before {
  left: -10px;
}
@media screen and (max-width: 991px) {
  .present__title::before {
    left: 0;
  }
}
.present__title::after {
  right: -10px;
}
@media screen and (max-width: 991px) {
  .present__title::after {
    right: 0;
  }
}

.present__text {
  margin-top: 80px;
  font-size: clamp(1.125rem, 1.026rem + 0.44vw, 1.563rem);
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .present__text {
    margin-top: 50px;
    text-align: left;
  }
}

/*---------- message ----------*/
.message__wrap {
  background: linear-gradient(45deg, rgba(244, 188, 206, 0.6) 0%, rgba(244, 188, 206, 0.3) 100%);
  padding-top: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 991px) {
  .message__wrap {
    padding: 0;
    background: #fff;
  }
}

.message__container {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 200px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .message__container {
    padding-top: 50px;
  }
}

.message__inner {
  max-width: 800px;
  margin: 0 auto;
}

.message__heading {
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 0;
}
.message__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  background: linear-gradient(45deg, #F4BCCE 0%, rgba(244, 188, 206, 0) 100%);
  z-index: -1;
}

.message__img__container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
}
@media screen and (max-width: 991px) {
  .message__img__container {
    margin-top: 50px;
  }
}

.message__sub-heading {
  color: #fff;
  -webkit-transform: rotate(-45deg) translateX(-20px);
          transform: rotate(-45deg) translateX(-20px);
  display: inline-block;
  font-size: clamp(1.25rem, 1.108rem + 0.63vw, 1.875rem);
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: -10px;
  right: -10px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .message__sub-heading {
    bottom: -30px;
    right: 20px;
  }
}
.message__sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: clamp(7.5rem, 6.31rem + 5.08vw, 12.5rem);
  height: clamp(7.5rem, 6.31rem + 5.08vw, 12.5rem);
  border-radius: 50%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  background: radial-gradient(#F4BCCE, rgba(244, 188, 206, 0));
}
.message__sub-heading.inview {
  opacity: 1;
  -webkit-transform: rotate(-10deg) translateX(0);
          transform: rotate(-10deg) translateX(0);
}

.message__img {
  max-width: 600px;
  max-height: 700px;
}

.message__text {
  font-size: clamp(1rem, 0.972rem + 0.13vw, 1.125rem);
  line-height: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 140px auto 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media screen and (max-width: 991px) {
  .message__text {
    margin-top: 90px;
  }
}
.message__text.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.message__text span {
  display: block;
  margin-bottom: 20px;
}