@charset "utf-8";
/* CSS Document */

html {
	background:#fff;
	}
	
body {
	margin: 0 auto;
	width:100%;
	letter-spacing:.1em;
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	box-sizing: border-box;
	}

ul, li, ol {
	list-style:none;
	margin:0;
	padding:0;
	box-sizing: border-box;
	}

p {
	font-size: 0.875em;
	margin: 0;
	padding: 0;
	line-height:1.8em;
	}

a, a:hover {
	text-decoration:none;
	transition: .3s;
	}

::selection {
    background: #846F60; /*背景色*/
    color: #fff; /*文字色*/
}
::-moz-selection {
    background: #846F60; /*背景色*/
    color: #fff; /*文字色*/
}


/* =================================================================================

   wrapper
 
=================================================================================== */
#wrapper {
	width:100%;
	animation: fadein 1.2s forwards;
	}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

	

/* =================================================================================

   header
 
=================================================================================== */	
#header {
	width:100%;
	border-top:4px solid #009844;
    position: relative;
    z-index: 2;
	}
	
#header .headerInner {
	max-width:1000px;
	width:100%;
	position: absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	}

#header .headerInner .logo {
	width:200px;
	position:relative;
	float:left;
	padding: 1.5% 0 0;
	}

#header .headerInner .logo p {
	position:absolute;
	left:0;
    bottom: -2em;
	font-size:0.750em;
	}

#header .headerInner .tel {
	width:200px;
	float: right;
	}

#header .headerInner .telInner {
    height: 50px;
    width: 100%;
	}

#header .headerInner .telInner p {
	text-align:center;
	color:#FFF;
    height: 100%;
    width: 100%;
    position: relative;
}
#header .headerInner .telInner a {
	color:#fff;
	background:#009844;
    display: block;
    font-size: 1.2em;
    height: 100%;
    width: 100%;
    white-space: nowrap;
}
#header .headerInner .telInner p span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

@media only screen and (max-width: 768px) {
#header {
	position:fixed;
	top: 0;
  left: 0;
	border-top: 2px solid #009844;
	z-index:2;
	}

#header .headerInner {
	background: rgba(255, 255, 255, 0.8);
	}

#header .headerInner .logo {
    width: 185px;
    padding: .5% 0 0;
    margin: 0 0 0 2.5%;
}

#header .headerInner .logo img {
    width: 80%;
}

#header .headerInner .logo p {
    font-size: 0.6em;
    letter-spacing: 0;
}

#header .headerInner .tel {
	height: 50px;
	position: relative;
	}

#header .headerInner .telInner {
	position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    transform: translateY(-50%);
	margin: 0 50px 0 10px;
    height: 100%;
	}

#header .headerInner .telInner p {
	}

#header .headerInner .telInner a {
	color:#fff;
    font-size: 16px;
	}

}


@media only screen and (max-width: 480px) {	
#header .headerInner .logo {
    width: 37%;
    padding: 1% 0 1px;
	}

#header .headerInner .logo p { 
	letter-spacing: -0.12em;
	font-size:0.68em;
    bottom: -1.5em;
	}

#header .headerInner .tel {
	width: 50%;
	}

#header .headerInner .telInner p {
    font-size:0.85em;
	letter-spacing: 0;
	padding: 0;
	}
}


@media only screen and (max-width: 375px) {	
#header .headerInner .logo p { 
	}

#header .headerInner .logo img {
    width: 84%;
	}

#header .headerInner .tel {
    width: 53%;
	}

#header .headerInner .telInner {
    margin: 0 50px 0 2.9%;
        width: calc(100% - 50px);
	}
}


@media only screen and (max-width: 320px) {
#header .headerInner .logo {
    width: 39%;
	padding: 1.1% 0 0;
	}

#header .headerInner .logo img {
    width: 100%;
}

#header .headerInner .logo p {
    letter-spacing: -.12em;
    font-size: 0.563em;
	}
	
