@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;
}

body {
  min-width: 1200px;
}

.fixed-form {
  width: 300px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  z-index: 20;
  overflow: scroll;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  background: #f4f4f4;
}

.fixed-form.active {
  width: 400px;
}

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

.fixed-form .form-wrapper {
  width: 100%;
  min-height: 100%;
  background-color: #f4f4f4;
  padding: 20px;
}

.fixed-form .form-wrapper .simulation-btn {
  align-items: center;
  background: #FFD440;
  border-radius: 23px;
  color: #000;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 4%;
  height: 46px;
  margin-top: 25px;
  text-decoration: none;
  width: 100%;
}

.fixed-form .form-close {
  display: none;
}

.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-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;
}

.form-columns-2 {
  display: flex;
  width: 260px;
}

.form-columns-2 div {
  margin-bottom: 0;
}

.form-columns-2 div:first-child {
  margin-right: 10px;
}

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-bottom: 30px;
}

.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::placeholder {
  transition: 0.3s;
  position: absolute;
  color: #aaa;
}

.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;
}

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

/*------------------
xheader
------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 300px;
  display: flex;
  padding: 45px 55px;
  z-index: 10;
  transition: 0.3s;
}

header h1 {
  width: 180px;
}

header h1 img {
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}

header h1:hover {
  opacity: 0.7;
}

header ul {
  list-style: none;
  display: flex;
}

header ul li {
  margin: 10px;
  color: white;
  font-weight: 400;
  min-width: 50px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

header ul li:before {
  content: "";
  height: 1px;
  width: 0px;
  background-color: white;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

header ul li:hover:before {
  width: 100%;
}

header ul li a {
  color: white;
  text-decoration: none;
  margin: 0 auto;
  text-shadow: 0 0 5px black;
}

header .simulation-btn, 
header .cta {
  display: none;
  opacity: 0;
}

header .space {
  flex-grow: 1;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 300px;
  padding: 0;
  padding-left: 55px;
  align-items: center;
}

header.scrolled a h1 img {
  transform: scale(0.7);
  margin-top: 5px;
}

header.scrolled ul {
  margin-right: 20px;
}

header.scrolled ul li {
  font-size: 12px;
  min-width: 20px;
}

header.scrolled .cta {
  display: none;
}

/*------------------
xfirstview
------------------*/
.first-view {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: calc(100% - 300px);
  height: calc(100vh + 30px);
}

.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);
}

.content {
  display: flex;
  padding: 55px;
  padding-top: 150px;
  justify-content: space-between;
  align-items: center;
}

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

.cta-wrapper h2 {
  font-weight: 400;
  text-align: left;
}

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

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

.cta-wrapper h2:not(:first-child) {
  font-size: 48px;
  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: 300px;
}

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

a.cta-btn p {
  font-size: 24px;
  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;
}

.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: calc(100% - 300px);
  padding-bottom: 50px;
  text-align: center;
}

br.mb {
  display: none;
}


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

section.media h2 {
  margin-bottom: 50px;
}
section.media h2 p {
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  padding: 0 8px;
  position: relative;
}
section.media h2 p:before, 
section.media h2 p:after {
  background: #000;
  content: "";
  display: block;
  height: 120%;
  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 / 7);
}
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;
}

section.problems h2 {
  display: inline-block;
  background-color: #ffd341;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 20px 20px;
  min-width: 360px;
  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: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}

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

section.problems .box-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.problems-box {
  width: 30%;
  position: relative;
}
.problems-box img {
  max-width: 100%;
  width: 100%;
}
.problems-box p {
  font-size: 21px;
  font-weight: normal;
  margin-top: 20px;
}


/*------------------
  service
------------------*/
section.service {
  background-color: #ffd341;
}

section.service h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 20px 50px;
  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: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}

section.service .service-wrapper {
  background: #fff;
  border-radius: 30px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding-top: 40px;
}

section.service .service-wrapper h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0px;
}
section.service .service-wrapper h3 > span {
  font-size: 36px;
}
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 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 15px;
}

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

section.service .flowchat .flow-left img,
section.service .flowchat .flow-right img {
  width: 100%;
}

section.service .flowchat .flow-left {
  transform: scale(-0.8, 0.8);
  border-radius: 50%;
  width: 120px;
  overflow: hidden;
  margin-right: 30px;
}

section.service .flowchat .flow-right {
  width: 240px;
  margin: -20px;
  transform: translate(-10%, 10%);
}

