@charset "utf-8";
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
  font-family: "Zen Maru Gothic", serif;
}
body{
  background-color: #F4F4F5!important;
}
html, body {
  height: 100%;
  margin: 0;
  font-size:1.2rem;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 画面の高さいっぱい */
}
main {
  flex: 1; /* 空きスペースをここに押し込む */
}
body p{
  color:#fff!important;
  line-height: 3rem;
}
a{
	color: #000 !important;
	transition : all 0.5s ease 0s;
	text-decoration: none;
}
a:hover{
	transition : all 0.5s ease 0s;
	text-decoration: none !important;
}

.material-icons{
display: inline-flex;
vertical-align: middle;
}
.space{
  height: 3rem;
}
/*PCでは無効（改行しない）*/
.sp{
    display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .sp{
    display: block;
  }
	.pc{
		display: none;
	}
  html, body {
  height: 100%;
  margin: 0;
  font-size:1.0rem;
}
}
/**********/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}


/**追従ヘッダーメニュー*****/
header{
position: fixed;
  top: 0;
	z-index: 999;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.7);
}
.slide-btn {
  position: relative;
  display: inline-block;
  font-weight: bold;
  background-color: #fff;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  padding: 0.3rem 0;
  width:100%;
  text-align: center;
  }
.slide-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000; /* ホバー時の背景色 */
  z-index: -1;
  transition: width 0.4s ease;
 border:1px solid #fff;
}
/* ホバー時に背景が左から右へ伸びる */
.slide-btn:hover::before {
  width: 100%;
}
/* ホバー時に文字色を変更（背景と区別するため） */
.slide-btn:hover {
    color:#fff!important;
}

@media screen and (max-width: 750px) {
  header{right: 0px;}
}
 #bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }

/****MV******************************/
.mv{
  height: 100vh; /* 画面全体の高さにする */
  display: flex;
  align-items: center;   /* 垂直中央揃え */
  justify-content: center; /* 水平方向中央揃え */
  flex-direction: column;
  text-align: center;
}
.mv h1 img{
  top:50%;
  width:600px;
}
.mv p{
  line-height: 2rem;
  margin:2rem 0;
}
.mv .inner p{
  color:#DFFF00!important;
  font-size:5rem!important;
  text-shadow:0 0 4px #DFFF00;
  line-height: 4rem;
}
.mv {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #DFFF00;
  animation: bounce 1.6s infinite;
  opacity: 0.5;
  cursor: pointer;
}

/* アニメーション：上下にふわふわ */
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.slide-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease-out;
}

.slide-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACTだけ表示を遅らせる */
.slide-in.delay {
  transition-delay: 1s;
  transition : all 1s ease 0s;
}


@media screen and (max-width:400px) {
.mv .inner p{
  font-size:3rem!important;
  line-height: 3rem;
}
}


/****fvt********************************/
.image-layout {
  position: relative;
  /*max-width: 900px;*/
  margin: 100 auto;
  min-height: 600px;
}

.image {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 各画像の位置 */
.image1 {
  top: 10%;
  left: 0;
    width: 250px;
}

.image2 {
  top: 0;
  right: 0;
  width: 250px;
}
.image3 {
  top: 350px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  width: 350px;
}
/* ロゴ中央に浮かせる */
.logo {
  position: absolute;
  top: 42%;
  right:0;
  width: 300px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: all 0.8s ease-out;
  z-index: 500;
}
.logo img {
  width: 100%;
  display: block;
}
/* 表示アニメーション */
.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}
.image3.show {
  transform: translateX(-50%) translateY(0);
}


.fvt p{
  margin-left: 3rem;
}

@media screen and (max-width: 750px) {
  .image1 {width: 200px;}
  .image2 {width: 200px;}
  .image3 {width: 270px;}
  .fvt p{  margin-left:0;}
}

