*{
  box-sizing: border-box;
}

img{
  max-width: 100%;
  height: auto;
}

.inner{
  max-width: 1208px;
  margin: 50px auto;
}

.container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .container{
    display: block;
  }
}

.card{
  width: 475px;
  display: flex;
  box-shadow: 1px 1px 5px #000;
  padding-left: 4%;
}

@media screen and (max-width: 768px) {
  .card{
    width: 80%;
    margin: 0 auto;
  }
}

.p-service__headline{
  max-width: 475px;
}

.explanation{
  width: 60%;
}


@media screen and (max-width: 767px) {
  .explanation p{
    font-size: 14px;
  }
}

.thumbnail {
  width: 40%;
  min-height: 350px;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  background:no-repeat center / 100% 100%,#fff;

}

.thumbnail[data-bg="img01"]{
  background-image: url(../images/service-production-bg@2x.png);
}
.thumbnail[data-bg="img02"]{
  background-image: url(../images/service-operation-bg@2x.png);
}
.thumbnail[data-bg="img03"]{
  background-image: url(../images/service-seminar-bg@2x.png);
}
.thumbnail[data-bg="img04"]{
  background-image: url(../images/service-marketing-bg@2x.png);
}

@media screen and (max-width: 767px) {
  .thumbnail{
    background-size: cover;
    background-position: center;
  }
}

.thumbnail img{
  display: block;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .rightBlock{
    margin-top: 50px;
  }
}

.p-mv{
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 150px 0 50px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-mv{
    aspect-ratio: 9 / 16;
  }
}

.p-mv::before{
  content: '';
  position: absolute;
  top: 17%;
  left: 0;
  width: 20%;
  height: 150%;
  background: rgb(124,76,60);
  background: linear-gradient(0deg, rgba(124,76,60,1) 0%, rgba(155,114,100,1) 50%, rgba(245,240,200,1) 100%);
  z-index: 3;
  clip-path: inset(0 0 100% 0);
  animation: lightIn .5s linear 1 forwards;
}
@media screen and (max-width: 767px) {
  .p-mv::before{
    width: 40%;
    top: 20%;
  }
}

.p-mv::after{
  content: '';
  position: absolute;
  top: -157%;
  left:22%;
  width: 52%;
  height: 295%;
  background: rgb(32,73,136);
  background: linear-gradient(0deg, rgba(32,73,136,1) 0%, rgba(92,142,194,1) 50%, rgba(245,240,200,1) 100%);
  clip-path: inset(0 0 100% 0);
  animation: lightIn .5s linear 1 .3s forwards;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-mv::after{
    width: 130%;
    top: -125%;
  }
}

.p-mv-color-block{
  position: absolute;
  top: -55%;
  left: 13%;
  width: 35%;
  height: 230%;
  background: rgb(133,79,62);
  background: linear-gradient(0deg, rgba(133,79,62,1) 0%, rgba(225,152,110,1) 50%, rgba(245,240,200,1) 100%);
  clip-path: inset(0 0 100% 0);
  animation: lightIn .5s linear 1 .2s forwards;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-mv-color-block{
    width: 68%;
    top: -42%;
  }
}

.p-mv::before,
.p-mv::after,
.p-mv-color-block{
  transition: clip-path .5s ease;
  transform: rotate(305deg);
}

.l-inner.p-mv__wrapper{
  z-index: 10;
  position: relative;
}

@keyframes lightIn {
  from{
    clip-path: inset(0 0 100% 0);
  }
  to{
    clip-path: inset(0);
  }
}

/* strength部分 */
.p-circle__image{
  position: relative;
}
.p-circle-large{
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: solid 1px #000;
}
@media screen and (max-width: 1024px) {
  .p-circle-large{
    width: 63vw;
    max-width: 620px;
    height: 63vw;
    max-height: 620px;
    transform: translateX(-50%);
  }
}
.p-circle-large.on{
  animation: strengthRotate 3s ease-in-out 1 forwards;
}
.p-circle-small{
  position: absolute;
  top: 18%;
  left: 15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: solid 1px #000;
  transform: rotate(360deg);
}
@media screen and (max-width: 1024px) {
  .p-circle-small{
    width: 45vw;
    max-width: 420px;
    height: 45vw;
    max-height: 420px;
  }
}
.p-circle-small.on{
  animation: strengthRotate 3s ease-out 1 forwards;
}

