@charset "utf-8";
/* 基本スタイル　*********************************************** */
body {
  font-family: 'Roboto', 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  line-height: 1.8;
}
a {
  color: #DB0025;
  transition: color 0.2s ease;
}
a:hover {
    color: #000;
    text-decoration: none
}

@media screen and (max-width:768px) {
body {
  font-family: 'Roboto', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  line-height: 1.8;
}
}

/* 共通パーツ　*********************************************** */
.ff-oswald { font-family: 'Oswald' !important; }
.btn-red a {
	text-decoration: none;
    color: #fff!important;
    display: inline-block;
    background: #db0025;
    padding: 0.5em;
    border: solid 2px #db0025;
    transition: color 0.2s ease, background 0.2s ease;
}
.btn-red a:hover {
    color: #db0025!important;
    background: #fff;
}
a.link_black {	color: #000; }
a.link_white{color: #FFF;}
a.link_black:hover, a.link_white:hover {
	color: #db0025;
    text-decoration: none;
}
.link-type01 a {
    color: #212529;
    text-decoration: none;
    text-align: center;
}
.link-type01 a:hover {
  color: #DB0025;
  text-decoration: none;
}

/* 共通パーツ　******************************************* */
.bg-gray01 { background-color: #f8f9fa; }/* 削除予定　*/
.bg_blue01 { background-color: #eff4f7;}/* 削除予定　*/
.bg_gray { background-color: #f8f9fa; }/* 削除予定　*/
.bg_grey {background-color: #f8f9fa;}
.bg_grey2 {background-color: #f9f9f9;}
.bg_blue { background-color: #eff4f7;}


/* HEADER　*********************************************** */
#header {
  background: #fff;
  min-height: 70px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
#header h1{margin-bottom: 0px;}
#header .navbar {
  font-size: 16px;
  padding: 17px 1rem;
}
#header .navbar .logo { font-size: 0; }
#header .navbar .logo a { padding: 0; }
#header .navbar .logo img { display: block; }
#header .navbar .navbar-nav { font-family: 'Oswald', 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"; }
#header .navbar .navbar-nav .nav-item { line-height: 19px; }
#header .navbar .navbar-nav .nav-item.my-auto { margin-left: 16px; }
#header .navbar .navbar-nav .nav-link {
  line-height: 19px;
  color: #000;
  display: block;
  font-size: 13px;
}
#header .navbar .navbar-nav .dropdown-menu {
  background-clip: border-box;
  padding: 0;
  border-radius: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease-out, opacity 0.3s ease, visibility 0s 0.3s;
}
#header .navbar .navbar-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
  /* padding: 10px 10px 10px 10px; */
}
#header .navbar .navbar-nav .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
}

#header .navbar .navbar-nav .dropdown-item {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  line-height: 140%;
  position: relative;
}
a.dropdown-item::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    translate: 14px;
    transform: translate(-50%,-50%);
}
#header .navbar .navbar-nav .nav-link.btn {
  font-size: 13px;
  line-height: 15px;
  color: #db0025;
  border: solid 2px #db0025;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease;
}
#header .navbar .navbar-nav .nav-link.btn:hover {
  color: #fff;
  background: #db0025;
}

#header .navbar .navbar-nav .nav-item.phone-hours {
	font-size: 12px;
	line-height: 2.8;
}

@media screen and (min-width: 1200px) {
#header .navbar .container {
    max-width: 1360px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    rightpadding: 0.7rem;
    left-padding: 0.7rem;
}
}

@media screen and (max-width:1023px) {
#header .navbar { padding: 15px 1rem; }
.navbar-collapse {
    overflow: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 68px);
}
#header .navbar .navbar-toggler { border-radius: 0; }
#header .navbar .navbar-nav:nth-child(1) { padding-top: 20px; }
#header .navbar .navbar-nav:nth-child(2) {
  text-align: center;
  margin-top: 20px;
}
#header .navbar .navbar-nav .nav-item.my-auto { margin: 0; }
#header .navbar .navbar-nav .dropdown-menu {
  display: none;
  border: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#header .navbar .navbar-nav .dropdown-menu.show { display: block; }
#header .navbar .navbar-nav .dropdown-item { padding: 1rem 1em; }
#header .navbar .navbar-nav .dropdown-item:hover { background: none; }
#header .navbar-light .navbar-toggler { border: none; }
}

@media screen and (max-width:769px) {
#header .navbar .navbar-nav .dropdown-item { padding: 1rem 0em; }
}

/* mega-menu */
.mega-menu {
  position: static;
  }
.dropdown-menu{
    width: 100%;
}
.dropdown-hover:hover .dropdown-menu {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	max-height: 0;
	display: block;
	overflow: hidden;
	opacity: 0;
}
.dropdown-hover:hover .dropdown-menu {
	max-height: 500px;
	opacity: 1;
}


/* ヘッダー情報
****************************** */
#header-info {
  font-size: 12px;
  color: #fff;
  background: #db0025;
  padding: 20px 0;
}
#header-info .item .more {
  text-align: center;
  margin-bottom: 0;
}
#header-info .item .more a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 8px;
  border: 2px solid #fff;
  transition: color 0.2s ease, background 0.2s ease;
}
#header-info .item .more a:hover {
  color: #db0025;
  background: #fff;
}

@media screen and (min-width:769px) {
#header-info .item-wrap {
  display: table;
  max-width: 950px;
  width: 100%;
  table-layout: fixed;
  margin: 0 auto;
}
#header-info .item {
  display: table-cell;
  vertical-align: middle;
}
#header-info .item:nth-child(1) { padding-right: 25px; }
#header-info .item:nth-child(2) { width: 240px; }
#header-info .item p { margin-bottom: 0; }
}


/* FOOTER　*********************************************** */
#footer {
  color: #fff;
  background: #222;
  padding: 80px 0;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer a:hover { color: #db0025; }
#footer ul,
#footer li {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
#footer .footer-cat-title {
  font-weight: 700;
  font-size: 14px;
}
#footer .row:nth-child(2) {
  margin-top: 25px;
  padding-top: 40px;
  border-top: solid 1px #8d8d8d;
}
#footer .logo { width: 160px; }
#footer .sublink {
  font-size: 14px;
  letter-spacing: -0.4em;
  /*text-align: right;*/
  margin: 0;
}
#footer .sublink li {
  /*display: inline-block;*/
  padding-left: 1.6;
  letter-spacing: 0;
  vertical-align: top;
  padding-left: 1.2em;
  position: relative;
  line-height: 140%;
}
#footer .sublink li::before {
content: "-";
position: absolute;
top:0.2em;
left: 0;
}

