@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;400;600;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

html,
body {
  width: 100%;
}

.v-leave-active,
.v-enter-active {
  transition: 0.5s;
}

.v-enter,
.v-leave-to {
  opacity: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html,
body {
  overflow-x: hidden;
}

.only-mobile {
  display: block;
}

/*------------------
xform
------------------*/
.fixed-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
  transform: translateX(100%);
  transition: 0.3s transform;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.fixed-form.active {
  transform: translateX(0);
}

.fixed-form.active .form-slide {
  display: block;
}

.fixed-form .form-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #f4f4f4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: scroll;
}

.fixed-form .form-wrapper .simulation-btn {
  display: none;
}

.fixed-form .form-close {
  display: none;
  z-index: 100;
  position: fixed;
  top: 50px;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
}

.fixed-form .form-slide {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.fixed-form .form-slide img {
  width: 100%;
}

.fixed-form .form-slide:hover {
  background-color: #ffd341;
}

.hs-form fieldset:first-child {
  margin-top: 0 !important;
}

.hs-form fieldset:nth-child(7) {
  margin-bottom: 0 !important;
}

.hs-form-field > label,
.hs-error-msgs {
  display: none;
}

.hs-richtext h2 {
  text-align: center;
  opacity: 1;
  transform: translate(0px, 0px);
  margin: 10px auto;
  padding-top: 30px;
}

fieldset .input {
  margin-right: 0px !important;
}

fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}

fieldset textarea {
  resize: none;
  width: 100%;
  height: 150px;
}

fieldset select {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  padding: 0 5px;
  color: #aaa;
  font-size: 16px;
}

.hs_submit {
  margin: 0 auto 30px auto;
  max-width: 500px;
}

.hs-richtext p {
  font-size: 12px;
  color: grey;
}

.actions input[type="submit"] {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border: none;
  background-color: #f52b57;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.actions input[type="submit"]:hover {
  opacity: 0.7;
}

.close {
  display: none;
}

fieldset {
  position: relative;
  width: 100%;
  margin: 20px auto !important;
}

.hs-input {
  outline: none;
  width: 100%;
  font-size: 16px;
  transition: 0.3s;
}

fieldset input {
  position: relative;
}

fieldset input::placeholder {
  transition: 0.3s;
  position: absolute;
  color: #aaa;
}

fieldset.form-columns-2 {
  display: flex;
  margin: 20px auto !important;
}

fieldset.form-columns-2 .hs-form-field {
  margin-bottom: 0;
  width: 50% !important;
}

fieldset.form-columns-2 .hs-form-field:first-child {
  margin-right: 10px;
}

.hs-input {
  padding: 8px;
  border: 1px solid #f4f4f4;
  outline: none;
  border-radius: 5px;
}

.hs-input ~ label {
  top: 7px;
  left: 8px;
}

.hs-input:focus {
  border: 1px solid #ffd341;
  box-shadow: 0 0 5px 0 #ffd341;
}

.hs-input:focus ~ label {
  top: -17px;
  left: 0;
  font-size: 11px;
  color: #ffd341;
}

.hs-input.isVal ~ label {
  top: -17px;
  left: 0;
  font-size: 11px;
  color: #ffd341;
}

ul.hs-error-msgs li {
  list-style: none;
  font-size: 12px;
  position: absolute;
  color: #f52b57;
  background: transparent !important;
}

ul.hs-error-msgs li:before {
  content: "※";
}

ul.hs-error-msgs:nth-child(1) li {
  background-color: red;
}

.hbspt-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs_firstname ul.hs-error-msgs li {
  opacity: 0;
}

/*------------------
xheader
------------------*/
header .space {
  flex-grow: 1;
}

header {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0;
  height: 50px;
}

header h1 {
  width: 150px;
  transition: 0.3s;
}
header h1 img {
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  transition: 0.3s;
  transform: scale(0.8) translateY(3px);
  margin-top: 5px;
}
@media (max-width: 500px) {
  header h1 {
    width: 130px;
  }
  header h1 img {
    transform: scale(0.9) translateY(3px);
  }
}

