@charset "utf-8";
/*
 * ページ共通のCSSを記述
 * ある程度まとまった領域のCSSです
 */

/*
 * header ヘッダ 
 */
#c_header{
	position: relative;
}

.c_header-logo{
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -77px;
	z-index: 99;
}

.c_header-contact{
	position: absolute;
	top: 0px;
	right: 20px;
	display: block;
	background-color: #e8f5e3;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 16px;
	-webkit-border-bottom-left-radius: 16px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 16px;
	-moz-border-radius-bottomleft: 16px;
	padding: 6px 0;
	margin: 0;
	width: 220px;
	font-weight: 700;
	color: #7abc60;
	text-align: center;
}
.c_header-contact i{
	display: inline-block;
	padding-right: 20px;
	font-size: 18px;
}

.c_header-nav{
	padding-top: 45px;
	font-size: 0px;
}
.c_header-nav .menu_li{
	display: inline-block;
	vertical-align: top;
}
.c_header-nav .menu_li a{
	box-sizing: border-box;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #cea348;
	text-align: center;
	vertical-align: middle;
}
.c_header-nav .home{width: 110px;}
.c_header-nav .service{width: 175px;}
.c_header-nav .day{width: 185px;margin-right: 200px;}
.c_header-nav .plan{width: 175px;}
.c_header-nav .company{width: 110px;}
.c_header-nav .kidos{width: 185px;}

.c_header-nav .home a{padding-top: 15px;}
.c_header-nav .company a{padding-top: 0px;}

