@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

html {
  font-size: 62.5%;
}

html {
  --font-main: dnp-shuei-mgothic-std, "Zen Maru Gothic", sans-serif;
  --font-sub: "Noto Sans JP", sans-serif;
}

html {
  --theme: #a81b4b;
  --bg-main: #e7d0ca;
  --bg-sub: #d5b1a5;
  --text-main: #3b3c3c;
  --text-sub: #757575;
  --white_1: #fff;
  --white_2: #f1f1f1;
  --yellow: #ecc206;
}

.main {
  width: 100%;
}

/*
---------------------------------------------------
 Common Parts
---------------------------------------------------
*/

#fengshuiapp {
  font-size: 1.4rem;
  line-height: 1.7;
  background-color: var(--bg-main);
  padding-bottom: 20rem;
}

#fengshuiapp * {
  box-sizing: border-box;
}

#fengshuiapp ::selection {
  color: #fff;
  background-color: var(--theme);
}

#fengshuiapp img {
  width: 100%;
  display: block;
}

#fengshuiapp section {
  position: relative;
  background-color: var(--white_1);
  border-radius: 35px;
  padding: 3rem;
  margin: 0 6rem 5rem;
}

@media screen and (max-width: 768px) {
  #fengshuiapp section {
    border-radius: 17.5px;
    padding: 2.35rem;
    margin: 0 1.4rem 4.5rem;
  }
}

#fengshuiapp h2 {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--theme);
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#fengshuiapp h2 span {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 1rem;
  margin-left: unset;
}

#fengshuiapp h3 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--theme);
  text-align: center;
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  #fengshuiapp h3 {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp h3 {
    font-size: 2.1rem;
  }
}

#fengshuiapp h4 {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: center;
  border-bottom: var(--theme) 5px dotted;
  width: 25%;
  padding: 0 1rem 0.5rem;
  margin: 6.5rem auto 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  #fengshuiapp h4 {
    width: 35%;
    margin: 4rem auto 0;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp h4 {
    font-size: 1.8rem;
    width: 45%;
  }
}

#fengshuiapp h5 {
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: left;
  margin: 2.5rem auto 2.5rem 5rem;
}

@media screen and (max-width: 768px) {
  #fengshuiapp h5 {
    margin: 3rem auto 3rem 2rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp h5 {
    font-size: 1.7rem;
    margin: 3rem auto 2rem 1rem;
  }
}

#fengshuiapp h6 {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: left;
  margin: 2.5rem auto 2.5rem 5rem;
}

@media screen and (max-width: 768px) {
  #fengshuiapp h6 {
    margin: 2rem auto 2rem 2rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp h6 {
    margin: 2rem auto 2rem 1rem;
  }
}

#fengshuiapp p {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: center;
}

#fengshuiapp .text-l {
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 2rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .text-l {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .text-l {
    font-size: 1.6rem;
  }
}

#fengshuiapp .app-lead {
  position: relative;
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-sub);
  text-align: center;
  margin: 1.3rem auto;
  padding: 0 5rem;
  width: fit-content;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#fengshuiapp .app-lead::before {
  content: "＼";
  position: absolute;
  font-size: 2.5rem;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

#fengshuiapp .app-lead::after {
  content: "／";
  position: absolute;
  font-size: 2.5rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #fengshuiapp .app-lead {
    font-size: 2.2rem;
    margin: 0.85rem auto;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .app-lead {
    font-size: 1.8rem;
    width: 100%;
  }
}

#fengshuiapp .button-main {
  display: block;
  position: relative;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white_1);
  background-color: var(--theme);
  border: var(--white_1) 2px solid;
  border-radius: 53px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 1.5rem 5.7rem 1.5rem 3.8rem;
  margin: 0 auto;
  width: fit-content;
  height: fit-content;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#fengshuiapp .button-main span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

#fengshuiapp .button-main span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 23px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 10px solid var(--theme);
  border-bottom: 6px solid transparent;
}

#fengshuiapp .button-sub {
  display: block;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white_1);
  background-color: var(--yellow);
  border-radius: 47px;
  text-align: center;
  padding: 1rem 5.5rem;
  margin: 3.5rem auto 4rem;
  width: fit-content;
  height: fit-content;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 500px) {
  #fengshuiapp .button-sub {
    font-size: 1.8rem;
  }
}