header .simulation-btn {
  font-size: 16px;
  padding: 5px 20px;
  background-color: #ffd341;
  font-weight: bold;
  cursor: pointer;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  text-decoration: none;
  margin: 5px;
  border-radius: 20px;
  color: #2b2b2b;
}
@media (max-width: 550px) {
  header .simulation-btn {
    font-size: 11px;
    padding: 5px 10px;
    width: 100px;
  }
  header .simulation-btn br {
    display: none;
  }
}

header a.cta {
  display: flex;
  display: none;
}

header div.cta {
  font-size: 16px;
  padding: 5px 15px;
  background-color: #ffd341;
  font-weight: bold;
  cursor: pointer;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 550px) {
  header div.cta {
    font-size: 11px;
    padding: 5px 5px;
  }
}

header div.menu {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #f52b57;
}

header div.menu span {
  width: 25px;
  height: 3px;
  display: block;
  background-color: white;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header div.menu span:first-child {
  transform: translate(-50%, calc(-50% - 9px));
}

header div.menu span:last-child {
  transform: translate(-50%, calc(-50% + 9px));
}

header div.menu.active span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

header div.menu.active span:nth-child(2) {
  display: none;
}

header div.menu.active span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

header nav {
  display: none;
}

header nav ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-top: 30px;
}

header nav ul li {
  font-size: 12px;
  min-width: 20px;
  margin: 10px;
}

header nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

header nav img.only-mobile {
  margin: 20px auto;
  width: 200px;
}

header nav.active {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}

header nav.active ul li a {
  color: white;
}

/*------------------
xfirstview
------------------*/
.first-view {
  width: 100%;
  height: calc(var(--vh) * 100);
}

.first-view video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-view .gradient,
.first-view .mask,
.first-view .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.first-view .gradient {
  background: linear-gradient(45deg, rgba(255, 0, 132, 0.5) 0%, rgba(255, 98, 0, 0.5) 48.81%, rgba(255, 203, 34, 0.5) 100%);
  mix-blend-mode: hue;
}

.first-view .mask {
  background-color: rgba(0, 0, 0, 0.5);
}

.first-view .content {
  display: flex;
  flex-direction: column-reverse;
  padding: 20px;
  padding-bottom: 30px;
  justify-content: flex-start;
  align-items: center;
  overflow: scroll;
  padding-top: 80px;
}

.cta-wrapper {
  color: white;
  text-align: center;
}

.cta-wrapper h2 {
  font-weight: 400;
  font-size: 6vw;
}

.cta-wrapper h2 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12vw;
  margin-right: 5px;
  letter-spacing: 0.05em;
}

.cta-wrapper h2 span:last-child {
  margin-left: 20px;
}

.cta-wrapper h2:not(:first-child) {
  font-size: 5vw;
  margin-bottom: 20px;
}

.cta-wrapper .cta-pdf {
  box-shadow: 10px 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  margin-top: 30px;
  width: 240px;
}

a.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2b2b2b;
  background-color: #ffd341;
  padding: 20px 15px;
  font-size: 18px;
}

a.cta-btn p {
  font-size: 18px;
  text-align: center;
}

a.cta-btn p span {
  font-weight: 600;
}
a.cta-btn p img {
  margin-left: 10px;
  vertical-align: middle;
  width: 26px;
}

.chat-wrapper {
  display: flex;
  flex-direction: column;
  width: 350px;
}

.chat-wrapper .chat {
  display: flex;
  align-items: flex-end;
  margin: 5px 0;
}

.chat-wrapper .chat .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
}

.chat-wrapper .chat .message {
  background-color: white;
  padding: 15px 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  font-size: 12px;
  max-width: 300px;
}

.chat-wrapper .chat .message .sound {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  display: none;
}

.chat-wrapper .chat.customer {
  flex-direction: row-reverse;
}

.chat-wrapper .chat.customer .message {
  border-radius: 50px 50px 0 50px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: 60px;
}