#header .headerInner .tel {
    width: 55%;
	}

#header .headerInner .telInner {
    margin: 0 50px 0 1.9%;
	}

#header .headerInner .telInner p {
    font-size:0.7em;
	}

#header .headerInner .telInner p span {
    font-size: 1.9em;
	}
}


/* =================================================================================

   pcMenu
 
=================================================================================== */
#pcMenu {
	border-bottom: 1px solid #e3deda;
	padding: 1.7% 0;
	}

#pcMenu .pcMenuInner {
	max-width:1000px;
	width:100%;
	margin:0 auto;
	}

#pcMenu .pcMenuInner ul {
	display: table;
	margin:auto;
	}

#pcMenu .pcMenuInner ul li {
	float:left;
	border-left: 1px solid #e3deda;
	padding:4px 20px;
	}

#pcMenu .pcMenuInner ul li:last-child {
	border-right: 1px solid #e3deda;
	}

#pcMenu .pcMenuInner ul li a {
	position: relative;
	display: inline-block;
	font-size:15px;
	transition: .3s;
	}

#pcMenu .pcMenuInner ul li a::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #009844;
	transition: .3s;
	}

#pcMenu .pcMenuInner a:hover {
	color: #009844;
	}
	
#pcMenu .pcMenuInner a:hover::after {
	width: 100%;
	}


/* =================================================================================

   main
 
=================================================================================== */
#main {
	width:100%;
	}
	
#main .mainInner {
	position: relative;
    width: 100%;
    overflow: hidden;
	z-index:-1;
	}

#main .mainInner img {
	width:100%;
	}

/* h1 */
#main .mainTit {
	display:block;
	position: absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left:0;
	right:0;
	}

#main .mainInner .subTit {
    color: #009844;
    text-align: center;
    font-family: 'Josefin Slab', serif;
    font-size: 1.250em;
    font-weight: bold;
}

#main .mainInner h1 {
	text-align:center;
	font-size:2.625em;
	font-weight: normal;
	line-height: 1.3;
	}

#future #main .mainInner h1 {
	background:url(/contract/images/deco_feature.png) no-repeat;
	background-position:50% 15%;
	background-size:13% auto;
	text-align:center;
	font-size:2.625em;
	font-weight: normal;
	line-height: 1.3;
	margin:auto;
	}

#future #main .mainInner h1 span {
	font-size: 40%;
	font-weight: 700;
	}

@media only screen and (max-width: 768px) {
#main .mainInner {
	position:relative;
    width: 100%;
    height: 265px;
    overflow: hidden;
	z-index:-1;
	}
	
#main .mainInner img {
	width: initial;
	max-width: none;
    height: 100%;
	position: absolute;
    top: 0;
	left:0;
    right: 0;
	margin:auto;
	}

/* h1 */
#main .mainTit {
	top:55%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	}
}

@media only screen and (max-width: 480px) {
#main .mainInner {
	width:100%;
    height: initial;
	}
	
#main .mainInner img {
    width: 100%;
	position: inherit;
	}

/* h1 */
#main .mainTit {
	top:59%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	}
	
#main .mainInner h1 {
    font-size: 2.375em;
    line-height: 1.25;
	}
	
#future #main .mainInner h1 {
    background-position: 50% 18%;
    background-size: 26% auto;
    font-size: 2.375em;
    line-height: 1.25;
	}

}

@media only screen and (max-width: 320px) {
#main .mainTit {
	top:58%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	}

#main .mainInner h1 {
    font-size: 2.313em;
	}
	
#future #main .mainInner h1 {
    background-position: 50% 19%;
    background-size: 28% auto;
    font-size: 2.313em;
	}	
}


/* =================================================================================

   contents
 
=================================================================================== */
#contents {
	overflow: hidden;
	}
	
.contents {
	width:100%;
	}

.contentsInner {
	max-width:1000px;
	width:100%;
	position:relative;
	margin:0 auto;
	padding:60px 0;
	}