/****concept******************************/
.concept{
  /*background-image: url("img/networks.webp");*/
  background-size:  cover;
  margin-top:150px;
  padding-top:150px;
  margin-bottom:0px;
  background-position: center;
  color:#fff;
}
.concept h2{
  font-weight:900!important;
  font-size:2.2rem!important;
  text-align: left!important;
  color:#DFFF00;
  font-size:3rem!important;
}
.concept .container{
}
.concept .inner{
  /*background-color: rgba(0, 0, 0, 0.7);*/
 background-color:rgb(255, 255, 255, 0.9);
  border-radius: 3px;
  padding:2rem;
}
.concept .inner img{
  width:100%;
  max-width:300px;
}
.concept .inner h3{
   background:linear-gradient(90deg, #f369e3 0%, #4a10ee 53%, #ff00da 100%);
   /*background-image: linear-gradient(139deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1) 75%, rgba(20, 15, 255, 1) 99%);*/
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size:1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.concept .inner h3 span{
  display: inline-block;
  background: linear-gradient(139deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1) 75%, rgba(20, 15, 255, 1) 99%);
  color: #fff !important;
  padding: 0.2rem 0.4rem;
  margin-right:0.5rem;
  border-radius: 4px;
  background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
  -webkit-text-fill-color: #fff !important; /* ← これが効く */
}
.concept p{
  font-size:1.1rem;
  line-height: 1.5rem;
  color:#fff!important;
}
.concept .inner p{
  color:#000!important;
  font-weight: bold;
}
.concept ul{
  font-size:0.9rem;
  text-align: left;
  color:#000!important;
}
@media screen and (max-width: 750px) {
.concept .inner h3{
  margin-top:2rem;
}
}

/****feature**************************/
.feature h2{
  font-weight:900!important;
  font-size:1.8rem!important;
  color:#fff;
}
.feature h2 span{
  font-size:1.2rem;
  font-weight: bold;
  line-height: 1rem!important;
  color:#DFFF00;
}
.feature .inner{
  background-color: #34287D;
  border-radius: 20px;
 padding:20px;
}
.feature .inner h3{
  color:#fff;
  font-size:1.2rem;
  margin:20px 0;
}
.feature .inner p{
  line-height: 2rem;
}

/****usecase******/
.usecase h2{
  font-weight:900!important;
  font-size:1.8rem!important;
  color:#fff;
}
.usecase h2 span{
  font-size:1.2rem;
  font-weight: bold;
  line-height: 1rem!important;
  color:#DFFF00;
}
.usecase .inner{
  background-color:rgba(0, 0, 0, 0.7);
}
.usecase .inner h3{
  color:#fff;
  font-size:1.2rem;
  margin-top:0.5rem;
}
.usecase .inner img{
  margin:0;
  padding:0;
  max-width:120px;
}
.usecase .inner p{
  line-height: 2rem;
  margin:0!important;
  padding:0!important;
}
.usecase .inner .tag{
  font-size:0.9rem;
  padding:0 0.5rem;
  border-radius: 5px;
  color:#fff;
  background-image: linear-gradient(139deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1) 75%, rgba(20, 15, 255, 1) 99%);
}
/***catch**************/
.catch{
  margin:0 0 100px 0;
}
.catch p{
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color:#DFFF00!important;
  text-shadow:0 0 4px #DFFF00;
}
.catch .btn,.mv .btn{
	display: block;
	background-color: #EE00F6;
	border-radius: 999px;
	box-shadow: 0px 0px 10px 0px rgba(238, 0, 246, 1);
	font-weight: bold;
  width:300px;
  margin:0 auto;
  color:#fff!important;
}
.catch .btn:hover,.mv .btn:hover{
transform: translateY(4px);
transition : all 0.5s ease 0s;
}







/***flow******/
.flow h2{
  font-weight:900!important;
  font-size:1.8rem!important;
  color:#000;
  text-align: center;
}
.flow h2 span{
  font-size:1.2rem;
  font-weight: bold;
  line-height: 1rem!important;
  color:#EE00F6;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin:50px auto 0 auto;
  max-width:800px;
}
.steps ul {
  padding: 0;
}
.steps li {
  list-style-type: none;
}
.steps dd {
  margin-left: 0;
}
.flow03 {
  position: relative;
}
.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.flow03 > li {
  position: relative;
}
.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}
.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background-image: linear-gradient(139deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1) 75%, rgba(20, 15, 255, 1) 99%);
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background-image: linear-gradient(139deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1) 75%, rgba(20, 15, 255, 1) 99%);
  border-radius: 50%;
  left: -4px;
}
.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color:#000;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 750px) {
.steps {
  max-width:100%;
}
  .flow03 > li dl {
  padding-left: 30px;
}
.flow03 > li dl::after {
  width: 20px;
}
}


/*****FAQ******/
.faq h2{
  font-weight:900!important;
  font-size:1.8rem!important;
  color:#fff;
}
.faq h2 span{
  font-size:1.2rem;
  font-weight: bold;
  line-height: 1rem!important;
  color:#DFFF00;
}

