@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/*===============================
 Base
===============================*/
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box;-o-box-sizing: border-box;  -ms-box-sizing: border-box;box-sizing: border-box;}
.sp { display: none; }
.tab { display: none; }
html {
	height: 100%;
}
body {
	color: #333333;
	height: 100%;
}
a {
	color: #333333;
	text-decoration: none;
	transition: .5s;
}
a:hover {
	opacity: 0.8;
}
img {
	width: 100%;
	height: auto;
}
.slick-slide img.sp { display: none; }
@media screen and (max-width:1024px) {
	.pc-br { display: none; }
}
@media screen and (max-width:767px) {
	/* 画面サイズが 767px以下の場合に適用 */
	.pc { display: none; }
	.sp { display: block; width: 100%; }
}
@media screen and (min-width:768px) and (max-width:1024px) {
	.tab { display: block; }
}

/*===============================
 Clear
===============================*/
img {
	border: 0;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}
ol, ul {
	list-style: none!important;
}
* {
	margin: 0;
	padding: 0;
}

/*===============================
 Font
===============================*/
html {
	font-size: 10px;
}
body {
	font-family: "Noto Sans", sans-serif;
	line-height: 1.875;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
h1, h2, h3, h4, h5 {
	line-height: 1.538;
}
p, li, dt, dd, th, td {
	line-height: 2;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}
a {
	letter-spacing: 0.05em;
}

/*===============================
 Layout
===============================*/
#wrapper { overflow: hidden; background-color: #F8F8F8; }
#wrapper.single-product {overflow: visible;}
.container { width:90%; margin:0 auto; max-width: 1140px; }
.left-container { width:95%; max-width: calc(1140px + ((100% - 1140px) / 2)); margin: 0 0 0 auto; position: relative; }
.right-container { width:95%; max-width: calc(1140px + ((100% - 1140px) / 2)); margin: 0 auto 0 0; position: relative; }
.linkbtn { display: flex; align-items: center; justify-content: center; border: 3px solid #3FA7FC; color: #fff; border-radius: 60px; width: 360px; min-height: 60px; font-size: 1.6rem; font-weight: bold; }
.linkbtn:hover { background-color: #3FA7FC; color: #fff; }
.sectitle01 { font-family: "din-2014", sans-serif; font-size: 7.2rem; font-weight: 700; line-height: 1.2; font-style: normal; letter-spacing: 0.13em; }
.pagetit { font-size: 6.0rem; line-height: 1.3; font-weight: 700; letter-spacing: 0.03em; color: #fff; }
.pagesubtit { color: #fff; font-weight: 700; font-size: 4.0rem; letter-spacing: 0.01em; line-height: 1; font-style: normal; }
.pagetitle { position: relative; z-index: 1; }
.pagetitle_img { position: absolute; width: 400px; top: 20px; right: 5%; }
.cta {padding: 100px 0;}
.cta .linkbtn { margin: 0 auto; background-color: #FAC60E; color: #121212; border: 3px solid #FAC60E; width: 600px; min-height: 100px; font-size: 2.4rem; font-weight: 700; }
.cta .linkbtn:hover { background-color: #fff; color: #FAC60E; }
.cta.btm { padding-bottom: 150px; }
.clear { clear:both; }
section { padding:100px 0; position: relative; }
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 1025px) and (max-width: 1250px) {
	
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:2.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeInAnime{
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}

/* 上から */

.fadeImg{
	animation-name:fadeImgAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	-moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    transition-delay: .5s;
}
	
@keyframes fadeImgAnime{
	from {
		-webkit-transform: scale(1.0);
		-moz-transform: scale(1.0);
		-ms-transform: scale(1.0);
		-o-transform: scale(1.0);
		transform: scale(1.0);
	}

	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

/* 上から */

.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeDownAnime{
	from {
	opacity: 0;
	transform: translateY(-100px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeUpAnime{
	from {
	opacity: 0;
	transform: translateY(50px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeLeftAnime{
	from {
	opacity: 0;
	transform: translateX(-100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}

/* 右から */

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeRightAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}
	
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
	opacity: 0;
}

/*===============================
 COMMON
===============================*/
/* contact */
.contact {
	background-color: #3FA7FC;
}
.contact .top_sectit {
	color: #fff;
}
.contact .contact_inner p {
	text-align: center;
	margin-bottom: 80px;
	color: #fff;
}
.contact .contact_inner .linkbtn {
	width: 360px;
	min-height: 60px;
	background-color: #FAC60E;
	color: #121212;
	margin: 0 auto;
	font-size: 1.6rem;
	border: 3px solid #FAC60E;
}
.contact .contact_inner .linkbtn:hover {
	background-color: #fff;
	color: #FAC60E;
	opacity: 1;
}

/* article */
.archive-article { position: relative; }
.archive-article:hover {
	cursor: pointer;;
}
.archive-article_img {
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 15px;
}
.archive-article_img_inner {
	display: block;
	padding-top: 60%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	transition-duration: .5s;
}
.archive-article:hover .archive-article_img_inner {
	transform: scale(1.1);
}
.archive-article_top {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 5px;
	display: none;
}
.archive-article_top .date {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
}
.archive-article_top .category {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    padding: 1px 7px 0;
    border: 1px solid #000;
	display: none;
}
.archive-article_tit {
    min-height: auto;
}
.archive-article_tit h2 {
    font-size: 1.8rem;
    font-weight: 400;
}
.top-two_cover {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    z-index: 2;
}

/*===============================
 header
===============================*/
#header {
	position: fixed;
	min-height: 80px;
	width: 100%;
	z-index: 9;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: rgba(255, 255, 255, 0.5);
	padding-right: 50px;
	transition: 0.5s;
}
#header.change-color {
	background-color: #3FA7FC;
}
#header.page {
	background-color: #3FA7FC;
}
#header .header_logo {
	position: absolute;
	top: 19%;
	left: 30px;
	width: 140px;
}
#header .header_logo a span {
	display: inline-block;
}
#pc-nav ul.menu {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}
#pc-nav ul.menu > li > a {
    display: block;
    text-decoration: none;
	margin: 0 25px;
	font-size: 1.5rem;
	line-height: 1;
	color: #333;
}
#pc-nav ul.menu > li > a.change-color {
	color: #fff;
}
#header.page #pc-nav ul.menu > li > a {
	color: #fff;
}
#header.page #pc-nav ul.menu > li > a.contact_btn {
	color: #333;
}
#header.page #pc-nav ul.menu > li > a.contact_btn:hover {
	color: #FAC60E;
}
#pc-nav ul.menu > li:last-of-type {
	margin-left: 30px;
}
#header #pc-nav ul.menu .contact_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #121212;
	background-color: #FAC60E;
	border: 1px solid #FAC60E;
	min-width: 220px;
	min-height: 60px;
	border-radius: 60px;
	margin: 0;
}
#header #pc-nav ul.menu .contact_btn:hover {
	background-color: #fff;
	color: #FAC60E;
	opacity: 1;
}

/* ドロップダウンメニュー */
.menu li {
	position: relative;
}
.menuSub {
	position: absolute;
	margin-left: 15px;
	padding-top: 10px;
	display: none;
}
.menuSub li a {
	padding: 10px 15px;
	display: block;
	color: #333;
	text-decoration: none;
	background: #FAC60E;
	border: 3px solid #FAC60E;
	width: 300px;
}
.menuSub li a:hover {
	background: #fff;
	color: #FAC60E;
	opacity: 1;
}
#menuSub_zinzailink a {
	background: #F51F20;
	border: 3px solid #F51F20;
	color: #fff;
}
#menuSub_zinzailink a:hover {
	background: #fff;
	color: #F51F20;
	opacity: 1;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
	#header {padding-right: 30px;}
	#pc-nav ul.menu > li > a {margin: 0 20px;}
	#header .header_logo {
		left: 30px;
	}
}
@media screen and (max-width: 1024px) {
	#pc-nav {
		display: none;
	}
}

/*===============================
 MV
===============================*/
#mv {
    width: 100%;
    position: relative;
	height: 100vh;
	position: relative;
}
#mv:before {
	content: '';
    background-image: url(images/top_mv2.jpg);
    position: absolute;
	background-position: center;
	background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* filter: blur(2px); */
}
#mv .container {
	position: relative;
	margin: 0;
    width: 100%;
    max-width: none;
	height: 100vh;
}
.mv_txt_area {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1140px;
}
.mv_tit {
	font-size: 6.4rem;
    line-height: 1.4;
	margin-bottom: 10px;
	text-shadow: #707070 0px 1px 3px;
	color: #fff;
	-webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: #707070;
}
.mv_tit span {
	color: #26CB3F;
	-webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: #707070;
	font-size: 120%;
}
.mv_txt {
	font-size: 3.5rem;
	margin-bottom: 20px;
	text-shadow: #707070 0px 1px 3px;
	color: #fff;
	-webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: #707070;
}
.mv_btn {
	display: flex;
    background-color: #FAC60E;
    color: #333;
	border: 3px solid #FAC60E;
    width: 500px;
    max-width: 90%;
    border-radius: 35px;
    justify-content: center;
    align-items: center;
    min-height: 60px;
	box-shadow: #707070 0px 3px 6px;
}
.mv_btn:hover {
	background-color: #fff;
	color: #FAC60E;
	opacity: 1;
}
.mv_btn_zinzai {
	background-color: #F51F20;
	border: 3px solid #F51F20;
	color: #fff;
	margin-bottom: 20px;
}
.mv_btn_zinzai:hover {
	background-color: #fff;
	color: #F51F20;
	opacity: 1;
}
.mv01 {
    padding-top: 80px;
	background-size: cover;
    background-position: center;
	background-color: #3FA7FC;
}
.mv02 {
    padding-top: 80px;
	background-size: cover;
    background-position: center;
	background-color: #3FA7FC;
}
.mv01 .mv01_inner {
	position: relative;
}
.mv01 .pagetitle {
	padding: 120px 0;
}
.mv02 .pagetitle {
	padding: 90px 0;
}
#mv_line .pagetitle {
	padding: 81px 0;
}
#mv_column .pagetitle {
	padding: 50px 0;
}
.mv02 .pagetit {
	font-family: "din-2014", sans-serif;
	font-size: 8.0rem;
	margin-bottom: 20px;
}
#mv_column .pagetit {
	margin-bottom: 10px;
}
#mv_line .pagetitle_img {
    width: 410px;
    top: 40px;
    right: 0%;
}
#mv_ec .pagetitle_img {
	width: 360px;
	right: 8%;
}
#mv_homepage .pagetitle_img {
	width: 360px;
	right: 12%;
}
#mv_design .pagetitle_img {
	width: 470px;
	right: 7%;
	top: 40px;
}
#mv_works .pagetitle_img {
	width: 380px;
	right: 10%;
}
#mv_about .pagetitle_img {
	width: 490px;
	right: 7%;
}
#mv_news .pagetitle_img {
	width: 380px;
	right: 10%;
	top: 40px;
}
#mv_news .pagetitle_img {
	width: 380px;
	right: 10%;
	top: 40px;
}
#mv_column .pagetitle_img {
	width: 280px;
    right: 10%;
    top: 30px;
}
#mv_contact .pagetitle_img {
	width: 350px;
	right: 10%;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-34px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	text-shadow: 0px 1px 2px #909090;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
	box-shadow: 0px 1px 2px #909090;
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:2px;
	height: 82px;
	background:#eee;
	box-shadow: 0px 1px 2px #909090;
}

/*===============================
 トップページ
===============================*/
.left_box {
	width: 50%;
	padding-right: 50px;
	position: relative;
}
.right_box {
	width: 50%;
	position: relative;
}
.top_sectit {
	margin-bottom: 80px;
	text-align: center;
}
.top_sectit h2 {
	font-size: 2.0rem;
}
.more_btn {
    /*ボタンの形状*/
    display: inline-block;
    display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #FAC60E;
	width: 460px;
	min-height: 60px;
	border-radius: 60px;
    text-decoration: none;
    color: #121212;
	background-color: #FAC60E;
    /*アニメーションの指定*/
    transition: all .2s linear;
	font-weight: 600;
}
.more_btn:hover {
	background-color: #fff;
	color: #FAC60E;
}

/* front-top */
#front_btn {
	width: 360px;
	min-height: 80px;
	margin: 0 auto 50px;
	font-size: 2.0rem;
}
#front_btn span {
	font-size: 2.5rem;
	font-family: "din-2014", sans-serif;
	font-weight: 700;
}
#front-top {
	position: relative;
	padding: 100px 0 100px;
}
#front-top_txt {
	text-align: center;
	font-size: 3.0rem;
	line-height: 2;
	color: #3FA7FC;
	margin-bottom: 50px;
}
#front-top_txt span {
	font-size: 4.0rem;
}
#front-top_txt02 {
	text-align: center;
    font-size: 3.0rem;
    line-height: 2;
    color: #F51F20;
    margin-bottom: 30px;
}
.front-top_more_btn {
	margin: 0 auto;
    min-height: 90px;
    font-size: 2.2rem;
	border: 3px solid #F51F20;
	background-color: #F51F20;
	color: #fff;
}
.front-top_more_btn:hover {
	color: #F51F20;
}

