@charset "utf-8";
:root {
  /* base */
  --base-p-margin-bottom-40: 40px;
  --base-p-font-size-18: 18px;
}
@media screen and (max-width:500px) {
  :root {
    /* base */
    --base-p-margin-bottom-40: 30px;
    --base-p-font-size-18: 16px;
  }
}
main{
  margin-top: 125px;
}
body::before {
    content: '';
    position: absolute;
    top: -125px;
    left: -700px;
    width: 70vw;
    height: 1880px;
    background: #f4f9f8;
    -webkit-transform: skewX(-35deg);
    transform: skewX(-35deg);
    z-index: -1;
    pointer-events: none;
}
body.home::before{
  background: -webkit-gradient(linear, left top, left bottom, from(#1fbc99), color-stop(10%, #1fbc99), color-stop(70%, #1c7a76), to(#1c7a76));
  background: linear-gradient(180deg, #1fbc99 0%, #1fbc99 10%, #1c7a76 70%, #1c7a76 100%);
}
body::after {
    content: "";
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(/assets/images/cmn/bg.jpg) no-repeat left top / cover;
}
body.bodygray{
  background: #f7f7f7;
}
body.bodygray::before {
  display:none;
}
.w{
  width:100%;
  max-width:1600px;
  min-width: 1200px;
  padding:0 50px;
  margin: 0 auto;
}

@media screen and (max-width:1600px) {
  body::before {
      top: -125px;
      left: -700px;
      width: 80vw;
      height: 1880px;
  }
}
@media screen and (max-width:860px) {
  main{
    margin-top: 90px;
  }
  .w{
    min-width: auto;
    padding:0 25px;
  }
}
@media screen and (max-width:500px) {
  main{
    margin-top: 70px;
  }
  .w{
    min-width: auto;
    padding:0 15px;
  }
}
@media screen and (max-width:320px) {
  body::before {
      top: -125px;
      left: -700px;
      width: 86vw;
      height: 1880px;
  }
}
header{
  position: fixed;
  display: block;
  width:100%;
  height:125px;
  top:0;
  left:0;
  z-index: 15;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0);
  transition: 0.3s;
  line-height: 1.8;
}
header{
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
.ss header{
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
header:hover,
.home header:hover{
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.ss header:before,
.hmopen header:before{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: url(/assets/images/cmn/shadow.png) 50% 0 no-repeat;
  z-index: 1;
}
.scrolled header{
  height:100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
header .inner{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
header .l_header{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  align-items: center;
}
header .r_header{
  height:125px;
  transition: 0.3s;
}
.scrolled header .r_header{
  height:100px;
}
header .l_header .logo{
  padding:0 50px;
}
header .l_header .logo img{
  width:100%;
  max-width:175px;
  margin:0 auto;
}
header .l_header .logo img.logo-c{
  display:block;
}
header .l_header .logo img.logo-w{
  display:none;
}
.home header .l_header .logo img.logo-w{
  display:block;
}
.home header .l_header .logo img.logo-c{
  display:none;
}
.home.ss header .l_header .logo img.logo-w,
.home header:hover .l_header .logo img.logo-w{
  display:none;
}
.home.ss header .l_header .logo img.logo-c,
.home header:hover .l_header .logo img.logo-c{
  display:block;
}
header .l_header .nav{
  display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
}
header .l_header .nav li a{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  width:100%;
  height: 125px;
  padding:0 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color:#000;
  transition: 0.3s;
}
.scrolled header .l_header .nav li a{
  height:100px;
}
header .l_header .nav li a .en{
  font-weight: bold;
  letter-spacing: 0rem;
  font-size: 18px;
}
header .l_header .nav li a .jp{
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.home header .l_header .nav li a{
  color:#000;
}
.home.ss header .l_header .nav li a,
.home header:hover .l_header .nav li a{
  color:#000;
}
header .l_header .nav li a:hover,
.home header .l_header .nav li a:hover{
  color:#3a4c5f;
}

@media screen and (max-width:1300px) {
  header .l_header .nav li a{
    padding:0 15px;
  }
}
@media screen and (max-width:1200px) {
  header .l_header .nav{
    display:none;
  }
}
/*-----*/
header .inner .r_header{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
/*-----*/

header .inner .r_header .hm{
  position: relative;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: 0.3s ease-in-out;
}
header .inner .r_header .hm span{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-end;
	width: 84px;
	height: 38px;
	padding: 10px 25px 5px;
	cursor: pointer;
	box-sizing: border-box;
}
header .inner .r_header .hm span:before,
header .inner .r_header .hm span:after{
		content: "";
		display: block;
		width: 44px;
		height: 2px;
		background: #000;
		margin: 2px 0px;
    text-align: center;
		transition: 0.3s;
}
header .inner .r_header .hm i{
		display: block;
		width: 44px;
		margin: 5px auto;
		height: 2px;
		background: #000;
		transition: 0.3s;
}
header .inner .r_header .hm p{
  width:100%;
  color:#000;
  font-size: 1.2rem;
  text-align: center;
  transition: 0.3s;
}
header .inner .r_header .hm p:nth-of-type(2){
  display:none;
}
header .inner .r_header .hm:hover i{
  margin: 1px auto;
}

/*-*/
header:hover .inner .act .hm span:before,
header:hover .inner .act .hm span:after,
.ss header .inner .r_header .hm span:before,
.ss header .inner .r_header .hm span:after,
.tech header .inner .r_header .hm span:before,
.tech header .inner .r_header .hm span:after,
.page-template-page-tech header .inner .r_header .hm span:before,
.page-template-page-tech header .inner .r_header .hm span:after,
.error404 header .inner .r_header .hm span:before,
.error404 header .inner .r_header .hm span:after{
		background: #000;
}
header:hover .inner .act .hm i,
.ss header .inner .r_header .hm i,
.tech header .inner .r_header .hm i,
.page-template-page-tech header .inner .r_header .hm i,
.error404 header .inner .r_header .hm i{
		background: #000;
}
header:hover .inner .act .hm p,
.ss header .inner .r_header .hm p,
.hmopen header .inner .r_header .hm p,
.tech header .inner .r_header .hm p,
.page-template-page-tech header .inner .r_header .hm p,
.error404 header .inner .r_header .hm p{
  color:#000;
}


.hmopen header .inner .r_header .hm span:before{
		transform: rotate(225deg) translate(-7px, -7px);
    background: #000;
}
.hmopen header .inner .r_header .hm span:after{
		transform: rotate(-225deg) translate(-5px, 5px);
    background: #000;
}
.hmopen header .inner .r_header .hm:hover i,
.hmopen header .inner .r_header .hm i{
    margin: 5px auto;
}
.hmopen header .inner .r_header .hm i{
		opacity: 0;
}

.hmopen header .inner .r_header .hm p:nth-of-type(1){
  display:none;
}
.hmopen header .inner .r_header .hm p:nth-of-type(2){
  display:block;
}
.hmopen header .inner .r_header .hm{
  position: absolute;
  top:30px;
  right:0px;
}
@media screen and (max-width:1418px) {
  header .l_header .nav li a{
    padding:0 20px;
  }
}
@media screen and (max-width:1310px) {
  header .l_header .logo{
    padding:0 25px 0 50px;
  }
  header .l_header .nav li a{
    padding:0 15px;
  }
}
@media screen and (max-width:860px) {
  header{
    height:90px;
  }
  header .r_header{
    height:90px;
  }
  .scrolled header{
    height:90px;
  }
  .scrolled header .r_header{
    height:90px;
  }
  header .l_header .logo{
    padding:0 25px;
  }
  header .l_header .nav li a,
  .scrolled header .l_header .nav li a{
    height:90px;
  }
}
@media screen and (max-width:680px) {
  header .l_header .logo{
    padding:0 15px 0 15px;
  }
  header .l_header .logo img{
    max-width:145px;
  }
  header .inner .r_header .hm span{
  	width: 54px;
  	height: 38px;
  	padding: 10px 10px 5px;
  }
  header .inner .r_header .hm span:before,
  header .inner .r_header .hm span:after{
  		content: "";
  		display: block;
  		width: 34px;
  		height: 2px;
  		background: #000;
  		margin: 2px 0px;
      text-align: center;
  		transition: 0.3s;
  }
  header .inner .r_header .hm i{
  		display: block;
  		width: 34px;
  		margin: 5px auto;
  		height: 2px;
  		background: #000;
  		transition: 0.3s;
  }

}

@media screen and (max-width:500px) {
  header{
    height:70px;
  }
  header .r_header{
    height:70px;
  }
  .scrolled header{
    height:70px;
  }
  .scrolled header .r_header{
    height:70px;
  }
  header .l_header .logo img{
    max-width:115px;
  }
  header .inner .r_header .hm span{
  	width: 44px;
  	height: 23px;
  	padding: 10px 5px 5px;
  }
}
/*-----*/
header .inner .r_header .h-btn{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
header .inner .r_header .h-btn li{
  width:120px;
}
header .inner .r_header .h-btn li a{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color:#fff;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}
header .inner .r_header .h-btn li a svg{
  display:block;
  width:25px;
  margin:0 auto 6px;
  fill:#fff;
}
header .inner .r_header .h-btn li a span{
  font-size: 14px;
  line-height: 1.2;
}
header .inner .r_header .h-btn li a span i{
  display:block;
}
header .inner .r_header .h-btn li a b{
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 0.9;
  display:none;
}
header .inner .r_header .h-btn li:nth-of-type(1) a{
  background: #1fbc99;
}
header .inner .r_header .h-btn li:nth-of-type(1) a:hover{
  background: #24cda7;
}
header .inner .r_header .h-btn li:nth-of-type(2) a{
  background: #019e97;
}
header .inner .r_header .h-btn li:nth-of-type(2) a:hover{
  background: #04b5ad;
}

.scrolled header .inner .r_header .h-btn li a{
  padding:10px;
}
.scrolled header .inner .r_header .h-btn li a svg{
  width:25px;
  margin:0 auto 0px;
}
@media screen and (max-width:1300px) {
  header .inner .r_header .h-btn li{
    width:100px;
  }
}
@media screen and (max-width:860px) {
  header .inner .r_header .h-btn li a svg{
    width:20px;
    margin:0 auto 4px;
  }
  header .inner .r_header .h-btn li a span{
    font-size: 12px;
  }
  .hmopen header .inner .r_header .hm{
    top:20px;
  }
}
@media screen and (max-width:680px) {
  header .inner .r_header .h-btn li{
    width:90px;
  }
  header .inner .r_header .h-btn li a{
    padding:0px;
  }
  header .inner .r_header .h-btn li a svg{
    width:20px;
    margin:0 auto 0px;
  }
  .scrolled header .inner .r_header .h-btn li a svg{
    width:20px;
    margin:0 auto 0px;
  }
}
@media screen and (max-width:500px) {
  header .inner .r_header .h-btn li{
    width:55px;
  }
  header .inner .r_header .h-btn li a{
    padding:6px 3px;
  }
  .scrolled header .inner .r_header .h-btn li a{
    padding:6px 3px;
  }
  header .inner .r_header .h-btn li a span {
    display: none;
  }
  header .inner .r_header .h-btn li a b{
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 0.9;
    display:block;
    margin-top: 10px;
  }
  .hmopen header .inner .r_header .hm p:nth-of-type(2){
    margin-top: 2px;
  }
  .hmopen header .inner .r_header .hm{
    top:15px;
  }
}

/*-----*/

#navwrap{
  display:none;
  position: absolute;
  top:125px;
  left:0;
  width:100%;
  padding:80px 0;
  background: #233242;
  opacity: 0;
  animation: navmenu 0.5s ease forwards;
}
@keyframes navmenu {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.scrolled #navwrap{
  top:100px;
}
.l_header .nav > li.hasmenu.is_open #navwrap{
  display:block;
}
#navwrap .nav_inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 25px;
  justify-content: space-between;
}
#navwrap .nav_inner .t{
  width:200px;
}
#navwrap .nav_inner .elm{
  width:calc(100% - 200px);
  padding-left: 50px;
}
#navwrap .nav_inner .t a{
  display:block;
  height: auto;
  padding: 0 0px;
  transition: 0.3s ease-in-out;
}
#navwrap .nav_inner .t a .en{
  color:#3a4c5f;
  font-size: 24px;
  letter-spacing: 0rem;
  font-weight: 700;
  line-height: 1.0;
}
#navwrap .nav_inner .t a .jp{
  color:#fff;
  font-weight: bold;
  font-size: 22px;
  margin-top: -10px;
}
#navwrap .nav_inner .elm ul{
  width:100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
#navwrap .nav_inner .elm ul li{
  width:47%;
  margin-bottom: 30px;
}
#navwrap .nav_inner .elm ul li a{
  position: relative;
  display:block;
  height: auto;
  padding: 0 0px 0 35px;
  color:#fff;
  transition: 0.3s ease-in-out;
}
#navwrap .nav_inner .t a:hover,
#navwrap .nav_inner .elm ul li a:hover{
  filter:alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;
}
#navwrap .nav_inner .elm ul li a::before,
#navwrap .nav_inner .elm ul li a::after{
  content:"";
  position: absolute;
  transition: 0.3s ease-in-out;
}
#navwrap .nav_inner .elm ul li a::before{
  width:24px;
  height:24px;
  top:2px;
  left:0;
  background: #233242;
  border: 1px solid #fff;
  border-radius: 50px;
}
#navwrap .nav_inner .elm ul li a::after{
  top:calc(50% - 3px);
  left:10px;
  width:4px;
  height:4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/*---------------------------------
content
-----------------------------------*/
#content{
  width:100%;
  min-width: 1300px;
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  padding: 90px 0;
}
#column_wrap{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  max-width:1600px;
  min-width: 1200px;
  padding:0 50px;
  margin: 0 auto;
}
#column_main{
  width: calc(100% - 480px);
  padding:30px;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
}
#column_side {
  width: 480px;
  padding: 30px 0px 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width:860px) {
  #content{
    min-width: auto;
  }
  #column_wrap{
  	flex-wrap: wrap;
  }
  #column_wrap{
    min-width: auto;
    padding:0 0px;
  }
  #column_main{
    width: 100%;
    padding:30px;
    box-sizing: border-box;
    border: none;
  }
  #column_side {
    width: 100%;
  }
}
@media screen and (max-width:760px) {
  #content{
    padding: 60px 0;
  }
}
@media screen and (max-width:760px) {
  #column_main{
    padding:15px;
  }
}
/*---------------------------------
 progress
-----------------------------------*/
.p_elm1{
  position: absolute;
  right: 16%;
  top: 210px;
  display:block;
  z-index:-1;
}
.progress {
   height: 3px;
   width: 570px;
   background: linear-gradient(#1fbc99 0 0),
       linear-gradient(#1fbc99 0 0),
       #eceeef;
   background-size: 30% 100%;
   background-repeat: no-repeat;
   animation: progress-7x9cg2 10.199999999999999s infinite;
   transform:rotate(-54deg);
}
body.bodygray .p_elm1{
  display:none;
}
@keyframes progress-7x9cg2 {
   0% {
      background-position: -150% 0,-150% 0;
   }

   66% {
      background-position: 250% 0,-150% 0;
   }

   100% {
      background-position: 250% 0, 250% 0;
   }
}
.p_elm2{
  position: absolute;
  right: 5%;
  top: 510px;
  display:block;
  z-index:-1;
}
.progress2 {
   height: 3px;
   width: 470px;
   background: linear-gradient(#1fbc99 0 0),
       linear-gradient(#1fbc99 0 0),
       #eceeef;
   background-size: 30% 100%;
   background-repeat: no-repeat;
   animation: progress-5x8cg2 13.199999999999999s infinite;
   transform:rotate(-54deg);
}
body.bodygray .p_elm2{
  display:none;
}
@keyframes progress-5x8cg2 {
   0% {
      background-position: -150% 0,-150% 0;
   }

   66% {
      background-position: 250% 0,-150% 0;
   }

   100% {
      background-position: 250% 0, 250% 0;
   }
}
@media screen and (max-width:860px) {
  .p_elm1{
    right: 11%;
    top: 210px;
  }
  .p_elm2{
    right: 3%;
    top: 410px;
  }
}
@media screen and (max-width:500px) {
  .p_elm1{
    right: 8%;
    top: 190px;
  }
  .p_elm2{
    right: 1%;
    top: 310px;
  }
  .progress {
     width: 450px;
  }
  .progress2 {
     width: 270px;
  }
}
/*---------------------------------
 pan
-----------------------------------*/
#pan_wrap{
  width: 100%;
  min-width: 1300px;
  padding:10px 0;
}
#pan {
    font-size: 1.4rem;
    color: #000;
}
#pan ul{
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
#pan ul li{
	display: block;
	position: relative;
	overflow: hidden;
	padding: 5px 5px;
}
#pan ul li:nth-last-of-type(n+2){
	padding-right: 30px;
}
#pan ul li:nth-last-of-type(n+2):before{
	content: "";
	display: block;
	height: 6px;
	width: 6px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 4px);
	right: 13px;
}
.tech #pan ul li:nth-last-of-type(n+2):before,
.page-template-page-tech #pan ul li:nth-last-of-type(n+2):before,
.error404 #pan ul li:nth-last-of-type(n+2):before{
    border-color: #000;
}
#pan ul li a{
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #000;
  transition: 0.3s ease-in-out;
}
#pan ul li a:hover{
	color: #1fbc99;
}
@media screen and (max-width: 860px){
  #pan_wrap{
    min-width: auto;
  }
	#pan ul li:last-child{
    max-width:17em; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
  }
}
@media screen and (max-width: 400px){
	#pan {
      font-size: 1.2rem;
      padding:6px 0;
  }
}
/*---------------------------------
 page_nav
-----------------------------------*/
#page_nav{
  width:100%;
  padding:15px 0;
  background: #233242;
}
#page_nav.tb{
  display:none;
}
#page_nav .w{
  position: relative;
}
#page_nav .w > div{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#page_nav .w ul{
  width:900px;
  padding:0 40px 0 0px;
  justify-content: center;
}
#page_nav .w ul li{
  flex-grow: 1;
}
#page_nav .w ul li a{
  font-size: 16px;
  font-weight: bold;
  color:#fff;
  display:block;
  padding:5px 0px 5px 10px;
}
#page_nav .w ul li a span{
  position: relative;
  padding-right: 30px;
}
#page_nav .w ul li a:hover{
  filter:alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;
}
#page_nav .w::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: -moz-linear-gradient(left,  rgba(35,50,66,0) 0%, rgba(35,50,66,0) 30%, rgba(35,50,66,0) 70%, rgba(35,50,66,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 30%,rgba(35,50,66,0) 70%,rgba(35,50,66,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(35,50,66,0) 0%,rgba(35,50,66,0) 30%,rgba(35,50,66,0) 70%,rgba(35,50,66,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( endColorstr='#233242',GradientType=1 ); /* IE6-9 */
}
#page_nav .w ul li a span::before,
#page_nav .w ul li a span::after{
  content:"";
  position: absolute;
  transition: 0.3s ease-in-out;
}
#page_nav .w ul li a span::before{
  width:17px;
  height:17px;
  top:4px;
  right:0;
  background: #233242;
  border: 1px solid #fff;
  border-radius: 50px;
}
#page_nav .w ul li a span::after{
  width:4px;
  height:4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#page_nav .w ul li a.pn1 span::after{
  top:calc(50% - 2px);
  right:7px;
  transform: rotate(135deg);
}
#page_nav .w ul li a.pn2 span::after{
  top:calc(50% - 1px);
  right:8px;
  transform: rotate(45deg);
}
@media screen and (max-width: 860px){
  #page_nav.tb{
    display:block;
  }
}
@media screen and (max-width: 500px){
  #page_nav{
    padding:10px 0;
  }
  #page_nav .w ul{
    width:700px;
  }
  #page_nav .w ul.pn_1{
    width:400px;
  }
  #page_nav .w ul li a{
    font-size: 14px;
  }
  #page_nav .w ul li a span{
    padding-right: 25px;
  }
  #page_nav .w ul li a span::before{
    width:15px;
    height:15px;
    top:2px;
  }
  #page_nav .w ul li a.pn1 span::after{
    top:calc(50% - 3px);
    right:6px;
    transform: rotate(135deg);
  }
  #page_nav .w ul li a.pn2 span::after{
    top:calc(50% - 2px);
    right:7px;
    transform: rotate(45deg);
  }
}
/*---------------------------------
 page-title
-----------------------------------*/
#mmv .page-title{
  position: relative;
  padding:4rem 0 7rem;
  z-index:1;
}
#mmv .page-title.tcenter{
  text-align: center;
}
#mmv .page-title .en{
  letter-spacing: 0rem;
  color:#000;
  font-weight: 900;
  font-size: calc(2.3em + 2.3vw);
  line-height: 1;
  margin-bottom: 5px;
}
#mmv .page-title h1,
#mmv .page-title .stitle{
  font-weight: bold;
  font-size: calc(0.8em + 0.8vw);
  line-height: 1;
  letter-spacing: 0.2rem;
}
body.bodygray #mmv .page-title .en{
  color:#fff;
}
body.bodygray #mmv .page-title h1,
body.bodygray #mmv .page-title .stitle{
  margin-top: -15px;
}