/*
---------------------------------------------------
 top
---------------------------------------------------
*/

#fengshuiapp .top {
  position: relative;
  padding-top: 1rem;
}

#fengshuiapp .side-text-area {
  width: 50%;
  margin: 0 auto 0 50%;
}

#fengshuiapp .side-text-area .title {
  margin: 7rem 0 2rem;
}

#fengshuiapp .side-text-area .title p {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--theme);
  text-align: left;
}

#fengshuiapp .side-text-area .title p span {
  display: inline-block;
}

#fengshuiapp .side-text-area .sub * {
  margin: 0;
}

#fengshuiapp .side-text-area .sub {
  display: flex;
  position: relative;
  gap: 2rem;
  margin: 5rem 0;
  align-items: end;
  z-index: 20;
}

#fengshuiapp .side-text-area .sub img {
  width: 15%;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .side-text-area {
    width: 100%;
    margin: 590px 0 0;
  }

  #fengshuiapp .side-text-area .title {
    margin: 0 auto 4rem;
    padding: 3rem 2rem 0;
    text-align: center;
    width: fit-content;
  }

  #fengshuiapp .side-text-area .title p {
    font-size: 1.5rem;
  }

  #fengshuiapp .side-text-area .sub * {
    margin: 0;
  }

  #fengshuiapp .side-text-area .sub {
    display: flex;
    position: relative;
    gap: 4rem;
    margin: 0;
    align-items: end;
    z-index: 20;
    justify-content: center;
  }

  #fengshuiapp .side-text-area .sub img {
    display: none;
  }
}

#fengshuiapp .bottom-text-area {
  display: block;
  position: relative;
  background-color: var(--bg-sub);
  height: fit-content;
  padding: 3.7rem 0;
  width: 100%;
}

#fengshuiapp .bottom-text-area > p {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.66;
  color: var(--white_1);
  text-align: left;
  margin: 0 2rem 0 50%;
  height: fit-content;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#fengshuiapp .bottom-text-area > img {
  position: absolute;
  width: 25%;
  min-width: 260px;
  max-width: 280px;
  bottom: 3rem;
  left: 10%;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .bottom-text-area {
    position: absolute;
    top: 330px;
    padding: 0;
  }

  #fengshuiapp .bottom-text-area > p {
    text-align: center;
    padding: 150px 1rem 3.7rem;
    margin: 0 auto;
    height: fit-content;
    width: 100%;
  }

  #fengshuiapp .bottom-text-area > img {
    position: absolute;
    width: 25%;
    min-width: 200px;
    top: -28rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .bottom-text-area > p {
    font-size: 1.3rem;
  }
}

/*
---------------------------------------------------
 summary
---------------------------------------------------
*/

#fengshuiapp .summary {
  margin: 4rem 6rem 5rem;
}

#fengshuiapp .summary img {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .summary {
    margin: 5.5rem 1.4rem 4.5rem;
  }

  #fengshuiapp .summary img {
    width: 100%;
    margin: 3rem auto;
  }
}

@media screen and (max-width: 500px) {
}

/*
---------------------------------------------------
 prepare
---------------------------------------------------
*/

#fengshuiapp .prepare > div {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 90%;
  margin: 4rem auto 6rem;
  padding: 3rem 1rem;
  border: #afafaf 1px solid;
  border-radius: 19px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.16);
}

#fengshuiapp .prepare > div > div {
  width: 45%;
}

#fengshuiapp .prepare > div > div:nth-of-type(1) img {
  width: 85%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 3rem auto 1rem;
}

#fengshuiapp .prepare > div > div:nth-of-type(2) img {
  width: 63%;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 3rem auto 1rem;
}

#fengshuiapp .prepare > div > div > p {
  margin: 1rem 0;
}

#fengshuiapp .text-strong {
  display: block;
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--theme);
  padding: 1.8rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 500px) {
  #fengshuiapp .text-strong {
    font-size: 2.2rem;
  }
}