/* SERVICE */
#top_service {
	background-color: #3FA7FC;
}
#top_service .top_sectit {
	color: #fff;
}
.top_service_box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}
.top_service_box.last {
	margin-bottom: 0;
}
.top_service_box_right .img_box {
	order: 2;
}
.top_service_box .img_box {
	width: 48%;
}
.top_service_box .txt_box {
	width: 48%;
	padding-top: 20px;
}
.top_service_box .txt_box h3 {
	color: #fff;
	font-size: 3.0rem;
	margin-bottom: 40px;
}
.top_service_box .txt_box p {
	color: #fff;
	margin-bottom: 60px;
}

/* WORKS */
#top_works .top_sectit {
	color: #3FA7FC;
}
.top_workslist {
	display: flex;
	justify-content: space-between;
}
.top_workslist > li {
	width: 30%;
}
.top_works_content {
	margin-bottom: 20px;
}
.top_workslist_tit {
	margin-top: 30px;
	text-align: center;
	font-size: 1.8rem;
	color: #3FA7FC;
}
#top_works .linkbtn {
	background-color: #3FA7FC;
	color: #fff;
	margin: 0 auto;
}
#top_works .linkbtn:hover {
	background-color: #fff;
	color: #3FA7FC;
	border: 3px solid #3FA7FC;
}

/* ABOUT */
#top_about {
	background-color: #3FA7FC;
}
#top_about .top_sectit {
	color: #fff;
}
#top_about_txt01 {
	text-align: center;
	color: #fff;
	margin-bottom: 100px;
}
#top_about .linkbtn {
	margin: 0 auto;
	background-color: #fff;
	color: #3FA7FC;
	border: 3px solid #3FA7FC;
}
#top_about .linkbtn:hover {
	background-color: #3FA7FC;
	color: #fff;
	border: 3px solid #fff;
}

/* NEWS */
#news .container {
	max-width: 900px;
}
.news_inner {
    position: relative;
}
#news .news_inner .sectit02 {
	text-align: center;
	margin-bottom: 80px;
}
#news .news_inner .sectit02 h2 {
	font-size: 2.0rem;
}
.top_news_content {
	margin-bottom: 20px;
}
#top_news .itemlist .item_btm {
	padding: 15px 10px;
}
#top_news .itemlist .item_tit {
    font-size: 1.7rem;
    line-height: 1.6;
}
.news_inner .pagelink {
	display: flex;
	align-items: flex-end;
}
#top_news .news_inner .linkbtn {
	position: relative;
	margin: 0 auto;
	background-color: #3FA7FC;
	color: #fff;
	border: 3px solid #3FA7FC;
}
#top_news .news_inner .linkbtn:hover {
	background-color: #fff;
	color: #3FA7FC;
	border: 3px solid #3FA7FC;
}

/*===============================
 PAGE-ZINZAI
===============================*/
#mv_zinzai {
	background-color: #3FA7FC;
	padding: 10px 0 70px;
}
.mv_zinzai_container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.mv_zinzai_txt01 {
	color: #fff;
    font-size: 2.4rem;
	margin-bottom: 15px;
}
#mv_zinzai_maintxt {
	margin-bottom: 40px;
}
#mv_zinzai_point {
	display: flex;
	justify-content: space-between;
}
.mv_zinzai_point_left {
	width: 48%;
}
.mv_zinzai_point_right {
	width: 48%;
}
.mv_zinzai_point_box {
	background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.mv_zinzai_point_box01 {
	text-align: center;
}
.mv_zinzai_point_box01 span {
	font-size: 3.0rem;
}
#mv_zinzai_point_x {
	font-size: 10rem;
	text-align: center;
	line-height: 0.7;
	padding-bottom: 8px;
}
.mv_zinzai_point_box02 {
	font-size: 3.6rem;
	text-align: center;
}
.mv_zinzai_point_box03 {
	font-size: 2.6rem;
	text-align: center;
}
.mv_zinzai_point_right .mv_zinzai_point_box01, .mv_zinzai_point_right .mv_zinzai_point_box02 {
	margin-bottom: 18px;
}
#mv_zinzai .zinzai_contact_form {
	width: 440px;
}
#service_content_box_inner01_list02 {
	display: flex;
	flex-wrap: wrap;
    margin-top: 50px;
}
#service_content_box_inner01_list02 > li:not(:nth-of-type(3n)) {
    margin-right: calc((100% - 1050px) / 2);
}
#service_content_box_inner01_list02 > li {
    width: 350px;
    font-size: 2.0rem;
    line-height: 1.6;
}
.list_frame02 {
    background-color: #fff;
    color: #3FA7FC;
    border: 3px solid #3FA7FC;
    border-radius: 30px;
    text-align: center;
    min-height: 100px;
	padding: 30px;
}
#service_content_box_inner01_list02 .list_frame02 .list_frame02_tit {
	min-height: 85px;
}
#service_content_box_inner01_list02 .list_frame02 .list_frame02_img {
	display: block;
    width: 130px;
    margin: 0 auto;
}
.list_item01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.list_item01 .list_item01_content01 {
	width: 55%;
}
.list_item01 .list_item01_content01_img {
	width: 40%;
}
.list_item_content01_tit {
	font-size: 2.4rem;
    font-weight: 600;
    color: #3FA7FC;
    margin-bottom: 20px;
	line-height: 1.666;
}
#service_content_box_inner02_list01 > li:not(:last-of-type) {
	margin-bottom: 50px;
}
.page-zinzai #header {
	position: static;
}
.page-zinzai #pc-nav {
	display: none;
}
#zinzai_content01 {
	padding-bottom: 0;
}

/* 支援事例 */
.case_box {
	background-color: #fff;
    border: 2px solid #3FA7FC;
	padding: 30px 40px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case_box_left {
	width: 40%;
}
.case_box_right {
	width: 55%;
}
.case_box_titarea {
    display: flex;
    border: 2px solid #3FA7FC;
    width: 450px;
    justify-content: center;
    position: absolute;
    top: -2px;
    left: -2px;
    padding: 15px 0;
	background-color: #CFE9FE;
}
.case_box_titarea_left {
	margin-right: 30px;
}
.case_box_titarea_cat {
	font-size: 2.2rem;
    margin-bottom: 5px;
    text-align: center;
}
.case_box_titarea_tit {
	font-size: 3.8rem;
    line-height: 1;
    font-family: sans-serif;
}
.case_box_ex {
	padding-top: 120px;
}
.case_box_ex_tit {
	font-size: 2.4rem;
	line-height: 1.666;
	margin: 10px 0;
}
.case_box_ex_list {
	margin-bottom: 5px;
}
.case_box_ex_list > li {
	padding-left: 20px;
	position: relative;
}
.case_box_ex_list > li:before {
	content: '・';
	position: absolute;
	left: 0;
}
.case_box_titarea_right {
	width: 70px;
}
.case_box_effect {
	font-size: 2.6rem;
    letter-spacing: 0;
	margin-bottom: 20px;
}
.case_box_effect span {
	font-size: 3.2rem;
	color: red;
}

/* プラン内容 */
.planlist {
	display: flex;
    justify-content: space-between;
    padding: 0 80px;
}
.planlist > li {
    width: 260px;
}
.planlist > li h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3FA7FC;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #3FA7FC;
    margin-bottom: 20px;
    min-height: 97px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.planlist > li p {
    text-align: center;
    font-weight: 600;
    color: #3FA7FC;
}

/* お問い合わせ */
#zinzai_contactform_tit {
	font-size: 2.4rem;
	color: #3FA7FC;
	font-weight: 700;
	background-color: transparent;
	padding: 0;
	text-align: center;
	margin-bottom: 5px;
}
#zinzai_contact_inner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.zinzai_contact_form {
	background-color: #fff;
    padding: 30px 40px 40px;
    border-radius: 20px;
}
.service_content_box_inner_left {
	margin-right: 8%;
}
.service_content_box_inner_left_tit {
	font-size: 3.0rem;
	margin-bottom: 20px;
}
.service_content_box_inner_left_subtit {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
.service_content_box_inner_right {
	width: 90%;
    max-width: 550px;
}
.zinzai_contact_list > li {
	font-size: 2.0rem;
	padding-left: 25px;
	position: relative;
}
.zinzai_contact_list > li:before {
	content: '・';
	position: absolute;
	left: 0;
}
.contact_form02 .form-list {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 25px auto;
}
.contact_form02 .form-list li dl dt {
    padding: 10px 0 5px;
}
.contact_form02 .form-list input[type='text'], .contact_form02 .form-list input[type='email'], .contact_form02 .form-list textarea {
    width: 100%;
    border: 1px solid #666;
    background: #fff;
    padding: 10px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	font-size: 1.6rem;
	border-radius: 10px;
}
.contact_form02 .form-list input[type='text'], input[type='email'] {
    height: 50px;
	width: 100%;
}
.mandatory {
	padding: 4px 10px 5px;
    background-color: #FAC60E;
    color: #121212;
    font-size: 1.3rem;
    margin-left: 10px;
}
.contact_form02 .form-list dt label {
	font-size: 1.6rem;
	color: #3FA7FC;
}
.contact_form02 input[type="submit"].mainsubmit {
	font-size: 1.6rem;
	padding: 10px 0;
}
.contact_form02_list .mwform-checkbox-field input, .contact_form02_list .mwform-radio-field input {
	display: none;
}

/* スクロールダウン */
#mv_zinzai .scrolldown4:before {
	bottom: -55px;
}
#mv_zinzai .scrolldown4 span {
	bottom: -45px;
}
#mv_zinzai .scrolldown4:after {
	bottom: -55px;
}

/*===============================
 PAGE-LINE
===============================*/
#service_content_box_inner01_list {
	display: flex;
	padding: 0 5%;
    justify-content: space-between;
	flex-wrap: wrap;
}
#service_content_box_inner01_list > li {
	width: 30%;
}
.service_content_arrow {
	display: block;
	width: 40%;
	margin: 70px auto 50px;
}
.service_content_em_txt {
	font-size: 4.0rem;
	color: #FAC60E;
	text-align: center;
	line-height: 1.5;
}
.service_content_box_inner_flex {
	display: flex;
	flex-wrap: wrap;
}
.service_content_box_inner_flex .left {
	width: 70%;
}
#line_content01_box02_tit {
	font-size: 3.4rem;
	line-height: 1.7;
	color: #3FA7FC;
	margin-bottom: 30px;
}
#line_content01_box02_tit span {
	background-color: #26CB3F;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
    margin: 0 5px;
}
.service_content_box_inner_flex .left .txt01 {
	color: #3FA7FC;
}
.service_content_box_inner_flex .right {
	width: 30%;
}
#line_content01_box02-01 {
	width: 40%;
	display: block;
	margin: 0 auto;
}
#effect_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}
#effect_list > li {
	width: 350px;
	font-size: 2.0rem;
	line-height: 1.6;
}
#effect_list > li:not(:nth-of-type(3n)) {
	margin-right: calc((100% - 1050px) / 2);
}
#effect_list > li:nth-last-of-type(n+4) {
	margin-bottom: 30px;
}
.list_frame01 {
	background-color: #fff;
	color: #3FA7FC;
	border: 3px solid #3FA7FC;
	border-radius: 30px;
	text-align: center;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#line_content01_box03 {
	max-width: 880px;
	display: block;
	margin: 0 auto 60px;
}
#b_txt01 {
	font-size: 6.0rem;
	color: #FAC60E;
	font-weight: bold;
	text-align: center;
	margin: 30px 0;
}
#line_content01 .flow_img {
	padding-bottom: 0;
}
#b_txt01 span.marker {
	background: linear-gradient(transparent 80%, #ff0000 80%);
	padding: 0 10px;
}

/*===============================
 PAGE-EC 
===============================*/
#ec_intro {
	text-align: center;
	font-size: 6.0rem;
	font-weight: 700;
	color: #3FA7FC;
	margin-top: 100px;
}
#ec_intro span {
	background: linear-gradient(transparent 80%, #FAC60E 80%);
    display: inline-block;
    line-height: 1.0;
}

