

/*
 * reset styles
-------------  */

*,*:after,*:before{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  font-size: 10px;
}

body{
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
}

a{
  color: #2d599c;
}

a:hover{
  color: #3a93df;
  text-decoration: none;
}

a:hover img{
  opacity: 0.7;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

img{
  border: 0;
}

ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  font-size: 16px;
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

input {
  background-color: #eee;
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  color: inherit;
  outline: 0;
}

input:focus {
  border-bottom: 1px solid#e74c3c;
}


/*
 * common styles
-------------  */

.fs-12{font-size: 1.2rem;}
.fs-13{font-size: 1.3rem;}
.fs-15{font-size: 1.5rem;}
.fs-16{font-size: 1.6rem;}
.fs-18{font-size: 1.8rem;}

.ta-l{text-align: left;}
.ta-c{text-align: center;}
.ta-r{text-align: right;}

.mt-10{margin-top: 10px!important;}
.mt-20{margin-top: 20px!important;}
.mt-30{margin-top: 30px!important;}
.mt-40{margin-top: 40px!important;}
.mt-50{margin-top: 50px!important;}

.mb-10{margin-bottom: 10px!important;}
.mb-20{margin-bottom: 20px!important;}
.mb-30{margin-bottom: 30px!important;}
.mb-40{margin-bottom: 40px!important;}
.mb-50{margin-bottom: 50px!important;}

.ml-10{margin-left: 10px!important;}
.ml-20{margin-left: 20px!important;}
.ml-30{margin-left: 30px!important;}
.ml-40{margin-left: 40px!important;}
.ml-50{margin-left: 50px!important;}

.mr-10{margin-right: 10px!important;}
.mr-20{margin-right: 20px!important;}
.mr-30{margin-right: 30px!important;}
.mr-40{margin-right: 40px!important;}
.mr-50{margin-right: 50px!important;}

.blank{margin-left: 0.5em;}
a:hover .blank{opacity: 0.7;}

.wrapper{
  position: relative;
  min-height: 100vh;
  padding-bottom: 280px;
}

/*
 * header styles
-------------  */

header{
  padding: 65px 0 40px;
}

header h1{
  text-align: center;
  margin-bottom: 25px;
}

header p{
  margin-top: 15px;
  text-align: center;
}


/*
 * contents wrap styles
-------------  */

#container{
  margin-bottom: 80px;
}

.content{
  width: 760px;
  margin: 0 auto;
}

.btn{
  display: block;
  padding: 20px 15px;
  font-size: 1.8rem;
  border-radius: 60px;
  background: #cecece;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

a.btn:hover{
  opacity: 0.8;
  color: #fff!important;
}

.btn-red{
  background-color: #c70505;
}

.btn-ora{
  background-color: #ea5514;
}

.btn-blu{
  background-color: #086e90;
}

.btn-gre{
  background-color: #50801c;
}

.btn-gry{
  background-color: #868181;
}

.btn-ppl{
  background-color: #8e51a3;
}

.btn-arw span{
  display: inline-block;
  padding-right: 20px;
  background: url("../img/icn_arw.png") no-repeat right center;
}

.btn-pdf span{
  display: inline-block;
  padding-right: 30px;
  background: url("../img/icn_pdf.png") no-repeat right center;
  background-size: 24px;
}

.btn-doc span{
  display: inline-block;
  padding-right: 30px;
  background: url("../img/icn_doc.png") no-repeat right center;
  background-size: 24px;
}



/*
 * main content styles
-------------  */

main{
}

/*
 * navigation styles
-------------  */

nav{
}


/*
 * footer styles
-------------  */

footer{
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 1.4rem;
}

.foot-inner{
  background: #7b2304;
}

.foot-inner-wrap{
  width: 760px;
  margin: 0 auto;
}

.foot-inner dl{
  display: flex;
  padding: 30px 0;
}

.foot-inner dl dt{
  padding: 10px 25px 10px 0;
}

.foot-inner dl dd{
  border-left: solid 1px #fff;
  padding: 10px 25px;
}

.foot-inner dl dd {
  line-height: 1.8
}

.foot-inner a{
  color: #fff;
}

.foot-copy{
  padding: 20px 0;
  font-size: 1.2rem;
  text-align: center;
  color: #041729;
  background: #fff;
}


ul[class*='list-']{
  margin: 10px 0;
}

ul[class*='list-'] li{
  position: relative;
}

ul[class*='list-'] li + li{
  margin-top: 5px;
}

ul[class*='list-'] li::before{
  position: absolute;
  top: 0;
  left: 0;
}

.list-def > li{
  padding-left: 1.2em;
}

.list-def > li::before{
  content: '・';
}

.list-note > li{
  padding-left: 1.2em;
}

.list-note > li::before{
  content: '※';
}

.list-num-ptn01 > li{
  padding-left: 1.4em;
}

.list-num-ptn01 > li:nth-child(1)::before{ content: '1.'; }
.list-num-ptn01 > li:nth-child(2)::before{ content: '2.'; }
.list-num-ptn01 > li:nth-child(3)::before{ content: '3.'; }
.list-num-ptn01 > li:nth-child(4)::before{ content: '4.'; }
.list-num-ptn01 > li:nth-child(5)::before{ content: '5.'; }
.list-num-ptn01 > li:nth-child(6)::before{ content: '6.'; }
.list-num-ptn01 > li:nth-child(7)::before{ content: '7.'; }
.list-num-ptn01 > li:nth-child(8)::before{ content: '8.'; }
.list-num-ptn01 > li:nth-child(9)::before{ content: '9.'; }
.list-num-ptn01 > li:nth-child(10)::before{ content: '10.'; }



/*
 * page top styles
-------------  */

.pgtop{
  position: fixed;
  z-index: 1000;
  bottom: 0;
  padding-bottom: 15px;
  right: 60%;
  margin-right: -550px;
}



/*
 * print styles
-------------  */

@media print{

  .pgtop{
    display: none!important;
  }
}