@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

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

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

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

/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
@font-face {
  font-family: "Ozwald";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Oswald-Medium.ttf") format("truetype"); /* フォントファイルへのパスを指定 */
}
body {
  color: #40220f;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
body.-fixed {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* WebKitブラウザ (Chrome, Safari, Edge) */
/* Firefox */
@media print, screen and (min-width: 1024px) {
  .child-mv__heading {
    width: 340px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .fade-slider__item {
    left: auto;
    right: 100%;
  }
}

body {
  background: #cfbfab;
}

.child-intro__copy {
  letter-spacing: 2px;
}
@media print, screen and (max-width: 1023.9px) {
  .child-intro__copy {
    font-size: 21px;
  }
}

.child-intro__description {
  letter-spacing: 1px;
}

.spot__description {
  margin-top: 20px;
  text-align: center;
  color: #3d4144;
  line-height: 3;
  letter-spacing: 1px;
}
@media print, screen and (max-width: 1023.9px) {
  .spot__description {
    font-size: 14px;
    line-height: 2.5;
  }
}

.point-slide-wrap {
  background-color: #cfbfab;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .point-slide-wrap {
    padding-top: 70px;
  }
}

@media print, screen and (min-width: 1024px) {
  .sticky-wrap {
    position: sticky;
    top: 0;
    left: 0;
  }
}

.point-slide {
  width: 100vw;
  min-height: 80vh;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.point-slide-pager {
  background-color: #cfbfab;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide-pager {
    gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.point-slide__pager-link {
  background-color: #777a7c;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 15px;
  position: relative;
  -webkit-transition: all 0.12s;
  transition: all 0.12s;
}
.point-slide__pager-link::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid #fff;
  position: absolute;
  bottom: 3px;
  right: 2px;
  -webkit-transform: rotate(132deg);
          transform: rotate(132deg);
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide__pager-link {
    font-size: 13px;
  }
}
.point-slide__pager-link.-current, .point-slide__pager-link:hover {
  background-color: #3d4144;
}

.point-slide__row {
  position: relative;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 80vh;
}
@media print, screen and (min-width: 1024px) {
  .point-slide__row.-n1 {
    max-width: 800px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide__row {
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .point-slide__text-area {
    width: 43%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.point-slide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.point-slide__arrow.-prev {
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.point-slide__arrow.-next {
  right: 20px;
}

.point-slide__img {
  background: #cfbfab;
}
.point-slide__img.-n1 img {
  width: 60%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .point-slide__img {
    width: 55%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.point-slide__copy {
  color: #3d4144;
  font-size: 24px;
  letter-spacing: 1.6px;
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide__copy {
    font-size: 19px;
  }
}

.point-slide__description {
  margin-top: 20px;
  color: #3d4144;
  line-height: 2.5;
  font-size: 14px;
}
@media print, screen and (max-width: 1023.9px) {
  .point-slide__description {
    font-size: 11.5px;
    line-height: 1.9;
    margin-top: 10px;
  }
}

.select {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  margin-top: -1800px;
}
@media print, screen and (max-width: 1023.9px) {
  .select {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 0;
  }
}
.select.-after {
  margin-top: 0;
  display: none;
}

.select__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.select__heading {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.select__description {
  text-align: center;
  color: #fff;
  line-height: 3;
  margin-top: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .select__description {
    font-size: 14px;
    line-height: 2.5;
  }
}

.select__row {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (max-width: 1023.9px) {
  .select__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.select-box {
  color: #fff;
}

.select-box__heading {
  font-weight: bold;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-size: 32px;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .select-box__heading {
    font-size: 24px;
  }
}
.select-box__heading span {
  font-size: 10px;
  font-weight: normal;
  display: block;
}

.select-box__description {
  font-size: 14px;
  line-height: 2;
  margin-top: 12px;
}

.select-box__img {
  width: 90px;
  margin: 15px auto;
}

.select__copy {
  text-align: center;
  font-weight: bold;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-size: 20px;
  margin-top: 20px;
  color: #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .select__copy {
    font-size: 17px;
  }
}

.room-plan {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100px;
}
@media print, screen and (min-width: 1024px) {
  .room-plan {
    height: auto;
    padding-bottom: 30px;
  }
}

.room-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
@media print, screen and (min-width: 1024px) {
  .room-bg {
    height: auto;
  }
}
.room-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 130%;
  height: 130%;
}
@media print, screen and (min-width: 1024px) {
  .room-bg img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.room-plan__heading-area {
  position: relative;
  padding: 120px 0 0;
  text-align: center;
  color: #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .room-plan__heading-area {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 80px;
  }
}

.room-plan__heading {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.room-plan__description {
  margin-top: 20px;
  line-height: 3;
}
@media print, screen and (max-width: 1023.9px) {
  .room-plan__description {
    font-size: 14px;
    line-height: 2.5;
  }
}

.room-plan__bottom {
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.room-plan__box {
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 110px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
@media print, screen and (max-width: 1023.9px) {
  .room-plan__box {
    padding: 30px 15px 0px;
  }
}

.plan-index {
  padding: 150px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.75);
}
@media print, screen and (max-width: 1023.9px) {
  .plan-index {
    padding: 80px 0;
  }
}

.plan-index__movie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.plan-index__movie video {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.plan-index__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media print, screen and (max-width: 1023.9px) {
  .plan-index__list {
    padding-right: 20px;
    padding-left: 20px;
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-index__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.plan-index__link.-soon {
  pointer-events: none;
}
@media (hover: hover) {
  .plan-index__link:hover {
    opacity: 0.6;
  }
}
.plan-index__link.-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.plan-index__text {
  text-align: center;
  margin-bottom: 30px;
  display: block;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .plan-index__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.plan-index__arrow {
  margin: auto;
  width: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .plan-index__arrow {
    width: 80px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .spot__heading-area.-pb0 {
    padding-bottom: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .sticky-area {
    padding-bottom: 130px;
  }
  .-pb0 {
    padding-bottom: 0;
  }
  .sticky-head {
    height: 15vh;
  }
  .sticky-area__inner {
    width: 100%;
    padding-right: 10%;
  }
  .sticky-left {
    width: 55%;
    top: 15vh;
  }
  .sticky-right {
    width: 33%;
  }
  .sticky-captionsticky {
    display: block !important;
    margin-top: 10px;
  }
  .sticky-captionsticky small {
    font-size: 10px;
  }
  .sticky-bottom {
    width: 50%;
    right: 0;
    left: auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .-yard {
    padding-top: 60px;
  }
}
.flexSec {
  padding-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.flexSec__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (max-width: 1023.9px) {
  .flexSec__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.appLeft {
  width: 47%;
  z-index: 10;
}
@media print, screen and (max-width: 1023.9px) {
  .appLeft {
    width: 92%;
    margin: 0 auto;
  }
}

.im01 {
  margin: 10px auto -20px;
}

.im03 {
  margin: 0px auto 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .im03 {
    margin: 0 auto;
    width: 80%;
  }
}

.-cont01 {
  height: 110dvh;
}
@media print, screen and (max-width: 1023.9px) {
  .-cont01 {
    height: auto;
    padding-bottom: 50px;
  }
}

.-cont02 {
  height: 100dvh;
}
@media print, screen and (max-width: 1023.9px) {
  .-cont02 {
    height: auto;
    padding-bottom: 40px;
  }
}

.-cont03 {
  margin: 60px auto 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .-cont03 {
    height: auto;
    padding-bottom: 10px;
    margin-top: -30px;
    margin-bottom: 0;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .child-intro__description {
    line-height: 2;
    font-size: 13px;
  }
}

.appRight {
  width: 45%;
  z-index: 10;
  margin-top: -2vh;
  top: 100px;
  left: 0px;
}

.appRight__inner {
  z-index: 12;
}

.appRight__st {
  position: relative;
}

.js-image01 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 15;
  opacity: 0;
}

.js-image02 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 14;
}

.js-image03 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 13;
}

.-act {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.im001 {
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .im001 {
    margin-top: 20px;
  }
}

.im002 {
  margin: 40px auto 0;
  max-width: 800px;
}
@media print, screen and (max-width: 1023.9px) {
  .im002 {
    margin-top: 20px;
  }
}

.-cap {
  position: relative;
}
.-cap figcaption {
  font-size: 11px;
  position: absolute;
  bottom: 3px;
  right: 5px;
  color: #FFF;
}
.-cap figcaption.-b {
  color: #000;
}

.endCont {
  max-width: 1100px;
  margin: 0px auto 150px;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .endCont {
    padding: 10px 20px 0;
    margin-bottom: 70px;
  }
}

.spot {
  position: relative;
}
.spot.-view {
  padding: 0;
  height: 100vh;
}
.spot.-viewMv {
  padding: 110px 0 150px;
}
@media print, screen and (max-width: 1023.9px) {
  .spot.-viewMv {
    padding: 10px 0 70px;
  }
}

.panorama {
  position: relative;
  margin-top: 0px;
  height: 100vh;
  overflow: hidden;
  -ms-touch-action: pan-y;
      touch-action: pan-y; /* 縦スクはブラウザ、横は自前制御 */
  -ms-scroll-chaining: none;
      overscroll-behavior: contain; /* 端でのページ側の慣性を抑止 */
}
@media print, screen and (max-width: 1023.9px) {
  .panorama {
    height: 95vh;
  }
}
.panoramaSP {
  position: relative;
  margin-top: 0px;
  overflow-x: scroll;
  height: 90vh;
}

.panorama__img {
  width: auto;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.panorama__btn {
  width: 45px;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media print, screen and (max-width: 1023.9px) {
  .panorama__btn {
    width: 25px;
    top: 60%;
  }
}
.panorama__btn.-left {
  left: 40%;
}
@media print, screen and (max-width: 1023.9px) {
  .panorama__btn.-left {
    left: 10px;
  }
}
.panorama__btn.-right {
  right: 40%;
}
@media print, screen and (max-width: 1023.9px) {
  .panorama__btn.-right {
    right: 10px;
  }
}

.cent {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 110.2%;
  width: 50px;
  height: 40px;
  background: url(../img/landplan/swipe.png);
  background-size: cover;
  pointer-events: none;
}
@media print, screen and (max-width: 1023.9px) {
  .cent {
    top: 110.6%;
    width: 50px;
  }
}
.cent.hide {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes animationArrowRight {
  0%, 100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

@keyframes animationArrowRight {
  0%, 100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.panorama-cap {
  font-size: 12px;
  text-align: right;
  padding-right: 10px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 200px;
  max-width: 1200px;
}
@media print, screen and (max-width: 1023.9px) {
  .panorama-cap {
    font-size: 10px;
    margin-bottom: 60px;
  }
}

.fix_area {
  position: absolute;
  margin: auto;
  top: 15%;
  left: 0;
  right: 0;
  color: #FFF;
  width: 50%;
}
@media print, screen and (max-width: 1023.9px) {
  .fix_area {
    width: 90%;
    top: 15%;
  }
}
.fix_area .spot__heading-area {
  padding: 0;
}
.fix_area p {
  text-align: center;
  margin-top: 40px;
  line-height: 2.5;
  letter-spacing: 1px;
}
@media print, screen and (max-width: 1023.9px) {
  .fix_area p {
    font-size: 14px;
    margin-top: 25px;
    line-height: 1.9;
  }
}

.viewFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  max-width: 1100px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1023.9px) {
  .viewFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}
.viewFlex figure {
  width: 47%;
}
@media print, screen and (max-width: 1023.9px) {
  .viewFlex figure {
    width: 100%;
  }
}
.viewFlex .viewFlex__mv {
  width: 47%;
}
@media print, screen and (max-width: 1023.9px) {
  .viewFlex .viewFlex__mv {
    width: 100%;
    margin-top: 30px;
  }
}
.viewFlex .viewFlex__mv a {
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
}
.viewFlex .viewFlex__mv a:hover {
  opacity: 0.7;
}

.points {
  background-color: #cfbfab;
  position: relative;
  z-index: 2;
  padding: 100px 0 150px;
}
@media print, screen and (max-width: 1023.9px) {
  .points {
    padding: 70px 20px 100px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .points.-second {
    padding-bottom: 120px;
  }
}

.points__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
}
@media print, screen and (max-width: 1023.9px) {
  .points__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .points__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .points__row.-gap_wide {
    gap: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .points__row.-gap_wide .points__box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.points__box {
  color: #3d4144;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
}
@media print, screen and (min-width: 1024px) {
  .points__box {
    width: calc((100% - 100px) / 3);
  }
}

.points__point {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  min-height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.points__point::after {
  content: "";
  display: block;
  height: 140px;
  width: 140px;
  border: 10px solid #b8a892;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.points__point span {
  position: relative;
  z-index: 2;
  width: 100%;
}

.points__point-text {
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 15px;
  position: relative;
}

.points__img {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .points__img {
    margin-top: 30px;
  }
}