/* -------------------------------
 * 
 * KyusyuStage
 * 2022.07.15
 * 
-------------------------------  */

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

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

header{
  padding: 30px 0 70px;
}

header h1{
  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: 8px;
  background: #cecece;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

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

.btn-red{
  background: #c81507;
  box-shadow: 0px 4px 0px 0px rgba(132, 14, 5, 1),0 2px 4px 0px rgba(255, 255, 255, 0.2) inset;
  border: 1px solid #c81507;
  color: #fff!important;
}

.btn-blu{
  background: #0c76b3;
  box-shadow: 0px 4px 0px 0px rgba(9, 73, 110, 1),0 2px 4px 0px rgba(255, 255, 255, 0.2) inset;
  border: 1px solid #0c76b3;
  color: #fff!important;
}

.btn-green{
  background: #258b64;
  box-shadow: 0px 4px 0px 0px rgba(0, 101, 62, 1),0 2px 4px 0px rgba(255, 255, 255, 0.2) inset;
  border: 1px solid #258b64;
  color: #fff!important;
}

.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;
  color: #0F0F0F;
}

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

.btn-pdf:hover{
  color: #0F0F0F!important;
}

.btn-gry{
	background: #ACACAC;
	box-shadow: none;
	border: none;
}

.btn-gry:hover{
  opacity: none;
  color: #fff!important;
}



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

main{
}

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

nav{
}


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

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

.foot-copy{
  padding: 24px 0;
  font-size: 1.2rem;
  text-align: center;
  background: #0074e8;
}


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