@charset "UTF-8";
.btn {
  display: block;
  padding: 10px;
  width: 120px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}

.btn.app {
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#EB564C), to(#EBAA4C));
  background: -webkit-linear-gradient(right, #EB564C, #EBAA4C);
  background: -o-linear-gradient(right, #EB564C, #EBAA4C);
  background: linear-gradient(to left, #EB564C, #EBAA4C);
}

.btn.login {
  color: #EB564C;
  background: #fff;
  border: 1px solid #EB564C;
}

.btn:hover {
  opacity: 0.8;
}

.btn:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100vw;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #464646;
  overflow-x: hidden;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

h1,
h2,
h3,
h4 {
  color: #000;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #464646;
}

.wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1300px;
}

@media screen and (max-width: 1280px) {
  .wrapper {
    width: 1080px;
    max-width: 92%;
  }
}

@media screen and (max-width: 960px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    padding: 0 24px;
  }
}

@media screen and (max-width: 400px) {
  .wrapper {
    padding: 0 16px;
  }
}

main,
footer {
  width: 100vw;
  overflow-x: hidden;
}

.info {
  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;
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #EB564C;
  -webkit-box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  z-index: 19;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: in 0.3s ease-in-out;
          animation: in 0.3s ease-in-out;
}

@-webkit-keyframes in {
  0% {
    right: -100px;
    visibility: 0;
    opacity: 0;
  }
  100% {
    right: 20px;
    visibility: 1;
    opacity: 1;
  }
}

@keyframes in {
  0% {
    right: -100px;
    visibility: 0;
    opacity: 0;
  }
  100% {
    right: 20px;
    visibility: 1;
    opacity: 1;
  }
}

.info:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.info:active {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

@media screen and (max-width: 1180px) {
  .info.hide {
    visibility: 0;
    opacity: 0;
    -webkit-animation: out 0.3s ease-in-out;
            animation: out 0.3s ease-in-out;
  }
  @-webkit-keyframes out {
    0% {
      right: 20px;
      visibility: 1;
      opacity: 1;
    }
    100% {
      right: -100px;
      visibility: 0;
      opacity: 0;
    }
  }
  @keyframes out {
    0% {
      right: 20px;
      visibility: 1;
      opacity: 1;
    }
    100% {
      right: -100px;
      visibility: 0;
      opacity: 0;
    }
  }
}

@media screen and (max-width: 600px) {
  .info {
    bottom: 20px;
    right: 10px;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}

.title-box {
  position: relative;
}

.title-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -65px;
  width: 93px;
  height: 93px;
  background-color: #EB564C;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}

.section-title {
  position: relative;
  margin-bottom: 31px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  z-index: 5;
}

.section-title::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 20px;
  width: 35px;
  height: 35px;
  background-color: #EBAE4C;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.changeScale.section-title::before {
  -webkit-animation: sizeUp-1 0.5s ease-in-out;
          animation: sizeUp-1 0.5s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes sizeUp-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sizeUp-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.changeScale.title-box::before {
  -webkit-animation: sizeUp 0.6s ease-in-out;
          animation: sizeUp 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes sizeUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sizeUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.sec-title {
  margin-bottom: 32px;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 54px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .sec-title {
    font-size: 2rem;
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.flexbox_item {
  padding: 24px;
  width: 32%;
  background: #f5f5f5;
  border-radius: 8px;
}

.flexbox_item h3 {
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .flexbox {
    gap: 24px;
  }
  .flexbox_item {
    width: 50%;
  }
}

@media screen and (max-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  padding: 0 64px;
  width: 100vw;
  height: 80px;
  background: #fff;
  z-index: 100;
}

header .site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

header .site-title img {
  width: 158px;
  height: 40px;
}

header .hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #EB564C;
  cursor: pointer;
  z-index: 22;
}

@media screen and (max-width: 1300px) {
  header .hamburger {
    display: block;
  }
}

header .hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

header .hamburger span:nth-of-type(1) {
  top: 38%;
}

header .hamburger span:nth-of-type(2) {
  top: 48%;
}

header .hamburger span:nth-of-type(3) {
  top: 58%;
}

header .hamburger.active span {
  left: 24px;
}

header .hamburger.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .hamburger.active span:nth-of-type(2), header .hamburger.active span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .pc_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 1300px) {
  header .pc_nav {
    display: none;
  }
}

header .hamburger_nav {
  display: none;
}

@media screen and (max-width: 1300px) {
  header .hamburger_nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 40px;
    width: 100vw;
    height: 100vh;
    background-color: #EB564C;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 20;
  }
  header .hamburger_nav.active {
    opacity: 1;
    visibility: visible;
  }
  header .hamburger_nav .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
  }
  header .hamburger_nav a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
  }
  header .hamburger_nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 60px;
    font-size: 3.2rem;
    font-weight: 700;
  }
  header .hamburger_nav_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    width: 100%;
    font-weight: 700;
  }
  header .hamburger_nav_container .btn {
    width: 50%;
    padding: 20px;
  }
  header .hamburger_nav_container .btn.app {
    background: #fff;
    color: #EB564C;
  }
  header .hamburger_nav_container .btn.login {
    border: 2px solid #fff;
    background: #EB564C;
    color: #fff;
  }
}

@media screen and (max-width: 1300px) {
  header {
    padding: 0 40px;
    height: 80px;
  }
}

