  /* -------------------------------
 * 
 * KyusyuStage
 * 2020.12.02
 * 
-------------------------------  */

/*
 * 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: 220px;
}

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

header{
  padding: 60px 0 80px 0;
  background: url(../img/header_bg.png);
  background-size: cover;
}

header h1{
  text-align: center;
}

header h1 a{
  display: inline-block;
}


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

#container{
  margin-top: 50px;
  margin-bottom: 80px;
}

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

.btn{
  display: block;
  padding: 20px 15px;
  font-size: 1.8rem;
  border-radius: 4px;
  background: #696969;
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.4);
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.05em;
}

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

.btn-red{
  background: #c71205;
}

.btn-gre{
  background: #298946;
}

.btn-blu{
  background: #29729d;
}

.btn-ore{
  background: #cd6629;
}

.btn-yer{
  background: #d09906;
}

.btn-gry{
	background: #858585;
}


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

.btn-pdf{
  font-size: 1.6rem;
}

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

.btn-doc{
  font-size: 1.6rem;
}

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

.tred{
  color: #f00;
  font-weight: bold;
}


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

main{
}

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

nav{
}


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

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

.foot-inner{
  background: #ebebeb;
}

.foot-inner-wrap{
  width: 820px;
  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 #dbdbdb;
  padding: 10px 25px;
}

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

.foot-inner a{
}

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


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

.pgtop{
  position: fixed;
  z-index: 1000;
  bottom: -7px;
  right: 5%;
}



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

@media print{

  .pgtop{
    display: none!important;
  }
}