@charset "UTF-8";
/*----------
 会社概要
----------*/
.page .company {
	width: 880px;
    margin: 0 auto;
    padding: 80px 0 100px 0;
}
.company .list-item {
    display: table;
    width: 100%;
    letter-spacing: 0;
}
.company .list-item:last-child dt {
    border-bottom: 1px solid #d7d7d7;
}
.company .list-item dt, 
.company .list-item dd {
    display: table-cell;
    vertical-align: top;
}
.company .list-item dt {
    width: 28%;
    border-top: 1px solid #d7d7d7;
}
.company .list-inner {
    padding: 29px 0;
}
.company .list-text, 
.company .list-description {
    line-height: 2em;
	margin-bottom: 0;
}
.company .list-item dd {
    width: 72%;
    padding-left: 58px;
}
.company .list-item dd .list-inner {
    border-top: 1px solid #d7d7d7;
}
.company .list-item:last-child dd .list-inner {
    border-bottom: 1px solid #d7dde0;
}
.company .list-group:not(:last-child) {
    margin-bottom: 34px;
}
.company .list-group-head {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    width: 120px;
    margin-bottom: 0;
}
.company .list-group-text {
    display: inline-block;
    vertical-align: top;
    margin-left: 23px;
    list-style-type: none;
    margin-bottom: 0;
}

@media (max-width: 991px) {
	.page .company {
		width: 100%;
	}
	.company .list-group-head {
		display: block;
		margin-bottom: 10px;
	}
	.company .list-group-text {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.page .company {
		padding: 50px 0 0 0;
	}
	.company .list-item dt, 
	.company .list-item dd {
		display: block;
		width: 100%;
	}
	.company .list-item dd {
		padding: 0;
	}
	.company .list-item dd .list-inner {
		border-top: none;
		padding: 0 10px 15px 10px;
	}
	.company .list-inner {
		padding: 15px 0;
	}
	.company .list-text {
		background: #f7f7f7;
		padding: 0 10px;
	}
	.company .list-item:last-child dt {
		border-bottom: none;
	}
	.company .list-group:not(:last-child) {
		margin-bottom: 20px;
	}
}


/*----------
 サイトマップ
----------*/
#sitemap {
	width: 880px;
	margin: 0 auto;
	padding: 80px 0 40px 0;
}
#sitemap li {
    border-left: none;
}
#sitemap > ul > li {
	margin-bottom: 50px;
}
#sitemap > ul > li > a {
	font-weight: bold;
	font-size: 20px;
	border-bottom: solid 1px #d7d7d7;
	display: block;
	padding: 10px 30px 10px 5px;
	margin-bottom: 20px;
	position: relative;
}
#sitemap > ul > li > a:after {
	line-height: 1;
	font-family: 'Material Icons';
	content: "\e5cc";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 900;
	font-size: 90%;
}
#sitemap > ul > li > ul {
	padding-left: 20px;
	box-sizing: border-box;
}
#sitemap > ul > li > ul > li  {
	margin: 10px 0
}
#sitemap > ul > li > ul > li > a {
	padding: 10px 10px 10px 15px;
	position: relative;
	display: block;
}
#sitemap > ul > li > ul > li > a:before {
	content: "-";
	position: absolute;
	left: 0;
	top: 0.6em;
	font-weight: bold;
}
#sitemap .meta-box {
    display: none;
}

@media (max-width: 991px) {
	#sitemap {
		width: 100%;
	}
}
@media (max-width: 767px) {
	#sitemap {
		padding: 50px 0 0 0;
	}
	#sitemap > ul > li > a {
		font-size: 16px;
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	#sitemap > ul > li {
		margin-bottom: 25px;
	}
	#sitemap > ul > li > ul > li {
		margin: 0;
	}
}