/*#footer .sublink li:nth-child(n+2) { margin-left: 3em; }*/
#footer .nav {
  font-size: 14px;
  letter-spacing: -0.4em;
}
#footer .nav li {
  display: inline-block;
  letter-spacing: 0;
  vertical-align: top;
}
#footer .nav li:nth-child(n+2) { margin-left: 1em; }
#footer .nav:nth-child(n+2) { margin-top: 1em; }
#footer .sns {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4em;
  text-align: right;
  margin: 0;
}
#footer .sns li {
  display: inline-block;
  letter-spacing: 0;
  vertical-align: top;
}
#footer .sns li:nth-child(n+2) { margin-left: 1em; }
#footer .copy {
  font-size: 14px;
  text-align: right;
  margin-top: 1em;
}



@media screen and (max-width:768px) {
#footer .sublink {
	text-align:  left;
}
#footer .sublink li:nth-child(n+2) { margin-left: 0;}

#footer .nav li a,
#footer .sublink li a{
	display: block;
}
#footer .nav li,
#footer .sublink li	{
	display: block;
	width: 100%;
}
#footer .nav li:nth-child(n+2) {margin-left: 0;}
#footer .sns {
	text-align: center;
	padding: 20px 0;
}
#footer .copy {text-align: center;}
#footer .nav:nth-child(n+2) {margin-top: 0;}
#footer .row:nth-child(2) {
/*	margin-top: 0px;
	padding-top: 0px;
	border-top: none;*/
}
}

/* pagetop　*********************************************** */
.pagetop{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 75px;
	height: 75px;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
}
.pagetop:hover{
	background: rgba(0, 0, 0, 1);
}
.pagetop a{
	display: block;
	width: 100%;
	height: 100%;
	background: url(/common/images/btn_pagetop.svg) no-repeat;
	background-position: center;
	background-size: 50px;
}
@media screen and (max-width:768px) {
	.pagetop {
    	bottom: 15px;
		right: 15px;
    	width: 50px;
    	height: 50px;
	}
	.pagetop a{
    	background-size: 30px;
	}
}

/* CONTAINER　*********************************************** */
#container { padding-top: 70px; }



/* CONTENT　*********************************************** */
/* contact
****************************** */
#contact {
  background: #333;
  text-align: center;
  padding: 100px;
}
#contact .title {
  font-size: 24px;
  font-weight: 500;
  color: #FFF;
  margin: 0;
}
#contact .btn1 {
  font-size: 24px;
  margin: 1em 0 0;
}
#contact .btn1 a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: #db0025;
  max-width: 100%;
  width: 380px;
  padding: 0.5em;
  border: solid 2px #db0025;
  transition: color 0.2s ease, background 0.2s ease;
}
#contact .btn1 a:hover {
  color: #db0025;
  background: #fff;
}

@media screen and (max-width:768px) {
#contact {padding: 100px 15px;}
}

/* content-header
****************************** */
#content-header {
  color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#content-header .container {
  height: 540px;
  position: relative;
}
#content-header .container .header-title-center {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#content-header .container .header-title {
  font-size: 60px;
  line-height: 1;
}
#content-header .container .header-title:after {
  font-size: 16px;
  display: block;
  content: attr(data-ruby);
  margin-top: 1em;
}

@media screen and (max-width:768px) {
#content-header .service-title,
#content-header .container .header-title{
	padding: 0 15px; }
}

/* services
****************************** */
.services #content-header {
  background-position: center top;
  position: relative;
 }
 .services #content-header .container { height: 550px; }
 .services #content-header .service-title .title {
 	margin: 0;
 	padding: 26px 0;
 	font-size: 60px;
    font-weight: 700;
}
 .services #content-header .caption {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background: #db0025;
  padding: 1em 0.75em 0.5em 1.5em;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
 .services #content-header .caption:before,
 .services #content-header .caption:after {
  display: block;
  content: "";
  background: #db0025;
  width: 100%;
  height: 100%;
  position: absolute;
}
 .services #content-header .caption:before {
  top: 0;
  right: 0;
  transform-origin: bottom right;
  transform: skewX(-20deg);
}
 .services #content-header .caption:after {
  left: 0;
  bottom: 0;
  transform-origin: bottom right;
  transform: skewY(-4deg);
}
 .services #content-header .caption .txt1 {
  margin: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width:768px) {
.services #content-header {position: static;}
.services #content-header .caption:before {	transform: none;}
.services #content-header .caption{
	/*padding: 1em 0.75em;*/
	padding: 0.6em 0.5em;
	position: static;
	margin-top: -87px;
}
.services #content-header .caption .txt1{
		font-size:24px;
	}
}

/* mp
****************************** */
#content-header.mp {
  background-image: url(/mailpublisher/common/images/cover_mp.jpg);
}
#content-header.mp h1 img {
	width: 400px;
/*	padding-top: 20px; */
}

#content-header.mp .service-title {
  color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.services #content-header .service-title {
    text-align: center;
}

.services #content-header .service-title .txt1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width:768px){
	#content-header.mp {
 	    background-position: left 23% top 0;
   		 background-size: auto 90%;
	}
	#content-header.mp .service-title{
    bottom: 5px;
    top: unset;
	  transform: unset;
	}
	.services #content-header .service-title .txt1{
	font-size: 16px;
    letter-spacing: 0.1em;
	}
	#content-header.mp h1{
    	line-height: 0.5;
	}
	#content-header.mp h1 img{
    	padding-top: 0;
	}
}

/* marketing
****************************** */
#content-header.marketing {
  background-image: url(/emailmarketing/common/images/cover_marketing.jpg);
}
#content-header.marketing .service-title {
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.marketing h2.servicesmenu {
	font-size: 50px;
	font-weight: 700;
	padding: 150px 0 110px 0;
	text-align: center;
}
@media screen and (max-width:768px){
	.marketing h2.servicesmenu {
		padding: 60px 0 80px;
	}
}

.marketing .menu {
	padding: 60px 0 0 0;
}
.marketing .menu li {
	font-size: 16px;
	color: #DB0025;
	list-style: none;
	text-decoration: underline;
	line-height: 2.4;
	font-weight: 600;
}
@media screen and (max-width:768px){
	#content-header.marketing {
  		background-image: url(<$mt:BlogRelativeURL$>emailmarketing/common/images/cover_emailmarketing-sp-min-2.jpg);
    	background-size: auto 100%;
	}
	#content-header.marketing .service-title{
      color: #ffffff;
      top: unset;
      transform: unset;
      bottom: 10px;
	}
	#content-header.marketing .service-title .txt1{
      line-height: 1.2;
      filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
	}
	#content-header.marketing .service-title .title{
      font-size: 32px;
      filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
	}
}


/* ニュース
****************************** */
#content-header.news { background-image: url(/common/images/cover_news.jpg); }
#news .entry-header h1 {
	font-size: 40px;
	font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 768px) {
#news .entry-header h1 {
	font-size: 24px;
  line-height: 1.5;
}
#content-header.news { background-image: url(/common/images/cover_news-sp-min.jpg); }
}
#news .entry-header { margin-top: 70px;}
#news .entry-header .news-date {
	padding-top: 10px;
	font-weight: 700;
}
#news .entry-header .news-date i {padding-left: 10px;}
.entry-text-b { margin: 70px 0 120px 0;}

