@charset "UTF-8";

/*--------------------------- 
　　　ページ共通 
--------------------------- */
#page-title {
	text-align: center;
	padding: 60px 0 100px;
}
#page-title h1 {
	font-size: 4.0rem;
	color: #084C82;/*青*/
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.5;
	margin-bottom: 0.2em;
}
#page-title .title {
	font-size: 4.0rem;
	color: #084C82;/*青*/
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.5;
	margin-bottom: 0.2em;
}
#page-title h3 {
	display: block;
	font-weight: 600;
	margin-top: -10px;
	color: #4A93CF;/*青2*/
}
.contents {
	padding: 150px 0;
}
.more_btn {
	margin-top: 80px;
}
.more_btn a {
	display: block;
	text-align: center;
	border: solid 2px #084C82;/*青*/
	padding: 15px;
	max-width: 250px;
	margin: 0 auto;
	border-radius: 25px;
	color: #084C82;/*青*/
	letter-spacing: 0.15em;
	font-weight: 500;
}
.t-contents-title {
	margin-bottom: 80px;
}
.t-contents-title h4 span{
	display: inline-block;
	font-size: 5.0rem;
	color: #084C82;/*青*/
	font-weight: 800;
	letter-spacing: 0.03em;
}
.t-contents-title h2 {
	display: block;
	font-weight: 400;
	margin-top: -10px;
	color: #4A93CF;/*青2*/
}

@media screen and (max-width: 850px) {
	#page-title {
		padding: 60px 0 60px;
	}
	#page-title h1 {
		font-size: 3.0rem;
	}
	#page-title .title {
		font-size: 2.8rem;
	}
	#page-title h3 span {
		font-size: 1.6rem;
	}
	.t-contents-title {
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 500px) {
	.more_btn a:hover {
		background-color: #084C82;/*青*/
		color: #fff;
	}
	
}
@media screen and (min-width: 850px) {
	body.home {
		background: url("../img/top/bg.jpg") center #fff;
	}
	.flex-box {
		display: flex;
		justify-content: space-between;
	}
}
/*--------------------------- 
　　　トップページリンク
--------------------------- */
#banner-link {
	padding: 30px 0 20px;
	box-sizing: border-box;
	background-color: #fff;
}
#banner-link ul.banner_list li {
	margin-bottom: 10px;
	text-align: center;
}
#banner-link ul.banner_list li a img {
	width: 100%;
	height: auto;
	max-width: 600px;
	border: solid 1px #084C82;/*青*/
}
@media screen and (min-width: 850px) {
	#banner-link {
		padding: 50px 0 40px;
	}
	#banner-link ul.banner_list {
	}
	#banner-link ul.banner_list li a:hover {
		opacity: .6;
	}
}
/*--------------------------- 
　　　メインビジュアル
--------------------------- */
#main-visual {
	position: relative;
	width: 100%;
	min-height: 500px;
	height: calc(100% - 150px);
}
#main-visual .container {
	position: relative;
	max-width: 1300px;
	height: 100%;
}
.bg-video_pc {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	background-attachment: fixed; 
	background-position: center center; 
	background-size: cover; 
	min-height: 100%;
	width: 100%;
	z-index: 0;
	background-color: #fff;
	border-radius: 30px;
	overflow: hidden;
	border: dashed 3px #084C82;/*青*/
	object-fit: contain;
}
.bg-video_sp{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 850px) {
	#main-visual {
		height: auto;
		min-height: auto;
		margin-top: 15px;
	}
	
	.bg-video_pc {
		display: none!important;
	}
}

@media screen and (min-width: 850px) {
	#main-visual {
		max-height: 850px;
		min-height: 500px;
	}
	.bg-video_sp {
		display: none;
	}
}
@media screen and (min-width: 1200px) {
	#main-visual {
		min-height: 800px;
	}
}
/*--------------------------- 
　　　ABOUT
--------------------------- */
#t-about {
	position: relative;
}
#t-about h3 {
	text-align: center;
	color: #084C82;/*青*/
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
#t-about p {
	width: 100%;
	max-width: 800px;
	margin: 60px auto 0;
}
#t-about ul {
	display: flex;
	width: 100%;
	max-width: 800px;
	margin: 50px auto 0;
	flex-wrap: wrap;
	justify-content: space-between;
}
#t-about ul li {
	width: 48%;
	margin-bottom: 15px;
}
#t-about ul li a {
	position: relative;
	display: block;
	color: #084C82;/*青*/
	padding: 15px;
	line-height: 1.3;
	box-sizing: border-box;
	border: solid 2px #084C82;/*青*/
}
#t-about ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: solid 2px #084C82;/*青*/
	border-right: solid 2px #084C82;/*青*/
	transform: translateY(-50%) rotate(45deg);
}
#t-about ul li a:hover {
	background-color: #084C82;/*青*/
	color: #fff;
}
#t-about ul li a:hover::after {
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
@media screen and (max-width: 850px) {
	#t-about {
		padding-top: 80px;
	}
}
@media screen and (max-width: 500px) {
	#t-about h3 {
		font-size: 5vw;
	}
	#t-about ul li a {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 850px) {
	#t-about ul li {
		width: 24%;
	}
}
/*--------------------------- 
　　　私たちについて
--------------------------- */
h2.index {
	font-size: 2.5rem;
	color: #084C82;/*青*/
	padding: 0 0.5em;
	box-sizing: border-box;
	border-bottom: solid 2px #084C82;/*青*/
	border-left: solid 5px #084C82;/*青*/
	margin-bottom: 30px;
}
#page-about .wrap h3{
	text-align: center;
	color: #084C82;/*青*/
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}
#page-about .flex-box .nnn_image {
	text-align: center;
}
#page-about .member ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#page-about .member ul li {
	width: 48%;
	margin-bottom: 20px;
}
#page-about .member ul li .text {
	margin-top: 10px;
}
#page-about .member ul li p {
	font-size: 1.4rem;
	line-height: 1.5;
	
}
#page-about .member ul li span {
	font-size: 1.2rem;
	color: #084C82;/*青*/
}
#page-about .member ul li h5 {
	font-size: 2.0rem;
	font-weight: 500;
}

