﻿@charset "utf-8";

/*=========================================== 
スマホ向けのレイアウトの指定（さらに制御）：～480px 
===========================================*/
@media only screen and (min-width: 0px) {

html,body{
	color: #333333;/* 文字基本色指定 */
}

#container{
	display: none;
}
  
/*.--------------------------------

ヘッダー

--------------------------------*/
header{
	width: 100%;
	margin: 0 auto;
}

.header_inner{
	width: 90%;
	margin: 16px auto;
}

header .logo{
	display: inline-block;
}

header .logo a{
	display: block;
}

/*ドロワーメニュー*/
.drawer .drawer-nav{
	z-index: 20;
}

.drawer .drawer-nav ul{
	padding: 0 0 20px 0;
}

.drawer .drawer-nav li{
	margin: 0 20px;
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #fff;
}

.drawer .drawer-nav li a{
	padding: 20px 0;
    color:rgb(255,255,255);
	display: block;
}

/*.--------------------------------

フッター

--------------------------------*/
footer{
    background-color: rgb(26,128,92);
    color: #ffffff;
    }

footer .contact_box{
	box-sizing: border-box;
	width: 90%;
	margin: 32px auto;
	border: 1px solid rgb(255,255,255);
	border-radius: 15px;
	font-size: 0;
	text-align: center;
	background-color: #fff;
	overflow: hidden;
}

footer .contact_box .heading{
	padding: 10px 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.14em;
	border-bottom: 1px solid rgb(26,128,92);
	background-color: rgb(26,128,92);
}
footer .contact_box .link {
    padding: 20px;
}

footer .contact_box ul li a{
	display: block;
}

footer .contact_box ul li img{
	width: 100%;
	height: auto;
}

footer .link .form{
	margin: 6px auto 0;
	background-color: rgb(26,128,92);
	border-radius: 4px;
}

footer .link .form a{
	color: #fff;
	font-size: 14px;
  line-height: 2.5;
	text-align: center;
	display: block;
}

footer i.fa-caret-right{
	font-size: 24px;
	text-align: center;
}

footer .contact_box ul.mail i.fa-caret-right{
	color: rgb(48,191,235);
}

footer .contact_box ul.tel i.fa-caret-right{
	color: rgb(124,187,0);
}


footer .footer_logo{
    width: 90%;
	max-width: 200px;
    margin: 32px auto 0;
}

footer .footer_logo img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
footer#form{padding: 32px 0 0;}
footer#form .footer_logo{
	margin: 0 auto 32px;
}

footer#form .footer-wrap{
	margin: 0 auto;
}

footer .footer-wrap{
    width: 90%;
    margin: 32px auto;
}

footer .footer-nav{
	padding: 32px 0;
	border: solid #fff;
	border-width: 1px 0;
}

footer .footer-nav ul{
	box-sizing: border-box;
	float: left;
}

footer .footer-nav.nav-02-wrap.clearfix.sp {
  padding: 0;
  border: none;
}
footer .footer-nav .nav-02{
  
}
footer .nav-02-wrap{background-color: rgb(242,242,242);}

footer .footer-nav.sp .nav-02 li{
  padding: 0;
}
footer .footer-nav ul.main{
	border-right: 1px dashed #fff;
  width: 45%;
	min-width: 100px;
}

footer .footer-nav ul.sub {
    width: 55%;
}
footer .footer-nav ul li{
  padding: 20px 0 0 20px;
	font-size: 1.6rem;
}

footer .footer-nav ul li:first-child{
    padding: 0 0 0 20px;
}

footer .footer-nav ul li a{
	margin: 0 auto;
	color: #ffffff;
	line-height: 1.8rem;
  display: block;
}
    
footer .copy{
	padding: 0 0 10px 0;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
}
	
	
/*ページトップ*/
#page_top{
	position:fixed;
	bottom:20px;
	right:20px;
	z-index: 10;
}

.form #page_top{
	bottom:20px;
}

#page_top img{
	width: 60px;
	height: auto;
	display: block;
}



/*.--------------------------------

中ページ共通部分

--------------------------------*/

/*.wrapper--------------------------------*/
#wrapper{
	background-color: #fff;
	}	

/*.mv-------------------------------*/
.mv{
	width: 100%;
  height: 240px;
	background-image: url(../images/privacy_mv.jpg);
	background-position: center;
	background-size: cover;
	padding: 90px 0 44px;
	text-align: center;
  position: relative;
  box-sizing: border-box;
	}
  
.mv::before{
	content:"";
    background-color: rgba(26,128,92,0.1);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
  }
.mv h1{
	position: relative;
	background-color: #ffffff;
  height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
}

.mv span{/*ブレイクポイントで数値が変わる*/
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: #333333;
  text-indent: 0.8rem;
	letter-spacing: 0.8rem;
	display: inline-block;
  padding: 0 0.5rem;
}

.mv h1:before{
  content: '';
  display: block;
  width: 16px;
  height: 3px;
  border-top: 2px rgb(26,128,92) solid;
  border-bottom: 2px rgb(26,128,92) solid;
}

.mv h1:after{
  content: '';
  display: block;
  width: 16px;
  height: 3px;
  border-top: 2px rgb(26,128,92) solid;
  border-bottom: 2px rgb(26,128,92) solid;
}

.mv span.small {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.4rem;
  margin: 5px 0 0;
}

ul.company{margin-bottom: 60px;}

ul.company a{
	display:block;
	font-size:16px;
	font-size:1.6rem;
	color:rgb(26,128,92);
	line-height:3;
}

ul.company li{
border-bottom:2px solid rgb(200,200,200);
}
ul.company li.active a{color:#fff;}
ul.company li.active{
	background-color:rgba(26,128,92,0.8);
  position: relative;
}
ul.company li.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 60px solid #fff;  /* 三角を白にする */ 
  border-right: 24px solid transparent;
}
  