.chat-wrapper .chat.ai .message {
  border-radius: 50px 50px 50px 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  margin-right: 60px;
}


section {
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
}

br.mb {
  display: block;
}


/*------------------
  media
------------------*/
section.media {
  padding-top: 30px;
}

section.media h2 {
  margin-bottom: 30px;
}
section.media h2 p {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  padding: 0 8px;
  position: relative;
}
section.media h2 p:before, 
section.media h2 p:after {
  background: #666;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  bottom: -3px;
  width: 2px;
}
section.media h2 p:before {
  left: -20px;
  transform: rotate(-25deg);
}
section.media h2 p:after {
  right: -20px;
  transform: rotate(25deg);
}

section.media .content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  align-items: center;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
section.media .content-wrapper ul {
  animation :infinity-scroll-left 30s infinite linear 0.5s both;
  display: flex;
  list-style: none;
}
section.media .content-wrapper:hover ul {
  animation-play-state: paused;
}
section.media .content-wrapper ul li {
  width: calc(100vw / 3);
}
section.media .content-wrapper ul li img{
   width: 85%;
}
section.media .content-wrapper img:hover {
  opacity: 0.7;
}


/*------------------
  problems
------------------*/
section.problems {
  background-color: #efefef;
  height: auto;
  padding-left: 30px;
  padding-right: 30px;
}