#page-about .member_jarea {
	margin-top: 80px;
}
#page-about .member_jarea h5 {
	font-size: 2.0rem;
	font-weight: 500;
}
#page-about .member_jarea span {
	font-size: 1.2rem;
	color: #084C82;/*青*/
}
#page-about .member_jarea .image {
	width: 100%;
	max-width: 250px;
}
#page-about .member_jarea .text a {
	text-decoration: underline;
}
#page-about .member_jarea .text a:hover {
	text-decoration: none;
}
#page-about .jarea_overview {
	width: 100%;
	max-width: 800px;
	margin: 60px auto 0;
	border-collapse: collapse;
}
#page-about .jarea_overview tr {
	border-bottom: solid 1px #084C82;/*青*/
}
#page-about .jarea_overview th,
#page-about .jarea_overview td {
	padding: 15px;
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 1.4rem;
}
#page-about .jarea_overview th {
	text-align: right;
	color: #084C82;/*青*/
}
@media screen and (max-width: 850px) {
	#page-about .flex-box .nnn_image {
		margin-bottom: 20px;
	}
	#page-about .member_jarea {
		text-align: center;
	}
	#page-about .member_jarea .image {
		margin: 0 auto;
	}
	#page-about .member_jarea .text {
		margin-top: 20px;
	}
}
@media screen and (max-width: 500px) {
	#page-about .wrap h3 {
		font-size: 5vw;
	}
	#page-about .jarea_overview th {
		white-space: nowrap;
	}
}
@media screen and (min-width: 850px) {
	#page-about .wrap h3{ 
		margin-bottom: 60px;
	}
	#page-about .flex-box .nnn_image {
		width: 120px;
	}
	#page-about .flex-box .nnn_text {
		width: calc(100% - 170px);
	}
	#page-about .member ul li {
		width: 23%;
	}
	#page-about .member_jarea {
		justify-content: center;
		align-items: center;
	}
	#page-about .member_jarea .text {
		margin-left: 40px;
	}
	#page-about .jarea_overview th,
	#page-about .jarea_overview td {
		font-size: 1.6rem;
	}
}
/*--------------------------- 
　　　WORKS
--------------------------- */

