@charset "utf-8";
/*
Theme Name: AOZORA GAMBO
Theme URI: https://jojo-kikau.co.jp/
Description: AOZORA GAMBO theme.
Version: 1.0
Author: kogeoldman
Author URI: https://nikko-lab.com/

*/


@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Modern+Antiqua);
@import url(https://fonts.googleapis.com/css?family=Pacifico);

@font-face {
  font-family: "agfont";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/webfont.woff") format("woff");
  font-display: swap;
}

.font-ag {
  font-family: "agfont", sans-serif;
  font-weight: 600;
}

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
img,abbr,acronym,fieldset{border:0;}

* {
	box-sizing: border-box;
}

body{
	font: 14px/1.9 'M PLUS Rounded 1c', 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust:100%;
	color: #000;
	background: #fff;
}
.wf-roundedmplus1c { font-family: ; }



/* レイアウト
------------------------------------------------------------*/
.wrapper {
	width: 100%;
	min-width: 1100px;
}

.flex-container {
	display: flex;
}

.mainArea {
	width: 50%;
}
.sideImgArea {
	width: 50%;
	order: -1;
}

.contentsArea {
	min-height: 100vh;
	position: relative;
	padding: 30% 13.5% 0 13.5%;
}

.contentsArea.content {
	min-height: auto;
	padding: 100px 13.5% 0 13.5%;
}
.contentsArea.content > section {
	padding-bottom: 50px;
}



#topArea {
	text-align: center;
}

h1.mainLogo {
	width: 85%;
	margin: 0 auto 180px;
}
.logo2 {
	padding-bottom: 30px;
}
.logo2 img {
	width: 130px;
}
.mainCopy {
	width: 50%;
	margin: 0 auto 50px;
}
.topAreaNavi ul li {
	display: inline-block;
	font-size: 0.9rem;

}
.topAreaNavi ul li:after, #mainnav ul li:after { 
	content: "|";
	display: inline-block;
	margin: 0 0.5em;
	color: 
}
.topAreaNavi ul li:last-child:after, #mainnav ul li:last-child:after {
	content: none;
}

.sideImgList {
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.sideImgList > li > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	right: 0;
	left: auto;
}
.sideImgList > li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
    transition: all 0.5s ease 0s;
}
.sideImgList > li > img {

}

.sideImgList > li > .sideImgtextArea {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84.375%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.sideImgList > li > .sideImgtextArea .sideImgtext {
	color: #fff;
	font-size: 2.6rem;
	letter-spacing: 0.09em;
	line-height: 1.5;
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
	text-align: center;
}



/* リンク設定
------------------------------------------------------------*/


a:active, a:focus,input:active, input:focus{
	outline: 0;
}

a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color:#000;
	transition: 0.3s;
}
a:hover {
	color: #51318F;
}
.topAreaNavi a::after, #mainnav a::after {
	position: absolute;
	bottom: -8px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #51318F;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.topAreaNavi a:hover::after, #mainnav a:hover::after {
	bottom: -4px;
	opacity: 1;
	visibility: visible;
}

/* トップページscrollボタン */
a.scrollBtn {
	display: inline-block;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 10px 10px 110px;
	overflow: hidden;
	color: #000;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}
a.scrollBtn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 2px;
	height: 20px;
	animation: sdl 2s ease infinite;
	background: #000;
}
a.scrollBtn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: rgba(0, 0, 0, .4);
}
@keyframes sdl {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}

#mainnav .social-icons {
	display: none;
}

.social-icons ul li {
	display: inline-block;
	padding: 1em 0.5em;
}
.social-icons ul li a img {
	width: 30px;
	transition: 0.3s;
	opacity: 1;
}
.social-icons ul li a:hover img {
	opacity: 0.7;
}

/* アーカイブ + ウィジェット */
.col3 a{
	display: block;
	color: #000;
}

.col3 a:hover{
	color: #2b86b5;
	text-decoration: none;
}