section.problems h2 {
  display: inline-block;
  background-color: #ffd341;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 10px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

section.problems h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #ffd341;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}

section.problems h2 p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.problems h3 {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 30px;
}

section.problems .box-wrapper {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.problems-box {
  width: 100%;
  position: relative;
}
.problems-box img {
  max-width: 80%;
  width: 100%;
}
.problems-box p {
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 30px;
}


/*------------------
  service
------------------*/
section.service {
  background-color: #ffd341;
  padding-left: 15px;
  padding-right: 15px;
}

section.service h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

section.service h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #f52b57;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}

section.service h2 p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.service .service-wrapper {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  margin: 0 auto 20px;
  padding: 20px 10px;
}

section.service .service-wrapper h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0px;
}
section.service .service-wrapper h3 > span {
  font-size: 21px;
}
section.service .service-wrapper h3 > span strong {
  font-weight: 600;
}
section.service .service-wrapper h3 > span strong span {
  background: linear-gradient(transparent 70%, #ffd341 30%);
  color: #f52b57;
}

section.service .flowchat.pc {
  display: none;
}

section.service .flowchat.mb img.flow {
  width: 100%;
  margin-top: 30px;
}


/*------------------
  solution
------------------*/
section.solution {
  background-color: #fff2cc;
  height: auto;
  padding-left: 30px;
  padding-right: 30px;
}

section.solution h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 10px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

section.solution h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #f52b57;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}

section.solution h2 p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.solution h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 30px;
}

section.solution .box-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.solution-box {
  width: 100%;
  position: relative;
}
.solution-box img {
  max-width: 80%;
  width: 100%;
}
.solution-box p {
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 30px;
}

section.solution .arrow_text {
  color: #f52b57;
  display: inline-block;
  font-size: 21px;
  font-weight: 600;
  margin: 50px auto 50px;
  position: relative;
}
section.solution .arrow_text span {
  background: linear-gradient(transparent 70%, #ffd341 30%);
}
section.solution .arrow_text:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -20px;
  border-style: solid;
  border-color: #f52b57 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}


/*------------------
  point
------------------*/
section.point {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
}

section.point h2 {
  display: inline-block;
  background-color: #ffd341;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 10px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

section.point h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #ffd341;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}

section.point h2 p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.point h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 30px;
}
section.point h3 span {
  color: #f52b57;
}

section.point img {
  margin-bottom: 10px;
  max-width: 592px;
  width: 100%;
}
section.point p.point_text {
  font-size: 18px;
  margin: 30px auto;
}


/*------------------
  simulation
------------------*/
section.simulation {
  background: #fff2cc;
  padding-left: 20px;
  padding-right: 20px;
  scroll-margin-top: 100px;
}
section.simulation h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 10px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
section.simulation h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #f52b57;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}
section.simulation h2 span {
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  transform: skewX(20deg);
  font-weight: 600;
  line-height: 1;
}
section.simulation h2 p {
  color: #fff;
  font-size: 24px;
  transform: skewX(20deg);
  font-weight: 600;
}
section.simulation h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
section.simulation h3 + p {
  font-size: 18px;
  margin: 0 auto 35px;
}
section.simulation .simulation-wrapper {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 10px;
  text-align: center;
}
section.simulation .form-group {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  display: flex;
  height: 50px;
  margin: 0 auto 20px;
  position: relative;
  width: 380px;
}
@media (max-width: 414px) {
  section.simulation .form-group {
    width: 100%;
  }
  
}
section.simulation .form-group label {
  color: #313144;
  font-size: 16px;
  margin-left: 26px;
}
section.simulation .form-group input {
  border: 0;
  color: #313144;
  font-size: 18px;
  position: absolute;
  right: 95px;
  text-align: right;
  width: 100px;
}
section.simulation .form-group input:focus {
  outline: none;
}
section.simulation .form-group input[type=number]::-webkit-inner-spin-button, 
section.simulation .form-group input[type=number]::-webkit-outer-spin-button {
  opacity: 0;
}
section.simulation .form-group-number .btn-minus, 
section.simulation .form-group-number .btn-plus {
  height: 25px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}
section.simulation .form-group-number .btn-minus:before, 
section.simulation .form-group-number .btn-plus:before {
  content: "";
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 0;
}
section.simulation .form-group-number .btn-plus:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000;
  border-left: 5px solid transparent;
  top: 15px;
}
section.simulation .form-group-number .btn-minus {
  top: 25px;
}
section.simulation .form-group-number .btn-minus:before {
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  top: 5px;
}
section.simulation .form-group span.unit {
  color: #313144;
  font-size: 12px;
  position: absolute;
  right: 50px;
  text-align: left;
  top: 18px;
  width: 3em;
}
section.simulation .form-group.opened {
  border-radius: 12px 12px 0 0 !important;
}

section.simulation .simulation-select-wrapper {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  user-select: none;
  width: 380px;
}
@media (max-width: 414px) {
  section.simulation .simulation-select-wrapper {
    width: 100%;
  }
}
section.simulation .simulation-select-wrapper select {
  display: none;
}
section.simulation .simulation-select {
  display: block;
  position: relative;
}
section.simulation .simulation-select-trigger {
  color: #313144;
  cursor: pointer;
  position: relative;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  padding-right: 58px;
  font-size: 12px;
  line-height: 50px;
  text-align: right;
}
section.simulation .simulation-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  margin-top: -3px;
  border-bottom: 2px solid #313144;
  border-right: 2px solid #313144;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
}
section.simulation .simulation-select.opened .simulation-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
section.simulation .simulation-options {
  background: #fff;
  border-top: 2px solid #FFF2CC;
  box-sizing: border-box;
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  width: 380px;
  margin: 0;  
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
@media (max-width: 414px) {
  section.simulation .simulation-options {
    width: 100%;
  }
}
section.simulation .simulation-select.opened .simulation-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
section.simulation .simulation-option {
  cursor: pointer;
  align-items: center;
  display: flex;
  font-size: 18px;
  justify-content: center;
  height: 50px;
  padding: 0 15px;
  position: relative;
  transition: all .4s ease-in-out;
}
section.simulation .simulation-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 12px 12px;
}
section.simulation .simulation-option:hover,
section.simulation .simulation-option.selection {
  background: rgba(217, 217, 217, 0.2);
}
section.simulation .simulation-options span:nth-child(even) {
  background: rgba(217, 217, 217, 0.2);
}

section.simulation .simulation-btn {
  background: #FFD440;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3%;
  height: 50px;
  margin-top: 26px;
  width: 460px;
}
@media (max-width: 500px) {
  section.simulation .simulation-btn {
    width: 100%;
  }
}

