@charset "UTF-8";

/* モデルコース 一覧ぺージ*/
.ttl {
 background-image: url("../img/modelcourse/ttl-bg.png");
}
.more_btn{
position: relative;
max-width: 290px;
width: 100%;
line-height: 100%;
display: flex;
background: #fff;
border: solid 1px #000;
}
.more_text{
font-family: source-han-serif-japanese, serif;
font-size: 1.4rem;
font-weight: 400;
width: 100%;
color: #000;
text-align: center;
padding: 17px 0;
}
.more_btn:hover {
background-color: #000;
}
.more_text::before{
content:"";
position: absolute;
top:50%;
right:15px;
/*下線の形状*/
width:16px;
height:1px;
background:#000;
transition: all .1s linear;
}
.more_text::after{
content:"";
/*絶対配置で矢印の位置を決める*/
position: absolute;
top: 40%;
right: 18px;
/*矢印の形状*/
width:1px;
height:5px;
background:#000;
transform:skewX(45deg);
transition: all .1s linear;
}
.more_text:hover{
color: #fff;
}
.more_text:hover::before{
right:10px;
background:#fff;
}
.more_text:hover::after{
	right:13px;
	background:#fff;
}

/*モデルコース 一覧 スマートフォン*/

@media all and (max-width : 767px ){
.more_btn{
max-width: 240px;
width: 100%;
}
.more_text{
font-size: 1.1rem;
padding: 17px 0;
}
}


/* モデルコース詳細ぺージ*/

.course_start {
width: 200px;
padding: 10px;
margin-top:45px; 
background-color: #000;
font-family: 'Libre Baskerville', serif;
font-weight: 400;
font-size: 1.6rem;
color: #fff;
line-height: 100%;
text-align: center;
}
.course_fin {
 margin-top: 5px;
}
.route_time {
margin-left: 40px;
padding: 20px 20px 25px 30px;
font-size: 1.4rem;
background-image: url("../img/common/course_arrow.svg") ;
background-repeat: no-repeat;
background-position: left bottom;
}
.article-doc {
margin-bottom: 30px;
}
.article-ttl {
margin-top: 30px !important;
}

/*モデルコース詳細 スマートフォン*/

@media all and (max-width : 767px ){

.course_start {
width: 150px;
padding: 10px;
margin-top:30px; 
font-size: 1.3rem;
}
.course_fin {
 margin-top: 2px;
}
.route_time {
margin-left: 10px;
padding: 20px 20px 30px 25px;
font-size: 1.2rem;
}
.article-doc {
margin-bottom: 25px;
}
.article-ttl {
margin-top: 20px !important;
}
}