#wp-calendar a{
	color: #2b86b5 !important;
}

/* 基本リンクボタン */
.btn-link {
	display: inline-block;
	background: #51318F;
	color: #fff;
	padding: 1em;
	width: 70%;
	text-align: center;
	margin-top: 80px;
	position: relative;
	font-weight: 300;
}
.btn-link:after {
	content: "＞";
	right: 25px;
	position: absolute;
	transition: 0.3s;
}
.btn-link:hover {
	color: #fff;
}
.btn-link:hover:after {
	right: 15px;
}

.topicsList .thumb .thumbInner {
	background: #51318F;
}
a img {
	transition: 0.3s;
	opacity: 1;
}
a:hover img {
	opacity: 0.7;
}

/* フォーム
------------------------------------------------------------*/
input[type="text"], input[type="email"], input[type="tel"], textarea{
	height: 28px;
	padding: 0 5px;
	border: 1px solid #d4d4d7;
	border-radius: 0;
	line-height: 28px;
	font-size: 100%;
	color: #555;
	background: #fff;
	max-width: 100%;
}

textarea{
	height: auto;
	line-height: 1.5;
}

input[type="reset"], input[type="button"]{
	padding: 1px 10px;
	border: 0;
	border-radius: 3px;
	line-height: 28px;
	font-size: 100%;
	color: #fff;  
	background: #000;
}

input[type="reset"]:hover, input[type="button"]:hover{
	cursor: pointer;
	background: #777;
}

input[type="submit"] {
	border: none;
	font-size: 120%;
	cursor: pointer;
	transition: 0.3s
}
input[type="submit"]:hover {
	background: #794AD4;
}


/* ヘッダー
------------------------------------------------------------*/
#header{
	position: fixed;
	left: 0;
	top: 0;
	right: auto;
	text-align: left;
	background: #fff;
	min-width: 1000px;
	width: 100%;
	z-index: 1;
	opacity: 1;
	transition: 0.3s;
}
#header.headerhidden {
	opacity: 0;
}
#headerWrap {
	display: flex;
	justify-content: space-between;
}

#logo{
	padding: 13px 0 5px 30px;
}

#logo img{
	height: 25px;
}

#mainnav a{
	color: #000;
}

#mainImg img{
	width: 100%;
	height: auto;
	margin-bottom: 80px;
}



/* ウィジェット
------------------------------------------------------------*/
#widget{
	clear: both;
	margin-top: 50px;
	padding-top: 80px;
	border-top: 1px solid #dfdfdf;
}

.widget{
	padding-bottom: 30px;
}

.widget li{
	margin-bottom: 10px;
	line-height: 1.5;
}

.widget .sub-menu{
	margin: 5px 0 0 10px;
	font-size: 90%;
}

#wp-calendar{
	width: 100%;
}

#wp-calendar th, #wp-calendar td{
  text-align: center;
}

#wp-calendar caption {
    font-weight: bold;
    text-align: center;
}

#wp-calendar #today{
	background: #eee;
}

#wp-calendar th:nth-child(6){
	color: #0040ce;
}

#wp-calendar th:nth-child(7){
	color: #cc0000;
}

#wp-calendar #prev{
	padding-top: 10px;
	text-align: left;
}

#wp-calendar #next{
	padding-top: 10px;
	text-align: right;
}



/* フッター
------------------------------------------------------------*/
#footer{
	clear: both;
	padding: 50px 0 50px;
	text-align: center;
	font-size: 75%;
	background: #51318F;
	color: #fff;
}



/* 共通
------------------------------------------------------------*/
h1, h2{
	font-family: 'agfont', serif;
}

h3{
  font-size: 120%;
}

img{
	max-width: 100%;
	height: auto;
}

.inner{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 50px;
}

.innerS{
	width: 60%;
	margin: 0 auto;
	padding-bottom: 50px;
}


.txt_c { text-align: center; }


