@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  vertical-align: baseline;
}
html{
  font-size: 62.5%;
}
html,body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  background-color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position:relative;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 1.6rem;
}
@media screen and (max-width: 749px) {
  body {
    font-size: 1.4rem;
  }
}
a {
  cursor: pointer;
  display: block;
  color: #333333;
  outline: none;
  text-decoration: none;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

ul,li{
    list-style: none;
}
button {
  cursor: pointer;
}
img {
  vertical-align: bottom;
   max-width: 100%;
	height: auto;
}
  .fadein {
    opacity: 0;
    transition: all 1.5s;
    transform: translate(0,50px);
  }
  .scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
.sp-only{
  display: none!important;
}
@media screen and (max-width: 749px) {
  .sp-only{
    display: block!important;
  }
  .pc-only{
    display: none!important;
  }
}

.btn{
  border-radius: 999px;
}
.btn a{
  color:#fff;
  font-size: 1.6rem;
  display: inline-block;
  line-height: 1;
  padding: 2.4rem;
  text-align: center;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  transition: .3s cubic-bezier(.36,.1,.16,1);
  z-index: 1;
  overflow: hidden;
  width:100%;
}
.main-btn{
  background: linear-gradient(to right, #4776e6 0%, #8E55E9 100%);
}
.sub-btn{
  background: linear-gradient(to right, #24C6DC 0%, #4274B2 100%);
}
.main-btn a:after,
.main-btn a:before,
.sub-btn a:after,
.sub-btn a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #4776e6 0%, #8E55E9 100%);
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: .3s cubic-bezier(.36,.1,.16,1);
}
.sub-btn a:after,
.sub-btn a:before {
  background: linear-gradient(to right, #24C6DC 0%, #4274B2 100%);
}
.main-btn a:before,
.sub-btn a:before {
  background: #3BA9B8;
  transform: translateX(-110%);
  z-index: -1;
}

.column-cta-l-img {
    max-width: 650px !important;
}

@media screen and (min-width: 768px) {
  .main-btn a:hover:after,
  .main-btn a:hover:before,
  .sub-btn a:hover:after,
  .sub-btn a:hover:before {
      opacity: 1;
      transform: scale(1.02);
  }
}
@media screen and (min-width: 768px) {
  .main-btn a:hover,
  .sub-btn a:hover  {
      background-position: 0 100%;
  }
}
.sec-btn{
  margin-top: 5rem;
  text-align: center;
}
.sec-btn a{
  color:#6965E7;
  border:2px solid #6965E7;
  background-color: rgba(255, 255, 255, 0.7);
  width: 320px;
}
@media screen and (max-width: 749px) {
  .btn a{
    padding: 2rem;
  }
}
@media screen and (min-width: 1101px) {
  .header-cta a {
    font-size: 1.4rem;
    min-width:18rem;
    padding:1.3rem 1rem;
  }
}
/* ------ バーガー ---------------- */
@media screen and (max-width: 1100px) {
.hamburger {
  position: absolute;
  right : 0;
  top   : 0;
  display: inline-block;
  width: 65px;
  height: 65px;
  z-index: 2;
}
}
.hamburger span {
  position: absolute;
  background: #333333;
  height: 1px;
  transition: .3s;
}
.hamburger span:nth-child(1) {
  width:33px;
  top:26px;
  left:10px;
}
.hamburger span:nth-child(2) {
  width:43px;
  top:40px;
  left:0;  
}
.hamburger.bgactive span:nth-child(1) {
  transform: translateY(7px) rotate(30deg);
  width:45px;
  left:0;
} 
.hamburger.bgactive span:nth-child(2),
.hamburger.bgactive span:nth-child(3) {
  transform:translateY(-7px) rotate(-30deg);
  width:45px;
}
.nav_sp{
display: block;
position: fixed;
top  : 0;
left : 0;
background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
width: 100%;
height: 100%;
opacity: 0;
transition: opacity .6s ease, visibility .6s ease;
z-index : 1;
visibility: hidden;
}
.nav_list_sp{
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  gap:2.4rem;
}
.nav_item_sp a{
  font-size: 1.6rem;
  color:#fff;
}
.nav_sp.bgactive {
  opacity: 1;
  visibility: visible;
}
.child-menu-sp{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding:1rem 0 1rem 1rem;
  gap:1rem;
}
/*fv-------------------------------------------------*/
.fv{
  position: relative;
  height:580px;
}
.fv::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/creative-drive/img/re/fv.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100%;
  background-size: cover;
}

.fv-flex{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:3rem;
  padding-top:10rem;
}
.fv .fv-info{
  width:45%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap:2.4rem;
}
.fv-info h1{
  font-size: 28px;
  line-height: 1.5;
}
.fv-info .circle-list{
  display: flex;
  gap:1rem;
	width:100%;
}
.fv-info .circle-list .circle-item {
  align-items: center;
  display: flex;
  height: 105px;
  width: 105px;
  justify-content: center;
  position: relative;
  text-align: center;
  z-index: 1;
}
.fv-info .circle-list .circle-item:before {
  background: url("/wp-content/themes/creative-drive/img/re/fv-circle.png") no-repeat 50% / 100% auto;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.fv-info .circle-list .circle-item span{
  font-size:15px;
  font-weight: 600;
  line-height:1.3;
  letter-spacing: 0.01em;
}
.fv-cta-block{
  display: flex;
  flex-direction: column;
  gap:1rem;
  max-width: 400px;
  text-align: center;
}
.fv .fv-img{
  width: 55%;
  z-index: 1;
  position: relative;
}
.fv-img .fv-badge{
  position: absolute;
  max-width: 150px;
  width:30%;
  bottom:0;
  right:0;
}
.fv .fv-img img,
.fv-img .fv-badge img{
	object-fit:contain;
}
@media screen and (max-width: 749px) {
  .fv{
    height:750px;
  }
  
  .fv-flex{
    flex-direction: column;
    justify-content: center;
    gap:2rem;
    padding-top:8rem;
  }
  .fv .fv-info{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:2.4rem;
  }
  .fv-info h1{
    font-size: 2.8rem;
    text-align: center;
  }
	.fv-info .circle-list{
	justify-content:center;
	}
  .fv-info .circle-list .circle-item {
    height: 80px;
    width: 80px;
  }
  .fv-info .circle-list .circle-item span{
    font-size:1.2rem;
  }
  .fv-cta-block{
    width:100%;
  }
  .fv .fv-img{
    width: 100%;
    max-width: 400px;
  }
  .fv-img .fv-badge{
    width:35%;
    bottom:-5%;
  }
}
/* user -------------------------------------------------*/
.user{
  margin:5rem 0;
}
.user-list{
  display: flex;
  align-items: center;
  gap:3rem;
  text-align: center;
}
.user-item{
  width:fit-content;
}
@media screen and (max-width: 499px) {
  .user{
    margin:3rem 0;
  }
  .user-list{
    flex-wrap: wrap;
    justify-content: center;
    gap:2rem;
  }
  .user-item img{
    max-height:2rem;
}
}
/* about -------------------------------------------------*/
.about{
  background-image: url("/wp-content/themes/creative-drive/img/re/bg-dot.png");
  background-size: 20px 20px;
  background-position: 0 0;
} 
.about-flex{
  display:flex;
  align-items: center;
  gap:5%;
  padding-top:8rem;
}
.about-info{
  width:55%;
}
.about-info h2{
font-size: 24px;
font-weight: 700;
margin-bottom:2rem;
line-height: 1;
}
.gradient{
color: #4976E6;
display: inline-block;
background: -moz-linear-gradient(left, #4976E6 0%, #8E55E9 100%);
background: -webkit-linear-gradient(left, #4976E6 0%, #8E55E9 100%);
background: linear-gradient(to right, #4976E6 0%, #8E55E9 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4976E6', endColorstr='#8E55E9',GradientType=1 );
-webkit-background-clip: text;
position: relative;
-webkit-text-fill-color: transparent;
}
.about-info .catch{
  font-size: 36px;
  font-weight: 900;
  margin-bottom:2rem;
  line-height: 1.5;
}
.about-img{
  width:40%;
}
.about-img img{
  object-fit:contain;
}

.about-cta-block{
  margin-top:3rem;
  display: flex;
  flex-direction: column;
  gap:1rem;
  max-width: 320px;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .about-flex{
    flex-direction: column;
    gap:3rem;
    padding-top:5rem;
  }
  .about-info{
    width:100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-info h2{
  font-size: 1.8rem;
  }
  .about-info .catch{
    font-size: 2.4rem;
  }
  .about-img{
    width: 100%;
    max-width: 400px;
  }
  .about-cta-block{
    max-width: 400px;
    text-align: center;
    width:100%;
  }
}
/* result -------------------------------------------------*/
.result-block{
  position: relative;
  top:8rem;
  background-color: #fff;
  padding:7rem 0;
  border-radius:50px;
  text-align: center;
  box-shadow: rgba(148, 127, 236, 0.2) 0px 7px 29px 0px;
  z-index: 1;
}
.result-head .sub{
  font-size: 24px;
  line-height: 1;
  margin-bottom:1rem;
  font-weight: 600;
}
.result-head{
  margin-bottom:5rem;
}
.result-head .main{
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.result-list{
  display:flex;
  gap:1rem;
  justify-content: center;
  align-items: center;
  width:90%;
  max-width: 880px;
  margin:0 auto;
  margin-bottom:1rem;
}
.result-item{
  width:calc((100% - (1rem * 2))/3);
  position:relative;
}

@media screen and (max-width: 749px) {
  .result-block{
    top:5rem;
    padding:5rem 2rem;
    border-radius:30px;
  }
  .result-head .sub{
    font-size: 1.8rem;
  }
  .result-head{
    margin-bottom:3rem;
  }
  .result-head .main{
    font-size: 3rem;
  }
  .result-list{
    flex-wrap: wrap-reverse;
    gap:0;
    justify-content: center;
    width:100%;
  }
  .result-item:first-of-type {
    order: 3;
  }  
  .result-item{
    width:50%;
  }
}
/* service -------------------------------------------------*/
.service{
  margin-top:-10rem;
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  padding:30rem 0 15rem;
  color:#fff;
}
.section-ttl{
  text-align: center;
  position:relative;
  margin-bottom:7rem;
}
.section-ttl h2{
  font-size:42px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  position:relative;
  margin-bottom: 4rem;
}
.section-ttl h2:before {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  background: #7965E9;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.service .section-ttl h2:before,
.lp-about .section-ttl h2:before,
.lp-voice .section-ttl h2:before{
  background: #fff;
}
.section-ttl p{
  font-size:18px;
  line-height: 1.5;
}
.service-list{
  display:flex;
  gap:3rem;
  flex-wrap: wrap;
}
.service-item{
  border-radius: 15px;
  border:1px solid #fff;
  display: flex;
  flex-direction: column;
  padding:3rem 2.4rem 2.4rem 2.4rem;
  width:calc((100% - (3rem * 2))/3);
  align-items: center;
}
.service-item-img {
  max-width: 12rem;
}
.service-item-img img{
  object-fit: contain;
}
.service-item h3{
font-size:24px;
line-height: 1.5;
margin:2rem 0 1rem;
}
.example-block{
  background-color: rgba(255, 255, 255, .12);
  border-radius:5px ;
  padding:1rem 1.2rem 1.2rem 1.2rem;
  margin-top:1.5rem;
  width: 100%;
}
.example-head{
  background-color: rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding:0.3rem 0.9rem;
  color:#6e92eb;
  font-size:1.2rem;
  font-weight: 600;
  line-height: 1;
	display:inline-block;
}
.example-txt{
  font-size:1.4rem;
  line-height: 1.5;
  margin-top:0.5rem;
}
@media screen and (max-width: 749px) {
  .service{
    padding:20rem 0 15rem;
  }
  .section-ttl{
    margin-bottom:5rem;
  }
  .section-ttl h2{
    font-size:3rem;
  }
  .section-ttl p{
    font-size:1.6rem;
  }
  .service-list{
    gap:1.5rem;
  }
  .service-item{
    padding:2rem 1.5rem 1.5rem 1.5rem;
    width:calc((100% - 1.5rem)/2);
    border-radius: 10px;
  }
  .service-item-img{
    max-width: 8rem;
  }
  .service-item h3{
  font-size:1.6rem;
  }
    .service-item p{
  font-size:1.2rem;
  }
  .example-block{
	padding:0.8rem 1rem 1rem 1rem;
  }
  .example-head{
    padding:0.2rem 0.9rem;
    font-size:1rem;
  }
  .example-txt{
    font-size:1.2rem;
  }
}

/* pickup -------------------------------------------------*/
.pickup{
  margin:10rem 0 20rem;
}
.pickup-inner{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:8rem;
}
.pickup-block{
  padding:8rem;
  background: linear-gradient(-45deg, #EEEAFD 0%, #fff 100%);
  border-radius: 30px;
  box-shadow: 0px 10px 15px 0px rgba(70, 61, 141, 0.25);
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:5rem;
}
.pickup-flex{
  flex-direction: row;
  gap:5%;
}
.pickup-flex .pickup-info{
  width:55%;
}
.pickup-flex .pickup-img{
  width:40%;
}
.pickup-img img{
  object-fit:contain;
}
.pickup-head{
  font-size:1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.pickup-info h3{
  font-size:48px;
  font-weight: 900;
  line-height: 1.2;
  margin:0.5rem 0 3rem; 
}
.pickup-img{
  width:100%;
  max-width: 750px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 749px) {
  .pickup{
    margin:8rem 0 15rem;
  }
  .pickup-inner{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:5rem;
  }
  .pickup-block{
    padding:4rem 2rem;
    gap:5rem;
    border-radius: 15px;
  }
  .pickup-flex{
    flex-direction: column;
    gap:5rem;
  }
  .pickup-flex .pickup-info{
    width:100%;
  }
  .pickup-flex .pickup-img{
    width:100%;
  }
  .pickup-head{
    font-size:1.4rem;
  }
  .pickup-info h3{
    font-size:3rem;
    margin:0.5rem 0 2rem; 
  }
}
/* case -------------------------------------------------*/

.case-list{
	display:flex;
	gap:3rem;
}
.case-item{
	width:calc((100% - (3rem*2))/3);
		}
.case-item a{
box-shadow: rgba(148, 127, 236, 0.2) 0px 7px 29px 0px;
	border-radius:30px;
		background-color:#fff;
		height:100%;
		}
.case-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px 30px 0 0;
}
.case-info{
	display:flex;
	flex-direction:column;
	padding:2rem 3rem 4rem;
	gap:1rem;
}
.case-tag{
	display:flex;
	gap:1rem;
}
.case-tag .tag-item {
    font-size: 1.2rem;
    color: #6A65E7;
    border: solid 1px #6A65E7;
    border-radius: 24px;
    padding: 0.5rem 1rem;
	line-height:1;
}
.case-title{
	font-size:1.8rem;
	font-weight:700;
	line-height:1.5;
}
.case-company{
    font-size:1.4rem;
	line-height:1;
	color:#999999;
}
.voice-block{
	margin-top:10rem;
  display:flex;
  gap:5%;
  align-items: center;
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  padding:5rem 10rem;
  border-radius: 30px;
  color:#fff;
}
.voice-txt{
  width:45%;
  position:relative;
  line-height: 2;
  font-size:18px;
}
.voice-txt p::before{
  content: "";
  background-image: url("/wp-content/themes/creative-drive/img/quotation.png");
  display: inline-block;
  width: 80px;
  height: 80px;
  background-position: center;
  background-size: contain;
  position:absolute;
  left:0;
  top:-10%;
}
.voice-img{
  width:50%;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:2rem;
}

.voice-img .name{
  font-size:20px;
  text-align: center;
}
.voice-img .name span{
  font-size:16px;
  display: block;
}

/* pagination -------------------------------------------------*/
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

ul.page-numbers {
  display: flex;
  column-gap: 32px;
}

span.page-numbers {
  vertical-align: baseline;
  color: #4976E6;
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding-bottom: 0.02rem;
  border-bottom: 2px solid #4976E6;
}

a.page-numbers {
  vertical-align: baseline;
  display: flex;
  justify-content: center;
  color: #4976E6;
}

ul.page-numbers .prev,
ul.page-numbers .next {
  color: #4976E6;
}

a.page-numbers:hover {
  opacity: 0.5;
}


@media screen and (max-width: 749px) {
  .case{
    margin-top: -5rem;
    padding:8rem 0 12rem;
    border-radius:30px 30px 0 0;
  }
	.case-list{
	flex-direction:column;
}
.case-item{
	width:100%;
		}
.case-item a{
	border-radius:15px;
		}
.case-img img {
    border-radius: 15px 15px 0 0;
}
.case-title{
	font-size:1.6rem;
}
.case-company{
    font-size:1.2rem;
}
  .voice-block{
    flex-direction: column-reverse;
    gap:3rem;
    padding:3rem 2rem;
    border-radius: 15px;
  }
  .voice-txt{
    width:100%;
    font-size:1.4rem;
  }
  .voice-txt p::before{
    width: 50px;
    height: 50px;
  }
  .voice-img{
    width:100%;
    flex-direction: column-reverse;
  }
  .voice-img .name{
    font-size:1.6rem;
  }
  .voice-img .name span{
    font-size:1.2rem;
  }
}
/*  marketing-------------------------------------------------*/
.marketing{
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  margin-top:-5rem;
  overflow: hidden;
  padding:20rem 0 15rem;
}
.marketing-flex{
  display:flex;
  align-items: center;
  gap:5%;
}
.marketing-info{
  width:40%;
  color:#fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marketing-info-head{
  font-size:2.4rem;
  line-height: 1;
}
.marketing-info h2{
font-size:4.8rem;
line-height: 1.2;
margin:1rem 0 3rem;
}
.marketing-info .btn a{
border:2px solid #fff;
background-color: transparent;
color:#fff;
}
.marketing-img{
width:55%;
border-radius: 30px 0 0 30px;
}
.marketing-img-inner{
  margin-left: 0;
  margin-right: calc(90% - 50vw);
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}
.marketing-img img{
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 749px) {
  .marketing{
    padding:12rem 0 8rem;
  }
  .marketing-flex{
    flex-direction: column;
    gap:5rem;
  }
  .marketing-info{
    width:100%;
    align-items: center;
  }
  .marketing-info-head{
    font-size:1.8rem;
  }
  .marketing-info h2{
  font-size:3rem;
  }
  .marketing-img{
  width:100%;
  border-radius: 15px;
  }
  .marketing-img-inner{
    margin: 0;
    border-radius: 15px;
  }
  .marketing-img img{
    border-radius: 15px;
  }
}
/*  seminar-------------------------------------------------*/
.seminar{
  margin:12rem 0 10rem;
}
.side-flex{
  display: flex;
  gap:3rem;
  position: relative;
}
.side-ttl{
  width: 30rem;
  display: flex;
  flex-direction: column;
  gap:2rem;
  text-align: left;
  align-items: flex-start;
}
.seminar .section-ttl h2:before,
.news .section-ttl h2:before,
.flow .section-ttl h2:before { 
  left: 0;
  transform: translateX(0);
}
.arrow-btn {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  font-weight: 700;
}
.arrow-btn:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #7965E9;;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.arrow-btn:after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 7px;
  bottom: 0;
  margin: auto;
}
.side-card{
  width:calc(100% - 33rem);
  display: flex;
  flex-direction: column;
  gap:2rem;
  position: relative;
}
.card-flex{
  display: flex;
  gap:2.4rem;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow:0px 10px 15px 0px rgba(148, 127, 236, 0.2);
  padding:1.6rem 2.4rem;
  width: 100%;
}
.seminar .card-img{
  border: 1px solid #00100e0f;
  max-width: 114px;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  height: 130px;
  max-width: 247px;
}
.card-info{
  display: flex;
  flex-direction: column;
  gap:1.5rem;
}
.card-info h4{
  font-size:1.8rem;
  line-height: 1.2;
  font-weight: 700;
}
.card-info p{
  font-size:1.4rem;
  color:#999999;
  line-height: 1.2;
}
@media screen and (max-width: 749px) {
  .seminar{
    margin:8rem 0 8rem;
  }
  .side-flex{
    flex-direction: column;
    gap:0;
  }
  .side-ttl{
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom:3rem;
  }
  .seminar .section-ttl h2:before,
  .news .section-ttl h2:before,
	.flow .section-ttl h2:before { 
    left: 50%;
    transform: translateX(-50%);
  }

  .side-card{
    width:100%;
  }
  .card-flex{
    gap:2rem;
    padding:1rem 2rem 1rem 1rem;
  }
  .seminar .card-img{
    border-radius: 6px;
    height: 60px;
    max-width: 114px;
  }
  .card-info h4{
    font-size:1.4rem;
  }
  .card-info p{
    font-size:1.2rem;
  }
  .arrow-btn.sp-only{
    margin-top:5rem;
    text-align: right;
  }
}
/*  news-------------------------------------------------*/
.news{
  padding-bottom:15rem;
}
.news .side-flex,
.news-page .side-flex{
  padding-top:10rem;
}
.news .side-card,
.news-page .side-card{
  gap: 0;
  border-top:1px solid rgba(0,16,14,.12);
}
.news .card-flex,
.news-page .card-flex{
  border-radius: 0px;
  box-shadow: none;
  border-bottom:1px solid rgba(0,16,14,.12);
  padding:3rem 0;
}
@media screen and (max-width: 749px) {
  .news{
    padding-bottom:10rem;
  }
  .news .side-flex,
	.news-page .side-flex{
    padding-top:8rem;
  }
}

/*  plan-page-------------------------------------------------*/
/*  page-head-------------------------------------------------*/
.page-head {
  position: relative;
  background-color: #e1e1e1;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-image: url("/wp-content/themes/creative-drive/img/re/fv.jpg");
}
.page-head-ttl {
  position: relative;
  text-align: center;
  height: 310px;
}
.page-head-ttl h1 {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.page-head-ttl_small {
  position: relative;
  text-align: center;
  height: 90px;
}

@media screen and (max-width: 749px) {
  .page-head-ttl {
    height: 240px;
  }
  .page-head-ttl h1 {
    font-size: 3rem;
  }
  .page-head-ttl_small {
    height: 65px;
  }
  
}
/*  anchor-------------------------------------------------*/
#plan .anchor{
  margin:4rem 0 10rem;
}
#plan .anchor-heading{
  font-size:1.8rem;
  text-align: center;
  font-weight: 700;
}
.anchor-list{
  display:flex;
  align-items: stretch;
  gap:2rem;
  margin-top:3rem;
}
.anchor-item{
  width:calc((100% - (2rem*2))/3);
  text-align: center;
}
.anchor-list a {
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:1rem;
  position: relative;
  border: 2px solid #e2e8f5;
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s border-color cubic-bezier(0, 0, 0.58, 1), 0.3s color cubic-bezier(0, 0, 0.58, 1);
  background-color: #fff;
  padding: 2rem 4rem 2rem 2rem;
  border-radius: 5px;
}
.anchor-list a:before {
  content: '';
  width: 21px;
  height: 21px;
  background: #7965E9;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
.anchor-list a:after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 2.7rem;
  bottom: 0;
  margin: auto;
}
.anchor-sub{
  font-weight: 600;
  line-height:1;
}
.anchor-main{
  font-weight: 900;
  line-height:1;
  font-size:2.4rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
.anchor-list a:hover{
  border-color: #7965E9;
  background-color: #7965E9;
  color: #fff;
}
.anchor-list a:hover .anchor-main{
  background: -moz-linear-gradient(left, #fff 0%, #fff 100%);
  background: -webkit-linear-gradient(left, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff',GradientType=1 );
  -webkit-background-clip: text;
}
.anchor-list a:hover:before {
  background: #fff;
}
.anchor-list a:hover:after {
  border-top: solid 2px #7965E9;
  border-right: solid 2px #7965E9;
}
}
@media screen and (max-width: 749px) {
  #plan .anchor{
    margin:5rem 0 8rem;
  }
  #plan .anchor-heading{
    font-size:1.4rem;
  }
  .anchor-list{
    flex-direction: column;
    gap:1.5rem;
  }
  .anchor-item{
    width:100%;
  }
  .anchor-main{
    font-size:2rem;
  }
}
/*  cda-plan-------------------------------------------------*/
.plan-ttl{
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  padding:4rem 0;
  text-align: center;
}
.plan-ttl h2{
  font-size:3.2rem;
  font-weight: 900;
  line-height: 1;
  color:#fff;
}
.cda-plan-inner{
  margin-top:8rem;
}
.cda-plan-block{
margin-top:8rem;
  padding:8rem;
  border-radius: 30px;
  box-shadow: 0px 10px 15px 0px rgba(70, 61, 141, 0.25);
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cda-plan-block h3{
  font-size:3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom:3rem; 
}
.cda-plan-table{
  margin-top:5rem;
  width:100%;
  table-layout: fixed;
}
.cda-plan-table th{
  text-align: center;
  width:220px;
  padding: 1.5rem;
  height: 60px;
  line-height:1.5;
  font-size:1.5rem;
  font-weight:600;
  color:#fff;
}
.cda-plan-table td {
  background-color: #f8f8ff;
  font-size:1.5rem;
  font-weight: 500;
  line-height:1.5;
  padding: 1.5rem;
	text-align:center;
}
.cda-plan-table td span{
  font-size:1.2rem;
}
.cda-plan-table .head-half{
  width:calc((100% - 220px)/2);
}
.cda-plan-table .head-one-third{
  width:calc((100% - 220px)/3);
}
.cda-plan-table .head-th {
  background-color: #1f438d;
  color:#fff;
}
.cda-plan-table .head {
  background-color: #444655;
  color:#fff;
}
.cda-plan-table .th-first{
  background-color:#8698ed;
}
.cda-plan-table .th-second{
  background-color:#9085dd;
}
.cda-plan-table .th-third{
  background-color:#9a70ca;
}
.cda-cta-block{
  text-align: center;
  margin-top: 8rem;
}
.cda-plan .main-btn{
  display: inline-block;
  width: 320px;
}
@media screen and (max-width: 749px) {
  .plan-ttl h2{
    font-size:2rem;
  }
  .cda-plan-inner{
    margin-top:5rem;
    gap:5rem;
  }
  .cda-plan-block{
    padding:4rem 2rem;
    border-radius: 15px;
  }
  .cda-plan-block h3{
    font-size:2rem;
    margin-bottom:2rem; 
  }
  .cda-plan-table th{
    width:170px;
    height: 50px;
    font-size:1.2rem;
  }
  .cda-plan-table td {
    font-size:1.2rem;
  }
  .cda-plan-table td span{
    font-size:1.2rem;
  }
  .cda-plan-table .head-half{
    width:calc((100% - 170px)/2);
  }
  .cda-plan-table .head-one-third{
    width:calc((100% - 170px)/3);
  }
}
/* tab ----------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .cda-plan-table {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .cda-plan-table .fixed {
    position: sticky;
    left: 0;
  }
}
/*  cd-plan-------------------------------------------------*/
.cd-plan{
  margin-top:20rem;
  padding-bottom:12rem;
  background-color:#F3F4FF;
}
.cd-heading-wrapper{
  background-color:#F3F4FF;
}
#plan .cd-heading{
  font-size:1.8rem;
  text-align: center;
  font-weight: 700;
  padding:5rem 0;
}
.tab-section{
  background-color:#F3F4FF;
}
.tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
}
.tab > label {
    flex: 1 1;
    order: -1;
    padding: 3rem 1rem;
    border-radius: 15px 15px 0 0;
    background-color: #CCCCCC;
    color:#fff;
    font-size: 2rem;
    font-weight:600;
    line-height:1;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.tab > label:hover {
    opacity: .8;
}
.tab input {
    display: none;
}
.tab-wrapper{
  display: none;
  width: 100%;
  background-color: #fff;
}
.tab label:has(:checked) {
  background-color: #fff;
  color:#333333;
}
.tab label:has(:checked):hover {
opacity:1;
}
.tab label:has(:checked) + .tab-wrapper {
    display: block;
}
.tab-inner{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  background-color: #fff;
}
.tab-inner .plan-list{
  padding:10rem 0 5rem;
}
#plan .plan-feature{
display:flex;
flex-direction: column;
}
.plan-price span{
  font-size:3rem;
  font-weight: 900;
  line-height: 1;
  vertical-align: sub;
  color:#333333;
  padding-right:0.3rem ;
}
.plan-price{
  font-size:1.4rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  vertical-align: bottom;
  line-height: 1;
  padding-bottom:2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 16, 14, .12);
  text-align: center;
  flex-grow:1;
}
.plan-price .year-price{
  display: block;
  font-size:1.4rem;
  padding-top:1rem;
}
.plan-feature .plan-arrow-btn{
  text-align: center;
  margin-top:2rem;
}
.free-plan-section{
  background-color: #fff;
  padding:6rem 0 10rem;
}
.free-plan-section .free-plan {
  margin-top:0;
}
@media screen and (max-width: 749px) {
  .cd-plan{
    margin-top:8rem;
    padding-bottom:8rem;
  }
  #plan .cd-heading{
    font-size:1.4rem;
    padding:5rem 0;
  }
  .tab > label {
      padding: 1.8rem 1rem;
      border-radius: 5px 5px 0 0;
      font-size: 1.6rem;
  }
  .tab-inner .plan-list{
    padding:5rem 0;
  }
  .plan-price span{
    font-size:2rem;
  }
  .plan-price{
    font-size:0.8rem;
  }
  .plan-price .year-price{
    font-size:1.2rem;
  }
  .free-plan-section{
    padding:3rem 0 8rem;
  }
}
/*  flow-------------------------------------------------*/
.flow{
  margin:12rem 0;
}
.flow .side-card{
  gap:3rem;
}
.flow .card-flex {
  background-color: #FAFAFA;
  box-shadow: 0px 10px 15px 0px rgba(70, 58, 141, 0.15);
  position: relative;
}
.flow .card-img{
  width:12rem;
}
.flow .card-info{
  gap:0;
  width:calc(100% - 14.4rem);
}
.flow .card-info h4 {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom:1rem;
}
.flow .card-info p{
  font-size: 1.6rem;
  font-weight: 500;
  color:#333333;
}
.flow .card-info .step{
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom:0.5rem;
}
.flow .card-flex:not(:last-of-type)::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  margin: auto;
  border-width: 20px 28px 0 28px;
  border-style: solid;
  border-color: #7965E9 transparent transparent transparent;
  width: 0;
  height: 0;
}
@media screen and (max-width: 749px) {
  .flow{
    margin:8rem 0;
  }
  .flow .card-flex {
    padding:2rem;
  }
  .flow .card-img{
    width:8rem;
  }
  .flow .card-info{
    gap:0;
    width:calc(100% - 10rem);
  }
  .flow .card-info h4 {
    font-size: 1.8rem;
  }
  .flow .card-info p{
    font-size: 1.4rem;
  }
  .flow .card-info .step{
    font-size: 1.2rem;
  }
  .flow .card-flex:not(:last-of-type)::before {
    bottom: -15px;
    border-width: 15px 23px 0 23px;
  }
}

.c-page__title--wrap{
	margin-bottom:3rem;
}
.c-page__title h1.heading {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4em;
  letter-spacing: 0.2rem;
  margin: 0;
}
.c-page__title .caption {
  font-family: "Kanit", sans-serif;
}
.c-page__title .subtitle {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
.c-page__single {
  padding: 100px 0;
}
.c-page__single--heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.c-page__single--heading .heading {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.c-page__single--heading .title {
  max-width: 520px;
  width: 100%;
  font-size: 32px;
  line-height: 1.4em;
  color: #826AC5;
  margin: 0;
}
.c-page__single--heading img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c-page__single--content h2 {
  font-size: 32px;
  margin: 0.6em 0;
}
.c-page__single--content h3 {
  font-size: 24px;
  margin: 0.6em 0;
}
.c-page__single--content p {
  line-height: 2em;
  margin: 1em 0;
}
.c-page__single--content a:hover {
  text-decoration: underline;
  color: #8E55E9;
}
.c-page__single .def_thumbnail {
  padding: 0 20% 50px;
}
.c-page__single .def_thumbnail img {
  width: 100%;
  height: auto;
}
.c-page__contect {
  padding: 100px 80px;
}
.c-page__contect h2.title {
  margin-bottom: 32px;
}

.c-page__default {
  padding: 50px 0 100px;
}
.c-page__default h2 {
  font-size: 32px;
  margin: 0.6em 0;
}
.c-page__default h3 {
  font-size: 24px;
  margin: 0.6em 0;
  padding: 8px;
  position: unset;
  background: #F5F5F5;
  border-left: #000 solid 4px;
  border-bottom: solid #000 2px;
}
.c-page__default p {
  line-height: 2em;
  margin: 1em 0;
}

@media screen and (max-width: 768px) {
  .c-page__title h1.heading {
    font-size: 2.4rem;
  }
  .c-page__title .caption {
    font-size: 14px;
  }
  .c-page__title .subtitle {
    font-size: 16px;
  }
  .c-page__single {
    padding: 50px 0;
  }
  .c-page__single--heading {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 50px;
    row-gap: 24px;
  }
  .c-page__single--heading .heading {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .c-page__contect {
    padding: 50px 16px;
  }
  .c-page__contect h2.title {
    margin-bottom: 32px;
  }
}
.c-section {
  padding: 80px 0;
}
.c-section__width {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.c-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}
.c-section__title h2.heading {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.c-section__title .caption {
  font-family: "Kanit", sans-serif;
  background: linear-gradient(91.69deg, #00FFA3 0%, #DB00FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.c-section__title .subtitle {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
}
.c-section__title.white h2.heading {
  color: #fff;
}
.c-section__title.white .subtitle {
  color: #fff;
}

.c-section__line {
  display: block;
  width: 100%;
  height: 80px;
  background-color: #0A3D5F;
}

@media screen and (max-width: 768px) {
  .c-section {
    padding: 40px 0;
  }
  .c-section__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
  }
  .c-section__title h2.heading {
    font-size: 24px;
    letter-spacing: 0.04rem;
    text-align: center;
  }
  .c-section__title .caption {
    font-size: 12px;
  }
  .c-section__title .subtitle {
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: 0.06rem;
  }
}
.case-page,
.news-page,
.news-single-page,
.c-faq{
	margin:10rem auto 15rem;
}
.case-page .case-list {
    flex-wrap:wrap;
	gap:5rem 3rem;
}
.news-page .side-card {
    width:100%;
	max-width:950px;
	margin:0 auto;
}
@media screen and (max-width: 749px) {
	.case-page,
	.news-page,
	.news-single-page,
	.c-faq{
	margin:5rem auto 10rem;
	}}


/*  column-------------------------------------------------*/
.p-column__single {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.p-column__single {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.btn-view {
    width: 300px !important;
}

.p-column__single h1.title {
  font-size: 28px;
  line-height: 1.2em;
}
.p-column__single .date {
  color: #3ba9b8;
}
.p-column__single span.thumbnail img{
  border-radius: 10px;
}
.p-column__single .wp-block-image {
  margin-bottom: 1.5em;
}
.p-column__single .content p {
  margin-bottom: 1.5em;
}

.p-column__single .content h2 {
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    padding: .5em;
    background: #f4f4f4 !important;
    border-left: 8px solid #8e55e9;
    border-radius: 4px;
    line-height: 1.4em;
    font-size: 1.5em;
}

.p-column__single .content h3 {
    margin-top: 1.8em;
    margin-bottom: 1.0em;
    padding-bottom: .5em;
    border-bottom: 2px solid #8e55e9;
    font-size: 1.3em;
}


.p-column__single .content h4 {
  margin-top: 1.2em;
  margin-bottom: 1.0em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #8e55e9;
  font-size:1.2em;
}

.p-column__single #ez-toc-container {
  margin-top: 2.5em !important;
  margin-bottom: 2.5em !important;
}

.p-column__single .ez-toc-title-container {
  padding: 1.0em;
}

.p-column__single a:hover {
    color: #3ba9b8a8;
}

.p-column__single a {
    text-decoration: unset;
    transition: 0.3s;
    cursor: pointer;
    display: initial;
    color: #3ba9b8;
}

.p-column__single .column-btn {
    margin:30px 0;
}
.p-column__single .btn {
    display: inline-block;
}
.p-column__single > .thumbnail {
    border: 0px solid #fff;
    border-radius: 8px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.p-column__single img{
    border-radius: 6px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}


/* collumn Quicktag------------------------------------*/



.single .under-yellow {
  background: linear-gradient(transparent 70%, rgba(255,240,0, .45) 70%);
  font-weight: bold;
}


.single .font-red {
    color: #EF454A;
}

.single .under-red {
    background: linear-gradient(transparent 70%, #e98698 70%);
    font-weight: bold;
}

.single .marker-yellow {
    background: #fffab5;
    font-weight: bold;
}

.single blockquote {
    position: relative;
    margin: 16px auto;
    padding: 40px 10px 10px 10px;
    box-sizing: border-box;
    background: #efefef;
    color: #555;
}

.single .p-column__single blockquote  p{
    background: #efefef !important;
	font-style: italic;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 3px;
    content: "“";
    font-family: sans-serif;
    color: #8e55e9;
    font-size: 90px;
    line-height: 1;
}

.single .point_box {
    padding: 20px 25px;
    border: 1px solid #8e55e9;
    position: relative;
    margin: 50px 0 20px;
    border-radius: 0 5px 5px 5px;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.single .point_box:before {
    content: "Point";
    letter-spacing: 2px;
    position: absolute;
    top: -2.5em;
    left: -1px;
    background: #8e55e9;
    padding: 0px 14px;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    line-height: 2.5;
    border-radius: 5px 5px 0 0;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.single .detail_box {
    padding: 20px 25px;
    border: 1px solid #8e55e9;
    position: relative;
    margin: 20px 0;
    border-radius: 5px;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.single .free-box {
    padding: 20px 25px;
    border: 1px solid #8e55e9;
    position: relative;
    margin: 50px 0 20px;
    border-radius: 5px;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.single .free-box p{
	margin-bottom: 0.1em;
}

.single .free-box-title {
    letter-spacing: 2px;
    position: absolute;
    top: -2.5em;
    left: -1px;
    background: #8e55e9;
    padding: 0px 14px;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    line-height: 2.5;
    border-radius: 5px 5px 0 0;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.single .memo-box {
    margin: 32px 0;
    background-color: #f5f5f5;
    padding: 16px;
}

.single .memo-box-title {
    font-size: 18px;
    font-weight: bold;
    color: #8e55e9;
}

.single .memo-box p {
    background-color:#f5f5f5 !important;
}

.wysiwyg tbody tr>*:first-child, .wysiwyg tbody tr th {
    background: #ededed;
    padding: 5px 0;
    text-align: left;
    border: solid 3px #ffffff;
    padding: 14px;
}

.wysiwyg tbody tr>*:first-child, .wysiwyg tbody tr th {
    background: #8e55e9;
    padding: 5px 0;
    text-align: left;
    border: solid 3px #ffffff;
    padding: 14px;
    color: #fff;
}

.single code.file-name-bg {
    background: #000000;
    border-radius: 3px;
    padding: 10px 10px 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 17px;
    color: #ffffff;
}

.single .badge-black div {
    display: block;
    margin-right: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    padding: 2px 14px;
    border-radius: 15px;
    text-align: center;
    background: #8e55e9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single .blog-card {
    border: 1px solid  #8e55e9;
    word-wrap: break-word;
    max-width: 100%;
    border-radius: 3px;
    margin: 40px auto;
    box-shadow: 4px 4px 0px #c8c8c8;
    transition: 0.1s ease;
    position: relative;
}

.single .blog-card a {
    width: 100%;
    color: #333;
    background: #fff;
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0px;
    padding: 8px;
}

.single .blog-card-label {
    display: inline !important;
    margin-left: .5em;
    position: absolute;
    top: -18px;
    font-size: 14px;
    padding: 3px .6em;
    background-color: #8e55e9;
    color: #fff;
    border-radius: 3px;
    letter-spacing: .7px;
    display: none;
}

.single .blog-card-title::before {
    content: '続きを読む';
    font-size: 0.7em;
    font-weight: bold;
    color: #fff;
    background: #8e55e9;
    display: inline-block;
    position: absolute;
    text-align: center;
    margin-right: 1em;
    border-radius: 4px;
    bottom: 10px;
    right: 0px;
    padding: 4px 8px;
}

/* widget Design ------------------------------------*/

.category-list a:hover{
    color: #3ba9b8a8;
}

.widget_block h2 {
	padding: .5em;
    background: #f4f4f4 !important;
    border-left: 8px solid #8e55e9;
    border-radius: 4px;
    line-height: 1.4em;
    font-size: 1em;
}



/* lp ------------------------------------*/
.page-narrow-width{
  max-width: 1040px;
  width:90%;
  margin:0 auto;
  padding:0 2rem;
}
@media screen and (max-width: 749px) {
  .page-narrow-width{
    width:100%;
  }
}
/* fv ------------------------------------*/
.lp-fv::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/creative-drive/img/re/lp-fv.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100%;
  background-size: cover;
}
.lp-fv .fv-flex{
  justify-content: flex-start;
  padding-top:15rem;
}
.lp-fv .fv-info {
  width: 100%;
}
.fv-catch-head{
  display: block;
  font-size:2.4rem;
  font-weight: 700;
}
.fv-catch-main{
  display: block;
  font-size:4.2rem;
  font-weight: 900;
}
@media screen and (max-width: 749px) {
  .lp-fv::before{
    background-image: url("/wp-content/themes/creative-drive/img/re/lp-fv-sp.jpg");
  }
  .lp-fv .fv-flex{
    padding-top:10rem;
  }
  .fv-catch-head{
    font-size:1.4rem;
  }
  .fv-catch-main{
    font-size:2.4rem;
  }
}
/* issue ------------------------------------*/
.issue{
  background-color: #FAF7FF;
padding:10rem 0 5rem;
  position: relative;
}
.issue:before{
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background-color: #FAF7FF;
  left: 0;
  bottom: -100px;
}
.issue-head{
  text-align: center;
  margin-bottom:5rem;
}
.issue-head p{
  font-size:2.4rem;
  font-weight:700;
  line-height: 1;
}
.issue-head h2{
  font-size:4.2rem;
  line-height: 1;
  margin-top:2rem;
}
.issue-list{
  display:flex;
  justify-content: space-between;
}
.issue-item{
  width: 32%;
  max-width: 343px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.issue-balloon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.issue-fg {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  max-width: 150px;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .issue:before{
    height: 50px;
    bottom: -50px;
  }
  .issue-head p{
    font-size:1.8rem;
  }
  .issue-head h2{
    font-size:2.4rem;
    margin-top:1rem;
  }
  .issue-list{
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap:3rem;
  }
  .issue-item{
    position: relative;
    max-width: inherit;
    width: 100%;
  }
  .issue-balloon {
    width: 80%;
    min-height: 107px;
    height: auto;
    margin: 0 auto 0 0;
    padding: 15px 24px;
    font-size: 1.3rem;
  }
  .issue-item:nth-of-type(2n) .issue-balloon {
    margin: 0 0 0 auto;
}
  .issue-fg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 25%;
    max-width: 120px;
  } 
  .issue-item:nth-of-type(2n) .issue-fg {
    right: auto;
    left: 0;
}
}
/* about ------------------------------------*/
.lp-about {
  padding: 15rem 0;
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  color: #fff;
}
.lp-about-flex{
  display: flex;
  gap:5%;
  align-items: center;
}
.lp-about-info{
  width: 50%;
}
.lp-about-info h3{
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	font-size: 3.2rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	line-height: 2;
	background: #fff;
  color:#8089EC;
  font-feature-settings: "palt";
}
.lp-about-info p{
  font-size:1.8rem;
  margin-top:5rem;
  line-height: 2;
}
.lp-about-img{
  width:45%;
}
@media screen and (max-width: 749px) {
  .lp-about {
    padding: 10rem 0;
  }
  .lp-about-flex{
    flex-direction: column;
    gap:3rem;
  }
  .lp-about-info{
    width: 100%;
  }
  .lp-about-info h3{
    font-size: 2rem;
    padding: 0.3rem 1rem;
    line-height: 2.2;
  }
  .lp-about-info p{
    font-size:1.4rem;
    margin-top:3rem;
  }
  .lp-about-img{
    width:100%;
  }
}
/* example ------------------------------------*/
.example{
  background-color: #fff;
  margin-top: -5rem;
  padding: 10rem 0;
  border-radius: 50px 50px 0 0;
  z-index: 1;
  position:relative;
}
.example h2{
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
}
.example-flex{
  display: flex;
  gap:5rem;
  position:relative;
}
.example-flex:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 24px;
  border-color: transparent transparent transparent #dbdbdb;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.example-block{
text-align: center;
position:relative;
}
.example-block h3{
  background-color: #dbdbdb;
  display: inline-block;
  padding:20px;
  line-height: 1;
  font-size:2rem;
  font-weight: 700;
  border-radius: 999px;
}
.example-block-right h3{
  background-color: #8D55E9;
  color:#fff;
}
.example-inner{
  border: 3px solid #dbdbdb;
  border-radius: 30px;
  padding:5rem 1rem;
  margin-top:-3rem;
}
.example-block-right .example-inner{
  border: 3px solid #8D55E9;
}
.lp-cta-block{
  display: flex;
  margin-top:8rem;
  justify-content: center;
  gap:3rem;
}
.lp-cta-block a{
width:320px;
}
@media screen and (max-width: 749px) {
  .example{
    padding: 5rem 0;
    border-radius: 30px 30px 0 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .example h2{
    font-size: 2rem;
  }
  .example-flex{
    flex-direction: column;
    gap:3rem;
  }
  .example-flex:before {
    border-width: 24px 18px 0 18px;
    border-color:#dbdbdb transparent transparent;
  }
  .example-block h3{
    padding: 1.5rem;
    font-size:1.6rem;
  }
  .example-inner{
    border-radius: 15px;
  }
  .lp-cta-block{
    max-width: 400px;
    text-align: center;
    width: 100%;
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
  .lp-cta-block a{
  width:100%;
  }
}
/* possible ------------------------------------*/
.possible{
  position:relative;
  padding:10rem 0 20rem;
}
.possible:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/creative-drive/img/re/bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.possible-list{
  position:relative;
  display: flex;
  flex-direction: column;
  margin-top:10rem;
  gap:8rem;
}
.possible-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding:2.4rem 5rem;
  box-shadow: 0px 10px 15px 0px rgba(148, 127, 236, 0.2);
}
.possible-item-reverse{
  flex-direction: row-reverse;
}
.possible-number {
  font-weight: 700;
  color:#7965E9;
  line-height: 1;
  font-size: 8.4rem;
  letter-spacing: .05em;
  position: absolute;
  right: 80px;
  top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.possible-item-reverse .possible-number {
  right: 0;
  left:80px;
}
.possible-img{
  width:45%;
}
.possible-info{
  width:50%;
}
.possible-info h3{
  font-size: 2.4rem;
  line-height: 1;
}
.possible-info p{
  font-size: 1.8rem;
  margin-top:2rem;
}
@media screen and (max-width: 749px) {
  .possible{
    padding:8rem 0 10rem;
  }
  .possible:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .possible-list{
    margin-top:10rem;
    gap:5rem;
  }
  .possible-item{
    flex-direction: column-reverse;
    padding:3rem 2rem 2rem;
    gap:2rem;
  }
  .possible-item-reverse{
    flex-direction:  column-reverse;
  }
  .possible-number {
    font-size: 4rem;
    right: 20px;
  }
  .possible-item-reverse .possible-number {
    left:auto;
    right:20px;
  }
  .possible-img{
    width:80%;
    margin:0 auto;
  }
  .possible-info{
    width:100%;
  }
  .possible-info h3{
    font-size: 2.4rem;
  }
  .possible-info p{
    font-size: 1.4rem;
  }
}
/* lp-feature ------------------------------------*/
.lp-feature-list{
  display: flex;
  flex-wrap: wrap;
  margin-top:5rem;
}
.lp-feature-item{
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 10px 15px 0px rgba(148, 127, 236, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:3rem 2.4rem;
  gap:2rem;
}
.lp-feature-item:first-of-type {
  margin: 0 20px 75px auto;
}
.lp-feature-item:nth-of-type(2) {
  margin: 0 auto 75px 20px;
}
.lp-feature-item:nth-of-type(3) {
  margin: 0 auto 0 0;
}
.lp-feature-item:nth-of-type(4) {
  margin: 0 auto;
}
.lp-feature-item:nth-of-type(5) {
  margin: 0 0 0 auto;
}
.lp-feature-item:nth-of-type(-n+2) {
  width: calc((70% - 40px) / 2);
}
.lp-feature-item:nth-of-type(n+3) {
  width: calc((100% - 40px) / 3);
}
.lp-feature-item h3{
  font-size:2.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align:center ;
}
@media screen and (max-width: 749px) {
  .lp-feature-list{
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top:3rem;
    gap:3rem;
  }
  .lp-feature-item:first-of-type,
  .lp-feature-item:nth-of-type(2),
  .lp-feature-item:nth-of-type(3),
  .lp-feature-item:nth-of-type(4),
  .lp-feature-item:nth-of-type(5) {
    margin: 0;
  }
  .lp-feature-item{
    width: 100%!important;
  }
  .lp-feature-item h3{
    font-size:2rem;
  }
}
/* lp-pickup ------------------------------------*/
.lp-pickup{
  margin:15rem 0;
}
/* lp-voice ------------------------------------*/
.lp-voice {
  padding: 10rem 0 15rem;
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  color: #fff;
}
.lp-voice .voice-block{
  padding:0;
  margin-top:5rem;
}
@media screen and (max-width: 749px) {
  .lp-voice {
    padding: 8rem 0 12rem;
  }
}
/* lp-plan ------------------------------------*/
.lp-plan{
  background-color: #F3F4FF;
  margin-top: -5rem;
  padding: 10rem 0;
  border-radius: 50px 50px 0 0;
  z-index: 1;
  position:relative;
}
.lp-plan .cda-plan-block {
  background-color: #fff;
  align-items: flex-end;
}
.lp-plan .cda-plan-table {
  margin-top: 0;
  border-spacing: 0.5rem 1rem ;
}
.lp-plan .cda-plan-table th {
  padding: 1.5rem 0;
  color: #222222;
  text-align: left;
  background-color: #fff;
}
.lp-plan .cda-plan-table .head-th {
  background-color: #fff;
}
.lp-plan .cda-plan-table .head {
  border-radius: 15px 15px 0 0 ;
  font-size: 1.8rem;
  padding:1.8rem 1.5rem;
  color:#fff;
  text-align: center;
}
.lp-plan .head-otameshi{
  background-color: #6069E7!important;
}
.lp-plan .head-standard{
  background-color: #7460E8!important;
}
.lp-plan .head-pro{
  background-color: #8C54E8!important;
}
.lp-plan .table-heading{
  color:#222222;
  font-size:1.6rem;
  font-weight: 700;
  text-align: left;
  border-top:1px solid #d6d6d6;
  border-bottom:1px solid #d6d6d6;
  padding:1.5rem 0;
}
.lp-plan .cda-plan-block p{
  font-size:1.4rem;
}
@media screen and (max-width: 749px) {
  .lp-plan{
    padding: 8rem 0;
    border-radius: 30px 30px 0 0;
  }
  .lp-plan .cda-plan-table .head {
    font-size: 1.6rem;
  }
}
/* lp-plan ------------------------------------*/
.lp-flow{
  margin:10rem 0 15rem;
}
.lp-flow .option{
  background-color: #EFEFEF;
}
@media screen and (max-width: 749px) {
  .lp-flow{
    margin:10rem 0;
  }
}
/* lp-banner ------------------------------------*/
.lp-banner{
  margin-bottom:15rem;
}
.lp-banner-flex{
  display: flex;
  align-items: center;
  border-radius:30px;
  background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
  color:#fff;
  padding:5rem 10rem;
  gap:5%;
}
.lp-banner-img{
  width:45%;
}
.lp-banner-info{
  width:50%;
}
.lp-banner-info h3{
  font-size:3.2rem;
  font-weight: 700;
  line-height:1;
}
.lp-banner-info p{
  font-size:1.8rem;
  margin-top:2rem;
}
.lp-banner .sec-btn{
  text-align: left;
  margin-top:2rem;
}
.lp-banner .btn a {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 749px) {
  .lp-banner{
    margin-bottom:10rem;
  }
  .lp-banner-flex{
    flex-direction: column;
    padding:5rem 2rem;
    gap:3rem;
    text-align: center;
  }
  .lp-banner-img{
    width:80%;
    margin:0 auto;
  }
  .lp-banner-info{
    width:100%;
  }
  .lp-banner-info h3{
    font-size:2.4rem;
  }
  .lp-banner-info p{
    font-size:1.4rem;
    text-align: left;
  }
  .lp-banner .sec-btn{
    text-align: center;
  }
}

/* merit -------------------------------------------------*/
.merit{
  padding:1rem 0;
}

.merit-badge p{
	color:#ffffff;
}

.merit-flex{
  display: flex;
  gap:3rem;
}
.merit-item{
  background-color: #fff;
  border-radius: 15px;
  padding:2rem 0rem;
  width:calc((100% - 6rem)/3);
  display: flex;
  flex-direction: column;
}
.merit-item-wide{
  width:100%;
  margin-top:3rem;
}
.merit-head{
  flex:1;
}
.merit-ttl{
  font-size:26px;
  font-weight: 700;
  margin-top:0.5rem;
}
.merit-img-flex{
  display:flex;
  flex-wrap: wrap;
  gap:2.4rem;
  margin-top:3rem;
}
.merit-img{
  width:calc((100% - 2.4rem)/2);
  position:relative;
}
.merit-img img{
  border-radius: 10px;
}
.merit-badge {
  display: inline-grid;
  color: #fff;
  background-color: #7965E9;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 749px) {
  .merit{
    padding:0.1rem 0;
  }
  .merit-flex{
    flex-direction: column;
    gap:2rem;
  }
.merit-ttl {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0.5rem;
　}
  .merit-item{
    padding:1rem 0rem;
    width:100%;
  }
  .merit-item-wide{
    margin-top:2rem;
  }
  .merit-img-flex{
    margin-top:2rem;
  }
  .merit-img{
    width:100%;
  }
  .merit-badge {
    width: 50px;
    height: 50px;
    top: -1.5rem;
    right: -1.5rem;
    font-size: 1.2rem;
  }
}