@media screen and (max-width: 600px) {
  header {
    padding: 0 24px;
    height: 64px;
  }
  header .site-title img {
    width: 126px;
    height: 32px;
  }
  header .hamburger {
    width: 64px;
    height: 64px;
  }
  header .hamburger span {
    width: 20px;
  }
  header .hamburger_nav {
    padding: 0 24px;
  }
  header .hamburger_nav_list {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 1.4rem;
    gap: 24px;
  }
  header .hamburger_nav_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  header .hamburger_nav_container .btn {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  header {
    padding: 0 24px;
    height: 64px;
  }
  header .site-title img {
    width: 126px;
    height: 32px;
  }
  header .hamburger {
    width: 64px;
    height: 64px;
  }
  header .hamburger span {
    width: 20px;
  }
  header .hamburger_nav {
    padding: 0 24px;
  }
  header .hamburger_nav_list {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 1.4rem;
    gap: 16px;
  }
  header .hamburger_nav_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  header .hamburger_nav_container .btn {
    width: 100%;
    line-height: 24px;
    padding: 8px;
  }
}

.mainvidual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.mainvidual .wrapper {
  z-index: 10;
}

.mainvidual .wrapper .inner {
  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;
}

.mainvidual .wrapper .inner .mainvidual_box01 {
  width: 50%;
}

.mainvidual .wrapper .inner .mainvidual_box01 .title {
  margin-bottom: 16px;
  font-size: 4.8rem;
  font-weight: 900;
  color: #000;
}

.mainvidual .wrapper .inner .mainvidual_box01 .title span {
  background: -webkit-gradient(linear, left top, right top, from(#eb564c), to(#ebae4c));
  background: -webkit-linear-gradient(left, #eb564c, #ebae4c);
  background: -o-linear-gradient(left, #eb564c, #ebae4c);
  background: linear-gradient(to right, #eb564c, #ebae4c);
  -webkit-background-clip: text;
  color: transparent;
}

.mainvidual .wrapper .inner .mainvidual_box01 .text {
  margin-bottom: 8px;
  color: #464646;
  font-size: 1.8rem;
  font-weight: bold;
}

.mainvidual .wrapper .inner .mainvidual_box01 .text .fv-br {
  display: none;
}

.mainvidual .wrapper .inner .mainvidual_box01 .t2 {
  font-size: 3.2rem;
  margin-left: -18px;
}

.mainvidual .wrapper .inner .mainvidual_box01 .t1 {
  margin-left: -10px;
}

.mainvidual .wrapper .inner .mainvidual_box02 {
  width: 50%;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure {
  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;
  position: relative;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .circle {
  position: relative;
  width: 390px;
  height: 390px;
  background: -webkit-gradient(linear, left top, left bottom, from(#eb564c), to(#ebae4c));
  background: -webkit-linear-gradient(#eb564c, #ebae4c);
  background: -o-linear-gradient(#eb564c, #ebae4c);
  background: linear-gradient(#eb564c, #ebae4c);
  border-radius: 50%;
  -webkit-animation: rotate1 3s linear infinite;
          animation: rotate1 3s linear infinite;
  z-index: -1;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .circle .circle-inner {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 360px;
  height: 360px;
  background-color: #fff;
  border-radius: 50%;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  background-color: #fff;
  z-index: 5;
  text-align: center;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .item p {
  display: block;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .item img {
  margin-bottom: 10px;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .home {
  top: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  right: 0;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .home img {
  width: 118px;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .wp {
  top: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  left: 0;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .wp img {
  width: 160px;
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .eb {
  top: -90px;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 5px rgba(235, 86, 76, 0.15);
          box-shadow: 0 0 10px 5px rgba(235, 86, 76, 0.15);
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

.mainvidual .wrapper .inner .mainvidual_box02 .figure .eb img {
  width: 180px;
}

.mainvidual .wrapper .sp-btn {
  display: none;
}

.mainvidual .wrapper .scrolldown {
  max-height: 10%;
}

.mainvidual .wrapper .scrolldown::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: calc(50% - 4px);
  width: 1px;
  height: 50px;
  background-color: #000;
  -webkit-animation: pathmove 3s ease-out infinite;
          animation: pathmove 3s ease-out infinite;
  opacity: 0.5;
}

@-webkit-keyframes pathmove {
  0% {
    bottom: 60px;
    height: 0;
    opacity: 0.5;
  }
  45% {
    bottom: 60px;
    height: 0;
    opacity: 0.5;
  }
  95% {
    bottom: 10px;
    height: 50px;
    opacity: 0.5;
  }
  100% {
    bottom: 10px;
    height: 50px;
    opacity: 0.1;
  }
}

@keyframes pathmove {
  0% {
    bottom: 60px;
    height: 0;
    opacity: 0.5;
  }
  45% {
    bottom: 60px;
    height: 0;
    opacity: 0.5;
  }
  95% {
    bottom: 10px;
    height: 50px;
    opacity: 0.5;
  }
  100% {
    bottom: 10px;
    height: 50px;
    opacity: 0.1;
  }
}

.mainvidual .wrapper .scrolldown span {
  display: inline-block;
  position: absolute;
  bottom: 77px;
  left: calc(50% - 22.5px);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0.6;
  z-index: 5;
}

@media screen and (max-width: 960px) {
  .mainvidual .wrapper .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 {
    width: 100%;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 {
    width: 400px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure {
    margin: 125px auto 50px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle {
    width: 300px;
    height: 300px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle .circle-inner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 280px;
    height: 280px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home {
    top: auto;
    bottom: 0;
    width: 160px;
    height: 160px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home img {
    width: 90px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp {
    top: auto;
    bottom: 0;
    width: 160px;
    height: 160px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp img {
    width: 120px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb {
    top: -100px;
    left: 50%;
    width: 190px;
    height: 190px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb img {
    width: 160px;
  }
  .mainvidual .wrapper .inner .title {
    font-size: 4rem;
  }
  .mainvidual .wrapper .sp-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
  .mainvidual .wrapper .sp-btn .btn {
    width: 100%;
    padding: 20px;
  }
  .mainvidual .wrapper .sp-btn .btn.login {
    border-width: 2px;
  }
  .mainvidual .wrapper .scrolldown {
    display: none;
  }
}

@media screen and (max-width: 720px) {
  .mainvidual .wrapper .inner .mainvidual_box01 .title {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 600px) {
  .mainvidual .wrapper .inner .mainvidual_box01 .title {
    font-size: 2.4rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t2 {
    font-size: 2rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t1 {
    font-size: 1.2rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t3 {
    font-size: 1.2rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure {
    margin: 50px auto;
    width: 270px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle {
    width: 190px;
    height: 190px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle .circle-inner {
    top: 7.5px;
    right: 7.5px;
    width: 175px;
    height: 175px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb {
    top: -60px;
    width: 115px;
    height: 115px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb img {
    margin-bottom: 0;
    width: 97px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home, .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp {
    width: 100px;
    height: 100px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home img {
    width: 57px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp img {
    width: 73px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .item p {
    font-size: 1.2rem;
  }
  .mainvidual .wrapper .sp-btn {
    gap: 16px;
  }
}

@media screen and (max-width: 420px) {
  .mainvidual .wrapper {
    height: calc(100vh - 160px);
  }
}

@media screen and (max-width: 380px) {
  .mainvidual .wrapper .inner .mainvidual_box01 .title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t2 {
    font-size: 1.8rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t1 {
    font-size: 1rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box01 .t3 {
    font-size: 1rem;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure {
    margin: 20px auto 24px;
    width: 250px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle {
    width: 170px;
    height: 170px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .circle .circle-inner {
    width: 155px;
    height: 155px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb {
    top: -30px;
    width: 100px;
    height: 100px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .eb img {
    width: 80px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home, .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp {
    width: 85px;
    height: 85px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .home img {
    width: 45px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .wp img {
    width: 64px;
  }
  .mainvidual .wrapper .inner .mainvidual_box02 .figure .item p {
    font-size: 1.2rem;
  }
  .mainvidual .wrapper .sp-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
  .mainvidual .wrapper .sp-btn .btn {
    width: 100%;
    padding: 16px;
  }
  .mainvidual .wrapper .sp-btn .btn.login {
    border-width: 2px;
  }
}

@media screen and (max-width: 320px) {
  .mainvidual .wrapper {
    height: calc(100vh - 160px);
  }
}

#concept {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
}

#concept:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 200px;
  left: -200px;
  width: 630px;
  height: 630px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff8b03), to(#fec02a));
  background: -webkit-linear-gradient(top, #ff8b03, #fec02a);
  background: -o-linear-gradient(top, #ff8b03, #fec02a);
  background: linear-gradient(to bottom, #ff8b03, #fec02a);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  z-index: 1;
  -webkit-animation: rotate4 40s linear infinite;
          animation: rotate4 40s linear infinite;
}

@-webkit-keyframes rotate4 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes rotate4 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

#concept .concept_1 {
  position: relative;
  margin-bottom: 400px;
}

#concept .concept_1 .title {
  padding-top: 100px;
  padding-bottom: 36px;
  font-size: 5rem;
  line-height: 1.2;
}

#concept .concept_1 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

#concept .concept_1 .inner .deco-line {
  margin-right: 20px;
  width: 8px;
  height: auto;
  background-color: #eb564c;
}

#concept .concept_1 .inner .text {
  width: 52%;
  color: #464646;
  line-height: 1.75;
}

#concept .concept_1::before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: -5%;
  width: 560px;
  height: 560px;
  background: -webkit-gradient(linear, left top, left bottom, from(#eb564c), to(#ebae4c));
  background: -webkit-linear-gradient(top, #eb564c, #ebae4c);
  background: -o-linear-gradient(top, #eb564c, #ebae4c);
  background: linear-gradient(to bottom, #eb564c, #ebae4c);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  z-index: 1;
  -webkit-animation: rotate2 30s linear infinite;
          animation: rotate2 30s linear infinite;
}

@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

#concept .concept_1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 1300px;
  height: 700px;
  background-color: #fdedeb;
  border-radius: 70%;
  -webkit-transform: rotate(6deg);
      -ms-transform: rotate(6deg);
          transform: rotate(6deg);
  z-index: -1;
  overflow-x: hidden;
}

#concept .concept_2 {
  position: relative;
  margin-bottom: 300px;
}

#concept .concept_2 .title {
  text-align: center;
  font-size: 4rem;
  z-index: 3;
}

#concept .concept_2 .inner .illust {
  position: relative;
  width: 100%;
  height: 525px;
}

#concept .concept_2 .inner .illust .i-circle {
  position: absolute;
  top: 120px;
  padding-top: 30px;
  text-align: center;
  width: 380px;
  height: 380px;
  background-color: #fff;
  color: #464646;
  font-size: 2.4rem;
  border-radius: 50%;
  z-index: 5;
}

#concept .concept_2 .inner .illust .c1 {
  right: 32%;
}

#concept .concept_2 .inner .illust .c2 {
  right: 8%;
}

#concept .concept_2 .inner .illust img {
  position: absolute;
  top: 210px;
  right: 28%;
  width: 220px;
  z-index: 6;
}

#concept .concept_2 .inner .illust .t-circle {
  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;
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

#concept .concept_2 .inner .illust .t1 {
  top: 80px;
  left: 60px;
}

#concept .concept_2 .inner .illust .t2 {
  top: 235px;
  left: 100px;
  width: 110px;
  height: 110px;
}

#concept .concept_2 .inner .illust .t3 {
  top: 75px;
  right: 50px;
}

#concept .concept_2 .inner .illust .t4 {
  top: 220px;
  right: 100px;
}

#concept .concept_2 .inner .illust .os-circle {
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

#concept .concept_2 .inner .illust .o1 {
  top: 30px;
  left: -10px;
}

#concept .concept_2 .inner .illust .o3 {
  top: -60px;
  left: 180px;
}

#concept .concept_2 .inner .illust .o5 {
  top: -70px;
  right: 200px;
}

#concept .concept_2 .inner .illust .o7 {
  top: -10px;
  right: -10px;
}

#concept .concept_2 .inner .illust .ol-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

#concept .concept_2 .inner .illust .o2 {
  top: -80px;
  left: 55px;
}

#concept .concept_2 .inner .illust .o4 {
  top: -70px;
  right: 290px;
}

#concept .concept_2 .inner .illust .o6 {
  top: -90px;
  right: 55px;
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .t1 {
  -webkit-animation: popIn1 0.4s ease-in-out;
          animation: popIn1 0.4s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIn1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popIn1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .t2 {
  -webkit-animation: popIn2 0.5s ease-in-out;
          animation: popIn2 0.5s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIn2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popIn2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .t3 {
  -webkit-animation: popIn3 0.6s ease-in-out;
          animation: popIn3 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIn3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  33% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  66% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popIn3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  33% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  66% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .t4 {
  -webkit-animation: popIn4 0.7s ease-in-out;
          animation: popIn4 0.7s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIn4 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  42% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  72% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popIn4 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  42% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  72% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o1 {
  -webkit-animation: popInO1 1.25s ease-in-out;
          animation: popInO1 1.25s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popInO1 {
  0% {
    opacity: 0;
    top: 100px;
    left: 30px;
  }
  77% {
    opacity: 0;
    top: 100px;
    left: 30px;
  }
  100% {
    opacity: 1;
    top: 30px;
    left: -10px;
  }
}

@keyframes popInO1 {
  0% {
    opacity: 0;
    top: 100px;
    left: 30px;
  }
  77% {
    opacity: 0;
    top: 100px;
    left: 30px;
  }
  100% {
    opacity: 1;
    top: 30px;
    left: -10px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o2 {
  -webkit-animation: popIno2 1.35s ease-in-out;
          animation: popIno2 1.35s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno2 {
  0% {
    opacity: 0;
    top: 10px;
    left: 80px;
  }
  77% {
    opacity: 0;
    top: 10px;
    left: 80px;
  }
  100% {
    opacity: 1;
    top: -80px;
    left: 55px;
  }
}

@keyframes popIno2 {
  0% {
    opacity: 0;
    top: 10px;
    left: 80px;
  }
  77% {
    opacity: 0;
    top: 10px;
    left: 80px;
  }
  100% {
    opacity: 1;
    top: -80px;
    left: 55px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o3 {
  -webkit-animation: popIno3 1.2s ease-in-out;
          animation: popIno3 1.2s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno3 {
  0% {
    opacity: 0;
    top: 40px;
    left: 190px;
  }
  77% {
    opacity: 0;
    top: 40px;
    left: 190px;
  }
  100% {
    opacity: 1;
    top: -60px;
    left: 180px;
  }
}

@keyframes popIno3 {
  0% {
    opacity: 0;
    top: 40px;
    left: 190px;
  }
  77% {
    opacity: 0;
    top: 40px;
    left: 190px;
  }
  100% {
    opacity: 1;
    top: -60px;
    left: 180px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o4 {
  -webkit-animation: popIno4 1.3s ease-in-out;
          animation: popIno4 1.3s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno4 {
  0% {
    opacity: 0;
    top: 20px;
    right: 290px;
  }
  77% {
    opacity: 0;
    top: 20px;
    right: 290px;
  }
  100% {
    opacity: 1;
    top: -70px;
    right: 290px;
  }
}

@keyframes popIno4 {
  0% {
    opacity: 0;
    top: 20px;
    right: 290px;
  }
  77% {
    opacity: 0;
    top: 20px;
    right: 290px;
  }
  100% {
    opacity: 1;
    top: -70px;
    right: 290px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o5 {
  -webkit-animation: popIno5 1.2s ease-in-out;
          animation: popIno5 1.2s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno5 {
  0% {
    opacity: 0;
    top: 20px;
    right: 210px;
  }
  77% {
    opacity: 0;
    top: 20px;
    right: 210px;
  }
  100% {
    opacity: 1;
    top: -70px;
    right: 200px;
  }
}

@keyframes popIno5 {
  0% {
    opacity: 0;
    top: 20px;
    right: 210px;
  }
  77% {
    opacity: 0;
    top: 20px;
    right: 210px;
  }
  100% {
    opacity: 1;
    top: -70px;
    right: 200px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o6 {
  -webkit-animation: popIno6 1.35s ease-in-out;
          animation: popIno6 1.35s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno6 {
  0% {
    opacity: 0;
    top: 0;
    right: 65px;
  }
  77% {
    opacity: 0;
    top: 0;
    right: 65px;
  }
  100% {
    opacity: 1;
    top: -90px;
    right: 55px;
  }
}

@keyframes popIno6 {
  0% {
    opacity: 0;
    top: 0;
    right: 65px;
  }
  77% {
    opacity: 0;
    top: 0;
    right: 65px;
  }
  100% {
    opacity: 1;
    top: -90px;
    right: 55px;
  }
}

#concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o7 {
  -webkit-animation: popIno7 1.25s ease-in-out;
          animation: popIno7 1.25s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes popIno7 {
  0% {
    opacity: 0;
    top: 120px;
    right: 20px;
  }
  77% {
    opacity: 0;
    top: 120px;
    right: 20px;
  }
  100% {
    opacity: 1;
    top: -10px;
    right: -10px;
  }
}

@keyframes popIno7 {
  0% {
    opacity: 0;
    top: 120px;
    right: 20px;
  }
  77% {
    opacity: 0;
    top: 120px;
    right: 20px;
  }
  100% {
    opacity: 1;
    top: -10px;
    right: -10px;
  }
}

#concept .concept_2 .inner .text {
  margin-left: auto;
  width: 70%;
  color: #464646;
  line-height: 1.8;
  vertical-align: bottom;
}

#concept .concept_2 .inner .text .impact {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
}

#concept .concept_2 .inner .text .sp {
  padding: 0 4px;
}

#concept .concept_2:before {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: -webkit-gradient(linear, left top, left bottom, from(#eb564c), to(#ebae4c));
  background: -webkit-linear-gradient(top, #eb564c, #ebae4c);
  background: -o-linear-gradient(top, #eb564c, #ebae4c);
  background: linear-gradient(to bottom, #eb564c, #ebae4c);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  z-index: 1;
  -webkit-animation: rotate3 40s linear infinite;
          animation: rotate3 40s linear infinite;
}

@-webkit-keyframes rotate3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes rotate3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

#concept .concept_2:after {
  content: "";
  position: absolute;
  top: -120px;
  right: -42%;
  width: 2100px;
  height: 1000px;
  background-color: #fdedeb;
  border-radius: 70%;
  -webkit-transform: rotate(6deg);
      -ms-transform: rotate(6deg);
          transform: rotate(6deg);
  z-index: -1;
}

#concept .concept_2 .btn {
  display: block;
  margin-top: 25px;
  margin-left: auto;
  width: 300px;
  border: #eb564c 1px solid;
  border-radius: 100px;
  font-size: 2rem;
  color: #eb564c;
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

#concept .concept_2 .btn:hover {
  border-color: transparent;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#eb564c), to(#ebae4c));
  background: -webkit-linear-gradient(left, #eb564c, #ebae4c);
  background: -o-linear-gradient(left, #eb564c, #ebae4c);
  background: linear-gradient(to right, #eb564c, #ebae4c);
  background-size: 102% auto;
  background-position: center;
}

@media screen and (max-width: 1260px) {
  #concept::before {
    left: -340px;
  }
  #concept .concept_1::before {
    right: -25%;
  }
  #concept .concept_2::before {
    left: -340px;
  }
}

@media screen and (max-width: 960px) {
  #concept .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  #concept .flexbox_item {
    width: 100%;
  }
  #concept .flexbox_item ul {
    margin: auto;
    width: 400px;
  }
  #concept:before {
    bottom: 320px;
    left: -330px;
    width: 500px;
    height: 500px;
  }
  #concept .concept_1 {
    margin-bottom: 350px;
  }
  #concept .concept_1 .title {
    font-size: 2.8rem;
  }
  #concept .concept_1::before {
    right: -30%;
  }
  #concept .concept_1::after {
    left: -40%;
    width: 1500px;
    height: 550px;
  }
  #concept .concept_2 .title {
    font-size: 2.8rem;
  }
  #concept .concept_2 .inner .illust {
    height: 430px;
    margin-left: 50px;
  }
  #concept .concept_2 .inner .illust .i-circle {
    top: 100px;
    padding-top: 30px;
    width: 300px;
    height: 300px;
    font-size: 1.8rem;
    border-radius: 50%;
  }
  #concept .concept_2 .inner .illust .c1 {
    right: 250px;
  }
  #concept .concept_2 .inner .illust .c2 {
    right: 70px;
  }
  #concept .concept_2 .inner .illust img {
    width: 160px;
    top: 180px;
    right: 240px;
  }
  #concept .concept_2 .inner .illust .t-circle {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
  }
  #concept .concept_2 .inner .illust .t1 {
    top: 70px;
    left: 40px;
  }
  #concept .concept_2 .inner .illust .t2 {
    top: 185px;
    left: 80px;
    width: 90px;
    height: 90px;
  }
  #concept .concept_2 .inner .illust .t3 {
    top: 65px;
    right: 30px;
  }
  #concept .concept_2 .inner .illust .t4 {
    top: 185px;
    right: 80px;
  }
  #concept .concept_2 .inner .illust .os-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  #concept .concept_2 .inner .illust .o1 {
    top: -10px;
    left: 30px;
  }
  #concept .concept_2 .inner .illust .o3 {
    top: -75px;
    left: 170px;
  }
  #concept .concept_2 .inner .illust .o5 {
    top: -80px;
    right: 150px;
  }
  #concept .concept_2 .inner .illust .o7 {
    top: -10px;
    right: -10px;
  }
  #concept .concept_2 .inner .illust .ol-circle {
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  #concept .concept_2 .inner .illust .o2 {
    top: -70px;
    left: 75px;
  }
  #concept .concept_2 .inner .illust .o4 {
    top: -60px;
    right: 200px;
  }
  #concept .concept_2 .inner .illust .o6 {
    top: -80px;
    right: 55px;
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o1 {
    -webkit-animation: popInO1 1.25s ease-in-out;
            animation: popInO1 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: -10px;
      left: 30px;
    }
  }
  @keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: -10px;
      left: 30px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o2 {
    -webkit-animation: popIno2 1.35s ease-in-out;
            animation: popIno2 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -70px;
      left: 75px;
    }
  }
  @keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -70px;
      left: 75px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o3 {
    -webkit-animation: popIno3 1.2s ease-in-out;
            animation: popIno3 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    100% {
      opacity: 1;
      top: -75px;
      left: 170px;
    }
  }
  @keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    100% {
      opacity: 1;
      top: -75px;
      left: 170px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o4 {
    -webkit-animation: popIno4 1.3s ease-in-out;
            animation: popIno4 1.3s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 200px;
    }
  }
  @keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 200px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o5 {
    -webkit-animation: popIno5 1.2s ease-in-out;
            animation: popIno5 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 150px;
    }
  }
  @keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 150px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o6 {
    -webkit-animation: popIno6 1.35s ease-in-out;
            animation: popIno6 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 55px;
    }
  }
  @keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 55px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o7 {
    -webkit-animation: popIno7 1.25s ease-in-out;
            animation: popIno7 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 0px;
    }
  }
  @keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 0px;
    }
  }
  #concept .concept_2:before {
    top: -30px;
    left: -280px;
    width: 400px;
    height: 400px;
  }
  #concept .concept_2::after {
    right: -95%;
    height: 900px;
  }
}

@media screen and (max-width: 760px) {
  #concept .concept_1::before {
    right: -50%;
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o1 {
    -webkit-animation: popInO1 1.25s ease-in-out;
            animation: popInO1 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: -10px;
      left: 30px;
    }
  }
  @keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: -10px;
      left: 30px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o2 {
    -webkit-animation: popIno2 1.35s ease-in-out;
            animation: popIno2 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -70px;
      left: 75px;
    }
  }
  @keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -70px;
      left: 75px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o3 {
    -webkit-animation: popIno3 1.2s ease-in-out;
            animation: popIno3 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    100% {
      opacity: 1;
      top: -75px;
      left: 170px;
    }
  }
  @keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 190px;
    }
    100% {
      opacity: 1;
      top: -75px;
      left: 170px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o4 {
    -webkit-animation: popIno4 1.3s ease-in-out;
            animation: popIno4 1.3s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 200px;
    }
  }
  @keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 200px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 200px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o5 {
    -webkit-animation: popIno5 1.2s ease-in-out;
            animation: popIno5 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 150px;
    }
  }
  @keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 150px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o6 {
    -webkit-animation: popIno6 1.35s ease-in-out;
            animation: popIno6 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 55px;
    }
  }
  @keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -80px;
      right: 55px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o7 {
    -webkit-animation: popIno7 1.25s ease-in-out;
            animation: popIno7 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 0px;
    }
  }
  @keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 0px;
    }
  }
}

@media screen and (max-width: 600px) {
  #concept .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  #concept .flexbox_item {
    width: 100%;
  }
  #concept .flexbox_item ul {
    margin: 0 auto 0 0;
    width: 100%;
  }
  #concept:before {
    display: none;
  }
  #concept .concept_1 {
    margin: 0 auto 300px;
    width: 90%;
  }
  #concept .concept_1 .title {
    font-size: 2rem;
  }
  #concept .concept_1::before {
    display: none;
  }
  #concept .concept_1::after {
    -webkit-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
            transform: rotate(4deg);
    left: -110%;
    height: 480px;
  }
  #concept .concept_1 .inner .text {
    width: 100%;
    font-size: 1.2rem;
  }
  #concept .concept_2 {
    margin-bottom: 160px;
  }
  #concept .concept_2 .title {
    font-size: 1.8rem;
  }
  #concept .concept_2 .inner .illust {
    height: 320px;
    margin-left: 0;
  }
  #concept .concept_2 .inner .illust .i-circle {
    top: 100px;
    padding-top: 15px;
    width: 200px;
    height: 200px;
    font-size: 1.8rem;
  }
  #concept .concept_2 .inner .illust .c1 {
    right: 210px;
  }
  #concept .concept_2 .inner .illust .c2 {
    right: 50px;
  }
  #concept .concept_2 .inner .illust img {
    width: 90px;
    top: 150px;
    right: 185px;
  }
  #concept .concept_2 .inner .illust .t-circle {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
  }
  #concept .concept_2 .inner .illust .t1 {
    top: 60px;
    left: 10px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .t2 {
    top: 125px;
    left: 65px;
    width: 65px;
    height: 65px;
  }
  #concept .concept_2 .inner .illust .t3 {
    top: 50px;
    right: 10px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .t4 {
    top: 120px;
    right: 60px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .os-circle {
    width: 20px;
    height: 20px;
  }
  #concept .concept_2 .inner .illust .o1 {
    top: 0px;
    left: 10px;
  }
  #concept .concept_2 .inner .illust .o3 {
    top: -65px;
    left: 110px;
  }
  #concept .concept_2 .inner .illust .o5 {
    top: -65px;
    right: 130px;
  }
  #concept .concept_2 .inner .illust .o7 {
    top: -10px;
    right: 10px;
  }
  #concept .concept_2 .inner .illust .ol-circle {
    width: 45px;
    height: 45px;
  }
  #concept .concept_2 .inner .illust .o2 {
    top: -55px;
    left: 45px;
  }
  #concept .concept_2 .inner .illust .o4 {
    top: -40px;
    right: 150px;
  }
  #concept .concept_2 .inner .illust .o6 {
    top: -60px;
    right: 55px;
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o1 {
    -webkit-animation: popInO1 1.25s ease-in-out;
            animation: popInO1 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: 0px;
      left: 10px;
    }
  }
  @keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: 0px;
      left: 10px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o2 {
    -webkit-animation: popIno2 1.35s ease-in-out;
            animation: popIno2 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -55px;
      left: 45px;
    }
  }
  @keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -55px;
      left: 45px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o3 {
    -webkit-animation: popIno3 1.2s ease-in-out;
            animation: popIno3 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    100% {
      opacity: 1;
      top: -65px;
      left: 110px;
    }
  }
  @keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    100% {
      opacity: 1;
      top: -65px;
      left: 110px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o4 {
    -webkit-animation: popIno4 1.3s ease-in-out;
            animation: popIno4 1.3s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    100% {
      opacity: 1;
      top: -40px;
      right: 150px;
    }
  }
  @keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    100% {
      opacity: 1;
      top: -40px;
      right: 150px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o5 {
    -webkit-animation: popIno5 1.2s ease-in-out;
            animation: popIno5 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -65px;
      right: 130px;
    }
  }
  @keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -65px;
      right: 130px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o6 {
    -webkit-animation: popIno6 1.35s ease-in-out;
            animation: popIno6 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 55px;
    }
  }
  @keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 55px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o7 {
    -webkit-animation: popIno7 1.25s ease-in-out;
            animation: popIno7 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 10px;
    }
  }
  @keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 10px;
    }
  }
  #concept .concept_2 .inner .text {
    width: 100%;
  }
  #concept .concept_2 .inner .text .impact {
    font-size: 1.8rem;
  }
  #concept .concept_2:before {
    display: none;
  }
  #concept .concept_2::after {
    right: -180%;
    height: 720px;
  }
}

