/*** HANDS NET CSS Document ******************************************

	common-renewal.css

**********************************************************************

	1	共通設定
  ・レイアウト
  ・パンくずリスト
  ・ページネーション
  ・通知バー

	2	見出しパーツ

	3	ボタンパーツ

	4	共通パーツ
  ・ボタン
  ・タグ
  ・フォーム
  ・リンク もっと見る
  ・区切り線

******************************************************************* */



/*--------------------------------------------------------------------

	1	共通設定

--------------------------------------------------------------------*/
body.r201902 {
min-width: 1024px;
}

.r201902 > .content{
padding: 0;
width: auto;
min-width: auto;
}

main {
display:block;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   /* IE10+ CSS */
.r201902 > .content{
margin-top:188px
}
.r201902.hide-info > .content{
margin-top:160px;
}
.r201902 > .content:before{
content:'';display:table;
}
}

.r201902 button,
.r201902 a:link{
color:#007236;
stroke:#007236;
}
.r201902 a:visited,
.r201902 a:active{
color:#004022;
stroke:#004022;
}
.r201902 button:hover,
.r201902 a:hover{
color: #50AC59;
text-decoration: none;
stroke: #50AC59;
}
.r201902 button:active,
.r201902 a:active{
color:#004022;
stroke:#004022;
}
.r201902 button{
outline:none;
border:none;
background:none;
}


/* レイアウト
--------------------------------------*/
.r201902 main *,
#modMain *{
  box-sizing: border-box;
}

.modContainer.full{
width: 100%;
}

.modContainer.gray{
background-color: #f5f5f7;
}

.modContainer.content{
max-width: 1024px;
width: 1024px;
padding: 0 32px;
margin: 0 auto;
}


/* パンくずリスト
--------------------------------------*/
#modBreadcrumbs{
padding: 24px 0;
}
#modBreadcrumbs .list{
list-style: none;
padding: 0;
margin: 0;
}
#modBreadcrumbs .item{
display: inline-block;
font-size: 13px;
}
#modBreadcrumbs .item:not(:last-child)::after{
display: inline-block;
content: '＞';
color: #666;
}


/* ページネーション
--------------------------------------*/
#modPagination{
margin: 80px 0;
}
#modPagination ul{
display: flex;
align-items: center;
justify-content: center;
}
#modPagination ul li{
margin: 0 6px;
font-size: 16px;
}
#modPagination ul li > a,
#modPagination ul li > span{
padding: 7px 11px;
line-height: 1;
}
#modPagination ul li a:hover{
color: #50AC59;
background-color: #F5F5F7;
text-decoration: none;
}
#modPagination ul li.current span{
color: #fff;
background-color: #007236;
}
#modPagination ul li.disabled > *{
color: #aaa;
pointer-events:none;
}
#modPagination ul li.first,
#modPagination ul li.previous,
#modPagination ul li.next,
#modPagination ul li.last{
margin: 0;
}
#modPagination ul li.first > *,
#modPagination ul li.previous> *,
#modPagination ul li.next > *,
#modPagination ul li.last > *{
display: flex;
align-items: center;
margin: 0;
}
#modPagination ul li.first svg,
#modPagination ul li.previous svg{
margin-right:8px;
transform:rotate(180deg);
}
#modPagination ul li.next svg,
#modPagination ul li.last svg{
margin-left:8px;
}
#modPagination ul li.disabled svg{
stroke:#aaa;
}

/* 通知バー
--------------------------------------*/
.modNotification{
padding: 6px 10px;
font-size: 13px;
color: #fff;
text-align: center;
background-color: #4D4D4D;
opacity: 0.75;
}
.modNotification .link{
color: #fff;
text-decoration: underline;
}
.modNotification .link:hover{
text-decoration: none;
}


/*--------------------------------------------------------------------

	2	見出しパーツ

--------------------------------------------------------------------*/
.modHeading{}


/* design1 下線つきデザイン
--------------------------------------*/
.r201902 .modHeading.design1,
.modHeading.design1{
min-height: 48px;
margin-bottom: 26px;
color: #000;
font-size: 18px;
font-weight: bold;
border-bottom: 2px solid #007236;
}
.r201902 .modHeading.design1 .icon,
.modHeading.design1 .icon{
display: inline-block;
vertical-align: middle;
margin-right: 10px;
fill:#007236;
}
.r201902 .modHeading.design1 .subTitle,
.modHeading.design1 .subTitle{
margin-left: 30px;
color: #4D4D4D;
font-size: 16px;
font-weight: normal;
}

/* design2 左右中央 タイトル下にライン デザイン
--------------------------------------*/
.r201902 .modHeading.design2,
.modHeading.design2{
position: relative;
padding-bottom: 32px;
margin: 0;
color: #000;
font-size: 18px;
text-align: center;
}
.r201902 .modHeading.design2::after,
.modHeading.design2::after{
position: absolute;
bottom: 0;
left: 50%;
content: '';
width: 64px;
height: 1px;
background-color: #4d4d4d;
transform: translateX(-50%);
}



/*--------------------------------------------------------------------

	3	ボタンパーツ

--------------------------------------------------------------------*/
.r201902 .modButton,
.modButton{
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 50px;
font-size: 18px;
font-weight: bold;
text-align: center;
border: 1px solid;
border-radius: 2px;
background: transparent;
outline: none;
line-height:46px;
}
main .arrow svg{
display: inline-block;
vertical-align: middle;
height:18px;
width:18px;
margin-left:16px;
}
main .arrow.arrow-small svg{
height:12px;
width:12px;
margin-left:16px;
}


