/* -----------------------------------------------------------
	mv-area
-------------------------------------------------------------- */
.mv-area {
    width: 100%;
    margin: 0 auto 0;
    padding: 100px 0 100px;
    background: var(--blue);
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.mv-area .mv-left {
    width: 350px;
    padding: 0 0 0 50px;
}
.mv-area .mv-right {
    width: calc( 100% - 450px );
}
.mv-area p.mv-ttl {
    font-size: 4.2rem;
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width: 768px){
	.mv-area {
		width: 100%;
		margin: 0 0 0;
		padding: 20px 20px 40px;
		/*flex-direction: column;*/
		gap: 10px;
    justify-content: space-between;
	}
	.mv-area .mv-left {
		/*width: 100%;
		padding: 0 0 0;*/
    text-align: left;
    width: calc( ( 100% - 10px ) / 2 );
    padding: 0 0 0 0;
	}
	.mv-area .mv-right {
		/*width: 100%;*/
    width: calc( ( 100% - 10px ) / 2 );
	}
	.mv-area p.mv-ttl {
		font-size: 2.2rem;
		text-align: center;
	}
}

/* -----------------------------------------------------------
	splide
-------------------------------------------------------------- */
.splide__slide img{
	width: 400px;
	height: 300px;
	object-fit: cover;
	border-radius: 40px 0 40px 0;
  /*border: solid 2px var(--blue);*/
}
.splide__slide:nth-child(even) img{
	/*margin: 80px 0 0;*/
    margin: 0 0 0;
}

@media screen and (max-width: 1600px){
	
}

@media screen and (max-width: 768px){
	.splide__slide img{
		width: 200px;
		height: auto;
    aspect-ratio: 4/3;
		border-radius: 20px 0 20px 0;
    object-fit: cover;
    object-position: center;
	}
	.splide__slide:nth-child(even) img{
		/*margin: 50px 0 0;*/
        margin: 0 0 0;
	}
}

/* -----------------------------------------------------------
   about-area
-------------------------------------------------------------- */
.about-area {
	padding: 100px 0 100px;
	background: #EFF7FC;
	background: linear-gradient(0deg,rgba(177, 214, 255, 1) 0%, rgba(239, 247, 252, 1) 100%);
}
.about-area .about-flex {
	display: flex;
	justify-content: center;
  align-items: center;
	gap: 30px;
	margin-top: 50px;
}
.about-area .about-flex.re {
	flex-direction: row-reverse;
}
.about-area .about-flex.second {
  margin-top: 50px;
}

.about-area .about-flex .about-img-box {
	width: 350px;
}
.about-area .about-flex .about-img-box img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1/1;
	border-radius: 50%;
}

.about-area .about-flex .about-txt-box {
  width: calc( 100% - 380px );
}
.about-area .about-flex .about-txt-box p.about-en {
	font-size: 1.6rem;
  font-weight: bold;
  color: var(--blue);
}

.about-area .about-flex .about-txt-box p.about-name {
	font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 20px;
}

.about-area .about-flex .about-txt-box .list-box {
  padding-top: 20px;
  margin-top: 20px;
  border-top: solid 1px var(--blue);
}
.about-area .about-flex .about-txt-box .about-sub {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue);
}

.about-area .about-flex .about-txt-box ul.about-list {
  display: flex;
  justify-content: flex-start;
  gap: 0 40px;
  flex-wrap: wrap;
}
.about-area .about-flex .about-txt-box ul.about-list li {
	position: relative;
  padding: 20px 0 0 15px;
	font-size: 1.6rem;
	font-weight: bold;
}
.about-area .about-flex .about-txt-box ul.about-list li::before {
    position: absolute;
    top: 25px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: '';
    background: var(--blue);
}

.about-area .about-flex .about-txt-box .about-detail p.txt {
  line-height: 1.8;
}

.chart-area{/*円グラフがスマホでつぶれないようにする*/
	position: relative;
	width: 450px;
	height: 450px;
}
      