#fengshuiapp .prepare > .app-lead {
  font-size: 2rem;
  margin: 1.95rem auto;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .prepare > div {
    width: 90%;
    margin: 2.6rem auto 6rem;
  }

  #fengshuiapp .prepare > div > div {
    width: 100%;
  }

  #fengshuiapp .prepare > div > div:nth-of-type(1) img {
    aspect-ratio: 16 / 9;
    margin: 1rem auto 0;
  }

  #fengshuiapp .prepare > div > div:nth-of-type(2) img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .prepare > div {
    padding: 1rem 0;
  }
}

/*
---------------------------------------------------
 usage
---------------------------------------------------
*/

#fengshuiapp .iframe-wrapper {
  position: relative;
  width: 75%;
  margin: 5rem auto;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .iframe-wrapper {
    width: 100%;
    margin: 3rem auto;
  }
}

#fengshuiapp .iframe-wrapper::after {
  display: block;
  position: absolute;
  content: "Voice by Ondoku3.com";
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ff9c9f;
  bottom: -1.5rem;
  right: 0.5rem;
  line-height: 1;
}

@media screen and (max-width: 500px) {
  #fengshuiapp .iframe-wrapper::after {
    font-size: 1.2rem;
  }
}

#fengshuiapp .text-strong-bg {
  position: relative;
  display: block;
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--white_2);
  background-color: var(--theme);
  padding: 1.8rem;
  margin: 9rem -3rem 5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .text-strong-bg {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 9rem -2.35rem 5rem;
  }
}

#fengshuiapp .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

#fengshuiapp .step-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 40%;
  align-items: baseline;
}

#fengshuiapp .zoom-icon {
  width: 8%;
  padding-bottom: 4.5rem;
}

#fengshuiapp .pl {
  margin-left: 0.5rem;
}

#fengshuiapp .zoom-icon:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .step-wrapper {
    width: 80%;
  }

  #fengshuiapp .zoom-icon {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .step-wrapper {
    width: 90%;
  }

  #fengshuiapp .zoom-icon {
    width: 10%;
  }
}

#fengshuiapp .step p {
  text-align: left;
  margin: 2.5rem auto 0;
}

#fengshuiapp .step p span {
  color: #c72553;
}

#fengshuiapp .usage > img {
  width: 50%;
  margin: 0 auto 13rem;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .usage > img {
    width: 70%;
    margin: 0 auto 10rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .usage > img {
    width: 80%;
    margin: 0 auto 8rem;
  }
}

#fengshuiapp .modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
}

#fengshuiapp .modal img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  margin: 8rem auto 0;
}

/*
---------------------------------------------------
 fengshuimat
---------------------------------------------------
*/

#fengshuiapp .fengshuimat img {
  width: 74%;
  margin: 2.75rem auto 1.35rem;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .fengshuimat img {
    width: 85%;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .fengshuimat img {
    width: 100%;
  }
}

/*
---------------------------------------------------
 column
---------------------------------------------------
*/

#fengshuiapp .column > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2.45rem;
  justify-content: center;
  margin: 4.7rem 1rem 3.8rem;
}

#fengshuiapp .column > div > a {
  display: block;
  width: 47%;
}

#fengshuiapp .column p {
  text-align: left;
  margin: 2rem auto 0;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .column > div > a {
    width: 100%;
  }
}

/*
---------------------------------------------------
 bottom
---------------------------------------------------
*/

#fengshuiapp .bottom img {
  width: 12%;
  margin: auto 0;
}

#fengshuiapp .bottom > div {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

#fengshuiapp .bottom .app-lead {
  font-size: 2rem;
  margin: 0.85rem auto;
}

#fengshuiapp .bottom .button-main {
  font-size: 2.8rem;
  padding: 2rem 9.3rem 2rem 5.6rem;
}

#fengshuiapp .bottom .button-main span::before {
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 30px;
}

#fengshuiapp .bottom .button-main span::after {
  right: 39px;
  border-top: 8px solid transparent;
  border-left: 12px solid var(--theme);
  border-bottom: 8px solid transparent;
}

@media screen and (max-width: 768px) {
  #fengshuiapp .bottom img {
    display: none;
  }

  #fengshuiapp .bottom .button-main {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 500px) {
  #fengshuiapp .bottom .button-main {
    font-size: 2.2rem;
    margin: 0 1rem;
  }
}