@media screen and (max-width: 570px) {
  #concept .concept_2 .inner .illust {
    height: 320px;
  }
}

@media screen and (max-width: 520px) {
  #concept .concept_2 .inner .illust {
    margin-left: 0px;
  }
}

@media screen and (max-width: 490px) {
  #concept .concept_2 .inner .illust {
    margin-left: 10px;
  }
}

@media screen and (max-width: 470px) {
  #concept .concept_2 .inner .illust {
    margin-left: 30px;
  }
}

@media screen and (max-width: 430px) {
  #concept .concept_2 .inner .illust {
    margin-left: 60px;
  }
}

@media screen and (max-width: 370px) {
  #concept .concept_1 {
    margin: 0 auto 300px;
  }
  #concept .concept_1 .title {
    padding-top: 64px;
    padding-bottom: 24px;
    font-size: 1.8rem;
  }
  #concept .concept_1::after {
    height: 480px;
  }
  #concept .concept_2 {
    margin-bottom: 160px;
  }
  #concept .concept_2 .inner .illust {
    height: 300px;
    margin-left: 80px;
  }
  #concept .concept_2 .inner .illust .i-circle {
    width: 170px;
    height: 170px;
    font-size: 1.4rem;
  }
  #concept .concept_2 .inner .illust .c1 {
    right: 210px;
  }
  #concept .concept_2 .inner .illust .c2 {
    right: 70px;
  }
  #concept .concept_2 .inner .illust img {
    width: 90px;
    top: 150px;
    right: 185px;
  }
  #concept .concept_2 .inner .illust .t-circle {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
  }
  #concept .concept_2 .inner .illust .t1 {
    top: 60px;
    left: 10px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .t2 {
    top: 109px;
    left: 65px;
    width: 55px;
    height: 55px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .t3 {
    top: 35px;
    right: 5px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .t4 {
    top: 90px;
    right: 60px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  #concept .concept_2 .inner .illust .os-circle {
    width: 20px;
    height: 20px;
  }
  #concept .concept_2 .inner .illust .o1 {
    top: 0px;
    left: 10px;
  }
  #concept .concept_2 .inner .illust .o3 {
    top: -65px;
    left: 110px;
  }
  #concept .concept_2 .inner .illust .o5 {
    top: -65px;
    right: 130px;
  }
  #concept .concept_2 .inner .illust .o7 {
    top: -10px;
    right: 10px;
  }
  #concept .concept_2 .inner .illust .ol-circle {
    width: 45px;
    height: 45px;
  }
  #concept .concept_2 .inner .illust .o2 {
    top: -55px;
    left: 45px;
  }
  #concept .concept_2 .inner .illust .o4 {
    top: -40px;
    right: 140px;
  }
  #concept .concept_2 .inner .illust .o6 {
    top: -60px;
    right: 55px;
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o1 {
    -webkit-animation: popInO1 1.25s ease-in-out;
            animation: popInO1 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: 0px;
      left: 10px;
    }
  }
  @keyframes popInO1 {
    0% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    77% {
      opacity: 0;
      top: 100px;
      left: 50px;
    }
    100% {
      opacity: 1;
      top: 0px;
      left: 10px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o2 {
    -webkit-animation: popIno2 1.35s ease-in-out;
            animation: popIno2 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -55px;
      left: 45px;
    }
  }
  @keyframes popIno2 {
    0% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    77% {
      opacity: 0;
      top: 10px;
      left: 100px;
    }
    100% {
      opacity: 1;
      top: -55px;
      left: 45px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o3 {
    -webkit-animation: popIno3 1.2s ease-in-out;
            animation: popIno3 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    100% {
      opacity: 1;
      top: -65px;
      left: 110px;
    }
  }
  @keyframes popIno3 {
    0% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    77% {
      opacity: 0;
      top: 40px;
      left: 110px;
    }
    100% {
      opacity: 1;
      top: -65px;
      left: 110px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o4 {
    -webkit-animation: popIno4 1.3s ease-in-out;
            animation: popIno4 1.3s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    100% {
      opacity: 1;
      top: -40px;
      right: 140px;
    }
  }
  @keyframes popIno4 {
    0% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 150px;
    }
    100% {
      opacity: 1;
      top: -40px;
      right: 140px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o5 {
    -webkit-animation: popIno5 1.2s ease-in-out;
            animation: popIno5 1.2s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -65px;
      right: 130px;
    }
  }
  @keyframes popIno5 {
    0% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    77% {
      opacity: 0;
      top: 20px;
      right: 210px;
    }
    100% {
      opacity: 1;
      top: -65px;
      right: 130px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o6 {
    -webkit-animation: popIno6 1.35s ease-in-out;
            animation: popIno6 1.35s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 55px;
    }
  }
  @keyframes popIno6 {
    0% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    77% {
      opacity: 0;
      top: 0;
      right: 65px;
    }
    100% {
      opacity: 1;
      top: -60px;
      right: 55px;
    }
  }
  #concept .concept_2 .inner .illust .circleIn, #concept .concept_2 .inner .illust .o7 {
    -webkit-animation: popIno7 1.25s ease-in-out;
            animation: popIno7 1.25s ease-in-out;
    opacity: 1;
  }
  @-webkit-keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 10px;
    }
  }
  @keyframes popIno7 {
    0% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    77% {
      opacity: 0;
      top: 120px;
      right: 20px;
    }
    100% {
      opacity: 1;
      top: -10px;
      right: 10px;
    }
  }
  #concept .concept_2 .inner .text {
    width: 100%;
  }
  #concept .concept_2 .inner .text .impact {
    font-size: 1.8rem;
  }
  #concept .concept_2:before {
    display: none;
  }
  #concept .concept_2::after {
    right: -180%;
    height: 720px;
  }
}

