@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap');
body, input, textarea, ol li, ul li, h1, h1 small, h2, h2 small, h3, h3 small, h4, h4 small, h5, h5 small, h6, h6 small,input::placeholder, p, dt, dd, lable, table th, table td, table caption{
	font-family: 'Noto Sans JP','メイリオ', sans-serif !important;
}
/* =======================================
    layout
======================================= */
.container{
	width: 100%;
	max-width: 960px;
	padding: 0 20px;
	margin: 0 auto;
}
.container:after, .container:before {
    content: none;
}
@media (max-width: 960px) {
	.container{
		padding: 0 10px;
	}
}

/* =======================================
    header
======================================= */
.home #header{
	margin-bottom: 0;
}
#header .container{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 15px 20px;
}
.header-sns{
	width: 100%;
	font-size: 0;
	text-align: right;
	margin-bottom: .75rem;
}
.header-sns a{
	display: inline-block;
	vertical-align: middle;
	margin-left: .75rem;
}
.header-sns a:first-child{
	margin-left: 0;
}
.header-logo{
	margin-bottom: 0;
}
.header-logo img {
	display: block;
	max-width: 300px;
}
.header-tools{
	display: -webkit-flex;
	display: flex;
}
.header-tools-left{
	width: 21rem;
	margin-right: 3rem;
}
.header-tools-left input{
	font-size: 1.4rem;
	line-height: 1.2;
}
#searchform{
	display: -webkit-flex;
	display: flex;
}
input#siteSearchTxt,
input#site-search-btn{
	display: inline-block;
	vertical-align: middle;
}
input#siteSearchTxt{
	max-width: 170px;
	height: auto;
	border-right: none;
	border-radius: 2px 0 0 2px;
	padding: 4px;
	margin: 0;
}
input#site-search-btn{
	width: 5rem;
	height: auto;
	text-align: center;
	border-radius: 0 2px 2px 0;
	background-color: #efefef;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