.accordion-002 {
    width: 100%;
    margin-bottom: 7px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color:rgba(0, 0, 0, 0.7);
}

.accordion-002 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em;
    /*background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%232589d0%3B%22%2F%3E%0A%3C%2Fsvg%3E');*/
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color:#fff;
    font-weight: 600;
    font-size:1.2rem;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
    display: none;
}

.accordion-002 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-002[open] summary::after {
    transform: rotate(225deg);
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
    line-height: 2rem; ;
}


/***背景*****/
.deepblue{
  background-color: #050533;
}
.white{
  background-color: #F4F4F5;
}

/***オウンドメディアへのリンク*******/
.media-float-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px; /* 調整可能 */
  /*height: 320px;*/
  z-index: 999;
  transition: opacity 0.3s ease;
}

.media-float-link img {
  width: 100%;
  height: auto;
  display: block;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.15);*/
}

.media-float-link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
.media-float-link {
  width: 200px;

}
}
 

/***FOTTER*****************/
footer{
	background-color:#000;
	color:#fff;
	text-align: center;
	padding:5rem 0 10rem 0;
}
footer h1{
	font-size:0.5rem!important;
}
footer a{
  color:#fff!important;
  font-size:0.9rem;
}
footer a:hover{
  color:#EE00F6!important;
  font-size:0.9rem;
}

/**メールフォーム*****************/
.cform {
	padding-bottom:100px;
}
.cform-inner {
  width: 70%;
  margin: 0 auto;
}
.cform dt {
  display: flex;
  align-items: center;
}
.cform dt span {
  padding-left: 0.5em;
  font-size: 0.8rem;
  color: #f00;
}
.cform dd {
  margin-bottom: 15px;
}
.cform .text {
	margin-bottom: 2em;
}
.cform .name,.cform .mail,.cform .tel
{	
    height: 2.4em;
    width: 100%;
    padding: 5px 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cform .message
{	
    height: 7em;
    width: 100%;
    padding: 5px 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cform .name:focus,.cform .mail:focus,.cform .tel:focus,.cform .message:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.cform .btn {
  width: 200px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
}
.cform .btn:hover {
  color: #fff;
  background-color: #000;
}
.cform .btn-back {
  background: #000;
  margin-right: 15px;
}
.cform .btn-submit {
  background: #6FAFE0;
}
.cform .btn-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.mw_wp_form_preview {
  margin-left: 0.5em;
}

@media screen and (max-width: 560px) { 
.cform-inner {
  width: 100%;}
}


/****固定ページ******************/
.page .container{
  margin-top:90px;
  margin-bottom: 200px;
}
.page p{
  color:#000!important;
}
.page h2{
text-align: center;
font-size:1.5rem;
font-weight: bold;
border-bottom: 1px solid #ccc;
margin-top:3rem;
padding:3rem 0;
}
.page h3{
  text-align: center;
font-size:1.2rem;
margin-top:3rem;
padding:2rem 0;

}

.page table{
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin:0 auto 2rem auto;
}
.page table th, .page table td {
  border-bottom: 2px solid #c1c7c6;
  padding: 1em;
}
.page table th {
  border-bottom: 2px solid #4d9bc1;
  font-weight: bold;
  text-align: center;
  width: 30%;
  min-width: 4em;
}

/****media******************/
.media-header header{
  position: fixed;
  top: 0;
	z-index: 999;
  height: 90px;
  background-color: rgba(69, 12, 101, 0.7);
}

.media-header header .row img{
  border:1px solid red;
}
.media{
  margin-top:100px;
}
.media a{
  text-decoration: none!important;
}
.media ul{
	list-style: none!important;
	padding-left: 0!important;
}
.media h2{
	font-size:1.4rem;
	letter-spacing: 0.2em;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	display: flex;
  align-items: center;
  padding: .5em .7em;
	margin: 0rem 0 1.5rem 0;
	background-color: #fff;
}
.media h2::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: 1em;
    background-color: #2589d0;
    content: '';
	border-radius: 999px;
}
.media .tag a{
	background-color:#2589d0;
	color:#fff!important;
	border-radius: 999px;
	padding:0.2rem 1rem;
	margin-right:1rem;
	font-size:0.9rem;
	letter-spacing: 0.2em;
	line-height: 2rem;
}
.media .tag a:hover{
	background-color:#70BFF6;
}
.media .tag img{
	margin-right:0.5rem;
}
.media .tag span{
	font-weight: bold;
	letter-spacing: 0.2em;
}
/*投稿一覧*/
.m_box{
	background-color:#fff;
	box-shadow: 1px 1px 6px #ccc;
	border-radius: 0 0 5px 5px;
	height:100%;
  position: relative;
	/*overflow:hidden;*/
}
.m_box .kv{
	position: relative;/*親要素にrelative*/
	overflow:hidden;
}
.m_box .new-txt{
	position:absolute;
	top: 8px;
  right: 8px;
	background-color:red;
	color:#fff;
	font-size:0.8rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	text-align:center;
  line-height: 3rem;
  font-weight: bold;
  z-index: 999;
}
.m_box img{
	width: 100%;
	object-fit:cover;
	aspect-ratio: 16 / 9;
}
.m_box img:hover{
	transform:scale(1.2,1.2);
	transition:0.5s all;
}

.m_box h3{
	font-size:1.1rem;
	line-height: 1.5rem;
	font-weight: bold;
}
.m_box h3 a{
	color:#000!important;
}
.m_box h2 a:hover{
	color:#026CB6!important;
}

.m_box .cat{
	font-size:0.9rem;
	line-height:1.5rem;
	text-align: right;
}
.m_box .cat ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin:0;
}