section.service .flowchat .flow-body {
  position: relative;
  flex-grow: 1;
  margin: 0 30px;
  padding: 20px;
  background-color: white;
  border: 1px solid #f52b57;
  border-radius: 30px;
  padding: 50px 20px;
  display: grid;
  height: 300px;
  grid-template-columns: 10% 3% 20% 22% 5% 25% 5% 10%;
  grid-template-areas: "a1 a2 a3 a4 a5 a6 a7 a8";
  box-shadow: 0 0 0 10px rgba(245, 43, 87, 0.3);
}

section.service .flowchat .flow-body .title {
  width: 240px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 10px 30px 5px 30px;
}

section.service .flowchat .flow-body .title img {
  width: 100%;
}

section.service .flowchat .flow-body .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

section.service .flowchat .flow-body .box {
  background-color: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 3px solid white;
  font-size: 14px;
  padding: 5px 10px;
  min-height: 50px;
  background-color: #ffd341;
  position: relative;
  background-color: white;
  border-color: #ffd341;
  border-color: #f52b57;
}

section.service .flowchat .flow-body .box ol {
  padding-left: 20px;
  font-size: 12px;
}

section.service .flowchat .flow-body .line {
  width: 100%;
  height: 28px;
  position: relative;
}

section.service .flowchat .flow-body .line.half {
  width: 55%;
  margin: 0 0 0 auto;
  border-left: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.border-btm {
  border-top: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.border-btm.half {
  border-radius: 20px 0 0 0;
}

section.service .flowchat .flow-body .line.border-top {
  border-bottom: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.border-top.half {
  border-radius: 0 0 0 20px;
}

section.service .flowchat .flow-body .line.right {
  position: relative;
}

section.service .flowchat .flow-body .line.right:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-15%, -60%) rotate(45deg);
  border-top: 5px solid #f52b57;
  border-right: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.left {
  position: relative;
}

section.service .flowchat .flow-body .line.left:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15%, 75%) rotate(45deg);
  border-bottom: 5px solid #f52b57;
  border-left: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.up {
  position: relative;
}

section.service .flowchat .flow-body .line.up:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-59%, 0) rotate(45deg);
  border-top: 5px solid #f52b57;
  border-left: 5px solid #f52b57;
}

section.service .flowchat .flow-body .line.a8-right {
  position: absolute;
  left: 100%;
  top: 40%;
  width: 70%;
  border-right: 5px solid #f52b57;
  border-radius: 0 20px 0 0;
  border-color: #ffd341;
}

section.service .flowchat .flow-body .line.a8-right:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(55%, 0) rotate(45deg);
  border-bottom: 5px solid #ffd341;
  border-right: 5px solid #ffd341;
}

section.service .flowchat .flow-body .line.a8-left {
  position: absolute;
  left: 100%;
  top: 0;
  width: 70%;
  border-top: none;
  border-bottom: 5px solid #ffd341;
  border-right: 5px solid #ffd341;
  border-radius: 0 0 20px 0;
  border-color: #ffd341;
}

section.service .flowchat .flow-body .line.a8-left:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 59%) rotate(45deg);
  border-bottom: 5px solid #ffd341;
  border-left: 5px solid #ffd341;
}

section.service .flowchat .flow-body .line.a1-right {
  position: absolute;
  right: 100%;
  top: 40%;
  width: 70%;
  border-left: 5px solid #ffd341;
  border-radius: 20px 0 0 0;
  border-color: #ffd341;
}

section.service .flowchat .flow-body .line.a1-right:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -59%) rotate(45deg);
  border-top: 5px solid #ffd341;
  border-right: 5px solid #ffd341;
}

section.service .flowchat .flow-body .line.a1-left {
  position: absolute;
  right: 100%;
  top: 0;
  width: 70%;
  border-top: none;
  border-bottom: 5px solid #ffd341;
  border-left: 5px solid #ffd341;
  border-radius: 0 0 0 20px;
  border-color: #ffd341;
}

section.service .flowchat .flow-body .line.a1-left:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-59%, 0) rotate(45deg);
  border-top: 5px solid #ffd341;
  border-left: 5px solid #ffd341;
}

section.service .flowchat .flow-body .a1 {
  grid-area: a1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200%;
}

section.service .flowchat .flow-body .a2 {
  grid-area: a2;
}

section.service .flowchat .flow-body .a3 {
  grid-area: a3;
  margin: 25px 0;
  position: relative;
}