#news a{
    color: #000;
}

#news a:hover {
    color: #db0025;
    text-decoration: none;
}

#news .archives-date-list {
    border-top: 1px solid #545251;
    padding: 20px;
}

h3.entryList__title {
    padding-top: 6px;
    font-size: 18px;
    line-height: 160%;
}

#news h5 {
    line-height: 1.6;
}
#news p {
    margin-bottom: 26px;
    line-height: 32px;
}

#news p a{
  word-break: break-all;
}

#news table、td、th {
border: 0px;
}


/* ソーシャル */
.fb_iframe_widget > span {
	vertical-align: baseline !important;
}
#news ul.sns {
    padding-top: 50px;
}
/* リストページ */
#news table p { margin:0; }
#news .table td { 
	border: none;
    padding: 20px 40px;
}
#news .pagination {
    margin: 50px auto;
    text-align: center;
    max-width: 500px;
}
.pagination a {
    color: #000;
    background-color: #FFF;
    border: 2px solid #000;
    padding: 14px 30px;
}


/* 会社
****************************** */
#content-header.company { background-image: url(/common/images/cover_company.jpg); }
#company.container{width:100%;}
@media (max-width: 768px) {
	#content-header.company { background-image: url(/common/images/cover_company-sp-min.jpg); }
}


/* ポリシー　
****************************** */
.common-policy .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* プライバシーポリシー */
#content-header.privacypolicy { background-image: url(/common/images/cover_privacy.jpg); }
#privacypolicy .entry-text-a h3:first-of-type { padding: 20px 0; }
#privacypolicy .entry-text-a h2 { padding: 100px 0 20px 0; }
#privacypolicy .entry-text-a ul { margin-bottom: 0; }
.entry-text-a table ul { margin-bottom: 0; }

/* セキュリティポリシー */
#content-header.security { background-image: url(/common/images/cover_security.jpg); }

/* コンプライアンス */
#content-header.compliance { background-image: url(/common/images/cover_compliance.jpg); }

/* deliverycriteria */
#content-header.deliverycriteria { background-image: url(/common/images/cover_compliance.jpg); }

/* quality policy */
#content-header.quality { background-image: url(/common/images/cover_quality.jpg); }

/* privacy policy */
#content-header.unsubscribe { background-image: url(/common/images/cover_privacy.jpg); }

/* security-checksheet */
#content-header.security-accessment-policy { background-image: url(/common/images/cover_compliance.jpg); }

.entry-text-a  {  padding: 120px 0 ; }
.entry-text-a h2 {  padding: 0 0 50px 0; }
.entry-text-a h3 { padding: 60px 0 20px 0; }
.entry-text-a h4 { padding: 20px 0 10px 0; }


/* error
****************************** */
#content-header.error { background-image: url(/common/images/cover_error.jpg); }
#content-header.error.form { background-image: url(/common/images/cover_errorform.jpg);}
@media (max-width: 768px) {
	#content-header.error { background-position: top left 3%; }
}

#error a { color: #000;}
#error a:hover {
    color: #db0025;
    text-decoration: none;
}
.erroricon { padding-top: 100px;}

/* TOP　*********************************************** */
/* common
****************************** */
#container.top .title-hidden {
  font-size: 0;
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
#container.top .section-title {
  font-size: 50px;
  color: #db0025;
  text-align: center;
}
@media screen and (max-width:414px) {
  #container.top .section-title {
    font-size: 40px;
  }
}
#container.top .section-title:after {
  font-size: 18px;
  content: attr(data-ruby);
  display: block;
  margin-top: 0.5em;
}
#container.top .section-caption {
  font-size: 14px;
  text-align: center;
  margin-top: 2em;
}
#container.top #cover .btn1 {
  padding: 190px 0 0 20px;
}
#container.top #service .btn1 {
  padding: 10% 0 0 0;
}
#container.top .btn1 a,
#blog-list .container .btn1 a{
  text-decoration: none;
  color: #fff;
  background: #db0025;
  display: inline-block;
  text-align: center;
  padding: 0.7em 80px 0.7em 80px;
  border: solid 2px #db0025;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
#container.top .btn1 a:hover,
#blog-list .container .btn1 a:hover{
  color: #db0025;
  background: #fff;
}
#container.top .btn1 a:after {
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: border 0.2s ease;
}
#container.top .btn1 a:hover:after { border-color: #db0025; }

@media screen and (max-width:991px) {
  #container.top #cover .btn1 {
    padding: 20% 0 0 0;
  }
  #container.top .btn1 a {
    padding: 0.7em 0;
    width: 90%;
}
}
@media screen and (max-width:889px) {
  #container.top #cover .btn1 {
    padding: 36% 0 0 0;
    text-align: center;
  }
}
@media screen and (max-width:767px) {
  #container.top #cover .btn1 {
    padding: 50% 0 0 0;
    text-align: center;
  }
}
@media screen and (max-width:526px) {
  #container.top #cover .btn1 {
    padding: 44% 0 0 0;
    text-align: center;
  }
}
@media screen and (max-width:411px) {
  #container.top #cover .btn1 {
    padding: 24% 0 0 0;
    text-align: center;
  }
}
@media screen and (max-width:360px) {
  #container.top #cover .btn1 {
    padding: 16% 0 0 0;
    text-align: center;
  }
}

/* カバー
****************************** */
#container.top #cover {
  backgroundcolor: #fff;
}
#container.top #cover .container {
  position: relative;
}
#container.top #cover .cover-container{
  width: 100%;
  rightpadding: 0px;
  左padding: 0px;
  margin-right: auto;
  margin-left: auto;
}

/* ニュース
****************************** */
#container.top #nwes {
  background: #231f20;
  padding: 30px 0 50px 0;
}
#container.top #nwes .text-box {
  color: #fff;
  max-width: 100%;
  width: 960px;
  padding: 10px 40px 10px 40px;
  margin: 0 auto;
  border-left: 3px solid #fff;
}
@media スクリーンと (max-width:991px) {
#container.top #nwes .text-box {
  左ボーダー: なし;
}
}
@media screen and (max-width:991px) {
#container.top #nwes .text-box {
  padding: 20px 40px 20px 40px;
}
}
#container.top #nwes .title {
  font-size: 70px;
  padding下部: 10px;
}
#container.top #nwes .news-list,
#container.top #nwes .news-list li {
  display: table;
  table-layout: fixed;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 3px;
}
#container.top #nwes .news-list li > span {
  display: table-cell;
  vertical-align: top;
}
#container.top #nwes .news-list li > span.date { width: 6em; }


#container.top #nwes .news-list a{
	color: #FFF;
	text-decoration: none;}
#container.top #nwes .news-list a:hover { color: #db0025; }


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