@media screen and (max-width:860px) {
  #mmv .page-title .en{
    font-size: calc(2.6em + 2.6vw);
  }
  #mmv .page-title h1,
  #mmv .page-title .stitle{
    font-size: calc(1.0em + 1.0vw);
  }
}
@media screen and (max-width:500px) {
  #mmv .page-title{
    padding:2rem 0 5rem;
  }
  #mmv .page-title .en{
    font-size: calc(2.3em + 2.3vw);
  }
}
/*---------------------------------
 s-title
-----------------------------------*/
#mmv .s-title{
  position: relative;
  padding:4rem 0 7rem;
  z-index:1;
}
#mmv .s-title .ct_name{
  font-weight: bold;
  font-size: 20px;
}
#mmv .s-title h1{
  font-weight: bold;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
@media screen and (max-width:860px) {
  #mmv .s-title h1{
    font-size: calc(1.0em + 1.0vw);
  }
}
@media screen and (max-width:500px) {
  #mmv .s-title{
    padding:2rem 0 5rem;
  }
  #mmv .s-title .ct_name{
    font-weight: bold;
    font-size: 15px;
  }
}
/*---------------------------------
 s_page1
-----------------------------------*/
#s_page1 .w{
  flex-wrap: wrap;
}
#s_page1 .w #column_main{
  width:calc(100% - 480px);
  padding:30px;
  background: #fff;
  border: 1px solid #dadbd6;
}
#s_page1 .w #column_side {
  width: 480px;
  padding: 30px 30px 0;
  background: #fff;
  border-top: 1px solid #dadbd6;
  border-right: 1px solid #dadbd6;
  border-bottom: 1px solid #dadbd6;
}
@media screen and (max-width:860px) {
  #s_page1 .w #column_main{
    width:100%;
    padding:30px;
    border: 1px solid #dadbd6;
  }
  #s_page1 .w #column_side {
    width:100%;
    padding: 30px 30px 0;
    border: 1px solid #dadbd6;
  }
}
@media screen and (max-width:680px) {
  #s_page1 .w #column_main{
    width:100%;
    padding:15px;
    border: 1px solid #dadbd6;
  }
  #s_page1 .w #column_side {
    width:100%;
    padding: 30px 15px 0;
    border: 1px solid #dadbd6;
  }
}
/*---------------------------------
 hadding
-----------------------------------*/
.base_hadding{
  display:block;
  text-align: center;
  margin-bottom: 80px;
}
.base_hadding .en{
  letter-spacing: 0rem;
  color:#edf5f4;
  font-weight: 900;
  font-size: calc(2.6em + 2.6vw);
  line-height: 1;
}
.base_hadding h2{
  font-weight: bold;
  font-size: calc(0.8em + 0.8vw);
  line-height: 1;
  letter-spacing: 0.2rem;
  margin-top: -15px;
}
.base_hadding.had_left{
  text-align: left;
}
.base_hadding.had_w .en{
  color:#fff;
}

.had_dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}
.had_dl dt{
  width:calc(100% - 320px);
  font-size: 16px;
}
.had_dl dd{
  width:320px;
}
.had_dl .base_hadding{
  margin-bottom: 0px;
}