section.simulation .simulation-result-wrapper {
  background: #fff;
  border-radius: 10px;
  margin: 46px auto 10px;
  padding: 26px 25px 20px;
  text-align: center;
  width: 100%;
  max-width: 920px;
}
@media (max-width: 767px) {
  section.simulation .simulation-result-wrapper {
    max-width: 600px;
  }
}
@media (max-width: 690px) {
  section.simulation .simulation-result-wrapper {
    max-width: 100%;
  }
}
section.simulation .simulation-result-wrapper h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 56px;
}
section.simulation ul.simulation-result-numbers {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  max-width: 570px;
  padding: 0;
  text-align: left;
}
@media (max-width: 767px) {
  section.simulation ul.simulation-result-numbers {
    display: inline-block;
  }
}
section.simulation ul.simulation-result-numbers .rate {
  width: 160px;
}
section.simulation ul.simulation-result-numbers .title {
  font-size: 21px;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  section.simulation ul.simulation-result-numbers .title {
    font-size: 18px;
  }
}
section.simulation ul.simulation-result-numbers .number {
  font-size: 21px;
  line-height: 1;
  margin-bottom: 70px;
  padding: 0 0 0 15px;
}
section.simulation ul.simulation-result-numbers .number span {
  color: #F52B57;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 5px;
}

section.simulation .simulation-result-graph {
  align-items: flex-start;
  border-bottom: 1px solid #FFF2CC;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 46px;
  max-width: 570px;
}
@media (max-width: 570px) {
  section.simulation .simulation-result-graph {
    border-bottom: 0;
    display: block;
    max-width: 100%;
  }
}
section.simulation .simulation-result-graph .graph {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  width: 224px;
}
@media (max-width: 570px) {
  section.simulation .simulation-result-graph .graph {
    border-bottom: 1px solid #FFF2CC;
    margin: 0 auto;
  }
}
.graph .graph1 {
  background: rgba(245, 43, 87, 1);
  display: block;
  height: 181px;
  width: 62px;
}
#graph-line {
  position : absolute;
  left: 82px;
  top: 0px;
}
.graph .graph2 {
  background: rgba(245, 43, 87, 0.5);
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 181px;
  width: 62px;
}
.graph .graph2 .year {
  display: block;
  opacity: 1;
  position: relative;
  width: 62px;
}
.graph .graph2 .year:after {
  background-image: linear-gradient(90deg, rgba(255, 242, 204, 1), rgba(255, 242, 204, 1) 50%, transparent 50%, transparent 100%);
  background-size: 4px 4px;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.graph .graph2 .graph2-year1 {
  height: 20%;
}
.graph .graph2 .graph2-year2 {
  height: 20%;
}
.graph .graph2 .graph2-year3 {
  height: 20%;
}
.graph .graph2 .graph2-year4 {
  background: rgba(245, 43, 87, 1);
  height: 40%;
}
.graph .graph2 .graph2-year4:after {
  display: none;
}
section.simulation .simulation-result-graph ul.graph-number {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 570px) {
  section.simulation .simulation-result-graph ul.graph-number {
    display: inline-block;
    margin: 30px auto 0;
  }
}
section.simulation .simulation-result-graph ul.graph-number li {
  color: #F52B57;
  font-size: 21px;
  font-weight: 500;
  line-height: 160%;
  text-align: left;
}
section.simulation .simulation-result-graph ul.graph-number li span.graph-number-item:after {
  content: "："
}
@media (max-width: 767px) {
  section.simulation .simulation-result-graph ul.graph-number li {
    font-size: 18px;
  }
  section.simulation .simulation-result-graph ul.graph-number li span {
    display: block;
  }
}
section.simulation .simulation-result-note {
  color: #313144;
  display: inline-block;
  font-size: 12px;
  line-height: 19px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}
section.simulation .simulation-download-btn {
  background: #fff;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
  height: 50px;
  margin-top: 78px;
  width: 330px;
}

section.simulation .simulation-caution {
  margin-top: 78px;
  text-align: center;
}
section.simulation .simulation-caution p {
  color: #313144;
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  margin: 0 auto;
  padding-left: 35px;
  position: relative;
  text-align: left;
}
section.simulation .simulation-caution p svg {
  left: 0;
  position: absolute;
  top: 3px;
}


/*------------------
  information
------------------*/
section.information {
  background: #fff url("../images/materials/info_oval.svg") no-repeat center top 100px;
  margin-bottom: 100px;
  padding-bottom: 20px;
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

section.information h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 10px 10px;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

section.information h2:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #f52b57;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skewX(20deg) translate(0, -50%) rotate(45deg) skew(20deg, 20deg);
  border-radius: 0 0 10px 0;
}

section.information h2 span {
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transform: skewX(20deg);
  font-weight: 600;
  line-height: 1;
}
section.information h2 p {
  color: #fff;
  font-size: 24px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.information h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 50px;
}

section.information .info-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
}

