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

/* 共通部分 -------------*/
html,body {
	margin:0;
	padding:0; 
	border:0;
	height:100%;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 100%;
	font-weight: normal;
	line-height: 1.7;
 	color: #333333;
}

body.fixed {
	height: 100%;
	overflow: hidden;
}

*{
	box-sizing:border-box;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,figure,form,select,textarea,input{
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
}

table{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
}

ul,ol {
	list-style: none;
}

video {
	max-width: 100%;
}

iframe {
	width: 100%;
	vertical-align: middle;
}

img {
	max-width: 100%;
	vertical-align: middle;
	border: none;
}

a {
	text-decoration: none;
	color: #333333;
	transition: 0.5s;
}

a:hover{
	opacity:0.6;
}

.wrapper{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 4%;
}
/* /共通部分 -------------*/



/* ヘッダー -------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	z-index: 100;
	background-color:#1FA597;
}

.header-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 110px;
	padding: 0 0 0 30px;
}

.logo{
	display: flex;
}

.logo a img{
	width: 170px;
	padding: 0;
}

.logo .department {
	margin-left: 30px;
	padding-left: 30px;
	border-left: 1px solid #333333;
}

.contact{
	background-color: #000;
	height: 110px;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
}

.contact h3{
	background-color: #fff;
	display: inline-block;
	color: #333333;
	padding: 0 30px;
	border-radius: 30px;
}

.contact .tel a{
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	padding-left: 37px;
	line-height: 45px;
	background-image: url("../images/icon/tel.png");
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: left center;
}

.contact .time{
	font-size: 0.65rem;
}
/* /ヘッダー -------------*/



/* フッター -------------*/
footer{
	background-color: #000;
	text-align: center;
	padding: 15px 0;
}

footer p{
	color:#fff;
	font-size:0.875rem;
}
/* /フッター -------------*/



/* ページトップに戻る -------------*/
#page-top{
	width: 45px;
	height: 45px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: rgba(31,165,151,0.6);
	z-index: 10;
	border-radius:50%;
}

#page-top a{
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
}

#page-top a::before{
	content: '';
	position: absolute;
	top: 5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	border-left: 5px solid #fff;
	border-top: 5px solid #fff;
	transform: rotate(45deg);
}
/* /ページトップに戻る -------------*/









/* タブレット用（1024px以下）-------------*/
@media screen and (max-width: 1024px) {
/* ヘッダー -------------*/
header {
	height: 50px;
}

.header-container{
	height: 50px;
	padding: 0 0 0 4%;
}

.logo a img{
	width: 110px;
}

.contact{
	height: 50px;
	padding: 0 15px;
	border-radius: 30px 0 0 30px;
	display: flex;
	align-items: center;
}

.logo .department,
.contact h3,
.contact .time{
	display: none;
}
/* /ヘッダー -------------*/
}
/* /タブレット用（1024px以下） -------------*/









/* スマホ用（600px以下） -------------*/
@media screen and (max-width: 600px) {
/* ヘッダー -------------*/
.contact .tel a{
	font-size: 1rem;
	padding-left: 18px;
	line-height: 50px;
	background-image: url("../images/icon/tel.png");
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position: left center;
}
/* /ヘッダー -------------*/
}
/* /スマホ用（600px以下） -------------*/