/*----------
 お問い合わせ
----------*/
.page .contact {
	width: 880px;
    margin: 0 auto;
    padding: 40px 0;
}
.contact ul {
	text-align: center;
	margin-bottom: 30px;
}
.contact ul li {
	display: inline-block;
	margin: 20px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	border: solid 1px #ccc;
	position: relative;
	box-sizing: border-box;
}
.contact ul li.active {
	background: #026da5;
	color: #fff;
	border: none;
}
.contact ul li:not(:last-child):after {
	line-height: 1;
	font-family: 'Material Icons';
	content: "\e5cc";
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	color: #000;
	font-weight: 900;
}
.fa-asterisk:before {
	font-family: 'Material Icons';
	content: "\e1eb";
	font-size: 70%;
	font-style: normal;
	display: inline-block;
	color: #c0392b;
	margin-right: 2px;
}
.fa-asterisk.not:before {
	color: transparent;
}
.contact > p:first-of-type {
	padding-bottom: 30px;
	border-bottom: solid 1px #ccc;
	margin-bottom: 30px;
	font-size: 18px;
}
.contactForm dl {
    display: table;
    width: 100%;
}
.contactForm dt, 
.contactForm dd {
    display: table-cell;
    box-sizing: border-box;
    vertical-align: top;
}
.contactForm dt {
	width: 25%;
	padding: 20px 0;
	font-weight: bold;
}
.contactForm dd {
	width: 75%;
	padding: 20px 0;
}
.contactForm dd input,
.contactForm dd textarea {
	background: #f7f7f7;
	border: none;
	outline: none;
	padding: 20px;
}
.contactForm dd textarea {
	width: 100%;
}
.contactForm dd input::-webkit-input-placeholder,
.contactForm dd textarea::-webkit-input-placeholder {
	color: #999;
}
.contactForm dd input::-moz-placeholder,
.contactForm dd textarea::-moz-placeholder {
	color: #999;
}
.contactForm dd input:-ms-input-placeholder,
.contactForm dd textarea:-ms-input-placeholder {
	color: #999;
}
.contactForm .tx_center {
    text-align: center;
	margin-top: 50px;
    margin-bottom: 15px;
}
.contactForm .tx_center input[type="submit"] {
    border: 0;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    background: #026da5;
    color: #fff;
    font-size: 110%;
    padding: 20px 40px;
    margin: 0 10px;
	outline: none;
    cursor: pointer;
}
.contactForm .tx_center input[type="submit"]:hover {
    filter: alpha(opacity=60);
    opacity: .6;
}
.contactForm .tx_center input[name="submitBack"] {
	background: #666;
}
.page-id-194 #breadcrumb li:last-child,
.page-id-194 #breadcrumb li:nth-child(2) i:last-child,
.page-id-196 #breadcrumb li:last-child,
.page-id-196 #breadcrumb li:nth-child(2) i:last-child{
	display: none;
}

@media (max-width: 991px) {
	.page .contact {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.page .contact {
		padding: 30px 0 0 0;
	}
	.contact ul li {
		width: 80px;
		height: 80px;
		line-height: 80px;
		margin: 0 15px;
	}
	.contact ul li:not(:last-child):after {
		right: -23px;
	}
	.contactForm dl {
		display: block;
		margin-bottom: 20px;
	}
	.contactForm dt, 
	.contactForm dd {
		display: block;
	}
	.contactForm dt {
		width: 100%;
		padding: 0;
		font-weight: bold;
	}
	.contactForm dd {
		width: 100%;
		padding: 10px 0;
	}
	.contactForm dd input,
	.contactForm dd textarea {
		width: 100%;
	}
	.contactForm .tx_center input[type="submit"] {
		margin: 0;
	}
	.contactForm .tx_center input[name="submitConfirm"],
	.contactForm .tx_center input[name="mwform_submitButton-291"] {
		padding: 20px;
		width: 100%;
		box-sizing: border-box;
		margin: 20px 0 0 0;
	}
	.contactForm .tx_center {
		text-align: left;
		padding: 0 15px;
	}
}

/*----------
 投稿一覧ページ
----------*/
#main .main_ttl {
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 15px;
}
#list {
	border-top: solid 1px #d7d7d7;
	border-bottom: solid 1px #d7d7d7;
	margin-bottom: 40px;
	padding: 15px 0;
}
#list div[id^=tile-] .meta {
	border: none;
	padding: 0;
	color: #999;
	margin: 10px 0;
}
#list div[id^=tile-] h2 {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
}
#list div[id^=tile-] .toc a {
	display: block;
}
#list div[id^=tile-] .toc a:hover {
	text-decoration: none;
}
#list div[id^=tile-] .toc a:hover h2 {
	color: #026da5;
}
#list div[id^=tile-] .term {
	max-width: 290px;
	max-height: 163px;
	overflow: hidden;
	margin: 0 auto;
}
#list div[id^=tile-] .term img {
	margin-bottom: 10px;
	transition: .3s ease-in-out;	
}
#list div[id^=tile-] .toc a:hover img {
    transform: scale(1.1);
    opacity: 1;
}
#list .toc {
    margin: 0;
}
.pagination>.active>span, 
.pagination>li>a:hover {
    background: #026da5;
	text-decoration: none;
}