@media screen and (max-width: 768px){
	.about-area {
			padding: 40px 0 40px;
		}
		.about-area .about-flex, .about-area .about-flex.re {
			flex-direction: column;
			gap: 10px;
			margin-top: 20px;
		}
    .about-area .about-flex.second {
      margin-top: 20px;
    }

    .about-area .about-flex .about-img-box {
			width: 100%;
			margin: 0 0 20px;
      text-align: center;
		}
		.about-area .about-flex .about-img-box img {
			width: 80%;
			height: auto;
      margin: 0 auto 0;
		}

    .about-area .about-flex .licence-box {
      flex-direction: column-reverse;
      padding-top: 20px;
      margin-top: 20px;
    }
    .about-area .about-flex .about-txt-box {
      width: 100%;
    }
    .about-area .about-flex .about-txt-box p.about-en {
      font-size: 1.6rem;
      text-align: center;
    }
		.about-area .about-flex .about-txt-box p.about-name {
			font-size: 2rem;
      padding-bottom: 15px;
      text-align: center;
		}

		.about-area .about-flex .about-txt-box .about-sub {
			font-size: 1.8rem;
      text-align: center;
		}
    .about-area .about-flex .about-txt-box ul.about-list li {
      padding: 15px 0 0 15px;
      line-height: 1.5;
    }
    .about-area .about-flex .about-txt-box ul.about-list li::before {
      top: 24px;
  }

    .chart-area{/*円グラフがスマホでつぶれないようにする*/
      width: 100%;
      height:50vh;
      margin: 0 0 60px;
    }

}

/* -----------------------------------------------------------
   work-area
-------------------------------------------------------------- */
.work-area {
  margin: 100px 0 120px;
}
.work-area p.txt {
  text-align: center;
  padding: 30px 0 0;
}
.work-area .work-contain .work-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 70px;
  margin: 50px 0 0;
  padding: 0 150px;
}
.work-area .work-contain .work-list .work-detail {
  width: 250px;
  position: relative;
}
.work-area .work-contain .work-list .work-detail span.work-icon::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  color: #fff;
  font-size: 1.8rem;
  background: var(--blue);
  padding: 7px;
  position: absolute;
  right: 0;
  top: 0;
}
.work-area .work-contain .work-list .work-detail::after {
  content: "";
  position: absolute;
  left: -35px;
  bottom: -35px;
  width: 255px;
  height: 100%;
  border-radius: 40px 0 40px 0;
  background: #fff;
  z-index: -1;
}
.work-area .work-contain .work-list .work-detail.style01::after {
  border: solid 1px var(--blue);
}
.work-area .work-contain .work-list .work-detail.style02::after {
  background: var(--light-blue);
}
.work-area .work-contain .work-list .work-detail.style03::after {
  background: var(--blue);
}
.work-area .work-contain .work-list .work-detail .work-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
}
.work-area .work-contain .work-list .work-detail .work-img a {
  width: 100%;
}
.work-area .work-contain .work-list .work-detail .work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px 0 40px 0;
  transition: 1s all;
}
.work-area .work-contain .work-list .work-detail .work-img:hover img {
  transform: scale(1.1);
}
.work-area .work-contain .work-list .work-detail p.work-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  left: -25px;
  padding: 10px 0 0 0;
}
.work-area .work-contain .work-list .work-detail.style03 p.work-title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .work-area {
    margin: 40px 0 80px;
    padding: 0 20px;
  }
  .work-area p.txt {
    padding: 20px 0 0;
  }
  .work-area .work-contain .work-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    margin: 20px 0 0;
    padding: 0 0 0 30px;
  }
  .work-area .work-contain .work-list .work-detail {
    width: 100%;
    position: relative;
  }
  .work-area .work-contain .work-list .work-detail span.work-icon::after {
    right: 0;
  }
  .work-area .work-contain .work-list .work-detail::after {
    left: -30px;
    bottom: -36px;
    width: 100%;
    height: 100%;
  }
  .work-area .work-contain .work-list .work-detail .work-img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 20px 0;
  }
  .work-area .work-contain .work-list .work-detail.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .work-area .work-contain .work-list .work-detail .work-img img:hover {
    transform: scale(1);
  }
  .work-area .work-contain .work-list .work-detail p.work-title {
    left: -15px;
    padding: 10px 0 0 0;
  }

}

/*------------------------------
contact
--------------------------------*/
#contact {
    padding: 80px 0 80px;
    background: var(--blue);
}
#contact .contact-box {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
#contact .section-title {
  color: #fff;
}
#contact .contact-txt {
	font-size: 1.8rem;
	line-height: 1.8;
	color: #fff;
	text-align: center;
  padding: 30px 0 30px;
}
/*Googleフォームボタン*/
#contact .button-move {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 320px;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 70px;
  background-color: #fff;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: bold;
}
#contact .button-move::after {
  position: absolute;
  right: 2em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: .5em;
  background-color: var(--blue);
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: transform .3s;
}
#contact .button-move:hover {
  opacity: 1;
  background: var(--light-blue);
}
#contact .button-move:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}
@media screen and (max-width: 768px){
  #contact {
    padding: 40px 0 40px;
}
	#contact .contact-box {
	  
	}
	#contact .contact-txt {
		font-size: 1.6rem;
		padding: 30px 0 30px;
	}
	#contact .button-move {
    width: 250px;
    margin: 0 auto;
    font-size: 1.5rem;
  }
	#contact .button-move::after {
	  right: 20px;
	}
}