#container.top #nwes .news-list,
#container.top #nwes .news-list li {
	display: block;
	padding-top: 10px;
}
#container.top #nwes .news-list li {
	padding-top: 10px;
}
#container.top #nwes .text-box{
	position: static;
	transform: none;
	width: 100%;
}
}
@media screen and (max-width:889px) {
  #container.top #nwes .title {
    font-size: 62px;
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width:414px) {
  #container.top #nwes .title {
    font-size: 50px;
    text-align: center;
  }
  #container.top #nwes .text-box {
    padding: 10px 25px;
}
}
/* メッセージ　
******************************
#container.top #message {
	padding: 200px 0 150px;
	background: url('/common/images/bg_top-message.jpg');
    background-size: cover;
	background-position: center;
}
#container.top #message .container h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.25;
	margin:auto 70px 80px;
}
#container.top #message .container p {
	font-size: 20px;
	font-weight: 700;
	margin:auto 70px 50px;
}
@media screen と (max-width: 768px){
	#container.top #message {
 	   padding: 100px 0 50px;
	}
	#container.top #message .container h2 {
		font-size: 32px;
		margin: auto auto 40px;
	}
	#container.top #message .container p {
		font-size: 16px;
	    margin: auto auto 24px;
	}
}
*/

/* 統合
****************************** */
#container.top #integration {
	padding: 100px 0;
}

#container.top #integration .container h2 {
	font-size: 50px;
	font-weight: 700;
	text-align: center;
	line-height: 1.25;
	margin-bottom: 80px;
}

#container.top #integration .container h3 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	line-height: 1.25;
	color: #db0025;
	margin-bottom: 80px;
}
#container.top #integration .container img {
	width: 100%;
}

@media screen and (max-width: 768px){
	#container.top #integration {
 	   padding: 50px 0;
	}
	#container.top #integration .container h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}
	#container.top #integration .container h3 {
		font-size: 24px;
		margin-bottom: 40px;
	}
	#container.top #integration .container .lead {
		font-size: 16px;
	}
}

/* 解決
****************************** */
#container.top #solution {
	padding: 100px 0 60px;
	background: #ebeff2;
}
#container.top #solution .lead {
	text-align: center;
	margin-bottom: 70px;
}
#container.top #solution .row{
	align-items: stretch;
}
#container.top #solution .row .col-md-6{
	margin-bottom: 40px;
}
#container.top #solution .row .col-md-6:nth-child(2n-1) {
	padding-right: 20px;
}
#container.top #solution .row .col-md-6:nth-child(2) {
	padding-left: 20px;
}
#container.top #solution .row .col-md-6 .inner{
	background: #fff;
	height: 100%;
	padding: 50px 50px 70px; 
}
#container.top #solution .row .col-md-6 .image{
	text-align: center;
}
#container.top #solution .row .col-md-6 h5{
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
}
@media screen and (max-width: 768px){
	#container.top #solution {
		padding: 50px 0 35px;
	}
	#container.top #solution .container .lead {
		font-size: 16px;
    margin-bottom: 30px;
	}
	#container.top #solution .row .col-md-6{
		margin-bottom: 15px;
	}
	#container.top #solution .row .col-md-6 img{
		width: 100%;
	}
	#container.top #solution .row .col-md-6 .inner{
		padding: 20px 20px; 
	}
	#container.top #solution .row .col-md-6:nth-child(2n-1) {
		padding-right: 15px;
}
	#container.top #solution .row .col-md-6:nth-child(2) {
		padding-left: 15px;
	}
	#container.top #solution .row .col-md-6 h5{
		font-size: 20px;
    	margin-bottom: 16px;
	}
}

/* services
****************************** */
#container.top #service h3.logo {
	width:280px;
	padding-bottom: 10px;
}

#container.top #service {
  padding: 110px 0 100px;
    backgroundcolor: #f8f9fa;
}
@media screen and (max-width:768px) {
  #container.top #service {
  padding: 50px 0 70px;
  }
}

#container.top #service .row {
/*  margin-top: 50px; */
}
#container.top .service-inner {
    padding: 20px 10px 40px;
	text-align: center;
}
#container.top #service .text {
  max-width: 100%;
  padding: 10px 0px 0px 50px;
  margin: 0 auto;
}
#container.top #service .txt1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  margin: 2em 0 0;
}
#container.top #service .text {padding: 10px 0px 0px 0px;}

@media screen and (max-width:768px) {
#container.top .service-inner {
    margin-bottom: 18px;
}
}

/* #container.top #service .subtitle {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

#container.top #service .image img {
    box-shadow: -20px 20px 0px 0px #2a344b;
}

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

#container.top #service .text {
    padding: 10px;
}
#container.top .btn1 a {
    width: 100%;
}
}
#container.top #service h3.logo2 {
    width: 280px;
    padding-bottom: 10px;
    text-align: center;
    margin: 0 auto;
} */


/* 会社
****************************** */
#container.top #会社 {
  color: #fff;
  background: #db0025 url(/common/images/top_company_bg.png) no-repeat center top;
  background-size: cover;
  padding: 80px 0;
}
#container.top #company .section-title { color: #fff !important; }
#container.top #company .logo {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto 0;
}


/* services **************************************************** */
/* reason
****************************** */
#container.services #reason { padding: 160px 0 270px; }
@media only screen and (max-width: 767px){
  #container.services #reason { padding: 140px 0 120px; }
}
/* intro
****************************** */
#container.services #intro {
  font-size: 20px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
#container.services #intro .txt1 strong {
  font-size: 1.5em;
  color: #db0025;
  margin: 0 0.1em;
}

/* entry
****************************** */
#container.services #entry { margin-top: 170px; }
#container.services #entry.type-b { margin-top: 110px; }
@media only screen and (max-width: 767px){
	#container.services #entry { margin-top: 0; }
}
#container.services #entry .item { position: relative; }
#container.services #entry .item:nth-child(n+2) { margin-top: 200px;}
@media only screen and (max-width: 767px){
	#container.services #entry .item:nth-child(n+2) { margin-top: 60px;}
}
#container.services #entry .item:nth-of-type(3n),#container.services #entry .item:first-of-type { padding: 70px 0; }
#container.services #entry .item:nth-of-type(3n):before {
  background: #f7f7f7;
  display: block;
  content: "";
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#container.services #entry .item:first-of-type:before,
#container.services #entry .item:nth-of-type(5n):before {
  background: #f7f7f7;
  display: block;
  content: "";
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}


#container.services #entry .item .container {
  position: relative;
  z-index: 1;
}
#container.services #entry .item:nth-of-type(3n) .text、#container.services #entry .item:first-of-type .text { padding-right: 50px; }
#container.services #entry .item:nth-child(even) .text { padding-left: 50px; }
#container.services #entry .item .title,
#container.services #entry .items .title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

#container.services #entry .item .container {
  position: relative;
  z-index: 1;
}
#container.services #entry .item .txt1,
#container.services #entry .items .txt1 {
  font-size: 16px;
  line-height: 1.75;
  margin: 2em 0 0;
  letter-spacing: 0.05em;
}