.p-circle-small::before{
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(145deg);
  background-color: #000;
  margin: -4px auto 0;
}

.p-circle-large::before{
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(145deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #000;
  margin: -4px auto 0;
}

@keyframes strengthRotate {
  from{
    transform: rotate(360deg);
  }
  to{
    transform: rotate(45deg);
  }
}

/* ===========================================
	seminarページ用css start 
	===========================================	*/

.p-seminar__header {
	background: none;
	}
	@media screen and (min-width: 768px) {
	.p-seminar__header {
		background: -webkit-gradient(linear, left bottom, left top, from(rgb(133, 79, 62)), color-stop(50%, rgb(225, 152, 110)), to(rgb(245, 240, 200)));
		background: linear-gradient(0deg, rgb(133, 79, 62) 0%, rgb(225, 152, 110) 50%, rgb(245, 240, 200) 100%);
	}
	}
.p-seminar__title {
	font-size: 30px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgb(133, 79, 62)), color-stop(50%, rgb(225, 152, 110)), to(rgb(245, 240, 200)));
	background: linear-gradient(0deg, rgb(133, 79, 62) 0%, rgb(225, 152, 110) 50%, rgb(245, 240, 200) 100%);
	padding-bottom: 20px;
  }
  .p-seminar__title::after {
	content: "セミナー";
  }
  @media screen and (min-width: 768px) {
	.p-seminar__title {
	  background: none;
	  font-size: 40px;
	  padding-top: 5.6%;
	  padding-bottom: 0;
	}
  }
  
  .p-seminar__breadcrumbs {
	color: #333;
  }
  @media screen and (min-width: 768px) {
	.p-seminar__breadcrumbs {
	  color: #cccccc;
	}
  }

