/*============================
コース案内
=============================*/
.joken{
	width: 100%;
	display: flex;
	padding-left: 0;
	list-style-type: none;
}
.joken li{
	width: 20%;
	margin: 0 2%;
}
.joken li img{
	width: 100%;
}
.pageHeading {
    margin: 9px 5px 9px;
    border-top: solid 1px #E0E4F2;
    border-bottom: solid 1px #E8E9ED;
    border-left: solid 3px #cbccd8;
    background: #F3F4F9;
	padding-left: 10px;
	font-size: 1em;
}
.joken li a img:hover{
	opacity: 0.8;
}
a:active{
	text-decoration: none;
	background: none;
}

ol.tour {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
	font-size: 120%;
  padding:0.5em;
}

ol.tour li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
ol.tour li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number,upper-alpha);
  /*数字のデザイン変える*/
  display:inline-block;
  background: #74c2f8;
  color: white;
  font-weight:bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.font_small {
	font-size: 80%;
}
.font_large {
	font-size: 120%;
}
.text_align_center {
text-align: center;
}
.text_align_right {
	text-align: right;
}
#maintitle {
  widows: 960px;
  height: 340px;
  padding-top: 25.41%;
  background: url("../img/title.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#maintitle h2 {
  position: absolute;
  font-size: 180%;
	font-weight: bold;
  color: #fff;
  top: 0;
  left: 10px;
}
h4.special {
  color: #0057bb;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #0057bb;
  	text-align: center;
	font-size: 120%;
}
.box_blue {
  padding: 0.5em 1em;
  margin: 2em 0;
  background: whitesmoke; /*背景色*/
  border-left: double 7px #4ec4d3; /*左線*/
  border-right: double 7px #4ec4d3; /*右線*/
}
/*============================
ボタン
=============================*/
/*申込みボタン（ロング）*/
.cta-btn a {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin: 1em auto;
    padding: 0.5rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    background: -moz-linear-gradient(top, #ff6600, #ff5500, #ff9900);
    background: -webkit-linear-gradient(top, #ff6600, #ff5500, #ff9900);
    background: linear-gradient(to bottom, #ff6600, #ff5500, #ff9900);
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}
@media print, screen and (min-width: 768px) {
    .cta-btn a {
        width: 80%;
    }
}
/*============================
フォント
=============================*/
.fw-b{
	font-weight: bold;
}
.mb-2{
	margin-bottom: 2rem;
}
.mb-3{
	margin-bottom: 3rem;
}