/* EC LINE */
#ec_content01 {
	padding-bottom: 0;
}
.service_content01_tit {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 100px;
	color: #3FA7FC;
	font-family: "din-2014", sans-serif;
}
.service_content01_tit span {
	display: block;
    width: 400px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3FA7FC;
}
.service_content_box h3 {
	background-color: #3FA7FC;
	color: #fff;
	font-size: 3.0rem;
	font-weight: 700;
	padding: 18px 30px 22px;
	line-height: 1;
}
.service_content_box_inner {
	padding: 60px 0;
}
#service_content_box_inner01 {
	display: flex;
	justify-content: space-between;
	padding: 60px 100px;
}
#service_content_box_inner01 .left {
	width: 60%;
}
#service_content_box_inner01 .right {
	width: 35%;
}
#service_content_box_inner01 .txt01 {
	color: #3FA7FC;
	font-weight: 500;
	margin-bottom: 40px;
}
.demo { font-size: 2.0rem; color: #3FA7FC; }
.demolink { font-size: 1.3rem; text-decoration: underline; color: #3FA7FC; }
.demolink:hover { text-decoration: none; }
.demo_qr { width: 120px; margin: 10px 0; }
#demo_btm { font-size: 1.0rem; color: #3FA7FC; }
#service_content_box02 .service_content_box_inner {
	padding-bottom: 0;
}
#recommend_list {
	display: flex;
    padding: 0 5%;
	justify-content: space-between;
	margin-bottom: -5px;
}
#recommend_list > li {
	width: 30%;
}
#recommend_list > li img {
	display: block;
}
#merit_list {
	display: flex;
}
#merit_list > li {
	width: 250px;
	background-color: #fff;
    border: 3px solid #3FA7FC;
    border-radius: 30px;
	padding: 30px 20px;
}
#merit_list > li:not(:last-of-type) {
	margin-right: calc((100% - 1000px) / 3);
}
#merit_list > li img {
	width: 80px;
	display: block;
    margin: 0 auto;
}
#merit_list > li h4 {
	font-size: 2.0rem;
	font-weight: 700;
	color: #3FA7FC;
	text-align: center;
	padding: 20px 0;
    border-bottom: 3px solid #3FA7FC;
    margin-bottom: 20px;
}
#merit_list > li p {
	font-size: 1.4rem;
	font-weight: 600;
	color: #3FA7FC;
}
.flow_img {
	padding: 60px 50px 70px;
}
#feature_list {
	padding: 0 10%;
}
#feature_list > li {
	display: flex;
	justify-content: space-between;
}
#feature_list > li:not(:last-of-type) {
	margin-bottom: 50px;
}
#feature_list > li img {
	width: 47%;
}
#feature_list > li .txt {
	width: 47%;
}
#feature_list > li .txt h4 {
	font-size: 2.4rem;
	font-weight: 600;
	color: #3FA7FC;
	margin-bottom: 30px;
}
#feature_list > li .txt p {
	font-size: 1.6rem;
	font-weight: 500;
	color: #3FA7FC;
}
#feature_list > li:nth-of-type(2n) img {
	order: 1;
}
#feature_list > li:nth-of-type(2n) .txt {
	order: 2;
}
.price_list {
	display: flex;
	padding: 0 10%;
	justify-content: space-between;
	align-items: flex-start;
}
.price_list > li {
	width: 270px;
}
.price_item_tit {
	background-color: #3FA7FC;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	border-radius: 30px 30px 0 0;
	font-size: 2.0rem;
}
.price_box_btm {
	background-color: #fff;
	border: 3px solid #3FA7FC;
	border-top: none;
	border-radius: 0 0 30px 30px;
}
#ec_content01 .price_box_btm {
	min-height: 358px;
}
#price_item01 .price_box_btm {
	padding: 20px;
}
#price_item02 .price_box_btm {
	padding: 20px 25px;
}
#price_item03 .price_box_btm {
	padding: 20px;
}
.price_txt {
	text-align: center;
    font-size: 3.0rem;
    font-weight: 700;
    color: #3FA7FC;
    line-height: 1.3;
}
.tax {
	text-align: right;
    color: #3FA7FC;
	margin-bottom: 5px;
}
#price_item01 .tax {
	padding-right: 35px;
}
#price_item02 .tax {
	padding-right: 23px;
}
#price_item03 .tax {
	padding-right: 12px;
	margin-bottom: 0;
}
.price_innerlist > li {
	font-weight: 700;
	color: #3FA7FC;
}
.price_innerlist > li:before {
	content: url(images/check.png);
	vertical-align: middle;
	padding-right: 5px;
}
.price_innerlist02 {
	padding: 0px 17px;
	margin-top: 10px;
}
.price_innerlist02 > li {
	font-size: 1.2rem;
	font-weight: 400;
	color: #707070;
	position: relative;
}
.price_innerlist02 > li:before {
	content: '※';
	position: absolute;
    left: -15px;
}
#price_item03 .price_box_btm .plus {
	text-align: center;
	font-size: 5.0rem;
	font-weight: 700;
	line-height: 1;
	color: #3FA7FC;
}
.commission {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}
.commission > p {
	color: #3FA7FC;
	font-weight: 500;
}
.commission > div {
	color: #3FA7FC;
	font-size: 3.0rem;
	font-weight: 600;
}
#price_item03 .price_innerlist02 {
	padding: 0px 0 0 17px;
}

/* EC Web */
#ec_content02 {
	padding-bottom: 0;
}
#ec_content02 #ec_content02_intro {
	text-align: center;
	color: #3FA7FC;
	font-weight: 600;
	margin-bottom: 100px;
}
#ec_content02 .price_box_btm {
	min-height: 330px;
}
#price_item04 .price_box_btm {
	padding: 20px;
}
#price_item04 .price_box_btm .txt {
	color: #3FA7FC;
	margin-bottom: 30px;
}
#price_item05 .price_box_btm {
	padding: 20px;
}
#price_item06 .price_box_btm {
	padding: 20px;
}
#price_item06 .price_box_btm .plus {
	text-align: center;
	font-size: 5.0rem;
	font-weight: 700;
	line-height: 1;
	color: #3FA7FC;
}
#price_item06 .price_innerlist02 {
	padding: 0px 0 0 17px;
}
#price_item04 .tax {
	margin-bottom: 20px;
	padding-right: 33px;
}
#price_item05 .tax {
	margin-bottom: 20px;
	padding-right: 23px;
}
#price_item06 .tax {
	margin-bottom: 0;
	padding-right: 31px;
}
@media screen and (min-width: 1201px) and (max-width: 1300px) {
	.service_list_content .service_list_content_inner .linkbtn {
		bottom: 20px;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
	.service_list_content .sectitle02 {
		margin-bottom: 20px;
		font-size: 2.8rem;
	}
	.service_list_content .subtit {
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.service_list_content_inner > p {
		font-size: 1.5rem;
	}
	.service_list_content.left img {
		margin-right: 30px;
	}
	.service_list_content .service_list_content_inner .linkbtn {
		min-height: 60px;
		bottom: 20px;
	}
}

/*===============================
 PAGE-homepage
===============================*/
/* ホームページ制作 */
#homepage_content01 {
	padding-bottom: 0;
}
#point_list {
	display: flex;
	justify-content: space-between;
	padding: 0 80px;
}
#point_list > li {
	width: 260px;
}
#point_list > li h4 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #3FA7FC;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 3px solid #3FA7FC;
	margin-bottom: 20px;
}
#point_list > li p {
	text-align: center;
	font-weight: 600;
	color: #3FA7FC;
}
#homepage_content01 .flow_img {
	padding: 60px 150px 70px;
}
#homepage_price .service_content_box_inner {
    padding: 60px 0 0;
}
#homepage_price_list {
	display: flex;
	justify-content: space-between;
	padding: 0;
}
#homepage_price_list > li {
	width: calc((100% - 40px) / 3);
}
#homepage_price_list > li .price_txt {
	margin-bottom: 20px;
}
.price_list .price_txt span, #maintenance_service .price_txt span {
	font-size: 1.6rem;
}
#homepage_price_list .price_box_btm {
	padding: 25px;
	min-height: 510px;
	margin-bottom: 50px;
}
#homepage_price_list > li .price_box_btm .maintxt {
	font-size: 1.9rem;
	color: #3FA7FC;
	line-height: 1.65;
	margin-bottom: 20px;
}
#homepage_price_list .price_box_btm p {
	font-size: 1.5rem;
	color: #3FA7FC;
	margin-bottom: 20px;
}
#maintenance_service {
	width: 670px;
	margin: 0 auto;
}
#maintenance_service .price_txt {
	margin-bottom: 30px;
}
#maintenance_service .price_box_btm {
	padding: 30px;
}
#maintenance_service_tit {
	font-size: 2.0rem;
	font-weight: 700;
	color: #3FA7FC;
	padding-bottom: 7px;
	border-bottom: 3px solid #3FA7FC;
	margin-bottom: 20px;
}
#maintenance_service .price_innerlist {
	margin-bottom: 20px;
}
#maintenance_service .price_innerlist > li:not(:last-of-type) {
	margin-bottom: 10px;
}
.workslist_link {
	padding: 100px 0;
}
.workslist_link .linkbtn {
	margin: 0 auto;
	width: 400px;
    min-height: 80px;
	background-color: #fff;
	color: #3FA7FC;
}
.workslist_link .linkbtn:hover {
	background-color: #3FA7FC;
	color: #fff;
}

/* MEO運用代行 */
#meo_top {
	margin-bottom: 20px;
}
#meo_top span {
	background-color: #3FA7FC;
	color: #fff;
	padding: 9px 33px 10px 42px;
    font-size: 2.4rem;
	display: inline-block;
}
#meo_toptit {
	font-size: 3.0rem;
	font-weight: 600;
	color: #3FA7FC;
	margin-bottom: 50px;
}
#meo_menu {
	display: flex;
	padding-bottom: 30px;
    border-bottom: 3px solid #3FA7FC;
}
#meo_menu .left {
	width: 27%;
}
#meo_menu .left .meo_tit {
	font-size: 3.0rem;
	color: #3FA7FC;
	font-weight: 600;
	margin-bottom: 5px;
}
#meo_menu .left .meo_price {
	font-size: 3.0rem;
	color: #3FA7FC;
	font-weight: 700;
}
#meo_menu .left .meo_price span {
	font-size: 1.6rem;
}
#meo_menu .right {
	width: 73%;
}
#meo_menu .right p {
	color: #3FA7FC;
	line-height: 2;
}

@media screen and (min-width: 1025px) and (max-width: 1250px) {
	.product_list > li a h3 {font-size: 3.2rem;}
}

/*===============================
 PAGE-design
===============================*/
#design_content01 {
	padding-bottom: 50px;
}
#design_price_intro {
	text-align: center;
	color: #3FA7FC;
	margin: 30px 0 80px;
}
#design_price_list {
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0;
}
#design_price_list > li {
	width: 350px;
}
#design_price_list > li:not(:nth-of-type(3n)) {
	margin-right: calc((100% - 1050px) / 2);
}
#design_price_list > li:not(:nth-last-of-type(-n+2)) {
	margin-bottom: 30px;
}
#design_price_list .price_box_btm {
	padding: 20px;
	min-height: 250px;
}
.price_list .commission span {
	font-size: 1.6rem;
}
#design_price_list .commission {
	padding: 0;
}
#design_price_list .price_innerlist02 {
	margin-top: 30px;
}
#design_content01 .workslist_link {
	padding-bottom: 0;
}
#design_content_box_inner01 {
	padding-bottom: 0;
}

/*===============================
 PAGE-ABOUT
===============================*/
.about_content {
	padding: 0 0 50px;
}
#about_content01 {
	padding: 100px 0 50px;
}
.about_content_box h2 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #3FA7FC;
	padding-bottom: 10px;
	border-bottom: 3px solid #3FA7FC;
}
.about_content_box_inner {
	padding: 60px 0;
}
.about_content_box_inner .profile_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.about_content_box_inner .profile_box > p {
	width: 46%;
	color: #3FA7FC;
}
.about_content_box_inner .profile_box > img {
	width: 46%;
	color: #3FA7FC;
}
#profile_name {
	font-size: 2.2rem;
	display: inline-block;
    margin-bottom: 10px;
}
.about-list {
    width: 96%;
    max-width: 970px;
    margin: 20px auto 0 auto;
}
.about-list li {
    border-bottom: 1px solid #3FA7FC;
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
}
.about-list dl {
    display: flex;
    justify-content: space-between;
}
.about-list dt {
    width: 20%;
    padding: 0 0 0 50px;
	color: #3FA7FC;
}
.about-list dd {
    width: 75%;
	color: #3FA7FC;
}