.hadding1{
  position: relative;
  padding:15px 0 0 75px;
  font-size: 28px;
  margin-bottom: 60px;
}
.hadding1::before{
  position: absolute;
  content:"";
  top:18px;
  left:0;
  width:49px;
  height:37px;
  background: url(/assets/images/cmn/p1.svg) 50% 0% no-repeat;
  background-size: auto;
}
.hadding2{
  position: relative;
  padding:0px 0 0 33px;
  font-size: 20px;
  margin-bottom: 20px;
}
.hadding2::before{
  position: absolute;
  content:"";
  top:9px;
  left:0;
  width:22px;
  height:27px;
  background: url(/assets/images/cmn/p2.svg) 50% 0% no-repeat;
  background-size: auto;
}
@media screen and (max-width:860px) {
  .base_hadding .en{
    font-size: calc(2.8em + 2.8vw);
  }
  .base_hadding h2{
    font-size: calc(1.0em + 1.0vw);
    margin-top: -15px;
  }
}
@media screen and (max-width:500px) {
  .base_hadding h2{
    font-size: calc(1.3em + 1.3vw);
    margin-top: -15px;
  }
  .base_hadding{
    margin-bottom: 50px;
  }
  .had_dl{
    text-align: center;
    margin-bottom: 50px;
  }
  .had_dl dt{
    width:100%;
    margin-bottom: 30px;
  }
  .had_dl dd{
    width:100%;
  }
  .hadding1{
    padding:15px 0 0 55px;
    font-size: 22px;
    margin-bottom: 40px;
  }
  .hadding1::before{
    top:18px;
    width:39px;
    height:27px;
  }
  .hadding2{
    padding:0px 0 0 33px;
    font-size: 18px;
    margin-bottom: 15px;
  }
  .hadding2::before{
    top:3px;
    width:22px;
    height:27px;
  }
}
/*---------------------------------
 link
-----------------------------------*/
.blink{
  text-align: right;
  font-size: 16px;
}
.blink a{
  position: relative;
  padding-right: 65px;
  color:#000;
  transition: 0.3s ease-in-out;
}
.blink a::before,
.blink a::after{
  content:"";
  position: absolute;
}
.blink a::before{
  width:50px;
  height:50px;
  top:-13px;
  right:0;
  background: #019e97;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
.blink a::after{
  top:calc(50% - 4px);
  right:22px;
  width:7px;
  height:7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.blink a:hover{
  color:#02b2aa;
}
.blink a:hover::before{
  background: #02b2aa;
}
@media screen and (max-width:500px) {
  .blink a i{
    display:none;
  }
}
/*---------------------------------
 list_article
-----------------------------------*/
.list_article1,
.list_article2{
  width:100%;
  flex-wrap: wrap;
}
.list_article1 article{
  width:32%;
  margin:0 2% 80px 0;
}
.list_article1 article:nth-of-type(3n+3){
  margin-right: 0%;
}
.list_article1 article a .thum{
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 60%;
  margin-bottom: 30px;
  opacity: 0;
  transition: 0.3s ease-out;
}
.list_article1 article a .thum span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.list_article1 article a .thum span img {
  object-fit: cover;
  object-position: 50% 60%;
  font-family: 'object-fit: cover; object-position: 50% 60%;';
  width: 100%;
  height: 100%;
  max-width: none;
  will-change: transform;
  transition: 0.5s ease-out;
  transform: scale(1);
}
.list_article1 article a:hover .thum span img{
	transform: scale(1.07);
}
.list_article1 article a h3{
  font-size: 18px;
  color:#000;
  margin-bottom: 30px;
}
.list_article1 article a .catch{
  width:100%;
  align-items: center;
}
.list_article1 article a .catch dt{
  color:#26aca6;
  font-weight: bold;
  font-size: 16px;
  width:calc(100% - 100px);
}
.list_article1 article a .catch dd{
  position: relative;
  color:#000;
  width:100px;
  font-size: 14px;
  text-align: right;
  padding-right: 34px;
}
.list_article1 article a .catch dd::before,
.list_article1 article a .catch dd::after{
  position: absolute;
  content:"";
}
.list_article1 article a .catch dd::before{
  width:26px;
  height:26px;
  top:-2px;
  right:0;
  background: #019e97;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
.list_article1 article a .catch dd::after{
  top:calc(50% - 5px);
  right:11px;
  width:5px;
  height:5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.list_article1 article a:hover h3{
  color:#233242;
}
.list_article1 article a:hover .catch dd::before{
  background: #233242;
}
/*---------------*/
.list_article2 article{
  width:33.33333%;
  background: #fff;
  border: 1px solid #dddddd;
  margin:-1px 0 0 -1px;
}
.list_article2 article a{
  display:block;
  padding:40px;
}
.list_article2 article a .thum{
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 56%;
  margin-bottom: 20px;
  opacity: 0;
  transition: 0.3s ease-out;
}
.list_article2 article a .thum span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.list_article2 article a .thum span img {
  object-fit: cover;
  object-position: 50% 56%;
  font-family: 'object-fit: cover; object-position: 50% 56%;';
  width: 100%;
  height: 100%;
  max-width: none;
  will-change: transform;
  transition: 0.5s ease-out;
  transform: scale(1);
}
.list_article2 article a:hover .thum span img{
	transform: scale(1.07);
}
.list_article2 article a h3{
  font-size: 18px;
  color:#000;
  margin-bottom: 20px;
  transition: 0.3s ease-out;
}
.list_article2 article a .desc{
  font-size: 16px;
  color:#000;
}
.list_article2 article a:hover h3{
  color:#019e97;
}
/*---------------*/
.list_article3{
	display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.list_article3 article{
  background: #fff;
  border: 1px solid #dadbd6;
  margin:-1px 0 0 -1px;
}
.list_article3 article a{
  position: relative;
  display:block;
  height:100%;
  padding:40px 40px 50px;
}
.list_article3 article a .thum{
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 56%;
  margin-bottom: 20px;
  opacity: 0;
  transition: 0.3s ease-out;
}
.list_article3 article a .thum span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.list_article3 article a .thum span img {
  object-fit: cover;
  object-position: 50% 56%;
  font-family: 'object-fit: cover; object-position: 50% 56%;';
  width: 100%;
  height: 100%;
  max-width: none;
  will-change: transform;
  transition: 0.5s ease-out;
  transform: scale(1);
}
.list_article3 article a:hover .thum span img{
	transform: scale(1.07);
}
.list_article3 article a h3{
  font-size: 18px;
  color:#000;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: 0.3s ease-out;
}
.list_article3 article a .desc{
  font-size: 16px;
  color:#000;
}
.list_article3 article a:hover h3{
  color:#019e97;
}
.list_article3 article a .more{
  position: absolute;
  width:100%;
  bottom:25px;
  left:0;
  padding:0 40px;
  color:#000;
  font-size: 14px;
}
.list_article3 article a .more span{
  position: relative;
  display:block;
  width:100%;
  padding-right: 40px;
  text-align: right;
}
.list_article3 article a .more span::before,
.list_article3 article a .more span::after{
  position: absolute;
  content:"";
}
.list_article3 article a .more span::before{
  width:26px;
  height:26px;
  top:50%;
  right:0;
  transform: translateY(-50%);
  background: #000;
  border-radius: 50px;
  transition: 0.3s ease-out;
}
.list_article3 article a .more span::after{
  top:calc(50% - 3px);
  right:11px;
  width:5px;
  height:5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.list_article3 article a:hover .more span::before{
  background: #029d97;
}
/*------Animation--------*/

.list_article1 article a.jsScroll,
.jss article a.jsScroll {
  -webkit-transition: 1s;
  overflow: hidden;
  display:block;
  position: relative;
  transition: 1s;
  z-index: 1;
}
.list_article1 article a.jsScroll .imgCover,
.jss article a.jsScroll .imgCover {
    -webkit-transform: skew(0) translate3d(-140%, 0, 0) scale3d(1, 0.1, 1);
    -webkit-transition: 1s;
    background: #f0f4f6;
    height: 110%;
    left: 0;
    position: absolute;
    top: -10px;
    transform: skew(0) translate3d(-140%, 0, 0) scale3d(1, 0.1, 1);
    transition: 1s;
    width: 400%;
    z-index: 2;
}
.list_article1 article a.jsScroll.jsReach .imgCover,
.jss article a.jsScroll.jsReach .imgCover {
    -webkit-transform: skew(60deg) translate3d(-20%, 0, 0) scale3d(1, 1, 1);
    transform: skew(60deg) translate3d(-20%, 0, 0) scale3d(1, 1, 1);
}
.list_article1 article a.jsScroll.jsReach.jsSlide .imgCover,
.jss article a.jsScroll.jsReach.jsSlide .imgCover {
    -webkit-transform: skewX(60deg) translateX(80%) scaleY(1);
    transform: skewX(60deg) translateX(80%) scaleY(1);
}

.list_article1 article a.jsScroll.jsReach.jsSlide .thum,
.jss article a.jsScroll.jsReach.jsSlide .thum{
  opacity: 1;
}

@media screen and (max-width:860px) {
  .list_article1 article{
    width:48%;
    margin:0 2% 60px 0;
  }
  .list_article1 article a .thum{
    padding: 0 0 55%;
  }
  .list_article1 article a .thum span img {
    object-position: 50% 55%;
    font-family: 'object-fit: cover; object-position: 50% 55%;';
  }
  .list_article1 article:nth-of-type(3n+3){
    margin-right: 2%;
  }
  .list_article1 article:nth-of-type(2n+2){
    margin-right: 0%;
  }
  .list_article2 article{
    width:50%;
  }
  .list_article3{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width:760px) {
  .list_article3 article a{
    padding:20px 20px 30px;
  }
  .list_article3 article a .thum{
    margin-bottom: 15px;
  }
  .list_article3 article a h3{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .list_article3 article a .desc{
    font-size: 14px;
  }
  .list_article3 article a .more{
    bottom:15px;
    padding:0 20px;
    font-size: 12px;
  }
  .list_article3 article a .more span{
    padding-right: 30px;
  }
  .list_article3 article a .more span::before{
    width:20px;
    height:20px;
  }
  .list_article3 article a .more span::after{
    right:9px;
  }
}
@media screen and (max-width:680px) {
  .list_article1 article a .thum{
    margin-bottom: 20px;
  }
  .list_article1 article a h3{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .list_article1 article a .catch dt{
    font-size: 14px;
  }
  .list_article2 article{
    width:100%;
  }
  .list_article2 article a{
    padding:20px;
  }
  .list_article3{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width:500px) {
  .list_article1 article{
    width:100%;
    margin:0 0% 50px 0;
  }
  .list_article1 article:nth-of-type(3n+3){
    margin-right: 0%;
  }
  .list_article1 article a h3{
    font-size: 18px;
  }
}
/*---------------------------------
 ページネーション
-----------------------------------*/
#page_navi .tablenav {
  display: grid;
  grid-template-columns: repeat(auto-fit, 58px);
  grid-template-rows: 58px;
  column-gap: 2px;
  row-gap: 12px;
  justify-content: center;
  font-family:"Poppins", serif;
  text-align: center;
}
#page_navi .tablenav a,
#page_navi .tablenav span.page-numbers{
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dcddd8;
  border-radius: 3px;
  font-size: 14px;
  color:#000;
  transition: 0.3s ease-in-out;
}
#page_navi .tablenav span.page-numbers.dots{
  background: none;
  border: none;
  font-size: 18px;
}
#page_navi .tablenav a.prev,
#page_navi .tablenav a.next{
  font-size: 12px;
}
#page_navi .tablenav span.page-numbers.current{
  background: #019e97;
  border: none;
  color:#fff;
}
#page_navi .tablenav a:hover{
  background: #019e97;
  color:#fff;
}
@media screen and (max-width:760px) {
  #page_navi .tablenav {
    grid-template-columns: repeat(auto-fit, 50px);
    grid-template-rows: 50px;
  }
}
@media screen and (max-width:400px) {
  #page_navi .tablenav {
    grid-template-columns: repeat(auto-fit, 40px);
    grid-template-rows: 40px;
  }
  #page_navi .tablenav a.prev,
  #page_navi .tablenav a.next{
    font-size: 10px;
  }
}
/*---------------------------------
 ct_title
-----------------------------------*/
#ct_title{
  width:100%;
  padding:15px 0;
  background: #233242;
}

/*---------------------------------
 other
-----------------------------------*/
.entry-content p{
  line-height: 2.4;
  margin-bottom: 30px;
}
@media screen and (max-width:680px) {
  .entry-content p{
    line-height: 2.0;
    margin-bottom: 20px;
  }
}
/* ---------- */
.entry-content .alist,
.entry-content .alist2{
	width:100%;
}
.entry-content .alist li,
.entry-content .alist2 li{
	position: relative;
	width:100%;
	margin-bottom: 20px;
	padding:0 0 0 40px;
	font-size: 1.7rem;
}
.entry-content .alist li:last-of-type,
.entry-content .alist2 li:last-of-type{
	margin-bottom: 0px;
}
.entry-content .alist li::before{
	content:"";
	position: absolute;
	left:0;
	top:3px;
	width:20px;
	height:20px;
	background: url(/assets/images/makeaplan/arrow.png) 0 0 no-repeat;
}
.entry-content .alist2 li::before{
	content:"";
	position: absolute;
	left:0;
	top:12px;
	width:10px;
	height:10px;
	background: #1fbc99;
	border-radius: 50px;
}
.entry-content .alist2 li{
	padding-left: 25px;
}

@media screen and (max-width: 800px){
	.entry-content .alist li,
	.entry-content .alist2 li{
		padding:0 0 0 35px;
		font-size: 2.1vw;
	}
}
@media screen and (max-width: 680px){
	.entry-content .alist li,
	.entry-content .alist2 li{
		padding:0 0 0 35px;
		font-size: 14px;
	}
	.entry-content .alist2 li{
		padding:0 0 0 25px;
	}
}
/*-----*/

.height50{
  height: 50px;
}
@media screen and (max-width:680px) {
  .height50{
    height: 30px;
  }
}

/*-----*/
.had-line1{
  padding:5px 0 5px 0px;
  font-size: 2.4rem;
  line-height: 2.0;
  font-weight: 600;
  margin: 50px 0 40px;
  position: relative;
  clear: both;
}
.had-line1::before{
  content:"";
  position: absolute;
  width:2px;
  height: 100%;
  top:0;
  left: -30px;
  background: #1fbc99;
}

.had-line2{
  padding:5px 0 5px 0px;
  font-size: 2.4rem;
  line-height: 2.0;
  font-weight: 600;
  margin: 50px 0 40px;
  position: relative;
  color: #f7594d;
  clear: both;
}
.had-line2::before{
  content:"";
  position: absolute;
  width:2px;
  height: 100%;
  top:0;
  left: -30px;
  background: #f7594d;
}

.had-line3{
  padding:5px 0 10px 0px;
  font-size: 2.2rem;
  line-height: 2.0;
  font-weight: 600;
  margin: 50px 0 40px;
  position: relative;
  clear: both;
  border-bottom: 2px solid #efefef;
}
.had-line3::before{
  content:"";
  position: absolute;
  width:30px;
  height: 2px;
  bottom: -2px;
  left: 0px;
  background: #1fbc99;
}
.yarpp-related .had-line3{
  padding:5px 0 10px 0px!important;
  margin: 50px 0 40px!important;
}

.had-line5{
  padding:15px 20px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 600;
  margin: 50px 0 30px;
  position: relative;
  clear: both;
  background: #37ab9d;
  color:#fff;
  letter-spacing: 0.2rem;
  -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; -ms-border-radius: 3px; border-radius: 3px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}

.had-line3-2{
  padding:15px 20px 15px;
  font-size: 2.2rem;
  line-height: 2.0;
  font-weight: 600;
  margin: 70px 0 50px;
  position: relative;
  clear: both;
  color:#fff;
  background: #37ab9d;
  -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; -ms-border-radius: 3px; border-radius: 3px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}


.article_post .had-line4{
  padding:5px 0 10px 0px;
  font-size: 2.0rem;
  line-height: 2.0;
  font-weight: 600;
  margin: 50px 0 30px;
  position: relative;
  clear: both;
}
.article_post .had-line4::before{
  content:"";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0px;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #27d1ab, #27d1ab 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #27d1ab, #27d1ab 2px, #fff 2px, #fff 4px);
}

.had-line5{
  padding:15px 20px 5px 20px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 600;
  margin: 50px 0 30px;
  position: relative;
  clear: both;
  background: #37ab9d;
  color:#fff;
  letter-spacing: 0.2rem;
  -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; -ms-border-radius: 3px; border-radius: 3px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}


.had-line5-2{
  padding:20px 0px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 600;
  margin: 70px 0 30px;
  position: relative;
  clear: both;
  letter-spacing: 0.2rem;
  border-top: 1px solid #e9e9e9;
  color:#37ab9d;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.had-line5-2::before{
  content:"";
  position: absolute;
  top:-1px;
  left:0;
  height: 1px;
  width:100px;
  background: #37ab9d;
}

.had-line_sol1{
  padding:40px 0 0px 0px;
  font-size: 28px;
  line-height: 2.0;
  font-weight: 600;
  margin: 50px 0 40px;
  position: relative;
  clear: both;
}
.had-line_sol1::before{
  content:"";
  position: absolute;
  width:150px;
  height: 1px;
  top:0;
  left: 0;
  background: #233242;
}

.had-line_sol2{
  padding:15px 0 0px 0px;
  font-size: 24px;
  line-height: 2.0;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  clear: both;
}
@media screen and (max-width:680px) {
  .had-line1::before,
  .had-line2::before{
    left: -15px;
  }
  .had-line3::before{
    width:15px;
    left: -15px;
  }
  .had-line5-2{
    margin: 40px 0 10px;
  }
  .had-line3{
    font-size: 1.8rem;
  }
  .had-line_sol1{
    padding:30px 0 0px 0px;
    font-size: 24px;
    margin: 40px 0 30px;
  }
  .had-line_sol2{
    font-size: 22px;
    margin-bottom: 30px;
  }
}

/* ---フォントサイズ--- */
.fs16{font-size:16px;}
.fs18{font-size:18px;}
.fs20{font-size:20px;}
.fs22{font-size:22px;}
.fs24{font-size:24px;}
.gr {
    color: #019e97;
    font-size: 1.8rem;
}

.psmall{font-size:1.4rem;}