.m_box .cat a{
	border:1px solid #026CB6;
	color:#026CB6!important;
	padding:3px 7px;
	border-radius: 999px;
	margin:0 2px 2px 0;
	font-size:0.6rem;
}


/****single******************/
/* 中央揃え用 – どのエディタでも効く */
.aligncenter,
.wp-block-image.aligncenter img,
figure.aligncenter,
.wp-block-image.is-resized.aligncenter img {
  display: block;          /* インライン→ブロック化 */
  margin-left:  auto;      /* 左右マージンを自動 */
  margin-right: auto;
}
/*******投稿ページ*********/
.post_page{
    margin:120px 0;
    padding:0!important;
    color:#000!important;
}
.post_page img{
  max-width: 800px!important;
  width:100%;
}
.post_page .inner{
	background-color: #fff;
	border-radius: 10px;
	padding:4rem!important;
	box-shadow: 1px 1px 6px #ccc;
}

.post_page a{
	color:#2589d0!important;
	text-decoration: underline;
}
.post_page h1{
	font-size:1.7rem;
	font-weight: bold;
}
.post_page p{
	font-size: 1rem;
	font-weight: normal;
	line-height:2rem;
	margin:.5rem 0;
  color:#000!important;
}
.post_page h2{
	font-size:1.2rem;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	display: flex;
    align-items: center;
    padding: .5em .7em;
	margin: 2rem 0 1.5rem 0;
}
.post_page h2::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: 1em;
    background-color: #2589d0;
    content: '';
	border-radius: 999px;
}
.post_page h3{
	font-size:1.2rem;
	font-weight: bold;
	margin: 0 0 1rem 0rem;
	padding: .5em 0;
	border-bottom: solid 3px #cce4ff;
	position: relative;
}
.post_page h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #2589d0;
	bottom: -3px;
	width: 20%;
  }
.post_page h4{
	font-size:1.1rem;
	font-weight: bold;
	margin:1rem 0;
	padding: .5em 0;
	border-bottom: 1px solid #ccc;
  }
