@charset "utf-8";

@font-face {
   font-family: MyWebFont01;
   src: url('font/font01.woff') format("woff");
}

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

    Element

-------------------------------------------*/
html{
	font-size: 62.5%;
}

body{
	min-width: 1040px;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	color: #5c5749;
	font-family: "メイリオ", sans-serif;
}

a{
	color: #5c5749;
	transition: .3s all;
}
a:hover{
	opacity: 0.8;
}

.inner{
	max-width: 1000px;
	margin: 0 auto;
}

.more_btn01 a{
	background: #7e796c;
	display: block;
	width: 286px;
	height: 53px;
	text-align: center;
	line-height: 53px;
	color: #fff;
	margin: 0 auto;
	border-radius: 2px;
}
.more_btn01 a span{
	display: block;
	background: url(images/arrow01.png) no-repeat 95% center;
	transition: .3s all;
}
.more_btn01 a:hover span{
	display: block;
	background: url(images/arrow01.png) no-repeat 97% center;
}

header{
	padding: 20px;
	background: #fff;
}
header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav ul li{
	float: left;
	position: relative;
	padding: 0 0 0 22px;
	margin: 0 0 0 25px;
}
header nav ul li a{
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
header nav ul li a:hover{
	opacity: 0.8;
}
header nav ul li::before{
	content: "";
	display: block;
	position: absolute;
}
header nav ul li:nth-of-type(1)::before{
	background: url(images/nav_ico01.png) no-repeat left center;
	background-size: contain;
	left: 0;
	top: -1px;
	width: 15px;
	height: 14px;
}
header nav ul li:nth-of-type(2)::before{
	background: url(images/nav_ico02.png) no-repeat left center;
	background-size: contain;
	left: 0;
	top: -1px;
	width: 13px;
	height: 17px;
}
header nav ul li:nth-of-type(3)::before{
	background: url(images/nav_ico03.png) no-repeat left center;
	background-size: contain;
	left: 0;
	top: -2px;
	width: 16px;
	height: 17px;
}
header nav ul li:nth-of-type(4)::before{
	background: url(images/nav_ico04.png) no-repeat left center;
	background-size: contain;
	left: 0;
	top: -2px;
	width: 17px;
	height: 16px;
}
header nav ul li:nth-of-type(5){
	padding: 0;
	margin: 0 0 0 35px;
}
header nav ul li:nth-of-type(5) a {
	background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
}
header nav ul li div{
    background: url(images/nav_bg.png) no-repeat;
    position: absolute;
    z-index: 1;
    width: 100%;
    min-width: 200px;
    box-sizing: border-box;
    padding: 15px 15px 10px 10px;
    top: 15px;
    left: 0;
    display: none;
}
header nav ul li div a{
    background: url(images/arrow02.png) no-repeat 4px center;
    background-size: 8px;
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 1.2rem;
    border-bottom: dashed 1px #ddd;
}
header nav ul li div a:last-child{
	border-bottom: none;
}
header nav ul li:hover div{
	display: block;
}

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

	about

---------------------------------*/
#about{
    background: url(images/about_bg.png) no-repeat right bottom;
    background-size: contain;
    text-align: center;
    padding: 100px 0;
}
#about h2{
	margin: 0 0 100px;
}
#about p{
	line-height: 38px;
}

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

	service

---------------------------------*/
#service{
	background: #faf1f1;
	padding: 90px 0;
	text-align: center;
}
#service h2{
	text-align: center;
	margin: 0 0 90px;
}
.service_box{
	display: flex;
	justify-content: space-between;
}
.service_box div{
    width: 290px;
    min-height: 500px;
    position: relative;
}
.service_box img{
	margin: 0 0 30px;
}
.service_box p{
	line-height: 26px;
}
.service_box a{
	position: absolute;
	bottom: 0;
	background: #f0acad;
	display: block;
	width: 100%;
	height: 53px;
	line-height: 53px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
}
.service_box a span{
	background: url(images/arrow01.png) no-repeat 95% center;
	display: block;
	transition: .3s all;
}
.service_box div:nth-of-type(2) a{
	background: #c7e09c;
}
.service_box div:nth-of-type(3) a{
	background: #afddee;
}
.service_box a:hover{
	opacity: 0.8;
}
.service_box a:hover span{
	background: url(images/arrow01.png) no-repeat 97% center;
	display: block;
}

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

	info

