@charset "UTF-8";
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}

@media screen and (min-width: 541px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 540px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 800px) {
  .tb {
    display: none !important;
  }
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F8DEEE;
  color: #818084;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

@media screen and (max-width: 540px) {
  body {
    color: #78777b;
  }
}

body p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
  font-size: 18px;
  margin: 0;
}

@media screen and (max-width: 540px) {
  body p {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  body p {
    font-size: 14px;
  }
}

body .bold {
  font-weight: bold;
}

body .marker-half {
  font-weight: bold;
  padding-bottom: 0px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ffe2a3));
  background: linear-gradient(transparent 65%, #ffe2a3 65%);
}

body .center {
  text-align: center;
}

body h2 {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
  font-size: 35px;
  text-align: center;
  margin: 0 0 40px;
  color: #616065;
}

@media screen and (max-width: 540px) {
  body h2 {
    font-size: 25px;
    text-align: center;
    margin: 0 0 30px;
  }
}

body .erosion-top {
  height: 40px;
  border-radius: 50px 50px 0 0;
  background-color: #F8DEEE;
}

@media screen and (max-width: 540px) {
  body .erosion-top {
    border-radius: 20px 20px 0 0;
  }
}

body .erosion-bottom {
  height: 40px;
  border-radius: 0 0 50px 50px;
  background-color: #F8DEEE;
}

@media screen and (max-width: 540px) {
  body .erosion-bottom {
    border-radius: 0 0 20px 20px;
  }
}

body .container {
  margin: auto;
  max-width: 1040px;
  padding: 80px 0;
  width: 90%;
}

@media screen and (max-width: 540px) {
  body .container {
    padding: 60px 0px;
  }
}

body .sub-container {
  margin: auto;
  max-width: 700px;
  padding: 80px 0;
  width: 90%;
}

@media screen and (max-width: 540px) {
  body .sub-container {
    padding: 60px 0px;
  }
}