.header-tools-left input::placeholder{
	font-size: 1.4rem;
}
.header-phone{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.header-phone img{
	width: 46px;
	margin-right: .8rem;
}
.header-phone-right span{
	display: block;
}
.header-phone-number{
	font-size: 2.2rem;
}
.header-phone-right span:last-child{
	font-size: 1.4rem;
	line-height: 1.2;
}
.header-toolbar{
	display: -webkit-flex;
	display: flex;
	border: solid 1px #ccc;
	list-style-type: none;
	margin: 0;
}
.header-toolbar li{
	border-right: solid 1px #ccc;
	margin: 0;
}
.header-toolbar li:first-child{
	width: 9rem;
}
.header-toolbar li:last-child{
	border-right: none;
}
.header-toolbar a{
	position: relative;
	display: block;
	height: 100%;
	color: #000;
	padding: .5rem 1rem 2rem;
}
.header-toolbar img{
	display: block;
}
.header-toolbar li:first-child img{
	margin: 5px auto 0;
}
.recommend a{
	font-size: 3rem;
	color: #BF1B71;
}
.header-toolbar a span:last-child,
.recommend a span:last-child{
	position: absolute;
	left: 0;
	bottom: .5rem;
	width: 100%;
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
.wrap-global-menu{
	background-color: #555656;
}
.global-menu-pc ul{
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.global-menu-pc li{
	position: relative;
	display: table-cell;
	margin: 0;
}
.global-menu-pc li:last-child::after,
.global-menu-pc li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	display: block;
	width: 1px;
	height: 30px;
	background-color: #fff;
}
.global-menu-pc li:last-child::after{
	left: auto;
	right: 0;
}
.global-menu-pc li a{
	display: block;
	font-size: 1.6rem;
	text-align: center;
	color: #fff;
	padding: 1.5rem 0;
}
.global-menu-sp,
.header-tools-sp,
.header-toolbar-sp{
	display: none;
}
@media only screen and (max-width: 960px) {
	#header .container{
		padding: 10px;
	}
	.header-sns{
		display: none;
	}
	.header-logo{
		margin-bottom: 0;
	}
	.header-logo img{
		width: 20rem;
	}
	.header-tools-sp{
		display: block;
	}
	.header-phone-sp{
		display: block;
		margin-right: 6rem;
	}
	.header-phone-sp img{
		width: 5rem;
	}
	.header-tools-left,
	.header-toolbar{
		display: none;
	}
	.wrap-global-menu{
		display: none;
	}
	.global-menu-sp{
		display: block;
	}
	.global-menu {
		position: fixed;
		z-index: 2;
		top: 0;
		left: 0;
		color: #000;
		text-align: center;
		transform: translateY(-100%);
		transition: all 0.6s;
		width: 100%;
	}
	.global-menu ul {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		background: #ccc;
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}
	.global-menu ul li {
		font-size: 1.1em;
		list-style-type: none;
		padding: 0;
		width: 100%;
		border-bottom: 1px dotted #333;
		margin: 0;
	}
 
	/* 最後はラインを描かない */
	.global-menu ul li:last-child {
		border-bottom: none;
	}
	.global-menu ul li:first-child {
		padding: 1rem 7rem 1rem 2rem;
	}
	.global-menu input{
		background-image: url(../svg/searchIcon.svg);
		background-size: 14px;
		background-repeat: no-repeat;
		background-position: right 10px center;
	}
	.global-menu input#siteSearchTxt{
		padding: 1rem 1rem;
	}
	.global-menu ul li a {
		display: block;
		font-size: 1.6rem;
		color: #000;
		padding: 1em 0;
	}
	/* このクラスを、jQueryで付与・削除する */
	.global-menu.active {
		transform: translateY(0%);
	}
	.navToggle {
		display: block;
		position: fixed;    /* bodyに対しての絶対位置指定 */
		right: 13px;
		top: 12px;
		width: 42px;
		height: 51px;
		cursor: pointer;
		z-index: 3;
		background-color: rgba(255, 255, 255, .7);
		text-align: center;
	}
	.navToggle span {
		display: block;
		position: absolute;    /* .navToggleに対して */
		width: 30px;
		border-bottom: solid 3px #666;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		left: 6px;
	}
	.navToggle span:nth-child(1) {
		top: 9px;
	}
	.navToggle span:nth-child(2) {
		top: 18px;
	}
	.navToggle span:nth-child(3) {
		top: 27px;
	}
	.navToggle span:nth-child(4) {
		border: none;
		color: #666;
		font-size: 9px;
		font-weight: bold;
		top: 34px;
	}
	/* 最初のspanをマイナス45度に */
	.navToggle.active span:nth-child(1) {
		top: 18px;
		left: 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
 
	/* 2番目と3番目のspanを45度に */
	.navToggle.active span:nth-child(2),
	.navToggle.active span:nth-child(3) {
		top: 18px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.header-toolbar-sp{
		display: block;
	}
	.toolbar-top{
		display: table;
		table-layout: fixed;
		width: 100%;
		margin: 0 0 1rem;
	}
	.toolbar-top li{
		display: table-cell;
		text-align: center;
		padding: 0;
	}
	.toolbar-top a{
		display: block;
		height: 100%;
		color: #fff;
		background-color: #E25174;
		padding: 1rem 0;
	}
	.toolbar-top a:not(.button):hover,
	.toolbar-top a:not(.button):focus{
		color: #fff;
	}
	.toolbar-top li:first-child a{
		background-color: #0065B1;
	}
	.toolbar-top li:last-child a{
		background-color: #8DC21F;
	}
	.toolbar-top img{
		display: block;
		max-width: 70px;
		margin: .5rem auto .25rem;
	}
	.toolbar-top span{
		display: block;
		text-align: center;
	}
	.header-search{
		display: block;
		text-align: center;
		color: #fff;
		background-color: #F6AA00;
		border-radius: .5rem;
		padding: 1.5rem 0;
		margin: 0 1rem;
	}
	.header-search img,
	.header-search span{
		display: inline-block;
		vertical-align: middle;
	}
	.header-search img{
		width: 3rem;
		margin-right: 1rem;
	}
	.header-search span{
		font-size: 1.8rem;
		font-weight: 700;
	}
}
/* =======================================
    footer
======================================= */
#footer{
	background-color: #565656;
}
.footer-container {
    width: 100%;
    max-width: 960px;
    padding: 0 20px;
    margin: 0 auto;
}
.footerinquiry{
	border-bottom: solid 1px #999;
	margin-bottom: 20px;
}

.company-name {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 400;
    display: block;
}


#footer #socialbuttons{
	width: 200px;
	padding-top: 5px;
}
#footer #socialbuttons>a:hover{
	background-color: transparent;
}
.footer-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	margin-bottom: 2rem;
}
.footer-nav ul{
	list-style-type: none;
	margin: 0;
}
.footer-nav li{
	padding: 0;
	margin: 0 0 .5rem;
}
.footer-nav a{
	color: #fff;
}
.copyright {
    display: block;
    text-align: center;
    font-size: 1rem;
    color: #FFFFFF;
    padding: 1rem 0;
}
#footer .pagetop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: block;
    width: 6rem;
    height: 6rem;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    background-color: rgba(0, 160, 233, .7);
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px 0;
	z-index: 1000;
}
#footer .pagetop::before {
    content: '\f106';
    display: block;
    font-family: 'fontAwesome';
    font-size: 2rem;
}
.pagetop span {
    display: block;
    margin-bottom: 1px;
}
@media only screen and (max-width: 960px) {
	#footer .footerReqsample__container{
		padding: 3rem 1.5rem;
	}
	#footer .footerReqsample__button{
		width: 100%;
		padding: 2rem;
	}
	.footer-container {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 0 10px;
	}
	.footerinquiry {
		text-align: center;
		margin-bottom: 0;
	}
	#footer .footerInformation,
	#footer .InquiryNum,
	#footer .inquiryTxt {
		width: auto;
		float: none;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		margin: 0 25px 0 0;
	}
	#footer #socialbuttons {
		width: 100%;
		text-align: center;
		padding-top: 20px;
	}
	.footer-nav{
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.footer-nav ul{
		width: 100%;
	}
	.footer-nav li {
    		border-bottom: dotted 1px #666;
    		margin: 0;
	}
	.footer-nav a {
    		display: block;
    		padding: .8rem 1rem;
	}
}
@media only screen and (max-width: 640px) {
	#footer .footerInformation,
	#footer .InquiryNum,
	#footer .inquiryTxt {
		width: 100%;
		text-align: center;	
		margin: 0 0 15px 0;
	}
	#footer #socialbuttons {
    		padding-top: 5px;
	}
}
/* =======================================
    common
======================================= */
.fc-red{
	color: #E60012;
}
.fc-blue{
	color: #00A0E9;
}
.fc-green{
	color: #009944;
}
.bnr-kabeiro{
	margin-bottom: 8rem;
}
.bnr-kabeiro h3{
	font-size: 3rem;
	text-align: center;
	margin-bottom: 2rem;
}
.bnr-kabeiro p a{
	color: #8FC31F;
}
.bnr-kabeiro a:hover img{
	opacity: .8;
}
.bnr-kabeiro img{
	display: block;
	width: 100%;
}
.btn-blue{
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #2f8dcc;
    border-radius: 4px;
    padding: 1.5rem 0;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.btn-blue:hover{
	color: #fff;
    background-color: #78bae6;
}
.btn-red, .more {
    display: block;
	font-size: 1.6rem;
    padding: 1rem;
    background-color: #c00;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    border-radius: .5rem;
    transition: all 0.3s ease;
}
.btn-red, .wrap-btn-contact input {
    width: 30rem;
}
.more {
    width: 20rem;
    margin: 0 0 2rem auto;
}
a.more:hover, a.more:focus:hover{
	color: #fff;
	background-color: #ff0c0c;
}
.required {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    color: #fff;
    background-color: #e4007e;
    border-radius: 4px;
    padding: 0px 4px;
    margin-left: 5px;
}
.formTable th, .formTable td {
    padding: 10px 15px;
    border: 1px solid #bcbcbc;
}
.formTable td input,
.formTable td textarea{
	height: auto;
	padding: .4rem 1rem;
    margin: 0;
}
.formTable td .span1 {
	display: block;
    padding-top: 5px;
}
/*送信・確認ボタン*/
.mw_wp_form_input .wrap-btn-contact input:first-child, .wrap-btn-contact input:nth-of-type(2), .btn-red, .more {
    display: block;
    padding: 1rem;
    background-color: #c00;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    border-radius: .5rem;
    transition: all 0.3s ease;
}
.wrap-btn-contact input {
    border: none;
}
.mw_wp_form_confirm .wrap-btn-contact input:first-child {
    display: block;
    width: 30rem;
    padding: 1rem;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: .5rem;
    transition: all 0.3s ease;
	margin: 0;
}
.wrap-btn-contact input:nth-of-type(2) {
    margin: 0 0 0 2rem;
}
.mw_wp_form_confirm .wrap-btn-contact {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
@media only screen and (max-width: 960px) {
	.bnr-kabeiro{
		margin-bottom: 4rem;
	}
	.more{
		margin: 0 auto 2rem;
	}
	.formTable th, .formTable td {
    		display: block;
	}
	.formTable th {
    		width: 100%;
		border: none;
		padding: 1rem 1.5rem;
	}
	.formTable td{
		border-right: none;
		border-left: none;
	}
	.wrap-btn-contact input, .mw_wp_form_confirm .wrap-btn-contact input:first-child {
    		width: 50%;
	}
	.wrap-btn-contact input:nth-of-type(2) {
    		margin: 0 0 0 1rem;
	}
}
/* =======================================
    page
======================================= */
.page-title {
    font-size: 2.8rem;
    text-align: center;
    border-bottom: solid 4px #00A0E9;
    padding: 1rem 0 2rem;
    margin-bottom: 5.5rem;
}
.thumb-list ul{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	list-style-type: none;
    margin: 0;
}
.thumb-list li{
    position: relative;
    width: 24.25%;
    height: auto !important;
    margin: 0 1% 0 0;
    padding: 0 0 20px;
}
.thumb-list li:nth-of-type(4n) {
    margin-right: 0;
}
.thumb-list li a:first-child {
    display: block;
    width: 100%;
}
.thumb-list img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: .5rem;
}
.thumb-list a {
    display: block;
    color: #221814;
    font-size: 1.6rem;
}
.thumb-list a.cateTitle, .cateTitle {
    display: inline-block;
    vertical-align: top;
    font-size: 1.2rem;
    margin-top: .4rem;
}
.cateTitle {
    color: #000;
    background-color: #efefef;
    border-radius: 4px;
    padding: 2px 5px;
}
@media only screen and (max-width: 960px){
	.page-title{
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
	.thumb-list li{
		width: 49%;
		margin-right: 2%;
	}
	.thumb-list li:nth-of-type(2n){
		margin-right: 0;
	}
	.thumb-list img {
		height: 150px;
	}
}

@media print, screen and (min-width: 768px) {
br.sp { display: none; }
br.pc { display: inline; }
}
@media screen and (max-width: 767px) {
br.sp { display: inline; }
br.pc { display: none; }
}