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;
}

@media screen and (max-width: 903px) {
  body {
    font-size:1.4rem;
  }
}

img{
  max-width:100%;
  height:auto;
}


header{
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  height:50px;
  z-index:1000;
  border-bottom:1px solid rgba(192, 192, 192, 0.4)
}

.scsk_logo{
  width:80px;
  height:auto;
  margin-left:20px;
}
header .menu_list{
  display:flex;
  flex-direction:row;
  margin: 0 0 0 auto;   
}

@media screen and (max-width: 903px) {
  header .menu_list{
    display:none;
  }
}



header .menu_list a{
  position:relative;
	display:inline-block;
  margin-right:40px;
  cursor: pointer;
  justify-content: space-evenly;
  align-items:center;
  position:relative;
  font-weight:600;
}

header .menu_list a:after{
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #848484;
  border-right: 2px solid #848484;
  transform: rotate(135deg);
  margin:auto;
  top:0;
  bottom:0;
  right:-15px;
}

header .contact{
  display: inline-block; 
  background:linear-gradient(45deg, #262ed6 5%, #0a2986);
  line-height: 50px;
  padding: 0 20px 0;
  color:#fff;
  position:relative;
  font-weight:600;
}

@media screen and (max-width: 903px) {
  header .contact{
    margin-left:auto;
  }
}

header .contact:before{
  content:"";
  background:url(../img/ico_mail.svg) no-repeat center;
  background-size: contain;
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:5px;
  vertical-align: middle;
}

.sub_ttl{
  font-size:2.2rem;
  font-weight:600;
  padding-bottom:20px;
  position:relative;
  border-bottom:3px solid #f0f0f0;
  margin-bottom:90px;
}

@media screen and (max-width: 903px) {
  .sub_ttl{
    font-size:1.6rem;
    margin-bottom:15px;
  }
}

.third_ttl{
  font-size:2rem;
  font-weight:600;
  margin-bottom:50px;
  padding-bottom:5px;
  border-bottom:1px solid #f0f0f0;
}

.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;
    background-color: #ccc;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -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:#dde3f4;
  margin-bottom:70px;
}

@media screen and (max-width: 903px) {
  .cta{
    background:#dde3f4;
    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: linear-gradient(45deg, #262ed6 5%, #0a2986);
  line-height: 50px;
  padding: 0 20px 0;
  color: #fff;
  position: relative;
  font-weight: 600;
  margin-top:20px;
}