section.information img.info-img {
  box-shadow: 10px 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  max-width: 350px;
  width: 100%;
}
section.information dl {
  border: 2px dotted #ccc;
  border-radius: 10px;
  font-size: 18px;
  padding: 15px;
  text-align: left;
  margin-bottom: 30px;
  max-width: 450px;
  width: 100%;
}
section.information dl dt {
  font-weight: 600;
  margin-bottom: 20px;
}
section.information dl ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.information dl ul li {
  font-size: 16px;
  margin-top: 5px;
}
section.information dl ul li:before {
  content: "・";
  font-weight: 600;
  margin-right: 5px;
}
section.information .cta-btn {
  display: inline-block;
  padding: 20px 5px;
  width: 315px;
}

ul.donwload_list {
  list-style: none;
  margin: 80px auto 0;
  padding: 0;
  width: 100%;
}
ul.donwload_list > li {
  border: 2px dotted #ccc;
  border-radius: 10px;
  font-size: 21px;
  margin-bottom: 30px;
  padding: 30px;
  text-align: left;
  width: 100%;
}
ul.donwload_list > li h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
ul.donwload_list > li img.info-img {
  box-shadow: 3px 3px 12px rgba(0,0,0,0.15);
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
}
ul.donwload_list > li ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.donwload_list > li ul li {
  font-size: 16px;
  margin-top: 5px;
}
ul.donwload_list > li ul li:before {
  content: "・";
  font-weight: 600;
  margin-right: 5px;
}
ul.donwload_list > li .cta-btn {
  display: block;
  margin-top: 20px;
  width: 100%;
}


/*------------------
  service
------------------*/
#service {
  background: #fff;
  padding: 70px 0 0;
	text-align:center;
}
#service h3 {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#service ul {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
#service ul li {
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  
  #service h3 {
    font-size: 18px;
  }
  #service ul li {
    padding: 5px 15px;
  }
  #service ul li img {
    height: 30px;
    width: auto;
  }
  
}


/*------------------
lp-footer COMPANY
------------------*/
footer {
  background-color: #ffd341;
  width: 100%;
  padding-top: 50px;
}

footer h2 {
  font-size: 36px;
  text-align: center;
  position: relative;
}

footer h2:before {
  content: "";
  width: 30px;
  height: 5px;
  border-radius: 30px;
  background-color: #fff2b0;
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
}

footer .content-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

footer .content-wrapper .title-wrapper {
  width: 100%;
  font-weight: 600;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  margin-bottom: 20px;
}

footer .content-wrapper .title-wrapper .title {
  text-align: left;
}

footer .content-wrapper .text-wrapper {
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  display: grid;
  grid-template-columns: 33% 33% 33%;
}

footer .content-wrapper .text-wrapper .text {
  text-align: left;
}

footer .content-wrapper .text-wrapper .text p:first-child {
  margin-bottom: 10px;
}

footer .content-wrapper .text-wrapper .text a {
  text-decoration: none;
  color: black;
}

footer .content-wrapper-white {
  background-color: #fff;
  border-bottom: 10px solid #ffd341;
}