---------------------------------*/
#info{
	padding: 100px 0;
}
#info h2{
	text-align: center;
	margin: 0 0 90px;
}
#info_slide{
	margin: 0 0 100px;
}
#info_slide dl{
	display: flex;
	align-items: center;
}
#info_slide dt{
	width: 50%;
}
#info_slide dt img{
    display: block;
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
#info_slide dd{
	width: 50%;
	padding: 5%;
	box-sizing: border-box;
}
#info_slide dd span.tag{
	background: #f0acad;
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	font-size: 1rem;
	border-radius: 2px;
	margin: 0 15px 0 0;
}
#info_slide dd span.time{
	display: inline-block;
	vertical-align: middle;
	font-size: 1rem;
}
#info_slide dd h3{
	font-size: 1.6rem;
	line-height: 24px;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin: 15px 0;
}
#info_slide dd p{
	font-size: 1.2rem;
	line-height: 22px;
}
#info_slide dd a{
	float: right;
	background: url(images/arrow02.png) no-repeat right center;
	padding: 0 20px 0 0;
	margin: 20px 0 0;
}

#info_slide .slick-prev {
    left: 0;
    transform: translate(-50%, -50%);
}
#info_slide .slick-prev:before {
    content: '.';
    background: url(images/left_arrow.png) no-repeat center;
}
#info_slide .slick-next {
    right: 0;
    transform: translate(50%, -50%);
}
#info_slide .slick-next:before {
    content: '.';
    background: url(images/right_arrow.png) no-repeat center;
}

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

	news

---------------------------------*/
#news{
	background: #edf2e4;
	padding: 100px 0;
}
#news h2{
	text-align: center;
	margin: 0 0 90px;
}
.news_box{
	margin: 0 0 70px;
}
.news_box dl{
	background: #fff;
}
.news_box dl a{
	background: url(images/arrow02.png) no-repeat 97% center;
	padding: 20px 40px 20px 30px;
	display: flex;
	align-items: center;
}
.news_box dl a:hover{
	background: url(images/arrow02.png) no-repeat 98% center;
	padding: 20px 40px 20px 30px;
	display: flex;
	align-items: center;
}
.news_box dl dt span.cat{
    background: #c7e09c;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    padding: 3px 10px;
    margin: 0 15px 0 0;
}
.news_box dl dt span.time{
	display: inline-block;
	vertical-align: middle;
	font-size: 1.2rem;
}
.news_box dl dd{
	font-size: 1.4rem;
	padding: 0 0 0 20px;
}

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

	cv

---------------------------------*/
#cv .inner{
	padding: 90px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#cv a.cv_tel img{
	margin: 10px 0;
}
#cv a.cv_tel small{
	display: block;
	font-size: 1.2rem;
}
#cv a.cv_tel small span{
    background: #5c5749;
    display: inline-block;
    padding: 2px 5px 3px;
    margin: 0 10px 0 0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
}
#cv .cv_mail p{
    margin: 0 0 10px;
}
#cv .cv_mail a{
	background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
}
#cv .cv_mail a::before{
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(images/cv_ico.png) no-repeat;
    position: absolute;
    left: 50px;
}

#top a{
	background: #5c5749;
	display: block;
	padding: 25px 0;
	text-align: center;
}

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

	footer

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

