@charset "UTF-8";

/*******************************
 
れすぽんCss
 
*******************************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 750px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* br_pc　pc時改行 */
/* br_sp　sp時改行 */
@media screen and (min-width: 750px){
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 750px){
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/*******************************
 
newsCss
 
*******************************/
.news_list{
	color: #2e4840;
	font-weight: 600;
	padding-bottom: 50px;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
.bg_grn {  
  background-color: #f1f5f5;  
}
.bg_wht {  
  background-color: #fff;  
} 

@media screen and (max-width: 767px) {
.news_list{
	width: 90%;
}
}

/*******************************
 
BtnCss
 
*******************************/
.btn a{
}
.btn {
    width: auto;
  max-width: 316px;
  height: 70px;
  display: block;
  text-align: center;
  background-color: #1c9b74;
  font-size: 16px;
  color: #FFF;
  border-radius: 7px;
  position: relative;
  padding-top: 23px;
  clear: both;
  margin: 0 auto;
  text-decoration: none;
}
.btn:hover {
	background-color: #fff;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
  	border: solid 2px #1c9b74;
  	color: #1c9b74;
}
.btn::after {
  	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	right: 10px;
	margin-right: 10px;
}
.btn_left{
  width: auto;
  max-width: 316px;
  height: 70px;
  display: block;
  text-align: center;
  background-color: #1c9b74;
  font-size: 16px;
  color: #FFF;
  border-radius: 7px;
  position: relative;
  padding-top: 23px;
  clear: both;
  text-decoration: none;
}
.btn_left::after {
  	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	right: 10px;
	margin-right: 10px;
}
.btn_left:hover {
	background-color: #fff;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
  	border: solid 2px #1c9b74;
  	color: #1c9b74;
}
body{
	text-align:center;
	font-size:85%;
	min-width:1024px;
}
@media screen and (max-width: 767px) {
body{
	min-width: inherit;
}
}
a:focus, *:focus { outline:none; }
.row {
    margin-right: -10px;
    margin-left: -10px;
}
p{
	margin:0;
}
ul{
	margin:0;
	padding:0;
}
.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{
	padding:0 10px;
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
	z-index:9999;
    width: 100%;
	box-shadow: 0px 0px 3px #ccc;
	-moz-box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
}
#loading {
    width: 100%;
    height: 100%;
    margin: 50px 0px;
    background: #fff;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
#loading img {
    position: absolute;
    top: 50%;
    left: 50%;
}
/*******************************
 
CommandCss
 
*******************************/
.red      { color: #e00 !important; }
.blue     { color: #00F !important; }
.green    { color: #0F0 !important; }
.yellow   { color: #FF0 !important; }
.orange   { color: #F90 !important; }
.white    { color: #FFF !important; }
.black    { color: #000 !important; }
.gray     { color: #888 !important; }

.m0  { margin: 0    !important; }
.m5  { margin: 5px  !important; }
.m10 { margin: 10px !important; }
.m15 { margin: 15px !important; }
.m20 { margin: 20px !important; }
.m25 { margin: 25px !important; }
.m30 { margin: 30px !important; }
.m35 { margin: 35px !important; }
.m40 { margin: 40px !important; }
.m45 { margin: 45px !important; }
.m50 { margin: 50px !important; }
.m60 { margin: 60px !important; }
.m70 { margin: 70px !important; }
.m80 { margin: 80px !important; }
.m90 { margin: 90px !important; }
.m100 { margin: 100px !important; }

.mt0  { margin-top: 0    !important; }
.mt5  { margin-top: 5px  !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }
.mt90 { margin-top: 90px !important; }
.mt100 { margin-top: 100px !important; }

.mr0  { margin-right: 0    !important; }
.mr5  { margin-right: 5px  !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr25 { margin-right: 25px !important; }
.mr30 { margin-right: 30px !important; }
.mr35 { margin-right: 35px !important; }
.mr40 { margin-right: 40px !important; }
.mr45 { margin-right: 45px !important; }
.mr50 { margin-right: 50px !important; }
.mr60 { margin-right: 60px !important; }
.mr70 { margin-right: 70px !important; }
.mr80 { margin-right: 80px !important; }
.mr90 { margin-right: 90px !important; }
.mr100 { margin-right: 100px !important; }

.mb0  { margin-bottom: 0    !important; }
.mb5  { margin-bottom: 5px  !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }

.ml0  { margin-left: 0    !important; }
.ml5  { margin-left: 5px  !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml25 { margin-left: 25px !important; }
.ml30 { margin-left: 30px !important; }
.ml35 { margin-left: 35px !important; }
.ml40 { margin-left: 40px !important; }
.ml45 { margin-left: 45px !important; }
.ml50 { margin-left: 50px !important; }
.ml60 { margin-left: 60px !important; }
.ml70 { margin-left: 70px !important; }
.ml80 { margin-left: 80px !important; }
.ml90 { margin-left: 90px !important; }
.ml100 { margin-left: 100px !important; }

.p0  { padding: 0    !important; }
.p5  { padding: 5px  !important; }
.p10 { padding: 10px !important; }
.p15 { padding: 15px !important; }
.p20 { padding: 20px !important; }
.p25 { padding: 25px !important; }
.p30 { padding: 30px !important; }
.p35 { padding: 35px !important; }
.p40 { padding: 40px !important; }
.p45 { padding: 45px !important; }
.p50 { padding: 50px !important; }
.p60 { padding: 60px !important; }
.p70 { padding: 70px !important; }
.p80 { padding: 80px !important; }
.p90 { padding: 90px !important; }
.p100 { padding: 100px !important; }

.pt0  { padding-top: 0    !important; }
.pt5  { padding-top: 5px  !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt35 { padding-top: 35px !important; }
.pt40 { padding-top: 40px !important; }
.pt45 { padding-top: 45px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }
.pt70 { padding-top: 70px !important; }
.pt80 { padding-top: 80px !important; }
.pt90 { padding-top: 90px !important; }
.pt100 { padding-top: 100px !important; }

.pr0  { padding-right: 0    !important; }
.pr5  { padding-right: 5px  !important; }
.pr10 { padding-right: 10px !important; }
.pr15 { padding-right: 15px !important; }
.pr20 { padding-right: 20px !important; }
.pr25 { padding-right: 25px !important; }
.pr30 { padding-right: 30px !important; }
.pr35 { padding-right: 35px !important; }
.pr40 { padding-right: 40px !important; }
.pr45 { padding-right: 45px !important; }
.pr50 { padding-right: 50px !important; }
.pr60 { padding-right: 60px !important; }
.pr70 { padding-right: 70px !important; }
.pr80 { padding-right: 80px !important; }
.pr90 { padding-right: 90px !important; }
.pr100 { padding-right: 100px !important; }

.pb0  { padding-bottom: 0    !important; }
.pb5  { padding-bottom: 5px  !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb45 { padding-bottom: 45px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb70 { padding-bottom: 70px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb90 { padding-bottom: 90px !important; }
.pb100 { padding-bottom: 100px !important; }

.pl0  { padding-left: 0    !important; }
.pl5  { padding-left: 5px  !important; }
.pl10 { padding-left: 10px !important; }
.pl15 { padding-left: 15px !important; }
.pl20 { padding-left: 20px !important; }
.pl25 { padding-left: 25px !important; }
.pl30 { padding-left: 30px !important; }
.pl35 { padding-left: 35px !important; }
.pl40 { padding-left: 40px !important; }
.pl45 { padding-left: 45px !important; }
.pl50 { padding-left: 50px !important; }
.pl60 { padding-left: 60px !important; }
.pl70 { padding-left: 70px !important; }
.pl80 { padding-left: 80px !important; }
.pl90 { padding-left: 90px !important; }
.pl100 { padding-left: 100px !important; }


.clearb{clear:both;}
.bnone{ border:none;!important}

.txtright{text-align:right; width:100%;}
.txtleft{text-align:left; width:100%;}
.txtcenter{text-align:center; width:100%;}
.float_r{float:right; display:inline;}
.float_l{float:left; display:inline;}
.vtop{ vertical-align:top;}
.imgover{}
#topback{
	bottom: 20px;
	right:20px;
	position: fixed;
	z-index: 9999;
	cursor: pointer;
	display:none;
}
#topback span{
	font-size:40px;
	display:block;
	color:#666;
}


/*******************************
 
baseCss
 
*******************************/
.builder{
	width:988px;
	margin:0 auto;
	text-align:left;
}

.border{
	border-top:solid 10px #1c9b74;
}

.bootBuilder{
	width:988px;
	margin:0 auto;
	text-align:left;
}
#spBtn{
	display:none;
}

.pc{
	display:block;
}
.smh{
	display:none;
}


@media screen and (max-width: 767px) {
.builder{
	width:100%;
	text-align:left;
}
.bootBuilder{
	width:94%;
	margin:0 3%;
	text-align:left;
	/*overflow-x:hidden;*/
}
img.smhImg{
	width:100%;
	height:auto;
}
#spBtn{
	display:inline;
	float:right;
}
#spBtn span{
	display:block;
	background:#fff;
	border:1px solid #000;
	padding:5px;
	border-radius:10%;
}
.pc{
	display:none;
}
.smh{
	display:block;
}
}


/*******************************
 
layoutCss
レイアウトベースで利用するCSS
 
*******************************/
/*サイドナビ設置時余白用*/

.boxLPad5{
	padding-right:5%;
}
.boxLPad10{
	padding-right:10%;
}
.boxLPad15{
	padding-right:15%;
}
.boxRPad5{
	padding-left:5%;
}
.boxRPad10{
	padding-left:10%;
}
.boxRPad15{
	padding-left:15%;
}
@media screen and (max-width: 767px) {

.boxLPad5,.boxLPad10,.boxLPad15,.boxRPad5,.boxRPad10,.boxRPad15{
	padding-right:0;
	padding-left:0;
}

}

#underMain{
}

#underMain h2{
	font-weight:bold;
	display:block;
	text-align:center;
	color:#fff;
	font-size:240%;
	padding-top:1.8em;
	padding-bottom:1.8em;

}
#underMain h2 span{
	font-weight:normal;
	display:block;
	padding-top:.5em;
	font-size:16px;
}
.sampleMain{
	background-image:url(images/under_hbg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
	-moz-background-size:cover;
	background-size:cover;
}


/*　　パンクズ　　*/
#clumbs{
	padding:5px 0;
	font-size:12px;
}
#clumbs a:after{
	content: "\f105";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	color:#000;
	margin:0 10px;
}


.inner{
	max-width: 988px;
}

/*******************************
 
HeadderCss
 
*******************************/
header:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
header{ 
	display: inline-block;
	position: relative;
}

* html header{height:1%;}
header{display:block;}

header{
	width:100%;
}

header h1{
	width:50%;
	float:left;
}

header img{
	margin: 30px 0px;
}


/*スマホ時*/
@media screen and (max-width: 767px) {
	header h1 {
    width: 70%;
    float: left;
    margin-bottom: 0px;
	margin-left: 10px;
}
	header img {
    margin: 20px 0px;
}	
}

/*******************************
 
navCss
 
*******************************/

nav{
	width:100%;
	border-bottom:1px solid #e7e7e7;
	border-top:1px solid #e7e7e7;
	background:#fff;
}

nav ul:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
nav ul{ display: inline-block; }
/*\*/
* html nav ul{height:1%;}
nav ul{
	display:block;
	margin:0;
}

nav ul li{
	width:calc(100% /5);
	float:left;
	text-align:center;
	height: 70px;
  	line-height: 40px;
}

nav ul li a{
	border-left:1px solid #ccc;
	display:block;
	padding:1.2em 0;
	color:#000;
	text-decoration:none;
	padding-bottom:15px;
}
nav ul li:last-child a{
	border-right:1px solid #ccc;
}

nav ul li a:hover{
	background:#1c9b74;
	color:#fff;
	text-decoration:none;
}

@media screen and (max-width: 767px) {

nav .builder{
	width:100%!important;
	margin:0!important;
}

nav ul{
	display:none;
}

nav ul li{
	width:100%;
	float:none;
	text-align:center;
	border-bottom:1px solid #ccc;
}

nav ul li:last-child{
	border-bottom:0;
}

nav ul li a{
	border:0;

}

}


/*******************************
 
パンクズCss
 
*******************************/
.clumbs {
    font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
}
.clumbs a {
    color: #1c9b74;
}
.clumbs a:after {
    content: ">";
    display: inline-block;
    color: #000;
    margin: 0 10px;
}

/*******************************
 
FooterCss
 
*******************************/

footer {
	/*display: flex;*/
	background: #2e4740;
	overflow: hidden;
	margin-top: 10px;
}
footer .box-flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: flex-start;
}
footer .box-flex .flex-item{
	width: 50%;
}
.f-link{
	padding-left: 25px;
    border-left: solid 1px #fff;
	align-self: stretch;
}
footer a{
	color: #fff;
}
footer a:hover{
	color: #1c9b74;
}
div.container {
	width: 988px;
	overflow: hidden;
}
div.outer {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 30px 0;
}
div.outer:after {
	clear: both;
	content: "";
}
div.inner {
	height: auto;
}

.f_img{
    margin-bottom: 20px;
    width: 340px;
}
.f_info{
	font-size: 14px;
	color: #fff;
}
.f-copyright{
	text-align: center;
	color: #fff;
	font-size: 13px;
	border-top: solid 1px #fff;
	padding: 20px 0;
}


/*スマホ時*/
@media screen and (max-width: 767px) {
	.f_img{
    width: 260px;
	margin-bottom: 20px;
	margin-top: 20px;
	}
	div.outer {
    width: 85%;
    margin: 0 auto;
    padding-top: 0px;	
	}
	footer .box-flex .flex-item{
		width: 100%;
	}
	.company{
		margin-bottom: 20px;
	    text-align: center;
	}
	.f-link{
		border-left: none;
	}
}

/*******************************
 
policyCss
個人情報で利用するCSS

*******************************/

.policyList li{
	border-bottom:1px dotted #000;
	padding-bottom:15px;
	margin-bottom:15px;
	text-indent:-1em;
	margin-left:1em;
}

.policyList li ul{
	padding-top:10px;
}

.policyList li ul li{
	border-bottom:0;
	padding-bottom:0;
	margin-bottom:5px;
	text-indent:-1.3em;
	margin-left:1.3em;
}

/*******************************
 
ハンバーガーメニュー

*******************************/

/*ハンバーガーボタン*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #be9dc9;
}

.el_humburger {
  position: absolute;
    top: 18px;
    right: 18px;
    width: 26px;
    height: auto;
    padding-top: 1px;
    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
	top: 36px;
    right: 24px;
}

.el_humburger::after{
  	content: '';
	width: 50px;
	height: 50px;
	z-index: -1;
	background-color: #148961;
	border-radius: 5px;
	display: inline-block;
	position: absolute;
	top: -14px;
    right: -11px;
}

.js_humburgerOpen .el_humburger {
}

.el_humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #fff;
  transition: all 0.2s ease-in-out;
  &:last-child {
    margin-bottom: 0;
  }
  .js_humburgerOpen & {
    background: #000;
  }
}

.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}

/*ナビゲーション*/

.navigation {
  display: none;
}

.navigation.js_appear{
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
}
.navigation_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation_wrapper {
  padding: 80px 0 0 0;
  text-align: center;
}

.navigation_item {
  font-ize: 18px;
  margin-bottom: 20px;
}

.navigation_item > a {
  color: #000;
  text-decoration: none;
}

.js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
.el_shop {
  position: absolute;

    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
	top: 16px;
    right: 70px;
    background-color: #004aa3;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    text-align: center;

}
.el_shop a{
    display: block;
    width: 100%;
    height: 100%;
}

.el_shop img{
	width: 100% !important;
	margin: -8px 1px 0 0!important;
}

/*******************************
 
GoogleMap

*******************************/

.google-maps {
position: relative;
padding-bottom: 50%; // これが縦横比
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}