@media (max-width: 575px) {
	#main .main_ttl {
		font-size: 26px;
		font-size: 2.6rem;
		margin-bottom: 10px;
	}
}

/*----------
 サイドバー
----------*/
#side h4 {
	background: #e7e7e7;
	padding: 10px;
	text-align: center;
	font-size: 20px;
	font-size: 2.0rem;
}
#side ul {
	margin-bottom: 40px;
}
#side .side_box ul li {
	clear: both;
	margin-bottom: 20px;
}
#side .side_box ul li a {
	display: block;
	overflow: hidden;
}
#side .side_box ul li a span {
	float: right;
	margin-left: 10px;
	width: 100px;
    height: 100px;
}
#side ul li a:hover {
	text-decoration: none;
}
#side .side_box ul li a:hover img {
	transform: scale(1.1);
	opacity: 1;
}
#side .side_box ul li a div {
	font-weight: bold;
	line-height: 150%;
}
#side .side_cat_box ul li {
	border-bottom: solid 1px #d7d7d7;
}
#side .side_cat_box ul li a {
	display: block;
	padding: 21px 0;
	font-weight: bold;
	position: relative;
}
#side .side_cat_box ul li a:after {
	line-height: 1;
	font-family: 'Material Icons';
	content: "\e5cc";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 900;
	font-size: 90%;
}
#side .side_cat_box h4 {
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	#side #core {
		padding-top: 0;
		padding-bottom: 0;
	}
	#section #core {
		padding-bottom: 0;
	}
	#side .side_box ul li a div {
		font-size: 16px;
		font-size: 1.6rem;
	}
}

/*----------
 投稿シングルページ
----------*/
.post h1.entry-title {
	font-weight: bold;
}
.post .meta {
	border-top: solid 1px #d7d7d7;
	font-size: 16px;
	font-size: 1.6rem;
	color: #999;
	margin-bottom: 10px;
}
.post .meta-box,
.post .meta .fa-tag {
    display: none;
}
.post .meta .date {
	margin-right: 20px;
	margin-bottom: 10px;
	display: inline-block;
}
.post .meta .taxs {
	display: block;
}
.post .meta .taxs a {
	color: #fff;
	text-decoration: none;
	background: #026da5;
	padding: 0 15px;
	line-height: 35px;
	display: inline-block;
	font-size: 92%;
}
.post .single_thum {
	margin-bottom: 45px;
	text-align: center;
}
hr {
    border-top: solid 1px #d7d7d7;
}
#pnavi img {
    border: none;
    border-radius: 0;
}
#pnavi a:hover {
    color: #026da5;
}
#pnavi a:hover img {
	transform: scale(1.1);
    opacity: 1;
}
#pnavi a span {
	width: 100px;
	height: 100px;
	overflow: hidden;
	display: inline-block;
}
#pnavi .prev span {
	float: left;
	margin: 0 10px 0 0;
}
#pnavi .next span {
	float: right;
	margin: 0 0 0 10px;
}
#related .toc {
    border-top: none;
}
#related-box h2 {
	font-weight: bold;
	background: #e7e7e7;
	padding: 10px;
	text-align: center;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: inherit;
}
#related .toc a {
	display: block;
	overflow: hidden;
}
#related .term img {
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    float: right;
    margin: 0;
    max-width: 100%;
}
#related .term {
	width: 100px;
	height: 100px;
	overflow: hidden;
	display: block;
	float: right;
	margin: 8px 0 8px 10px;
	max-width: 40%;
}
#related a:hover img {
	transform: scale(1.1);
    opacity: 1;
}
#related .excerpt p {
	display: none;
}
#related h3 {
	margin: 10px 0;
}
#related a:hover {
	color: #026da5;
	text-decoration: none;
}
#related .term,
#related .toc {
    margin-right: 0;
}

@media (min-width: 1200px) {
	#related {
		overflow: hidden;
	}
	#related .toc {
		width: 48%;
		float: left;
	}
	#related .toc:nth-child(2n) {
		margin-left: 4%
	}
}
@media (max-width: 575px) {
	.post h1.entry-title {
		font-size: 22px;
		font-size: 2.2rem;
	}
}