.l-about-seminar{
	background-image: url(../images/seminar-bg-sp.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 34px;
	padding-top: 27px;
	padding-bottom: 40px;
	background-position: center;
}

.p-about-seminar__title{
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	.l-about-seminar {
		background-image: url(../images/seminar-bg.png);
		margin-top: 45px;
		padding-bottom: 160px;
		padding-top: 51px;
	}
	
	.p-about-seminar__title{
		font-size: 40px;
	}
}

.p-about-seminar___body{
	position: relative;
	margin-top: 32px;
	padding-top: 18px;
	padding-left: 16px;
	opacity: 0;
	-webkit-transform: translateY(150px);
    transform: translateY(150px);
  	-webkit-transition: all 0.5s ease;
  	transition: all 0.5s ease;
}

.p-about-seminar___body.is-active{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.p-about-seminar___body::before{
	content: "";
    display: inline-block;
    background: #ff9f1c;
	width: 84px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
}

.p-about-seminar__wrapper{
	position: relative;
	background-color: #fff;
	padding: 21px 20px 14px 16px;
	font-size: 14px;
	letter-spacing: 0.08em;
	line-height: 1.33;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.p-about-seminar___body{
		position: relative;
		margin-top: 92px;
		padding-top: 45px;
		padding-left: 55px;
		opacity: 0;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		  -webkit-transition: all 0.5s ease;
		  transition: all 0.5s ease;
	}

	.p-about-seminar___body::before{
		width: 320px;
		height: 207px;
	}

	.p-about-seminar__wrapper{
		padding: 80px 89px 80px 81px;
		font-size: 18px;
		min-height: 282px;
	}
}

.l-feature{
	margin-top: 70px;
	padding-bottom: 71px;
}

.p-feature__title{
	font-size: 18px;
	opacity: 0;
	-webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  	-webkit-transition: all 0.5s ease;
  	transition: all 0.5s ease;
}

.p-feature__title.is-active{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

@media screen and (min-width: 768px) {
	.l-feature{
		margin-top: 50px;
		padding-bottom: 106px;
	}

	.p-feature__title{
		font-size: 40px;
	}
}

.p-feature__block{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 38px;
}

.p-card--seminar{
	width: 300px;
	max-width: 100%;
}

@media screen and (min-width: 768px) {

	.p-feature__block{
		flex-direction: row;
		justify-content: space-between;
		margin-top: 116px;
	}
	
	.p-card--seminar{
		width: calc((100% - 42px) / 3 );
		align-self:stretch;
	}
}

.p-card__explanation--seminar{	
	padding: 16px 20px 20px 25px;
	width: auto;
}

.p-card__headline--seminar{
	display: flex;
	align-items: flex-end;
	font-size: 14px;
	border-bottom: 1px solid #ff9f1c;
	position: relative;
	width: 100%;
	min-height: 38px;
	margin-bottom: 20px;
	padding: 0 0 6px 60px;
	text-shadow: 1px 1px 2px #FFF;
}

.p-card__headline--seminar > span{
	font-family: "Lato", sans-serif;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 36px;
	font-weight: 500;
	color: #ff9f1c;
	z-index: -1;
}

@media screen and (min-width: 768px) {
	.p-card__explanation--seminar{
		padding: 56px 43px 20px 40px;
	}
	
	.p-card__headline--seminar{
		font-size: 18px;
		justify-content: center;
		text-align: center;
		min-height: 48px;
		padding: 0 0 6px 0;
	}

	.p-card__headline--seminar > span{
		bottom: -4px;
		font-size: 72px;
	}
}


.l-voice {
	background: #f3f3f4;
	padding-top: 35px;
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
  }
  
  @media screen and (min-width: 768px) {
	  .l-voice {
		  padding-top: 95px;
		  padding-bottom: 93px;
		}
	}

	@media screen and (min-width: 1024px) {
	  .l-voice {
		background: #f3f3f4;
	  }
	}


  .p-voice__body::before {
	content: "";
	width: 36.5vw;
	max-width: 200px;
	height: 830vw;
	background-color: #fff;
	margin: 0 auto;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
	-webkit-transition: -webkit-clip-path 3s ease;
	transition: -webkit-clip-path 3s ease;
	transition: clip-path 3s ease;
	transition: clip-path 3s ease, -webkit-clip-path 3s ease;
	-webkit-box-shadow: 0px 11px 21.6px 2.4px rgba(102, 102, 102, .21);
	box-shadow: 0px 11px 21.6px 2.4px rgba(102, 102, 102, .21);
	position: absolute;
	top: -23vw;
	left: -61vw;
	z-index: 0;
  }
  @media screen and (min-width: 1024px) {
	.p-voice__body::before {
	  width: 340px;
	  height: 3000px;
	  top: 75px;
	  left: calc(50vw - 800px);
	  -webkit-transition: -webkit-clip-path 5s ease;
	  transition: -webkit-clip-path 5s ease;
	  transition: clip-path 5s ease;
	  transition: clip-path 5s ease, -webkit-clip-path 5s ease;
	}
  }
  
  .p-voice__body.is-active::before {
	-webkit-clip-path: inset(0);
			clip-path: inset(0);
  }
  
  .p-voice__wrapper {
	overflow: hidden;
	padding-top: 30px;
  }
  @media screen and (min-width: 1024px) {
	.p-voice__wrapper {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-pack: distribute;
		  justify-content: space-around;
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	  position: relative;
	  z-index: 10;
	  padding-top: 63px;
	  padding-left: 100px;
	}
  }
  
  .p-voice__block {
	width: 100%;
	position: relative;
  }
  
  .p-voice__title {
	max-width: 1208px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	opacity: 0;
	-webkit-transform: translateX(-150px);
			transform: translateX(-150px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-size: 18px;
  }
  .p-voice__title.is-active {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }
  @media screen and (min-width: 1024px) {
	.p-voice__title {
		font-size: 40px;
	  background: #f3f3f4;
	  line-height: 1.5;
	}
  }
  
  @media screen and (min-width: 1024px) {
	.p-voice__block:nth-child(2) {
	  margin-top: 50px;
	}
  }

  .p-card--voice{
	width: 400px;
	max-width : 100%;
	padding: 17px 21px 20px 15px;
	position: relative;
}

@media screen and (min-width: 768px) {
	.p-card--voice{
		width: 600px;
		padding: 34px 65px 46px 67px;
	}
}

@media screen and (min-width: 1024px) {
	.p-card--voice{
		width: 862px;
		padding: 34px 65px 46px 67px;
	}
}

.p-card--voice:nth-child(1),.p-card--voice:nth-child(2),.p-card--voice:nth-child(3){
	margin-left: auto;
	margin-right: auto;
	transform: translateX(0);
  }

  .p-card--voice:nth-child(2){
	margin-top: 35px;
  }

  .p-card--voice:nth-child(3){
	margin-top: 35px;
  }

  .p-card__explanation--voice{
	width: 100%;
	padding: 0;
  }

  @media screen and (min-width: 1024px) {
	
	.p-card--voice:nth-child(1){
		margin-left: 40px;
	  }
	
	  .p-card--voice:nth-child(2){
		transform: translateX(20px);
		margin-top: 40px;
	  }
	
	  .p-card--voice:nth-child(3){
		margin-right: 0;
		margin-top: 40px;
	  }
	
	  .p-card__explanation--voice{
		width: 80%;
		padding: 0 0 0 72px;
	}
	
  }
  
  .p-card__icon {
	background-size: cover;
	background-position: center;
	width: 45px;
	height: 53px;
	position: absolute;
	left: 39px;
  }

  @media screen and (min-width: 768px) {
	.p-card__icon {
		width: 91px;
		height: 106px;
		left: 75px;
	}
  }

  @media screen and (min-width: 1024px) {

	.p-card__icon {
		width: 131px;
		height: 153px;
		position: static;
	  }
  }

  
  .p-card__icon[data-bg=img01] {
	background-image: url(../images/voice-1.png);
  }
  
  .p-card__icon[data-bg=img02] {
	background-image: url(../images/voice-2.png);
  }
  
  .p-card__icon[data-bg=img03] {
	background-image: url(../images/voice-3.png);
  }

  .p-card__headline--voice{
	font-size: 13px;
	margin-bottom: 23px;
	padding-top: 32px;
	padding-left: 93px;
  }
  
  .p-card__text--voice{
	font-size: 14px;
	font-weight: bold;
  }

  @media screen and (min-width: 768px) {
	.p-card__headline--voice{
		font-size: 25px;
		margin-bottom: 40px;
		padding-top: 55px;
		padding-left: 140px;
	}	
}

  @media screen and (min-width: 1024px) {
	 .p-card__headline--voice{
		margin-bottom: 20px;
		padding: 0;
	}
	
	.p-card__text--voice{
		font-size: 14px;
		font-weight: bold;
	}
}

  .l-next-event{
	padding: 84px 1.25rem 0;
	position: relative;
  }

  .p-next-event{
	display: flex;
	flex-direction: column;
	align-items: center;
  }

  @media screen and (min-width: 768px) {
	.l-next-event{
		padding: 160px 20px 0;
	}

	.p-next-event{
		max-width: 1280px;
		margin: 0 auto;
		align-items: start;
		flex-direction: row-reverse;
	}
 }

  .p-next-event__content{
	width: 100%;
	padding-right: 1.25rem;
	padding-left: 1.25rem;
	margin-right: auto;
	margin-left: auto;
  }

    .p-next-event__image{
	box-shadow: -12px 0px 13.9px 2.1px rgba(153, 153, 153, 0.21);
	background-color: #fff;
	margin-top: 25px;
	opacity: 0;
	-webkit-transform: translateY(150px);
			transform: translateY(150px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }

  .p-next-event__image.is-active {
	opacity: 1;
	-webkit-transform: translateY(0);
			transform: translateY(0);
  }
 
  .p-next-event__title{
	font-size: 18px;
	margin-bottom: 33px;
	opacity: 0;
	-webkit-transform: translateX(-150px);
			transform: translateX(-150px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }

  .p-next-event__title.is-active {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }

  @media screen and (min-width: 768px) {
	.p-next-event__title{
		font-size: 25px;
		margin-bottom: 40px;
	}
  }

  .p-next-event__text{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.71;
	opacity: 0;
	-webkit-transform: translateX(-150px);
			transform: translateX(-150px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }

  .p-next-event__text.is-active {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }

  @media screen and (min-width: 768px) {
	.p-next-event__body{
		padding-top: 18px;
		width: 604px;
		height: 67.083vw;
		max-height: 966px;
		max-width: 42%;
		position: relative;
		filter: drop-shadow(-12px 0px 13.9px rgba(102, 102, 102, 0.21));
	  }
	
	  .p-next-event__content{
		width: auto;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		padding: 0 20px 0 0;
		margin: 0;
		z-index: 10;
	  }
	  .p-next-event__body::before{
		content: '';
		position: absolute;
		display: block;
		background-color: rgba(255, 255, 255, 0.38);
		-webkit-clip-path: polygon(40% 0%,100% 0%, 100% 100%, 0% 100%);
		clip-path: polygon(40% 0%,100% 0%, 100% 100%, 0% 100%);
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	  }
	  .p-next-event__body::after{
		content: '';
		position: absolute;
		display: block;
		width: 833px;
		max-width: 138%;
		  height: 779px;
		background-color: rgba(255, 255, 255, 0.53);
		-webkit-clip-path: polygon(23% 0%,100% 0%, 100% 100%, 0% 100%);
		clip-path: polygon(23% 0%,100% 0%, 100% 100%, 0% 100%);
		right: 0;
		top: 122px;
		z-index: 2;
	  }

	  .p-next-event__image{
		margin-right: 55px;
		position: relative;
		z-index: 20;
		margin-top: 0;
	  }
 }

  .l-past-event{
	padding-top: 85px;
	padding-bottom: 80px;
  }

  @media screen and (min-width: 768px) {
	.l-past-event{
	  padding-top: 160px;
	  padding-bottom: 0;
	}
  }

  .p-past-event__title{
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 10;	
	opacity: 0;
	-webkit-transform: translateY(150px);
			transform: translateY(150px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }

  .p-past-event__title.is-active {
	opacity: 1;
	-webkit-transform: translateY(0);
			transform: translateY(0);
  }

  .js-swiper-seminar{
	overflow: hidden;
  }

  .p-past-event__wrapper{
	filter: drop-shadow(-12px 0px 13.9px rgba(102, 102, 102, 0.21));
  }

  .p-past-event__wrapper::before{
	content: '';
	position: absolute;
	display: block;
	background-color: rgba(255, 255, 255, 0.38);
	-webkit-clip-path: polygon(55% 0%,100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(55% 0%,100% 0%, 100% 100%, 0% 100%);
	right: 0;
	top: -58px;
	width: 240px;
	max-width : 60%;
	height: 100%;
	z-index: -1;
  }

  .p-past-event__wrapper::after{
	content: '';
	position: absolute;
	display: block;
	width: 355px;
	max-width: 90%;
	height: 390px;
	background-color: rgba(255, 255, 255, 0.53);
	-webkit-clip-path: polygon(25% 0%,100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(25% 0%,100% 0%, 100% 100%, 0% 100%);
	right: 0;
	top: 0;
	z-index: 0;
  }

   .p-swiper-seminar__body{
		box-shadow: -12px 0px 13.9px 2.1px rgba(153, 153, 153, 0.21);
		/* 画像サイズに合わせて調整ください */
	}

   .p-swiper-seminar__body img {
		width: 100%;
	}


@media screen and (max-width: 769px) {
	.p-past-event__wrapper{
		position: relative;
		padding: 0;
	}
}

.p-past-event__block{
	margin-top: 40px;
}

 @media screen and (min-width: 768px) {
	.p-past-event__wrapper::before,.p-past-event__wrapper::after{
		content: none;
		width: 650px;
	  }

	  .p-swiper-seminar__body{
			/* 画像サイズに合わせて調整ください */
			width: calc((100% - 100px) / 3);
    	}

		.p-past-event__block{
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-top: 80px;
		}
		
	}
	
	@media screen and (min-width: 1024px) {
		.p-swiper-seminar__body{
			/* 画像サイズに合わせて調整ください */
			width: calc((100% - 198px) / 3);
    	}
	}

/* ===========================================
	seminarページ用css end
	===========================================	*/