#t-works {
	padding-bottom: 80px;
	background-color: #E4EFF8;
}
#t-blog {
	background-color: #f1ed5e;/*黄色*/
	background-color: #fff;
}
#t-works .t-contents-title,
#t-blog .t-contents-title {
	position: relative;
	top: -50px;
}
#t-blog .more_btn {
	padding-bottom: 100px;
}
.works-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.works-list li {
	width: 50%;
}
#t-works .works-list li a,
#page-works .works-list li a{
	position: relative;
	display: block;
	overflow: hidden;
	padding-top: 100%;
}
#t-blog .works-list li a{
	position: relative;
	display: block;
	overflow: hidden;
}
#t-works .works-list li a img,
#page-works .works-list li a img,
#t-blog .works-list li a img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
}
#page-blog .works-list li a img {
	width: 100%;
	height: auto;
}
.works-list li a .mask {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	padding: 30px;
	text-align: right;
	color: #fff;
	box-sizing: border-box;
	background-color: rgba(74,147,207,0.7);
	transition: 0.5s ease;
}
.works-list li a .mask time {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 0.5em;
	letter-spacing: 0.03em;
}
.works-list li a .mask .cat {
	font-size: 1.4rem;
	margin-bottom: 0.4em;
	letter-spacing: 0.03em;
}
.works-list li a .mask .tag {
	margin-bottom: 0.5em;
}
.works-list li a .mask .tag span {
	display: inline-block;
	white-space: nowrap;
	font-size: 1.2rem;
	
	margin-left: 0.3em;
	letter-spacing: 0.03em;
}
.works-list li a .mask .works-title {
	font-size: 1.8rem;
	line-height: 1.3;
}
@media screen and (min-width: 850px) {
	.works-list li {
		width: 25%;
	}
	.works-list li a:hover .mask {
		left: 0;
	}
}
/*制作実績カテゴリー一覧*/
.works_cat {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 40px;
	padding-top: 50px;
}
.works_cat li {
	min-width: 120px;
	margin-bottom: 10px;
}
.works_cat li a {
	display: block;
	padding: 0.5em 0.8em;
	margin: 0 5px;
	font-weight: 500;
	border: solid 1px #084C82;/*青*/
	color: #084C82;/*青*/
	font-size: 1.3rem;
	text-align: center;
	box-sizing: border-box;
	border-radius: 30px;
	background-color: #fff;
}
.works_cat li a.current {
	background-color: #084C82;/*青*/
	color: #fff;
}
.works_cat li a:hover {
	background-color: #084C82;/*青*/
	color: #fff;
}
#works {
	background-color: #E4EFF8;/*水色*/
}
#works .works-list,
#t-blog .works-list {
	width: 95%;
	margin: 0 auto;
}
#works .works-list li,
#t-blog .works-list li {
	margin-bottom: 15px;
	width: calc(50% - 1%);
}
@media screen and (min-width: 550px) {
	.works_cat li {
		min-width: 130px;
	}
}
@media screen and (min-width: 850px) {
	#works .works-list li,
	#t-blog .works-list li {
		width: calc(25% - 20px);
		margin-bottom: 30px;
	}
	#works .works-list:before {
		content: "";
		display: block;
		width: calc(25% - 20px); 
		height: 0;
		order: 1;  
	}
	#works .works-list::after {
		content: "";
		display: block;
		width: calc(25% - 20px);
		height: 0;
	}
	.works_cat {
		width: 90%;
	}
	.works_cat li {
		min-width: 160px;
	}
	.works_cat li a {
		font-size: 1.6rem;
	}
	
}
/*記事一覧ページネーション*/
.pagenavi {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 2.0rem;
}
.wp-pagenavi {
	display: inline-block;
	margin: 0 auto;
}
.wp-pagenavi span {
	display: inline-block;
	text-align: center;
}
.wp-pagenavi a{
	transition: .6s;
	display: inline-block;
	text-align: center;
	font-weight: 500;
}
.wp-pagenavi a:hover{
	color: #084C82;/*青*/
	text-decoration: none;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi .extend {
	margin-left: 10px;
}
.wp-pagenavi .first {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #B2B2B2;
	border: none;
	font-weight: 500;
	
}
.wp-pagenavi .last {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #B2B2B2;
	border-radius: 25px;
	border: none;
	font-weight: 500;
}
.wp-pagenavi .previouspostslink {
	margin-left: 10px;
	width: 50px;
	height: 50px;
	border-radius: 25px;
}
.wp-pagenavi .current {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #084C82;/*青*/
	border: none;
	font-weight: 500;
}
.wp-pagenavi .page {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #B2B2B2;
	border: none;
	font-weight: 500;
}
.wp-pagenavi .previouspostslink {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #B2B2B2;
	border: none;
}
.wp-pagenavi .nextpostslink {
	line-height: 45px;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	color: #B2B2B2;
	border: none;
}
@media (max-width: 850px) {
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .first,
	.wp-pagenavi .last,
	.wp-pagenavi .current,
	.wp-pagenavi .page,
	.wp-pagenavi .prevpostslink,
	.wp-pagenavi .nextpostslink	{
		line-height: 35px;
		width: 30px;
		height: 40px;
	}
	
}
/*--------------------------- 
　　　WORKS 詳細
--------------------------- */
#single-works article {
	margin-bottom: 20px;
	border-bottom: solid 2px #4A93CF;/*青2*/
}
#single-works article .text .article_time {
	font-size: 1.4rem;
	margin-bottom: 20px;
}
#single-works article .text .cat {
	font-size: 1.9rem;
	font-weight: 500;
	color: #4A93CF;/*青2*/
	margin-bottom: 10px;
}
#single-works article .text h2 {
	color: #084C82;/*青*/
	margin-bottom: 0.5em;
	line-height: 1.5;
}
#single-works article .text .copy {
	letter-spacing: 0.03em;
	margin-bottom: 20px;
}
#single-works article .text .copy span{
	line-height: 2;
	font-size: 2.0rem;
	padding: 5px 0;
	background-color: #E4EFF8;
	background:linear-gradient(#fff 50%, #E4EFF8 0%);
}
#single-works article .text p {
	margin-bottom: 1em;
}
#single-works article .text .tag {
	font-size: 1.4rem;
	color: #666666;
	margin-bottom: 20px;
	line-height: 1.3;
}
#single-works article .text .tag span {
	
}
#single-works article .text .tag span:not(:last-child) {
	margin-right: 0.5em;
}
#single-works article .text .url a{
	display: block;
	border-top: solid 1px #666666;
	border-bottom: solid 1px #666666;
	color: #666666;
	padding: 20px 0;
	word-break: break-all;
	line-height: 1.3;
}
#single-works article .text .url a:hover {
	text-decoration: underline;
}
#single-works article .image ul li {
	margin-bottom: 30px;
}
.contact_link {
	text-align: center;
}
.contact_link p {
	margin-bottom: 15px;
}
.contact_link a {
	position: relative;
	display: block;
	background-color: #4A93CF;/*青2*/
	color: #fff;
	padding: 15px 10px 25px;
	overflow: hidden;
}
.contact_link a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #084C82;/*青*/
	transform: translateX(-100%);
	transition: 0.3s ease;
}
.contact_link a:hover::after {
	transform: translateX(0);
}

