@charset "UTF-8";


body {
	font-size: 1rem;
    font-family: "Noto Sans JP",sans-serif;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    align-items: center;
    position: fixed;
    background: #fff;
    z-index: 999;
    border-top: 4px solid #005da4;
}
header h1 img {
    width: 120px;
}
.header_mail {
  padding: 15px 35px;
  background: #005da4;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  border-radius: 4px;
	transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.header_mail:hover {
	opacity: 0.5;
}
.header_mail i {
    color: #fff;
    margin-right: 8px;
}
header h1 span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 15px;
    color: #005da4;
}
header h1 {
  display: flex;
  align-items: center;
}


/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
body {
	font-size: 1rem;
    font-family: "Noto Sans JP",sans-serif;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 9px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    align-items: center;
    position: fixed;
    background: #fff;
    z-index: 999;
    border-top: 2px solid #005da4;
}
header h1 img {
    width: 70px;
}
.header_mail {
  padding: 7px 15px;
  background: #005da4;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  border-radius: 4px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.header_mail:hover {
	opacity: 0.5;
}
.header_mail i {
    color: #fff;
    margin-right: 5px;
}
header h1 span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 6px;
    color: #005da4;
}
header h1 {
  display: flex;
  align-items: center;
}
}