/*===============================
 PAGE-CONTACT
===============================*/
#page-contact h2.sectitle02 {
	text-align: center;
	margin-bottom: 50px;
}
#contact-area {
	background-color: rgba(107, 150, 109,.05);
	padding: 50px 0 100px;
}
.contact_txt {
	text-align: center;
	margin-bottom: 100px;
	font-weight: 600;
    color: #3FA7FC;
    line-height: 2.2;
}
#page-contact .form-list {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 30px auto;
}
#page-contact .form-list dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 0 30px 0;
}
#page-contact .form-list li:not(:last-of-type) dl dt {
    padding: 10px 0;
}
#page-contact .form-list dt {
    width: 30%;
}
#page-contact .form-list dd {
    width: 66%;
}
#page-contact .form-list input[type='text'], #page-contact .form-list input[type='email'], #page-contact .form-list textarea {
    width: 100%;
    border: 1px solid #666;
    background: #fff;
    padding: 10px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	font-size: 1.6rem;
}
#page-contact .form-list input[type='text'], input[type='email'] {
    height: 50px;
}
.mandatory {
	padding: 4px 10px 5px;
    background-color: #FAC60E;
    color: #121212;
    font-size: 1.3rem;
    margin-left: 10px;
}
#page-contact .form-list dt label {
	font-size: 1.6rem;
	color: #3FA7FC;
}
.contact-form {
    max-width: 900px;
    width: 90%;
    margin: 0px auto 30px;
}
.contact-form .required.required01 {
	margin-bottom: 13px;
}
.contact-form .required span {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #F58220;
	border-radius: 3px;
	width: 70px;
	min-height: 26px;
	font-size: 1.4rem;
	color: #F58220;
	line-height: 1;
}
.contact-form th {
    text-align: left;
    padding: 50px 0 20px;
	font-size: 1.6rem;
	line-height: 2;
	vertical-align: middle;
	border-bottom: 1px solid #6B966D;
	min-width: 175px;
}
.contact-form td {
    padding: 50px 0 20px;
	vertical-align: bottom;
	border-bottom: 1px solid #6B966D;
}
.contact-form textarea, .contact-form .inputtext {
    width: 100%;
    border: solid 1px #333333;
	border-radius: 14px;
    padding: 10px 20px;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: 2;
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
}
.inputtext_item, .inputtext_item p {
	min-height: 54px;
}
.inputtext_item p {
	display: flex;
	align-items: center;
}
.inputtextarea_item p {
	min-height: 182px;
}
#contact_txt_btm {
	text-align: center;
	font-size: 1.2rem;
    line-height: 2;
	font-weight: 400;
	margin-bottom: 50px;
}
.contact_txt_privacylink {
	text-decoration: underline;
	transition: 0.5s;
}
.contact_txt_privacylink:hover {
	text-decoration: none;
}
.submit-btn {
    text-align: center;
}
input[type="submit"].mainsubmit {
	font-size: 1.8rem;
    padding: 20px 0;
    width: 300px;
    border: 2px solid #3FA7FC;
    background-color: #3FA7FC;
    cursor: pointer;
    transition: .5s;
	color: #fff;
}
input[type="submit"].mainsubmit:hover {
	background-color: #fff;
	color: #3FA7FC;
	border: 2px solid #3FA7FC;
}
input[type="submit"].mainback {
	background-color: #fff;
    width: 350px;
    border: 1px solid #333;
    padding: 10px;
    margin: 0px auto;
    display: block;
    color: #333;
    font-size: 1.8rem;
	line-height: 2;
	min-height: 72px;
	transition: 0.5s;
}
input[type="submit"].mainback:hover {
	background-color: #fff;
}

/* ラジオボタン */
.mwform-radio-field span.mwform-radio-field-text {
	cursor: pointer;
	padding-left: 35px;
	position: relative;
}
.mwform-radio-field span.mwform-radio-field-text::before,
.mwform-radio-field span.mwform-radio-field-text::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}
.mwform-radio-field span.mwform-radio-field-text::before {
	background-color: #fff;
	border: 1px solid #3FA7FC;;
	height: 20px;
	width: 20px;
	left: 5px;
} 
.mwform-radio-field span.mwform-radio-field-text::after {
	background-color: #3FA7FC;;
	opacity: 0;
	height: 16px;
	width: 16px;
	left: 7px;
}
input:checked + span.mwform-radio-field-text::after {
	opacity: 1;
}
.visually-hidden {
	position: absolute;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 30px !important;
}

/* 入力内容の確認 */
#page-contact.confirm .contact-form td {
	width: 80%;
    padding: 20px;
	line-height: 2;
}
#page-contact.confirm .inputtext_item, #page-contact.confirm .inputtext_item p, #page-contact.confirm .inputtextarea_item p {
    min-height: auto;
}
#page-contact.confirm .required {
	margin-bottom: 13px;
}
#page-contact.confirm #content_textarea th {
	vertical-align: top;
}
#page-contact.confirm #content_textarea td {
	padding: 85px 20px 20px;
}
#page-contact.confirm .submit-btn {
	display: flex;
    justify-content: center;
}
#page-contact.confirm input[type="submit"].mainsubmit {
	margin: 0px 50px 0 0;
    width: 350px;
}
#page-contact.confirm input[type="submit"].mainback {
	margin: 0;
}

/* 送信完了 */
#page-contact.thanks {
    padding: 200px 0 120px;
}
#apply_head {
	text-align: center;
    font-size: 2.4rem;
    margin-bottom: 30px;
}
#apply_txt {
	text-align: center;
	margin-bottom: 50px;
}
#apply_btn_link {
	background-color: #fff;
    width: 350px;
    border: 1px solid #3FA7FC;
    margin: 0px auto;
    color: #3FA7FC;
    font-size: 2.0rem;
    line-height: 2;
    min-height: 80px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#apply_btn_link:hover {
	background-color: #3FA7FC;
	color: #fff;
}

/* 入力エラー */
#page-contact.error .contact-form {
	margin-top: 0;
}
#page-contact.error .contact-form > tbody > tr:first-of-type th {
	padding-top: 0;
}
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 {
	text-align: center;
	padding: 50px 0;
	font-size: 3.4rem;
}
#page-contact.error .contact_txt, #page-contact.confirm .contact_txt {
	margin-bottom: 50px;
}

@media screen and (min-width: 768px) and (max-width: 773px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 40px !important;
	}
}
@media screen and (min-width: 774px) and (max-width: 819px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 8px !important;
	}
}
@media screen and (min-width: 820px) and (max-width: 1024px) {
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 20px !important;
	}
}

/*===============================
 PAGE-PRIVACY
===============================*/
#mv_privacy {
    padding-top: 80px;
}
#mv_privacy .pagetitle {
	text-align: center;
}
#mv_privacy .pagetitle .pagesubtit {
	font-size: 7.0rem;
	margin-bottom: 20px;
	color: #fff;
}
#mv_privacy .pagetitle .pagetit {
	font-size: 2.0rem;
	color: #fff;
}
#privacy .container {
	max-width: 900px;
}
#privacy_toptxt {
	margin-bottom: 40px;
}
.privacy_inner {
    padding: 40px 0;
    border-bottom: 1px solid #707070;
}
.privacy_inner h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.2em;
    padding-left: 15px;
    border-left: 5px solid #707070;
    margin-bottom: 30px;
}
.privacy_content p {
    letter-spacing: 0.1em;
    text-align: justify;
}
.privacy_inner > ul {
	padding-left: 55px;
}
.privacy_inner > ul > li {
	position: relative;
}
.privacy_inner > ul > ul {
	padding-left: 45px;
}
.privacy_inner ul > li:not(:last-of-type) {
	margin-bottom: 20px;
}
.privacy_inner > ul > ul > li {
	position: relative;
	margin-bottom: 20px;
}
.privacy_inner > p:not(:last-of-type) {
	margin-bottom: 15px;
}
.privacy_num {
	position: absolute;
	font-size: 2.4rem;
	left: -35px;
    top: -8px;
}
#privacy_btm {
	margin-top: 40px;
	text-align: right;
}
#privacy_contact_info {
	text-align: left;
}

/*===============================
 ARCHIVE-WORKS
===============================*/
.pagebox_tit {
	background-color: #3FA7FC;
    color: #fff;
    font-size: 3.0rem;
    font-weight: 700;
    padding: 20px 30px;
    line-height: 1;
}
.page-works {
	padding: 100px 0;
}
.page-works section.page-works_box {
	padding: 0;
}
.page-works_box_inner {
	padding: 60px 0;
}
.itemlist {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.itemlist > li {
	width: 320px;
	margin-bottom: 50px;
}
.itemlist > li:not(:nth-of-type(3n)) {
	margin-right: calc((100% - 960px) / 2);
}
.itemlist .thumbnail {
	padding-top: 68%;
    background-size: cover;
    background-position: center;
}
.itemlist .item_btm {
	padding: 15px 0;
}
#works_box_web .itemlist .item_btm {
	padding: 5px 0 15px;
}
.itemlist .tag {
	margin-bottom: 10px;
}
.itemlist .tag span {
	display: inline-block;
	font-size: 1.2rem;
	color: #3FA7FC;
	font-weight: 500;
	background-color: #fff;
	border: 1px solid #3FA7FC;
	border-radius: 25px;
	min-width: 150px;
    padding: 1px 15px 1px;
    text-align: center;
}
.itemlist .item_tit {
	font-size: 1.7rem;
	color: #3FA7FC;
	font-weight: 600;
	line-height: 1.5;
}

/*===============================
 ARCHIVE-NEWS
===============================*/
.page-news.container {
	padding: 100px 0;
}
.page-news .itemlist .item_btm {
	padding: 15px 10px;
}
.itemlist .item_date {
	font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #3FA7FC;
}
.page-news .itemlist .item_tit {
    font-size: 1.7rem;
    line-height: 1.6;
}

/*===============================
 ARCHIVE-BLOG
===============================*/
.page-blog {
	display: flex;
    justify-content: space-between;
    padding: 70px 0;
    position: relative;
}
.page-blog main {
    width: 72%;
    position: relative;
    z-index: 1;
}
.page-blog .r_sidebar {
    width: 23%;
    position: relative;
    z-index: 1;
}
.bloglist {
    display: flex;
    flex-wrap: wrap;
}
.bloglist li {
    width: calc((100% - 50px) / 2);
    margin-bottom: 50px;
}
.bloglist > li:not(:nth-of-type(2n)) {
    margin-right: 50px;
}
.pagecattit {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    font-weight: 200;
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* sidebar */
.r_sidebar section {
	padding: 0 0 100px;
}
.r_sidebar section h2 {
	font-size: 2.2rem;
    letter-spacing: 0.1em;
	font-weight: 500;
	text-align: center;
	border-bottom: 2px solid #3FA7FC;
	padding-bottom: 10px;
	margin-bottom: 40px;
	color: #3FA7FC;
}
.catlist li {
	text-align: center;
}
.catlist > li:not(:last-of-type) {
	margin-bottom: 15px;
}
.catlist li a {
	font-size: 1.8rem;
}
.r_sidebar .archive-article h2 {
	font-size: 1.7rem;
	font-weight: 400;
	text-align: left;
	border: none;
	margin-bottom: 0;
	color: #333;
}
.poplist > li:not(:last-of-type) {
	margin-bottom: 30px;
}
.poplist .archive-article_tit {
	min-height: auto;
}

/*===============================
 SINGLE
===============================*/
.single-page {
	padding: 150px 0 100px;
	margin-bottom: 100px;
}
.single-main .container {
	max-width: 890px;
}
.single-main .article_date {
	font-style: normal;
	font-size: 2.0rem;
	font-weight: 200;
	letter-spacing: 0.1em;
	color: #3FA7FC;
	text-align: left;
	margin-bottom: 10px;
}
.single-main .article_tit {
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
    margin: 0 auto 50px;
	color: #3FA7FC;
	padding-bottom: 30px;
    border-bottom: 3px solid #3FA7FC;
}
.single-main .mainimg {
	max-width: 600px;
    margin: 0 auto 30px;
}

/* content */
.article_content h2 {
	font-size: 2.0rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.7;
	padding: 15px 30px;
	margin: 50px 0 25px;
	position: relative;
	border-radius: 10px;
	background-color: #3FA7FC;
	color: #fff;
}
.article_content h3 {
	font-size: 2.0rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
    padding: 3px 20px 5px;
    margin: 40px 0 20px;
    border-left: 7px solid #3FA7FC;
    position: relative;
}
.article_content h4 {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2.125;
	padding-bottom: 5px;
	margin-bottom: 20px;
	position: relative;
}
.article_content h5 {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2.125;
	padding-bottom: 5px;
	margin-bottom: 20px;
	position: relative;
}
.article_content h6 {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2.125;
	padding-bottom: 5px;
	margin-bottom: 20px;
	position: relative;
}
.article_content .opening span.red {
	color: #ff0000;
}
.article_content .opening span.strong {
	font-weight: 700;
}
.article_content span.under_marker {
	background: linear-gradient(transparent 70%, #fff599 70%);
}
.aligncenter {
    clear: both;
}
.article_content .alignleft {
	float: right;
}
.article_content .alignright {
	float: right;
}
.article_content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7px;
}
.article_content img {
	border: none !important;
}
.article_content img.alignleft {
	margin: 7px 24px 7px 0;
}
.article_content img.alignright {
	margin: 7px 0 7px 24px;
}
.article_content img.aligncenter {
	margin-top: 7px;
    margin-bottom: 7px;
}
.article_content img.size-medium { width: 260px; }
.article_content p {
	font-weight: 400;
	margin-bottom: 20px;
	color: #3FA7FC;
}
.article_content p strong {
	font-weight: 700;
}
.article_content p em {
	font-style: italic;
}
.article_content p a {
	color: #1a0dab;
	text-decoration: underline;
}
.article_content p a:hover {
	text-decoration: none;
}
.article_content ul { margin-bottom: 20px; }
.article_content ol {
	padding-left: 25px;
}
.article_content ul > li {
	padding-left: 20px;
	position: relative;
	font-weight: 400;
}
.article_content ul > li:before {
	content: '・';
	position: absolute;
	left: 0;
}
.article_content ul > li > p {
	margin-bottom: 5px;
}
.article_btmlink {
	display: flex;
	margin-top: 70px;
}
.article_btmlink > div {
	width: 50%;
	min-height: 130px;
	position: relative;
}
.article_btmlink > div.back {
	border-right: 3px solid #3FA7FC;
}
.article_btmlink > div > a {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 2.4rem;
    font-weight: 200;
	color: #3FA7FC;
}
.single-main_btm {
	margin-top: 100px;
}
.single-main_btm .linkbtn {
	margin: 0 auto;
	background-color: #fff;
	color: #3FA7FC;
}
.single-main_btm .linkbtn:hover {
	background-color: #3FA7FC;
	color: #fff;
}
.gallery-columns-2 > dl.gallery-item {
	width: 49% !important;
}
.gallery-columns-2 > dl.gallery-item:not(:nth-of-type(2n)) {
	margin-right: 2%;
}
.gallery-columns-3 > dl.gallery-item {
	width: 32% !important;
}
.gallery-columns-3 > dl.gallery-item:not(:nth-of-type(3n)) {
	margin-right: 2%;
}
.gallery-columns-4 > dl.gallery-item {
	width: 24% !important;
}
.gallery-columns-4 > dl.gallery-item:not(:nth-of-type(4n)) {
	margin-right: calc( 4% / 3 );
}
.gallery-columns-5 > dl.gallery-item {
	width: 19% !important;
}
.gallery-columns-5 > dl.gallery-item:not(:nth-of-type(5n)) {
	margin-right: calc( 5% / 4 );
}
.gallery-columns-6 > dl.gallery-item {
	width: 16% !important;
}
.gallery-columns-6 > dl.gallery-item:not(:nth-of-type(6n)) {
	margin-right: calc( 4% / 5 );
}
.gallery-columns-7 > dl.gallery-item {
	width: 14% !important;
}
.gallery-columns-7 > dl.gallery-item:not(:nth-of-type(7n)) {
	margin-right: calc( 2% / 6 );
}
.gallery-columns-8 > dl.gallery-item {
	width: 12% !important;
}
.gallery-columns-8 > dl.gallery-item:not(:nth-of-type(8n)) {
	margin-right: calc( 4% / 7 );
}
.gallery-columns-9 > dl.gallery-item {
	width: 10% !important;
}
.gallery-columns-9 > dl.gallery-item:not(:nth-of-type(9n)) {
	margin-right: calc( 10% / 8 );
}

/* single-column-content */
#single-column .article_content .article_cta { background-color: #ecf2f4; padding: 30px 40px 40px; border-radius: 15px; }
#single-column .article_content h4 { text-align: center; font-size: 20px; color: #3FA7FC; font-weight: bold; border-bottom: solid 2px #3FA7FC; }
.article_cta_btn { display: block; text-align: center; }
.article_cta_btn > a { display: inline-block; background-color: #FAC60E; padding: 17px 50px; line-height: 1.6; text-align: center; border-radius: 50px; font-weight: 700; border: 2px solid #FAC60E; }
.article_cta_btn > a:hover { background-color: #fff; color: #FAC60E; }

/*===============================
 SINGLE-WORKS
===============================*/
.single-works .article_tit_area {
	padding-bottom: 20px;
	border-bottom: 3px solid #3FA7FC;
	margin-bottom: 50px;
}
.single-works .article_tag {
	margin-bottom: 10px;
}
.single-works .article_tag span {
	display: inline-block;
	font-size: 1.2rem;
	color: #3FA7FC;
	font-weight: 500;
	background-color: #fff;
	border: 1px solid #3FA7FC;
	border-radius: 25px;
	min-width: 150px;
    padding: 1px 15px;
    text-align: center;
}
.single-works .article_tit {
	padding-bottom: 0;
	margin-bottom: 10px;
	border-bottom: none;
}
.article_tit_area .article_reference {
	color: #3FA7FC;
}
.article_tit_area .article_reference .sitelink {
	text-decoration: underline;
}
.article_tit_area .article_reference .sitelink:hover {
	text-decoration: none;
}
.cta.cta_works {
	padding: 50px 0;
}
.cta.cta_works .linkbtn {
	font-size: 2.0rem;
	width: 500px;
	min-height: 90px;
}
.single-main_btm_works {
	margin-top: 80px;
}

/*===============================
 SINGLE-COLUMN
===============================*/
.single-blog {
	display: flex;
    justify-content: space-between;
    padding: 100px 0;
    position: relative;
}
.single-blog main {
    width: 72%;
    position: relative;
    z-index: 1;
}
.single-blog .r_sidebar {
    width: 23%;
    position: relative;
    z-index: 1;
}

/* single-column */
#single-column {
	padding: 40px 0 50px;
    margin-top: 80px;
}
#single-column .single-main .article_date {
	display: none;
}
#single-column .single-main .article_tit {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
    margin: 0 auto 30px;
	padding-bottom: 0;
	color: #333;
	border-bottom: none;
}
#single-column .article_content p {
	color: #333;
}
#single-column .mainimg img {
	display: block;
	margin: 0 auto;
}

