@charset "UTF-8";
/* lp2401 */
.lp2401 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

p {
  overflow: hidden;
}

#loading-screen p {
  font-size: 2em;
  color: black;
  font-weight: 500;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

/* fade */
/* before */
.js-fade-bottom {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 0.5s, transform 0.5s;
}

.js-fade,
.js-fade2,
.js-fade3,
.js-fade-first,
.js-fade-first2,
.js-fade-first3 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.is-visible {
  opacity: 1;
}

/* after */
.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* lp2401-border */

.lp2401-border {
  width: 100vw;
  z-index: 15;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  pointer-events: none;
}

.lp2401-border-1 {
  bottom: -12px;
}

.lp2401-border-2 {
  bottom: -40px;
}

/* border animation */

.border-drop-net {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.border-drop-ball {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.border-right-net {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.border-right-ball {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.border-left-net {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.border-left-ball {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.border-drop-path,
.border-right-path,
.border-left-path {
  opacity: 0;
}

.border-drop-path {
  stroke-dasharray: 956.9844360351562;
  stroke-dashoffset: 956.9844360351562;
}

.border-right-path {
  stroke-dasharray: 971.6276245117188;
  stroke-dashoffset: 971.6276245117188;
}

.border-left-path {
  stroke-dasharray: 1053.4517822265625;
  stroke-dashoffset: 1053.4517822265625;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 956.9844360351562;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawRightPath {
  0% {
    stroke-dashoffset: 971.6276245117188;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLeftPath {
  0% {
    stroke-dashoffset: 1053.4517822265625;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* top text animation */

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  display: flex;
  width: 88%;
  justify-content: center;
  animation-name: slideTextX100;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* pageHeader */

.lp2401-pageHeader {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: #f0f0f0;
  margin-bottom: 80px;
}

.lp2401-pageHeader-inner {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
  position: relative;
  padding-top: 40px;
}

.lp2401-main {
  background-color: #f0f0f0;
}

.lp2401-vision {
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1024px;
  text-align: center;
  color: black;
  justify-content: center;
}

.lp2401-vision-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lp2401-vision-statement {
  display: flex;
  /* font-size: 1.8em; */
  font-size: 6vw;
  font-weight: 700;
  width: auto;
  white-space: nowrap;
  justify-content: center;
  margin-bottom: 40px;
}

.lp2401-vision-message {
  display: flex;
  font-size: 1.2em;
  font-weight: 500;
  text-align: justify;
  width: 92%;
}

.lp2401-top-logo {
  display: flex;
  width: 100%;
  pointer-events: none;
  margin-bottom: 40px;
}

/* butterfly-origin */

.lp2401-origin-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-rl;
  margin-bottom: 8em;
  position: relative;
}

.lp2401-origin-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 500px;
}

.lp2401-origin {
  /* background-color: #fff; */
  padding: 0 0 0 0;
  height: 50vw;
  z-index: 2;
  max-height: 280px;
}

.lp2401-origin-title {
  display: flex;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1em;
  margin-left: 12px;
  color: #fe4291;
}

.lp2401-origin-statement {
  display: flex;
  font-size: 0.9em;
  font-weight: 500;
  text-align: justify;
  color: #fe4291;
}

/* butterfly-founder */

.lp2401-founder {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lp2401-founder-title {
  display: flex;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp2401-founder-image {
  display: flex;
  width: 96%;
  margin-bottom: 2em;
}

.lp2401-founder-statement {
  display: flex;
  width: 96%;
  font-weight: 500;
  text-align: justify;
}

/* butterfly-openTheWOrld */

.lp2401-openTheWorld {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.lp2401-openTheWorld-top-title {
  display: flex;
  margin-bottom: 24vw;
  margin-top: 5vw;
  width: 80%;
}

.lp2401-openTheWorld-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30vw;
  position: relative;
  width: 80%;
}

.lp2401-openTheWorld-bg {
  display: flex;
  width: 100px;
  position: absolute;
  margin-bottom: 60px;
  pointer-events: none;
}

.lp2401-openTheWorld-bg-left {
  top: 60%;
  left: 23%;
  width: 71%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.lp2401-openTheWorld-bg-right {
  top: 60%;
  left: 77%;
  width: 71%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.lp2401-openTheWorld-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  width: 40%;
  position: relative;
  z-index: 2;
}

.lp2401-openTheWorld-title {
  display: flex;
  width: auto;
  font-size: 3.5vw;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 8px;
  color: white;
}

.lp2401-openTheWorld-statement {
  display: flex;
  font-size: 2.4vw;
  font-weight: 500;
  text-align: justify;
  color: white;
}

.lp2401-openTheWorld-message {
  display: flex;
  justify-content: space-between;
  font-size: 4vw;
  font-weight: 700;
  color: #fe4291;
  width: 100%;
  position: relative;
  align-items: center;
}

.lp2401-openTheWorld-bar-left {
  width: 15%;
  height: 15%;
}

.lp2401-openTheWorld-bar-right {
  width: 15%;
  height: 15%;
}

/* lp2401-caseStudy */

.lp2401-caseStudy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lp2401-caseStudy-top-title {
  display: flex;
  font-size: 2.25em;
  font-weight: 700;
  color: #fe4291;
  margin-bottom: 20px;
}

.lp2401-caseStudy-box {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lp2401-caseStudy-title {
  display: flex;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp2401-caseStudy-image {
  /* display: flex; */
  /* width: 96%; */
  position: relative;
  margin-bottom: 20px !important;
  display: flex;
  width: 96%;
  height: 96%;
  padding: 8vw 16vw;
  background-image: url(./assets/lp2401/images/caseStudy-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.lp2401-caseStudy-image-main {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 50%;
  z-index: 2;
  margin: 0 1px;
}

.lp2401-caseStudy-image-main img {
}

.lp2401-caseStudy-image-bg {
  display: flex;
  z-index: 1;
}

.lp2401-caseStudy-statement {
  display: flex;
  width: 96%;
  font-size: 0.85em;
  font-weight: 500;
  text-align: justify;
}

#slick-slider {
  max-width: 600px;
  margin: 0 auto;
}

#slick-slider2 {
  max-width: 600px;
  margin: 0 auto;
}

#slick-slider3 {
  max-width: 600px;
  margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
  color: #aaa;
  display: none;
}

.slick-items {
  height: 100%;
  width: 100%;
}

.slick-items img {
  height: 100%;
  width: 100%;
}

/* lp2401-philosophy */

.lp2401-philosophy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lp2401-philosophy-top-title {
  display: flex;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 80px;
  text-align: center;
}

.lp2401-philosophy-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 80px;
  align-items: center;
}

.lp2401-philosophy-box.lp2401-reverse {
  flex-direction: column;
}

.lp2401-philosophy-headLine {
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
  width: 88%;
  margin-right: 4%;
  margin-left: 0;
  position: relative;
  margin-bottom: 12px;
}

.lp2401-reverse .lp2401-philosophy-headLine {
  margin-right: 0;
  margin-left: 4%;
}

.lp2401-philosophy-headLine-title {
  display: flex;
  font-size: 3em;
  position: absolute;
  top: -76px;
  left: -20px;
  color: #fe4291;
}

.lp2401-reverse .lp2401-philosophy-headLine-title {
  right: -20px;
  left: auto;
}

.lp2401-philosophy-headLine-image {
  display: flex;
}

.lp2401-philosophy-text {
  display: flex;
  flex-direction: column;
  width: 88%;
}

.lp2401-philosophy-text-title {
  display: flex;
  font-size: 1.6em;
  color: #fe4291;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0.5em;
}

.lp2401-philosophy-text-statement {
  display: flex;
  font-weight: 500;
  text-align: justify;
}

/* lp2401-zokuzoku */

.lp2401-stadium-image {
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
  margin-bottom: 60vw;
  z-index: 1;
}

.lp2401-stadium-image img {
  width: 100%;
  position: absolute;
  top: -20vw;
  z-index: 2;
}

.lp2401-zokuzoku {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lp2401-zokuzoku-top-title {
  display: flex;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fe4291;
}

.lp2401-zokuzoku-top-statement {
  display: flex;
  width: auto;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.lp2401-zokuzoku-cases-box {
  display: flex;
  width: 100%;
  height: 180vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35vw;
  position: relative;
}

.lp2401-zokuzoku-cases-icon {
  display: flex;
  position: absolute;
}

.lp2401-zokuzoku-cases-1 {
  top: 0%;
  left: 0%;
  width: 40%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-2 {
  top: 5%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-3 {
  top: 25%;
  left: 60%;
  width: 35%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-4 {
  top: 43%;
  left: 5%;
  width: 40%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-5 {
  top: 47%;
  left: 55%;
  width: 40%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-6 {
  top: 87%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-7 {
  top: 17%;
  left: 11%;
  width: 40%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-8 {
  top: 91%;
  left: 0%;
  width: 40%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-9 {
  top: 65%;
  left: 27%;
  width: 35%;
  transform: translate(-50%, -50%);
}

.lp2401-zokuzoku-cases-title {
}

.lp2401-contact-button {
  positon: relative;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

.lp2401-contact-button-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 100px;
}

.lp2401-contact-button-box a {
  display: flex;
  width: 100%;
  height: 100%;
}

.lp2401-contact-button-box img {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 100;
}

.lp2401-contact-button-box img:hover {
  opacity: 0.8;
}

.lp2401-contact-button-box img:active {
  opacity: 0.5;
}

.lp2401-contact-button p {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 0.6em;
  font-weight: 700;
  color: #fe4291;
  z-index: 105;
  transform: translate(-32%, -164%);
  text-align: center;
}

.lp2401-contact-button-text {
  display: block;
}

/* zokuzoku-icon-animation */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.lp2401-zokuzoku-cases-icon {
  animation: pulse 2s infinite;
  transition: opacity 0.3s;
}

.lp2401-zokuzoku-cases-icon:hover {
  opacity: 0.8;
}

/* zokuzoku-modal */

.modal-container1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container1.active {
  opacity: 1;
  visibility: visible;
}

.modal-container2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container2.active {
  opacity: 1;
  visibility: visible;
}

.modal-container3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container3:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container3.active {
  opacity: 1;
  visibility: visible;
}

.modal-container4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container4:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container4.active {
  opacity: 1;
  visibility: visible;
}

.modal-container5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container5:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container5.active {
  opacity: 1;
  visibility: visible;
}

.modal-container6 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container6:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container6.active {
  opacity: 1;
  visibility: visible;
}

.modal-container7 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container7:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container7.active {
  opacity: 1;
  visibility: visible;
}

.modal-container8 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container8:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container8.active {
  opacity: 1;
  visibility: visible;
}

.modal-container9 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 50%); */
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 2;
}

.modal-container9:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container9.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 92%;
  z-index: 20;
}

.modal-close1,
.modal-close2,
.modal-close3,
.modal-close4,
.modal-close5,
.modal-close6,
.modal-close7,
.modal-close8,
.modal-close9 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-content {
  background: #0033ff;
  text-align: left;
  padding: 30px;
}

.zokuzoku-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.zokuzoku-container-image {
  display: flex;
  width: 100%;
  padding-bottom: 40px;
  /* border-bottom: 1px solid white; */
}

.zokuzoku-container-title {
  display: flex;
  font-size: 1.1em;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
}

.zokuzoku-container-text {
  display: flex;
  width: 100%;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.8em;
  color: white;
  text-align: justify;
}

.zokuzoku-container-border {
  width: calc(100% + 60px);
  border-top: 1px solid white;
  align-self: center;
}

/* lp2401-contact */

.lp2401-contact {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  color: white;
}

.lp2401-contact-box {
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: center;
  background-color: #fe4291;
  padding: 8px 20px;
}

.lp2401-contact-box-title {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 20px;
  white-space: nowrap;
}

.lp2401-contact-box-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

.lp2401-contact-box-content-title {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lp2401-contact-box-content-text {
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lp2401-contact-box-content-text a {
  color: white;
}

/* openTheWorld fade */
.lp2401-openTheWorld-bg-left,
.lp2401-openTheWorld-bg-right,
.lp2401-openTheWorld-content {
  opacity: 0;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.is-visible-left {
  animation: fadeInLeft 1s ease-in-out forwards;
}

.is-visible-right {
  animation: fadeInRight 1s ease-in-out forwards;
}

.is-visible-content {
  opacity: 1;
  transition: opacity 1s ease-in-out 1.2s;
}

.is-visible {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  /* lp2401 */
  /* lp2401-border */
  .lp2401-border {
    width: 100vw;
    z-index: 20;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .lp2401-border-1 {
    bottom: -40px;
  }

  .lp2401-border-2 {
    bottom: -60px;
  }

  /* pageHeader */

  .lp2401-pageHeader {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0 0 0 0;
    background-color: #f0f0f0;
    margin-bottom: 120px;
  }

  .lp2401-main {
    background-color: #f0f0f0;
    padding-top: 100px;
  }

  .lp2401-vision {
    display: flex;
    margin-top: 56px;
    margin-bottom: 40px;
    color: black;
    white-space: nowrap;
  }

  .lp2401-vision-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .lp2401-vision-statement {
    display: flex;
    font-size: clamp(2em, calc(100vw / 12), 3em);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-feature-settings: ;
    color: black;
    width: auto;
    white-space: nowrap;
    justify-content: center;
    margin-bottom: 40px;
  }

  .lp2401-vision-message {
    display: flex;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: justify;
    width: 56%;
  }

  .lp2401-top-logo {
    display: flex;
    width: 100%;
    pointer-events: none;
    margin-bottom: 40px;
  }

  /* butterfly-origin */

  .lp2401-origin-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    writing-mode: vertical-rl;
    margin-bottom: 8em;
    position: relative;
  }

  .lp2401-origin-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 60%;
  }

  .lp2401-origin {
    /* background-color: #fff; */
    padding: 0 0 0 0;
    height: 280px;
    z-index: 2;
    max-height: 280px;
  }

  .lp2401-origin-title {
    display: flex;
    font-size: 2em;
    font-weight: 700;
    line-height: 1em;
    margin-left: 20px;
    text-align: justify;
    color: #fe4291;
  }

  .lp2401-origin-statement {
    display: flex;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: justify;
    color: #fe4291;
  }

  /* butterfly-founder */

  .lp2401-founder {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .lp2401-founder-title {
    display: flex;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.075em;
    margin-bottom: 20px;
  }

  .lp2401-founder-image {
    display: flex;
    width: 40%;
    margin-bottom: 2em;
  }

  .lp2401-founder-statement {
    display: flex;
    width: 40%;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: justify;
  }

  /* butterfly-openTheWOrld */

  .lp2401-openTheWorld {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
  }

  .lp2401-openTheWorld-top-title {
    display: flex;
    justify-content: center;
    margin-bottom: 228px;
    margin-top: 60px;
    width: 100%;
  }

  .lp2401-openTheWorld-top-title img {
    width: 50%;
  }

  .lp2401-openTheWorld-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 240px;
    position: relative;
    width: 62%;
  }

  .lp2401-openTheWorld-bg {
    display: flex;
    width: 100px;
    position: absolute;
    margin-bottom: 60px;
    pointer-events: none;
  }

  .lp2401-openTheWorld-bg-left {
    top: 50%;
    left: 20%;
    width: 70%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
  }

  .lp2401-openTheWorld-bg-right {
    top: 50%;
    left: 80%;
    width: 70%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
  }

  .lp2401-openTheWorld-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;
    z-index: 2;
  }

  .lp2401-openTheWorld-title {
    display: flex;
    width: auto;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }

  .lp2401-openTheWorld-statement {
    display: flex;
    font-size: 1em;
    font-weight: 500;
    color: white;
  }

  .lp2401-openTheWorld-message {
    display: flex;
    justify-content: space-between;
    font-size: 2em;
    font-weight: 700;
    color: #fe4291;
    width: 75%;
    position: relative;
    align-items: center;
  }

  .lp2401-openTheWorld-bar-left {
    width: 15%;
    height: 15%;
  }

  .lp2401-openTheWorld-bar-right {
    width: 15%;
    height: 15%;
  }

  /* lp2401-caseStudy */

  .lp2401-caseStudy {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .lp2401-caseStudy-top-title {
    display: flex;
    font-size: 2.25em;
    font-weight: 700;
    color: #fe4291;
    margin-bottom: 20px;
  }

  .lp2401-caseStudy-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .lp2401-caseStudy-title {
    display: flex;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .lp2401-caseStudy-image {
    display: flex;
    width: 60%;
    height: 60%;
    position: relative;
    padding: 40px 80px;
    margin-bottom: 40px !important;
    background-image: url(./assets/lp2401/images/caseStudy-bg.svg);
    background-position: center center;
  }

  .lp2401-caseStudy-image-main {
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 60%;
    height: auto;
    z-index: 10;
  }

  .lp2401-caseStudy-image-main img {
    width: 60%;
    height: auto;
  }

  .lp2401-caseStudy-image-bg {
    display: flex;
    z-index: 1;
  }

  .lp2401-caseStudy-statement {
    display: flex;
    width: 60%;
    font-size: 0.84em;
    font-weight: 500;
  }

  #slick-slider {
    max-width: 100%;
    margin: 0 auto;
  }

  #slick-slider2 {
    max-width: 100%;
    margin: 0 auto;
  }

  #slick-slider3 {
    max-width: 100%;
    margin: 0 auto;
  }

  /* lp2401-philosophy */

  .lp2401-philosophy {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .lp2401-philosophy-top-title {
    display: flex;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 80px;
    text-align: center;
  }

  .lp2401-philosophy-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    width: 80%;
    margin-bottom: 80px;
  }

  .lp2401-philosophy-box.lp2401-reverse {
    flex-direction: row-reverse;
  }

  .lp2401-philosophy-headLine {
    display: flex;
    flex-direction: column;
    font-size: 1.5em;
    width: 48%;
    margin-right: 4%;
    margin-left: 0;
    position: relative;
  }

  .lp2401-reverse .lp2401-philosophy-headLine {
    margin-right: 0;
    margin-left: 4%;
  }

  .lp2401-philosophy-headLine-title {
    display: flex;
    font-size: 3em;
    line-height: 1em;
    position: absolute;
    top: -60px;
    left: -44px;
    color: #fe4291;
  }

  .lp2401-reverse .lp2401-philosophy-headLine-title {
    right: -44px;
    left: auto;
  }

  .lp2401-philosophy-headLine-image {
    display: flex;
  }

  .lp2401-philosophy-text {
    display: flex;
    flex-direction: column;
    width: 48%;
  }

  .lp2401-philosophy-text-title {
    display: flex;
    font-size: 1.6em;
    color: #fe4291;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0.5em;
  }

  .lp2401-philosophy-text-statement {
    display: flex;
    font-weight: 500;
  }

  /* lp2401-zokuzoku */

  .lp2401-stadium-image {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 400px;
  }

  .lp2401-stadium-image img {
    width: 80%;
    position: absolute;
    top: -20vw;
    z-index: 1;
  }

  .lp2401-zokuzoku {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .lp2401-zokuzoku-top-title {
    display: flex;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fe4291;
  }

  .lp2401-zokuzoku-top-statement {
    display: flex;
    width: auto;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .lp2401-zokuzoku-cases-box {
    display: flex;
    width: 100%;
    height: 600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
  }

  .lp2401-zokuzoku-cases-icon {
    display: flex;
    position: absolute;
  }

  .lp2401-zokuzoku-cases-1 {
    top: 0%;
    left: 5%;
    width: 25%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-2 {
    top: 5%;
    left: 60%;
    width: 25%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-3 {
    top: 40%;
    left: 52%;
    width: 20%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-4 {
    top: 40%;
    left: 0%;
    width: 20%;
  }

  .lp2401-zokuzoku-cases-5 {
    top: 78%;
    left: 3%;
    width: 25%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-6 {
    top: 30%;
    left: 75%;
    width: 20%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-7 {
    top: 10%;
    left: 30%;
    width: 20%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-8 {
    top: 64%;
    left: 29%;
    width: 25%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-9 {
    top: 70%;
    left: 70%;
    width: 20%;
    transform: translate(-50%, -50%);
  }

  .lp2401-zokuzoku-cases-title {
  }

  .lp2401-contact-button {
    positon: relative;
    z-index: 100;
  }

  .lp2401-contact-button-box {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 120px;
    z-index: 100;
  }

  .lp2401-contact-button-box img {
  }

  .lp2401-contact-button-box img:hover {
    opacity: 0.8;
  }

  .lp2401-contact-button-box img:active {
    opacity: 0.5;
  }

  .lp2401-contact-button p {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 0.6em;
    font-weight: 700;
    color: #fe4291;
    z-index: 105;
    transform: translate(-36%, -164%);
    text-align: center;
  }

  /* zokuzoku-modal */

  .modal-container1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container1:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container1.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container2:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container2.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container3:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .modal-container3.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container4:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container4.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container5:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container5.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container6 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container6:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container6.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container7:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container7.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-container7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
  }

  .modal-container7:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .modal-container7.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    width: 90%;
  }

  .modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }

  .modal-content {
    background: #0033ff;
    text-align: left;
    padding: 30px;
  }

  .zokuzoku-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .zokuzoku-container-image {
    display: flex;
    width: 100%;
    padding-bottom: 40px;
  }

  .zokuzoku-container-title {
    display: flex;
    font-size: 1.5em;
    font-weight: 700;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
  }

  .zokuzoku-container-text {
    display: flex;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    line-height: 2em;
    color: white;
    margin-bottom: 0;
  }

  /* lp2401-contact */

  .lp2401-contact {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 80px;
  }

  .lp2401-contact-box {
    display: flex;
    width: 30%;
    flex-direction: column;
    align-items: center;
    background-color: #fe4291;
    padding: 20px 20px 12px 20px;
  }

  .lp2401-contact-box-title {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .lp2401-contact-box-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
  }

  .lp2401-contact-box-content-title {
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .lp2401-contact-box-content-text {
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

/* SP */

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .lp2401-vision {
    font-size: 12vw;
  }

  .lp2401-vision-statement {
    font-size: 4vw;
  }

  /* butterfly-origin */

  .lp2401-origin-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    writing-mode: vertical-rl;
    margin-bottom: 8em;
    position: relative;
  }

  .lp2401-origin-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 80%;
  }

  .lp2401-origin {
    padding: 0 0 0 0;
    z-index: 2;
  }

  /* butterfly-openTheWOrld */

  .lp2401-openTheWorld {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
  }

  .lp2401-openTheWorld-top-title {
    display: flex;
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 160px;
  }

  .lp2401-openTheWorld-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 280px;
    position: relative;
    width: 80%;
  }

  .lp2401-openTheWorld-bg {
    display: flex;
    width: 100px;
    position: absolute;
    margin-bottom: 60px;
    pointer-events: none;
  }

  .lp2401-openTheWorld-bg-left {
    top: 70%;
    left: 22%;
    width: 70%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
  }

  .lp2401-openTheWorld-bg-right {
    top: 70%;
    left: 78%;
    width: 70%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
  }

  .lp2401-openTheWorld-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    width: 35%;
    position: relative;
    z-index: 2;
  }

  .lp2401-openTheWorld-title {
    display: flex;
    width: auto;
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 8px;
    color: white;
  }

  .lp2401-openTheWorld-statement {
    display: flex;
    font-size: 1em;
    font-weight: 500;
    color: white;
  }

  .lp2401-openTheWorld-message {
    display: flex;
    justify-content: space-between;
    font-size: 2em;
    font-weight: 700;
    color: #fe4291;
    width: 100%;
    position: relative;
  }

  .lp2401-openTheWorld-bar-left {
    width: 10%;
    height: 10%;
  }

  .lp2401-openTheWorld-bar-right {
    width: 10%;
    height: 10%;
  }

  .lp2401-contact-box {
    width: 80%;
  }
}