/*.pankuzu-------------------------------*/
.pankuzu{
	background-color: rgb(26,128,92);
	}

.pankuzu ul{
	padding:5px;
	width: 90%;
	overflow: hidden;
	}

.pankuzu ul li{		
	font-size: 1.2rem;
	line-height: 1.8;
	color: #ffffff;
	float: left;
	}

.pankuzu ul li:nth-of-type(n+2):before{	/*階層やじるし*/
	content:"＞";
  padding: 0 14px;
	display: inline-block;
	}

.pankuzu ul li a{
	text-decoration: none;
	color: #ffffff;
	}


/*新着情報*/	
.cat-mark {
	font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    padding: 2px 2px 2px 3px;
    margin-left: 4px;
    border-radius: 4px;
    min-width: 104px;
    display: inline-block;
    text-align: center;
}
	
.head{/*本社*/background-color:#3E805F;}
.kyusyu{/*九州*/background-color:#E59A3B;}
.care{/*介護サービス*/background-color:#FF6D98;}
	
/*共通部分*/
.br{
	display: inline-block;
}

.sp{
	display: block;
}

.pc{
	display: none;
}
  
.contents p{
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: justify;
}
}

/*=========================================== 
スマホ向けのレイアウトの指定：480px～
===========================================*/
@media only screen and (min-width: 481px) {
}

/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {
/*.--------------------------------

ヘッダー

--------------------------------*/
header{
	width: auto;
	max-width: 940px;
	padding: 0 10px;
}

header .header_inner{
	width: auto;
	margin: 20px auto;
	overflow: hidden;
}

header .logo{
	float: left;
}

header .logo a:hover{
	opacity: 0.8; 
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}

header nav{
	overflow: hidden;
	float: right;
  margin: 5px 0;
}

header ul li{
  margin: 21px 0 15px 20px;
  font-size: 14px;
	letter-spacing: 0.08em;
	float: left;
}

header ul li.g-nav06{
	margin: 0 0 0 28px;
}

header ul li.g-nav06 span{
	margin: 6px auto 0;
	font-size: 10px;
	text-align: center;
	background-color: rgb(26,128,92);
	border-radius: 4px;
	display: block;
}

header ul li a{
	color: rgb(50,50,50);
	display: block;
}

header ul li.g-nav06 a{
	color: #fff;
	line-height: 22px;
}


/*ヘッダー > 下線*/
header ul li a{
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: rgb(26,128,92);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header ul li a:hover::after {
  transform: scale(1, 1);
}

.mv h1{
  height: 90px;
  padding: 0 35px;
}

.mv span{/*ブレイクポイントで数値が変わる*/
	font-size: 2.7rem;
}

.mv h1:before{
  width: 24px;
  height: 4px;
  border-top: 3px rgb(26,128,92) solid;
  border-bottom: 3px rgb(26,128,92) solid;
}

.mv h1:after{
  width: 24px;
  height: 4px;
  border-top: 3px rgb(26,128,92) solid;
  border-bottom: 3px rgb(26,128,92) solid;
}

.mv span.small {font-size: 14px;}

/*.--------------------------------

フッター

--------------------------------*/
footer{
	padding: 0;
}

footer .footer-wrap{
	width: auto;
	max-width: 940px;
	margin: 0 auto;
	padding: 30px 10px;
}

footer .footer_logo{
	margin: 0;
	max-width: 225px;
	float: left;
}

footer#form .footer_logo {
    margin: 0;
}

footer .footer-nav{
	padding: 0;
	border: none;
}

footer .footer-nav ul{
	width: 100%;
	font-size: 0;
	text-align: center;
	float: right;
}

footer .footer-nav ul.main{
  width: auto;
	margin: 0 0 16px 0;
	border: none;
}
footer .footer-nav ul.sub{width: auto;}
footer .footer-nav ul.sub li{font-size: 1.4rem;}
footer .footer-nav ul li{
	padding: 0 0 0 20px;
  display: inline-block;
	vertical-align: top;
}

footer .footer-nav ul.sub li a{
	text-align: right;
}

footer .footer-nav a:hover{
	opacity: 0.3; 
	filter:alpha(opacity=30); /* IE 6,7*/
	-ms-filter: "alpha(opacity=30)"; /* IE 8,9 */
	-moz-opacity:0.3; /* FF , Netscape */
	-khtml-opacity: 0.3; /* Safari 1.x */
	zoom:1; /*IE*/
	/*cursor: pointer;*/
	}
  
footer .nav-01,
footer .nav-02{
  width: 100%;
}
footer .nav-01 ul,
footer .nav-02 ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .nav-01 ul li,
footer .nav-02 ul li{padding: 0!important;}
footer .copy{
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 8px 0;
}

	
/*ページトップ*/
#page_top{
	max-width: 960px;
	bottom:30px;
	right:30px;
}

#page_top img{
	width: 80px;
}

#page_top a:hover{
	opacity: 0.8; 
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}
	
	
/*.mv-------------------------------*/	
.mv{
	height: 480px;
	padding: 0;
	}

.mv h1{
	margin: 204px 0 0;
	}

/*.pankuzu-------------------------------*/
.pankuzu {
	margin: 0 auto;
	}
.pankuzu ul{
	width: 940px;
	margin: 0 auto;
	}

.pankuzu ul li{		
	font-size: 1.4rem;
	}
/*.--------------------------------

2カラム

--------------------------------*/
main{
  width: 65%;
  float: left;
}
aside{
  width: 30%;
  float: right;
}

/*共通部分*/
.sp{
	display: none;
}

.pc{
	display: block;
}
}	