/* 目次 */
.toc__container {
	background: #ecf2f4;
    padding: 20px 40px 25px;
    border-radius: 15px;
	margin-bottom: 30px;
}
.toc__container a {
	text-decoration: none;
	color: #333333;
}
.toc__container li.toc__item {
	transition: 0.5s;
	margin: 5px 0;
}
.toc__container li.toc__item--h2::marker {
	content: '';
}
.toc__container li.toc__item--h3::marker {
	content: '・';
}
.toc__container li.toc__item--h2 > a.toc__link:hover, .toc__container li.toc__item--h3 > a.toc__link:hover {
	color: #3FA7FC;
}
.toc__container .toc__title {
	font-weight: 700;
    font-size: 2.0rem;
    margin-bottom: 5px;
}
.article_content ol.toc__list {
	margin-bottom: 0;
	padding-left: 0;
}
.article_content ol.toc__sublist {
	margin-bottom: 10px;
}
.article_content ol.toc__sublist li.toc__item--h3 {
	font-weight: 400;
}
.article_content ol.toc__list > ol.toc__sublist {
	margin-bottom: 0;
}

/*===============================
 footer
===============================*/
#footer {
	position: relative;
	padding-top: 70px;
}
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 70px;
    height: 67px;
	display: none;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20px;
    cursor: pointer;
}
.openbtn span:nth-of-type(1), .openbtn span:nth-of-type(2) , .openbtn span:nth-of-type(3) {
	height: 1px;
    background: #fff;
    width: 40%;
    opacity: 1;
}
.openbtn span:nth-of-type(1) {
    top: 30px;
}
.openbtn span:nth-of-type(2) {
	top: 32px;
	opacity: 0;
}
.openbtn span:nth-of-type(3) {
    top: 38px;
}
.openbtn.active span:nth-of-type(1) {
    top: 26px;
    left: 28px;
    transform: translateY(6px) rotate(-45deg);
	width: 30%;
	opacity: 1;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 38px;
    left: 28px;
    transform: translateY(-6px) rotate(45deg);
	width: 30%;
	opacity: 1;
}
.footer_menu_logo {
	text-align: center;
	margin-bottom: 30px;
}
.footer_menu_logo a { display: inline-block; }
.footer_menu_logo a img { width: 160px; }
.footer_info {
	text-align: center;
}
.footer_info .corp_name {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
}
.footer_info .address {
	margin-bottom: 10px;
}
.footer_info .privacy_link {
	font-size: 1.4rem;
	font-weight: 400;
	text-decoration: underline;
}
.footer_info a.privacy_link:hover {
	text-decoration: none;
}
.footer_menu {
	margin-bottom: 80px;
}
.footer_menu > ul {
	display: flex;
	justify-content: center;
}
.footer_menu > ul > li > a {
	margin: 0 40px;
	font-size: 1.6rem;
	line-height: 1;
}
.copyright {
	text-align: center;
	padding: 30px 0;
}
.copyright small {
	font-size: 1.2rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #707070;
}
#page-top {
    position: fixed;
    right: 0;
    top: 200px;
	z-index: 100;
}
#page-top a {
	color: #fff;
	display: inline-block;
	padding: 30px;
	background-color: rgb(90, 73, 87);
	text-align: center;
	border-radius: 50px 0 0 50px;
}
#page-top a span {
	font-size: 2.6rem;
	font-weight: 600;
}

/* page-zinzai */
.page-zinzai #footer {
	padding-top: 30px;
}
.page-zinzai .footer_menu {
	display: none;
}
.page-zinzai .footer_inner01 {
	display: none;
}
.page-zinzai .copyright {
	background-color: #3FA7FC;
	padding: 10px 0;
}
.page-zinzai .copyright small {
	color: #fff;
}

/*========= グローバルナビゲーションのためのCSS ===============*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#3FA7FC;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:15px 0;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
	line-height: 1.85;
}
#g-nav li a#c_btn {
	color: #121212;
	background-color: #FAC60E;
	border: 2px solid #FAC60E;
	width: 200px;
    margin: 0 auto;
	border-radius: 30px;
	margin-top: 20px;
}

@media screen and (max-width: 1024px) {
	.openbtn {
		display: block;
	}
}


/*===============================
 ページネーション
===============================*/
.pagination {
	margin: 100px 0 0;
	text-align: center;
}
.nav-links {
	font-style: normal;
    font-size: 2.0rem;
    font-weight: 700;
	letter-spacing: 0.2em;
}
.nav-links > span {
	margin: 0 15px 0;
	color: #F58220;
}
.nav-links > a {
	margin: 0 15px 0;
}
.page-numbers {
	font-weight: 300;
}

/*===============================
 404
===============================*/
#mv_notfound {
	padding-top: 80px;
}
#notfound {
	padding: 80px 0;
}
#no-found_tit {
	font-size: 5.0rem;
	text-align: center;
}
#notfound .container p {
	text-align: center;
    margin-bottom: 50px;
}
#notfound .linkbtn {
	margin: 0 auto;
	background-color: #3FA7FC;
}
#notfound .linkbtn:hover {
	background-color: #fff;
	color: #3FA7FC;
}

@media screen and (max-width: 767px) {
/*===============================
 Font
===============================*/
p, li, dt, dd, th, td {
	font-size: 1.5rem;
	line-height: 2.13;
}

/*===============================
 Layout
===============================*/
.container { width:100%; padding: 0 7%; }
.left-container, .right-container { width: 93%; }
section {padding:50px 0; }
.pagetitle { padding: 117px 0 0 0; }
.pagetit {font-size: 2.4rem; font-weight: 700;}
.pagesubtit {font-size: 2.4rem; margin-bottom: 0;}
.sectitle01 {font-size: 4.0rem;}
.sectitle02 {font-size: 2.8rem;}
.linkbtn {width: 300px;min-height: 60px;}
.cta { padding: 20px 0 70px; }
.cta.btm { padding-bottom: 70px; }
.cta .linkbtn { width: 320px; min-height: 70px; font-size: 1.8rem; }

/*===============================
 COMMON
===============================*/
/* contact */
.contact .contact_inner .top_sectit { margin-bottom: 30px; }
.contact .contact_inner .linkbtn {
	width: 100%;
	font-size: 1.6rem;
	min-height: 60px;
}
.contact .contact_inner p {
	text-align: center;
	margin-bottom: 30px;
}

/*===============================
 header
===============================*/
#header {
	min-height: 67px;
}
#header .header_logo {
	top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 65px;
}

/*===============================
 MV
===============================*/
#mv {
	height: 100vh;
}
#mv:before {
	background-image: url(images/top_mv2_sp.jpg);
	filter: blur(3px);
}
#mv .container {
	height: 100vh;
}
.mv_tit {
	font-size: 3.4rem;
	margin-bottom: 30px;
	color: #fff;
	-webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: none;
}
.mv_tit span {
	-webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: none;
}
.mv_txt {
	font-size: 2.0rem;
	color: #fff;
	-webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: none;
}
.mv_btn {
	min-height: 70px;
}
.mv_btn_zinzai {
	line-height: 1.5;
	margin-bottom: 30px;
}
.mv01 {
    padding: 50px 0;
	margin-top: 67px;
}
.mv01 .pagetitle {
	padding: 0;
}
.mv02 .pagetitle {
    padding: 40px 0;
}
#mv_line .pagetitle {
    padding: 0;
}
.mv02 .pagetit {
	font-size: 4.4rem;
	margin-bottom: 10px;
}
#mv_line {
	padding: 35px 0;
}
#mv_line .pagetitle_img {
    width: 150px;
	top: -13px;
	right: -4%;
}
#mv_ec .pagetitle_img {
	width: 100px;
	right: 5%;
    top: -41px;
}
#mv_homepage .pagetitle_img {
    width: 100px;
    right: 7%;
	top: -39px;
}
#mv_design .pagetitle_img {
    width: 125px;
	right: 8%;
	top: -27px;
}
#mv_about .pagetitle_img {
    width: 130px;
	top: 30px;
}
#mv_works .pagetitle_img {
	width: 130px;
	top: 10px;
}
#mv_news .pagetitle_img {
	width: 120px;
	top: 12px;
}
#mv_contact .pagetitle_img {
	width: 110px;
	top: 24px;
}
#mv_column { padding-top: 67px; }
#mv_column .pagetitle { padding: 20px 0 40px; }
#mv_column .pagetitle_img { width: 143px; right: 7%; top: 10px; }
.mv_img_area {
    padding: 20px 0 30px;
}
.mv_qr {
	position: relative;
	left: auto;
	bottom: auto;
}
.demo_sp_img {
	position: absolute;
    right: 0;
    bottom: 21px;
    width: 200px;
}

