@charset "UTF-8";
* {
  box-sizing: border-box;
  color: var(--black, #323232);
  font-family: "Hiragino Sans";
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

body {
  margin: 0;
  padding: 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  /*
  color: #20315B;
  */
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

section {
  padding: 120px 20px;
}
section.header, section.header2 {
  padding: 0;
}
section.mv {
  padding: 0 20px;
}
section.footer {
  padding: 16px 20px 12px;
}
section > .contents {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
section > .contents .left {
  padding-left: 15px;
}
@media (max-width: 767px) {
  section {
    padding: 80px 20px;
  }
  section > .contents .left {
    padding-left: 0;
  }
}

.font1 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.btn1,
.btn2 {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 64px;
  box-shadow: 0px 4px 20px 0px rgba(50, 68, 122, 0.4);
  position: relative;
  /*
  	&::before,
  	&::after {
  		content: "";
  		display: block;
  		width: 100%;
  		height: 100%;
  		position: absolute;
  		top: 0;
  		left: 0;
  		z-index: 1;
  		border-radius: 64px;
  		opacity: 0;
  		transition: 0.5s;
  	}
  */
}
.btn1 .on,
.btn1 .off,
.btn2 .on,
.btn2 .off {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 64px;
  transition: 0.2s;
}
.btn1 .on > p,
.btn1 .off > p,
.btn2 .on > p,
.btn2 .off > p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.96px;
  margin: 0;
}
.btn1 .off {
  background: linear-gradient(248deg, #F0F3FE 0%, #FFF 21.04%, #FFF 58.22%, #FCF0FE 98.49%);
  opacity: 1;
}
.btn1 .off > p {
  background: linear-gradient(91deg, #5D7DD1 5.89%, #B667DB 51.21%, #5943DD 99.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn1 .on {
  background: linear-gradient(86deg, #7E5CDD 18.65%, #5C71DD 129.92%);
  opacity: 0;
}
.btn1 .on > p {
  color: #FFF;
}
.btn1:hover .off {
  opacity: 0;
}
.btn1:hover .on {
  opacity: 1;
}

.btn2 {
  /*
  	background: linear-gradient(86deg, #7E5CDD 18.65%, #5C71DD 129.92%);
  	> p {
  		color: #FFF;
  	}
  	&:hover {
  		background: linear-gradient(248deg, #F0F3FE 0%, #FFF 21.04%, #FFF 58.22%, #FCF0FE 98.49%);
  		> p {
  			background: linear-gradient(91deg, #5D7DD1 5.89%, #B667DB 51.21%, #5943DD 99.6%);
  			background-clip: text;
  			-webkit-background-clip: text;
  			-webkit-text-fill-color: transparent;	
  		}
  	}
  */
}
.btn2 .off {
  background: linear-gradient(86deg, #7E5CDD 18.65%, #5C71DD 129.92%);
  opacity: 1;
}
.btn2 .off > p {
  color: #FFF;
}
.btn2 .on {
  background: linear-gradient(248deg, #F0F3FE 0%, #FFF 21.04%, #FFF 58.22%, #FCF0FE 98.49%);
  opacity: 0;
}
.btn2 .on > p {
  background: linear-gradient(91deg, #5D7DD1 5.89%, #B667DB 51.21%, #5943DD 99.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn2:hover .off {
  opacity: 0;
}
.btn2:hover .on {
  opacity: 1;
}

.btn_text p {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.44px;
}
.btn_text p span {
  color: #FFF;
  text-decoration: underline;
}

.text1 {
  color: #FFF;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 1.62px;
}

.text2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 56px; /* 140% */
  letter-spacing: 2.4px;
}
@media (max-width: 767px) {
  .text2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    letter-spacing: 1.44px;
  }
}

.text3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .text3 {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.78px;
  }
}

.text4 {
  color: #C1CDEE;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
}
@media (max-width: 767px) {
  .text4 {
    font-size: 10px;
  }
}

h1 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.88px;
  margin: 0;
  margin-bottom: 64px;
  white-space: nowrap;
}

h2 {
  margin: 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.header,
.header2 {
  position: fixed;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.header .contents,
.header2 .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1230px;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.header .contents .btn_wrap,
.header2 .contents .btn_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: end;
  width: 100%;
}
.header .contents .btn_wrap .btn_login,
.header2 .contents .btn_wrap .btn_login {
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.header .contents .btn_wrap .btn_login p,
.header2 .contents .btn_wrap .btn_login p {
  color: #fff;
}
.header .contents .btn_wrap .btn1,
.header .contents .btn_wrap .btn2,
.header2 .contents .btn_wrap .btn1,
.header2 .contents .btn_wrap .btn2 {
  max-width: 160px;
  width: 100%;
}
@media (max-width: 767px) {
  .header .contents,
  .header2 .contents {
    height: 64px;
  }
  .header .contents .logo img,
  .header2 .contents .logo img {
    width: 120px;
  }
  .header .contents .btn_wrap .btn_login,
  .header2 .contents .btn_wrap .btn_login {
    font-size: 13px;
    max-width: 100px;
  }
  .header .contents .btn_wrap .btn1,
  .header .contents .btn_wrap .btn2,
  .header2 .contents .btn_wrap .btn1,
  .header2 .contents .btn_wrap .btn2 {
    height: 40px;
    max-width: 120px;
  }
  .header .contents .btn_wrap .btn1 p,
  .header .contents .btn_wrap .btn2 p,
  .header2 .contents .btn_wrap .btn1 p,
  .header2 .contents .btn_wrap .btn2 p {
    font-size: min(0.82em, 3vw);
    font-weight: 600;
    letter-spacing: 0.78px;
  }
}

.header2 {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.header2 .contents .btn_wrap .btn_login p {
  color: var(--black, #323232);
}

.header,
.header2 {
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-name: slideout;
}
.header.is-active,
.header2.is-active {
  animation-name: slidein;
}

/* MV */
.mv {
  width: 100%;
  height: 800px;
  background: url("../img/lp/mv_bg.png") right top no-repeat;
  position: relative;
}
.mv .content {
  padding: 250px 0 0 120px;
}
.mv .content .text1 {
  margin-bottom: 16px;
}
.mv .content .btn1 {
  max-width: 240px;
  height: 64px;
  margin-bottom: 24px;
}
.mv .content .btn1 p {
  font-size: 22px;
}
@media (max-width: 767px) {
  .mv {
    background: url("../img/lp/mv_bg_sp.png") left bottom no-repeat;
    background-size: cover;
  }
  .mv .content {
    padding: 0;
    padding-top: 100px;
    text-align: center;
  }
  .mv .content .text1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
  }
  .mv .content h1 {
    font-size: min(27px, 7vw);
    font-weight: 700;
    letter-spacing: 1.62px;
    margin-bottom: 32px;
  }
  .mv .content .btn1 {
    max-width: 200px;
    height: 56px;
    margin: 0 auto 16px;
  }
  .mv .content .btn1 p {
    font-size: 20px;
  }
  .mv .content .btn_text p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
  }
}

/* 可能性 */
.possibility {
  background: linear-gradient(112deg, #F4F7FF 6.77%, #ECE2FD 47.08%, #CDD8FB 93.56%);
}
.possibility .contents .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 64px;
}
.possibility .contents ul {
  display: flex;
  flex-direction: row;
  margin-bottom: 64px;
  gap: 15px;
}
.possibility .contents ul li {
  width: 20%;
  /*
  				opacity: 0;
  				&.is-active {
  					animation-duration: 1s;
  					animation-fill-mode: forwards;
  					animation-name: fadein;
  				}
  */
}
.possibility .contents ul li img {
  width: 100%;
  box-shadow: 0px 4px 20px 0px rgba(89, 121, 206, 0.5);
}
.possibility .contents ul li:last-child {
  display: none;
  opacity: 0;
}
.possibility .contents ul li:last-child img {
  opacity: 0;
}
@media (max-width: 767px) {
  .possibility .contents .title {
    flex-direction: column;
    margin-bottom: 35px;
  }
  .possibility .contents .title h2 {
    margin-bottom: 32px;
  }
  .possibility .contents .title h2 img {
    width: 298px;
  }
  .possibility .contents ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .possibility .contents ul li {
    max-width: 160px;
    width: calc(50% - 7.5px);
  }
  .possibility .contents ul li:last-child {
    display: block;
  }
}

/* ムビコマとは */
.about {
  background: linear-gradient(248deg, #F0F3FE 0%, #FFF 21.04%, #FFF 58.22%, #FCF0FE 98.49%);
}
.about .contents {
  display: flex;
  gap: 80px;
}
.about .contents .left {
  flex: 1;
}
.about .contents .left h2 {
  margin-bottom: 54px;
}
.about .contents .left .text2 {
  margin-bottom: 32px;
}
.about .contents .right {
  width: 50%;
}
.about .contents .right ul {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.about .contents .right ul li {
  width: 100%;
  min-height: 216px;
  display: flex;
  justify-content: left;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(89, 121, 206, 0.5);
  /*
  					opacity: 0;
  					&.is-active {
  						animation-duration: 1s;
  						animation-delay: 1s;
  						animation-fill-mode: forwards;
  						animation-name: fadein_right;
  					}
  */
}
.about .contents .right ul li:nth-child(1) {
  background: url("../img/lp/about_img01.svg") right bottom no-repeat;
}
.about .contents .right ul li:nth-child(1) p::before {
  background: url("../img/lp/no1.svg") center center no-repeat;
}
.about .contents .right ul li:nth-child(2) {
  background: url("../img/lp/about_img02.svg") right bottom no-repeat;
}
.about .contents .right ul li:nth-child(2) p::before {
  background: url("../img/lp/no2.svg") center center no-repeat;
}
.about .contents .right ul li:nth-child(3) {
  background: url("../img/lp/about_img03.svg") right bottom no-repeat;
}
.about .contents .right ul li:nth-child(3) p::before {
  background: url("../img/lp/no3.svg") center center no-repeat;
}
.about .contents .right ul li p {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  letter-spacing: 1.44px;
  margin-left: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .contents .right ul li p::before {
  content: "";
  width: 56px;
  height: 80px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .about .contents {
    flex-direction: column;
    gap: 0;
  }
  .about .contents .left {
    margin-bottom: 40px;
  }
  .about .contents .left h2 {
    margin-bottom: 32px;
  }
  .about .contents .left h2 img {
    width: 163px;
  }
  .about .contents .left .text2 {
    margin-bottom: 40px;
  }
  .about .contents .right {
    width: 100%;
  }
  .about .contents .right ul {
    gap: 24px 0;
  }
  .about .contents .right ul li {
    display: block;
    min-height: 240px;
    padding: 28px 0 0 24px;
  }
  .about .contents .right ul li:nth-child(1), .about .contents .right ul li:nth-child(2), .about .contents .right ul li:nth-child(3) {
    background-size: 260px auto;
  }
  .about .contents .right ul li p {
    margin: 0;
    justify-content: start;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
    letter-spacing: 1.08px;
    gap: 16px;
  }
  .about .contents .right ul li p::before {
    width: 40px;
    height: 56px;
    background-size: contain;
  }
}

/* お問い合わせ */
.contact {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), linear-gradient(112deg, #F4F7FF 6.77%, #ECE2FD 47.08%, #CDD8FB 93.56%);
  padding-bottom: 60px;
}
.contact .contents {
  display: flex;
}
.contact .contents .left {
  flex: 1;
  width: 100%;
  width: 100%;
  font-size: 12px;
  overflow: hidden; /*float解除*/
}
.contact .contents .left h2 {
  margin-bottom: 54px;
}
.contact .contents .left .text2,
.contact .contents .left .text3 {
  margin-bottom: 32px;
}
.contact .contents .left .btn2 {
  max-width: 285px;
  margin-bottom: 20px;
}
.contact .contents .left .space {
  float: right; /*画像の位置を右下にしたい場合はright*/
  height: 5.3em; /*画像上の余白の高さ*/
  display: none;
}
.contact .contents .left .img {
  float: right; /*画像の位置を右下にしたい場合はright*/
  clear: both; /*.spaceのfloat解除*/
  width: 40%;
}
.contact .contents .left .img img {
  width: 100%;
}
.contact .contents .right {
  width: 38%;
  /*
  			form {
  				padding: 64px 60px;
  				border-radius: 20px;
  				background: #FFF;
  				box-shadow: 0px 4px 20px 0px rgba(89, 121, 206, 0.50);
  				text-align: center;
  				dl {
  					margin: 0;
  					margin-bottom: 18px;
  					&:nth-child(4) {
  						margin-bottom: 40px;
  					}
  					dt {
  						display: flex;
  						flex-direction: row;
  						gap: 8px;

  						font-size: 14px;
  						font-weight: 500;
  						line-height: 20px;
  						margin-bottom: 8px;
  						&::after {
  							content: "必須";
  							width: 43px;
  							height: 20px;
  							border-radius: 4px;
  							background: #E27BDE;
  							color: #FFF;

  							font-size: 11px;
  							font-weight: 700;
  							line-height: 16px;
  							display: flex;
  							justify-content: center;
  							align-items: center;
  						}
  					}
  					dd {
  						margin: 0;
  						input,
  						textarea {
  							padding: 16px;
  							font-size: 14px;
  							font-weight: 500;
  							line-height: 16px;
  							border-radius: 4px;
  							border: 1px solid #8B8B8B;
  							background: #FFF;
  							&::placeholder {
  								color: #AFAFAF;
  								font-size: 14px;
  								font-weight: 500;
  								line-height: 16px;
  							}
  						}
  						input {
  							width: 100%;
  							height: 48px;
  						}
  						textarea {
  							width: 100%;
  							height: 204px;
  						}
  						.error {
  							color: #F75590;
  							font-size: 12px;
  							font-weight: 500;
  							line-height: 16px;
  							text-align: left;
  							margin-top: 5px;
  						}
  					}
  				}
  				.btn2 {
  					width: 200px;
  					margin: auto;
  				}
  			}
  */
}
.contact .contents .right img {
  width: 100%;
}
@media (max-width: 767px) {
  .contact .contents {
    flex-direction: column;
    gap: 0;
    /*
    .right {
    	width: 100%;
    	form {
    		padding: 48px 20px;
    		dl {
    			&:nth-child(4) {
    				margin-bottom: 32px;
    			}
    		}
    	}
    }*/
  }
  .contact .contents .left {
    margin-bottom: 40px;
  }
  .contact .contents .left .space {
    height: 200px;
    display: block;
  }
  .contact .contents .left h2 {
    margin-bottom: 32px;
    /*
    img {
    	width: 221px;
    }
    */
  }
  .contact .contents .left .text2 {
    margin-bottom: 40px;
    width: 80%;
  }
  .contact .contents .left .btn2 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer {
  background: #413B65;
  width: 100%;
  height: 80px;
  padding: 16px 0 12px;
}
.footer .img {
  width: 208px;
  margin-left: auto;
}
.footer .img img {
  width: 100%;
}
.footer .contents {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 40px;
}
.footer .contents .logo {
  width: 100%;
}
.footer .contents p,
.footer .contents a {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer {
    height: 72px;
  }
  .footer .contents {
    gap: 0 20px;
  }
  .footer .contents .logo .img {
    width: 143px;
  }
  .footer .contents p,
  .footer .contents a {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
  }
}

/* アニメーション */
@keyframes slidein {
  from {
    top: -80px;
  }
  to {
    top: 0px;
  }
}
@keyframes slideout {
  from {
    top: 0px;
  }
  to {
    top: -80px;
  }
}
[data-animetion-fadein1] {
  opacity: 0;
}
[data-animetion-fadein1].is-active {
  animation-duration: 1s;
  animation-delay: 0.5ms;
  animation-fill-mode: forwards;
  animation-name: fadein;
}

[data-animetion-fadein2] {
  opacity: 0;
}
[data-animetion-fadein2].is-active {
  animation-duration: 1s;
  animation-delay: 0.5ms;
  animation-fill-mode: forwards;
  animation-name: fadein_right;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_right {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}