/* ページ・投稿
------------------------------------------------------------*/
#singleImg{
	text-align: center;
	margin-bottom: 40px;
}

#singleImg img{
	width: 100%;
	height: auto;
}

.header{
	width: 60%;
	margin: 0 auto;
	background: url(images/borderBlack.png) repeat-x 0 50%;
	background-size: 1px 1px;
}

.header h1{
	padding: 10px;
}

.header h1 span{
	display: inline-block;
	background: #fff;
	padding: 0 80px;
}

section header h1{
	text-align: center;
	font-size: 120%;
	margin-bottom: 30px;
}

.entry-footer{
	clear: both;
	padding-top: 30px;
	font-size: 90%;
	text-align: right;
	color: #555;
}
.entry-footer a {
	color: #555;
}
.entry-footer a:hover {
	color: ##51318F;
}

.entry-footer span{
	padding-right: 10px;
}

.f-container2 {
	display: flex;
	justify-content: space-between;
}
.f-container2 .f-item {
	width: 47.5%;
}

.f-container3 {
	display: flex;
	justify-content: space-between;
}
.f-container3 .f-item {
	width: 30%;
}

.sv-title {
	padding: 1em 0 5px;
	position: relative;
	margin-bottom: 1em;
	letter-spacing: 0.05em;
	font-family: 'agfont', serif;
}
.serviceTitle1 {
	color: #51318F;
	border-bottom: 2px solid #51318F;
}
.serviceTitle2 {
	color: #BF9C47;
	border-bottom: 2px solid #BF9C47;
}

.serviceTitle1s {
	color: #51318F;
	font-size: 1.5em;
}
.serviceTitle2s {
	color: #BF9C47;
	font-size: 1.5em;
}

.sv-title2 {
	background-image: url(./images/pen.svg);
	padding: 0.5em 0 0.5em 2em;
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom: 1px solid #707070;
	margin-bottom: 1em;
	font-size: 1.3em;
}

.sv-title-biz {
	background: #F8F8F8;
	text-align: center;
	padding: 0.5em 0;
}

.serviceList {
	margin-bottom: 50px;
}
.serviceList li {
	background-image: url(./images/pen.svg);
	padding: 0.5em 0 0.5em 3em;
	background-repeat: no-repeat;
	background-position: left center;
}

.youtubeAreaBG {
	background: #000;
	padding: 2em 13.5% 2em;
}

.ytabg_inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.ytabg_inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.ytcLink {
	text-align: center;
	padding-top: 30px;
}

.mapArea {
	margin-top: 50px;
}


.serviceBox {
	padding-bottom: 50px;
}
.serviceBox p {
	padding-bottom: 1em;
}



.companyTable {
	width: 100%;
}

.companyTable tr {
	border-bottom: 1px solid #707070
}
.companyTable th {
	padding: 1em 3em 1em 0;
	font-weight: 400;
	width: 13em;
}
.companyTable td {
	padding: 1em 0 1em;
}

.telBox {
	background: #f8f8f8;
	font-size: 1.2em;
	text-align: center;
	padding: 1em;
	margin-top: 30px;
}
.telNo {
	font-weight: 700;
	font-size: 1.75em;
}


.arrow_down {
	text-align: center;
}

.spHeader {
	display: none;
}
.spHeader2 {
	display: none;
}

/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media(max-width:500px){
	.inquiry th,.inquiry td {
		display: block!important;
		width: 100%!important;
		border: none!important;
	}
	.inquiry tr:first-child th{
		border-bottom: 1px solid #d4d4d7!important;
	}
	/* 必須・任意のサイズ調整 */	
	.inquiry .haveto,.inquiry .any {	
		font-size: 10px;
	}
}