.contact_link a h2 {
	position: relative;
	font-size: 3.5rem;
	letter-spacing: 0.1em;
	z-index: 1;
}
.contact_link a h4 {
	position: relative;
	margin-top: -15px;
	font-weight: 400;
	z-index: 1;
}
.post-links {
	display: flex;
	justify-content: space-between;
}
.post-links.works {
	display: block;
	margin-top: 30px;
}
.post-links.works .post-link {
	width: 100%;
}
.post-links.works .post-link a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	padding: 10px;
	box-sizing: border-box;
}
.post-links.works .post-link-prev a {
	border-left: solid 30px #4A93CF;/*青2*/
}
.post-links.works .post-link-next a {
	border-right: solid 30px #4A93CF;/*青2*/
}
.post-links.works .post-link-prev a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -14px;
	width: 7px;
	height: 7px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	transform: translate(-50%) rotate(-45deg);
	z-index: 5;
}
.post-links.works .post-link-next a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -22px;
	width: 7px;
	height: 7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translate(-50%) rotate(45deg);
	z-index: 5;
}
.post-links.works .post-link .image {
	width: 40%;
}
.post-links.works .post-link .text {
	width: 55%;
}
.post-links.works .post-link .text p {
	line-height: 1.3;
}
.post-links.works .post-link .text p.copy {
	font-size: 1.2rem;
	color: #084C82;/*青*/
	margin-top: 0.2em;
}
.post-links.works .post-link .text p.disc {
	color: #646464;
	font-size: 1.2rem;
	margin-top: 0.2em;
}
.post-links.works .post-link .text time {
	display: inline-block;
	font-size: 1.2rem;
	margin-bottom: 0.3em;
}
.post-link a:hover {
	opacity: .6;
}

@media screen and (max-width: 850px) {
	#single-works article .text {
		margin-bottom: 30px;
	}
	.post-link {
		width: 15px;
	}
	.contact_link a h2 {
		margin-bottom: 0.3em;
	}
	.post-links.works .post-link-prev {
		margin-bottom: 10px;
	}
}
@media screen and (min-width: 850px) {
	#single-works article{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	#single-works article .image {
		width: 61%;
	}
	#single-works article .text {
		width: 35%;
	}
	.post-links.works .post-link .text p.copy {
		font-size: 1.4rem;
	}
	.post-links.works {
		display: flex;
		justify-content: space-between;
		margin-top: 80px;
	}
	.post-links.works .post-link {
		width: 48%;
	}
}
/*--------------------------- 
　　　BLOG 
--------------------------- */
#t-blog .works-list li {
	margin-bottom: 20px;
}
#t-blog .works-list li .text {
	color: #084C82;/*青*/
}
#t-blog .works_item time,
#page-blog .works_item time {
	font-size: 1.4rem;
}
#t-blog .works_item h2,
#page-blog .works_item h2 {
	margin-top: 0.3em;
	font-size: 1.6rem;
	line-height: 1.3;
}

#t-blog .works_item .image {
	position: relative;
	transition: .3s ease;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
}
#t-blog .works_item .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%) scale(2);
}
#page-blog .works-list li .text {
	color: #084C82;/*青*/
}
#page-blog #works {
	padding-top: 50px;
}
#t-blog .works_item .image,
#page-blog .works_item .image {
	margin-bottom: 10px;
	transition: .3s ease;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 52.5%;
}
#page-blog .works_item .image {
	
}
#t-blog .works_item .image img,
#page-blog .works_item .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
}
@media screen and (min-width: 850px) {
	
	#t-blog .works_item time,
	#page-blog .works_item time {
		font-size: 1.6rem;
	}
	#t-blog .works_item h2,
	#page-blog .works_item h2 {
		font-size: 2.0rem;
	}
	#t-blog .works_item a:hover .image {
		opacity: .6;
	}
	#t-blog .works_item a:hover .text {
		color: #084C82;/*青*/
	}
	#page-blog .works_item a:hover .image {
		opacity: .6;
	}
	#page-blog .works_item a:hover .text {
		color: #084C82;/*青*/
	}
}
/*--------------------------- 
　　　BLOG 詳細
--------------------------- */
#single-blog article {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	margin-bottom: 20px;
	border-bottom: solid 2px #4A93CF;/*青2*/
}
#single-blog .article_time {
	margin-bottom: 15px;
}
#single-blog .article_thumb {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 52.5%;
	overflow: hidden;
}
#single-blog .article_thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
}
#single-blog .article_body {
	margin: 30px 0;
}
#single-blog .article_body h2 {
	line-height: 1.3;
	margin: 2.5em 0 1.5em;
	padding: 0.3em 0 0.3em 0.4em;
	font-size: 2.0rem;
	border-left: solid 10px #4A93CF;/*青2*/
	border-bottom: solid 1px #4A93CF;/*青2*/
	background-color: #E4EFF8;
}
#single-blog .article_body h3 {
	position: relative;
	margin: 1em 0 1em;
	padding-bottom: 0.2em;
	/*padding-left: 20px;*/
	color: #084C82;/*青*/
	line-height: 1.3;
	border-bottom: solid 1px #084C82;/*青*/
}
#single-blog .article_body ul {
	background-color: #FFF28E;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 10px;
}
#single-blog .article_body ul.ez-toc-list {
	background-color: transparent;
	padding: 0;
}
#single-blog .article_body ul.ez-toc-list-level-3 {
	background-color: transparent;
	padding: 0;
}
#single-blog .article_body ul li {
	font-size: 1.4rem;
	line-height: 1.3;
	color: #084C82;/*青*/
}
#single-blog .article_body ul li::before {
	content: "●";
}
#single-blog .article_body ul.ez-toc-list  li::before {
	content: "";
}