#feature {
  margin-bottom: 180px;
}

#feature .sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  #feature .pc {
    display: none;
  }
  #feature .sp {
    display: block;
  }
}

#feature .title {
  position: relative;
  margin-bottom: 60px;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 54px;
  text-align: center;
}

#feature .title img {
  margin-right: 5px;
  width: 227px;
}

#feature .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}

#feature .content .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36%;
}

#feature .content .image img {
  height: 400px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

#feature .content .text {
  width: 60%;
}

#feature .content .text .title-box {
  display: inline-block;
}

#feature .content .text .title-box::before {
  top: -50px;
  left: auto;
  right: 0;
}

#feature .content .text .section-title::before {
  top: -55px;
  left: auto;
  right: -35px;
}

#feature .content .text p {
  line-height: 1.7;
}

#feature .content:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 960px) {
  #feature .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #feature .content:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #feature .content .text {
    width: 100%;
  }
  #feature .content .text .pc {
    display: block;
  }
  #feature .content .image {
    margin-bottom: 48px;
    width: 306px;
  }
  #feature .content .image img {
    height: 200px;
  }
}

@media screen and (max-width: 630px) {
  #feature .content .text .pc {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #feature {
    margin-bottom: 120px;
  }
  #feature .title {
    font-size: 2.4rem;
    line-height: 45px;
  }
  #feature .title img {
    width: 180px;
  }
  #feature .content .text .pc {
    display: block;
  }
  #feature .content .image {
    margin-bottom: 48px;
    width: 244px;
  }
  #feature .content .image img {
    height: 160px;
  }
}