.inquiry {
	width: 100%;
	table-layout: fixed;
}
/*見出し欄*/
.inquiry th{
	font-weight: 400;
	padding-right: 5px;
	width: 50%;
	background: #F8F8F8;
	padding: 1em;
	position: relative;
	vertical-align: top;
}
/*通常欄*/
.inquiry td{
	border-bottom: solid 1px #d4d4d7;	
	padding: 1em 0.5em;
}
/*横の行とテーブル全体*/
.inquiry tr {
	border-bottom: solid 1px #d4d4d7;
}
/*必須の調整*/
.haveto{
	font-size: 10px;
	padding: 1px 5px;
	background: #51318F;
	color: #fff;
	border-radius: 2px;
	position: absolute;
	top: 1.8em;
	right: 1em;
}
span.wpcf7-list-item {
	display: block !important;
	margin: 0 !important;
}

/* アーカイブ
------------------------------------------------------------*/
.col3 .thumb{
	text-align: center;
	margin-bottom: 15px;
}

.col3 .thumb img{
	width: 100%;
	height: auto;
}

.col3 h3{
	margin-bottom: 10px;
  line-height: 1.5;
}

.date{
	margin-top: 10px;
	color: #6f6f6f;
}
.loopCat a {
	color: #6f6f6f;
}

.topicsList {
	display: flex;
	border-bottom: 1px solid #707070;
}
.topicsList .thumb {
	width: 130px;
	height: 130px;
	padding: 15px 30px 15px 0;
}

br.sp {
	display: none;
}


/* タイポグラフィ
------------------------------------------------------------*/
h2.title {
	color: #51318F;
	font-size: 2em;
	line-height: 1em;
	margin-bottom: 70px;
	position: relative;
}
h2.title span {
	font-weight: 300;
	font-size: 1.3rem;
	display: inline-block;
	padding-bottom: 0.5em;
}
h2.title:after {
	content: "";
	height: 2px;
	width: 2em;
	background: #BF9C47;
	bottom: -0.7em;
	position: absolute;
	left: 0;
}

.post p{
	margin-bottom: 30px;
}

.post ul{
	margin: 0 0 10px 20px;
}

.post ul li{
	margin-bottom: 5px;
	padding-left: 5px;
	list-style: disc;
}

.post ol{
	margin: 0 0 10px 30px;
}

.post ol li{
	list-style:decimal;
}

.post h1, .post h2, .post h3, .post h4, .post h5, .post h6{
	clear: both;
	margin-bottom: 30px;
	padding: 20px 0 0;
	font-size: 100%;
}

.post h1{
	font-size: 120%;
}

.post h2{
	margin: 30px auto;
	font-size: 100%;
	text-align: center;
}

.post h2 span{
	display: inline-block;
	padding: 10px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

.post h3{
	padding-bottom: 20px;
	border-bottom:2px solid #000;
}

.post blockquote{
  clear: both;
	margin: 10px 0 30px;
	padding: 0 0 0 20px;
	border-left: 2px solid #bababa;
}
 
.post blockquote p{
	margin: 0;
}

.post table{
	margin:10px 0 20px;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px #bababa solid;
}

.post table th{
  padding: 7px 10px 7px 5px;
	border: #bababa solid;
	border-width:0 0 1px 1px;
	font-weight: bold;
	color: #fff;
	background: #ccc;
}

.post table td{
	padding: 7px 5px;
	border: 1px #bababa solid;
	border-width: 0 0 1px 1px;
	}

.post dt{
	font-weight: bold;
}

.post dd{
	padding-bottom: 10px;
}

.aligncenter {
	display: block;
	margin:5px auto;
}

.alignright, .alignleft{
	float:right;
	margin: 5px 0 15px 7px;
	display: inline;
}

.alignleft{
	float: left;
	margin: 5px 15px 2px 0;
}

.clear{
	clear: both;
}

.imgFull{
	width: 100% !important;
	height: auto;
}




/* ページナビ
------------------------------------------------------------*/
.pagination, #pageLinks{
	clear: both;
	padding-top: 30px;
	text-align: center;
}