/*----------
 サービス・セミナー
----------*/
.sub_page .service_list li:last-child {
	margin-right: 10px;
}
.sub_page .service_list li:nth-child(2n) {
	margin-right: 0;
}
.seminar .service_list li .thumb {
	background: #fff;
}	
.seminar .service_list li .sub_txt {
	font-weight: normal;
	padding: 0 8%;
}
.seminar .service_list li .thumb {
	top: 190px;
	padding: 30px 0;
}
.seminar .service_list li h3 {
	margin-bottom: 20px;
}	
.seminar .service_list li p {
	margin-bottom: 5px;
}
@media (min-width:1200px) {
	.sub_page .service_list li {
		width: 49%;
		height: 530px;
	}
	.sub_page .service_list li h3 {
		font-size: 26px;
		font-size: 2.6rem;
	}
	.service .service_list li span {
		display: inline;
	}
	.service .service_list li .thumb {
		top: 130px;
	}
	.service .service_list li .btn {
		bottom: 25px;
	}
	.sub_page.seminar .service_list li {
		height: 440px;
	}
}
@media (min-width: 1200px) and (max-width: 1309px) {
	.service .service_list li {
		height: 470px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.service_list li {
		height: 440px;
	}
	.seminar .service_list li {
		height: 460px;
	}
	.seminar .service_list li .thumb {
		top: 210px;
	}
}
@media (max-width:991px) {
	.sub_page {
		padding-top: 40px;
	}
	.seminar .service_list li .thumb {
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		width: 85.5%;
		display: block;
		margin-top: 20px;
	}
}


/*----------
 SEO・リスティングセミナー
----------*/
.page .seminar_sub {
	width: 1100px;
    margin: 0 auto;
    padding: 20px 0 40px 0;
    box-sizing: border-box;
}
.seminar_sub .seminar_list {
	padding: 50px;
}
.seminar_sub .seminar_list:nth-child(odd) {
	background: #f7f7f7;
}
.seminar_sub .seminar_list:nth-child(even) {
	background: #e7e7e7;
}
.seminar_sub .seminar_list dt {
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.seminar_sub .seminar_list:nth-child(odd) .pict {
	float: right;
	width: 40%;
}
.seminar_sub .seminar_list:nth-child(odd) dl {
	float: left;
	width: 55%;
}
.seminar_sub .seminar_list:nth-child(even) .pict {
	float: left;
	width: 40%;
}
.seminar_sub .seminar_list:nth-child(even) dl {
	float: right;
	width: 55%;
}

@media (max-width: 1199px) {
	.page .seminar_sub {
		width: 100%;
		padding: 20px 0 0 0;
	}
}
@media (max-width: 991px) {
	.seminar_sub .seminar_list:nth-child(odd) .pict,
	.seminar_sub .seminar_list:nth-child(odd) dl,
	.seminar_sub .seminar_list:nth-child(even) .pict,
	.seminar_sub .seminar_list:nth-child(even) dl {
		display: block;
		width: 100%;
	}
	.seminar_sub .seminar_list dl {
		margin-bottom: 30px;
	}
}
@media (max-width: 575px) {
	.seminar_sub .seminar_list {
		padding: 20px;
	}.seminar_sub .seminar_list dt {
		font-size: 24px;
		font-size: 2.4rem;
	}
}

/*----------
 AI宣伝ラボ
----------*/
body.page-id-2921 .header_ttl {display: none;}
body.page-id-2921 #breadcrumb {background: none;color: #222;padding: 5px 0;}
body.page-id-2921 #breadcrumb a {color: #222;}
.ai-image_page p {margin: 0;}
.ai-image_page .btn_box {
	background: #222;
	display: flex;
	align-items: center;
	padding: 2rem 5rem;
	margin: 5rem 0;
}
.ai-image_page .btn_box .ttl {
	color: #FFF;
	font-size: 3rem;
}
.ai-image_page .btn_box .btn {
	margin-left: auto;
	width: 35.6%;
}
.ai-image_page .btn_box .btn a {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 1.5rem;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .5rem;
}
.ai-image_page .btn_box .btn a:hover {
	color: #000;
	opacity: .8;
	transition: .3s;
}
.ai-image_page .cta_box .txt_box {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.ai-image_page .cta_box .txt_box h2 {
	font-size: 4.5rem;
	padding-top: 7rem;
	margin-bottom: 5rem;
}
.ai-image_page .cta_box .txt_box h2.pageTtl {font-size: 7rem;}
.ai-image_page .cta_box .txt_box .txt {
	font-size: 1.8rem;
	margin-bottom: 4rem;
}
.ai-image_page .cta_box .txt_box .btn a {
	display: inline-block;
	border: solid 1px #000;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 1rem 2.5rem;
	line-height: 1.5;
	min-width: 200px;
}
.ai-image_page .cta_box .txt_box .btn a:hover {
	background: #000;
	color: #FFF;
	transition: .3s;
}
.ai-image_page .sec_box {margin: 10rem 0;}
.ai-image_page .flex_wrap li .img_box {text-align: center;}
.ai-image_page h3.secTtl {
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 5rem;
}
.ai-image_page ul li h4.listTtl {
	padding: 0;
	border-left:  0;
	font-size: 2rem;
	font-weight: bold;
	margin: 3rem 0 2rem 0;
}
.ai-image_page .service h3 span {
	display: block
	;font-size: 2.4rem;
	line-height: 1.5;
	padding-top: 1rem;
}
.ai-image_page .flex_wrap,
.ai-image_page .support ul {
	width: 90%;
	margin: 0 auto;
}
.ai-image_page .note_txt {
	text-align: center;
	color: #F00;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 5rem;
}
@media (min-width:768px) {
	.ai-image_page .cta_box {
		display: flex;
		justify-content: space-between;
	}
	.ai-image_page .cta_box .img_box {width: 60%;}
	.ai-image_page .cta_box .txt_box {
		width: 40%;
		padding-right: 6%;
	}
	.ai-image_page .flex_wrap {
		display: flex;
		flex-wrap: wrap;
	}
	.ai-image_page .flex_wrap li {width: calc((100% - 7rem) / 3);}
	.ai-image_page .flex_wrap li:not(:nth-child(3n)) {margin-right: 3.5rem;} 
	.ai-image_page .features .flex_wrap li .img_box {height: 24rem;}
	.ai-image_page .service .flex_wrap li .img_box {height: 40rem;}
	.ai-image_page .flex_wrap li .img_box {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.ai-image_page .flex_wrap li .img_box  img {object-fit: contain;}
	.ai-image_page .support ul li {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.ai-image_page .support ul li:nth-child(odd) {flex-direction: row-reverse;}
	.ai-image_page .support ul li picture {width: 45%;}
	.ai-image_page .support ul li .txt_box {width: 55%;padding: 0 4rem;}
}
@media (max-width:767px) {
	.ai-image_page .btn_box {
		padding: 2rem;
		margin: 3rem 0 0 0;
	}
	.ai-image_page .btn_box .ttl {
		font-size: 2.2rem;
		width: 50%;
	}
	.ai-image_page .btn_box .btn {
		width: 50%;
		max-width: 250px;
	}
	.ai-image_page .btn_box .btn a {
		font-size: 1.5rem;
		padding: 1rem;
		background: #FFF;
	}
	.ai-image_page .cta_box .txt_box h2 {
		font-size: 3.4rem;
		padding-top: 3.5rem;
		margin-bottom: 2.5rem;
	}
	.ai-image_page .cta_box .txt_box h2.pageTtl {font-size: 5.3rem;}
	.ai-image_page .cta_box .txt_box .txt {
		font-size: 1.7rem;
		margin-bottom: 2rem;
	}
	.ai-image_page .cta_box .txt_box .btn a {
		font-size: 1.5rem;
		margin-bottom: 3.5rem;
	}
	.ai-image_page .sec_box {
		margin: 7rem 0;
		padding-left: 15px;
		padding-right: 15px;
	}
	.ai-image_page h3.secTtl {
		font-size: 2.7rem;
		margin-bottom: 2.5rem;
	}
	.ai-image_page ul li h4.listTtl {
		font-size: 1.8rem;
		margin: 2rem 0 1.5rem 0;
	}
	.ai-image_page .flex_wrap li + li {margin-top: 3rem;}
	.ai-image_page .service h3 span {font-size: 1.8rem;}
	.ai-image_page .note_txt {
		font-size: 1.7rem;
		max-width: 82.666%;
		margin: 3rem auto 0 auto;
	}
	.ai-image_page .cta_box .txt_box {padding: 0 15px;}
	.ai-image_page .support ul li img {display: block;margin: 0 auto;}
}
@media (max-width: 575px) {
	body.page-id-2921 .grid {padding-left: 0;padding-right: 0;}
}