#container.services #entry.type-b .item:nth-child(n+2) {
    margin-top: 80px;
    padding: 0;
}
#container.services #entry.type-b .item:nth-of-type(odd):before{
    background: #f7f7f7;
    display: block;
    content: "";
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
    right: unset;
}

#container.services #entry.type-b .item:nth-child(6):before{
  position: static;  
}

#container.services #entry.type-b .item:nth-of-type(odd){
    padding:0;
}
#container.services #entry.type-b .item-wrap {
    margin-top: 80px;
}
#container.services #entry.type-b .item:nth-of-type(odd) .text {
    padding-top: 104px;
}

@media screen and (max-width:768px) {
#container.services #entry .item:nth-of-type(3n) .text,
#container.services #entry .item:first-of-type .text { padding-right: 15px; }
#container.services #entry .item:nth-child(even) .text { padding-left: 15px; }
#container.services #entry .item .image { padding-top: 50px; }

}




/* 会社 *********************************************** */
#container.company.section-title { font-size: 50px; }
#container.company.section-title:after{
  font-size: 18px;
  display: block;
  content: attr(data-ruby);
  margin-top: 1em;
}

/* ビジョン
****************************** */
#container.company #vision {
  padding: 120px 0;
  background: url(/common/images/vision_bg.jpg) no-repeat left center;
  background-size: cover;
  position: relative;
}
#container.company #vision:after { 
  content: "";
  background-color: rgba(40, 47, 58, 0.82);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#container.company #vision .container {
  position: relative;
  z-index: 1;
  color:#fff;
}
#container.company #vision .section-title{ /* color: #db0025;*/ }
#container.company #vision .copy {
  font-size: 40px;
  margin-top: 0.75em;
}
#container.company #vision .txt1 {
  font-size: 16px;
  line-height: 2;
  margin-top: 2.5em;
}

/* identity
****************************** */
#container.company #identity {
  color: #fff;
  background: #db0025;
  padding: 170px 0 120px;
  position: relative;
}
#container.company #identity:before {
  background: url(/common/images/company_identity.jpg) no-repeat left center;
  background-size: cover;
  display: block;
  content: "";
  width: 65%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#container.company #identity .container {
  position: relative;
  z-index: 1;
}
#container.company #identity .text {
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  max-width: 475px;
  margin-left: auto;
}
#container.company #identity .txt1 {
  font-size: 14px;
  line-height: 2.285714285714286;
  margin-top: 3.5em;
}

/* corporate
****************************** */
#corporate { padding: 110px 0; }
#corporate .logo img { width: 680px; }

/* profile
****************************** */
#profile {
  color: #fff;
  background: #000;
  padding: 120px 0;
}
#profile a:hover {
    color: #FFF;
}
#profile .section-wrap {
  max-width: 700px;
  margin: 0 auto;
}
#profile .table-wrap { margin-top: 70px; }
#profile .table {
  font-size: 14px;
  color: #fff;
  margin-top: 60px;
}
#profile .table th,
#profile .table td { border-top: solid 1px #333; }
#profile .table tr:nth-child(1) th,
#profile .table tr:nth-child(1) td { border-top: none; }
#profile .table th {
  font-weight: 400;
  width: 10em;
  padding-left: 0;
}
#profile .table td dl { margin: 0; }
#profile .table td dt { font-weight: 400; }
#profile .table td dt:nth-of-type(n+2) { margin-top: 3em; }
#profile .table td dd { margin: 0; }

/* access
****************************** */
#access {
  color: #fff;
  background: #db0025;
  overflow: hidden;
}
#access .row .col-md-6 { position: relative; }
#access .row .title {
  font-size: 150px;
  line-height: 110px;
  margin: 0;
  position: absolute;
  top: 0;
  pointer-events: none;
}
#access .row:nth-child(odd) .title { left: 0; }
#access .row:nth-child(2) .title { right: 0; }
#access .row .title > span {
  display: inline-block;
}
#access .row:nth-child(odd) .title > span {
  transform-origin: left top;
  transform: rotate(-90deg) translateX(-100%);
}
#access .row:nth-child(2) .title > span {
  transform-origin: right bottom;
  transform:  translateY(-100%)rotate(-90deg);
}
#access .text .subtitle {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
#access .text .subtitle:after {
  display: block;
  content: "";
  width: 40px;
  margin: 20px 0 40px;
  border-top: solid 2px #fff;
}
#access .row:nth-child(odd) .text { padding: 80px 20px 80px 40px; }
#access .row:nth-child(2) .text { padding: 80px 180px 80px 20px; }
#access .text .txt1 {
  font-size: 16px;
  margin: 0;
}
#access .text .txt1 + .txt1 { margin-top: 3em; }
#access .map {
  height: 500px;
  position: relative;
}
#access .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* history
****************************** */
#history { padding: 140px 0; }
#history .section-wrap {
  max-width: 700px;
  margin: 0 auto;
}
#history .section-title { color: #db0025; }
#history .history-list { margin-top: 70px; }
#history .history-list dt {
  font-size: 20px;
  font-weight: 700;
  margin: 2em 0 0;
}
#history .history-list dd {
  font-size: 16px;
  margin: 0;
}


/* form
****************************** */
#personalinfo {
    font-size: 12px;
    color: #666666;
    margin: 20px auto;
    text-align: left;
    backgroundcolor: #FFF;
    overflow-y: scroll;
    padding: 10px;
    height: 100px;
    border: 1px solid #ddd;
}

@media screen and (max-width: 768px){
#personalinfo {
  width: 90%;
}
}


/* breadcrumb */
.breadcrumb-wrapper {
  background: #222;
}
@media only screen and (max-width: 767px) {
	.breadcrumb-wrapper {
		padding: 8px 0;
	}
}
.breadcrumb-wrapper .container {
  padding-left: 0;
  padding-right: 0;
  height: auto;
}
.breadcrumb-wrapper .container .nav-breadcrumb {
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper .container .nav-breadcrumb {
    margin: 0 10px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb {
  background: none;
  padding: 0.25rem 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb {
    flex-wrap: nowrap;
  }
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item {
    flex: 0 0 auto;
  	line-height: 1;
  }
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #fff;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-size: 8px;
    margin-left: 6px;
    rightpadding: 6px;
  }
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item a {
  color: #fff;
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #db0025;
}
.breadcrumb-wrapper .container .nav-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #8d8d8d;
}

#content-header.marketing .breadcrumb-wrapper、
#content-header.mp .breadcrumb-wrapper{
  height: auto;
}
#content-header.marketing .breadcrumb-wrapper>.container,
#content-header.mp .breadcrumb-wrapper>.container{
  height: auto;
  max-width: 100%;
  rightpadding: 10px;
}
#content-header.marketing .breadcrumb-wrapper .breadcrumb,
#content-header.mp .breadcrumb-wrapper .breadcrumb{
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #content-header.marketing .breadcrumb-wrapper .breadcrumb,
  #content-header.mp .breadcrumb-wrapper .breadcrumb{
    justify-content: flex-start;
}
  #content-header.marketing .breadcrumb-wrapper、