/* ---テキストマーカー--- */
.marker_green_futo{background: linear-gradient(transparent 0%, #d0f5ee 0%);}
.marker_green_hoso{background: linear-gradient(transparent 60%, #d0f5ee 60%);}
.marker_yellow_futo{background: linear-gradient(transparent 0%, #f1f5d0 0%);}
.marker_yellow_hoso{background: linear-gradient(transparent 60%, #f1f5d0 60%);}
.marker_red_futo{background: linear-gradient(transparent 0%, #f7c0c0 0%);}
.marker_red_hoso{background: linear-gradient(transparent 60%, #f7c0c0 60%);}
.marker_v1{color:#019e97;box-shadow: 0 -10px 0 inset rgba(11, 144, 148, .1);}

/* ---flame - 囲み枠--- */
.well { min-height:20px; padding:19px; margin-bottom:20px; background-color:#f5f5f5; border:1px solid #e3e3e3; border-radius:4px; -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); }
.well2 { margin:1em 0 30px; padding:1em 1.5em; line-height:2; border:1px solid #cdcdcd; background:#fcfcfc; box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.well3 { margin:2em 0 2.5em; padding:1em 1.5em;line-height:2.0; border:1px dashed #cdcdcd; background:#fcfcfc;  box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.wl_red { background-color: #f2dede; border-color: #ebccd1; color: #a94442; }
.wl_yellow { background-color: #fcf8e3; border-color: #faebcc; color: #8a6d3b; }
.wl_blue { background-color: #d9edf7; border-color: #bce8f1; color: #31708f; }
.wl_green { background-color: #dff0d8; border-color: #d6e9c6; color: #3c763d; }

.white-box{
  font-size: 1.8rem;
  font-weight: 500;
}
.white-box .check4{
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e8b502;
}

/* ---コメント掛け合い--- */

.webm-box1{
  position: relative;
  border:1px solid #9da5a0;
  width:100%;
  padding:30px 15px 15px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
  margin-bottom: 60px;
  z-index: 0;
}
.webm-box1 .tt{
  position: absolute;
  top:-20px;
  z-index: 1;
  left:5px;
  background: #fff;
  padding:0 10px;
  font-size: 1.8rem;
}

.webm-box2{
  position: relative;
  border:3px solid #37ab9d;
  width:100%;
  padding:30px 15px 15px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
  margin-bottom: 60px;
  z-index: 0;
}
.webm-box2 .tt{
  position: absolute;
  top:-20px;
  z-index: 1;
  left:5px;
  background: #fff;
  padding:0 10px;
  font-size: 1.8rem;
}

.webm-staff{
  width:100%;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  margin-bottom: 60px;
}
.webm-staff dt{
  width:90px;
}
.webm-staff dt img{
  width:90px;
  height: 90px;
  border: 1px solid #e9e9e9;
  overflow: hidden;
  border-radius: 100px;
}
.webm-staff dt p{
  display:block;
  text-align: center;
  font-size: 1.4rem;
}
.webm-staff dd{
  width:calc(100% - 90px);
  padding-left:20px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}

@media screen and (max-width: 550px){
  .webm-box1{
    padding:40px 15px 15px;
    margin-bottom: 40px;
  }
  .webm-box1 .tt{
    top:-20px;
    left:5px;
    font-size: 1.6rem;
  }
  .webm-box2{
    padding:40px 15px 15px;
    margin-bottom: 40px;
  }
  .webm-box2 .tt{
    top:-20px;
    left:5px;
    font-size: 1.6rem;
  }
  .webm-staff{
    margin-bottom: 40px;
  }
  .webm-staff dt{
    width:60px;
  }
  .webm-staff dt img{
    width:60px;
    height: 60px;
  }
  .webm-staff dd{
    width:calc(100% - 60px);
    padding-left:15px;
  }
}

/* ---list - リスト--- */
.article_post span.color1{color:#019e97;}
.list1{display:block;width:100%;margin:1.5em 0 1.5em;list-style:none;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;}
.list1 li{position: relative;padding: 6px 0 6px 25px;}
.list1 li:after{position: absolute;top: 6px;left:0;display: block;font-family: "check";content: "\ea10";color: #ff594c;font-size: 14px;}


.list3{
  margin-bottom: 30px;
}
.list3 li{
  position: relative;
  padding:0px 0px 0px 25px;
  margin-bottom: 10px;
}
.list3 li::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #1fbc99;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.list3.dottop li::before{
  top:15px;
}
.list4{
  display:block;
  width:100%;
  margin:1.5em 0 1.5em;
  list-style:none;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.list4 li{
  padding: 5px 0 5px 10px;
  counter-increment: number;
  list-style-position: inside;
}
.list4 li:before{
  content: '';
  margin-right:10px;
  display: inline-block;
  content: counter(number, decimal-leading-zero);
  color:#1fbc99;
  font-size:14px;
}


ul.li_no{
  padding-left:0px;
}
ul.li_no li{
  counter-increment: number;
  margin-left: 0px;
  line-height:2.2;
}
ul.li_no li::before{
  content: counter(number) ".";
  margin-right: 10px;
  color: #019e97;
}

.guard{
  pointer-events: none;
}

.mokuji{
  margin-bottom: 30px;
}
.mokuji li.m-first{
  position: relative;
  padding:0px 0px 0px 25px;
  margin-bottom: 10px;
}
.mokuji li.m-first::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #1fbc99;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.mokuji li.m-second{
  position: relative;
  padding:0px 0px 0px 45px;
  margin-bottom: 10px;
}
.mokuji li.m-second::before{
  content:"";
  position: absolute;
  width:7px;
  height:2px;
  background: #1fbc99;
  top:calc(50% - 0px);
  left:25px;
}
.mokuji li.m-third{
  position: relative;
  padding:0px 0px 0px 65px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.mokuji li.m-third::before{
  content:"";
  position: absolute;
  width:7px;
  height:1px;
  background: #1fbc99;
  top:calc(50% - 2px);
  left:45px;
}

/* ---テーブル--- */
.article_post .entrytable1{width:100%;margin-bottom:40px;}
.article_post .entrytable1 th,
.article_post .entrytable1 td{font-weight:normal;padding:15px 15px;vertical-align:middle;box-sizing: border-box;}
.article_post .entrytable1 th {border-bottom:1px solid #1fbc99;}
.article_post .entrytable1 td{border-bottom:1px solid #e6e6e6;}

/* ------ */
.tablebox1{width:100%;margin-bottom:40px;}
.tablebox1 th,
.tablebox1 td{font-weight:normal;padding:10px 15px;vertical-align:middle;box-sizing: border-box;}
.tablebox1 th {}
.tablebox1 td{border-bottom:1px solid #e6e6e6;}

.tablebox1.tb3 th {background: #586365;color:#fff;border-right:1px solid #e6e6e6;}
.tablebox1.tb3 th:last-of-type {border-right:none;}
.tablebox1.tb3 td {text-align: center;border-right:1px solid #e6e6e6;}
.tablebox1.tb3 td:last-of-type {border-right:none;}

.tablebox1.tb2 th {padding:10px 15px;background: #586365;color:#fff;border-right:1px solid #e6e6e6;}
.tablebox1.tb2 th:first-of-type{width:30%;text-align: center;}
.tablebox1.tb2 th:last-of-type {border-right:none;}
.tablebox1.tb2 td {padding:10px 15px;text-align: left;border-right:1px solid #e6e6e6;}
.tablebox1.tb2 td:first-of-type{text-align: center;}
.tablebox1.tb2 td:last-of-type {border-right:none;}

/* ------ */
.tablebox2{
	width:100%;
  border-top:1px solid #e6e6e6;
  border-bottom:1px solid #e6e6e6;
  vertical-align: middle;
  margin-top: -1px;
}
.tablebox2 th{
  width:150px;
  background: #586365;
  color:#fff;
  border-right:1px solid #e6e6e6;
  vertical-align: middle;
  text-align: center;
}
.tablebox2.cod th{
  background: #1fbc99;
}
.tablebox2 td{
  width:calc(100% - 150px);
}
.tablebox2 td ul{
  padding:0px 10px;
}
.tablebox2 td ul li{
  position: relative;
  padding:5px 0px 5px 25px;
  border-bottom:1px solid #e6e6e6;
}
.tablebox2 td ul li:last-of-type{
  border-bottom:none;
}
.tablebox2 td ul li::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #586365;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.tablebox2.cod td ul li::before{
  background: #1fbc99;
}
@media screen and (max-width: 680px){
  .tablebox2 th{
    display:block;
    width:100%;
    border-right:none;
    padding:8px 0;
  }
  .tablebox2 td{
    display:block;
    width:100%;
  }
  .tablebox2 td ul{
    padding:0px 0px;
  }
}
/* ---colbox--- */
.colbox1{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.colbox1 dt{
  width:48%;
}
.colbox1 dd{
  width:52%;
}
.colbox1.rv dt{
  order: 2;
}
.colbox1.rv dd{
  order: 1;
}
.colbox1.c6__4 dt{
   width:40%;
}
.colbox1.c6__4 dd{
   width:58%;
}
.colbox1.c7__3 dt{
   width:30%;
}
.colbox1.c7__3 dd{
   width:68%;
}

.colbox2{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.colbox2 dt{
  width:46%;
}
.colbox2 dd{
  width:52%;
}

@media screen and (max-width: 680px){
  .colbox1 dt{
    width:100%;
  }
  .colbox1 dd{
    width:100%;
  }
  .colbox2 dt{
    width:100%;
  }
  .colbox2 dd{
    width:100%;
  }
  .colbox1.rv dt{
    order: 1;
  }
  .colbox1.rv dd{
    order: 2;
  }
  .colbox1.c6__4 dt{
     width:100%;
  }
  .colbox1.c6__4 dd{
     width:100%;
  }
  .colbox1.c7__3 dt{
     width:100%;
  }
  .colbox1.c7__3 dd{
     width:100%;
  }
}

/*-------------------*/

.entry-content .blog-btn{
  width:100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.entry-content .blog-btn a.btn{
  display: block;
	width:100%;
	font-size: 1.8rem;
	font-weight: 600;
	color:#fff;
	background: #1fbc99;
	border: 1px solid #0795c4;
  text-align: center;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  transition: 0.3s ease-in-out;
	-moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; -ms-border-radius: 3px; border-radius: 3px;
	padding:30px 3px;
	line-height: 1.6;
}
.entry-content .blog-btn a.btn:hover{
  background: #2bb8e7;
}
.entry-content .blog-btn a.btn.S{
  padding:16px 3px;
  font-size: 1.6rem;
  max-width:260px;
}
.entry-content .blog-btn a.btn.M{
  padding:20px 3px;
  font-size: 1.6rem;
  max-width:340px;
}
.entry-content .blog-btn a.btn.L{
  padding:25px 3px;
  font-size: 1.8rem;
  max-width:450px;
}
.entry-content .blog-btn a.btn.center{
  margin:0 auto;
}
.entry-content .blog-btn a.btn.right{
  margin-left:auto;
}

/*-------------------*/
.entry-content .well { min-height:20px; padding:19px; margin-bottom:20px; background-color:#f5f5f5; border:1px solid #e3e3e3; border-radius:4px; -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); }
.entry-content .well2 { margin:1em 0 30px; padding:1em 1.5em; line-height:2; border:1px solid #cdcdcd; background:#fcfcfc; box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.entry-content .well3 { margin:2em 0 2.5em; padding:1em 1.5em;line-height:2.0; border:1px dashed #cdcdcd; background:#fcfcfc;  box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.entry-content .wl_red { background-color: #f2dede; border-color: #ebccd1; color: #a94442; }
.entry-content .wl_yellow { background-color: #fcf8e3; border-color: #faebcc; color: #8a6d3b; }
.entry-content .wl_blue { background-color: #d9edf7; border-color: #bce8f1; color: #31708f; }
.entry-content .wl_green { background-color: #dff0d8; border-color: #d6e9c6; color: #3c763d; }

/*-------------------*/
.marker_green_futo{
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 2px solid #10af9e;
}
.marker_green_hoso{
  padding-bottom: 2px;
  border-bottom: 1px solid #10af9e;
}
.marker_yellow_futo{
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 2px solid #ffd900;
}
.marker_yellow_hoso{
  padding-bottom: 2px;
  border-bottom: 1px solid #ffd900;
}
.marker_red_futo{
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 2px solid #f70e5a;
}
.marker_red_hoso{
  padding-bottom: 2px;
  border-bottom: 1px solid #f70e5a;
}
.marker_blue_futo{
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 2px solid #1fbc99;
}
.marker_blue_hoso{
  padding-bottom: 2px;
  border-bottom: 1px solid #1fbc99;
}


/* ---フォントサイズ--- */
.fs16{font-size:16px;}
.fs18{font-size:18px;}
.fs20{font-size:20px;}
.fs22{font-size:22px;}
.fs24{font-size:24px;}
.gr {
    color: #019e97;
    font-size: 1.8rem;
}

.psmall{font-size:1.4rem;}

/* ---テキストマーカー--- */
.marker_green_futo{background: linear-gradient(transparent 0%, #d0f5ee 0%);}
.marker_green_hoso{background: linear-gradient(transparent 60%, #d0f5ee 60%);}
.marker_yellow_futo{background: linear-gradient(transparent 0%, #f1f5d0 0%);}
.marker_yellow_hoso{background: linear-gradient(transparent 60%, #f1f5d0 60%);}
.marker_red_futo{background: linear-gradient(transparent 0%, #f7c0c0 0%);}
.marker_red_hoso{background: linear-gradient(transparent 60%, #f7c0c0 60%);}
.marker_v1{color:#019e97;box-shadow: 0 -10px 0 inset rgba(11, 144, 148, .1);}

/* ---flame - 囲み枠--- */
.well { min-height:20px; padding:19px; margin-bottom:20px; background-color:#f5f5f5; border:1px solid #e3e3e3; border-radius:4px; -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); }
.well2 { margin:1em 0 30px; padding:1em 1.5em; line-height:2; border:1px solid #cdcdcd; background:#fcfcfc; box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.well3 { margin:2em 0 2.5em; padding:1em 1.5em;line-height:2.0; border:1px dashed #cdcdcd; background:#fcfcfc;  box-shadow: 0 1px 3px 0 rgba(195,195,195,0.3); }
.wl_red { background-color: #f2dede; border-color: #ebccd1; color: #a94442; }
.wl_yellow { background-color: #fcf8e3; border-color: #faebcc; color: #8a6d3b; }
.wl_blue { background-color: #d9edf7; border-color: #bce8f1; color: #31708f; }
.wl_green { background-color: #dff0d8; border-color: #d6e9c6; color: #3c763d; }

.white-box{
  font-size: 1.8rem;
  font-weight: 500;
}
.white-box .check4{
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e8b502;
}

/* ---コメント掛け合い--- */

.webm-box1{
  position: relative;
  border:1px solid #9da5a0;
  width:100%;
  padding:30px 15px 15px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
  margin-bottom: 60px;
  z-index: 0;
}
.webm-box1 .tt{
  position: absolute;
  top:-20px;
  z-index: 1;
  left:5px;
  background: #fff;
  padding:0 10px;
  font-size: 1.8rem;
}

.webm-box2{
  position: relative;
  border:3px solid #37ab9d;
  width:100%;
  padding:30px 15px 15px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
  margin-bottom: 60px;
  z-index: 0;
}
.webm-box2 .tt{
  position: absolute;
  top:-20px;
  z-index: 1;
  left:5px;
  background: #fff;
  padding:0 10px;
  font-size: 1.8rem;
}

.webm-staff{
  width:100%;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  margin-bottom: 60px;
}
.webm-staff dt{
  width:90px;
}
.webm-staff dt img{
  width:90px;
  height: 90px;
  border: 1px solid #e9e9e9;
  overflow: hidden;
  border-radius: 100px;
}
.webm-staff dt p{
  display:block;
  text-align: center;
  font-size: 1.4rem;
}
.webm-staff dd{
  width:calc(100% - 90px);
  padding-left:20px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}

@media screen and (max-width: 550px){
  .webm-box1{
    padding:40px 15px 15px;
    margin-bottom: 40px;
  }
  .webm-box1 .tt{
    top:-20px;
    left:5px;
    font-size: 1.6rem;
  }
  .webm-box2{
    padding:40px 15px 15px;
    margin-bottom: 40px;
  }
  .webm-box2 .tt{
    top:-20px;
    left:5px;
    font-size: 1.6rem;
  }
  .webm-staff{
    margin-bottom: 40px;
  }
  .webm-staff dt{
    width:60px;
  }
  .webm-staff dt img{
    width:60px;
    height: 60px;
  }
  .webm-staff dd{
    width:calc(100% - 60px);
    padding-left:15px;
  }
}

/* ---list - リスト--- */
.article_post span.color1{color:#019e97;}
.list1{display:block;width:100%;margin:1.5em 0 1.5em;list-style:none;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;}
.list1 li{position: relative;padding: 6px 0 6px 25px;}
.list1 li:after{position: absolute;top: 6px;left:0;display: block;font-family: "check";content: "\ea10";color: #ff594c;font-size: 14px;}


.list3{
  margin-bottom: 30px;
}
.list3 li{
  position: relative;
  padding:0px 0px 0px 25px;
  margin-bottom: 10px;
}
.list3 li::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #1fbc99;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.list3.dottop li::before{
  top:15px;
}
.list4{
  display:block;
  width:100%;
  margin:1.5em 0 1.5em;
  list-style:none;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.list4 li{
  padding: 5px 0 5px 10px;
  counter-increment: number;
  list-style-position: inside;
}
.list4 li:before{
  content: '';
  margin-right:10px;
  display: inline-block;
  content: counter(number, decimal-leading-zero);
  color:#1fbc99;
  font-size:14px;
}


ul.li_no{
  padding-left:0px;
}
ul.li_no li{
  counter-increment: number;
  margin-left: 0px;
  line-height:2.2;
}
ul.li_no li::before{
  content: counter(number) ".";
  margin-right: 10px;
  color: #019e97;
}

.guard{
  pointer-events: none;
}

.mokuji{
  margin-bottom: 30px;
}
.mokuji li.m-first{
  position: relative;
  padding:0px 0px 0px 25px;
  margin-bottom: 10px;
}
.mokuji li.m-first::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #1fbc99;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.mokuji li.m-second{
  position: relative;
  padding:0px 0px 0px 45px;
  margin-bottom: 10px;
}
.mokuji li.m-second::before{
  content:"";
  position: absolute;
  width:7px;
  height:2px;
  background: #1fbc99;
  top:calc(50% - 0px);
  left:25px;
}
.mokuji li.m-third{
  position: relative;
  padding:0px 0px 0px 65px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.mokuji li.m-third::before{
  content:"";
  position: absolute;
  width:7px;
  height:1px;
  background: #1fbc99;
  top:calc(50% - 2px);
  left:45px;
}

/* ---テーブル--- */
.article_post .entrytable1{width:100%;margin-bottom:40px;}
.article_post .entrytable1 th,
.article_post .entrytable1 td{font-weight:normal;padding:15px 15px;vertical-align:middle;box-sizing: border-box;}
.article_post .entrytable1 th {border-bottom:1px solid #1fbc99;}
.article_post .entrytable1 td{border-bottom:1px solid #e6e6e6;}

/* ------ */
.tablebox1{width:100%;margin-bottom:40px;}
.tablebox1 th,
.tablebox1 td{font-weight:normal;padding:10px 15px;vertical-align:middle;box-sizing: border-box;}
.tablebox1 th {}
.tablebox1 td{border-bottom:1px solid #e6e6e6;}

.tablebox1.tb3 th {background: #586365;color:#fff;border-right:1px solid #e6e6e6;}
.tablebox1.tb3 th:last-of-type {border-right:none;}
.tablebox1.tb3 td {text-align: center;border-right:1px solid #e6e6e6;}
.tablebox1.tb3 td:last-of-type {border-right:none;}

.tablebox1.tb2 th {padding:10px 15px;background: #586365;color:#fff;border-right:1px solid #e6e6e6;}
.tablebox1.tb2 th:first-of-type{width:30%;text-align: center;}
.tablebox1.tb2 th:last-of-type {border-right:none;}
.tablebox1.tb2 td {padding:10px 15px;text-align: left;border-right:1px solid #e6e6e6;}
.tablebox1.tb2 td:first-of-type{text-align: center;}
.tablebox1.tb2 td:last-of-type {border-right:none;}

/* ------ */
.tablebox2{
	width:100%;
  border-top:1px solid #e6e6e6;
  border-bottom:1px solid #e6e6e6;
  vertical-align: middle;
  margin-top: -1px;
}
.tablebox2 th{
  width:150px;
  background: #586365;
  color:#fff;
  border-right:1px solid #e6e6e6;
  vertical-align: middle;
  text-align: center;
}
.tablebox2.cod th{
  background: #1fbc99;
}
.tablebox2 td{
  width:calc(100% - 150px);
}
.tablebox2 td ul{
  padding:0px 10px;
}
.tablebox2 td ul li{
  position: relative;
  padding:5px 0px 5px 25px;
  border-bottom:1px solid #e6e6e6;
}
.tablebox2 td ul li:last-of-type{
  border-bottom:none;
}
.tablebox2 td ul li::before{
  content:"";
  position: absolute;
  width:10px;
  height:10px;
  background: #586365;
  top:calc(50% - 5px);
  left:5px;
  -moz-border-radius: 100%; -webkit-border-radius: 100%; -o-border-radius: 100%; -ms-border-radius: 100%; border-radius: 100%;
}
.tablebox2.cod td ul li::before{
  background: #1fbc99;
}
@media screen and (max-width: 680px){
  .tablebox2 th{
    display:block;
    width:100%;
    border-right:none;
    padding:8px 0;
  }
  .tablebox2 td{
    display:block;
    width:100%;
  }
  .tablebox2 td ul{
    padding:0px 0px;
  }
}
/* ---colbox--- */
.colbox1{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.colbox1 dt{
  width:48%;
}
.colbox1 dd{
  width:52%;
}
.colbox1.rv dt{
  order: 2;
}
.colbox1.rv dd{
  order: 1;
}
.colbox1.c6__4 dt{
   width:40%;
}
.colbox1.c6__4 dd{
   width:58%;
}
.colbox1.c7__3 dt{
   width:30%;
}
.colbox1.c7__3 dd{
   width:68%;
}

.colbox2{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.colbox2 dt{
  width:46%;
}
.colbox2 dd{
  width:52%;
}

@media screen and (max-width: 680px){
  .colbox1 dt{
    width:100%;
  }
  .colbox1 dd{
    width:100%;
  }
  .colbox2 dt{
    width:100%;
  }
  .colbox2 dd{
    width:100%;
  }
  .colbox1.rv dt{
    order: 1;
  }
  .colbox1.rv dd{
    order: 2;
  }
  .colbox1.c6__4 dt{
     width:100%;
  }
  .colbox1.c6__4 dd{
     width:100%;
  }
  .colbox1.c7__3 dt{
     width:100%;
  }
  .colbox1.c7__3 dd{
     width:100%;
  }
}


/* ---ourtable--- */

.ourtable{width:100%;margin-bottom:40px;border-top:1px solid #e6e6e6;}
.ourtable th,
.ourtable td{padding:10px 10px;vertical-align:middle;}
.ourtable th {border-bottom:1px solid #e6e6e6;}
.ourtable th span{display:block;width:100%;border-right:1px solid #1fbc99;}
.ourtable td{border-bottom:1px solid #e6e6e6;}

@media screen and (max-width: 680px){
.ourtable th,
.ourtable td{display:block;padding:6px 10px;text-align:left;}
.ourtable th span{border-right:none;}
}

/* ---img--- */
img.alignright { float: right; margin: 0 0 25px 20px; }
img.alignleft { float: left; margin: 0 20px 25px 0; }
img.aligncenter { display: block; margin: 0 auto 30px; }
img.alignnone { margin: 0 0 30px 0; }

.excerpt img{height:auto;}

@media screen and (max-width: 640px){
  .article_post .figure{float: none;width: 100%;max-width: 100%;}
  .article_post .infoco{float:none;width:100%;max-width: 100%;}
  .article_post .figure img{margin: 0 auto 30px;}
  img.alignright { display: block; float: none; margin: 0 auto 30px auto; }
  img.alignleft { display: block; float: none; margin: 0 auto 30px auto; }
  img.aligncenter { display: block; margin: 0 auto 30px; }
  img.alignnone { margin: 0 0 30px 0; }
}
.article_post .teacher-box{
	clear: both;
	padding: 20px;
	overflow:hidden;
	margin:0 auto 80px;
	background: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	color: #000;
    width:98%;

}

.article_post .member-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article_post .member-box .pages-box {
  width: 48.5%;
  margin-bottom: 30px;
  margin-right: 3%;
  border: 1px solid #e6e6e6;
}

.article_post .member-box .pages-box:nth-child(2n+2) {
  margin-right: 0%
}

.article_post .member-box .pages-box .pages-box-in .thumb a {
  display: block;
  overflow: hidden;
}

.article_post .member-box .pages-box .pages-box-in .thumb img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.article_post.post2 .member-box a{
  font-weight: normal;
  padding-bottom: 0px;
  border-bottom: none;
  transition: 0.3s ease-in-out;
}
.article_post.post2 .member-box a:hover{
  color:#1fbc99!important;
}

.article_post .member-box .pages-box .pages-box-in .child-page-box-title {
  padding: 12.2px 20px 15px;
}

.article_post .member-box .pages-box .pages-box-in .child-page-box-title a {
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.article_post .member-box .pages-box .pages-box-in .junction-grandchild {
  position: relative;
}

.article_post .member-box .pages-box .pages-box-in .junction-grandchild a::before {
  content: '\e910';
  font-family: "iconfont";
  font-size: 10px;
  position: absolute;
  left: 22px;
  top: 14px;
  color: #1fbc99;
  font-weight: bold;
}

.article_post .member-box .pages-box .pages-box-in .junction-grandchild a {
  display: block;
  border-top: 1px solid #e6e6e6;
  padding: 7px 40px 7px;
  font-size: 16px;
  color: #000;
}

.article_post .member-box .pages-box .pages-box-in .junction-grandchild a:hover {
  background: #f0f0f0;
}

.article_post.post2 .junction-grandchild a {
  position: relative;
  color: #019101;
  transition: .3s;
}

.article_post.post2 .junction-grandchild a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 0px;
  background: #005e15;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


.child-page-excerpt {
  padding: 10px 10px 0px 10px;
  font-size: 14px;
}

@media screen and (max-width: 680px) {
  .article_post .member-box {
    display: block;
  }
  .article_post .member-box .pages-box {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0%;
  }
}

/* ----------------------------------------------------------------------
タグリスト
---------------------------------------------------------------------- */

ul.tag-list {
  display:block;
  overflow: hidden;
  margin-bottom: 60px;
  width:100%;
  border: 7px solid #f3f3f3;
  padding:15px 15px 0;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}

ul.tag-list li{
  display:inline-block;
  float: left;
  margin: 0 5px 15px
}
ul.tag-list li a{
  display:block;
  padding:1px 25px;
  border:1px solid #000;
  color:#000;
  font-size: 1.3rem;
  border-radius: 30px;
  transition: 0.2s ease-in-out;
}
ul.tag-list li.current-tag a{
  color:#fff;
  background: #000;
}
ul.tag-list li a:hover{
  color:#fff;
  background: #000;
}

.tag-listbtn{
  display:none;
}
@media screen and (max-width: 760px) {
  ul.tag-list {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 680px) {
  ul.tag-list{
    display:none;
    padding:10px 5px 0;
  }
  ul.tag-list li a{
    padding:4px 15px;
  }
  .tag-listbtn{
		display: block;
		background: #f0f0f0;
		padding: 15px 10px;
		cursor: pointer;
    text-align: center;
    margin-bottom: 30px;
    box-sizing: border-box;
	}
	.tag-listbtn:before{
		content: "+";
		display: inline-block;
		background: #fff;
		border-radius: 100%;
		line-height: 16px;
		width: 16px;
		height: 16px;
		text-align: center;
		margin-right: 5px;
	}
  .tag-listbtn.open{
    margin-bottom: 0px;
  }
	.tag-listbtn:after{
		content: "企画リストを開く";
	}
	.tag-listbtn.open:before{
		content: "-";
	}
	.tag-listbtn.open:after{
		content: "閉じる";
	}
}

/* ----------------------------------------------------------------------
記事
---------------------------------------------------------------------- */

.web-plan-list{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
.web-plan-list dt{
  width:330px;
}
.web-plan-list dd{
  width:calc(100% - 330px);
  padding-left: 30px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.web-plan-list dd h4{
  color: #1fbc99;
  font-weight: 600;
  margin-bottom: 15px;
}
.web-plan-list dd p{
  font-size: 1.4rem;
}
.web-plan-list dd .ttag{
  background: #000;
  color:#fff;
  font-size: 1.2rem;
  padding:3px 10px;
  margin-right: 5px;
}

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

  .web-plan-list{
    flex-wrap: wrap;
  }
  .web-plan-list dt{
    width:100%;
  }
  .web-plan-list dt img{
    display:block;
    width:100%;
    max-width:330px;
    margin: 0 auto 15px !important;
  }
  .web-plan-list dd{
    width:100%;
    padding-left: 0px;
  }

}

/*----*/

.web-link-box {
	width:100%;
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #e6e6e6;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.web-link-box a{
  display:block;
  font-weight:normal;
  padding-bottom: 0px;
  border-bottom: none;
}
.web-link-box a dl.web-link-box-dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  align-items: center;
  justify-content: space-between;
}
.web-link-box a dl.web-link-box-dl dt{
  width:190px;
}
.web-link-box a dl.web-link-box-dl dt img{
  margin-bottom: 0;
}
.web-link-box a dl.web-link-box-dl dd{
  width:calc(100% - 190px);
  padding-left: 20px;
  -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.web-link-box a .t{
  color: #1fbc99;
  font-weight: 600;
  font-size: 1.6rem;
}
.web-link-box a .d{
  color: #000;
  padding-top:10px;
  font-size: 1.4rem;
}
.web-link-box a:hover{
  filter:alpha(opacity=80);-moz-opacity: 0.8;opacity: 0.8;
}

@media screen and (max-width: 580px) {
  .web-link-box a dl.web-link-box-dl{
    flex-wrap: wrap;
  }
  .web-link-box a dl.web-link-box-dl dt{
    width:100%;
  }
  .web-link-box a dl.web-link-box-dl dt img{
    margin-bottom: 15;
  }
  .web-link-box a dl.web-link-box-dl dd{
    width:100%;
    padding-left: 0px;
  }
}

/* ----------------------------------------------------------------------
CTAダウンロード
---------------------------------------------------------------------- */
.cta-dl{
  border: 1px solid #e6e6e6;
  width:100%;
  background:#f7f7f7;
  padding:30px;
  box-sizing: border-box;
  margin-bottom: 60px;
  overflow: hidden;
}
.cta-dl .cta-title {
  font-size: 1.8rem;
  line-height: 1.6;
  padding-bottom:30px;
  margin: 0 0 30px 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.cta-dl .cta-title:after{
  content: "";
  position: absolute;
  bottom: 0px;
  left: -30px;
  width: 120%;
  height: 2px;
  background: #eaebeb;
  border-left: 30px solid #1fbc99;
}
.cta-dl .cta-dl-inner{width:100%;overflow:hidden;}
.cta-dl .cta-dl-innerL{float:left;width:70%;padding-right:20px;}
.cta-dl .cta-dl-innerR{float:right;width:30%;}
.cta-dl .cta-dl-innerR img{display: block; width:100%;max-width: 400px;height:auto;margin: 0 auto;}

.cta-dl.ver2 .cta-dl-innerL{width:60%;}
.cta-dl.ver2 .cta-dl-innerR{width:40%;}

.cta-dl .cta-dl-innerL .p1{color:#019e97;font-weight:bold;font-size: 18px;}
.cta-dl .cta-dl-innerL .p2{font-size: 16px;line-height:2;font-weight:bold;border-left: 1px solid #1fbc99;padding-left:10px;}
.cta-dl .cta-dl-innerL .p3{font-size: 14px;line-height:2;padding-left:10px;}

@media screen and (max-width: 680px){
  .cta-dl{
    padding:20px;
    margin-bottom: 40px;
  }

  .cta-dl .cta-dl-innerL{float:none;width:100%;padding-right:0px;}
  .cta-dl .cta-dl-innerR{float:none;width:100%;}
  .cta-dl.ver2 .cta-dl-innerL{width:100%;}
  .cta-dl.ver2 .cta-dl-innerR{width:100%;}
  .cta-dl .cta-dl-innerR img{display: block; width:100%;max-width: 150px;height:auto;margin: 0 auto 20px;}
  .cta-dl.ver2 .cta-dl-innerR img{max-width: 250px;height:auto;margin: 0 auto 0px;}
  .cta-dl .cta-title:after{
    left: -20px;
    border-left: 20px solid #1fbc99;
  }
}




/* ----------------------------------------------------------------------
関連記事
---------------------------------------------------------------------- */
.yarpp-related{
  margin-bottom: 60px;
}

/* ---戦略手法--- */
#app-wrabox{
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: -webkit-wrap;
  width:100%;
}
#app-wrabox ul.app-list{
  width: 32%;
  margin: 0 2% 20px 0;
  padding: 0;
  font-size:1.4rem;
}
#app-wrabox ul.app-list:nth-child(3n+3) {
  margin-right: 0%;
}
#app-wrabox ul.app-list li{
  border-bottom:1px solid #dfdfdf;
  padding:4px 10px;
}
#app-wrabox ul.app-list li.mapp{font-weight:bold;background: #f3f3f3;}
#app-wrabox ul.app-list li.msapp{padding-left:25px;}

@media screen and (max-width: 680px){
#app-wrabox ul.app-list{width: 48%;margin: 0 4% 20px 0;padding: 0;font-size:1.4rem;border-top:1px solid #ddd;}
#app-wrabox ul.app-list:nth-child(3n+3) {margin-right: 4%;}
#app-wrabox ul.app-list:nth-child(2n+2) {margin-right: 0%;}
}

/*---------------------------------
 s_customer
-----------------------------------*/

#s_customer{
  padding-bottom: 200px;
}

#s_customer .hadding1{
  padding-bottom: 15px;
  margin-bottom: 60px;
}
#s_customer .hadding1 span{
  font-size: 2.0rem;
}

#s_customer .customer_link{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
}
#s_customer .customer_link li{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width:32%;
  margin:0 2% 15px 0;
}
#s_customer .customer_link li:nth-of-type(3n+3){
  margin-right: 0%;
}
#s_customer .customer_link li .img-box{
  overflow: hidden;
  -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; -ms-border-radius: 10px; border-radius: 10px;
}
#s_customer .customer_link li .img-box a{
  display:block;
  position: relative;
}
#s_customer .customer_link li .img-box .img{
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 50%;
}
#s_customer .customer_link li .img-box a .img span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#s_customer .customer_link li .img-box a .img span img {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  width: 100%;
  height: 100%;
  max-width: none;
  will-change: transform;
  transition: 0.5s ease-out;
  transform: scale(1);
}
#s_customer .customer_link li .img-box a:hover .img span img{
	transform: scale(1.07);
}
#s_customer .customer_link li .img-box a h3{
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  color:#fff;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}
#s_customer .customer_link li .img-box a h3 span{
  display:block;
  color:#7be9d1;
  font-weight: 600;
}
#s_customer .customer_link li p{
  padding:10px;
  margin-bottom: 10px;
}
#s_customer .customer_link li .btn{
  margin: auto auto 0;
  width:100%;
  max-width:300px;
}

@media screen and (max-width:980px) {
  #s_customer .customer_link{
    flex-wrap: wrap;
  }
  #s_customer .customer_link li{
    width:49%;
    margin:0 2% 30px 0;
  }
  #s_customer .customer_link li:nth-of-type(3n+3){
    margin-right: 2%;
  }
  #s_customer .customer_link li:nth-of-type(2n+2){
    margin-right: 0%;
  }
}

@media screen and (max-width:680px) {
  #s_customer{
    padding-bottom: 100px;
  }

  #s_customer .hadding1{
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  #s_customer .hadding1 span{
    font-size: 1.6rem;
  }
  #s_customer .customer_link li{
    width:100%;
    margin:0 0% 30px 0;
  }
  #s_customer .customer_link li:nth-of-type(3n+3){
    margin-right: 0%;
  }
}

/*------*/
.form-wrap .formwra{
  width:100%;
  max-width:980px;
  padding:30px;
  margin:0 auto;
  box-sizing: border-box;
  background: #fff;
}
.form-wrap .prbox a{
  color:#1fbc99;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px dashed #1fbc99;
  transition: 0.3s ease-in-out;
}
.form-wrap .prbox a:hover{
  color:#019e97;
  border-bottom:none;
}


.form-wrap.form-colomn2 .wrap{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding:30px;
}
.form-wrap.form-colomn2 .wrap .form-colL{
  width:40%;
}
.form-wrap.form-colomn2 .wrap .form-colL img{
  width:100%;
  height:auto;
}
.form-wrap.form-colomn2 .wrap .form-colR{
  width:55%;
}
@media screen and (max-width:860px) {
  .form-wrap.form-colomn2 .wrap .form-colL{
    width:100%;
    margin-bottom: 20px;
  }
  .form-wrap.form-colomn2 .wrap .form-colR{
    width:100%;
  }
}

@media screen and (max-width:680px) {
  .form-wrap .formwra{
    padding:15px;
  }
  .form-wrap.form-colomn2 .wrap{
    padding:15px;
  }
}
/*---------------------------------
 s_bn
-----------------------------------*/
#s_bn{
  position: relative;
  border-top:1px solid #e5e5e5;
  padding:80px 0px 100px;
  z-index:1;
  min-width: 1300px;
  background: #fff;
}

#s_bn .bottom-slider{
	position: relative;
	width: 100%;
}
#s_bn .bottom-slider .slick-list{
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0 auto;
}
#s_bn .bottom-slider .slick-track{
	display: flex;
	justify-content: center;
	align-items: center;
}
#s_bn .bottom-slider .slick-slide{
	cursor: pointer;
	padding: 0 15px;
	transition: 0.2s ease-in-out;
}
#s_bn .bottom-slider .slick-slide a{
	display: block;
	transition: 0.2s ease-in-out;
}
#s_bn .bottom-slider .slick-slide a:hover img{
	opacity: 0.8;
}

@media screen and (max-width:980px) {
  #s_bn{
    padding:45px 15px;
  }
}
@media screen and (max-width:980px) {
  #s_bn{
    min-width: auto;
  }
}
@media screen and (max-width:680px) {
  #s_bn{
    padding:60px 0px;
  }
  #s_bn .w{
    padding:0 0px;
  }
}
/*---------------------------------
 side_box
-----------------------------------*/
.side_box{
  width:100%;
  margin-bottom: 50px;
}
.side_box .inner{
  border: 1px solid #dfdfdf;
  padding: 0 15px 15px;
}
.side_box .side_title{
  position: relative;
  letter-spacing: 0rem;
  font-size: 20px;
  top:-21px;
  text-align: center;
}
.side_box .side_title span{
  background: #fff;
  padding: 0 15px;
}
.side_box .side_title a{
  color:#000;
}
.side_box .ul_category li{
  border-bottom: 1px solid #dfdfdf;
}
.side_box .ul_category li:last-of-type{
  border-bottom: none;
}
.side_box .ul_category li a{
  position: relative;
  display:block;
  font-size: 16px;
  color:#000;
  padding: 10px 25px 10px 10px;
}
.side_box .ul_category li a::before,
.side_box .ul_category li a::after{
  content:"";
  position: absolute;
  transition: 0.3s ease-in-out;
}
.side_box .ul_category li a::before{
  width:20px;
  height:20px;
  top:50%;
  right:0;
  transform: translateY(-50%);
  background: #233242;
  border: 1px solid #fff;
  border-radius: 50px;
}
.side_box .ul_category li a::after{
  top:calc(50% - 3px);
  right:10px;
  width:4px;
  height:4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* ----------------------------------------------------------------------
戦略メニューのサイド
---------------------------------------------------------------------- */
#column_side .ul_category.p-widget-categories li a::before,
#column_side .ul_category.p-widget-categories li a::after{
  display:none;
}
#column_side .ul_category.p-widget-categories .has-children {
  position: relative;
}
#column_side .ul_category.p-widget-categories .has-children > a{
  border-bottom: 1px solid #dfdfdf;
}
#column_side .ul_category.p-widget-categories .has-children.is-active > a{
  border-bottom: none;
}
#column_side .ul_category.p-widget-categories .has-children .toggle-children {
  cursor: pointer;
  display: block;
  background: #f7f7f7;
  line-height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.5s ease;
  -moz-transition: -moz-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  transition: transform 0.5s ease;
}

#column_side .ul_category.p-widget-categories .has-children .toggle-children::before {
  content: '\e911';
  font-family: "iconfont";
  font-size: 14px;
  opacity: 0.7;
}

#column_side .ul_category.p-widget-categories .has-children.is-active>.toggle-children {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

#column_side .ul_category.p-widget-categories li.has-children.current_page_item a {
  background: #000;
  font-weight: bold;
  color: #fff;
}

#column_side .ul_category.p-widget-categories.pageone li.current_page_item a {
  background: #019e97;
  font-weight: bold;
  color: #fff;
}

#column_side .ul_category.p-widget-categories .children {
  background: #f7f7f7;
  display: none;
  padding-left: 0 !important;
}

#column_side .ul_category.p-widget-categories .children .children {
  background: #f0f0f0;
}

#column_side .ul_category.p-widget-categories .children .children .children {
  background: #e9e9e9;
}

#column_side .ul_category.p-widget-categories .children li a {
  background: #f7f7f7!important;
  font-weight: normal!important;
  color: #000!important;
}
#column_side .ul_category.p-widget-categories .children li a:hover{
  color:#1fbc99!important;
}
#column_side .ul_category.p-widget-categories .children li.current_page_item a {
  background: #019e97!important;
  font-weight: bold!important;
  color: #fff!important;
}

#column_side .ul_category.p-widget-categories .children li a:hover {
  background: rgba(170, 170, 170, 0.05);
}

#column_side .ul_category.p-widget-categories li.sp-logoutbtn {
  display: block;
  padding: 12px 22px;
}
/*---------------------------------
パスワード保護
-----------------------------------*/
#post_pw_box{
  border: 1px solid #e6e6e6;
  width: 100%;
  background: #f7f7f7;
  padding: 30px;
  box-sizing: border-box;
  margin: 60px 0;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#post_pw_box p{
  margin-bottom: 20px;
}
#post_pw_box .post_pw_inner{
  display:block;
}
#post_pw_box .post_pw_box-label{
  margin-right: 15px;
}
#post_pw_box .post_pw_box_input {
    border: 1px solid #ddd;
    box-shadow: none;
    height: 40px;
    width: 250px;
    margin-right: 13px;
    flex: 1;
    box-sizing: border-box;
    background: #fff;
    padding: 0 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0));
}
#post_pw_box .post_pw_box_submit {
    min-width: 100px;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    padding: 13px 20px;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    background: #019e97;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
#post_pw_box .post_pw_box_submit:hover{
  background: #04b5ad;
}

@media screen and (max-width:580px) {
  #post_pw_box .post_pw_box-label{
    margin-right: 0px;
    display:block;
    width:100%;
    text-align: center;
  }
  #post_pw_box .post_pw_box_input {
      height: 40px;
      width:100%;
      margin-right: 0px;
      margin-bottom: 10px;
  }
  #post_pw_box .post_pw_box_submit {
    display:block;
    margin: 0 auto;
  }
}
/*---------------------------------
 s_fbox
-----------------------------------*/
#s_fbox{
  position: relative;
  width:100%;
  min-width: 1300px;
  z-index:1;
  padding-bottom: 80px;
}
#s_fbox .fbg{
	display: block;
	width:100%;
  height:574px;
  background: url(/assets/images/cmn/fbg.jpg) 50% 50% no-repeat;
  background-size: cover;
  padding:105px 0 0;
  z-index:0;
  overflow: hidden;
}
#s_fbox .fbg h6{
  font-size: 18px;
  color:#fff;
  font-weight: bold;
  margin-bottom: 15px;
}
#s_fbox .fbg .en{
  font-size: calc(2.9em + 2.9vw);
  font-weight: 900;
  color:#fff;
  line-height: 1.0;
}
#s_fbox .fb_nav{
  margin-top: -220px;
}
#s_fbox .fb_nav ul{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  width:100%;
  flex-wrap: wrap;
}
#s_fbox .fb_nav ul li{
  width:33.333333%;
  background: #019e97;
  padding:8rem 6rem;
}
#s_fbox .fb_nav ul li:nth-of-type(2){
  background: #047e79;
}
#s_fbox .fb_nav ul li dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
#s_fbox .fb_nav ul li dl dt{
  width:32px;
  margin-right: 20px;
}
#s_fbox .fb_nav ul li dl dt svg{
  display:block;
  fill:#fff;
}
#s_fbox .fb_nav ul li dl dd .jp{
  color:#fff;
  font-size: 18px;
  font-weight: bold;
}
#s_fbox .fb_nav ul li dl dd .en{
  color:#fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.0;
}
#s_fbox .fb_nav ul li .p{
  text-align: center;
  color:#fff;
  margin-bottom: 4rem;
}
#s_fbox .fb_nav ul li .fbtn a{
  position: relative;
  display:block;
  width:100%;
  overflow: hidden;
  border: 1px solid #fff;
  background: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  padding:27px 10px;
  color:#019e97;
  transition: 0.3s ease-in-out;
}
#s_fbox .fb_nav ul li .fbtn a span{
  position: relative;
  z-index:1;
}
#s_fbox .fb_nav ul li .fbtn a:hover{
  color:#fff;
}
#s_fbox .fb_nav ul li .fbtn a::before,
#s_fbox .fb_nav ul li .fbtn a::after{
  position: absolute;
  content:"";
}
#s_fbox .fb_nav ul li .fbtn a::before{
  top:calc(50% - 7px);
  left:21px;
  width:17px;
  height:17px;
  border-radius: 50px;
  background: rgba(38, 172, 166, 0.4);
}
#s_fbox .fb_nav ul li .fbtn a::after{
  top:calc(50% - 3px);
  left:25px;
  width:9px;
  height:9px;
  border-radius: 50px;
  background: rgba(38, 172, 166, 1);
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
#s_fbox .fb_nav ul li .fbtn a:hover::after{
  transform: scale(100);
}
@media screen and (max-width:860px) {
  #s_fbox{
    min-width: auto;
  }
}
@media screen and (max-width:780px) {
  #s_fbox .fbg{
    height:474px;
    padding:65px 0 0;
  }
  #s_fbox .fb_nav ul li{
    width:100%;
    padding:6rem 6rem;
  }
  #s_fbox .fb_nav ul li .p{
    font-size: 18px;
  }
  #s_fbox .fb_nav ul li .fbtn a:hover::after{
    transform: scale(150);
  }
}
@media screen and (max-width:500px) {
  #s_fbox{
    padding-bottom: 60px;
  }
  #s_fbox .fb_nav ul li dl{
    margin-bottom: 2rem;
  }
  #s_fbox .fb_nav ul li{
    padding:3rem 2rem;
  }
  #s_fbox .fb_nav ul li .p{
    font-size: 16px;
    margin-bottom: 2rem;
  }
  #s_fbox .fb_nav ul li .fbtn a{
    padding:20px 5px;
  }
}
/*---------------------------------
 s_mission
-----------------------------------*/
#s_mission{
  position: relative;
  padding:0px 0 80px;
  min-width: 1300px;
  z-index:1;
}
#s_mission .p{
  font-size: 18px;
}
@media screen and (max-width:860px) {
  #s_mission{
    min-width: auto;
  }
}
@media screen and (max-width:500px) {
  #s_mission{
    position: relative;
    padding:0px 0 60px;
    z-index:1;
  }
}