.pagination li{
	display: inline-block;
	margin: 0 5px;
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 100px;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
}


#pageLinks span{
	padding: 0 5px;
}


.page-link {
	margin-top: -80px;
	padding-top: 80px;
}


/* RESPONSIVE 設定
------------------------------------------------------------*/

@media only screen and (min-width: 800px){
	body{
		font-size:15px;
	}	
  a#menu{
		display:none;
	}
	.panel{
		display:block !important;
		padding-top: 13px;
		padding-right: 50px;
	}
	#mainnav li{
		display: inline-block;
		position: relative;
		font-size: 13px;
	}
	#mainnav li a{
		display: inline-block;
	}
	#mainnav li ul{
		display: none;
	}	
	#mainnav li:hover ul{
  	display: block;
		position: absolute;
		top: 25px;
		left: 0;
		z-index: 500;
		background: rgba(255,255,255,.8)
	}
	#mainnav li li{
		padding: 10px;
		line-height: 1.5;
		border-bottom: 1px solid #fff;
		text-align: left;
	}
  #footer{
		padding: 50px 0 50px;
	}
}

@media only screen and (min-width: 981px){
	.col3{
		margin: 0 auto;
	}

	.col3 > li{
		display: inline-block;
		width: 30%;
		padding: 0 1.5%;
		margin-bottom: 50px;
		vertical-align: top;
		text-align: left;
	}
}


@media only screen and (max-width: 980px){
	.col3 > li{
		margin: 0 auto 0px;
	}
	.header{
		width: 80%;
		margin-bottom: 30px;
	}
  .header h1 span{
  		padding: 0 15px;
  }
	#mainImg img{
		margin-bottom: 0;
	}
	.innerS{
		width: 80%;
		padding-bottom: 30px;
	}
}


@media only screen and (max-width: 799px){
	#header{
		position: fixed;
		width: 100%;
		z-index: 500;
	}	
	#headerWrap{
		position: relative;
		width: 100%;
		height: 70px;
		background: #fff;
		border-bottom: 1px solid #ccc;
	}	
	#logo{
		padding: 13px 60px 5px 15px;
	}	
	#logo img{
		width: auto !important;
		height: 18px;
	}
  a#menu{
  	display: inline-block;
  	position: relative;
  	width: 40px;
  	height: 40px;
  	margin: 15px 10px;
  	background: #51318F;
	}

	#menuBtn{
  	display: block;
  	position: absolute;
  	top: 50%;
  	left: 48%;
  	width: 18px;
  	height: 2px;
  	margin: -1px 0 0 -7px;
  	background: #BF9C47;
  	transition: .2s;
	}
	#menuBtn:before, #menuBtn:after{
  	display: block;
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 0;
  	width: 18px;
  	height: 2px;
  	background: #BF9C47;
  	transition: .3s;
	}

	#menuBtn:before{
  	margin-top: -7px;
	}

	#menuBtn:after{
  	margin-top: 5px;
	}

	a#menu .close{
  	background: transparent;
	}

	a#menu .close:before, a#menu .close:after{
  	margin-top: 0;
	}

	a#menu .close:before{
  	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	}

	a#menu .close:after{
  	transform: rotate(-135deg);
  	-webkit-transform: rotate(-135deg);
	}

	.panel{
		width: 100%;
		display: none;
		overflow: hidden;
		position: relative;
		left: 0;
		top: -8px;
		z-index: 100;
	}
	#mainnav{
		position: absolute;
		top: 0;
		width: 100%;
		text-align: right;
		z-index:500;
	}
	#mainnav a::after {
		content: none;
	}
	#mainnav ul{
		background: #fff;
		text-align: left;
	}
	#mainnav ul ul li{
		padding-left: 20px;
	}

	#mainnav li a{
		position: relative;
		display:block;
		padding:15px 25px 15px 3em;
		border-bottom: 1px solid #ccc;
		color: #000;
		font-weight: 400;
	}	
	#mainnav li.menu-item-has-children a{
		border-bottom: 0;
	}
	#mainnav li.menu-item-has-children{
		border-bottom: 1px solid #ccc;
	}	
	#mainnav li a:before{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 20px;
		width: 6px;
		height: 6px;
		margin: -4px 0 0 0;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#mainImg{
		padding-top: 70px;
		z-index: -100;
	}
	section{
		padding-top: 100px;
	}
	section#toppage{
		padding-top: 30px;
	}
	section h2{
		margin: 0 auto 20px;
	}
	section h2 span {
		
	}
	.alignright, .alignleft{
	  float: none;
		display: block;
		margin: 10px auto;	
	}



	.wrapper {
		min-width: 100%;
	}
	.wrapper.flex-container {
		display: block;
	}

	#header {
		min-width: 100%;

	}
	.sideImgArea {
		display: none;
	}
	.mainArea {
		width: 100%;
	}

	.contentsArea {
		padding: 50px 15px 0;
	}
	.youtubeAreaBG {
		padding: 50px 15px 50px;
	}
	.contentsArea.content {
		padding: 50px 15px 0;
	}