.dotbg {
	background:url(/contract/images/bg_dot1.png) repeat;
	}

.contentsInner h2.common {
	position:relative;
	font-size:1.625em;
	text-align:center;
	color:#009844;
	margin: 0 auto 60px;
	}

.contentsInner h2.common:before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    width: 40px;
    height: 1px;
    margin: 0 auto;
    background-color: #009844;
    vertical-align: middle;
	}

.contentsInner p.commonTxt {
	text-align:center;
	margin:0 auto 8%;
	}

.contentsInner p.commonTxt2 {
	text-align:center;
	margin:0 auto;
	}


@media only screen and (max-width: 1024px) {
.contentsInner {
	width:90%;
	}
}


@media only screen and (max-width: 768px) {
.contentsInner {
	padding:40px 0;
	}
}


@media only screen and (max-width: 480px) {
.contentsInner h2.common {
    font-size: 1.43em;
	margin: 0 auto 40px;
	}

.contentsInner p.commonTxt {
	text-align:left;
	margin: 18% auto 8%;
	}

.contentsInner p.commonTxt2 {
	text-align:left;
	margin: 18% auto 0;
	}
}

@media only screen and (max-width: 375px) {
.contentsInner h2.common {
    margin: 0 auto 37px;
	}
}

/* =================================================================================

   link
 
=================================================================================== */
.link {
	}

.link a {
	display:block;
	background:url(/contract/images/arrow_green.png) no-repeat;
	background-position:95% 50%;
	background-size:6px auto;
	border:1px solid #009844;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	text-align:center;
	color:#009844;
	padding:2%;
	}

.link a:hover {
	background:url(/contract/images/arrow_white.png) no-repeat #009844;
	background-position:97% 50%;
	background-size:6px auto;
	border:1px solid #009844;
	color:#fff;
	}

.linkW1 {
	width:70%;
	}

@media only screen and (max-width: 768px) {
	.link a:hover {
	background:url(/contract/images/arrow_green.png) no-repeat #009844;
	background-position:95% 50%;
	background-size:6px auto;
	border:1px solid #009844;
	color:#009844;
	}
}

@media only screen and (max-width: 480px) {
.link a {
	font-size:115%;
	}

.linkW1 {
	width:100%;
	}
}


/* =================================================================================

   crumb
 
=================================================================================== */
#crumb {
	width:100%;
	border-top:1px #e3deda solid;
	text-align: left;
	padding:1% 0;
	}
	
#crumb .crumbInner {
	max-width:1000px;
	width:100%;
	font-size:0.750em;
	color:#A09085;
	margin:0 auto;
	}

#crumb .crumbInner a {
	position: relative;
	display: inline-block;
	transition: .3s;
	color:#A09085;
	}

#crumb .crumbInner a::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #C6BCB6;
	transition: .3s;
	}

#crumb .crumbInner a:hover::after {
	width: 100%;
	}

#crumb .crumbInner a.home {
	background:url(/contract/images/icon_home.png) no-repeat;
	background-size: 25%;
    background-position: left 50%;
    padding: 0 0 0 23px;
	}

@media only screen and (max-width: 1024px) {
#crumb .crumbInner {
	width:90%;
	}
}

@media only screen and (max-width: 768px) {
#crumb .crumbInner a::after, #crumb .crumbInner a:hover::after {
	display:none;
	}
}

@media only screen and (max-width: 480px) {
#crumb {
	padding:3% 0;
	}

#crumb .crumbInner {
	font-size: 98%;
	}

#crumb .crumbInner a.home {
	background-size: 20%;
	}
}


/* =================================================================================

   fotter
 
=================================================================================== */
#fotter {
	width:100%;
	}

/* contact-電話お問い合わせ */	
.contact {
	background:url(/contract/images/bg_dot1.png) repeat;
	}