header {
  background-image: url(../img/mainvisual-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

header .container {
  padding: 0px;
  width: 100%;
  position: relative;
  max-width: 1440px;
}

header .container img {
  width: 100%;
  display: block;
}

header .container .button {
  position: absolute;
  display: block;
  text-align: center;
  width: 600px;
  padding: 13px 5px 15px;
  background-image: -webkit-gradient(linear, left top, right top, from(#C23ED0), to(#F24181));
  background-image: linear-gradient(90deg, #C23ED0, #F24181);
  border-radius: 62px;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  border: 4px solid white;
  -webkit-box-shadow: 0px 10px 0px #0000003a;
          box-shadow: 0px 10px 0px #0000003a;
  bottom: 70px;
  left: 200px;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}

header .container .button p {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

header .container .button:hover {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: 0px 0px 5px #0000003a;
          box-shadow: 0px 0px 5px #0000003a;
  background-image: -webkit-gradient(linear, left top, right top, from(#ca4dd8), to(#f1508b));
  background-image: linear-gradient(90deg, #ca4dd8, #f1508b);
}

header .container .button:active {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-box-shadow: 0px 0px 5px #0000003a;
          box-shadow: 0px 0px 5px #0000003a;
}

header .container .button::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow.png);
  background-size: 16px;
  top: 37%;
  right: 30px;
}

header .container .button .free {
  background-color: white;
  padding: 0px 15px 3px;
  border-radius: 50px;
  margin-right: 10px;
  color: #CE3EBC;
  text-shadow: none;
}

@media screen and (max-width: 1440px) {
  header .container .button {
    width: 37vw;
    padding: 1.1vw 2vw 1.2vw;
    border: 0.3vw solid white;
    -webkit-box-shadow: 0px 0.7vw 0px #0000003a;
            box-shadow: 0px 0.7vw 0px #0000003a;
    bottom: 4.7vw;
    left: 12.5vw;
  }
  header .container .button p {
    font-size: 1.7vw;
    margin-right: 1vw;
  }
  header .container .button::before {
    width: 1.4vw;
    height: 1.4vw;
    background-size: 1.4vw;
    top: 33%;
    right: 2vw;
  }
  header .container .button .free {
    padding: 0.1vw 1.2vw 0.3vw;
    margin-right: 1vw;
  }
}

@media screen and (max-width: 540px) {
  header {
    background-image: url(../img/mainvisual-back-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  header .container .button {
    width: 90%;
    padding: 2.5vw 0 2.7vw;
    border: 0.7vw solid white;
    -webkit-box-shadow: 0px 2vw 0px #0000003a;
            box-shadow: 0px 2vw 0px #0000003a;
    bottom: 13.5vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .container .button p {
    font-size: 4.5vw;
    margin-right: 3vw;
  }
  header .container .button:hover {
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
  }
  header .container .button:active {
    -webkit-transform: translateX(-50%) translateY(12px);
            transform: translateX(-50%) translateY(12px);
  }
  header .container .button::before {
    width: 3vw;
    height: 3vw;
    background-size: 3vw;
    top: 36%;
    right: 3.5vw;
  }
  header .container .button .free {
    background-color: white;
    padding: 0.2vw 2vw 0.6vw;
    margin-right: 1.3vw;
  }
}

.monitor-bg {
  background-color: #FFFCF4;
}

.monitor-bg .sub-container .monitor {
  max-width: 615px;
  width: 100%;
  display: block;
  margin: auto auto 5px;
}

.monitor-bg .sub-container p {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.monitor-bg .sub-container p .marker-half {
  color: #BE64C9;
  font-size: 25px;
}

.monitor-bg .sub-container .graph {
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 540px) {
  .monitor-bg .sub-container .monitor {
    max-width: 304px;
  }
  .monitor-bg .sub-container .graph {
    width: 100%;
    max-width: 336px;
    margin: 30px auto 0;
    display: block;
  }
}

.work-bg {
  background-color: #F8DEEE;
}

.work-bg .container {
  padding: 50px 0;
}

.work-bg .container .title {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: auto;
}

.work-bg .container .item {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  margin-top: 30px;
  color: #616065;
}

.work-bg .container .item .box {
  background-color: white;
  padding: 3px;
  width: 304px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 3px #0000000f;
          box-shadow: 5px 5px 3px #0000000f;
}

.work-bg .container .item .box .label {
  background-color: #D59ADC;
  border-radius: 8px 8px 0 0;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0;
}

.work-bg .container .item .box img {
  width: 100%;
}

.work-bg .container .item .box .contents {
  padding: 15px 17px 20px 17px;
}

.work-bg .container .item .box .contents .caption {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.work-bg .container .item .box .contents .reward-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  border: 1px solid #BE64C9;
  border-radius: 5px;
}

.work-bg .container .item .box .contents .reward-amount .text1 {
  font-weight: bold;
  color: white;
  background-color: #BE64C9;
  padding: 10px;
}

.work-bg .container .item .box .contents .reward-amount .text2 {
  font-size: 16px;
  color: #BE64C9;
  font-weight: bold;
  margin-left: 10px;
}

.work-bg .container .item .box .contents p {
  font-size: 14px;
}

@media screen and (max-width: 540px) {
  .work-bg .container {
    padding: 30px 0;
  }
  .work-bg .container .title {
    max-width: 265px;
  }
  .work-bg .container .item {
    gap: 25px;
    margin-top: 25px;
  }
  .work-bg .container .item .box .label {
    font-size: 18px;
    padding: px 0;
  }
}

@media screen and (max-width: 320px) {
  .work-bg .container .title {
    max-width: 235px;
  }
  .work-bg .container .item .box {
    background-color: white;
    padding: 3px;
    width: 270px;
  }
  .work-bg .container .item .box .label {
    font-size: 16px;
  }
  .work-bg .container .item .box .contents {
    padding: 15px 15px 20px 15px;
  }
  .work-bg .container .item .box .contents .caption {
    font-size: 17px;
  }
  .work-bg .container .item .box .contents .reward-amount .text1 {
    padding: 7px 8px 5px;
  }
  .work-bg .container .item .box .contents .reward-amount .text2 {
    font-size: 14px;
    margin-left: 8px;
  }
  .work-bg .container .item .box .contents p {
    font-size: 14px;
  }
}

.flow-bg {
  background-image: url(../img/image.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.flow-bg .container .step {
  max-width: 390px;
  margin: auto auto 40px;
  display: block;
}

.flow-bg .container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 40px;
  color: #616065;
}

.flow-bg .container .item .box {
  padding: 30px 40px 25px 40px;
  background-color: white;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 5px -5px 3px #0000000f;
          box-shadow: 5px -5px 3px #0000000f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
}

.flow-bg .container .item .box img {
  max-width: 360px;
}

.flow-bg .container .item .box .label {
  background-color: #BE64C9;
  display: inline;
  padding: 3px 20px;
  border-radius: 50px;
  font-weight: bold;
  color: white;
}

.flow-bg .container .item .box .caption {
  font-size: 20px;
  font-weight: bold;
  color: #BE64C9;
  margin: 7px 0 13px;
}

.flow-bg .container .item .box p {
  font-size: 16px;
}

.flow-bg .container .item .box .triangle {
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 0;
  bottom: -29px;
}

.flow-bg .container .item .box-last {
  padding: 30px 40px;
  border-radius: 10px;
}

@media screen and (max-width: 800px) {
  .flow-bg .container .step {
    max-width: 305px;
    margin: auto auto 30px;
  }
  .flow-bg .container .item {
    gap: 40px;
    margin-top: 30px;
  }
  .flow-bg .container .item .box {
    padding: 40px 40px 30px;
    display: block;
    position: relative;
  }
  .flow-bg .container .item .box img {
    margin-bottom: 25px;
    width: 100%;
  }
  .flow-bg .container .item .box .label {
    padding: 3px 15px;
  }
  .flow-bg .container .item .box .caption {
    font-size: 18px;
    margin: 7px 0 13px;
  }
  .flow-bg .container .item .box .triangle {
    height: 20px;
    background-color: #ffffff;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
    left: 0;
    bottom: -19px;
  }
  .flow-bg .container .item .box-last {
    padding: 40px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 334px) {
  .flow-bg .container .step {
    max-width: 80vw;
  }
  .flow-bg .container .item .box {
    padding: 40px 15px 30px;
  }
  .flow-bg .container .item .box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) {
  .flow-bg {
    background-image: url(../img/image-sp.png);
    background-position: 100%;
  }
}

.merit-bg {
  background-color: #FFFCF4;
}

.merit-bg .container h2 {
  margin: auto;
}

.merit-bg .container .merit {
  display: block;
  margin: auto auto 40px;
  max-width: 280px;
}

.merit-bg .container .item {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.merit-bg .container .item .box {
  position: relative;
}

.merit-bg .container .item .box .icon1 {
  position: absolute;
  max-width: 65px;
}

.merit-bg .container .item .box .icon2 {
  position: absolute;
  max-width: 63px;
  bottom: 0;
  right: 0;
}

.merit-bg .container .item .box .icon3 {
  position: absolute;
  max-width: 70px;
  right: 0;
}

.merit-bg .container .item .box .circle {
  width: 300px;
  height: 300px;
  border-radius: 500px;
  background-color: white;
  -webkit-box-shadow: 0px 5px 5px #0000001e;
          box-shadow: 0px 5px 5px #0000001e;
  text-align: center;
  color: #616065;
}

.merit-bg .container .item .box .circle .line-break {
  margin-top: 10px;
}

.merit-bg .container .item .box .circle .title {
  width: 295px;
  height: 117px;
  background-image: url(../img/circle-title.png);
  margin-bottom: 18px;
  background-size: cover;
  background-position: 50% 0%;
  padding-top: 35px;
}

.merit-bg .container .item .box .circle .title p {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 540px) {
  .merit-bg .container .merit {
    margin: auto auto 30px;
    max-width: 210px;
  }
  .merit-bg .container .item {
    gap: 25px;
  }
  .merit-bg .container .item .box .icon1 {
    max-width: 50px;
    left: 10px;
  }
  .merit-bg .container .item .box .icon2 {
    max-width: 45px;
    top: 0;
    right: 10px;
  }
  .merit-bg .container .item .box .icon3 {
    max-width: 60px;
    left: 0;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .merit-bg .container .item .box .circle {
    width: 265px;
    height: 265px;
  }
  .merit-bg .container .item .box .circle .title {
    width: 265px;
    height: 103px;
    margin-bottom: 13px;
    padding-top: 35px;
  }
  .merit-bg .container .item .box .circle .title p {
    color: white;
    font-weight: bold;
    font-size: 18px;
  }
}

@media screen and (max-width: 320px) {
  .merit-bg .container .item .box p {
    font-size: 14px;
  }
  .merit-bg .container .item .box .circle {
    width: 235px;
    height: 235px;
  }
  .merit-bg .container .item .box .circle .title {
    width: 235px;
    height: 83px;
    padding-top: 25px;
  }
  .merit-bg .container .item .box .circle .title p {
    font-size: 16px;
  }
}

.merit-bg .container .cta {
  border: 4px solid #BE64C9;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#F8DEEE));
  background-image: linear-gradient(90deg, #FFFFFF, #F8DEEE);
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 5px #0000001e;
          box-shadow: 5px 5px 5px #0000001e;
  padding: 65px 90px;
  position: relative;
  margin-top: 80px;
}

.merit-bg .container .cta .woman {
  position: absolute;
  bottom: 0;
  right: 30px;
  max-width: 690px;
}

.merit-bg .container .cta .contents {
  max-width: 500px;
  text-align: center;
  color: #616065;
  position: relative;
  z-index: 10;
}

.merit-bg .container .cta .contents .advantage {
  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;
  gap: 10px;
  margin-bottom: 20px;
}

.merit-bg .container .cta .contents .advantage .box {
  background-color: white;
  border: #BE64C9 1px solid;
  width: 130px;
  height: 130px;
  border-radius: 500px;
  position: relative;
  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;
}

.merit-bg .container .cta .contents .advantage .box .check {
  position: absolute;
  width: 28px;
  top: 0;
  left: 0;
}

.merit-bg .container .cta .contents .advantage .box .limited {
  max-width: 90px;
  margin: 10px auto 3px;
  display: block;
}

.merit-bg .container .cta .contents .advantage .box p {
  font-weight: bold;
  font-size: 16px;
}

.merit-bg .container .cta .button {
  margin: 45px auto 0;
  display: block;
  text-align: center;
  max-width: 500px;
  padding: 17px 5px 15px;
  background-image: -webkit-gradient(linear, left top, right top, from(#C23ED0), to(#F24181));
  background-image: linear-gradient(90deg, #C23ED0, #F24181);
  color: white;
  border-radius: 62px;
  font-weight: bold;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  border: 4px solid white;
  -webkit-box-shadow: 0px 10px 0px #0000003a;
          box-shadow: 0px 10px 0px #0000003a;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.25);
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
}

.merit-bg .container .cta .button p {
  font-size: 20px;
}

.merit-bg .container .cta .button:hover {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: 0px 0px 5px #0000003a;
          box-shadow: 0px 0px 5px #0000003a;
  background-image: -webkit-gradient(linear, left top, right top, from(#ca4dd8), to(#f1508b));
  background-image: linear-gradient(90deg, #ca4dd8, #f1508b);
}

.merit-bg .container .cta .button:active {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-box-shadow: 0px 0px 5px #0000003a;
          box-shadow: 0px 0px 5px #0000003a;
}

.merit-bg .container .cta .button::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow.png);
  background-size: 16px;
  top: 37%;
  right: 30px;
}

.merit-bg .container .cta .button::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  background-image: url(../img/tell.png);
  background-size: 45px;
  top: 16%;
  left: 10px;
}

.merit-bg .container .cta .button img {
  position: absolute;
  max-width: 145px;
  left: 50%;
  top: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
  .merit-bg .container .cta {
    padding: 65px 20px;
  }
  .merit-bg .container .cta .woman {
    right: 0;
  }
}

@media screen and (max-width: 870px) {
  .merit-bg .container .cta {
    border: 2px solid #BE64C9;
    padding: 35vw 15px 50px;
    margin-top: 120px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#F8DEEE), to(#FFFFFF));
    background-image: linear-gradient(#F8DEEE, #FFFFFF);
  }
  .merit-bg .container .cta .woman {
    top: -100px;
    max-width: 88vw;
    left: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .merit-bg .container .cta .contents {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .merit-bg .container .cta .contents .advantage {
    gap: 5px;
    margin-bottom: 20px;
  }
  .merit-bg .container .cta .contents .advantage .box {
    width: 26vw;
    height: 26vw;
  }
  .merit-bg .container .cta .contents .advantage .box .check {
    position: absolute;
    width: 5.5vw;
  }
  .merit-bg .container .cta .contents .advantage .box .limited {
    max-width: 80px;
    margin: 7px auto 2px;
  }
  .merit-bg .container .cta .contents .advantage .box p {
    font-size: 14px;
  }
  .merit-bg .container .cta .button {
    padding: 17px 5px 15px;
    border: 3px solid white;
    -webkit-box-shadow: 0px 7px 0px #0000003a;
            box-shadow: 0px 7px 0px #0000003a;
  }
  .merit-bg .container .cta .button p {
    font-size: 18px;
  }
  .merit-bg .container .cta .button::before {
    background-size: 16px;
    right: 15px;
  }
  .merit-bg .container .cta .button::after {
    content: "";
    width: 22px;
    height: 22px;
    background-size: 22px;
    top: 33%;
  }
  .merit-bg .container .cta .button img {
    max-width: 135px;
  }
}

@media screen and (max-width: 540px) {
  .merit-bg .container .cta .woman {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 377px) {
  .merit-bg .container .cta {
    padding: 30vw 15px 50px;
    margin-top: 100px;
  }
  .merit-bg .container .cta .woman {
    top: -80px;
    max-width: 86vw;
  }
  .merit-bg .container .cta .contents .advantage .box .limited {
    max-width: 50px;
    margin: 3px auto 2px;
  }
  .merit-bg .container .cta .contents .advantage .box p {
    font-size: 11px;
  }
  .merit-bg .container .cta .button {
    padding: 15px 5px;
    border: 3px solid white;
    -webkit-box-shadow: 0px 7px 0px #0000003a;
            box-shadow: 0px 7px 0px #0000003a;
    margin-top: 35px;
  }
  .merit-bg .container .cta .button p {
    font-size: 16px;
  }
  .merit-bg .container .cta .button::before {
    display: none;
  }
  .merit-bg .container .cta .button::after {
    display: none;
  }
  .merit-bg .container .cta .button img {
    max-width: 120px;
    top: -15px;
  }
}

.simulation-bg {
  background-color: #F8DEEE;
}

.simulation-bg .sub-container {
  padding: 50px 0;
}

.simulation-bg .sub-container .simulation {
  max-width: 437px;
  margin: 0 auto 20px;
  display: block;
}

.simulation-bg .sub-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  margin-top: 70px;
}

.simulation-bg .sub-container .item .box {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 50px 20px 30px;
  color: #616065;
}

.simulation-bg .sub-container .item .box .title {
  position: absolute;
  max-width: 390px;
  left: 50%;
  top: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.simulation-bg .sub-container .item .box .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.simulation-bg .sub-container .item .box .contents .information {
  margin: auto;
  width: 320px;
  text-align: center;
  font-weight: bold;
}

.simulation-bg .sub-container .item .box .contents .information .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.simulation-bg .sub-container .item .box .contents .information .flex .box2 {
  padding: 20px 0;
  border-radius: 5px;
  width: 100%;
}

.simulation-bg .sub-container .item .box .contents .information .flex .box2 .text {
  font-size: 16px;
}

.simulation-bg .sub-container .item .box .contents .information .flex .box2 .numerical-value {
  font-size: 17px;
}

.simulation-bg .sub-container .item .box .contents .information .box2 {
  margin-top: 12px;
  padding: 20px 0;
  border-radius: 5px;
  width: 100%;
}

.simulation-bg .sub-container .item .box .contents .information .box2 .numerical-value {
  font-size: 20px;
}

.simulation-bg .sub-container .item .box .contents .example {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.simulation-bg .sub-container .item .box .contents .example .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .icon {
  width: 45px;
  height: 45px;
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .speechBubble {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 248px;
  margin-left: 10px;
  padding: 10px;
  border-radius: 8px;
  background-color: #ffffff;
}

@media screen and (max-width: 378px) {
  .simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .speechBubble {
    width: 63vw;
  }
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .speechBubble p {
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  top: 27%;
  margin: 0;
  position: static;
  top: auto;
  -webkit-transform: none;
          transform: none;
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .speechBubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 4px 10px 4px 0;
  translate: -100% -50%;
}

.simulation-bg .sub-container .item .box .contents .example .contents .speech-bubble .speechBubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 3px 8px 3px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
}

.simulation-bg .sub-container .item .simulation1 {
  border: 2px solid #CA6CD5;
}

.simulation-bg .sub-container .item .simulation1 .contents .information .flex .box2 {
  background-color: #FBF5FC;
  -webkit-box-shadow: 5px 5px 0px #F0D6F3;
          box-shadow: 5px 5px 0px #F0D6F3;
}

.simulation-bg .sub-container .item .simulation1 .contents .information .flex .box2 .numerical-value {
  color: #CA6CD5;
}

.simulation-bg .sub-container .item .simulation1 .contents .information .box2 {
  background-color: #FBF5FC;
  -webkit-box-shadow: 5px 5px 0px #F0D6F3;
          box-shadow: 5px 5px 0px #F0D6F3;
}

.simulation-bg .sub-container .item .simulation1 .contents .information .box2 .numerical-value {
  color: #CA6CD5;
}

.simulation-bg .sub-container .item .simulation1 .contents .example .bold {
  border-bottom: 2px solid #CA6CD5;
}

.simulation-bg .sub-container .item .simulation1 .contents .example .contents .speech-bubble .speechBubble {
  border: 1px solid #CA6CD5;
}

.simulation-bg .sub-container .item .simulation1 .contents .example .contents .speech-bubble .speechBubble::before {
  border-color: transparent #CA6CD5 transparent transparent;
}

.simulation-bg .sub-container .item .simulation2 {
  border: 2px solid #DD5CAA;
}

.simulation-bg .sub-container .item .simulation2 .contents .information .flex .box2 {
  background-color: #FCF2F8;
  -webkit-box-shadow: 5px 5px 0px #F7D6EA;
          box-shadow: 5px 5px 0px #F7D6EA;
}

.simulation-bg .sub-container .item .simulation2 .contents .information .flex .box2 .numerical-value {
  color: #DD5CAA;
}

.simulation-bg .sub-container .item .simulation2 .contents .information .box2 {
  background-color: #FCF2F8;
  -webkit-box-shadow: 5px 5px 0px #F7D6EA;
          box-shadow: 5px 5px 0px #F7D6EA;
}

.simulation-bg .sub-container .item .simulation2 .contents .information .box2 .numerical-value {
  color: #DD5CAA;
}

.simulation-bg .sub-container .item .simulation2 .contents .example .bold {
  border-bottom: 2px solid #DD5CAA;
}

.simulation-bg .sub-container .item .simulation2 .contents .example .contents .speech-bubble .speechBubble {
  border: 1px solid #DD5CAA;
}

.simulation-bg .sub-container .item .simulation2 .contents .example .contents .speech-bubble .speechBubble::before {
  border-color: transparent #DD5CAA transparent transparent;
}

.simulation-bg .sub-container .item .simulation3 {
  border: 2px solid #EF6595;
}

.simulation-bg .sub-container .item .simulation3 .contents .information .flex .box2 {
  background-color: #FEF6F9;
  -webkit-box-shadow: 5px 5px 0px #F9C0D3;
          box-shadow: 5px 5px 0px #F9C0D3;
}

.simulation-bg .sub-container .item .simulation3 .contents .information .flex .box2 .numerical-value {
  color: #EF6595;
}

.simulation-bg .sub-container .item .simulation3 .contents .information .box2 {
  background-color: #FEF6F9;
  -webkit-box-shadow: 5px 5px 0px #F9C0D3;
          box-shadow: 5px 5px 0px #F9C0D3;
}

.simulation-bg .sub-container .item .simulation3 .contents .information .box2 .numerical-value {
  color: #EF6595;
}

.simulation-bg .sub-container .item .simulation3 .contents .example .bold {
  border-bottom: 2px solid #EF6595;
}

.simulation-bg .sub-container .item .simulation3 .contents .example .contents .speech-bubble .speechBubble {
  border: 1px solid #EF6595;
}

.simulation-bg .sub-container .item .simulation3 .contents .example .contents .speech-bubble .speechBubble::before {
  border-color: transparent #EF6595 transparent transparent;
}

@media screen and (max-width: 540px) {
  .simulation-bg .sub-container {
    padding: 20px 0;
  }
  .simulation-bg .sub-container .simulation {
    max-width: 264px;
    width: 90%;
    margin: 0 auto 10px;
  }
  .simulation-bg .sub-container .item {
    margin-top: 60px;
    gap: 55px;
  }
  .simulation-bg .sub-container .item .box {
    padding: 30px 15px 30px;
    max-width: 338px;
    width: 100%;
    margin: auto;
  }
  .simulation-bg .sub-container .item .box .title {
    max-width: 304px;
    width: 90%;
    top: -25px;
  }
  .simulation-bg .sub-container .item .box .contents .information .flex .box2 .text {
    font-size: 14px;
  }
  .simulation-bg .sub-container .item .box .contents .information .flex .box2 .numerical-value {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  .simulation-bg .sub-container .item .box .contents .information .flex .box2 .text {
    font-size: 12px;
  }
  .simulation-bg .sub-container .item .box .contents .information .flex .box2 .numerical-value {
    font-size: 14px;
  }
  .simulation-bg .sub-container .item .box .contents .information .box2 .numerical-value {
    font-size: 17px;
  }
}

.voice-bg {
  background-color: #FFFCF4;
}

.voice-bg .sub-container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.voice-bg .sub-container .title h2 {
  margin-bottom: 15px;
}

.voice-bg .sub-container .title img {
  width: 73px;
  height: 60px;
}

@media screen and (max-width: 540px) {
  .voice-bg .sub-container .title img {
    width: 60px;
    height: 50px;
  }
}

.voice-bg .sub-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  color: #616065;
}

.voice-bg .sub-container .item .box {
  border-radius: 15px;
  background-color: white;
  padding: 25px 50px;
  -webkit-box-shadow: 5px 5px 0px #0000001e;
          box-shadow: 5px 5px 0px #0000001e;
}

.voice-bg .sub-container .item .box .introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.voice-bg .sub-container .item .box .introduction img {
  max-width: 80px;
}

.voice-bg .sub-container .item .box .introduction .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.voice-bg .sub-container .item .box .introduction .age {
  font-size: 16px;
  font-weight: 100;
}

.voice-bg .sub-container .item .box .introduction .history {
  font-size: 14px;
  font-weight: bold;
  color: white;
  display: inline;
  padding: 5px 15px;
  border-radius: 50px;
}

.voice-bg .sub-container .item .box .line {
  height: 2px;
  margin-top: 20px;
}

.voice-bg .sub-container .item .box .contents {
  padding: 20px 20px 0;
}

.voice-bg .sub-container .item .box .contents .reward {
  background-color: #FBF5FC;
  padding: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 0px #F0D6F3;
          box-shadow: 3px 3px 0px #F0D6F3;
  margin: 20px 0;
}

.voice-bg .sub-container .item .box .contents .reward p {
  text-align: center;
  font-size: 16px;
}

.voice-bg .sub-container .item .box .contents .reward .amount {
  font-size: 20px;
  font-weight: bold;
}

.voice-bg .sub-container .item .box .contents .thoughts {
  font-size: 16px;
}

.voice-bg .sub-container .item .box.box1 {
  border: 1px solid #CA6CD5;
}

.voice-bg .sub-container .item .box.box1 .introduction .history {
  background-color: #CA6CD5;
}

.voice-bg .sub-container .item .box.box1 .line {
  background-color: #CA6CD5;
}

.voice-bg .sub-container .item .box.box1 .purple {
  color: #CA6CD5;
}

.voice-bg .sub-container .item .box.box2 {
  border: 1px solid #DD5CAA;
}

.voice-bg .sub-container .item .box.box2 .introduction .history {
  background-color: #DD5CAA;
}

.voice-bg .sub-container .item .box.box2 .line {
  background-color: #DD5CAA;
}

.voice-bg .sub-container .item .box.box2 .purple {
  color: #DD5CAA;
}

.voice-bg .sub-container .item .box.box3 {
  border: 1px solid #EF6595;
}

.voice-bg .sub-container .item .box.box3 .introduction .history {
  background-color: #EF6595;
}

.voice-bg .sub-container .item .box.box3 .line {
  background-color: #EF6595;
}

.voice-bg .sub-container .item .box.box3 .purple {
  color: #EF6595;
}

@media screen and (max-width: 540px) {
  .voice-bg .sub-container .item .box {
    border-radius: 10px;
    padding: 25px 15px;
  }
  .voice-bg .sub-container .item .box .introduction img {
    max-width: 70px;
  }
  .voice-bg .sub-container .item .box .introduction .name {
    font-size: 16px;
    line-height: 1.1em;
  }
  .voice-bg .sub-container .item .box .introduction .age {
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) and (max-width: 320px) {
  .voice-bg .sub-container .item .box .introduction .age {
    font-size: 12px;
  }
}

@media screen and (max-width: 540px) {
  .voice-bg .sub-container .item .box .introduction .history {
    font-size: 12px;
    padding: 5px 10px;
  }
  .voice-bg .sub-container .item .box .line {
    height: 1px;
  }
  .voice-bg .sub-container .item .box .contents {
    padding: 20px 0 0;
  }
  .voice-bg .sub-container .item .box .contents p {
    font-size: 16px;
  }
  .voice-bg .sub-container .item .box .contents .reward {
    padding: 20px 0 15px;
  }
  .voice-bg .sub-container .item .box .contents .reward p {
    font-size: 12px;
  }
}

@media screen and (max-width: 540px) and (max-width: 320px) {
  .voice-bg .sub-container .item .box .contents .reward p {
    font-size: 11px;
  }
}

@media screen and (max-width: 540px) {
  .voice-bg .sub-container .item .box .contents .reward .amount {
    font-size: 18px;
  }
  .voice-bg .sub-container .item .box .contents .thoughts {
    font-size: 14px;
  }
}

.QA {
  background-color: white;
  color: #616065;
}

.QA img {
  display: block;
  max-width: 210px;
  margin: auto auto 10px;
}

@media screen and (max-width: 540px) {
  .QA img {
    max-width: 145px;
  }
}

.QA .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.QA .item .QA-box {
  border: 1px solid #616065;
  border-radius: 10px;
  padding: 10px 10px 0;
}

@media screen and (max-width: 540px) {
  .QA .item .QA-box {
    padding: 5px 5px 0;
  }
}

.QA .item .QA-box .q {
  background-color: #DBAAE1;
  border-radius: 5px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 540px) {
  .QA .item .QA-box .q {
    padding: 12px;
  }
}

.QA .item .QA-box .q img {
  width: 20px;
  height: 22px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 540px) {
  .QA .item .QA-box .q img {
    width: 15px;
    height: 18px;
  }
}

.QA .item .QA-box .q p {
  color: white;
  font-weight: bold;
}

@media screen and (max-width: 328px) {
  .QA .item .QA-box .q p {
    font-size: 16px;
  }
}

.QA .item .QA-box .a {
  padding: 15px;
}

@media screen and (max-width: 540px) {
  .QA .item .QA-box .a {
    padding: 15px 10px;
  }
}

.QA .item .QA-box .a p {
  font-size: 16px;
}

@media screen and (max-width: 328px) {
  .QA .item .QA-box .a p {
    font-size: 14px;
  }
}

.QA .item .QA-box .a .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin: 20px 0;
  font-size: 16px;
}

@media screen and (max-width: 328px) {
  .QA .item .QA-box .a .steps {
    font-size: 14px;
  }
}

.QA .item .QA-box .a .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
}

.QA .item .QA-box .a .steps .step .num {
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.QA .item .QA-box .a .steps .step .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
}

.reservation-bg {
  background-image: url(../img/image.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.reservation-bg .container img {
  display: block;
  max-width: 460px;
  margin: auto auto 40px;
}

@media screen and (max-width: 540px) {
  .reservation-bg .container img {
    max-width: 265px;
    margin: auto auto 30px;
  }
}

.reservation-bg .container .form-area {
  margin-top: 50px;
  background-color: white;
}

@media screen and (max-width: 540px) {
  .reservation-bg .container .form-area {
    padding: 10px;
  }
}

.reservation-bg .container .form-area iframe {
  width: 100%;
  height: 1450px;
  border: none;
}

@media screen and (max-width: 540px) {
  .reservation-bg .container .form-area iframe {
    height: 1500px;
  }
}

@media screen and (max-width: 320px) {
  .reservation-bg .container .form-area iframe {
    height: 1520px;
  }
}

@media screen and (max-width: 328px) {
  .reservation-bg .container p {
    font-size: 16px;
  }
}

footer {
  text-align: center;
  color: #5C2E34;
  padding: 20px;
  background-color: #F8DEEE;
}

footer a {
  color: inherit;
  text-decoration: none;
  padding: 0 5px;
  font-size: 14px;
}

footer a.middle {
  border-left: solid 1px #5C2E34;
  border-right: solid 1px #5C2E34;
}

@media screen and (max-width: 540px) {
  footer a {
    font-size: 12px;
  }
}

footer p {
  font-size: 14px;
}

@media screen and (max-width: 540px) {
  footer p {
    font-size: 12px;
  }
}

.privacy-policy {
  background-color: white;
}

.privacy-policy .container .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.privacy-policy .container h2 {
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .privacy-policy .container h2 {
    margin-bottom: 40px;
  }
}

.privacy-policy .container h3 {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-style: normal;
  font-size: 25px;
  text-align: left;
  margin: 50px 0 20px;
  color: #D59ADC;
  padding-bottom: 15px;
  border-bottom: solid 2px #D59ADC;
}

@media screen and (max-width: 540px) {
  .privacy-policy .container h3 {
    font-size: 20px;
    padding-bottom: 5px;
    margin: 30px 0 15px;
  }
}
/*# sourceMappingURL=style.css.map */