#single-blog .article_body ul li:not(:last-child) {
	margin-bottom: 0.5em;
}
#single-blog .article_body figure {
	margin-block-end: 2em; 
}
#single-blog .article_body figcaption {
	font-size: 1.2rem;
	color: #646464;
}
#single-blog .article_body h4 {
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	margin-bottom: 1em;
	font-weight: bold;
}
#single-blog .article_body p {
	margin-bottom: 1.5em;
}
#single-blog .article_body a {
	color: #084C82;/*青*/
	text-decoration: underline;
}
#single-blog .article_body a:hover {
	text-decoration: none;
	opacity: .6;
}
#single-blog .article_title {
	letter-spacing: 0.03em;
	margin-bottom: 15px;
	font-weight: 600;
}
#single-blog .article_title span {
	line-height: 2;
	font-size: 2.2rem;
	padding: 5px 0;
	background-color: #E4EFF8;
	background: linear-gradient(#fff 50%, #E4EFF8 0%);
}
#single-blog .post-links {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
@media screen and (min-width: 850px) {
	#single-blog .article_title {
		font-size: 2.4rem;
		text-align: center;
	}
	#single-blog .article_title span {
		font-size: 3.0rem;
	}
	#single-blog .article_time {
		text-align: center;
		margin-bottom: 30px;
	}
	#single-blog .article_body h2 {
		font-size: 2.4rem;
	}
	#single-blog .article_body h3::before {
		top: 11px;
	}
	#single-blog .article_body h4 {
		font-size: 1.6rem;
	}
	#single-blog .article_body ul li {
		font-size: 1.6rem;
	}
}

/*--------------------------- 
　　　ブログカード
--------------------------- */
/* ブログカード シンプルデザイン*/
.blog-card-long {
	margin: 0 0 1.8rem;
}
.card-link {
  display: block;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  padding: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: #555;
  font-weight: bold;
  text-decoration: none !important;
  position: relative;
}
.card-link:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  color: #888;
  text-decoration: none;
  transform: translateY(-2px);
}
.blog-card-label-long{
	z-index: 1;
	display: inline-block;
    position: absolute;
	background-color: #f99f48;
    top: 10px;
	left: 10px;
	max-width: 120px;
	height: 25px;
	padding: 0 0.5rem;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    line-height: 25px;
    transform-origin: 50% 50%;
    animation: animScale 3.5s ease-out;
}

.card-link .blogcard-text {
	display: block;
	padding: 15px 13px;
	line-height: 1.6;
}
.card-link img {
	width: 100%;
}
.longcard-link {
	margin-bottom: 2.5em;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.longcard-link img {
	padding: 10px 10px 0;
	box-sizing: border-box;
}
.longcard-img{
	position: relative;
}
.blogcard-title {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4;
	display: -webkit-box;
    -webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-card-excerpt-long {
	padding-top: .8em;
    font-size: .8em;
    line-height: 1.4;
	font-weight: normal;
    opacity: .8;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
    text-overflow: ellipsis;
}
@media only screen and (min-width: 480px) {
	.card-link {
    	display: inline-block;
    	max-width: 310px;
    	margin-right: 20px;
 	}
	.longcard-link {
    	max-width: 100%;
    	display: table;
  	}
  	.longcard-img,
  	.card-link.longcard-link .blogcard-content {
    display: table-cell;
    vertical-align: middle;
  }
  .longcard-img {
	  width: 40%;
  }
  .blogcard-content {
    width: 60%;
  }
  .longcard-img img {
    width: 100%;
    padding: 10px;
  }
}
@media only screen and (min-width: 850px) {
	.longcard-img {
		width: 300px;
	}
	.blogcard-content {
		width: calc(100% - 300px);
	}
}
@media screen and (max-width: 480px){
	
}

/*--------------------------- 
　　　WEB
--------------------------- */
#t-web h3 {
	color: #084C82;/*青*/
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
#t-web p {
	margin: 60px 0 0;
}
#t-web .image {
	text-align: center;
}