@media screen and (max-width: 460px) {
  #feature .content .text .pc {
    display: none;
  }
}

#service {
  position: relative;
}

#service .wrapper {
  margin-bottom: 120px;
  padding: 0 60px;
}

#service .wrapper .service-title {
  position: relative;
  margin-bottom: 60px;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  z-index: 5;
}

#service .wrapper .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#service .wrapper .service-list li {
  width: 25%;
  text-align: center;
}

#service .wrapper .service-list li img {
  max-width: 100%;
  width: auto;
}

#service .wrapper .service-list li:hover img {
  -webkit-animation: sizeUp02 0.8s ease-in-out;
          animation: sizeUp02 0.8s ease-in-out;
}

@-webkit-keyframes sizeUp02 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sizeUp02 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#service .wrapper .service-list li .title {
  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;
  margin-top: 30px;
  margin-bottom: 24px;
  height: 4rem;
  padding: 0 8%;
  font-weight: 900;
  vertical-align: middle;
}

#service .wrapper .service-list li .text {
  margin-bottom: 50px;
  padding: 0 8%;
  color: #464646;
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (max-width: 1170px) {
  #service .wrapper .service-list li {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  #service .wrapper {
    width: 98%;
    padding: 0;
  }
  #service .wrapper .service-list li {
    width: 50%;
  }
  #service .wrapper .service-list li .title {
    margin-bottom: 4px;
  }
  #service .wrapper .service-list li .text {
    font-size: 1rem;
  }
}

