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

body {
    background-color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
	color:#575554;
	font-size: 16px;
	line-height: 2em;
    letter-spacing: 0.1em;
}

.sp {
    display: none;
}

p {
    margin-bottom: 1.5em;
}

h1 {
    font-size: 22px;
    margin-top: 5px;
}

h2 {
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.6em;
    margin-bottom: 30px;
}

#mail {
	position: fixed;
	height: 130px;
	width: 130px;
    z-index: 999;
    top: 20px;
    right: 20px;
	align-items: center;
	background:#454545;
	color:#fff;
	text-align: center;
	padding: 20px;
    border-radius: 65px;
    font-size: 18px;
    padding-top: 23px;
    line-height: 1.2em;
}

#mail p {
    margin-bottom: 0;
}

#mail span {
    font-size: 9px;
    font-weight: bold;
}

.mail {
    width: 30px;
    margin-top: 9px;
}

.mv {
    width: 100%;
    height: 500px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-size: cover;
}

.top_logo {
    max-width: 350px;
    margin: 15px 50px 0 30px;
}

.top_logo img {
    width: 100%;
}

section {
    padding: 100px 30px;
    text-align: center;
}

#about {
    width: 100%;
    background-color: #ecf2f6;
}

#company dl {
	max-width: 660px;
	margin: 0 auto;
	text-align: left;
	padding-left: 30px;
	padding-right: 30px;
    display: flex;
    flex-flow: row wrap;
}

#company dl dt {
    width: 20%;
    padding: 15px 0;
    border-bottom: #a2d1f3 1px dotted;
}

#company dl dd {
    width: 80%;
    padding: 15px 0;
    border-bottom: #a2d1f3 1px dotted;
}

#contact {
    background-color: #a2d1f3;
}

#contact a {
    border-bottom: 1px solid;
}

footer {
    background-color: #a2d1f3;
    text-align: center;
    font-size: 0.8em;
    color: #fff;
    padding: 15px 30px;
    border-top: #fff 1px solid;
}

@media only screen and (max-width: 550px) {
    .sp {
        display: initial;
    }
    #mail {
        height: 100px;
        width: 100px;
        top: 5px;
        right: 5px;
        padding: 10px;
        border-radius: 50px;
        font-size: 14px;
        padding-top: 19px;
        line-height: 1.1em;
    }
    #mail span {
        font-size: 8px;
    }
    .mail {
        width: 25px;
        margin-top: 7px;
    }
    .top_logo {
        margin: 15px 50px 0 50px;
    }
    h1 {
        font-size: 1.2em;
    }
    section {
        padding: 100px 20px;
    }
    #company dl dt {
        width: 30%;
		font-weight: normal;
    }
    #company dl dd {
        width: 70%;
    }
    #contact {
        padding: 100px 20px;
    }    
}

/*=============
お問合せボタンのCSS
===============*/

#mail.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

#mail.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}