@media screen and (min-width: 850px) {
	#t-web .image {
		width: 50%;
	}
	#t-web .text {
		width: 48%;
	}
	#t-web .more_btn a{
		margin: 0 0 0 auto;
	}
}
/*--------------------------- 
　　　WEB制作
--------------------------- */
#page-web .wrap h3 {
	color: #084C82;/*青*/
	font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	line-height: 1.6;
	text-align: center;
}
#page-web .comparison {
	max-width: 850px;
	margin: 0 auto;
}
#page-web .comparison .design h4 {
	background-color: #084C82;/*青*/
	color: #fff;
	width: 100%;
	padding: 0.4em 0;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 10px;
}
#page-web .comparison .design:first-child {
	margin-bottom: 50px;
}
#page-web h3.title {
	position: relative;
	text-align: center;
	line-height: 1.3;
	font-size: 3.8rem;
}
#page-web .point h6,
#page-web .comparison h6 {
	text-align: center;
	font-size: 2.0rem;
	color: #084C82;/*青*/
}
#page-web .point h3.title {
	position: relative;
	max-width: 330px;
	margin: 0 auto 40px;
	text-align: center;
}
#page-web .comparison h3.title {
	position: relative;
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}
#page-web .point h3::before,
#page-web .comparison h3::before{
	content: "";
	position: absolute;
	bottom: 5px;
	left: -5px;
	width: 2px;
	height: 70%;
	background-color: #084C82;/*青*/
	transform: rotate(-20deg);
}
#page-web .point h3::after,
#page-web .comparison h3::after{
	content: "";
	position: absolute;
	bottom: 5px;
	right: 0;
	width: 2px;
	height: 70%;
	background-color: #084C82;/*青*/ 
	transform: rotate(20deg);
}
#page-web .point ul li {
	display: flex;
	font-size: 1.8rem;
	color: #084C82;/*青*/ 
	font-weight: 500;
	line-height: 1.3;
	align-items: center;
	border: solid 2px #084C82;/*青*/
	border-radius: 10px;
	margin-bottom: 20px;
}
#page-web .point ul li .image {
	width: 120px;
}
#page-web .point ul li .text {
	width: calc(100% - 120px);
	padding-right: 20px;
	box-sizing: border-box;
}
#page-web #plan {
	padding: 50px 0;
	background-color: #E4EFF8;/*水色*/
}
table.simple {
	background-color: #fff;
}
table.simple th,
table.simple td{
	border: solid 1px #084C82;/*青*/
	padding: 1em 0.5em;
	font-size: 1.4rem;
	line-height: 1.3;
	box-sizing: border-box;
	text-align: center;
}
table.simple th {
	color: #084C82;/*青*/
	background-color: rgba(8,76,130,0.3);
}
@media screen and (max-width: 850px) {
	#page-web .comparison h3 span {
		display: block;
	}
	#page-web h3.title {
		font-size: 3.6rem;
	}
	#page-web .wrap .intro .image {
		text-align: center;
	}
	
}
@media screen and (max-width: 500px) {
	
}

@media screen and (min-width: 850px) {
	#page-web .wrap h3 {
		text-align: left;
		margin-bottom: 60px;
		line-height: 2;
	} 
	#page-web .wrap h3.text_center {
		text-align: center;
	}
	#page-web .point ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#page-web .point ul li {
		width: 48%;
		font-size: 2.0rem;
	}
	#page-web .comparison .design {
		width: 48%;
	}
	#page-web .comparison .design h4 {
		padding: 0.2em 0;
	}
	#page-web #plan {
		padding: 100px 0;
	}
	table.simple th,
	table.simple td{
		font-size: 1.6rem;
		padding: 1em;
	}
}

#page-web #plan h3 {
	text-align: center;
}
#page-web .wrap .underline {
	text-align: center;
	margin-bottom: 30px;
}
#page-web .wrap .underline h3{
	display: inline;
	margin-left: auto;
	margin-right: auto;
	line-height: 2;
	background-color: #E4EFF8;
	background:linear-gradient(#E4EFF8 50%, #ffff00 0%);
}
#page-web .wrap .backline {
	text-align: center;
	margin-bottom: 30px;
}
#page-web .wrap .backline h3 {
	display: inline;
	margin-left: auto;
	margin-right: auto;
	line-height: 2;
	background-color: #E4EFF8;
	font-size: 2.0rem;
	background:linear-gradient(#E4EFF8 50%, #E4EFF8 0%);
}
#page-web .wrap h5 {
	position: relative;
	font-size: 2.0rem;
	color: #084C82;/*青*/
}
#page-web .wrap h5::before {
	content: "●";
	color: #084C82;/*青*/
}
#page-web .plan-box {
	border: solid 2px #084C82;/*青*/
	padding: 20px;
	background-color: #fff;
	box-sizing: border-box;
}
#page-web .plan-box h3 {
	margin-bottom: 20px;
}
#page-web .plan-box h3 span {
	font-size: 1.6rem;
}
#page-web .plan-box p {
	margin-bottom: 20px;
}
#page-web .plan-box p span {
	font-size: 2.0rem;
	font-weight: 500;
	color: #084C82;/*青*/
}
#page-web .plan-box .plan_name {
	border-bottom: solid 2px #084C82;/*青*/
	padding-bottom: 0.4em;
}
#page-web .plan-box .plan_name span {
	font-size: 2.5rem;
	line-height: 1.3;
}
#page-web .plan-box .more_btn {
	margin-top: 30px;
}
#page-web .plan-comparison {
	margin-top: 40px;
	background-color: #fff;
}
#page-web .plan-comparison tr:not(:first-child) th {
	white-space: nowrap;
}
#page-web .plan-comparison th,
#page-web .plan-comparison td{
	position: relative;
	border: solid 1px #084C82;/*青*/
	padding: 1em;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.4rem;
}
#page-web .plan-comparison .red {
	color: red;
	font-size: 2.5rem;
}
#page-web .plan-comparison th {
	color: #084C82;/*青*/
	line-height: 1.3;
}
#page-web .plan-comparison .template {
	position: relative;
}
#page-web .plan-comparison .template::after {
	content: "おすすめ！";
	position: absolute;
	top: -31px;
	left: 0;
	width: 100%;
	text-align: center;
	background-color: #084C82;/*青*/
	color: #fff;
	padding: 0.5em 0.5em 0.4em;
	box-sizing: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
}