footer .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 70px 0;
}
footer .ft_left{
	width: 34%;
}
footer .ft_left img{
	margin: 0 0 35px;
}
footer .ft_left p{
	line-height: 24px;
}
footer .ft_center {
    width: 32%;
    box-sizing: border-box;
    border-left: dashed 2px #ddd;
    border-right: dashed 2px #ddd;
    padding: 0 50px 0;
}
footer .ft_right{
	width: 34%;
}
footer .ft_right .mail{
	width: 250px;
	float: right;
	margin: 0 0 25px;
}
footer .ft_right .mail p{
    margin: 0 0 10px;
}
footer .ft_right .mail a{
	background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
}
footer .ft_right .mail a::before{
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(images/cv_ico.png) no-repeat;
    position: absolute;
    left: 50px;
}
footer .ft_right .tel{
    float: right;
    width: 250px;
}
footer .ft_right .tel img{
	margin: 10px 0;
}
footer .ft_right .tel small{
	display: block;
	font-size: 1.2rem;
}
footer .ft_right .tel small span{
    background: #5c5749;
    display: inline-block;
    padding: 2px 5px 3px;
    margin: 0 10px 0 0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
}
footer .ft_nav li{
	position: relative;
	padding: 0 0 0 20px;
	margin: 0 0 20px;
}
footer .ft_nav li:last-child{
	margin: 0;
}
footer .ft_nav li.nav01::before{
	content: "";
	display: block;
	background: url(images/ft_nav01.png) no-repeat center;
	width: 15px;
	height: 14px;
	position: absolute;
	left: 0;
	top: -1px;
}
footer .ft_nav li.nav02::before{
	content: "";
	display: block;
	background: url(images/ft_nav02.png) no-repeat center;
	width: 15px;
	height: 17px;
	position: absolute;
	left: 0;
	top: -1px;
}
footer .ft_nav li.nav03::before{
	content: "";
	display: block;
	background: url(images/ft_nav03.png) no-repeat center;
	width: 15px;
	height: 16px;
	position: absolute;
	left: 0;
	top: -1px;
}
footer .ft_nav li.nav04::before{
	content: "";
	display: block;
	background: url(images/ft_nav04.png) no-repeat center;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: -1px;
}
footer .ft_nav li ul.child{
	margin: 20px 0 30px;
}
footer .ft_nav li ul li{
	font-size: 1.2rem;
	padding: 0;
}

#copy{
	padding: 0 0 40px;
	text-align: center;
	font-size: 1.2rem;
}

#top a{
	background: #5c5749;
	display: block;
	padding: 25px 0;
	text-align: center;
}
#top a:hover{
	background: #5c5749;
	display: block;
	padding: 20px 0 30px;
	text-align: center;
}


#fixed{
	position: fixed;
	right: 0;
	top: 35%;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
#fixed a:hover{
	opacity: 0.8;
}

.sclogo {
    width: 115px;
    display: block;
    margin: 40px auto;
}


@media screen and (min-width:320px) and ( max-width: 767px) {
html{
	font-size: 62.5%;
}

body{
	min-width: 0;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	color: #5c5749;
	font-family: "メイリオ", sans-serif;
}
body::before{
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: rgba(253, 130, 130, 0.6);
    z-index: 60;
    position: fixed;
    left: 0;
    top: 0;
    transition: .3s all;
}
body.clicked::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(216, 216, 216, 0.6);
    z-index: 60;
    position: fixed;
    left: 0;
    top: 0;
}

a{
	color: #5c5749;
	transition: .3s all;
}
a:hover{
	opacity: 0.8;
}

.pc{
	display: none;
}

.inner{
	max-width: 1000px;
	margin: 0 auto;
}

.more_btn01 a{
	background: #7e796c;
	display: block;
	width: 256px;
	height: 53px;
	text-align: center;
	line-height: 53px;
	color: #fff;
	margin: 0 auto;
	border-radius: 2px;
}
.more_btn01 a span{
	display: block;
	background: url(images/arrow01.png) no-repeat 95% center;
	transition: .3s all;
}
.more_btn01 a:hover span{
	display: block;
	background: url(images/arrow01.png) no-repeat 97% center;
}

