@charset "UTF-8";
/* CSS Document */

#container{
  max-width: 840px;
}
/* main
-----------------------------------------------*/
#main h1{
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width:767px) {
  #main h1{
    font-size: 20px;
  }
}


/* section
-----------------------------------------------*/
section{
  margin-top: 75px;
  position: relative;
}
section + section::before{
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background: #000;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
section .inner{
  padding: 0 20px;
}
section h2{
  font-size: 14px;
  margin-top: 30px;
}
section h3{
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
}
section p{
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
}
section p a{
  text-decoration: underline!important;
  position: relative;
}
section p a::after{
content: "";
background-image: url("/img/common/icon-blank-black.svg");
background-repeat: no-repeat;
width: 12px;
height: 12px;
top: 4px;
right: -18px;
padding-right: 0px;
position: absolute;

}
section .link{
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
  display: inline-block;
  text-decoration: underline;
}
section p span{
  font-weight: bold;
  display: block;
}
section p + p{
  margin-top: 20px;
}
section p:first-child{
  margin-top: 0;
}
section li{
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
}
#sec02 li{
  margin-top: 0;
  line-height: 1.8;
}
section li:first-child{
  margin-top: 10px;
}
section .note{
  font-size: 14px;
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  section{
    margin-top: 25px;
  }
  section + section{
    margin-top: 80px;
  }
  section h2{
    padding-left: 1.75em;
    text-indent: -1.75em;
  }
  section h3{
    margin-top: 10px;
  }
}

