@charset "UTF-8";
/* =========================================================
reset
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, select {
  vertical-align: middle;
}

a:hover {
  opacity: 0.7;
}

.txt-bold {
  font-weight: 700;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.txt {
  width: 670px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .txt {
    width: 89.3333333333vw;
  }
}

.txt-white {
  color: #ffffff !important;
}

.txt-red {
  color: #c70011;
}

.notes {
  color: #111111;
  text-align: left;
  font-size: 24px;
  text-indent: -2em;
  padding-left: 2em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .notes {
    font-size: 3.2vw;
  }
}

.shine {
  margin: 0 auto 0;
  position: relative;
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}

.shine span.mask {
  position: relative; /*キラッの基点となる位置を定義*/
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}

.shine span.mask::before {
  position: absolute;
  content: "";
  width: 50%; /*キラッの横幅*/
  height: 100%; /*キラッの縦幅*/
  top: 0; /*.shine span.maskのトップ0を基点*/
  left: -75%; /*画面の見えていない左から右へ移動するスタート地点*/
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg); /*背景白透過を斜めに*/
  z-index: 2;
}

@-webkit-keyframes shine {
  100% {
    left: 125%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
@keyframes shine {
  100% {
    left: 125%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.shine span.mask::before {
  -webkit-animation: shine 1.4s ease-in infinite;
  animation: shine 1.4s ease-in infinite; /*アニメーションの名前と速度を定義*/
}

/* 初期状態: 非表示 */
.photo {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out; /* スムーズに遷移 */
}

/* show クラスが付与されるとアニメーションが実行される */
.photo.show {
  opacity: 1;
}

/* zoom アニメーション */
.photo.zoom.show {
  -webkit-animation: zoomIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: zoomIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* スライドアニメーション */
.photo.slide.show {
  -webkit-animation: slideIn 0.6s ease-out forwards;
          animation: slideIn 0.6s ease-out forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.dokidoki {
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* アニメーションをループさせる */
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*--------------------------------------------------
スクロールで出現
--------------------------------------------------*/
.sa {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sa.show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.sa--lr {
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}

.sa--rl {
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}

.sa--up {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.sa--down {
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
}

@media screen and (max-width: 767px) {
  .sq {
    overflow: hidden;
  }
}
.qa-list {
  width: 670px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .qa-list {
    width: 89.3333333333vw;
  }
}
.qa-list-item {
  position: relative;
  z-index: 1;
}

.qa-list-item::after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 670px;
  height: 236px;
  z-index: -1;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -75px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .qa-list-item::after {
    width: 89.3333333333vw;
    height: 29.2vw;
    top: -8.2666666667vw;
    border-radius: 1.0666666667vw;
  }
}

.qa-list-q {
  background-color: #e19317;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 610px;
  border-radius: 100px;
  margin: 0 auto;
  height: 114px;
  -webkit-box-shadow: 0px 4px 16px -5px #424242;
          box-shadow: 0px 4px 16px -5px #424242;
}

@media screen and (max-width: 768px) {
  .qa-list-q {
    padding: 3.2vw 2.9333333333vw 3.2vw 10.2666666667vw;
    height: 15.2vw;
    width: 81.3333333333vw;
    border-radius: 26.6666666667vw;
    -webkit-box-shadow: 0px 0.5333333333vw 2.1333333333vw -0.6666666667vw #424242;
            box-shadow: 0px 0.5333333333vw 2.1333333333vw -0.6666666667vw #424242;
  }
}
.qa-list-q-txt {
  color: #fff;
  font-weight: 500;
  line-height: 1.5em;
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: -0.05em;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .qa-list-q-txt {
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 4.8vw;
    margin-left: -2.4vw;
  }
}
.qa-list-q-txt::after {
  content: "";
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  right: -47px;
  top: 9px;
}
@media screen and (max-width: 767px) {
  .qa-list-q-txt::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    right: -6.2666666667vw;
    top: 1.2vw;
  }
}

.qa-list-q .qa-list-q-icon {
  font-weight: bold;
  margin-right: 24px;
}

@media screen and (max-width: 768px) {
  .qa-list-q .qa-list-q-icon {
    padding-right: 2.8vw;
    margin-right: 3.2vw;
  }
}
.qa-list-q .fa-circle-chevron-down {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  text-indent: 0;
  top: 50%;
  right: 16px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .qa-list-q .fa-circle-chevron-down {
    right: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.qa-list-q .fa-chevron-circle-down:before, .qa-list-q .fa-circle-chevron-down:before {
  color: #ffffff;
}

.qa-list-q:hover {
  cursor: pointer;
}

.is-open .fa-circle-chevron-down {
  -webkit-transform: rotate(-180deg) translate(0%, 50%);
  transform: rotate(-180deg) translate(0%, 50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.qa-list-a {
  display: none;
  background-color: #fff;
  padding: 40px;
  margin-bottom: 26.6666666667px;
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 768px) {
  .qa-list-a {
    padding: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    border-radius: 0 0 1.0666666667vw 1.0666666667vw;
  }
}
.qa-list-a-txt {
  font-size: 32px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .qa-list-a-txt {
    font-size: 4.2666666667vw;
  }
}
.qa-list-a .qa-list-a-icon {
  font-weight: bold;
  color: #678DB0;
  margin-right: 24px;
}

@media screen and (max-width: 768px) {
  .qa-list-a .qa-list-a-icon {
    margin-right: 3.2vw;
  }
}
.qa-list-q .toggle {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 20px;
  width: 20px;
  right: 28px;
}

@media screen and (max-width: 767px) {
  .qa-list-q .toggle {
    width: 4vw;
    height: 4vw;
    margin: auto 1.3333333333vw auto auto;
    right: 2.6666666667vw;
  }
}
.qa-list-q .toggle span::before,
.qa-list-q .toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 20px;
  height: 4px;
  vertical-align: middle;
  background: #e19317;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 40px;
}

@media screen and (max-width: 767px) {
  .qa-list-q .toggle span::before,
  .qa-list-q .toggle span::after {
    width: 4vw;
    height: 0.5333333333vw;
  }
}
.qa-list-q .toggle span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.is-open.qa-list-q .toggle span::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.is-open.qa-list-q .toggle span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* =========================================================
Web fonts
========================================================= */
/* =========================================================
base
========================================================= */
html, body {
  width: 100%;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  html, body {
    max-width: 100vw;
  }
}

body {
  letter-spacing: 0;
  background: #fff;
  font-size: 32px;
  line-height: 2;
  padding-bottom: 160px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #f1f1f1;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  box-shadow: 7px 0 5px -5px rgba(28, 10, 0, .1), -6px 0 5px -5px rgba(28, 10, 0, .1);
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4.2666666667vw;
    line-height: 1.7;
    padding-bottom: 21.3333333333vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  vertical-align: middle;
}

a {
  color: #333;
  display: block;
  text-decoration: none;
}

p {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

img {
  line-height: 0;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.pc-in {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-in {
    display: none;
  }
}

.sp-in {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-in {
    display: block;
  }
}

/* border-box
--------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section {
  text-align: center;
}

.floating {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 0;
  z-index: 2;
  background: url(../img/floating_bg.png) top center/100% auto no-repeat;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 750px;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .floating {
    width: 100%;
    padding: 2.1333333333vw 0;
    background: url(../img/floating_bg.png) top center/100vw auto no-repeat;
  }
}
.floating .cv-btn {
  width: 590px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .floating .cv-btn {
    width: 78.6666666667vw;
  }
}

.floating.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

h2 {
  font-size: 0;
}

.mv {
  position: relative;
  background: url(../img/fv.png) top center/100% auto no-repeat;
  padding: 0;
  width: 100%;
  height: 1320px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 0;
    height: 176vw;
  }
}
.mv h1 {
  font-size: 0;
}
.mv .notes-box {
  width: 670px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .mv .notes-box {
    width: 89.3333333333vw;
    bottom: 5.3333333333vw;
  }
}

.cta-area {
  margin-top: -1px;
  padding: 48px 0 56px 0;
  background: url(../img/cv.png) top center/100% auto no-repeat;
  margin-top: -55px;
  position: relative;
  z-index: 0;
  height: 1770px;
}
@media screen and (max-width: 767px) {
  .cta-area {
    padding: 6.4vw 0 7.4666666667vw 0;
    background: url(../img/cv.png) top center/100vw auto no-repeat;
    margin-top: -7.3333333333vw;
    height: 236vw;
  }
}
.cta-area .cta-btn {
  width: 590px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 900px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .cta-area .cta-btn {
    width: 78.6666666667vw;
    margin-bottom: 5.3333333333vw;
    top: 120vw;
  }
}
.cta-area .cta-notes {
  font-size: 24px;
  width: 670px;
  letter-spacing: 0.04em;
  text-align: justify;
  line-height: 1.3em;
  position: absolute;
  bottom: 60px;
  color: #ffffff;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cta-area .cta-notes {
    font-size: 3.2vw;
    width: 89.3333333333vw;
    bottom: 8vw;
  }
}
.cta-area .cta-price {
  width: 590px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 720px;
}
@media screen and (max-width: 767px) {
  .cta-area .cta-price {
    width: 78.6666666667vw;
    top: 96vw;
  }
}

.benefits {
  background: url(../img/benefits_bg.png) top center/100% auto no-repeat;
  height: 1804px;
}
@media screen and (max-width: 767px) {
  .benefits {
    background: url(../img/benefits_bg.png) top center/100vw auto no-repeat;
    height: 240.5333333333vw;
  }
}
.benefits .benefits-img {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 670px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img {
    width: 89.3333333333vw;
  }
}
.benefits .benefits-img:nth-child(2) {
  top: 314px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img:nth-child(2) {
    top: 41.8666666667vw;
  }
}
.benefits .benefits-img:nth-child(3) {
  top: 694px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img:nth-child(3) {
    top: 92.5333333333vw;
  }
}
.benefits .benefits-img:nth-child(4) {
  top: 954px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img:nth-child(4) {
    top: 127.2vw;
  }
}
.benefits .benefits-img:nth-child(5) {
  top: 1214px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img:nth-child(5) {
    top: 161.8666666667vw;
  }
}
.benefits .benefits-img:nth-child(6) {
  top: 1474px;
}
@media screen and (max-width: 767px) {
  .benefits .benefits-img:nth-child(6) {
    top: 196.5333333333vw;
  }
}

.worries {
  background: url(../img/worries.png) top center/100% auto no-repeat;
  height: 1651px;
}
@media screen and (max-width: 767px) {
  .worries {
    background: url(../img/worries.png) top center/100vw auto no-repeat;
    height: 220.1333333333vw;
  }
}
.worries .worries-img {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 750px;
  top: 757px;
}
@media screen and (max-width: 767px) {
  .worries .worries-img {
    width: 100vw;
    top: 100.9333333333vw;
  }
}

.acco-box {
  background: url(../img/acco_bg.png) top center/cover no-repeat;
  background-size: cover;
  padding: 80px 0 120px 0;
}
@media screen and (max-width: 767px) {
  .acco-box {
    padding: 10.6666666667vw 0 16vw 0;
  }
}
.acco-box .acco-box-ttl {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .acco-box .acco-box-ttl {
    margin-bottom: 4.8vw;
    font-size: 5.3333333333vw;
  }
}

.charm {
  background: url(../img/charm_bg.png) top center/100% auto no-repeat;
  height: 2754px;
}
@media screen and (max-width: 767px) {
  .charm {
    background: url(../img/charm_bg.png) top center/100vw auto no-repeat;
    height: 367.2vw;
  }
}
.charm .charm-img {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.charm .charm-img:nth-child(2) {
  top: 710px;
  width: 324px;
}
@media screen and (max-width: 767px) {
  .charm .charm-img:nth-child(2) {
    top: 94.6666666667vw;
    width: 43.2vw;
  }
}
.charm .charm-img:nth-child(3) {
  top: 1158px;
  width: 374px;
}
@media screen and (max-width: 767px) {
  .charm .charm-img:nth-child(3) {
    top: 154.4vw;
    width: 49.8666666667vw;
  }
}
.charm .charm-img:nth-child(4) {
  top: 1570px;
  width: 714px;
}
@media screen and (max-width: 767px) {
  .charm .charm-img:nth-child(4) {
    top: 209.3333333333vw;
    width: 95.2vw;
  }
}
.charm .charm-img:nth-child(5) {
  top: 2072px;
  width: 568px;
  left: 50px;
  right: inherit;
}
@media screen and (max-width: 767px) {
  .charm .charm-img:nth-child(5) {
    top: 276.2666666667vw;
    width: 75.7333333333vw;
    left: 6.6666666667vw;
  }
}

.birth {
  background: url(../img/birth.png) top center/100% auto no-repeat;
  height: 2482px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .birth {
    background: url(../img/birth.png) top center/100vw auto no-repeat;
    height: 330.9333333333vw;
  }
}
.birth .birth-img {
  position: absolute;
}
.birth .birth-img:nth-child(2) {
  top: 308px;
  width: 719px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .birth .birth-img:nth-child(2) {
    top: 41.0666666667vw;
    width: 95.8666666667vw;
    left: 1.3333333333vw;
  }
}
.birth .birth-img:nth-child(3) {
  top: 851px;
  width: 622px;
  left: 105px;
}
@media screen and (max-width: 767px) {
  .birth .birth-img:nth-child(3) {
    top: 113.4666666667vw;
    width: 82.9333333333vw;
    left: 14vw;
  }
}
.birth .birth-img:nth-child(4) {
  top: 1396px;
  width: 700px;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .birth .birth-img:nth-child(4) {
    top: 186.1333333333vw;
    width: 93.3333333333vw;
    left: 0.6666666667vw;
  }
}

.point {
  background: url(../img/point.png) top center/100% auto no-repeat;
  height: 4352px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point {
    background: url(../img/point.png) top center/100vw auto no-repeat;
    height: 580.2666666667vw;
  }
}
.point .point-img {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.point .point-img:nth-child(2) {
  top: 334px;
  width: 630px;
}
@media screen and (max-width: 767px) {
  .point .point-img:nth-child(2) {
    top: 44.5333333333vw;
    width: 84vw;
  }
}
.point .point-img:nth-child(3) {
  top: 1222px;
  width: 457px;
}
@media screen and (max-width: 767px) {
  .point .point-img:nth-child(3) {
    top: 162.9333333333vw;
    width: 60.9333333333vw;
  }
}
.point .point-img:nth-child(4) {
  top: 2164px;
  width: 498px;
}
@media screen and (max-width: 767px) {
  .point .point-img:nth-child(4) {
    top: 288.5333333333vw;
    width: 66.4vw;
  }
}
.point .point-img:nth-child(5) {
  top: 3059px;
  width: 542px;
}
@media screen and (max-width: 767px) {
  .point .point-img:nth-child(5) {
    top: 407.8666666667vw;
    width: 72.2666666667vw;
  }
}

.combination {
  background: url(../img/combination.png) top center/100% auto no-repeat;
  height: 2055px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .combination {
    background: url(../img/combination.png) top center/100vw auto no-repeat;
    height: 274vw;
  }
}
.combination .combination-img {
  top: 90px;
  width: 316px;
  right: 9px;
}
@media screen and (max-width: 767px) {
  .combination .combination-img {
    top: 12vw;
    width: 42.1333333333vw;
    right: 1.2vw;
  }
}