header{
    padding: 20px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-sizing: border-box;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
header .inner{
	display: block;
	justify-content: space-between;
	align-items: center;
}
header .logo{
	width: 180px;
}
header nav{
	position: fixed;
	right: -100%;
	width: 80%;
	height: 100%;
	background: #fff;
	transition: .3s all;
	top: 76px;
}
header nav.clicked{
    position: fixed;
    right: 0%;
    width: 80%;
    height: 100%;
    background: #fff;
    transition: .3s all;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}
header nav ul{
    display: block;
    align-items: center;
}
header nav ul li{
	float: none;
	position: relative;
	padding: 20px 20px 20px 50px;
	margin: 0 0 0;
}
header nav ul li a{
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
header nav ul li a:hover{
	opacity: 0.8;
}
header nav ul li::before{
	content: "";
	display: block;
	position: absolute;
}
header nav ul li:nth-of-type(1)::before {
    background: url(images/nav_ico01.png) no-repeat left center;
    background-size: contain;
    left: 20px;
    top: 18px;
    width: 15px;
    height: 14px;
}
header nav ul li:nth-of-type(2)::before {
    background: url(images/nav_ico02.png) no-repeat left center;
    background-size: contain;
    left: 21px;
    top: 20px;
    width: 13px;
    height: 17px;
}
header nav ul li:nth-of-type(3)::before {
    background: url(images/nav_ico03.png) no-repeat left center;
    background-size: contain;
    left: 20px;
    top: 18px;
    width: 16px;
    height: 17px;
}
header nav ul li:nth-of-type(4)::before {
    background: url(images/nav_ico04.png) no-repeat left center;
    background-size: contain;
    left: 20px;
    top: 18px;
    width: 17px;
    height: 16px;
}
header nav ul li:nth-of-type(5) {
    padding: 0;
    margin: 20px 20px 0;
}
header nav ul li:nth-of-type(5) a {
	background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
}
header nav ul li div {
    background: none;
    position: static;
    z-index: 1;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 10px 10px;
    display: block;
}
header nav ul li div a {
    background: no-repeat;
    background-size: 8px;
    display: block;
    padding: 10px 0 10px 0;
    margin: 0 0 0 -8px;
    font-size: 1.4rem;
    border-bottom: dashed 1px #ddd;
}
header nav ul li div a:last-child{
	border-bottom: none;
}
header nav ul li:hover div{
	display: block;
}

#sp-menu {
    width: 30px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 999999;
    margin: -9px 0 0;
    display: block;
}
#sp-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: url(images/btn_bg01.png);
    background-size: 100% 100%;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    left: 0;
}
#sp-menu span.top-border {
    top: -2px;
    background: #f9abac;
}
#sp-menu span.middle-border {
    top: 50%;
    margin: -2px 0 0;
    background: #c5dd9b;
}
#sp-menu span.bottom-border {
    bottom: 0;
    background: #a4deee;
}
#sp-menu.clicked span.top-border {
    transform: rotate(-45deg);
    top: 8px;
    background: #007891;
}
#sp-menu.clicked span.middle-border {
    width: 0;
    background: #007891;
}
#sp-menu.clicked span.bottom-border {
    transform: rotate(45deg);
    bottom: 8px;
    background: #007891;
}

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

	main

---------------------------------*/
#main{
	margin: 76px 0 0;
}
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 27px;
    height: 27px;
    display: block;
    margin: 0 0 0;
}
.slick-prev:before {
    content: '.';
    background: url(images/left_ico.png) no-repeat center;
    background-size: contain;
}
.slick-next:before {
    content: '.';
    background: url(images/right_ico.png) no-repeat center;
    background-size: contain;
}
.slick-prev {
    left: 30px;
    transform: translate(-50%, -50%);
}
.slick-next {
    right: 30px;
    transform: translate(50%, -50%);
}

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

	about

---------------------------------*/
#about {
    background: none;
    background-size: cover;
    text-align: center;
    padding: 60px 20px;
}
#about h2{
	margin: 0 0 60px;
}
#about p{
    line-height: 38px;
    text-align: justify;
    background: #ffffffb5;
    padding: 20px;
    border-radius: 6px;
}

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

	service