/*テンプレート*/
#page-web .template-image .image {
	text-align: center;
}
#page-web .template-image h4 {
	color: #084C82;/*青*/
	font-size: 2.0rem;
	margin-top: -20px;
}
#page-web .template-image p {
	text-align: left;
}
ul.page-list {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	border: solid 1px #084C82;/*青*/
	background-color: #fff;
}
ul.page-list li {
	display: flex;
	padding: 10px 0;
	font-size: 1.6rem;
	line-height: 1.3;
}
ul.page-list li span {
	display: block;
	font-weight: 500;
	font-size: 1.6rem;
	width: 30px;
	min-width: 30px;
	text-align: center;
	color: #084C82;/*青*/
}
table.plan-contents {
	max-width: 700px;
	margin: 0 auto;
	background-color: #fff;
}
table.plan-contents th,
table.plan-contents td{
	border: solid 1px #084C82;/*青*/
	padding: 1em;
	text-align: left;
	line-height: 1.3;
	font-size: 1.4rem;
	box-sizing: border-box;
}
table.plan-contents th {
	color: #084C82;/*青*/
	white-space: nowrap;
}
table.plan-contents .bg {
	text-align: center;
	background-color: rgba(8,76,130,0.2);
}
#page-web .box {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px 20px;
	box-sizing: border-box;
	text-align: center;
	border: solid 1px #084C82;/*青*/
}
#page-web .box h3 {
	display: inline-block;
	margin-top: -40px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-right: 0.5em;
	padding-left: 0.5em;
	background-color: #E4EFF8;/*水色*/
}
.text_center {
	text-align: center;
}

@media screen and (max-width: 850px) {
	
	#page-web .plan-comparison th {
		text-align: left;
	}
	#page-web .plan-comparison .osusume {
		width: 60px;
		left: 0;
		bottom: 10px;
	}
	#page-web .box h3 {
		margin-top: -50px;
		font-size: 2.0rem;
		line-height: 1.3;
	}
	#page-web .box p {
		text-align: left;
	}
	#page-web .plan-box:first-child {
		margin-bottom: 30px;
	}
	#page-web .plan-box .plan_name span {
		display: block;
	}
	#page-web .template-image .image {
		margin-bottom: 30px;
	}
	#page-web .template-image p {
		text-align: center;
	}
}
@media screen and (max-width: 500px) {
	#page-web .plan-comparison th,
	#page-web .plan-comparison td {
		padding: 10px;
	}
	#page-web .box h3 {
		font-size: 1.6rem;
	}
	#page-web .template-image p {
		text-align: left;
	}
}
@media screen and (min-width: 850px) {
	#page-web .intro .image{
		width: 50%;
	}
	#page-web .intro .text{
		width: 48%;
	}
	#page-web .plan-box {
		width: 48%;
	}
	#page-web .wrap .underline {
		margin-bottom: 30px;
	}
	#page-web .plan-comparison {
		margin-top: 60px;
	}
	#page-web .plan-comparison th,
	#page-web .plan-comparison td {
		font-size: 1.6rem;
	}
	#page-web .plan-comparison .template::after {
		top: -35px;
	}
	/*テンプレート*/
	#page-web .template-image .image{
		width: 32%;
	}
	#page-web .template-image_design {
		justify-content: center;
	}
	#page-web .template-image_design .image{
		width: 40%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	table.plan-contents th,
	table.plan-contents td{
		font-size: 1.6rem;
	}
	#page-web #plan p.center {
		text-align: center;
	}
	ul.page-list li {
		font-size: 2.2rem;
	}
	ul.page-list li span {
		min-width: 50px;
		font-size: 2.4rem;
	}
}
/*--------------------------- 
　　　サービスリスト
--------------------------- */
ul.service-list li {
	padding: 20px;
	box-sizing: border-box;
	border: solid 1px #084C82;/*青*/	
	margin-bottom: 30px;
}
ul.service-list li img {
	margin: 5px 0 10px;
}
ul.service-list li h4 {
	color: #084C82;/*青*/
	font-size: 2.0rem;
	margin-bottom: 0.5em;
	line-height: 1.3;
}
ul.service-list li p {
	line-height: 1.5;
}
ul.service-list li a {
	position: relative;
	display: block;
	background-color: #084C82;/*青*/
	color: #fff;
	border: solid 2px #084C82;/*青*/
	margin-top: 0.7em;
	padding: 0.7em 1.7em 0.7em 1em;
	font-size: 1.4rem;
	box-sizing: border-box;
	border-radius: 10px;
	line-height: 1.3;
}
ul.service-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 500px) {
	ul.service-list {
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	ul.service-list li{
		width: 48%;	
		
	}
}
@media screen and (min-width: 850px) {
	ul.service-list::after {
		content: "";
		display: block;
		width: 32%;
	}
	ul.service-list li{
		width: 32%;
		padding: 30px;
	}
	ul.service-list li a:hover {
		background-color: #fff;
		color: #084C82;/*青*/
	}
	ul.service-list li a:hover::after {
		border-top: solid 1px #084C82;/*青*/
		border-right: solid 1px #084C82;/*青*/
	}
}
/*--------------------------- 
　　　プライバシーポリシー
--------------------------- */

#page-privacy-policy table th {
	font-size: 1.8rem;
	color: #084C82;/*青*/
	text-align: left;
	line-height: 1.5;
}
#page-privacy-policy table td {
	line-height: 1.5;
	padding-bottom: 30px;
	font-size: 1.4rem;
}
@media screen and (min-width: 850px) {
	#page-privacy-policy table th {
		font-size: 2.0rem;
	}
	#page-privacy-policy table td {
		font-size: 1.6rem;
	}
}
/*--------------------------- 
　　　お問い合わせ
--------------------------- */
#page-contact .wrap {
	padding: 80px 0 150px;
	background-color: #E4EFF8;/*水色*/
}
#page-contact p.sentence {
	max-width: 900px;
	margin: 0 auto 30px;
}
.contact_form {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
	border-collapse: collapse;
}
.contact_form th {
	width: 35%;
	padding: 12px 0;
	color: #084C82;/*青*/
}
.contact_form td {
	width: 65%;
	padding: 12px 0;
}
.contact_form .error {
	margin-top: 3px;
}
.contact_form .required {
	background-color: #084C82;/*青*/
	font-size: 1.2rem;
	color: #fff;
	font-weight: 300;
	margin-left: 7px;
	padding: 0 5px 1px;
	border-radius: 5px;
	box-sizing: border-box;
}
.contact_text {
	width: 100%;
	max-width: 900px;
	margin: 20px auto 0;
	text-align: left;
}
.privacy_link {
	color: #084C82;/*青*/
	text-decoration: underline;
}
.privacy_link:hover {
	text-decoration: none;
}
.contact_form label {
	display: inline-block;
	margin: 0.8em 0 0;
}
#name,#name_kana,#name02,#tel,#mail,#mail2,#code,#address,textarea {
	font-size: 16px;
	background-color: #ffffff; 
	border: none;
	border-radius: 10px;
    outline: none; /*フォーカス時の枠線非表示*/
    box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
	padding: 0.8em;
	width: 100%;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