footer .content-wrapper-white .max-width-800 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

footer .content-wrapper-white .max-width-800 .isms {
  width: calc(100% - 40px);
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  text-align: center;
}

footer .content-wrapper-white .max-width-800 .isms a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer .content-wrapper-white .max-width-800 .isms .isms-img-wrapper img {
  width: 100%;
  max-width: 280px;
}

footer .content-wrapper-white .max-width-800 .isms .isms-img-wrapper p {
  font-size: 14px;
  text-align: center;
  color: #000;
}

footer .content-wrapper-white .max-width-800 .isms p.isms-text {
  font-size: 10px;
  color: #808080;
}

footer .content-wrapper-white .max-width-800 .alt-logo {
  width: calc(100% - 40px);
  text-align: center;
  margin-top: 3rem;
}

footer .content-wrapper-white .max-width-800 .alt-logo img {
  width: 70px;
  margin-bottom: 20px;
}

footer .content-wrapper-white .max-width-800 .alt-logo p {
  font-size: 10px;
  color: #808080;
}

/*------------------
page-price
------------------*/
body.price,
body.features {
  background-color: #f4f4f4;
}

body.price .main-wrapper,
body.features .main-wrapper {
  width: 100%;
  padding-bottom: 200px;
  background-size: cover;
}

.price-header,
.feature-header {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 0 5px black;
  height: 300px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='300' preserveAspectRatio='none' viewBox='0 0 1440 300'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1451%26quot%3b)' fill='none'%3e%3crect width='1440' height='300' x='0' y='0' fill='url(%23SvgjsLinearGradient1452)'%3e%3c/rect%3e%3cpath d='M -814.8407348627726%2c248 C -670.84%2c205 -382.84%2c43.2 -94.8407348627726%2c33 C 193.16%2c22.8 337.16%2c189.4 625.1592651372274%2c197 C 913.16%2c204.6 1182.19%2c75.6 1345.1592651372273%2c71 C 1508.13%2c66.4 1421.03%2c153.4 1440%2c174' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -708.8901525594466%2c154 C -564.89%2c151.8 -276.89%2c124.2 11.109847440553366%2c143 C 299.11%2c161.8 443.11%2c255.4 731.1098474405534%2c248 C 1019.11%2c240.6 1309.33%2c98.4 1451.1098474405533%2c106 C 1592.89%2c113.6 1442.22%2c250 1440%2c286' stroke='rgba(251%2c 140%2c 0%2c 0.53)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -1053.8886451608316%2c239 C -909.89%2c201.8 -621.89%2c47.4 -333.88864516083163%2c53 C -45.89%2c58.6 98.11%2c254.4 386.11135483916837%2c267 C 674.11%2c279.6 895.33%2c124.4 1106.1113548391684%2c116 C 1316.89%2c107.6 1373.22%2c203.2 1440%2c225' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -312.1238937525682%2c56 C -168.12%2c97 119.88%2c268.4 407.8761062474318%2c261 C 695.88%2c253.6 839.88%2c16.6 1127.8761062474318%2c19 C 1415.88%2c21.4 1785.45%2c254.8 1847.8761062474318%2c273 C 1910.3%2c291.2 1521.58%2c142.6 1440%2c110' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -102.54254352238434%2c219 C 41.46%2c190.4 329.46%2c77.2 617.4574564776157%2c76 C 905.46%2c74.8 1049.46%2c201.4 1337.4574564776158%2c213 C 1625.46%2c224.6 2036.95%2c125.4 2057.457456477616%2c134 C 2077.97%2c142.6 1563.49%2c231.6 1440%2c256' stroke='rgba(251%2c 140%2c 0%2c 0.53)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -103.9326385418583%2c16 C 40.07%2c67.6 328.07%2c254 616.0673614581417%2c274 C 904.07%2c294 1048.07%2c137 1336.0673614581417%2c116 C 1624.07%2c95 2035.28%2c176.4 2056.067361458142%2c169 C 2076.85%2c161.6 1563.21%2c97 1440%2c79' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -1267.9660501397846%2c92 C -1123.97%2c125.2 -835.97%2c263.4 -547.9660501397846%2c258 C -259.97%2c252.6 -115.97%2c71.2 172.03394986021544%2c65 C 460.03%2c58.8 638.44%2c234.6 892.0339498602154%2c227 C 1145.63%2c219.4 1330.41%2c67 1440%2c27' stroke='rgba(251%2c 140%2c 0%2c 0.53)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -948.8004663747456%2c293 C -804.8%2c255.2 -516.8%2c105.2 -228.80046637474567%2c104 C 59.2%2c102.8 203.2%2c293.6 491.19953362525433%2c287 C 779.2%2c280.4 1021.44%2c89 1211.1995336252544%2c71 C 1400.96%2c53 1394.24%2c171.8 1440%2c197' stroke='rgba(251%2c 140%2c 0%2c 0.53)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -1225.2835412099835%2c4 C -1081.28%2c42.4 -793.28%2c170.6 -505.28354120998335%2c196 C -217.28%2c221.4 -73.28%2c124.4 214.71645879001665%2c131 C 502.72%2c137.6 689.66%2c254.4 934.7164587900166%2c229 C 1179.77%2c203.6 1338.94%2c49 1440%2c4' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -763.547319267649%2c290 C -619.55%2c248.4 -331.55%2c106.4 -43.54731926764895%2c82 C 244.45%2c57.6 388.45%2c164.4 676.452680732351%2c168 C 964.45%2c171.6 1243.74%2c93.8 1396.4526807323512%2c100 C 1549.16%2c106.2 1431.29%2c179.2 1440%2c199' stroke='rgba(245%2c 43%2c 87%2c 0.51)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1451'%3e%3crect width='1440' height='300' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='19.79%25' y1='-95%25' x2='80.21%25' y2='195%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1452'%3e%3cstop stop-color='rgba(255%2c 242%2c 176%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 103%2c 136%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-position: center;
  background-size: cover;
}