.c_header-nav .menu_li{/* hover */
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.c_header-nav .menu_li::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #61a646;/* ボーダーカラー */
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-nav .menu_li:hover::after {
	transform: scale(1, 1);
}

.c_header-nav .menu_li .active::after{/* アクティブ時の設定 */
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #61a646;/* ボーダーカラー */
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-nav .menu_li .active:hover::after{
	transform: scale(1, 1);
}

.dropmenu{/* ドロップメニューに関するCSS */
  list-style-type: none;
  *zoom: 1;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu .menu_li{
  position: relative;
  text-align: center;
}
.dropmenu .menu_li a{
  display: block;
	border-bottom: none;
  text-decoration: none;
}
.dropmenu .menu_li ul{
  position: absolute;
  top: 100%;
  left: 0px;
  margin: 0;
  padding: 5px 0 0 0;
  width: 200px;/* ドロップメニューの幅 */
  list-style: none;
  z-index: 999;
}
.dropmenu .menu_li ul li{
	padding-bottom: 2px;
  width: 100%;
}
.dropmenu .menu_li ul li a{
  padding: 8px 10px;
  background: #81c269;
  border-radius: 6px;
  -webkit-border-radius: 6px; 
  -moz-border-radius: 6px;
  font-size: 12px;
  letter-spacing: -0.04em;
  color: white;
  text-align: left;
}
.dropmenu .menu_li ul li a:hover{
	background-color: #46922b;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
	
/* 広がりアニメーションに関するCSS */
#fade-in2 .menu_li ul{
  opacity: 0;
  top: 50%;
  visibility: hidden;
  transition: .5s;
}
#fade-in2 .menu_li:hover ul{
  top: 100%;
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1139px) {
	.dropmenu .menu_li ul{
	  left: -20%;
	  width: 120%;/* ドロップメニューの幅 */
	  font-size: 11px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_header-logo{
		margin-left: -54px;
	}
	.c_header-logo img{/* 70% */
		width: 108px;
		height: auto;
	}
	
	.c_header-contact{
		right: 10px;
		width: 180px;
		font-size: 14px;
	}
	.c_header-contact i{
		font-size: 17px;
	}

	.c_header-nav .menu_li a{
		font-size: 12px;
	}
	.c_header-nav .home{width: 10%;}
	.c_header-nav .service{width: 14%;}
	.c_header-nav .day{width: 19%;margin-right: 14%;}
	.c_header-nav .plan{width: 14%;}
	.c_header-nav .company{width: 10%;}
	.c_header-nav .kidos{width: 19%;}

	.c_header-nav .home a{padding-top: 8px;}
	.c_header-nav .company a{padding-top: 8px;}

	.dropmenu .menu_li ul{
	  position: absolute;
	  top: 100%;
	  left: 0px;
	  margin: 0;
	  padding: 5px 0 0 0;
	  width: 170px;/* ドロップメニューの幅 */
	  list-style: none;
	  z-index: 999;
	}
	.dropmenu .menu_li ul li a{
	  font-size: 10px;
	}
}
@media print{
	.c_header-logo{
		margin-left: -54px;
	}
	.c_header-logo img{/* 70% */
		width: 108px;
		height: auto;
	}
	
	.c_header-contact{
		right: 10px;
		width: 180px;
		font-size: 14px;
	}
	.c_header-contact i{
		font-size: 17px;
	}

	.c_header-nav .menu_li a{
		font-size: 12px;
	}
	.c_header-nav .home{width: 10%;}
	.c_header-nav .service{width: 14%;}
	.c_header-nav .day{width: 19%;margin-right: 14%;}
	.c_header-nav .plan{width: 14%;}
	.c_header-nav .company{width: 10%;}
	.c_header-nav .kidos{width: 19%;}

	.c_header-nav .home a{padding-top: 8px;}
	.c_header-nav .company a{padding-top: 8px;}
}
@media screen and (max-width: 767px) {
	#c_header{
		padding-top: 51px;
	}
	
	.c_header-logo{
		display: none;
	}
	
	.c_header-contact{
		position: static;
		right: 0px;
		border-radius: 10px;
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px;
		margin: 15px auto;
		width: 92%;
	}
	
	.c_header-nav{
		display: none;
	}
}


/*
 * promo 下層ページ見出し
 */
.c_promo{
	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 1140px; 
}

.c_promo-tit{
	position: absolute;
	top: 140px;
	left: 0px;
	width: 100%;
	text-align: center;
	z-index: 6;
}
.c_promo-tit .tit{
	padding-top: 40px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 40px;
	color: #033333;
}
.c_promo-tit .sub{
	position: relative;
	top: -110px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 18px;
	color: white;
	letter-spacing: 0.18em;
	text-shadow: 
    #7abc60 2px 0px,  #7abc60 -2px 0px,
    #7abc60 0px -2px, #7abc60 0px 2px,
    #7abc60 2px 2px , #7abc60 -2px 2px,
    #7abc60 2px -2px, #7abc60 -2px -2px,
    #7abc60 1px 2px,  #7abc60 -1px 2px,
    #7abc60 1px -2px, #7abc60 -1px -2px,
    #7abc60 2px 1px,  #7abc60 -2px 1px,
    #7abc60 2px -1px, #7abc60 -2px -1px;
}
.c_promo-tit .tit2{
	padding-top: 40px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 40px;
	color: white;
}
.c_promo-tit .sub2{
	position: relative;
	top: -110px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 18px;
	color: white;
	letter-spacing: 0.18em;
	text-shadow: 
    #7abc60 2px 0px,  #7abc60 -2px 0px,
    #7abc60 0px -2px, #7abc60 0px 2px,
    #7abc60 2px 2px , #7abc60 -2px 2px,
    #7abc60 2px -2px, #7abc60 -2px -2px,
    #7abc60 1px 2px,  #7abc60 -1px 2px,
    #7abc60 1px -2px, #7abc60 -1px -2px,
    #7abc60 2px 1px,  #7abc60 -2px 1px,
    #7abc60 2px -1px, #7abc60 -2px -1px;
}

.c_promo-bg{
	position: relative;
	left: 50%;
	margin-left: -1000px;
	z-index: 3;
}

.c_promo-end{
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-image: url(../img/home/promo_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 132px;
	z-index: 6;
}
@media screen and (min-width: 2001px) {
	.c_promo-bg{
		left: 0%;
		margin-left: 0px;
	}
	.c_promo-bg img{
		width: 100%;
	}

	.c_promo-end{
		background-size: 100% auto;
	}
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_promo{
		min-width: 100%; 
	}
	
	.c_promo-tit{
		top: 70px;
	}
	.c_promo-tit .tit{
		font-size: 32px;
	}
	.c_promo-tit .sub{
		top: -100px;
		font-size: 16px;
	}
	.c_promo-tit .tit2{
		font-size: 32px;
	}
	.c_promo-tit .sub2{
		top: -100px;
		font-size: 16px;
	}
	
	.c_promo-bg{
		margin-left: -600px;
	}
	.c_promo-bg img{
		width: 1200px;
	}

	.c_promo-end{
		background-size: 100% auto;
	}
}
@media print{
	.c_promo{
		min-width: 100%; 
	}
	
	.c_promo-tit{
		top: 70px;
	}
	.c_promo-tit .tit{
		font-size: 32px;
	}
	.c_promo-tit .sub{
		top: -100px;
		font-size: 16px;
	}
	.c_promo-tit .tit2{
		font-size: 32px;
	}
	.c_promo-tit .sub2{
		top: -100px;
		font-size: 16px;
	}
	
	.c_promo-bg{
		margin-left: -600px;
	}
	.c_promo-bg img{
		width: 1200px;
	}

	.c_promo-end{
		background-size: 100% auto;
	}
}
@media screen and (max-width: 767px) {
	.c_promo{
		min-width: 100%; 
	}
	
	.c_promo-tit{
		top: 30px;
	}
	.c_promo-tit .tit{
		font-size: 16px;
	}
	.c_promo-tit .sub{
		top: -60px;
		font-size: 10px;
	}
	.c_promo-tit .tit2{
		font-size: 16px;
	}
	.c_promo-tit .sub2{
		top: -60px;
		font-size: 10px;
	}
	
	.c_promo-bg{
		margin-left: -400px;
	}
	.c_promo-bg img{
		width: 800px;
	}

	.c_promo-end{
		background-size: 100% auto;
	}
}


/*
 * contact コンタクト
 */
.c_contact-txt01{
	position: relative;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.c_contact-txt01 span{
	display: inline-block;
	background-color: white;
	padding: 0 20px;
}
.c_contact-txt01::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	background-color: #31880e;
	width: 100%;
	height: 1px;
	z-index: -1;
}

.c_contact-list{
	overflow: hidden;
	font-size: 0px;
	text-align: center;
}
.c_contact-list li{
	display: inline-block;
	padding-right: 60px;
	width: 480px;
	vertical-align: top;
}
.c_contact-list li:last-child{
	padding-right: 0px;
}

.c_contact-tel{
	background-color: #e8f5e3;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 15px;
	width: auto;
	text-align: center;
}
.c_contact-tel .ic{
	display: inline-block;
	padding-right: 15px;
	font-size: 46px;
	color: #7abc60;
}
.c_contact-tel .tel{
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	color: #7abc60;
}

.c_contact-mail{
	display: block;
	background-color: #dcedfb;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 15px;
	width: auto;
	text-align: center;
}
.c_contact-mail .ic{
	position: relative;
	display: inline-block;
	padding-right: 15px;
	font-size: 46px;
	color: #2b71ab;
	z-index: 6;
}
.c_contact-mail .mail{
	position: relative;
	top: -4px;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: #2b71ab;
	z-index: 6;
}

.c_contact-mail{/* ホバー時の設定 */
	position: relative;
	text-decoration: none;
}
.c_contact-mail::after{
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(60, 150, 194, 0.5);/* ボーダーカラー */
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_contact-mail:hover::after{
	transform: scale(1, 1);
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_contact-txt01{
		font-size: 22px;
	}
	
	.c_contact-list{
		overflow: hidden;
		font-size: 0px;
		text-align: center;
	}
	.c_contact-list li{
		padding-right: 2%;
		width: 49%;
	}
	
	.c_contact-tel .ic{
		font-size: 40px;
	}
	.c_contact-tel .tel{
		font-size: 28px;
	}
	
	.c_contact-mail .ic{
		font-size: 40px;
	}
	.c_contact-mail .mail{
		font-size: 22px;
	}
}
@media print{
	.c_contact-txt01{
		font-size: 22px;
	}
	
	.c_contact-list{
		overflow: hidden;
		font-size: 0px;
		text-align: center;
	}
	.c_contact-list li{
		padding-right: 2%;
		width: 49%;
	}
	
	.c_contact-tel .ic{
		font-size: 37px;
	}
	.c_contact-tel .tel{
		font-size: 25px;
	}
	
	.c_contact-mail .ic{
		font-size: 37px;
	}
	.c_contact-mail .mail{
		font-size: 20px;
	}
}
@media screen and (max-width: 767px) {
	.c_contact-txt01{
		font-size: 16px;
	}
	.c_contact-txt01 span{
		padding: 0 10px;
	}

	.c_contact-list li{
		display: block;
		padding-right: 0px;
		padding-bottom: 10px;
		width: auto;
	}
	.c_contact-list li:last-child{
		padding-bottom: 0px;
	}

	.c_contact-tel .ic{
		font-size: 20px;
	}
	.c_contact-tel .tel{
		font-size: 18px;
	}
	
	.c_contact-mail .ic{
		font-size: 20px;
	}
	.c_contact-mail .mail{
		font-size: 15px;
	}
}


/*
 * access アクセス
 */
.c_access-list{
	overflow: hidden;
	font-size: 0px;
	text-align: center;
}
.c_access-list li{
	display: inline-block;
	padding-right: 60px;
	width: 480px;
	vertical-align: top;
}
.c_access-list li:last-child{
	padding-right: 0px;
}

.c_access-tel{
	background-color: #d2ebc8;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 15px;
	width: auto;
	text-align: center;
}
.c_access-tel .ic{
	display: inline-block;
	padding-right: 15px;
	font-size: 46px;
	color: #56a736;
}
.c_access-tel .tel{
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	color: #56a736;
}

.c_access-fax{
	background-color: #dcedfb;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 15px;
	width: auto;
}
.c_access-fax .ic{
	display: inline-block;
	padding-right: 15px;
	font-size: 46px;
	color: #2b71ab;
}
.c_access-fax .fax{
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	color: #2b71ab;
}

.c_access-arrow {
	position: relative;
	background: white;
	border: 1px solid #56a736;
	border-radius: 10px; 
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px;
	padding: 10px 15px;
	margin: 0 auto 30px auto;
	width: 600px;
}
.c_access-arrow:after, .c_access-arrow:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.c_access-arrow:after {
	border-top-color: white;
	border-width: 15px;
	margin-left: -15px;
}
.c_access-arrow:before {
	border-top-color: #56a736;
	border-width: 16px;
	margin-left: -16px;
}
.c_access-arrow .map{
	float: right;
	color: #56a736;
	text-decoration: underline;
}
.c_access-arrow .map:hover{
	text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_access-list li{
		padding-right: 2%;
		width: 49%;
	}
	
	.c_access-tel .ic{
		font-size: 40px;
	}
	.c_access-tel .tel{
		font-size: 28px;
	}
	
	.c_access-fax .ic{
		font-size: 40px;
	}
	.c_access-fax .fax{
		font-size: 28px;
	}
}
@media print{
	.c_access-list li{
		padding-right: 2%;
		width: 49%;
	}
	
	.c_access-tel .ic{
		font-size: 40px;
	}
	.c_access-tel .tel{
		font-size: 28px;
	}
	
	.c_access-fax .ic{
		font-size: 40px;
	}
	.c_access-fax .fax{
		font-size: 28px;
	}
}
@media screen and (max-width: 767px) {
	.c_access-list li{
		display: block;
		padding-right: 0px;
		padding-bottom: 10px;
		width: auto;
	}
	.c_access-list li:last-child{
		padding-bottom: 0px;
	}

	.c_access-tel .ic{
		font-size: 20px;
	}
	.c_access-tel .tel{
		font-size: 18px;
	}
	
	.c_access-fax .ic{
		font-size: 20px;
	}
	.c_access-fax .fax{
		font-size: 18px;
	}
	
	.c_access-arrow {
		padding: 10px;
		margin-left: 4%;
		margin-right: 4%;
		width: auto;
		font-size: 14px;
	}

	.c_access-arrow .map{
		display: block;
		float: none;
		text-align: right;
	}
}


/*
 * お問い合わせポリシー
 */
.policy{
	overflow: hidden;
}

.policy_tit{
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	font-family: 'Lora', 'メイリオ', Meiryo, '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #56a736;
	text-align: center;
}
.policy_tit .inn{
	color: #56a736;
	font-size: 24px;
	display: flex;
	align-items: center;
}
.policy_tit .inn:before, .policy_tit .inn:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #56a736;
	display: block;
}
.policy_tit .inn:before {
	margin-right: .4em;
}
.policy_tit .inn:after {
	margin-left: .4em;
}

.policy_txt{
	overflow: hidden;
	overflow-y: scroll;
	border: #a8a8a8 solid 1px;
	padding: 20px;
	height: 280px;
}
.policy_txt .mida{
	background-color: #575757;
	padding: 6px 10px;
	color: white;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.policy_tit .inn{
		font-size: 20px;
	}
}
@media print{
	.policy_tit .inn{
		font-size: 20px;
	}
}
@media screen and (max-width: 767px) {
	.policy_tit{
		width: 92%;
	}
	.policy_tit .inn{
		font-size: 15px;
	}

	.policy_txt{
		padding: 15px;
		height: 200px;
	}
}


/*
 * footer フッタ
 */
.c_footer{
	background-color: #61a646;
	padding: 40px 0;
	text-align: center;
}

.c_footer-link{
	overflow: hidden;
	font-size: 0px;
}
.c_footer-link li{
	display: inline-block;
	padding-right: 25px;
	vertical-align: top;
}
.c_footer-link li:last-child{
	padding-right: 0%;
}
.c_footer-link li a{
	font-size: 13px;
	font-weight: 600;
	color: white;
}
.c_footer-link li a:hover{
	text-decoration: underline;
}
.c_footer-link li a i{
	display: inline-block;
	padding-right: 6px;
}

.c_copy{
	font-size: 13px;
	font-weight: 600;
	color: white;
	text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_footer{
		text-align: left;
	}
	.c_footer-link li{
		padding-bottom: 5px;
	}
	.c_footer-link li a{
		font-size: 12px;
	}
	
	.c_copy{
		font-size: 12px;
	}
}
@media print{
	.c_footer{
		text-align: left;
	}
	.c_footer-link li{
		padding-bottom: 5px;
	}
	.c_footer-link li a{
		font-size: 12px;
	}
	
	.c_copy{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.c_footer{
		padding: 30px 0;
	}
	
	.c_footer-link{
		border-top: white solid 1px;
	}
	.c_footer-link li{
		display: block;
		float: left;
		padding-right: 0px;
		width: 50%;
	}
	.c_footer-link li:first-child{
		width: 100%;
	}
	.c_footer-link li a{
		display: block;
		border-bottom: white solid 1px;
		padding: 6px 0;
		font-size: 10px;
		text-align: center;
	}
	.c_footer-link li a i{
		display: none;
	}
	.c_footer-link li:nth-child(2n) a{
		border-right: white solid 1px;
	
	}
	
	.c_copy{
		font-size: 8px;
	}
}
