@charset "utf-8";
/* CSS Document */

/*==================================
ページトップへのボタン
====================================*/

.topBtn {
	position:fixed; /*固定*/
	bottom:20px; /*場所を右下に移動*/
	right:20px; /*場所を右下に移動*/
	display:block; /*aタグをblock要素に変更*/
	background-color:rgba(255,160,48,0.9);
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	font-size:11px;
	width:60px;
	height:60px;
	text-align:center;
	line-height:22px;
	border-radius:30px;
	padding-top:30px;
	box-sizing:border-box;
	z-index: 100;
	border: 2px solid #fff;
	cursor: pointer;
}
.topBtn:before {
	content:'\25B2';
	position:absolute;
	top:10px;
	left:0;
	width:100%;
	text-align:center;
	font-size:20px;	
}
.topBtn:hover {
	opacity:0.7;
}

/*==================================
ホバーの共通化
====================================*/

.cmn_hover{
	transition: 0.5s;
}
.cmn_hover:hover{
	opacity: 0.6;
	text-decoration: none;
}

/*==================================
共通のpadding設定
====================================*/

.sub_pdg{
	padding: 60px 0;
}



/*====================
     ページネーション
====================*/
.pagenation{
    display: flex;
    justify-content: center;
    margin: 70px auto 0;
}
.pagenation li{
    margin: 0 5px;
}
.pagenation li span,
.pagenation li a{
    padding: 10px;
    display: block;
    background-color: #fff;
    border: 1px solid #434343;
	line-height: 1.5;
}
.pagenation li span,
.pagenation li:hover a{
    color: #fff;
}
.pagenation li span,
.pagenation li a:hover{
    background-color: #434343;
}
.post_none{
    margin: 0 auto;
    font-size: 2rem;
}
.top_post_none{
    font-size: 1.4rem;
    color: #fff;
}

/*==================================
パンくずリスト設定
====================================*/

.breadcrumbs {
    background-color: #f6f5f0;
    color: #000;
}
.breadcrumbs .bread_wrap {
    justify-content: flex-start;
}
.breadcrumbs li {
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.breadcrumbs .bread_name {
    flex: 1;
}
.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    display: block;
    margin: auto;
    border-top: 2px solid #333;
    border-right: 2px solid  #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0; bottom: 0;
}
.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.2rem;
}
.breadcrumbs a {
    color: #333;
    text-decoration: underline;
}


@media screen and (min-width: 768px) {
    .breadcrumbs {
        padding: 7px 0;
    }
    .breadcrumbs li:not(:last-child) {
        padding: 0 30px 0 0;
    }
    .breadcrumbs li:not(:last-child)::before {
        width: 8px;
        height: 8px;
        right: 13px;
    }
}



/*==================================
ここから追加
====================================*/

/*visualのリンクボタン*/

.visu_link{
	position: relative;
	font-size: 3.2rem;
	font-weight: bold;
	color: #fff;
	background: #ff7c7c;
	line-height: 1;
	padding: 10px 0;
	display: block;
	border-radius: 30px;
}
.visu_link::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(-45deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transition: 0.5s;
}
.visu_link:hover::before{
	right: 10px;
}


/*セクションpaddingの共通化*/

.cmn_pdg{
	padding: 100px 0;
}

/*共通のタイトル*/

.cmn_ttl_big{
	position: relative;
	background: url("../images/common/cmn_ttl_big_bg.png") no-repeat center / cover;
	padding: 10px 0;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	border-radius: 18px;
	line-height: 1;
	margin-bottom: 50px;
}
.cmn_ttl_big span{
	display: block;
	border-top: 2px dashed #3c302a;
	border-bottom: 2px dashed #3c302a;
	padding: 15px 0;
}
.cmn_ttl_big::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 45px;
	width: 95px;
	height: 119px;
	background: url("../official/images/top/cmn_ttl_big_illus01.png") no-repeat center;
}