#logo {
	padding: 13px 60px 5px 15px;
}
#mainnav ul li:after {
	content: none;
}

#mainnav .social-icons {
	display: block;
	padding-top: 1em;
	border-bottom: 5px solid #51318F;
	background: #fff;
}
#mainnav .social-icons ul {
	text-align: center;
}
#mainnav .social-icons ul li a {
	padding: 0;
	border-bottom: none;
}
#mainnav .social-icons li a:before {
	content: none;
}

.topAreaNavi {
	display: none;
}

.topMV {
	background-image: url(./images/sample_img.jpg);
	background-size: cover;
}

.youtubeAreaBG section {
	padding-top: 0;
}
.contentsArea.content section {
	padding-top: 0;
}
.contentsArea.content > section {
	padding-bottom: 0;
}

h2.title {
	font-size: 1.5em;
	margin-bottom: 30px;
	margin-top: 30px;
}
h2.title span {
	font-size: 1rem;
}
h2.title img {
	width: 125px;
	padding-right: 5px;
}

.btn-link {
	padding: 0.75em;
	width: 80%;
	margin-top: 30px;
}

.topicsList .thumb {
	padding: 15px 15px 15px 0;
}
.topicsList h3 {
	font-size: 110%;
}
.serviceList {
	margin-bottom: 20px;
}
.serviceList li {
	padding: 0.5em 0 0.5em 2.5em;
}

#footer {
	padding: 30px 0 30px;
	font-size: 65%;
	margin-top: 50px;
}

.sv-title {
	padding: 0 0 5px;
}
.serviceTitle1s {
	font-size: 1.3em;
}
.serviceTitle2s {
	font-size: 1.3em;
}
.serviceBox {
	padding-bottom: 10px;
}
.sv-title2 {
	padding: 0.5em 0 0.5em 2.5em;
	font-size: 1.1em;
}

.spHeader {
	display: block;
	padding-top: 70px;
}
.spHeader2 {
	display: block;
	height: 120px;
	margin-top: 70px;
	background-size: cover;
	background-position: center;
}

body.page .contentsArea.content:first-child {
	padding-top: 0;
}

.sv-title-biz {
	padding: 0.5em 1em;
}

.arrow_down {
	padding-top: 30px;
}
.arrow_down img {
	height: 50px;
}

.companyTable th {
	padding: 1em 2em 1em 0;
	width: 9em;
}


.imgsp60 {
	width: 60%;
}
.imgsp80 {
	width: 80%;
}
br.sp {
	display: inline;
}

}


.text-center {
	text-align: center;
}





.wpcf7-spinner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5rem;
}
.recaptcha-area {
	margin-right:auto;
	margin-left:auto;
	text-align: center;
	max-width:300px;
	margin-top: 1rem;
}