section.service .flowchat .flow-body .a3 .box {
  position: relative;
  flex-grow: 1;
  left: -20%;
  width: 140%;
  margin: 0;
}

section.service .flowchat .flow-body .a4 {
  grid-area: a4;
}

section.service .flowchat .flow-body .a5 {
  grid-area: a5;
  margin: 25px 0;
}

section.service .flowchat .flow-body .a6 {
  grid-area: a6;
  height: 100%;
}

section.service .flowchat .flow-body .a6 .box {
  height: 100%;
  justify-content: space-around;
  justify-content: center;
}

section.service .flowchat .flow-body .a6 .box p {
  font-size: 16px;
  margin-bottom: 20px;
}

section.service .flowchat .flow-body .a6 .box ol li {
  text-align: left;
}

section.service .flowchat .flow-body .a7 {
  grid-area: a7;
  margin: 25px 0;
}

section.service .flowchat .flow-body .a8 {
  grid-area: a8;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200%;
}


/*------------------
  solution
------------------*/
section.solution {
  background-color: #fff2cc;
  height: auto;
}

section.solution h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 20px 20px;
  min-width: 360px;
  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: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}

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

section.solution .box-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.solution-box {
  width: 30%;
  position: relative;
}
.solution-box img {
  max-width: 100%;
  width: 100%;
}
.solution-box p {
  font-size: 21px;
  font-weight: normal;
  margin-top: 20px;
}

section.solution .arrow_text {
  color: #f52b57;
  display: inline-block;
  font-size: 36px;
  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;
}

section.point h2 {
  display: inline-block;
  background-color: #ffd341;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 20px 20px;
  min-width: 360px;
  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: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}

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

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


/*------------------
  simulation
------------------*/
section.simulation {
  background: #fff2cc;
  padding-left: 30px;
  padding-right: 30px;
  scroll-margin-top: 100px;
}
section.simulation h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 20px 10px;
  min-width: 360px;
  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: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}
section.simulation h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
section.simulation h3 br {
  display: none;
}
section.simulation h3 + p {
  font-size: 30px;
  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;
}
section.simulation .form-group label {
  color: #313144;
  font-size: 21px;
  margin-left: 26px;
}
section.simulation .form-group input {
  border: 0;
  color: #313144;
  font-size: 21px;
  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;
}
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);
}
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: 21px;
  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;
}

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;
}
section.simulation .simulation-result-wrapper h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 56px;
}
section.simulation .simulation-result-wrapper h4 br {
  display: none;
}
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;
}
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;
}
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;
}
section.simulation .simulation-result-graph .graph {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  width: 224px;
}
.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;
}
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: "："
}

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: 100px;
}

section.information h2 {
  display: inline-block;
  background-color: #f52b57;
  text-align: center;
  transform: translateY(-30%) skewX(-20deg);
  padding: 15px 20px 10px;
  min-width: 360px;
  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: 19px;
  transform: skewX(20deg);
  font-weight: 600;
  line-height: 1;
}
section.information h2 p {
  color: #fff;
  font-size: 36px;
  transform: skewX(20deg);
  font-weight: 600;
}

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

section.information .info-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.information img.info-img {
  box-shadow: 10px 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
}
section.information dl {
  border: 2px dotted #ccc;
  border-radius: 10px;
  font-size: 21px;
  padding: 30px;
  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 {
  margin-top: 5px;
}
section.information dl ul li:before {
  content: "・";
  font-weight: 600;
  margin-right: 5px;
}
section.information .cta-btn {
  display: inline-block;
}

ul.donwload_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 80px auto 0;
  max-width: 1100px;
  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: 48%;
}
ul.donwload_list > li h4 {
  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 {
  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;
}


/*------------------
  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;
  }
  
}


/*------------------
  footer
------------------*/
footer {
  background-color: #ffd341;
  width: calc(100% - 300px);
  padding-top: 50px;
}

footer p.permission {
  font-size: 12px;
  text-align: center;
}

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 0;
}

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

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

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

footer .content-wrapper .text-wrapper .text {
  text-align: left;
  padding-right: 20px;
}

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

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

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;
}

footer .content-wrapper-white .max-width-800 .isms {
  width: 35%;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}

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%;
}

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: 40%;
  text-align: center;
}

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;
}

/*------------------
safariのみの設定
------------------*/
_::-webkit-full-page-media,
_:future,
:root .gradient {
  display: none !important;
}

.only-mobile {
  display: none !important;
}
/*# sourceMappingURL=lp-pc.original.css.map */