/*下に点線のボーダータイトル*/

.cmn_ttl_bt{
	position: relative;
	font-size: 3.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.cmn_ttl_bt::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 85px;
	height: 5px;
	background: url("../images/common/border_cmn.png") no-repeat center;
}

/*背景画像のみの共通化タイトル*/

.cmn_ttl_sub{
    background: url("../images/common/cmn_ttl_sub_bg.png") no-repeat center / cover;
    font-size: 2.8rem;
    border-radius: 20px;
    line-height: 1.6;
    padding-left: 30px;
    margin-bottom: 40px;
}

/*下にボーダーラインのタイトル*/

.cmn_ttl_sub02{
    font-size: 1.8rem;
    font-weight: bold;
    color: #23ac0f;
    line-height: 1.6;
    border-bottom: 2px solid #23ac0f;
    margin-bottom: 20px;
}


/*画像とテキストの共通box*/

.cmn_card_in{
    max-width: 240px;
    width: 100%;
}
.cmn_caed_img{
    margin-bottom: 20px;
}
.cmn_card_txt{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    border-bottom: 2px solid #ffa030;
    padding-bottom: 5px;
}


/*共通化のリストボックス*/

.cmn_box_item{
	max-width: 240px;
	width: 100%;
}
.cmn_box_img{
	margin-bottom: 20px;
}
.cmn_box_ttl{
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	padding-bottom: 10px;
	border-bottom: 2px solid #ffa030;
	margin-bottom: 15px;
}
.cmn_box_subtxt{
	font-size: 1.5rem;
	line-height: 1.8;
}


/*下層の背景色*/

.cmn_subsec{
	background: #f6f5f0;
}



/*ここからrecruitでbaseのofficialを上書き*/


#recruit .cmn_ttl_bt::before{
	background: url(../images/common/border_cmn02.png) no-repeat center;
}
#recruit .cmn_ttl_sub{
	background: url(../images/common/cmn_ttl_sub_bg02.png) no-repeat center / cover;
}


@media screen and (max-width:767px){
	
	/*==================================
	ページトップへのボタン
	====================================*/
	
	.topBtn {
		width:45px;
		height:45px;
	}

	/*==================================
	共通のpadding設定
	====================================*/

	.sub_pdg{
		padding: 50px 0;
	}

	/*==================================
	パンくずリスト設定
	====================================*/
	
	.breadcrumbs {
        padding: 4px 0;
    }
    body:not(#top) .breadcrumbs .bread_wrap {
        flex-direction: row;
        padding: 4px 0;
    }
    .breadcrumbs li:not(:last-child) {
        padding: 0 22px 0 0;
    }
    .breadcrumbs li:not(:last-child)::before {
        width: 7px;
        height: 7px;
        right: 10px;
    }
    .breadcrumbs a {
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
	
	/*==================================
	ここから追加
	====================================*/
	
	.visu_link{
		font-size: 2.3rem;
	}
	.visu_link::before{
		right: 20px;
	}
	.cmn_pdg{
		padding: 60px 0;
	}
	.cmn_ttl_big{
		font-size: 2.5rem;
	}
	.cmn_ttl_big span{
		padding: 10px 0;
	}
	.cmn_ttl_big::before{
		content: none!important;
	}
	.cmn_ttl_bt{
		font-size: 2.5rem;
	}
	.cmn_ttl_sub{
		font-size: 2.2rem;
	}
	.cmn_box_space{
		justify-content: center;
	}
	.cmn_box_item{
		max-width: 450px;
	}
	.cmn_box_img{
		text-align: center;
	}
	.cmn_box_item:not(:last-child){
		margin-bottom: 50px;
	}
	.cmn_card_space{
		max-width: 500px;
		margin: 0 auto;
	}
	.cmn_card_in{
		width: 48%;
		margin-bottom: 30px;
	}
	.cmn_card_txt{
		font-size: 1.6rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}