---------------------------------*/
#service{
	background: #faf1f1;
	padding: 60px 20px;
	text-align: center;
}
#service h2{
	text-align: center;
	margin: 0 0 60px;
}
.service_box{
	display: block;
	justify-content: space-between;
}
.service_box div {
    width: 100%;
    min-height: 0px;
    position: relative;
    margin: 20px 0;
    background: #f9f7f7;
    box-sizing: border-box;
    padding: 20px 40px;
}
.service_box img{
	margin: 0 0 30px;
}
.service_box p{
	line-height: 26px;
}
.service_box a{
	position: static;
	bottom: 0;
	background: #f0acad;
	display: block;
	width: 100%;
	height: 53px;
	line-height: 53px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	margin: 20px 0 0;
}
.service_box a span{
	background: url(images/arrow01.png) no-repeat 95% center;
	display: block;
	transition: .3s all;
}
.service_box div:nth-of-type(2) a{
	background: #c7e09c;
}
.service_box div:nth-of-type(3) a{
	background: #afddee;
}
.service_box a:hover{
	opacity: 0.8;
}
.service_box a:hover span{
	background: url(images/arrow01.png) no-repeat 97% center;
	display: block;
}

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

	info

---------------------------------*/
#info{
	padding: 60px 20px;
}
#info h2{
	text-align: center;
	margin: 0 0 60px;
}
#info_slide{
	margin: 0 0 100px;
}
#info_slide dl{
	display: block;
	align-items: center;
}
#info_slide dt{
	width: 100%;
}
#info_slide dd{
	width: 100%;
	padding: 5%;
	box-sizing: border-box;
}
#info_slide dd span.tag{
	background: #f0acad;
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	font-size: 1rem;
	border-radius: 2px;
	margin: 0 15px 0 0;
}
#info_slide dd span.time{
	display: inline-block;
	vertical-align: middle;
	font-size: 1rem;
}
#info_slide dd h3{
	font-size: 1.6rem;
	line-height: 24px;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin: 15px 0;
}
#info_slide dd p{
	font-size: 1.2rem;
	line-height: 22px;
}
#info_slide dd a{
	float: right;
	background: url(images/arrow02.png) no-repeat right center;
	padding: 0 20px 0 0;
	margin: 20px 0 0;
}

#info_slide .slick-prev {
    left: 20px;
    top: 25%;
    transform: translate(-50%, -50%);
}
#info_slide .slick-prev:before {
    content: '.';
    background: url(images/left_arrow.png) no-repeat center;
    background-size: contain;
}
#info_slide .slick-next {
    right: 20px;
    top: 25%;
    transform: translate(50%, -50%);
}
#info_slide .slick-next:before {
    content: '.';
    background: url(images/right_arrow.png) no-repeat center;
    background-size: contain;
}

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

	news

---------------------------------*/
#news{
	background: #edf2e4;
	padding: 60px 20px;
}
#news h2{
	text-align: center;
	margin: 0 0 60px;
}
.news_box{
	margin: 0 0 40px;
}
.news_box dl{
	background: #fff;
}
.news_box dl a{
	background: url(images/arrow02.png) no-repeat 97% center;
	padding: 20px 40px 20px 30px;
	display: block;
	align-items: center;
}
.news_box dl a:hover{
	background: url(images/arrow02.png) no-repeat 98% center;
	padding: 20px 40px 20px 20px;
	display: block;
	align-items: center;
}
.news_box dl dt span.cat{
    background: #c7e09c;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    padding: 3px 10px;
    margin: 0 15px 0 0;
}
.news_box dl dt span.time{
	display: inline-block;
	vertical-align: middle;
	font-size: 1.2rem;
}
.news_box dl dd{
	font-size: 1.4rem;
	line-height: 20px;
	padding: 10px 0 0 0;
}

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

	cv