#flow {
  margin-bottom: 150px;
}

#flow .figure {
  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;
  position: relative;
  margin: 64px auto;
  width: 900px;
}

#flow .figure .arrow {
  position: absolute;
  left: 50%;
  width: 70px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

#flow .figure .right {
  top: -40px;
}

#flow .figure .left {
  bottom: -40px;
}

#flow .figure .circle {
  position: relative;
  width: 400px;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebae4c), to(#eb564c));
  background: -webkit-linear-gradient(#ebae4c, #eb564c);
  background: -o-linear-gradient(#ebae4c, #eb564c);
  background: linear-gradient(#ebae4c, #eb564c);
  border-radius: 50%;
  -webkit-animation: rotate5 3s linear infinite;
          animation: rotate5 3s linear infinite;
  z-index: -1;
}

@-webkit-keyframes rotate5 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate5 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#flow .figure .circle .circle-inner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 360px;
  height: 360px;
  background-color: #fff;
  border-radius: 50%;
}

#flow .figure .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 350px;
  height: 350px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  z-index: 5;
  text-align: center;
}

#flow .figure .item .title {
  margin-bottom: 35px;
  font-size: 2.4rem;
}

#flow .figure .item .text {
  padding-bottom: 30px;
  font-size: 1.6rem;
  color: #464646;
}

#flow .figure .item-left {
  left: 0;
}

#flow .figure .item-right {
  right: 0;
}

#flow .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 550px;
  height: 235px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}

#flow .box .text li {
  margin-bottom: 8px;
  color: #464646;
}

#flow .box .text .title {
  font-size: 2.4rem;
  color: #000;
}

@media screen and (max-width: 960px) {
  #flow .figure {
    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;
    position: relative;
    margin: 64px auto;
    width: 600px;
  }
  #flow .figure .arrow {
    width: 50px;
  }
  #flow .figure .right {
    top: -30px;
  }
  #flow .figure .left {
    bottom: -30px;
  }
  #flow .figure .circle {
    width: 300px;
    height: 300px;
  }
  #flow .figure .circle .circle-inner {
    top: 15px;
    right: 15px;
    width: 270px;
    height: 270px;
  }
  #flow .figure .item {
    width: 260px;
    height: 260px;
  }
  #flow .figure .item .title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  #flow .figure .item .text {
    font-size: 1.4rem;
  }
  #flow .figure .item-left {
    left: 0;
  }
  #flow .figure .item-right {
    right: 0;
  }
}

