@charset "utf-8";

/*レスポンシブの表示・非表示*/
.pc_view{
  display: block;
}
.sp_view{
  display: none;
}
@media screen and (max-width: 768px){
  .pc_view{
    display: none;
  }
  .sp_view{
    display: block;
  }
}

h2{
  font-size: 30px;
  font-size: 3rem;
}
h2 span{
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}

h3{
  font-size: 2.4rem;
}
h3 span{
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
}

/*
toppage
*/
.top-point{
  font-size: 1rem !important;
  font-weight: bold;
}
.top-point-place{
  place-content:center;
}
.top-point li:first-child{
  background:url(../img/top/point_01.jpg) no-repeat 0 0;
  background-size:auto 60px;
  padding-left: 70px;
  line-height: 60px;
  margin-bottom: 1rem;
}
.top-point li:nth-child(2){
  background:url(../img/top/point_02.jpg) no-repeat 0 0;
  background-size:auto 60px;
  padding-left: 70px;
  line-height: 60px;
  margin-bottom: 1rem;
}
.top-point li:nth-child(3){
  background:url(../img/top/point_03.jpg) no-repeat 0 0;
  background-size:auto 60px;
  padding-left: 70px;
  line-height: 60px;
}
.ec-logo{
  width: 300px !important;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-point{
    font-size: 1.25rem !important;
  }
}