---------------------------------*/
#cv .inner{
	padding: 60px 20px;
	display: block;
	text-align: center;
	align-items: center;
	justify-content: space-between;
}
#cv a.cv_tel{
	margin: 30px 0;
	display: block;
}
#cv a.cv_tel img{
	margin: 10px 0;
}
#cv a.cv_tel small{
	display: block;
	font-size: 1.2rem;
}
#cv a.cv_tel small span{
    background: #5c5749;
    display: inline-block;
    padding: 2px 5px 3px;
    margin: 0 10px 0 0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
}
#cv .cv_mail p{
    margin: 0 0 10px;
}
#cv .cv_mail a{
    background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box;
    width: 256px;
    margin: 0 auto;
}
#cv .cv_mail a::before{
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(images/cv_ico.png) no-repeat;
    position: absolute;
    left: 50px;
}

#top a{
	background: #5c5749;
	display: block;
	padding: 25px 0;
	text-align: center;
}

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

	footer

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

footer .inner{
	display: block;
	align-items: center;
	justify-content: space-between;
	padding: 60px 20px 40px;
}
footer .ft_left{
	width: 100%;
	text-align: center;
	margin: 0 0 30px;
}
footer .ft_left img{
	margin: 0 0 25px;
}
footer .ft_left p{
	line-height: 24px;
}
footer .ft_center {
    width: 100%;
    box-sizing: border-box;
    border-left: none;
    border-right: none;
    padding: 0 0 0;
    border-bottom: dashed 1px #ddd;
}
footer .ft_right{
	width: 100%;
	text-align: center;
}
footer .ft_right .mail{
	width: 256px;
	float: none;
	margin: 25px auto 25px;
}
footer .ft_right .mail p{
    margin: 0 0 10px;
}
footer .ft_right .mail a{
	background: #f78788;
    color: #fff;
    display: block;
    position: relative;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
}
footer .ft_right .mail a::before{
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(images/cv_ico.png) no-repeat;
    position: absolute;
    left: 50px;
}
footer .ft_right .tel{
    float: none;
    width: 256px;
    margin: 0 auto;
}
footer .ft_right .tel img{
	margin: 10px 0;
}
footer .ft_right .tel small{
	display: block;
	font-size: 1.2rem;
}
footer .ft_right .tel small span{
    background: #5c5749;
    display: inline-block;
    padding: 2px 5px 3px;
    margin: 0 10px 0 0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
}
footer .ft_nav li {
    position: relative;
    padding: 15px 0 15px 20px;
    margin: 0 0 0;
    border-top: dashed 1px #ddd;
}
footer .ft_nav li:last-child{
	margin: 0;
}
footer .ft_nav li.nav01::before{
	content: "";
	display: block;
	background: url(images/ft_nav01.png) no-repeat center;
	width: 15px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 14px;
}
footer .ft_nav li.nav02::before{
	content: "";
	display: block;
	background: url(images/ft_nav02.png) no-repeat center;
	width: 15px;
	height: 17px;
	position: absolute;
	left: 0;
	top: 14px;
}
footer .ft_nav li.nav03::before{
	content: "";
	display: block;
	background: url(images/ft_nav03.png) no-repeat center;
	width: 15px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 14px;
}
footer .ft_nav li.nav04::before{
	content: "";
	display: block;
	background: url(images/ft_nav04.png) no-repeat center;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 14px;
}
footer .ft_nav li ul.child{
	margin: 15px 0 0;
}
footer .ft_nav li ul li {
    font-size: 1.2rem;
    padding: 15px 0 15px 20px;
    background: url(images/arrow02.png) no-repeat left center;
    background-size: 10px;
}

#copy{
	padding: 0 0 40px;
	text-align: center;
	font-size: 1rem;
	line-height: 14px;
}

#top a{
	background: #5c5749;
	display: block;
	padding: 25px 0;
	text-align: center;
}
#top a:hover{
	background: #5c5749;
	display: block;
	padding: 20px 0 30px;
	text-align: center;
}


#fixed{
	display: none;
}
#fixed a:hover{
	opacity: 0.8;
}
}