@media screen and (max-width: 600px) {
  #flow .section-title {
    margin-bottom: 32px;
    font-size: 2.4rem;
  }
  #flow .figure {
    margin: 220px auto;
    width: 300px;
  }
  #flow .figure .arrow {
    width: 45px;
  }
  #flow .figure .right {
    left: auto;
    right: -15px;
    top: 50%;
    -webkit-transform: rotate(90deg) translate(-50%);
        -ms-transform: rotate(90deg) translate(-50%);
            transform: rotate(90deg) translate(-50%);
  }
  #flow .figure .left {
    left: -15px;
    top: 50%;
    -webkit-transform: rotate(90deg) translate(-50%);
        -ms-transform: rotate(90deg) translate(-50%);
            transform: rotate(90deg) translate(-50%);
  }
  #flow .figure .circle {
    width: 300px;
    height: 300px;
  }
  #flow .figure .circle .circle-inner {
    top: 15px;
    right: 15px;
    width: 270px;
    height: 270px;
  }
  #flow .figure .item {
    width: 280px;
    height: 280px;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
  }
  #flow .figure .item .title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  #flow .figure .item .text {
    font-size: 1.4rem;
  }
  #flow .figure .item-left {
    top: -180px;
  }
  #flow .figure .item-right {
    bottom: -180px;
  }
  #flow .box {
    width: 100%;
    height: auto;
  }
  #flow .box .text {
    padding: 20px 30px;
  }
  #flow .box .text li {
    padding-left: 1em;
    text-indent: -1em;
  }
}

#roadmap {
  margin-bottom: 150px;
}

#roadmap title {
  margin-bottom: 28px;
}

#roadmap .wrapper {
  position: relative;
  height: 600px;
}

#roadmap .wrapper .text {
  position: absolute;
  top: 82px;
  font-size: 2.4rem;
  line-height: 1.5;
}

#roadmap .wrapper .item-box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  border-radius: 50%;
  line-height: 1.35;
  text-align: center;
}

#roadmap .wrapper .item-box .item-1 {
  top: 0;
  right: 0;
  width: 330px;
  height: 330px;
  background-color: #eb564c;
  color: #fff;
}

#roadmap .wrapper .item-box .connect1 {
  position: absolute;
  top: 162px;
  right: 245px;
  width: 175px;
  height: auto;
  z-index: -1;
}

#roadmap .wrapper .item-box .item-2 {
  top: 174px;
  right: 345px;
  width: 300px;
  height: 300px;
  background-color: #f4867e;
  color: #fff;
}

#roadmap .wrapper .item-box .connect2 {
  position: absolute;
  top: 320px;
  right: 600px;
  width: 100px;
  height: auto;
  z-index: -1;
}

#roadmap .wrapper .item-box .item-3 {
  top: 278px;
  right: 662px;
  width: 270px;
  height: 270px;
  background-color: #ffd6d3;
  color: #464646;
}

#roadmap .wrapper .item-box .item-3 .mb-16 {
  content: "";
  display: block;
  margin-bottom: 8px;
}

#roadmap .wrapper .item-box .connect3 {
  position: absolute;
  top: 420px;
  right: 915px;
  width: 50px;
  height: auto;
  z-index: -1;
}

#roadmap .wrapper .item-box .item-4 {
  top: 344px;
  right: 950px;
  width: 250px;
  height: 250px;
  background-color: #ffebea;
  color: #464646;
}

#roadmap .wrapper .item-box .item-4 img {
  margin-bottom: 24px;
  width: 180px;
}

@media screen and (max-width: 1200px) {
  #roadmap {
    margin-bottom: 110px;
  }
  #roadmap title {
    margin-bottom: 28px;
  }
  #roadmap .wrapper {
    margin: 0 6%;
    width: auto;
    height: auto;
  }
  #roadmap .wrapper .text {
    position: static;
    font-size: 2rem;
    font-weight: bold;
  }
  #roadmap .wrapper .item-box {
    position: relative;
    margin: 0 auto;
    width: 640px;
    height: 880px;
  }
  #roadmap .wrapper .item-box .item {
    font-size: 1.8rem;
  }
  #roadmap .wrapper .item-box .item-1 {
    top: 40px;
    width: 350px;
    height: 350px;
  }
  #roadmap .wrapper .item-box .connect1 {
    top: 235px;
    right: 260px;
    width: 160px;
  }
  #roadmap .wrapper .item-box .item-2 {
    top: 250px;
    right: 340px;
    width: 300px;
    height: 300px;
  }
  #roadmap .wrapper .item-box .connect2 {
    position: absolute;
    top: 460px;
    right: 320px;
    width: 90px;
    -webkit-transform: rotate(-120deg);
        -ms-transform: rotate(-120deg);
            transform: rotate(-120deg);
  }
  #roadmap .wrapper .item-box .item-3 {
    position: absolute;
    top: 467px;
    right: 123px;
    width: 260px;
    height: 260px;
  }
  #roadmap .wrapper .item-box .connect3 {
    top: 650px;
    right: 340px;
    width: 60px;
    -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  #roadmap .wrapper .item-box .item-4 {
    top: 630px;
    right: 360px;
    width: 230px;
    height: 230px;
  }
}

@media screen and (max-width: 600px) {
  #roadmap .wrapper {
    margin: 0;
  }
  #roadmap .wrapper .text {
    position: static;
    padding: 0 20px;
    font-size: 1.6rem;
  }
  #roadmap .wrapper .item-box {
    position: relative;
    margin: 0 auto;
    width: 326px;
    height: 730px;
  }
  #roadmap .wrapper .item-box .item {
    font-size: 1.2rem;
  }
  #roadmap .wrapper .item-box .item-1 {
    top: 40px;
    width: 230px;
    height: 230px;
  }
  #roadmap .wrapper .item-box .connect1 {
    top: 200px;
    right: 130px;
    width: 110px;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  #roadmap .wrapper .item-box .item-2 {
    top: 250px;
    right: 130px;
    width: 196px;
    height: 196px;
  }
  #roadmap .wrapper .item-box .connect2 {
    top: 390px;
    right: 125px;
    width: 75px;
    -webkit-transform: rotate(-108deg);
        -ms-transform: rotate(-108deg);
            transform: rotate(-108deg);
  }
  #roadmap .wrapper .item-box .item-3 {
    position: absolute;
    top: 420px;
    right: 20px;
    width: 170px;
    height: 170px;
  }
  #roadmap .wrapper .item-box .connect3 {
    top: 550px;
    right: 130px;
    -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
            transform: rotate(-35deg);
  }
  #roadmap .wrapper .item-box .item-4 {
    top: 570px;
    right: 140px;
    width: 150px;
    height: 150px;
  }
  #roadmap .wrapper .item-box .item-4 img {
    margin-bottom: 16px;
    width: 110px;
  }
}

#plan {
  margin-bottom: 60px;
}

#plan .flexbox_item {
  padding: 0;
}

#plan .flexbox_item h3 {
  margin-bottom: 0;
  padding: 48px 0;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 2.4rem;
}

#plan .flexbox_item:nth-of-type(1) h3 {
  background-color: #EBAA4C;
}

#plan .flexbox_item:nth-of-type(2) h3 {
  background-color: #EB564C;
}

#plan .flexbox_item .text {
  padding: 32px 16px;
  font-size: 1.6rem;
  text-align: center;
}

#plan .flexbox_item .text .fee {
  margin-bottom: 32px;
  color: #000;
}