/*---------------------------------
 wtab
-----------------------------------*/
#wtab {
  position: relative;
  overflow: hidden;
  width:100%;
  z-index:2;
  margin-bottom: -1px;
}

#wtab li {
  float: left;
  display:block;
  padding: 4px;
  border: 1px solid #dadbd6;
  background: #fff;
  height: 62px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
#wtab li:nth-child(n+2) {
  margin-left: -1px;
}
#wtab li a{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  align-items: center;
  padding:0px 65px;
  height: 52px;
  background: #f1f1f1;
  border-radius: 6px 6px 0 0;
  color:#a2a2a2;
  font-weight: bold;
  line-height: 1.4;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
#wtab li a:hover{
  background: #fff;
}
#wtab li a span{
  position: relative;
  padding-left: 33px;
}
#wtab li a span::before,
#wtab li a span::after{
  position: absolute;
  content:"";
}
#wtab li a span::before{
  width:20px;
  height:20px;
  top:50%;
  left:0;
  transform: translateY(-50%);
  background: #a2a2a2;
  border-radius: 50px;
}
#wtab li a span::after{
  top:calc(50% - 3px);
  left:7px;
  width:4px;
  height:4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#wtab li.active{
  border-bottom: 1px solid #fff;
}
#wtab li.active a{
  color:#000;
  background: #fff;
}
#wtab li.active a span::before{
  background: #000;
}
#wtab li.active a span::after{
  top:calc(50% - 4px);
  left:7px;
  transform: rotate(135deg);
}
.wtabwrap{
  position: relative;
  z-index:1;
}
.wtabwrap .wtab_inner{
  border: 1px solid #dadbd6;
  background: #fff;
  padding:40px;
  overflow: hidden;
  border-radius: 0 8px 8px 8px;
}
.wtag_cat{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.wtag_cat li{
  display: grid;
  place-items: center;
}
.wtag_cat li a{
  display:block;
  color:#000;
  font-size: 14px;
  padding:12px 25px;
  border: 1px solid #dadbd6;
  background: #f7f7f7;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.wtag_cat li a:hover{
  font-weight: bold;
  border: 1px solid #000;
  background: #fff;
}
@media screen and (max-width: 760px) {
  #wtab {
    display: block;
  }

  #wtab li {
    float: none;
    height: auto;
    padding: 4px;
    border-radius: 0px 0px 0 0;
  }
  #wtab li:nth-child(n+2) {
    margin-left: 0px;
    margin-top: -1px;
  }
  #wtab li a{
    padding:30px 25px;
    height: auto;
    border-radius: 0px 0px 0 0;
    font-size: 16px;
  }
  .wtabwrap .wtab_inner{
    padding:20px;
    overflow: hidden;
    border-radius: 0 0px 8px 8px;
  }
  .wtag_cat li a{
    font-size: 14px;
    padding:8px 18px;
  }
}
@media screen and (max-width: 400px) {
  #wtab li a{
    padding:20px 20px;
    font-size: 16px;
  }
  .wtabwrap .wtab_inner{
    padding:15px;
  }
  .wtag_cat{
    column-gap: 10px;
    row-gap: 10px;
  }
  .wtag_cat li a{
    font-size: 12px;
    padding:5px 8px;
  }
}
/*---------------------------------
 togglewrap
-----------------------------------*/
.togglewrap{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  align-items: center;
  border: 1px solid #dadbd6;
  background: #fff;
  padding:40px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 80px;
}
.togglewrap .i{
  width:55px;
  padding-right: 25px;
}
.togglewrap .i img{
  display:block;
  width:100%;
  max-width:30px;
}
.toggle_cat{
  width:calc(100% - 55px);
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.toggle_cat li{
  display: grid;
  place-items: center;
}
.toggle_cat li a{
  display:block;
  color:#000;
  font-size: 14px;
  padding:12px 25px;
  border: 1px solid #dadbd6;
  background: #f7f7f7;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.toggle_cat li a:hover{
  font-weight: bold;
  border: 1px solid #000;
  background: #fff;
}
.toggle_cat li.active a{
  font-weight: bold;
  border: 1px solid #000;
  background: #000;
  color:#fff;
}
@media screen and (max-width: 680px){
  .togglewrap{
    padding:15px;
    margin-bottom: 50px;
  }
	.togglewrap{
    padding:20px;
    margin-bottom: 60px;
  }
  .toggle_cat li a{
    font-size: 14px;
    padding:9px 17px;
  }
}
@media screen and (max-width: 400px){
  .togglewrap{
    padding:15px 10px;
    margin-bottom: 50px;
  }
	.toggle_cat{
    column-gap: 10px;
    row-gap: 10px;
  }
  .togglewrap .i{
    width:35px;
    padding-right: 15px;
  }
  .togglewrap .i img{
    max-width:20px;
  }
  .toggle_cat{
    width:calc(100% - 35px);
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 12px;
  }
  .toggle_cat li a{
    font-size: 12px;
    padding:5px 8px;
  }
}

/*---------------------------------
 mulchshwrap
-----------------------------------*/
.mulchshwrap{
  position: relative;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  align-items: center;
  border: 1px solid #dadbd6;
  background: #fff;
  padding:40px 0 0;
  border-radius: 8px;
  margin-bottom: 80px;
}
.mulchshwrap .search_cat{
  position: absolute;
  top:-20px;
  left:25px;
}
.mulchshwrap .search_cat span{
  display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  background: #fff;
  padding:0 15px;
}
.mulchshwrap .search_cat span svg{
  display:block;
  width:26px;
}
.mulchshwrap .search_cat span i{
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
}
.mulchshcat{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px;
  column-gap: 12px;
  row-gap: 12px;
  margin-bottom: 30px;
}
.mulchshcat li{
  display: grid;
  place-items: center;
}
.mulchshcat li a{
  display:block;
  color:#000;
  font-size: 14px;
  padding:8px 15px;
  border: 1px solid #dadbd6;
  background: #f7f7f7;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.mulchshcat li a:hover{
  font-weight: bold;
  border: 1px solid #000;
  background: #fff;
}
.mulchshcat li.active a{
  font-weight: bold;
  border: 1px solid #000;
  background: #000;
  color:#fff;
}
.make_tagtoggle{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  justify-content: center;
  align-items: center;
  padding:20px 40px;
  color:#fff;
  border-radius: 0 0 8px 8px;
  background: #233242;
  cursor: pointer;
}
.make_tagtoggle.active{
  border-radius: 0 0 0px 0px;
}
.make_tagtoggle:hover{
	background: #3b454f;
}
.make_tagtoggle span.i{
  position: relative;
  display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-end;
  width: 25px;
	height: 25px;
}
.make_tagtoggle span.i:before,
.make_tagtoggle span.i:after{
		content: "";
		display: block;
		width: 25px;
		height: 1px;
		background: #fff;
		margin: 2px 0px;
    text-align: center;
		transition: 0.3s;
}
.make_tagtoggle span.i i{
		display: block;
		width: 25px;
		margin: 5px auto;
		height: 1px;
		background: #fff;
		transition: 0.3s;
}
.make_tagtoggle:hover span.i i{
		margin: 2px auto;
}
.make_tagtoggle span.r{
  padding-left:10px;
  font-size: 16px;
}
.toggleky{
  width:100%;
  border-top: 1px solid #3b454f;
  background: #233242;
  padding:30px 40px;
  border-radius: 0 0 8px 8px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.toggleky.open{
  display:block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mulchshtag{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.mulchshtag li{
  display: grid;
  place-items: center;
}
.mulchshtag li a{
  display:block;
  color:#000;
  font-size: 14px;
  padding:8px 15px;
  border: 1px solid #dadbd6;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.mulchshtag li a:hover{
  font-weight: bold;
  border: 1px solid #000;
  background: #fff;
}
.mulchshtag li.active a{
  font-weight: bold;
  border: 1px solid #fff;
  background: #233242;
  color:#fff;
}
@media screen and (max-width: 680px){
	.mulchshwrap{
    padding:30px 0 0;
    margin-bottom: 40px;
  }
  .mulchshcat{
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .mulchshcat li a{
    font-size: 12px;
    padding:9px 17px;
  }
  .make_tagtoggle{
    padding:15px 25px;
  }
  .make_tagtoggle span.r {
    font-size: 14px;
  }
  .toggleky{
    padding: 30px 25px;
  }
  .mulchshtag li a{
    font-size: 12px;
    padding:6px 10px;
  }
}
@media screen and (max-width: 400px){
  .mulchshwrap .search_cat{
    top:-17px;
    left:15px;
  }
  .mulchshwrap .search_cat span{
    padding:0 10px;
  }
  .mulchshwrap .search_cat span svg{
    width:20px;
  }
  .mulchshwrap .search_cat span i{
    padding-left: 10px;
    font-size: 16px;
  }
  .mulchshwrap{
    margin-bottom: 30px;
  }
  .mulchshcat{
    padding: 0 15px;
    column-gap: 10px;
    row-gap: 10px;
  }
  .mulchshcat li a{
    font-size: 12px;
    padding:5px 8px;
  }
}
/*---------------------------------
 footer
-----------------------------------*/
footer{
  width:100%;
  min-width: 1300px;
  background: #233242;
  padding:90px 0;
}
footer .fnav{
  width:100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .fnav article{
  width:30%;
}
footer .fnav article .h{
  margin-bottom: 20px;
}
footer .fnav article .h a{
  position: relative;
  transition: 0.3s ease-in-out;
}
footer .fnav article .h a:hover{
  filter:alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;
}
footer .fnav article .h a .en{
  color:#3a4c5f;
  font-size: 24px;
  letter-spacing: 0rem;
  font-weight: 700;
  line-height: 1.0;
}
footer .fnav article .h a h5{
  color:#fff;
  font-weight: bold;
  font-size: 18px;
  margin-top: -10px;
}
footer .fnav article .h a::before,
footer .fnav article .h a::after{
  position: absolute;
  content:"";
}
footer .fnav article .h a::before{
  width:20px;
  height:20px;
  top:calc(50% - 8px);
  right:0;
  background: #3a4c5f;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
footer .fnav article .h a::after{
  top:50%;
  right:9px;
  width:4px;
  height:4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

footer .fnav article ul{
  margin-bottom: 40px;
}
footer .fnav article ul li{
  margin-bottom: 15px;
}
footer .fnav article ul li:last-of-type{
  margin-bottom: 0px;
}
footer .fnav article ul li a{
  position: relative;
  color:#fff;
  padding:0 0 0 23px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
footer .fnav article ul li a:hover{
  filter:alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;
}
footer .fnav article ul li a::before{
  position: absolute;
  content:"";
  width:7px;
  height:7px;
  top:7px;
  left:0;
  background:#3a4c5f;
  border-radius: 50px;
}
.fnav2{
  padding:50px 0;
  min-width: 1300px;
}
.fnav2 .w{
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fnav2 ul{
  overflow: hidden;
}
.fnav2 ul li{
  float: left;
  margin-right: 8rem;
}
.fnav2 ul li:last-of-type{
  margin-right: 0rem;
}
.fnav2 ul li a{
  color:#000;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
.fnav2 ul li a:hover{
  filter:alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;
}
.fnav2 .copy{
  letter-spacing: 0rem;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width:860px) {
  footer,
  .fnav2{
    min-width: auto;
  }
}
@media screen and (max-width:680px) {
  footer{
    padding:0px 0;
  }
  footer .fnav article{
    width:100%;
  }
  footer .fnav article .h{
    position: relative;
    margin-bottom: 0px;
  }
  footer .fnav article ul{
    position: relative;
    margin-bottom: 0px;
  }
  footer .fnav article .h::before,
  footer .fnav article .h::after{
    display:block;
    position: absolute;
    content:"";
    left:-25px;
    width:calc(100% + 50px);
    height:1px;
  }
  footer .fnav article .h::before{
    bottom:0px;
    background: #141f2b;
  }
  footer .fnav article .h::after{
    bottom:-1px;
    background: #3a4c5f;
  }
  footer .fnav article .h.is_open::before,
  footer .fnav article .h.is_open::after{
    display:none;
  }
  footer .fnav article ul.is_open{
    padding-bottom: 30px;
  }
  footer .fnav article ul.is_open::before,
  footer .fnav article ul.is_open::after{
    display:block;
    position: absolute;
    content:"";
    left:-25px;
    width:calc(100% + 50px);
    height:1px;
  }
  footer .fnav article ul.is_open::before{
    bottom:0px;
    background: #141f2b;
  }
  footer .fnav article ul.is_open::after{
    bottom:-1px;
    background: #3a4c5f;
  }

  footer .fnav article .h a{
    position: relative;
    transition: 0.3s ease-in-out;
    display:block;
    padding:25px 0;
  }
  footer .fnav article .h a::before,
  footer .fnav article .h a::after{
    display:none;
  }
  footer .fnav article .h.is_toggle a::before,
  footer .fnav article .h.is_toggle a::after{
    display:block;
    position: absolute;
    content:"";
  }
  footer .fnav article .h.is_toggle a::before{
    width:20px;
    height:20px;
    top:calc(50% - 8px);
    right:0;
    background: #3a4c5f;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
  }
  footer .fnav article .h.is_toggle a::after{
    top:calc(50% - 1px);
    right:8px;
    width:4px;
    height:4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(125deg);
  }
}
@media screen and (max-width:500px) {
  footer .fnav article .h::before,
  footer .fnav article .h::after{
    left:-15px;
    width:calc(100% + 30px);
  }
  footer .fnav article ul.is_open::before,
  footer .fnav article ul.is_open::after{
    left:-15px;
    width:calc(100% + 30px);
  }
  .fnav2{
    padding:25px 0;
  }
  .fnav2 ul{
    width:100%;
  }
  .fnav2 .copy{
    width:100%;
    text-align: center;
    padding-top:15px;
  }
}
/*---------------------------------
 shade
-----------------------------------*/
#shade{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 6;
	opacity: 0;
	pointer-events: none;
	transition: 0.4s ease-in-out;
}
/*.hmopen #shade{
	opacity: 1;
	pointer-events: auto;
}*/
#shade~*{
	transition: 0.2s ease-in-out;
}
/*---------------------------------
 openmenu
-----------------------------------*/
.openmenu{
  position: fixed;
  top:0;
  left:0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: rgba(255,255,255,1);
  -webkit-overflow-scrolling: touch;
  display:none;
  pointer-events: none;
  opacity: 0;
}
.hmopen .openmenu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.openmenu .l_menu{
  position: relative;
  margin-top: 150px;
	width: 100%;
	height: 100%;
	background: #fff;
  overflow-y: scroll;
  pointer-events: auto;
}
.openmenu .menu_wrap{
  padding:0 100px 50px;
  width:100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.openmenu .menu_wrap .mw_l{
  width:70%;
}
.openmenu .menu_wrap .mw_r{
  width:25%;
  opacity: 0;
  animation: menuAnimC 1.5s ease forwards;
}
.openmenu .menu_wrap a { transition: all .3s; }
.openmenu .menu_wrap .en a,
.openmenu .menu_wrap a .en{letter-spacing: 0rem;color:#d2dae3;}
.openmenu .menu_wrap .header_head{
  margin-bottom: 60px;
  position: relative;
  transform: translateX(100px);
  opacity: 0;
  line-height: 1;
  animation: menuAnim 1.5s ease forwards;
}
.openmenu .menu_wrap .header_head a{
  color:#000;
  font-size: 30px;
  font-weight: 700;
}
.openmenu .menu_wrap .header_head a:hover{
  color:#26aca6;
}
.openmenu .header_list_wrap{
  width:100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.openmenu .header_list_wrap ul.header_list{
  width:46%;
  margin-bottom: 70px;
  opacity: 0;
}
.openmenu .header_list_wrap ul.header_list > li{

}
.openmenu .header_list_wrap ul.header_list > li a{
  position: relative;
}
.openmenu .header_list_wrap ul.header_list.has-sub > li a::before,
.openmenu .header_list_wrap ul.header_list.has-sub > li a::after{
  position: absolute;
  content:"";
  background: #000;
  transition: 0.3s ease-in-out;
}
.openmenu .header_list_wrap ul.header_list.has-sub > li a::before{
  width:30px;
  height:1px;
  top:15px;
  right:0;
}
.openmenu .header_list_wrap ul.header_list.has-sub > li a::after{
  width:1px;
  height:30px;
  top:0;
  right:15px;
}
.openmenu .header_list_wrap ul.header_list.has-sub.is_open > li a::after{
  transform: rotate(90deg);
  opacity: 0;
}
.openmenu .header_list_wrap ul.header_list > li a .en{
  font-size: 46px;
  font-weight: 700;
  line-height: 1.0;
}
.openmenu .header_list_wrap ul.header_list > li a .jp{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.0;
  display:block;
  color:#000;
  margin-top: -10px;
  transition: all .3s;
}
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub{
  padding:25px 0 0;
  display: none;
}
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub > li{
  margin-bottom: 10px;
}
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub > li a{
  color:#000;
}
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub > li a::before,
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub > li a::after{
  display:none;
}
.openmenu .header_list_wrap ul.header_list > li a:hover .jp{
  color:#26aca6;
}
.openmenu .header_list_wrap ul.header_list > li > .header_list_sub > li a:hover{
  color:#26aca6;
}
.openmenu .header_list_wrap ul.header_list:nth-child(1) { animation: menuAnim 1s ease .2s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(2) { animation: menuAnim 1s ease .3s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(3) { animation: menuAnim 1s ease .4s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(4) { animation: menuAnim 1s ease .5s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(5) { animation: menuAnim 1s ease .6s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(6) { animation: menuAnim 1s ease .7s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(7) { animation: menuAnim 1s ease .8s forwards; }
.openmenu .header_list_wrap ul.header_list:nth-child(8) { animation: menuAnim 1s ease .9s forwards; }
@keyframes menuAnim {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes menuAnimB {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes menuAnimC {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.openmenu .menu_wrap .mw_r .c_n1{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.openmenu .menu_wrap .mw_r .c_n2{
  font-size: 16px;
  margin-bottom: 30px;
}
.openmenu .menu_wrap .mw_r .header_list_btn{
  display:block;
  margin-bottom: 30px;
}
.openmenu .menu_wrap .mw_r .header_list_btn li{
  margin-bottom: 1px;
}
.openmenu .menu_wrap .mw_r .header_list_btn li a{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  justify-content: center;
  align-items: center;
  padding:30px 5px;
  color:#fff;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}
.openmenu .menu_wrap .mw_r .header_list_btn li a svg{
  width:30px;
  fill:#fff;
  margin-right: 8px;
}
.openmenu .menu_wrap .mw_r .header_list_btn li:nth-of-type(1) a{
  background: #1fbc99;
}
.openmenu .menu_wrap .mw_r .header_list_btn li:nth-of-type(1) a:hover{
  background: #24cda7;
}
.openmenu .menu_wrap .mw_r .header_list_btn li:nth-of-type(2) a{
  background: #019e97;
}
.openmenu .menu_wrap .mw_r .header_list_btn li:nth-of-type(2) a:hover{
  background: #04b5ad;
}
.openmenu .menu_wrap .mw_r .header_list_link li{
  margin-bottom: 10px;
}
.openmenu .menu_wrap .mw_r .header_list_link li a{
  color:#000;
  transition: all .3s;
}
.openmenu .menu_wrap .mw_r .header_list_link li a:hover{
  color:#26aca6;
}
@media screen and (max-width:1200px) {
  .openmenu .menu_wrap{
    padding:0 50px 50px;
  }
  .openmenu .header_list_wrap ul.header_list > li a .en{
    font-size: 36px;
  }
  .openmenu .header_list_wrap ul.header_list > li a .jp{
    font-size: 24px;
  }
  .openmenu .menu_wrap .mw_r .header_list_btn li a{
    padding:25px 5px;
    font-size: 16px;
  }
}
@media screen and (max-width:980px) {
  .openmenu .menu_wrap .mw_l{
    width:100%;
    margin-bottom: 60px;
  }
  .openmenu .menu_wrap .mw_r{
    width:100%;
  }
}
@media screen and (max-width:860px) {
  .openmenu .l_menu{
    margin-top: 100px;
  }
}
@media screen and (max-width:680px) {
  .openmenu .header_list_wrap ul.header_list > li a .en{
    font-size: 22px;
  }
  .openmenu .header_list_wrap ul.header_list > li a .jp{
    font-size: 22px;
  }
}
@media screen and (max-width:580px) {
  .openmenu .menu_wrap{
    padding:0 25px 50px;
  }
  .openmenu .header_list_wrap ul.header_list{
    width:100%;
    margin-bottom: 50px;
    opacity: 0;
  }
  .openmenu .menu_wrap .mw_l{
    margin-bottom: 0px;
  }
  .openmenu .menu_wrap .mw_r{
    padding-bottom: 150px;
  }
  .openmenu .header_list_wrap ul.header_list > li a .en{
    font-size: 28px;
  }
  .openmenu .header_list_wrap ul.header_list > li a .jp{
    font-size: 22px;
  }
}
@media screen and (max-width:500px) {
  .openmenu .l_menu{
    margin-top: 70px;
  }
}
/*----------------------------slider--------------------------------*/

.slider .slick-list{
	position: relative;
	display: block;
	overflow: hidden;

}
.slider{
	position: relative;
	cursor: pointer;
	width:calc(100% - 30px);
	margin:auto;
}
.slider .slick-track{
	position: relative;
	top: 0;
	left: 0;
	display:-webkit-box;/*--- Androidブラウザ用 ---*/
	display:-ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display: flex;
	justify-content: center;
	align-items:flex-start;
}

.slider .slick-arrow{
	display: block;
	text-indent: -10000px;
	outline:none;
	line-height:1px;
	font-size:1px;
	height: 30px;
	width: 30px;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 15px);
	left:-15px;
	z-index: 1;
	border: none;
}
.slider .slick-next{
	left: auto;
	right:-15px;
}
.slider .slick-arrow:before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	top: calc(50% - 7px);
	border-top: 3px solid rgba(0,0,0,0.8);
	border-left: 3px solid rgba(0,0,0,0.8);
}
.slider .slick-prev:before{
	transform: rotate(-45deg);
	left: calc(50% - 4px);
}
.slider .slick-next:before{
	transform: rotate(135deg);
	left: calc(50% - 12px);
}

.slider .pointer{
	display: table;
	margin: 20px auto 0;
}
.slider .pointer li{
	display: table-cell;
	padding: 0 5px;
}
.slider .pointer li button{
	display: block;
	text-indent: -10000px;
	outline:none;
	line-height:1px;
	font-size:1px;
	background-color: #ccc;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	border: none;
	cursor: pointer;
}
.slider .pointer .slick-active button{
	background-color: #3f3a39;
}

/*----------------------------load-----------------------------------*/

#load{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
}
#load div:nth-of-type(1){
	height: 100%;
	width: 100%;
	background: #16212d;
	position: absolute;
	top: 0;
	left: 0;
}
#load .loader-base{
	width: 44px;
	height: 44px;
	border-radius:100%;
	position: absolute;
	background:#16212d;
	top: calc(50% - 62px);
	left: calc(50% - 22px);
	display: block;
	z-index:999;
}
#load .loader,
#popup .loader{
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius:100%;
	background: #038c74; /* Old browsers */
	background: -moz-linear-gradient(left,  #038c74 50%, #1fbc99 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(50%,#038c74), color-stop(100%,#1fbc99)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  #038c74 50%,#1fbc99 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  #038c74 50%,#1fbc99 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  #038c74 50%,#1fbc99 100%); /* IE10+ */
	background: linear-gradient(to right,  #038c74 50%,#1fbc99 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038c74', endColorstr='#1fbc99',GradientType=1 ); /* IE6-9 */
	animation: spin linear 0.5s infinite;
	-o-animation: spin linear 0.5s infinite;
	-ms-animation: spin linear 0.5s infinite;
	-webkit-animation: spin linear 0.5s infinite;
	-moz-animation: spin linear 0.5s infinite;
	transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	animation: spin 0.75s infinite linear;
	position: absolute;
	top: calc(50% - 65px);
	left: calc(50% - 25px);
	display: block;
}
#popup .loader{
	top: calc(50% - 25px);
}
#load .loader:before,
#load .loader:after,
#popup .loader:before,
#popup .loader:after{
	left: -2px;
	top: -2px;
	display: none;
	position: absolute;
	content: '';
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
}
#load .loader,
#load .loader:before,
#popup .loader,
#popup .loader:before{
	display: inline-block;
	border-color: transparent;
	border-top-color: #038c74;
}
#load .loader:before,
#popup .loader:before{
	animation: spin 1.5s infinite ease;
}
@keyframes spin{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
