html { 
  font-size: 62.5%;
 }

 body {
  line-height: 1.8;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'メイリオ', sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  font-size:1.6rem;
  background:#fff;
}

@media screen and (max-width: 903px) {
  body {
    font-size:1.4rem;
  }
}

img{
  max-width:100%;
  height:auto;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  background:#fff;
}

.header #logo {
  display:block;
  margin:0 auto;
  width: 100px;
  
}

.header nav{
 width: 100%;
 height: 70px;
 position: relative;
 
}
.header .drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding: 0 1em;
}

/*ナビゲーション部分*/

.header .menu ul li a {
display:block;
font-weight:bold;
padding: 2em;
border-bottom: 1px dotted #CCC;
text-decoration:none;
}

.header .menu{
  text-align:center;
  background-color:rgba(255,255,255,0.5);
  transition: .5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}


/*OPEN時の動き*/
.header .menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*中身を表示（右へスライド）*/

}



/*トグルボタンのスタイルを指定*/
.header .Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
  right:15px;
}
 
.header .Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #333;
    -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
    transition: .35s ease-in-out;     /*変化の速度を指定*/
 
}
 
.header .Toggle span:nth-child(1) {
    top:5px;
}
 
.header .Toggle span:nth-child(2) {
    top: 18px;
}
 
.header .Toggle span:nth-child(3) {
    top: 32px;
}
 


.header .Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.header .Toggle.active span:nth-child(2),
.header .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



@media screen and (min-width: 600px) {
  
  header::after{
    
    display:none;
  } 
  
  
.header nav{
 display: flex;

}
.header .Toggle{
 display: none;
}
.header .menu{
 width: 100%;
  background-color: transparent;
  margin-top:0;
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
.header .menu ul{
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}

.header .menu ul li a{
 padding: 0 1em;
 height:100%;
 border-bottom: none;
 display:flex;
 height:70px;
 align-items:center;

}
  
.header .menu_contact a{
  display: block;
  background: linear-gradient(45deg, #262ed6 5%, #0a2986);
  padding: 10px 15px;
  color:#fff;

}

.sub_ttl {
  font-size: 2.2rem;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 3px solid #9eaec3;
  margin-bottom: 90px;
}

.sub_ttl:before {
  position: absolute;
  content: "";
  width: 130px;
  height: 3px;
  background: #0a2986;
  bottom: -3px;
}
  
  
}
.footer{
  background:#dedede;
  font-size:1.2rem;
  padding:25px 0;
}

@media screen and (max-width: 903px) {
  .footer{
    padding:10px 0;
  }
}

.footer_list{
  flex-direction:row;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  @media screen and (max-width: 903px) {
    .footer_list{
      flex-direction: column;
      }
  }

  .footer_list li{
    margin-right:20px;
  }

  
  .pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding:5px 10px;
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.cta_wrap{
  text-align:center;
  padding:40px 0;
}

@media screen and (max-width: 903px) {
  .cta_wrap{
    text-align:center;
    padding:15px 0;
  }
}

.cta{
  background:#eff3f7;
}

@media screen and (max-width: 903px) {
  .cta{
    margin-bottom:15px;
  }
}

.cta_ttl{
  font-weight:600;
  font-size:2.2rem;
  margin-bottom:20px;
}

@media screen and (max-width: 903px) {
  .cta_ttl{
    font-weight:600;
    font-size:1.6rem;
    margin-bottom:15px;
  }
}

.cta_tel{
  position:relative;
  font-weight:600;
  font-size:1.8rem;
  margin-right:20px;
}

.cta_tel:before{
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 7px 0 0;
}

@media screen and (max-width: 903px) {
  .cta_tel{
    position:relative;
    font-weight:600;
    font-size:1.6rem;
    margin-right:20px;
  }  
}

.cta_mail{
  position:relative;
  font-weight:600;
  font-size:1.8rem;
}

.cta_mail:before{
  content: '\f0e0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  padding: 0 7px 0 0
}

@media screen and (max-width: 903px) {
  .cta_mail{
    position:relative;
    font-weight:600;
    font-size:1.6rem;
  }
}


.cta_contact{
  display: inline-block;
  background: #0a2986;
  line-height: 50px;
  padding: 0 20px 0;
  color: #fff;
  position: relative;
  font-weight: 600;
  margin-top:20px;
}

.bg{
  background:#eff3f7;
}