#plan .flexbox_item .text .fee span {
  padding-left: 6px;
  font-size: 3.2rem;
  font-weight: 700;
}

#plan .flexbox_item .text ul {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#plan .flexbox_item .text ul li {
  margin-bottom: 16px;
  text-align: left;
  line-height: 1.5;
}

#plan .flexbox_item .text ul li span {
  display: inline-block;
  padding-left: 1.6rem;
  font-size: 1.2rem;
}

#plan .annotation {
  font-size: 1.4rem;
  margin-top: 16px;
  margin-left: 17%;
}

@media screen and (max-width: 960px) {
  #plan .flexbox_item h3 {
    padding: 32px 0;
    font-size: 1.6rem;
  }
  #plan .flexbox_item .text {
    font-size: 1.2rem;
  }
  #plan .flexbox_item .text .fee span {
    font-size: 2rem;
  }
  #plan .annotation {
    font-size: 1.4rem;
    margin-top: 16px;
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  #plan .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  #plan .flexbox_item {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #plan .annotation {
    font-size: 1rem;
    margin-top: 16px;
    margin-left: 0;
  }
}

.achieve {
  margin-bottom: 120px;
}

.achieve .box {
  width: 100%;
  padding: 40px 16px;
  background-color: #fafafa;
}

.achieve .box p {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#faq {
  margin-bottom: 200px;
}

@media screen and (max-width: 600px) {
  #faq {
    margin-bottom: 160px;
  }
}

#faq dl {
  width: 100%;
  margin-bottom: 20px;
}

#faq dl .question {
  position: relative;
  padding: 20px 50px;
  background-color: #EB564C;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#faq dl .question::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 900;
  font-size: 2.1rem;
}

#faq dl .question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 2rem;
}

#faq dl .question.open {
  border-radius: 8px 8px 0 0;
}

#faq dl .question.open::after {
  content: "−";
  position: absolute;
  right: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 2rem;
}

#faq dl .answer {
  display: none;
  position: relative;
  padding: 20px 50px;
  border: #EB564C 1px solid;
  border-radius: 0 0 8px 8px;
  font-size: 1.6rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#faq dl .answer::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #EB564C;
  font-weight: 900;
  font-size: 2.1rem;
}

#faq dl .answer.open {
  display: block;
}

#application {
  background: #FDEDEB;
}

#application .app-br {
  display: none;
}

#application .application-list {
  margin: 0 auto;
  max-width: 920px;
  color: #464646;
}

#application .application-list li {
  position: relative;
  margin-bottom: 10px;
  padding: 10px 0;
  padding-left: 40px;
  line-height: 1.8;
  text-indent: -40px;
}

#application .app-img {
  margin-bottom: 100px;
}

#application .title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

#application span {
  position: relative;
  color: #EB564C;
  font-size: 1.6rem;
  margin-right: 32px;
}

#application span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 2px solid #EB564C;
  border-radius: 50%;
}

#application .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  text-align: center;
}

#application .app.btn {
  margin: 32px auto 16px;
  padding: 20px;
  width: 255px;
}

.app-img {
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  #application .wrapper {
    padding: 0 80px;
  }
}

@media screen and (max-width: 600px) {
  #application .wrapper {
    padding: 0 40px;
  }
  #application .app.btn {
    margin-bottom: 32px;
  }
}

.link {
  margin-bottom: 80px;
}

.link .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 auto;
  width: 90%;
  height: 275px;
  background-color: #fff;
  border: #07b53b 3px solid;
  color: #000;
  text-align: center;
  overflow: hidden;
}

.link .inner .box {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 100px;
  height: 100px;
  background-color: #9fcc42;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.link .inner p {
  font-weight: 900;
  font-size: 3.4rem;
}

.link .inner p img {
  display: block;
  margin: 16px auto 0;
  width: 363px;
}

.link .inner .deco span {
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 500px;
  height: 4px;
  background-color: #bad044;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 1;
  z-index: 1;
}

.link .inner .deco span:nth-of-type(1) {
  right: -130px;
}

.link .inner .deco span:nth-of-type(2) {
  right: -160px;
}

.link .inner .deco span:nth-of-type(3) {
  right: -190px;
}

.link .inner .deco span:nth-of-type(4) {
  right: -220px;
}

.link .inner .deco span:nth-of-type(5) {
  right: -250px;
}

.link .inner .deco span:nth-of-type(6) {
  right: -280px;
}

.link .inner .deco span:nth-of-type(7) {
  right: -310px;
}

.link .inner:hover {
  -webkit-animation: sizeUp3 0.5s ease-in-out;
          animation: sizeUp3 0.5s ease-in-out;
}

@-webkit-keyframes sizeUp3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sizeUp3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 960px) {
  .link .inner .box {
    top: 20px;
    left: 40px;
    width: 60px;
    height: 60px;
  }
  .link .inner .deco span {
    bottom: 50px;
    width: 500px;
  }
  .link .inner .deco span:nth-of-type(1) {
    right: -130px;
  }
  .link .inner .deco span:nth-of-type(2) {
    right: -160px;
  }
  .link .inner .deco span:nth-of-type(3) {
    right: -190px;
  }
  .link .inner .deco span:nth-of-type(4) {
    right: -220px;
  }
  .link .inner .deco span:nth-of-type(5) {
    right: -250px;
  }
  .link .inner .deco span:nth-of-type(6) {
    right: -280px;
  }
  .link .inner .deco span:nth-of-type(7) {
    right: -310px;
  }
}

@media screen and (max-width: 600px) {
  .link .inner {
    height: 200px;
  }
  .link .inner .box {
    left: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
  }
  .link .inner p {
    font-size: 2rem;
  }
  .link .inner p img {
    width: 240px;
  }
  .link .inner .deco span {
    bottom: 0;
    width: 500px;
  }
  .link .inner .deco span:nth-of-type(1) {
    right: -170px;
  }
  .link .inner .deco span:nth-of-type(2) {
    right: -190px;
  }
  .link .inner .deco span:nth-of-type(3) {
    right: -210px;
  }
  .link .inner .deco span:nth-of-type(4) {
    right: -230px;
  }
  .link .inner .deco span:nth-of-type(5) {
    right: -250px;
  }
  .link .inner .deco span:nth-of-type(6) {
    right: -270px;
  }
  .link .inner .deco span:nth-of-type(7) {
    right: -290px;
  }
}

footer {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-color: #EB564C;
}

footer .wrapper {
  padding: 0 60px;
}

footer a {
  color: #fff;
  text-align: center;
  background-color: #EB564C;
}

footer .container {
  display: block;
  padding: 20px 0;
}

footer .container .ebc-logo {
  display: inline-block;
  margin-right: 30px;
  width: 300px;
}

footer .container .ebc-logo img {
  width: 100%;
}

footer .container .eb-logo {
  display: inline-block;
  width: 185px;
}

footer .container .eb-logo img {
  width: 100%;
}

footer .footer-nav {
  display: inline-block;
  padding: 20px 0;
}

footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

footer .footer-nav ul li {
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  footer .line {
    display: none;
  }
}

@media screen and (max-width: 752px) {
  footer {
    padding: 30px 0 60px;
  }
  footer .wrapper {
    padding: 0 40px;
  }
}

@media screen and (max-width: 712px) {
  footer {
    padding: 40px 0 80px;
    text-align: left;
  }
  footer .wrapper {
    padding: 0 24px;
  }
  footer .wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 0 0 40px;
  }
  footer .wrapper .container .ebc-logo {
    width: 200px;
  }
  footer .wrapper .container .eb-logo {
    width: 128px;
  }
  footer .wrapper .footer-nav {
    padding: 0;
  }
  footer .wrapper .footer-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: start;
    gap: 24px;
  }
}