/*
横幅固定：vertical
縦幅固定：horizontal
すべて固定：none
*/
textarea {
	resize: none;
}

.name th,
.name td{
	padding-top: 30px;
}

/* 送信ボタン */
.submit {
	position: relative;
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 70px auto 0;
	background-color: #000222;
	color: #fff;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}
.submit::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 15px;
	height: 15px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
}
input[type="submit"] {
	display: block;
	outline: none;
	width: 100%;
	font-size: 16px;
	transition: .3s ease;
	cursor: pointer;
	text-align: center;
	border: solid 2px #084C82;/*青*/
	background-color: #fff;
	padding: 15px;
	max-width: 300px;
	margin: 30px auto 0;
	border-radius: 35px;
	color: #084C82;/*青*/
	letter-spacing: 0.15em;
	font-weight: 500;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* iosの見た目を合わせる */
input[type="submit"] {
    -webkit-appearance: none;
}
.check {
	width: 90%;
	max-width: 800px;
	text-align: center;
	margin: 30px auto 0;
}
.check .error {
	margin-top: 10px;
}
input[type="checkbox"]{
	display: none;
}
/* 確認画面 */
.mw_wp_form_confirm table {
	border-collapse: collapse;
}
.mw_wp_form_confirm table th,
.mw_wp_form_confirm table td {
	padding: 20px;
	box-sizing: border-box;
	border-bottom: solid 1px #084C82;/*青*/
}
.mw_wp_form_confirm .confirm_none {
	display: none;
}
.mw_wp_form_confirm .contact_text {
	display: none;
}
.mw_wp_form_confirm .check {
	display: none;
}
.mw_wp_form_confirm .contact_form label {
	margin: 0;
}
.mwform-checkbox-field-text{
	padding-left: 35px;
	position:relative;
	font-weight: bold;
}
.mwform-checkbox-field-text::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid #000;
	border-radius: 5px;
}
input[type="checkbox"]:checked + .mwform-checkbox-field-text{
  color: #084C82;/*青*/
}
input[type="checkbox"]:checked + .mwform-checkbox-field-text::after{
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 7px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #084C82;/*青*/
  border-right: 3px solid #084C82;/*青*/
}

@media screen and (max-width: 850px){
	#page-contact .wrap{
		padding: 40px 0 100px;
	}
	.contact_form_text {
		text-align: left;
	}
	.contact_form th {
		display: block;
		width: 100%;
		padding: 6px 0 0;
	}
	.contact_form td {
		display: block;
		width: 100%;
	}
	.mw_wp_form_confirm table th {
		padding: 20px 0 10px;
		box-sizing: border-box;
		border-bottom: none;
	}
	.mw_wp_form_confirm table td {
		padding: 5px 0 20px;
		box-sizing: border-box;
	}
}
@media screen and (min-width: 850px) {
	.submit:hover {
		background-color: #084C82;/*青*/
		color: #fff;
	}
	input[type="submit"]:hover {
		background: #084C82;/*青*/
	}
	#page-contact p.sentence {
		margin: 0 auto 80px;
	}
}

/*--------------------------- 
　　　シェアボタン
--------------------------- */
.share_btn {
	position: relative;
	height: 55px;
}
.sfsiplus_footerLnk {
	display: none;
}