#content-header.mp .breadcrumb-wrapper{
  padding: 8px 0 15px;
	}
}

/*blog-list*/
#blog-list .container{
  padding-top: 80px;
  padding-bottom: 120px;
}

#blog-list .container .section-title{
  font-size: 50px;
  color: #212529;
  text-align: center;
}
#blog-list .container .section-title::after{
    font-size: 18px;
    content: attr(data-ruby);
    display: block;
    margin-top: 0.5em;
}
#blog-list .section-caption {
    font-size: 14px;
    text-align: center;
    margin-top: 2em;
}
#blog-list .list-blog .blog-item .card .card-body a { color: #212529; }
#blog-list .list-blog .blog-item .card .card-body a:hover { color: #db0025; }

#blog-list .container .btn {
  text-align: center;
  border: 2px solid #db0025;
  border-radius: 0;
  margin: auto;
  padding: 0;
}
#blog-list .container .btn a {
  color: #fff;
  background: #db0025;
  display: block;
  padding: 8px 20px;
}
#blog-list .container .btn a:after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-left: 12px;
}
#blog-list .container .btn a:hover {
  color: #db0025;
  background: #fff;
}
#blog-list .container .btn-wrapper {
  text-align: center;
}
#blog-list .container .btn-all .btn {
  border: 2px solid #212529;
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btn-all .btn {
    width: 80vw;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#blog-list .container .btn-all .btn a {
  background: #fff;
  color: #212529;
  padding: 30px 120px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btn-all .btn a {
    padding: 20px 90px;
  }
}
#blog-list .container .btn-all .btn:hover {
  border: 2px solid #db0025;
}
#blog-list .container .btn-all .btn:hover a {
  color: #db0025;
}

#blog-list .container .link-boxall {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  #blog-list .container .link-boxall {
    display: none;
  }
}
#blog-list .container .date-post {
  display: inline-block;
  background: #222;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  line-height: 1;
  margin: 0;
}

#blog-list .container .btm-link .list-cat, #blog-list .container .btm-link .list-tag, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag {
  background: #222;
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  padding: 10px 20px 0 32px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btm-link .list-cat, #blog-list .container .btm-link .list-tag, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag {
    padding: 5px 5px 0 28px;
  }
}
#blog-list .container .btm-link .list-cat:before, #blog-list .container .btm-link .list-tag:before, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag:before, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag:before, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag:before, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag:before, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag:before {
  display: inline-block;
  content: '\f07b';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  margin-right: 4px;
  position: absolute;
  top: 12px;
  left: 12px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btm-link .list-cat:before, #blog-list .container .btm-link .list-tag:before, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag:before, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag:before, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag:before, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag:before, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag:before {
    font-size: 10px;
    top: 10px;
    left: 10px;
  }
}
#blog-list .container .btm-link .list-cat .list-item, #blog-list .container .btm-link .list-tag .list-item, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item {
  display: inline-block;
  font-size: 14px;
  margin-left: 4px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btm-link .list-cat .list-item, #blog-list .container .btm-link .list-tag .list-item, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item {
    font-size: 12px;
    margin-left: 0;
  }
}
#blog-list .container .btm-link .list-cat .list-item:after, #blog-list .container .btm-link .list-tag .list-item:after, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item:after, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item:after, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item:after, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item:after, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item:after {
  content: '｜';
  color: #fff;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .btm-link .list-cat .list-item:after, .#blog-list .container .btm-link .list-tag .list-item:after, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item:after, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item:after, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item:after, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item:after, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item:after {
    margin-left: 0;
  }
}
#blog-list .container .btm-link .list-cat .list-item:last-child:after, #blog-list .container .btm-link .list-tag .list-item:last-child:after, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item:last-child:after, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item:last-child:after, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item:last-child:after, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item:last-child:after, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item:last-child:after {
  content: none;
}
#blog-list .container .btm-link .list-cat .list-item a, #blog-list .container .btm-link .list-tag .list-item a, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item a, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item a, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item a, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item a, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item a {
  color: #fff;
}
#blog-list .container .btm-link .list-cat .list-item a:hover, #blog-list .container .btm-link .list-tag .list-item a:hover, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item a:hover, .blog.entry .container .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item a:hover, .blog.entry #content-header.blog-entry .header-txt .header-link .container .btm-link .list-tag .list-item a:hover, .blog.entry .container #sec-entry .sidebar .stickey .btm-link .list-tag .list-item a:hover, .blog.entry #sec-entry .sidebar .stickey .container .btm-link .list-tag .list-item a:hover {
  color: #db0025;
}
#blog-list .container .btm-link .list-tag {
  margin-top: 0;
  padding: 5px 20px 15px 32px;
}
#blog-list .container .btm-link .list-tag:before {
  content: '\f02c';
}
#blog-list .container h3 a,
#blog-list .container .summary a {
  color: #212529;
}
#blog-list .container h3 a:hover,
#blog-list .container .summary a:hover {
  color: #db0025;
}
#blog-list .container a img:hover {
  opacity: 0.9;
}
#blog-list .container .card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9eded;
}
#blog-list .container .card .card-img {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
#blog-list .container .card .card-img img {
  height: auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 767px) {
#blog-list .container .card .card-img {
    border-radius: 8px 0px 0 0;
}
#blog-list .container .card .card-img img {
    height: 100%;
    width: auto;
}
}

#blog-list .container .list-blog {
  line-height: 1;
 padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
	#blog-list .container .list-blog {
	 padding-bottom: 30px;
}
}
#blog-list .container .list-blog .blog-item {
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card {
    flex-direction: row;
    padding-bottom: 4rem;
  }