/*===============================
 トップページ
===============================*/
.top_sectit {
    margin-bottom: 50px;
}
.top_sectit h2 {
    font-size: 1.6rem;
}
.left_box {
	width: 100%;
}
.subtit {
	font-size: 2.0rem;
}
.more_btn {
	font-size: 1.6rem;
	width: 320px;
	text-align: center;
	line-height: 1.5;
	margin: 0 auto;
}
.more_btn::before {
	right: -113px;
    width: 108px;
}
.more_btn::after {
	top: 56%;
    right: -110px;
    height: 6px;
}

/* front-TOP */
#front-top {
	padding: 50px 0;
}
#front-top .container {
	padding: 0 5%;
}
#front_btn {
	width: 320px;
    min-height: 70px;
	font-size: 1.6rem;
	margin: 0 auto 30px;
}
#front_btn span {
	font-size: 2.2rem;
}
#front-top_txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.13;
	margin-bottom: 30px;
}
#front-top_txt02 {
	font-size: 1.9rem;
    line-height: 1.75;
	margin-bottom: 20px;
}
.front-top_more_btn {
	min-height: 70px;
}

/* SERVICE */
#top_service {
	padding-bottom: 50px;
}
.top_service_box {
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 80px;
}
.top_service_box .img_box {
    width: 100%;
	position: absolute;
    top: 70px;
}
.top_service_box01 .img_box {
	top: 102px;
}
.top_service_box .txt_box {
	width: 100%;
	padding-top: 0;
}
.top_service_box .txt_box h3 {
	font-size: 2.4rem;
	margin-bottom: 330px;
}
.top_service_box .txt_box p {
	margin-bottom: 40px;
}

/* WORKS */
.itemlist > li {
    width: 100%;
    margin-bottom: 40px;
}
.itemlist > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
.top_works_content {
    margin-bottom: 0;
}

/* ABOUT */
#top_about .top_sectit { margin-bottom: 30px; }
#top_about_txt01 { margin-bottom: 30px; }

/* NEWS */
.top_news_content {
    margin-bottom: 0;
}

/* BLOG */
.bloglist > li {
    width: 100%;
	margin-bottom: 50px;
}
.bloglist > li:not(:nth-of-type(2n)) {
    margin-right: 0px;
}
.archive-article_date {
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.archive-article_top .category {
	padding: 3px 10px 0;
}
.archive-article_tit {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.archive-article_tit h2 {
	line-height: 2;
	font-weight: 500;
}

/*===============================
 PAGE-SERVICE
===============================*/
/* zinzai */
#mv_zinzai {
	padding: 10px 0 30px;
}
#mv_zinzai .container {
	padding: 0 5%;
}
.mv_zinzai_txt01 {
	font-size: 2.0rem;
    margin-bottom: 15px;
    line-height: 1.666;
}
#mv_zinzai_maintxt {
	padding: 0;
	margin-bottom: 20px;
}
#mv_zinzai_maintxt .pagetit {
	font-size: 3.1rem;
}
.mv_zinzai_point_box {
	padding: 10px 15px;
}
.mv_zinzai_point_box01 {
	font-size: 1.3rem;
    line-height: 1.666;
}
.mv_zinzai_point_box01 span {
    font-size: 1.8rem;
}
#mv_zinzai_point_x {
	padding: 3px 0 6px;
	font-size: 4rem;
}
.mv_zinzai_point_box02 {
    font-size: 1.9rem;
}
.mv_zinzai_point_box03 {
    font-size: 1.4rem;
}
.mv_zinzai_point_right .mv_zinzai_point_box01, .mv_zinzai_point_right .mv_zinzai_point_box02 {
    margin-bottom: 15px;
}
.zinzai_contact_form {
    width: 100%;
    padding: 25px 20px;
}
.mv_zinzai_left {
	margin-bottom: 30px;
}
#zinzai_content01 {
	padding: 30px 0;
}
#zinzai_content01 .container {
	padding: 0 5%;
}
#zinzai_content01 #service_content_box_inner01_list02 {
	margin-top: 30px;
}
#zinzai_content01 #service_content_box_inner01_list02 > li {
	width: 100%;
}
#zinzai_content01 #service_content_box_inner01_list02 > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#zinzai_content01 #service_content_box_inner01_list02 > li:not(:last-of-type) {
	margin-bottom: 20px;
}
#zinzai_content01 #service_content_box_inner01_list02 .list_frame02 {
	padding: 25px;
}
.list_item01 .list_item01_content01 {
	width: 100%;
	margin-bottom: 20px;
}
.list_item01 .list_item01_content01_img {
	width: 100%;
}
.list_item_content01_tit {
	font-size: 1.9rem;
	margin-bottom: 10px;
}
#service_content_box_inner02_list01 > li:not(:last-of-type) {
    margin-bottom: 35px;
}
.case_box {
	padding: 120px 20px 20px;
}
.case_box_titarea {
	width: 100%;
	left: 0px;
	border-left: none;
    border-right: none;
}
.case_box_titarea_cat {
	font-size: 1.8rem;
}
.case_box_titarea_tit {
	font-size: 3.0rem;
}
.case_box_titarea_right {
    width: 54px;
}
.case_box_left {
    width: 100%;
    order: 2;
}
.case_box_right {
    width: 100%;
    order: 1;
	margin-bottom: 20px;
}
.case_box_effect {
	margin-bottom: 0;
	font-size: 1.85rem;
	line-height: 1.5;
}
.case_box_effect span {
	font-size: 3.0rem;
	display: inline-block;
    margin-bottom: 10px;
}
.case_box_effect_img {
	width: 120%;
    margin-left: -10%;
}
.case_box_ex {
    padding-top: 0;
}
.case_box_ex_tit {
	font-size: 2.0rem;
}
.case_box_ex_list > li {
	line-height: 2;
}
.planlist {
	padding: 0px 10%;
    flex-wrap: wrap;
}
.planlist > li {
	width: 100%;
}
.planlist > li:not(:last-of-type) {
	margin-bottom: 30px;
}
.planlist > li h4 {
	min-height: auto;
}
.service_content_box_inner_left {
    margin: 0 0 30px 0;
    width: 100%;
}
.service_content_box_inner_left_tit {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
.service_content_box_inner_left_subtit {
	font-size: 2.0rem;
	margin-bottom: 5px;
}
.zinzai_contact_list > li {
	font-size: 1.6rem;
    padding-left: 20px;
}
.service_content_box_inner_right {
	width: 100%;
}
#zinzai_contact_inner {
	padding: 25px 0 0;
}
#mv_zinzai .scrolldown4 {
	display: none;
}

/* line */
#line_content01 {
	padding: 30px 0 50px;
}
#service_content_box_inner01_list > li {
	width: 100%;
	margin-bottom: 30px;
}
.service_content_arrow {
	width: 80%;
	margin: 20px auto 30px;
}
.service_content_em_txt {
	font-size: 2.4rem;
}
.service_content_box_inner_flex .left {
    width: 100%;
	margin-bottom: 30px;
}
#line_content01_box02_tit {
	font-size: 2.2rem;
	margin-bottom: 15px;
}
.service_content_box_inner_flex .right {
    width: 100%;
}
#effect_list {
	margin-top: 30px;
}
#effect_list > li {
	width: 100%;
    font-size: 1.8rem;
}
#effect_list > li:nth-last-of-type(n+4) {
    margin-bottom: 0px;
}
#effect_list > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#effect_list > li:not(:last-of-type) {
	margin-bottom: 10px;
}
.list_frame01 {
	min-height: 70px;
}
#line_content01_box03 {
	margin: 0 auto 30px;
}
#b_txt01 {
	font-size: 4.8rem;
	margin: 15px 0;
}

/* ec */
#ec_intro {
	font-size: 2.2rem;
	margin-top: 50px;
}
.service_content01_tit {
	font-size: 2.7rem;
	margin-bottom: 40px;
}
.service_content01_tit span {
	width: 100%;
	padding-bottom: 10px;
}
.service_content_box h3 {
	font-size: 2.0rem;
	padding: 14px 20px;
	line-height: 1.35;
}
.service_content_box_inner {
    padding: 25px 0 40px;
}
#service_content_box_inner01 {
	padding: 20px 0 40px;
	flex-wrap: wrap;
}
#service_content_box02 .service_content_box_inner {
    padding-bottom: 40px;
}
#service_content_box_inner01 .left {
    width: 100%;
	margin-bottom: 20px;
}
#service_content_box_inner01 .right {
    width: 100%;
}
#service_content_box_inner01 .txt01 {
	margin-bottom: 20px;
}
.demo_qr {
	display: block;
}
#recommend_list {
	flex-wrap: wrap;
}
#recommend_list > li {
	width: 100%;
	margin-bottom: 30px;
}
#merit_list {
	flex-wrap: wrap;
}
#merit_list > li {
	width: 100%;
}
#merit_list > li:not(:last-of-type) {
    margin-right: 0;
	margin-bottom: 20px;
}
#feature_list {
    padding: 0;
}
#feature_list > li {
	flex-wrap: wrap;
	position: relative;
}
#feature_list > li .txt {
    width: 100%;
}
#feature_list > li .txt h4 {
	font-size: 2.1rem;
	margin-bottom: 255px;
}
li#feature_list03 .txt h4 {
	margin-bottom: 270px;
}
#feature_list > li img {
    width: 100%;
	position: absolute;
	top: 50px;
}
#feature_list > li:not(:last-of-type) {
    margin-bottom: 50px;
}
.flow_img {
    padding: 30px 0;
}
.price_list {
	padding: 0;
	flex-wrap: wrap;
}
.price_list > li {
    width: 100%;
}
.price_list > li:not(:last-of-type) {
	margin-bottom: 20px;
}
#ec_content01 .price_box_btm {
    min-height: auto;
}
#ec_content02 {
	padding-top: 0;
}
#ec_content02 #ec_content02_intro {
	text-align: left;
	margin-bottom: 40px;
}
#ec_content02 .price_box_btm {
    min-height: auto;
}
#price_item01 .tax {
    padding-right: 68px;
}
#price_item02 .tax {
    padding-right: 54px;
}
#price_item03 .tax {
    padding-right: 41px;
}
#price_item04 .tax {
    padding-right: 66px;
}
#price_item05 .tax {
    padding-right: 57px;
}
#price_item06 .tax {
    padding-right: 73px;
}

/* homepage */
#point_list {
	padding: 0 10%;
	flex-wrap: wrap;
}
#point_list > li {
    width: 100%;
}
#point_list > li:not(:last-of-type) {
	margin-bottom: 30px;
}
#point_list > li h4 {
	font-size: 2.2rem;
}
#homepage_content01 {
    padding: 30px 0 50px;
}
#homepage_content01 .flow_img {
    padding: 25px 0 40px;
}
#homepage_price .service_content_box_inner {
    padding: 25px 0 0;
}
#homepage_price_list {
	margin-bottom: 20px;
}
#homepage_price_list > li {
    width: 100%;
}
#homepage_price_list .price_box_btm {
	min-height: auto;
	margin-bottom: 0;
}
#maintenance_service {
	width: 100%;
}
#maintenance_service .price_box_btm {
    padding: 25px;
}
.workslist_link {
    padding: 70px 0;
}
.workslist_link .linkbtn {
	width: 290px;
    min-height: 60px;
}
#meo_top {
    margin-bottom: 10px;
}
#meo_top span {
	font-size: 2.0rem;
}
#meo_toptit {
	font-size: 2.0rem;
	margin-bottom: 15px;
}
#meo_menu {
	flex-wrap: wrap;
}
#meo_menu .left {
    width: 100%;
	margin-bottom: 20px;
}
#meo_menu .left .meo_tit {
	margin-bottom: 0;
}
#meo_menu .right {
    width: 100%;
}

/* design */
#design_content01 {
    padding: 30px 0 50px;
}
#design_price_intro {
	margin: 0px 0 30px;
}
#design_price_list > li {
    width: 100%;
}
#design_price_list > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#design_price_list .price_box_btm {
	min-height: auto;
}

/*===============================
 PAGE-ABOUT
===============================*/
#about_content01 {
    padding: 30px 0 50px;
}
.about_content_box h2 {
	font-size: 2.0rem;
}
.about_content_box_inner {
    padding: 20px 0 0;
}
.about_content_box_inner .profile_box {
	flex-wrap: wrap;
}
.about_content_box_inner .profile_box > p {
	width: 100%;
	margin-bottom: 20px;
}
.about_content_box_inner .profile_box > img {
	width: 100%;
}
.about-list {
	margin: 10px auto 0 auto;
}
.about-list li {
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
}
.about-list dt {
	padding: 0 0 0 20px;
	width: 30%;
}
.about-list dd {
	width: 65%;
}