/* primary
--------------------------------------*/
.r201902 .modButton.primary,
.modButton.primary{
color: #fff;
stroke: #fff;
background-color: #007236;
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5);
border:none;
}
.r201902 .modButton.primary:hover,
.modButton.primary:hover{
background-color: #50AC59;
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0 2px 2px rgba(0,0,0,0.25);
}
.r201902 .modButton.primary:active,
.modButton.primary:active{
border-color: #004022;
background-color: #004022;
}
.r201902 .modButton.primary .arrow::after,
.modButton.primary .arrow::after{
border-color: #007236;
}


/* primary light
--------------------------------------*/
.r201902 .modButton.primary.light{
border-color: #00ab0e;
background-color: #00ab0e;
box-shadow: inset 0 -1px 0 #007236;
}
.r201902 .modButton.primary.light:active{
border-color: #007236;
background-color: #007236;
opacity: 1;
}
.r201902 .modButton.primary .arrow::after{
border-color: #00ab0e;
}
body.r201902 .gray .modButton.noborder,
.gray .modButton.noborder{
border-width: 0;
background-color: #fff;
box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.50);
}


/* order
--------------------------------------*/
.r201902 .modButton.order{
position: relative;
color: #fff;
border: none;
background-color: #00ab0e;
box-shadow: inset 0 -2px 0 #007236;
background-repeat:no-repeat;
background-position: right 16px center;
background-size: 16px 16px;
line-height:46px;
}
.r201902 .modButton.order svg{
position: absolute;
width:16px;
height:16px;
right: 16px;
top:17px;
stroke:#fff;
}
.r201902 .modButton.order:hover{
background-color: #50AC59;
box-shadow: inset 0 -2px 0 #007236,0 2px 2px rgba(0,0,0,0.25);
}
.r201902 .modButton.order:active{
background-color: #007236;
opacity: 1;
}



/* anker
--------------------------------------*/
.r201902 .modButton.anker{
position: relative;
display: flex;
align-items: center;
padding-right: 45px;
color: #007236;
border-color: #007236;
background-color: #fff;
box-shadow: 0 1px 0 #13371d;
}
.r201902 .modButton.anker:active{
color: #004022;
border-color: #004022;
opacity: 1;
}
.r201902 .modButton.anker .icon{
position: absolute;
top: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 100%;
background-color: #00ab0e;
}
.r201902 .modButton.anker:active .icon{
border-color: #007236;
background-color: #007236;
}


/* anker light
--------------------------------------*/
.r201902 .modButton.anker.light{
color: #00ab0e;
border-color: #00ab0e;
background-color: #fff;
box-shadow: inset 0 -2px 0 #00ab0e;
}
.r201902 .modButton.anker.light:active{
color: #007236;
border-color: #007236;
opacity: 1;
box-shadow: inset 0 -2px 0 #007236;
}
.r201902 .modButton.anker.light .icon{
border-color: #00ab0e;
}


/* secondary
--------------------------------------*/
.r201902 .modButton.secondary{
color: #007236;
border-color: #007236;
background-color: #fff;
box-shadow: 0 1px 0 #007236;
stroke: #007236;
}
.r201902 .modButton.secondary:hover{
color:#50AC59;
stroke:#50AC59;
}
.r201902 .modButton.secondary:active{
color: #004022;
stroke: #004022;
}

/* secondary light
--------------------------------------*/
.r201902 .modButton.secondary.light{
color: #00ab0e;
border-color: #00ab0e;
background-color: #fff;
box-shadow: inset 0 -2px 0 #00ab0e;
stroke: #00ab0e;
}
.r201902 .modButton.secondary.light:hover{
color:#50AC59;
stroke:#50AC59;
}
.r201902 .modButton.secondary.light:active{
color: #007236;
border-color: #007236;
stroke: #007236;
box-shadow: inset 0 -2px 0 #007236;
}


/*--------------------------------------------------------------------

	4	共通パーツ

--------------------------------------------------------------------*/


/* タグ 共通
--------------------------------------*/
.modTagItem{
display: inline-block;
padding: 5px 4px;
font-size: 13px;
line-height: 13px;
border-radius: 2px;
}


/* タグ primary
--------------------------------------*/
.modTagItem.primary{
color: #fff;
background-color: #007236;
}
a.modTagItem.primary:hover{
background-color:#50AC59;
}
a.modTagItem.primary:active{
background-color:#004022;
}

.staff-blog .modTagItem.primary{
background-color:#A0306C;
}
.staff-blog a.modTagItem.primary:hover{
background-color:#A0306C;
}
.staff-blog a.modTagItem.primary:active{
background-color:#000;
}

/* タグ 枠線
--------------------------------------*/
.modTagItem.outline{
color: #4d4d4d;
border: 1px solid #aaa;
}
.modTagItem.outline.secondary{
color: #BD2B6A;
border-color: #BD2B6A;
}


/* フォーム select
--------------------------------------*/
.modInput,
.modSelect{
appearance: none;
padding: 0;
border: none;
outline: none;
background: transparent;
border-radius: 0;
cursor: pointer;
color:#4d4d4d;
}

.modSelect{
border: 1px solid #aaa;
border-radius: 2px;
padding: 5px;
height: 44px;
font-size: 16px;
background-color: #fff;
}
.modSelect:hover{
border-color:#000;
}


/* リンク もっと見る
--------------------------------------*/
.modLinkMore{
position: relative;
padding-right: 15px;
color: #007236;
stroke: #007236;
font-size: 16px;
}
.modLinkMore svg{
width:10px;
height:10px;
margin-left:6px;
}


/* 区切り線
--------------------------------------*/
.modSeparation{
height: 15px;
margin: 0;
background-color: #F5F5F7;
border: none;
}











/*--------------------------------------------------------------------

	0	xxx

--------------------------------------------------------------------*/

/* xxx
--------------------------------------*/
.xxx{}