.price-header h1,
.feature-header h1 {
  margin: 0 auto;
  font-weight: normal;
  font-size: 20px;
}

.price-body {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
}

.price-body .box {
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: calc(100% - 40px);
}

.price-body .box h2 {
  background-color: white;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: normal;
}

.price-body .box .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.price-body .box .right p.price {
  font-size: 24px;
  font-weight: bold;
}

.price-body .box .right .detailed {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-body .box .right .detailed.border {
  border-top: 1px solid lightgrey;
  padding-top: 20px;
  margin-top: 20px;
}

.price-body .box .right .detailed h3 {
  font-weight: normal;
}

.price-body .box .right .detailed dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-top: 10px;
}

.price-body .box .right .detailed dl dd {
  width: 40%;
  text-align: right;
}

.price-body .box .right .detailed dl dt {
  width: 60%;
}

.price-footer {
  text-align: center;
  padding-top: 30px;
}

.price-footer div.cta {
  text-decoration: none;
  color: white;
  background-color: #f52b57;
  padding: 20px 90px;
  display: inline-block;
  width: calc(100% - 40px);
  margin: 0 auto;
  font-size: 24px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
}

.price-footer div.cta:hover {
  border-radius: 50px;
  opacity: 0.7;
}

/*------------------
page-features
------------------*/
.feature-body {
  margin: 0 auto;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 20px;
}

.feature-body dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  margin: 30px 10px;
  border: 1px solid lightgrey;
  border-bottom: none;
  color: #414141;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.feature-body dl dt {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  padding: 10px 0;
}

.feature-body dl dd {
  width: 50%;
  padding: 10px 0;
  border-bottom: 1px solid lightgrey;
  text-align: center;
  font-weight: 600;
}

.feature-body p.note {
  font-size: 12px;
  color: grey;
  margin: 0 50px;
}

/*------------------
safariのみの設定
------------------*/
_::-webkit-full-page-media,
_:future,
:root .gradient {
  display: none !important;
}
/*# sourceMappingURL=lp-mobile.original.css.map */