.contactInner {
	max-width:1000px;
	width:100%;
	text-align:center;
	margin:0 auto;
	padding:55px 0 50px;
	}

.contactInner .telTxt {
	font-size:1em;
	}

.contactInner .telNumber {
	font-family: 'Roboto Slab', serif;
	font-size:2.938em;
	letter-spacing: .12em;
	line-height: 1.4em;
	color:#009844;
	}

.contactInner .telNumber a, .contactInner .telNumber a:hover {
	color:#009844;
	}

/* fotterInner */	
.fotterInner {
	max-width:1000px;
	width:100%;
	margin:0 auto;
	padding:60px 0;
	}

.fotterInner ul.foot {
	width: 100%;
	display: table;
	margin:auto;
	}

.fotterInner ul.foot li {
	display:inline-block;
	font-size:0.813em;
	text-align:left;
	vertical-align: top;
	padding-right: 7.8%;
	}

.fotterInner ul.foot li:last-child {
	padding-right: 0;
	}

.fotterInner .titlink a {
	display: inline-block;
	background:url(/contract/images/arrow_footer-pc.png) no-repeat;
	background-position: left 50%;
	background-size: 13px;
	line-height: 1.6em;
    padding: 0 0 0 20px;
	}

.fotterInner .sublink a {
	background:url(/contract/images/arrow_footer1-sp.png) no-repeat;
	background-size:8px auto;
	background-position: 2px 50%;
	padding: 0 0 0 20px;
	}


/* copyrightElement */	
.copyrightElement {
	border-top: 1px solid #e3deda;
	border-bottom: 1px solid #e3deda;
	padding:20px 0;
	margin:20px 0;
	}

.copyrightElement ul.copy {
	width: 40%;
	float:left;
	display: table;
	}

.copyrightElement ul.copy li {
	display:inline-block;
	padding:0 2% 0 0;
	font-size:0.688em;
	}

.copyrightElement ul.copy a {
	background:url(/contract/images/arrow_footer1-sp.png) no-repeat;
	background-size:8px auto;
	background-position: left 50%;
	padding: 0 0 0 15px;
	}

.copyrightElement .copyright {
	width: 60%;
	float:right;
	font-size:0.6em;
	text-align:right;
	margin:0;
	}

/* copyrightElement */
.hdElement {
	/* width:38%; */
	margin:auto;
	justify-content: center;
	align-items: center;
	display: flex;
	}

.hdElement .logo {
    height: 45px;
    width: auto;
    display: table;
    margin: 0 10px;
	}

.hdElement .logo a img{
    height: 45px;
    width: auto;
}

/* fixedTop */
#fixedTop {
    right: 10px;
    bottom: 10px;
    width: 55px;
    height: 55px;
    display: none;
    position: fixed;
   	z-index: 1000;
    -webkit-transform: translateZ(0);
	}

#fixedTop:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
	}

/* contactBtn */
#footer .btnBox{
    width: 100%;
    margin: 15px auto 0;
}
#footer .contactBtn{
    width: 50%;
    min-width: 480px;
    margin: 0 auto 15px;
}
#footer .contactBtn a{
    display: block;
    background: #ee8100;
    border: 1px solid #ee8100;
    position: relative;
    border-radius: 8px;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    transition: .3s;
}
#footer .contactBtn a::after{
    position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(0,-50%) rotate(-45deg);
    right: 5%;
    top: 50%;
    transition: .3s;
}
#footer .contactBtn a:hover{
    background: #fff;
    color: #ee8100;
}
#footer .contactBtn a:hover::after{
    right: 4%;
    border-right: 1px solid #ee8100;
    border-bottom: 1px solid #ee8100;
}

#footer .contactBox01 {
    border: 1px solid #e3deda;
    padding: 40px 30px;
}

#footer .contactBox01.no-outline {
	border: none;
	padding-top: 0;
	padding-bottom: 0;
}

#footer .contactBox01 + .contactBox01 {
	margin-top: 45px;
}

