/*
	root
*/

/* 強調 */
strong {
	font-weight: bold;
}
em {
	font-weight: bold;
}

/* 横幅一杯の背景 */
.fluid {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);
}

/* アイキャッチのobject-fit */
.ncb-recent-post-eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}


.kb-svg-icon-wrap.kt-btn-side-left{
	font-size:25px;
	padding-right: 30px;
}

html{
	scroll-padding-top: 200px; // ヘッダーの高さ分設定
}

.fixed-recruit a:hover::before{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .6;
}

/*ラジオボタンの色変更*/
input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
	background-color:#fff;
  border-radius: 50%;
  vertical-align: -2px;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DD0030;
  content: '';
}

/*投稿画面のパンくずリストを横並びにする*/
.breadcrumb-items{
	display:flex;
}