/*===============================
 PAGE-CONTACT
===============================*/
#page-contact .container {
	padding: 0 5vw;
}
#page-contact .form-list {
	margin: 0 auto 20px auto;
}
#page-contact .form-list dl {
	display: block;
	padding: 0;
}
#page-contact .form-list dt, #page-contact .form-list dd {
	width: 100%;
	line-height: 1.8;
}
#page-contact .form-list li:last-of-type dl dt {
    padding: 10px 0;
}
.contact_txt {
    text-align: center;
	font-size: 1.5rem;
	line-height: 2.2;
	margin-bottom: 40px;
}
span.mwform-radio-field.horizontal-item {
	display: block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
	margin-top: 8px;
}
.inputtextarea_item p {
    min-height: auto;
}
.contact-form textarea, .contact-form .inputtext {
	padding: 7px 15px;
}
#contact_txt_btm {
	letter-spacing: 0;
	margin-bottom: 30px;
}
input[type="submit"].mainsubmit {
	width: 300px;
	min-height: 60px;
}
input[type="submit"].mainback {
	width: 300px;
	min-height: 60px;
}

/* 入力内容確認 */
#page-contact.confirm {
	padding: 67px 0 50px;
}
#page-contact.error .contact_txt, #page-contact.confirm .contact_txt {
    margin-bottom: 40px;
}
#page-contact.confirm .required {
    margin-bottom: 0;
}
#page-contact.confirm .contact-form td {
	width: 100%;
	padding: 0 0 20px;
}
#page-contact.confirm #content_textarea td {
    padding: 0 0 20px;
}
#page-contact.confirm .submit-btn {
	flex-wrap: wrap;
}
#page-contact.confirm input[type="submit"].mainsubmit {
    margin: 0 0 20px;
	width: 300px;
    min-height: 60px;
}
#page-contact.confirm input[type="submit"].mainback {
	min-height: 70px;
}
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 {
	padding: 50px 0 40px;
	font-size: 3.0rem;
}

/* 送信完了 */
#page-contact.thanks {
    padding: 130px 0 100px;
}
#apply_head {
	font-size: 2.2rem;
    margin-bottom: 20px;
}
#apply_txt {
	font-size: 1.3rem;
	margin-bottom: 40px;
}
#apply_btn_link {
	width: 300px;
	min-height: 60px;
	font-size: 1.8rem;
}

/* 入力内容エラー */
#page-contact.error {
	padding: 67px 0 50px;
}
#page-contact.error .contact-form > tbody > tr:first-of-type th {
    padding-top: 20px;
}

/*===============================
 ARCHIVE-WORKS
===============================*/
.page-works {
	padding: 30px 7% 0;
}
.pagebox_tit {
	font-size: 2.0rem;
	padding: 14px 20px;
	line-height: 1.35;
}
.page-works_box_inner {
    padding: 30px 0;
}
.page-works_box_inner .itemlist > li {
	margin-bottom: 30px;
}

/*===============================
 ARCHIVE-NEWS
===============================*/
.page-news.container {
	padding: 30px 7vw;
}
.page-news .itemlist > li {
	margin-bottom: 30px;
}

/*===============================
 ARCHIVE-COLUMN
===============================*/
.page-blog { padding: 30px 7%; flex-wrap: wrap; }
.page-blog main { width: 100%; }
.bloglist > li { margin-bottom: 30px; }
.page-blog .archive-article_tit h2 { line-height: 1.75; font-size: 1.7rem; }
.page-blog .r_sidebar { width: 100%; }
.r_sidebar section h2 { margin-bottom: 30px; }
.poplist > li:not(:last-of-type) { margin-bottom: 20px; }

/*===============================
 SINGLE
===============================*/
.single-page {
	padding: 67px 0 0;
	margin-bottom: 50px;
}
.single-main .container {
	padding: 30px 7vw;
}
.single-works .article_tit_area {
	margin-bottom: 30px;
}
.single-main .article_date {
	font-size: 1.4rem;
	text-align: left;
	margin-bottom: 5px;
}
.single-main .article_tit {
	font-size: 2.2rem;
	line-height: 1.666;
	margin: 0 auto 30px;
	padding-bottom: 15px;
}
.single-main .mainimg {
    margin-bottom: 30px;
}
.cta.cta_works .linkbtn {
	font-size: 1.7rem;
    width: 320px;
    min-height: 70px;
}
.single-main_btm {
    margin-top: 0;
}

/* content */
.article_content h2 {
	font-size: 2.0rem;
	padding-bottom: 15px;
	margin: 40px auto 15px;
    line-height: 1.5;
}
.article_content h3 {
	font-size: 1.5rem;
	line-height: 1.73;
}
.article_content h4 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content h5 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content h6 {
	font-size: 1.4rem;
	line-height: 1.66;
}
.article_content p {
	margin-bottom: 10px;
}

.article_btmlink {
	margin: 50px 0;
}
.article_btmlink > div {
	min-height: 100px;
}
.article_btmlink > div.back {
    border-right: 1px solid #3FA7FC;
}
.article_btmlink > div > a {
	font-size: 1.6rem;
	width: 70%;
}
.article_btmlink > div.next > a {
	text-align: right;
}

/*===============================
 SINGLE-WORKS
===============================*/
.single-works.single-main .article_tit {
	margin: 0 auto;
	padding-bottom: 10px;
}

/*===============================
 SINGLE-COLUMN
===============================*/
.single-blog {
	padding: 50px 5% 0;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.single-blog main {
	width: 100%;
}
#single-column .single-main .article_tit { font-size: 2.2rem; margin: 0 auto 15px; }
#single-column .single-main .mainimg { margin-bottom: 15px; }
#single-column .single-main .article_content ol.toc__sublist { padding-left: 15px; }
#single-column .article_content h2 { font-size: 1.9rem; padding: 10px 20px 12px; letter-spacing: 0.03em; }
#single-column .article_content h3 { font-size: 1.7rem; padding: 2px 13px 3px; border-left: 5px solid #3FA7FC; margin: 25px 0 15px; }
#single-column .article_content h4 { font-size: 1.7rem; }
#single-column .article_content p { margin-bottom: 1em; }
#single-column .article_content .article_cta { padding: 20px 20px 25px; }
.article_cta_btn > a { border-radius: 25px; }
.single-blog .r_sidebar {
	width: 100%;
	margin-top: 100px;
}
#single-column {
	padding: 20px 5% 0;
}
#single-column .mainimg img {
	width: 100%;
}

/* sidebar */
.r_sidebar section.side_popular {
	padding: 0 0 10px;
}

/* 目次 */
.toc__container {
	padding: 15px 23px 20px;
	margin-bottom: 30px;
}
.toc__container .toc__title {
	font-size: 1.8rem;
}

/*===============================
 footer
===============================*/
#footer {
	padding-top: 40px;
}
.footer_inner01 {
    padding: 40px 0 15px;
}
.footer_menu_logo a img {
    width: 162px;
}
.footer_info .address {
	font-size: 1.6rem;
}
.footer_inner02 {
	margin: 0 7%;
	padding: 50px 0 30px;
}
.footer_menu {
	display: flex;
	padding: 0px 12%;
    justify-content: space-between;
	margin-bottom: 0;
}
.footer_menu > ul {
	display: block;
	width: auto;
}
.footer_menu > ul > li > a {
	margin: 0;
}
.footer_menu > ul > li:not(:last-of-type) {
	margin-bottom: 25px;
}
.copyright {
	line-height: 1.3;
}
.copyright small {
	font-size: 1.0rem;
	letter-spacing: 0.1em;
}

/*===============================
 ページネーション
===============================*/
.pagination {
    margin: 50px 0 20px;
}
.nav-links > span {
	margin: 0 10px 0;
}
.nav-links > a {
    margin: 0 10px 0;
}

/*===============================
 footer
===============================*/


/*===============================
 404
===============================*/
#mv_notfound {
    padding-top: 67px;
}
#mv_notfound .pagetitle {
    padding: 30px 0;
}
#notfound {
	padding: 50px 0;
}
#no-found_tit {
	font-size: 2.6rem;
}
#notfound .container p {
    margin-bottom: 30px;
}

/*===============================
 page-privacy-policy
===============================*/
#mv_privacy {
    padding-top: 67px;
}
#mv_privacy .pagetitle {
	padding: 30px 0 30px;
}
#mv_privacy .pagetitle .pagesubtit {
	font-size: 4.0rem;
}
#mv_privacy .pagetitle .pagetit {
    font-size: 1.6rem;
}
.privacy_content > div:first-of-type {
	padding-top: 0;
}
.privacy_inner {
	padding: 30px 0;;
}
.privacy_inner h2 {
	font-size: 2.0rem;
	margin-bottom: 20px;
}
.privacy_inner > ul {
    padding-left: 36px;
}
.privacy_inner > ul > ul {
    padding-left: 35px;
}
.privacy_inner ul > li:not(:last-of-type) {
    margin-bottom: 15px;
}
.privacy_num {
	top: -11px;
}
#privacy_btm {
	margin-top: 20px;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
/*===============================
 Layout
===============================*/
p, li, dt, dd, th, td { font-size: 1.4rem; line-height: 2; }
section { padding: 70px 0; }
.pagesubtit {font-size: 3.8rem;}
.pagetit {font-size: 3.8rem;}
.sectitle01 {font-size: 6.0rem;}
.sectitle02 {font-size: 3.2rem;}
.subtit {font-size: 2.2rem;}
.linkbtn {width: 330px; min-height: 70px;}
.cta { padding: 60px 0; }
.cta.btm { padding-bottom: 100px; }
.cta .linkbtn {font-size: 2.2rem;width: 500px;min-height: 90px;}
.no-tab { display: none; }

/*===============================
 header
===============================*/
#header {
	min-height: 70px;
}
#header .header_logo {
	top: 10%;
    left: 3%;
    width: 65px;
}

/*===============================
 MV
===============================*/
#mv:before {
	background-position: 70% 30%;
	filter: blur(2px);
}
.mv_tit {
	font-size: 6.0rem;
}
.mv_txt {
	font-size: 3.0rem;
}
.mv01 .pagetitle {
    padding: 100px 0;
}
#mv_line .pagetitle {
	padding: 70px 0;
}
#mv_line .pagetitle_img {
    width: 350px;
    top: 5px;
    right: -4%;
}
#mv_ec .pagetitle_img {
    width: 240px;
    right: 5%;
}
#mv_homepage .pagetitle_img {
    width: 240px;
    right: 5%;
}
#mv_design .pagetitle_img {
    width: 320px;
	right: 3%;
	top: 60px;
}
#mv_works .pagetitle_img {
    width: 300px;
    right: 3%;
	top: 33px;
}
#mv_about .pagetitle_img {
	width: 320px;
	right: 3%;
	top: 50px;
}
#mv_news .pagetitle_img {
    width: 320px;
    right: 3%;
    top: 20px;
}
#mv_column .pagetitle { padding: 15px 0 45px; }
#mv_column .pagetit { margin-bottom: 5px; }
#mv_column .pagetitle_img { width: 240px; right: 5%; top: 0px; }
#mv_contact .pagetitle_img {
    width: 300px;
    right: 2%;
    top: 30px;
}
.mv_qr {
	left: 20px;
    bottom: -150px;
}
.demo_qr {
	width: 80px;
}

/*===============================
 トップページ
===============================*/
.top_sectit {
    margin-bottom: 50px;
}
.top_sectit h2 {
    font-size: 1.8rem;
}
.more_btn {
	font-size: 1.4rem;
	width: 330px;
}
.more_btn::before {
	right: -105px;
    width: 100px;
}
.more_btn::after {
	right: -101px;
	height: 8px;
}

/* front-top */
#front-top {
	padding: 70px 0;
}
#front_btn {
	margin: 0 auto 40px;
	font-size: 1.6rem;
	width: 320px;
    min-height: 70px;
}
#front_btn span {
	font-size: 2.2rem;
}
#front-top_txt {
	font-size: 1.8rem;
}

/* SERVICE */
#top_service {
	padding: 70px 0 90px;
}
.top_service_box {
	margin-bottom: 70px;
}
.top_service_box .txt_box h3 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.top_service_box .txt_box {
	padding-top: 0;
}
.top_service_box .txt_box p {
	margin-bottom: 30px;
}

/* WORKS */
.itemlist > li {
	width: 32%;
	margin-bottom: 30px;
}
.itemlist > li:not(:nth-of-type(3n)) {
    margin-right: calc(4% / 2);
}
.itemlist .tag span {
	font-size: 1.1rem;
}
.itemlist .item_tit {
	font-size: 1.5rem;
	line-height: 1.7;
}

/* ABOUT */
#top_about_txt01 {
	margin-bottom: 50px;
}

/* NEWS */
#news .news_inner .sectit02 {
	margin-bottom: 50px;
}
#news .news_inner .sectit02 h2 {
    font-size: 1.8rem;
}
.news_inner .newslist {
	margin: 0 0 50px;
}
#news .newslist {
    margin-bottom: 50px;
}
.newslist > li > a {
	padding: 30px 80px 30px 30px;
}
.information_more {
	padding-right: 106px;
}

/* contact */
.contact {
	padding: 70px 0;
	margin: 0;
}
.contact .contact_inner .sectit02 {
	margin-bottom: 40px;
}
.contact .contact_inner .sectit02 h2 {
    font-size: 1.8rem;
}
.contact .contact_inner .sectit02 .sectitle02 {
    margin-bottom: 0;
}
.contact .contact_inner p {
	margin-bottom: 60px;
}
.contact .contact_inner .linkbtn {
	min-height: 80px;
	font-size: 1.8rem;
}