.post_page table{
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
 margin:1rem 0;
}
.post_page table th {
 padding: 10px;
 background: #e9faf9;
 border: solid 1px #778ca3;
  text-align: center;
}
.post_page table td {
 padding: 10px;
 border: solid 1px #778ca3;
}
.waku{
	background-color: #D6EDF9;
	padding:2rem;
	margin:1rem;
	border-radius: 5px;
}
.post_page ul,.post_page li{
	list-style-type: disc;
	margin-left: 1rem;
	line-height: 2rem;
}
.post_page .date{
	text-align: right;
	font-size:0.8rem;
}
.post_page .tag{
	background-color:#2589d0;
	color:#fff;
	border-radius: 999px;
	padding:0.2rem 1rem;
	font-size:0.8rem
}
.post-meta .tag {
  display: inline-block;   /* ブロック化して margin が有効に */
}
.post-meta .tag + a {      /* “タグ / タグ …” のリンクは横並び */
  margin-left: .25rem;     /* 区切りが &nbsp;/&nbsp; のため微調整 */
}
/* タグ行の後の <br> を挟んで出る “カテゴリー” ラベルだけにマージンを付与 */
.post-meta br + .tag {
  margin-top: .5rem;       /* ここが行間より広い縦余白 */
}
.post_page .yellow{
	background: linear-gradient(transparent 50%, #FCFFAF 50%);
}
.post_page .blue{
	background: linear-gradient(transparent 50%, #AFE4FF 50%);
}
.post_page .pink{
	background: linear-gradient(transparent 50%, #FFAFF7 50%);
}
.pr img{margin-top: 1.5rem;}

.post_page nav{
  font-size:0.8rem;
}

@media screen and (max-width: 992px) { 
	.post_page .inner{
		background-color: #fff;
		border-radius: 10px;
		padding:2rem!important;
	}
}

/**ふきだし
.nakayama,.nakahara,.w{
	margin:2rem 0;
	padding:0;
}
.nakayama img,.nakahara img,.w img{
	width: 70px;
}
.nakayama .inner,.nakahara .inner,.w .inner{
	text-align: center;
	padding:0;
}

.balloon{
	position: relative;
	display: inline-block;
	padding:1rem 2rem;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 10px;
  }
  .nakahara .balloon{
	background-color:#FFDCDC;
	margin: 0 0 0 10px;
  }
  .nakayama .balloon{
	background-color:#DDF6ED;
	margin: 0 0 0 0;
  }
  .w .balloon{
	background-color:#FFFDCB;
	margin: 0 0 0 0px;
  }
**/

/****スマホ*******/
@media screen and (max-width: 768px) { 
	.nakahara .inner{
		text-align: left;
		padding-bottom: 1rem;
	}
	.nakayama .inner{
		text-align: right;
		padding-bottom: 1rem;
	}
	.nakahara .balloon:before {
		content: "";
		position: absolute;
		top: -24px;
		left: 10%;
		margin-left: -15px;
		border: 12px solid transparent;
		border-bottom: 12px solid #FFDCDC;
		z-index: 2;
	  }
	  
	  .nakahara .balloon:after {
		content: "";
		position: absolute;
		top: -30px;
		left: 10%;
		margin-left: -17px;
		border: 14px solid transparent;
		z-index: 1;
	  }
	  .nakayama .balloon:before {
		content: "";
		position: absolute;
		top: -24px;
		left: 90%;
		margin-left: -15px;
		border: 12px solid transparent;
		border-bottom: 12px solid #DDF6ED;
		z-index: 2;
	  }
	  
	  .nakayama .balloon:after {
		content: "";
		position: absolute;
		top: -30px;
		left: 10%;
		margin-left: -17px;
		border: 14px solid transparent;
		z-index: 1;
	  }
	  .nakayama,.nakahara,.w{
		margin:1rem 0;
		padding:0;
	}
	.w img{
		margin-bottom:0.5rem;
	}
}

/****PC*******/
@media screen and (min-width: 800px) { 

  .nakahara .balloon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -24px;
	margin-top: -12px;
	border: 12px solid transparent;
	border-right: 12px solid #FFDCDC;
	z-index: 2;
  }
  
  .nakahara .balloon:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -14px;
	border: 14px solid transparent;
	/*border-right: 14px solid #555;*/
	z-index: 1;
  }

  .nakayama .balloon:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -24px;
	margin-top: -12px;
	border: 12px solid transparent;
	border-left: 12px solid #DDF6ED;
  }
  
  .nakayama .balloon:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	margin-top: -14px;
	border: 14px solid transparent;
	/*border-left: 14px solid #555;*/
	z-index: 1;
  }
}
  .balloon p {
	margin: 0;
	padding: 0;
  }

/****ページング****/
.pagination{
   margin:40px 0 0;
	
}
.nav-links{
   display:flex;
	margin:0 auto;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right:10px;
   /*padding:20px 25px;*/
	padding:10px 10px;
   color:#333;
   border-radius:3px;
   box-shadow:0 3px 3px #999;
   background:#fff;
}
.pagination .current{
   /*padding:20px 25px;*/
	padding:10px 10px;
   background:#026CB6;
   color:#fff;
}
.pagination .prev,
.pagination .next{
   background:transparent;
   box-shadow:none;
   color:#6FAFE0;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
}