#blog-list .container .list-blog .blog-item {
  margin-top: 40px;
}
}
@media only screen and (max-width: 320px) {
  #blog-list .container .list-blog .blog-item .card {
    padding-bottom: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card .card-img {
    flex: 0 0 auto;
    width: 35%;
    height: 30vw;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.125);
  }
}
#blog-list .container .list-blog .blog-item .card .card-body {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card .card-body {
    flex: 0 0 65%;
    max-width: 65%;
  }
}
#blog-list .container .list-blog .blog-item .card .card-body h3 {
  margin: 15px 15px auto 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 10rem;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card .card-body h3 {
    margin: 8px 8px auto 8px;
    font-size: 14px;
    min-height: unset;
    padding-bottom: 0;
  }
}
#blog-list .container .list-blog .blog-item .card .card-body .btm-link {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
#blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-cat .list-item, .#blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, #blog-list.entry .container .list-blog .blog-item .card .card-body .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item, #blog-list.entry #content-header.blog-entry .header-txt .header-link .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, .blog.entry .container .list-blog .blog-item .card .card-body #sec-entry .sidebar .stickey .btm-link .list-tag .list-item, .blog.entry #sec-entry .sidebar .stickey .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item {
  font-size: 12px;
  margin-left: 4px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-cat .list-item, #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, .blog.entry .container .list-blog .blog-item .card .card-body .btm-link #content-header.blog-entry .header-txt .header-link .list-tag .list-item, .blog.entry #content-header.blog-entry .header-txt .header-link .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item, .blog.entry .container .list-blog .blog-item .card .card-body #sec-entry .sidebar .stickey .btm-link .list-tag .list-item, .blog.entry #sec-entry .sidebar .stickey .container .list-blog .blog-item .card .card-body .btm-link .list-tag .list-item {
    margin-left: 0;
  }
}
#blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag {
  margin-top: 0;
  padding-bottom: 12px;
  padding-top: 4px;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag {
    min-height:3rem;
  }
}
#blog-list .container .list-blog .blog-item .card .card-body .btm-link .list-tag:before {
  content: '\f02c';
}
#blog-list .container .list-blog .blog-item .pc-slideup {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(50, 50, 50, 0.9);
  z-index: 10;
  transform: translateY(85%);
  opacity: 0;
  transition: all 300ms 0s ease;
}
@media only screen and (max-width: 767px) {
  #blog-list .container .list-blog .blog-item .pc-slideup {
    display: none;
  }
}
#blog-list .container .list-blog .blog-item .pc-slideup h4 {
  padding: 10px 10px;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}
#blog-list .container .list-blog .blog-item .pc-slideup .summary p {
  padding: 0 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
#blog-list .container .btn-wrapper {
  text-align: center;
}

#blog-list .container .list-blog .blog-item .pc-slideup .btn-wrapper {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
}
#blog-list .container .list-blog .blog-item:hover .pc-slideup {
  transform: translateY(0);
  opacity: 1;
}

#blog-list .container .btn1{
	margin:auto;
	text-align: center;
}
#blog-list.contents-blog .common_title h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
#blog-list.contents-blog .common_title h2 {
    padding-bottom: 0px;
}
}

#blog-list .container .btn_more a {
    color: #222;
    background: #FFF;
    display: block;
    max-width: 100%;
    width: 380px;
    padding: 1em;
    border: 2px solid #222;
    text-align: center;
    margin: 0 auto;
}
#blog-list .container .btn_more a:after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 12px;
}
#blog-list .container .btn_more a:hover {
    border: 2px solid #db0025;
}
#blog-list .container .btn_more a:hover {
    color: #db0025;
    background: #fff;
}

/* お問い合わせ・電子書籍フォーム
****************************** */
/* #content-header.contact-request,
#content-header.engagecros-contact,
#content-header.engagcros-ebook,
#content-header.ebook,
#content-header.partnerfoam,
#content-header.contact-widget,
#content-header.partnerfoam,
#content-header.sms-guide,
#content-header.sms-contact,
#content-header.sms-ebook, */
.cover_off #content-header {
  display: none;
}

/* #contact-request .entry-text-a,
#engagecros-contact .entry-text-a,
#engagcros-ebook .entry-text-a,
#ebook .entry-text-a,
#partnerfoam .entry-text-a,
#contact-widget .entry-text-a,
#sms-guide .entry-text-a,
#sms-contact .entry-text-a,
#sms-ebook .entry-text-a, */
.cover_off .entry-text-a{
 padding: 0 0 120px 0;
}

/* #contact-request p.section-title,
#engagecros-contact p.section-title,
#engagcros-ebook p.section-title,
#ebook p.section-title,
#partnerfoam p.section-title,
#contact-widget p.section-title,
#sms-guide p.section-title,
#sms-contact p.section-title,
#sms-ebook p.section-title,*/
.cover_off p.section-title {
  text-indent: -9999px;
}
.cover_off h3 {
    padding-bottom: 50px;
}

#contact-request #personalinfo{
  margin-top: 80px;
  max-width: 700px;
}
.form-contents {
    backgroundcolor: #eff4f7;
    padding: 50px 0;
    text-align: center;
    display: block;
}
.form-contents ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}
.form-contents li {
    line-height: 190%;
    margin: 0 auto;
    text-align: left;
}
.form-list li:before {
  content： '-';
  rightpadding: 0.5em;
  }
h4.form-title01 {
     font-weight: 600;
    padding: 40px 0 20px;
    text-align: center;
  }
h5.form-title02 {
    padding: 0px 0px 10px 0;
    text-align: center;
    font-weight: 600;
 }

.form-right { max-width: 500px; }
.form-right #personalwrap { margin-top: 80px; }
.contact-form--inner {
    position: relative;
}
#personalnote {
    /* text-align: center; */
    font-size: 12px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
}
.contact-form--inner .mktoButtonRow、
.form-right .mktoButtonRow{
    margin: 60px auto 0;
}
@media screen and (max-width: 768px){
#personalnote { width: 90%; }

}

/* KV_button(emailmarketing)
****************************** */
#content-header .btn-top a:hover {
    color: #db0025;
    background: #fff;
}
#contentヘッダー .btn-top a {
    text-decoration: none;
    color: #fff;
    background: #db0025;
    display: inline-block;
    text-align: center;
    padding: 1.3em 70px 1.3em 60px;
    border: solid 2px #db0025;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
    margin: 42px 0 0px;
    font-size: 100%;
    letter-spacing: 0.1em;
}
#content-header .btn-top a:after {
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: border 0.2s ease;
}
@media screen and (max-width: 768px){
  #content-header .btn-top a {
    padding: 0.8em 40px 0.8em 30px;
    margin: 20px 0;
    font-size: 100%;
    width: 100%;
  }
}


#container.company #service .section-title {
    color: #db0025;
    text-align: center;
}
#container.company #service{
    padding-top: 180px;
}
#container.company #service  {
    padding: 120px 0;
}
#container.company #service h3.logo2 img {
    padding: 0 20px;
}
#container.company #service .txt1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.875;
    margin: 2em 0 0;
}
#container.company #service .text {
    text-align: center;
}

#container.company #service .btn1 {
    padding: 10% 0 0 0;
}
#container.会社 #services .btn1 a {
    text-decoration: none;
    color: #fff;
    background: #db0025;
    display: inline-block;
    text-align: center;
    padding: 0.7em 80px 0.7em 80px;
    border: solid 2px #db0025;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}
#container.会社 #services .btn1 a:after {
    display: block;
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    transition: border 0.2s ease;
}
#container.company #service .btn1 a:hover {
    color: #db0025;
    background: #fff;
}
#container.company #service .btn1 a:hover:after {
    border-color: #db0025;
}
.service-info{
  text-align: center;
  padding-top: 70px;    
}
@media screen and (max-width: 991px){
#container.company #service .btn1 a {
    padding: 0.7em 0;
    width: 90%;
}
}