#footer .contactBox01 h3{
    font-size: 1.4em;
}
#footer .contactBox01 p + p{
    margin-top: 20px;
}

@media only screen and (max-width: 1024px) {
.contactInner, .fotterInner {
	width:90%;
	}

}


@media only screen and (max-width: 768px) {
.fotterInner ul.foot li {
	padding-right: 7%;
	}
#footer .contactBtn{
    width: 100%;
	min-width: 100%;
}
}


@media only screen and (max-width: 480px) {
.contactInner {
    padding: 45px 0;
}

/* fotterInner */
.fotterInner {
    width: 100%;
	padding:0;
}

.fotterInner ul.foot {
	width: 100%;
	display: block;
	margin:auto;
	}

.fotterInner ul.foot li {
	width:100%;
	float: none;
	border-top:1px solid #e3deda;
	font-size:100%;
	padding: 0 0 0 0;
	}

.fotterInner ul.foot li:last-child {
	border-bottom:1px solid #e3deda;
	}

.fotterInner .titlink a {
	width:85%;
	white-space: nowrap;
	display: block;
	background:url(/contract/images/arrow_footer1-sp.png) no-repeat;
	background-size:3% auto;
	background-position: left 50%;
	line-height: 1.6em;
    padding: 3% 0 3% 20px;
	margin:auto;
	}

/* copyrightElement */	
.copyrightElement {
	width:100%;
	border-top: none;
	margin:0 auto;
	}
	
.copyrightElement ul.copy {
	width: 100%;
	float: initial;
	display:table;
	text-align:center;
	margin: 0 auto 2%;
	}

.copyrightElement ul.copy li {
	padding:0 4% 0 0;
	}

.copyrightElement ul.copy li:last-child {
	padding:0;
	}

.copyrightElement ul.copy a {
	padding: 0 0 0 12px;
	letter-spacing: 0;
	}


.copyrightElement .copyright {
	width: 100%;
	float:none;
	text-align:center;
	}
	
/* copyrightElement */	
.hdElement {
	width:100%;
	margin:auto;
    flex-direction: column;
    padding-bottom: 20px;
	}

.hdElement .logo {
    float: none;
    margin: 10px auto;
	}

/* fixedTop */
#fixedTop {
    width: 45px;
    height: 45px;
	}
}


@media only screen and (max-width: 320px) {
.contactInner .telTxt {
    font-size: 0.938em;
	}

.contactInner .telNumber {
    font-size: 2.6em;
	}

.copyrightElement ul.copy li {
    padding: 0 1.8% 0 0;
}
}



/* =================================================================================

   要素出方
 
=================================================================================== */
.fadeInDown1 {
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-name: fadeInDown1;
	animation-name: fadeInDown1;
	visibility: visible !important;
	}
	
@-webkit-keyframes fadeInDown1 {
	0% { opacity: 0; -webkit-transform: translateY(-30px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fadeInDown1 {
	0% { opacity: 0; -webkit-transform: translateY(-30px); -ms-transform: translateY(-30px); transform: translateY(-30px); }
	100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


.fadeInDown2 {
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-name: fadeInDown1;
	animation-name: fadeInDown1;
	visibility: visible !important;
	}
	
@-webkit-keyframes fadeInDown2 {
	0% { opacity: 0; -webkit-transform: translateY(-40px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fadeInDown2 {
	0% { opacity: 0; -webkit-transform: translateY(-40px); -ms-transform: translateY(-40px); transform: translateY(-40px); }
	100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/* =================================================================================

   PC,SP表示非表示
 
=================================================================================== */
.pcnone{ display: none;}
.pcnone2{ display: none;}
.tabnone{ display: block;}
.spnone{ display: block;}

@media only screen and (max-width: 768px) {
.pcnone{ display:block;}
.tabnone{ display: none;}
}

@media only screen and (max-width: 480px) {
.pcnone2{ display: block;}
.spnone{ display: none;}
}

