﻿@charset "UTF-8";


body{
margin: 0;
	
font-family: 'Montserrat', 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
}



.parent {
  /*親要素*/
  position: relative;
  background: #EFEFEF;
  height:85vh;
}

.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  width: 80%;
  text-align: center;/*一応BOX内の文字も中央寄せ*/
}

.btntel a{
	
text-decoration: none;
	
font-size: 1.5rem;
	
background-color: #F39800;
	
color: #fff;
	
padding: 1rem 1rem;
	
display: inline-block;
	
margin-bottom: 2rem;
	
border-radius: 0.5rem;

}


.imgbox{
background-color: #005EAE;
text-align: center;
padding: 0.5rem 0 0.3rem 0;
}

img{
max-width:150px;
}

.footer{
text-align: center;
font-size: 0.8rem;
}

h1{
margin-bottom: 3rem;
color: #3E3A39;
}

h2{
border-top:#3E3A39 solid 1px;
border-bottom:#3E3A39 solid 1px;
color: #3E3A39;
padding-top:0.2rem;
}

@media screen and (min-width: 600px) {
  .inner{ width: 500px; }
}