/* #container.company #service .card-wrap{
    margin-top: 70px;
}

#container.company #service .card{
   border: none;
  backgroundcolor: #f4f4f4;
   margin-top: 40px;
}
.card-wrap p {margin-bottom: 0.4rem;}
.card-body .arrow {
  text-align: right;
}
.card-body .arrow::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #db0025;
  margin-left: 12px;
}
.card-wrap a {
  color: #000;
    }
.card:hover {
    opacity: .5;
}
*/


#container.company .section-subtitle{
  font-size: 36px;
  padding-top: 90px;
}
#container.company.section-subtitle:after{
  font-size: 18px;
  display: block;
  content: attr(data-ruby);
  margin-top: 1em;
}
#container.company .table-inner{
  margin-top: 60px;
}
    
#container.company .line-dot { 
  text-align: center;
  padding-top: 40px;
}
#container.company.line-dot i {
  rightpadding: 20px;
  font-size: 10px;
}



.button-red a {
    text-decoration: none;
    color: #fff;
    background: #db0025;
    display: inline-block;
    text-align: center;
    padding: 0.5em 30px 0.5em 20px;
    border: solid 2px #db0025;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}
.button-red a:after {
   display: block;
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    transition: border 0.2s ease;
}
.button-red a:hover {
    color: #db0025;
    backgroundcolor: #fff;
}
.button-red a:hover::after {
    border-top: solid 1px #db0025;
    border-right: solid 1px #db0025;
}

/* 形状 */
.contact-request input[type=radio] {
    width: 15px;
    height: 15px;
    top: 12px;
    position: relative;
}
.mktoForm .mktoRadioList > label {
    padding: 10px 0 10px 10px; 
}
@media screen and (max-width: 768px){
.contact-request input[type=radio] { top: 12px!important; }
}

@media only screen and (max-width: 465px){
.contact-request input[type=radio] { top: 12px; }
}
/*　pr用 */
.pr-form {
    position: relative;
}
.pr-form .mktoButtonRow {
    padding-top: 80px;
}
.pr-form  #personalnote {
    bottom: 100px;
}


/* youtube */
.youtube-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.youtube-inner {
    position: relative;
    padding-top: 56.25%;
}
.youtube-inner {
    position: relative;
    padding-top: 56.25%;
}
iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/*　lineup */
#service-lineup {
    color: #fff;
    /* background: #eff4f7; */
    background:#6e7787;
    padding: 80px 0;
}
#service-lineup h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 60px;
}
#service-lineup .lineup-box {
    padding: 6px 20px;
}
#service-lineup a {
    color: #212529;
    font-weight: 600;
    background: #fff;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
    border: 2px solid #fff;
}
#service-lineup a:hover {
    color: #db0025;
    background-color: #fff;
    border: 2px solid #db0025;        
}

/* service-case */
#service-case {
    padding: 100px 0;
    text-align: center;
}
#service-case .title{
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 30px;
}
#service-case .case_box {
    padding: 10px 0 60px 0;
}
#service-case img {
    margin-top: 20px;
}

#service-case a,
.btn-type02 a {
    color: #222;
    background: #FFF;
    display: block;
    max-width: 100%;
    width: 440px;
    padding: 1em;
    border: 2px solid #222;
    text-align: center;
    margin: 0 auto;
}
#service-case a:after,
.btn-type02 a:after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 12px;
}
#service-case a:hover,
.btn-type02 a:hover {
    color: #db0025;
    background: #fff;
    border: 2px solid #db0025;
}

/* 事例ロゴスクロール用 */
#case-scrollbanners-section {
    padding: 24px 0;
}
#case-scrollbanners-section .text {
    font-size: 26px;
    /* color: #26a3b6; */
    text-align: center;
    line-height: 140%;
    letter-spacing: 0.1em;
    font-weight: 700;
}
#case-scrollbanners-section .note {
    text-align: center;
    font-size: 12px;
    margin: 0;
}
#case-scrollbanners.banners {
    padding: 20px 0;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
     #case-scrollbanners.banners {
        padding: 12px 0; } }
   #case-scrollbanners.banners .slide {
      position: relative;
      height: 65px; }
      @media screen and (max-width: 768px) {
       #case-scrollbanners.banners .slide {
          height: 39px; } }
     #case-scrollbanners.banners .slide .img {
        display: block;
        position: absolute;
        top: 0;
        width: 100vw;
        will-change: transform; }
     #case-scrollbanners.banners .slide-01 .img {
        width: 4720px;}
        @media screen and (max-width: 768px) {
         #case-scrollbanners.banners .slide-01 .img {
            width: 1243px; } }
     #case-scrollbanners.banners .slide-01 .img-01 {
       animation: slideBanners-01 240s linear 0s infinite forwards;
     }
     #case-scrollbanners.banners .slide-01 .img-02 {
       animation: slideBanners-01 240s linear -60s infinite; /* 遅延時間も比例して調整 */
     }
     #case-scrollbanners.banners .slide-01 .img-03 {
       animation: slideBanners-01 240s linear -120s infinite; /* 遅延時間も比例して調整 */
     }
     #case-scrollbanners.banners .slide-01 .img-04 {
       animation: slideBanners-01 240s linear -180s infinite; /* 遅延時間も比例して調整 */
     }
     #case-scrollbanners.banners .slide-02 {
        margin-top: 35px; }
        @media screen and (max-width: 768px) {
         #case-scrollbanners.banners .slide-02 {
            margin-top: 15px; } }
       #case-scrollbanners.banners .slide-02 .img {
          width: 4040px; }
          @media screen and (max-width: 768px) {
           #case-scrollbanners.banners .slide-02 .img {
              width: 1256px; } }
       #case-scrollbanners.banners .slide-02 .img-01 {
         animation: slideBanners-02 240s linear 0s infinite forwards;
       }
       #case-scrollbanners.banners .slide-02 .img-02 {
         animation: slideBanners-02 240s linear -60s infinite; /* 遅延時間も比例して調整 */
       }
       #case-scrollbanners.banners .slide-02 .img-03 {
         animation: slideBanners-02 240s linear -120s infinite; /* 遅延時間も比例して調整 */
       }
       #case-scrollbanners.banners .slide-02 .img-04 {
         animation: slideBanners-02 240s linear -180s infinite; /* 遅延時間も比例して調整 */
       }
@keyframes slideBanners-01 {
  0% {
    transform: translateX(300%); }
  100% {
    transform: translateX(-100%); } }
@keyframes slideBanners-02 {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(300%); } }


/* パんくず　*/
.breadcrumb-wrapper2 .breadcrumb {
    background-color: unset;
    font-size: 12px;
    padding: 20px 0;
}
.breadcrumb-wrapper2 .breadcrumb-item.active { color: #000; }
.breadcrumb-wrapper2 a{ color: #000; }

.breadcrumb-wrapper2.white .breadcrumb-item.active { color: #fff; }
.breadcrumb-wrapper2.white a{ color: #fff; }
.breadcrumb-wrapper2.white .breadcrumb-item+.breadcrumb-item::before{ color: #d9d9d9;}