/*===============================
 PAGE-SERVICE
===============================*/
/* zinzai */
.mv_zinzai_left {
	margin-bottom: 50px;
	width: 100%;
}
.mv_zinzai_txt01 {
	font-size: 2.7rem;
    line-height: 1.6;
}
#mv_zinzai_maintxt {
    margin-bottom: 30px;
}
#mv_zinzai_maintxt .pagetit {
	font-size: 4.8rem;
}
#mv_zinzai .zinzai_contact_form {
    width: 600px;
    margin: 0 auto;
}
#service_content_box_inner01_list02 {
	justify-content: space-between;
}
#service_content_box_inner01_list02 > li {
	font-size: 1.6rem;
	padding: 25px 20px;
    border-radius: 20px;
	width: 32%;
}
#service_content_box_inner01_list02 > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#service_content_box_inner01_list02 .list_frame02 .list_frame02_tit {
    min-height: 70px;
}
.list_item_content01_tit {
	font-size: 2.2rem;
}
#zinzai_service_feature02 .list_item_content01_tit br.pc {
	display: none;
}
.case_box {
	padding: 30px;
}
.case_box_left {
    width: 42%;
}
.case_box_ex {
    padding-top: 100px;
}
.case_box_right {
    width: 53%;
}
.case_box_titarea {
	width: 330px;
}
.case_box_titarea_left {
    margin-right: 20px;
}
.case_box_titarea_cat {
	font-size: 1.9rem;
}
.case_box_titarea_tit {
	font-size: 3.4rem;
}
.case_box_titarea_right {
    width: 55px;
}
.planlist {
	padding: 0;
}
.planlist > li {
    width: 32%;
}
.planlist > li h4 {
	font-size: 2.2rem;
}
.service_content_box_inner_left {
	width: 550px;
    margin-bottom: 30px;
	margin-right: 0;
}
.service_content_box_inner_left_tit {
	margin-bottom: 10px;
}
#mv_zinzai .scrolldown4 {
	display: none;
}

/* line */
.service_content_arrow {
	margin: 50px auto 30px;
}
.service_content_em_txt {
	font-size: 3.0rem;
}
#line_content01_box02_tit {
	font-size: 2.6rem;
	margin-bottom: 20px;
}
#effect_list {
	justify-content: space-between;
}
#effect_list > li:nth-last-of-type(n+4) {
    margin-bottom: 20px;
}
#effect_list > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#effect_list > li {
	width: 32%;
	font-size: 1.6rem;
}

/* ec */
#ec_intro {
	font-size: 4.0rem;
	margin-top: 70px;
}
.service_content01_tit {
	margin-bottom: 50px;
}
#service_content_box_inner01 {
	padding: 30px 0;
}
.demo_qr {
	display: block;
}
.service_content_box h3 {
	font-size: 2.4rem;
}
.service_content_box_inner {
    padding: 40px 0;
}
#service_content_box_inner01 .txt01 {
	margin-bottom: 30px;
}
#merit_list {
	flex-wrap: wrap;
}
#merit_list > li {
	width: 48%;
}
#merit_list > li:not(:last-of-type) {
	margin-right: 0;
}
#merit_list > li:not(:nth-of-type(2n)) {
	margin-right: 4%;
}
#merit_list > li:nth-of-type(-n+2) {
	margin-bottom: 30px;
}
#feature_list {
    padding: 0;
}
#feature_list > li .txt h4 {
	font-size: 2.0rem;
	margin-bottom: 15px;
}
#feature_list > li .txt p {
	font-size: 1.4rem;
}
#feature_list > li:not(:last-of-type) {
    margin-bottom: 40px;
}
.flow_img {
    padding: 40px 0 50px;
}
#price_list {
	padding: 0;
}
.price_list > li {
    width: 32%;
}
.price_innerlist > li {
	font-size: 1.3rem;
}
.price_innerlist02 > li {
	font-size: 1.0rem;
}
.price_txt {
	font-size: 2.6rem;
}
.price_item_tit {
	font-size: 1.7rem;
}
.commission > div {
	font-size: 2.6rem;
}
#price_item01 .price_box_btm {
    padding: 15px;
}
#price_item03 .price_box_btm {
    padding: 15px;
}
#ec_content01 .price_box_btm {
    min-height: 327px;
}
#price_item01 .tax {
    padding-right: 25px;
}
#price_item02 .tax {
    padding-right: 6px;
}
#price_item03 .tax {
	padding-right: 3px;
}
#ec_content02 #ec_content02_intro {
	margin-bottom: 50px;
}
#ec_content02 .price_box_btm {
    min-height: 300px;
}
#price_item04 .tax {
	padding-right: 20px;
}
#price_item05 .tax {
	padding-right: 12px;
}
#price_item04 .price_box_btm .txt {
	font-size: 1.2rem;
}
#price_item06 .price_box_btm {
    padding: 15px;
}

/* homepage */
#point_list {
	padding: 0;
}
#point_list > li {
    width: 30%;
}
#point_list > li h4 {
	font-size: 1.8rem;
}
#point_list > li p {
	font-size: 1.4rem;
}
#homepage_price .service_content_box_inner {
    padding: 40px 0 0;
}
#homepage_content01 .flow_img {
	padding: 50px 50px 70px;
}
#homepage_price_list > li {
    width: calc((100% - 20px) / 3);
}
#homepage_price_list > li .price_box_btm .maintxt br.pc {
	display: none;
}
.price_list .price_txt span, #maintenance_service .price_txt span {
	font-size: 1.2rem;
}
.price_innerlist02 {
	padding: 0px 0 0 17px;
}
#homepage_price_list .price_box_btm {
	padding: 20px;
	min-height: 512px;
	margin-bottom: 30px;
}
#homepage_price_list > li .price_box_btm .maintxt {
	font-size: 1.5rem;
}
#homepage_price_list .price_box_btm p {
	font-size: 1.2rem;
}
#meo {
	margin-bottom: 30px;
}
#meo_top span {
	font-size: 2.2rem;
}
#meo_toptit {
	font-size: 2.6rem;
	margin-bottom: 30px;
}
#meo_menu .left {
    width: 30%;
}
#meo_menu .right {
    width: 70%;
}
#meo_menu .left .meo_tit {
	font-size: 2.5rem;
}
#meo_menu .left .meo_price {
	font-size: 2.5rem;
}
#meo_menu .left .meo_price span {
    font-size: 1.2rem;
}

/* design */
#design_price_list > li {
    width: 49%;
}
#design_price_list > li:not(:nth-of-type(3n)) {
    margin-right: 0;
}
#design_price_list > li:not(:nth-of-type(2n)) {
    margin-right: 2%;
}
.price_list .commission span {
    font-size: 1.2rem;
}
#design_price_intro {
	margin: 20px 0 70px;
}

/*===============================
 PAGE-PRODUCT
===============================*/


/*===============================
 PAGE-ABOUT
===============================*/
.about_content_box_inner {
    padding: 40px 0;
}
#about_content01 {
    padding: 50px 0 40px;
}
.about_content {
    padding: 0 0 40px;
}
.about-list li {
	margin: 0 0 20px 0;
    padding: 0 0 20px 0;
}
.about_content_box_inner .profile_box > p {
	width: 50%;
}

/*===============================
 PAGE-CONTACT
===============================*/
#page-contact {
	padding: 50px 0;
}
.contact_txt {
    margin-bottom: 50px;
}
#page-contact .form-list dt {
    width: 35%;
}
#page-contact .form-list dd {
    width: 61%;
}

/* 入力内容確認 */
#page-contact.confirm {
	padding: 90px 0 50px;
}
#page-contact.confirm .form-list li:not(:last-of-type) dl dt {
    padding: 0;
}
#page-contact.confirm #content_textarea td {
    padding: 78px 20px 20px;
}
#page-contact.confirm input[type="submit"].mainsubmit {
	margin: 0px 20px 0 0;
    width: 300px;
}
input[type="submit"].mainback {
	width: 300px;
}

/* 完了画面 */
#page-contact.thanks {
    padding: 150px 0 250px;
}

/* 入力エラー */
#page-contact.error {
	padding: 90px 0 50px;
}
#page-contact.error .sectitle02, #page-contact.confirm .sectitle02 {
	padding: 40px 0;
}
#page-contact.error .contact-form > tbody > tr:first-of-type th {
    padding-top: 40px;
}

/*===============================
 ARCHIVE-WORKS
===============================*/
.page-works {
    padding: 50px 0;
}
.page-works_box_inner {
    padding: 40px 0;
}
.pagebox_tit {
	font-size: 2.4rem;
}

/*===============================
 ARCHIVE-NEWS
===============================*/
.page-news.container {
	padding: 70px 0 50px;
}

/*===============================
 ARCHIVE-COLUMN
===============================*/
.page-blog { padding: 50px 0 0; }
.page-blog main { width: 66%; }
.bloglist li { margin-bottom: 30px; width: calc((100% - 20px) / 2); }
.bloglist > li:not(:nth-of-type(2n)) { margin-right: 20px; }
.page-blog .r_sidebar { width: 30%; }
.bloglist .archive-article_tit h2 { font-size: 1.4rem; }
.r_sidebar section h2 { font-size: 1.8rem; margin-bottom: 30px; }
.poplist > li:not(:last-of-type) { margin-bottom: 20px; }

/*===============================
 SINGLE
===============================*/
.single-page {
	padding: 110px 0;
	margin-bottom: 0;
}
.single-main .article_tit {
	font-size: 2.6rem;
	margin: 0 auto 40px;
	padding-bottom: 20px;
}
.single-main_btm {
    margin-top: 70px;
}

/*===============================
 SINGLE-WORKS
===============================*/
.single-works .article_tit {
	margin: 0 auto 10px;
    padding-bottom: 0px;
}
.article_content p {
	margin-bottom: 10px;
}

/*===============================
 SINGLE-COLUMN
===============================*/
#single-column { padding: 30px 0 50px; margin-top: 70px; }
.single-blog main { width: 66%; }
.single-blog .r_sidebar { width: 30%; }
#single-column .single-main .article_tit { font-size: 2.3rem; margin: 0 auto 20px; }
#single-column .single-main .mainimg { margin: 0 auto 20px; }
#single-column .article_content p { margin-bottom: 20px; }
.toc__container { padding: 15px 25px 20px; }
.toc__container .toc__title { margin-bottom: 5px; }
.article_content ol.toc__sublist { padding-left: 15px; }
#single-column .article_content h2 { font-size: 1.8rem; padding: 12px 22px; }
#single-column .article_content h3 { font-size: 1.6rem; padding: 3px 0 5px 13px; margin: 25px 0 15px; }
#single-column .article_content h4 { font-size: 1.7rem; line-height: 1.666; padding-bottom: 13px; margin-bottom: 17px; }
#single-column .article_content .article_cta { padding: 25px 28px 30px; }
.article_cta_btn > a { display: block; padding: 15px 0; line-height: 1.7; font-size: 1.5rem; border-radius: 25px; }
.article_btmlink { margin-top: 50px; }
.article_btmlink > div > a { font-size: 1.9rem; }
.single-main_btm { margin-top: 50px; }
.r_sidebar .archive-article h2 { font-size: 1.4rem; }

/*===============================
 ページネーション
===============================*/
.pagination {
    margin: 70px 0 0;
}

/*===============================
 footer
===============================*/
#footer {
    padding-top: 50px;
}
.footer_inner01 {
    padding: 60px 0 20px;
}
.footer_menu_logo a img {
    width: 130px;
}
.footer_menu {
	padding: 0 5%;
	margin-bottom: 20px;
}
.footer_menu > ul {
	flex-wrap: wrap;
}
.footer_menu > ul > li {
	width: 20%;
	text-align: center;
}
.footer_menu > ul > li:nth-of-type(-n+4) {
    margin-bottom: 0;
}
.footer_menu > ul > li > a {
	margin: 0;
	font-size: 1.3rem;
}
.footer_info .privacy_link {
	font-size: 1.2rem;
}
#g-nav li a {
	font-size: 1.5rem;
}
#g-nav.panelactive {
    bottom: 0;
}
.openbtn {
	right: 15px;
	height: 70px;
}
.copyright small {
	font-size: 1.0rem;
}

/*===============================
 page-privacy-policy
===============================*/
#mv_privacy {
    padding-top: 70px;
}
#mv_privacy .pagetitle {
	padding: 50px 0;
}
#mv_privacy .pagetitle .pagesubtit {
	font-size: 6.0rem;
}

/*===============================
 404
===============================*/
#no-found_tit {
	font-size: 4.0rem;
}
#mv_notfound .pagetitle {
    padding: 70px 0;
}

}

@media screen and (min-width: 800px) and (max-width: 990px) {
#g-nav-inner {
	top: 30%;
}
}


@media screen and (min-width: 991px) and (max-width: 1024px) {
/*===============================
 COMMON
===============================*/
.contact .container {
	width: 70%;
}

/*===============================
 footer
===============================*/
.footer_menu {
	padding: 0 10%;
}
.openbtn {
	width: 100px;
    height: 70px;
	right: 20px;
}
#g-nav-inner {
	top: 27%;
}
}
