@charset "UTF-8";

/* reset */

html, body, div, span, iframe,p,
h1,h2,h3,h4,h5,h6,
a, em, font, img, strong, sub, sup,
dl, dt, dd, ol, ul, li, fieldset,
label, table, caption, tr, td {
	text-align: left;
	line-height: 1;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	list-style:none;
	text-decoration: none;
}

html {
	font-size: 62.5%; 
	scroll-padding-top: 62px;
}

img,video {
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix { zoom: 1; }


* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}



body {
	color: #000;
	font-family: "Meiryo", "Hiragino maru Gothic ProN W4", "メイリオ", "游ゴシック", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 16px;
	line-height: 1.8;
}




/* -----　ヘッダー　-------------------------- */

header .pcHeadNav {
	display: none;
}


header {
	position: fixed !important;
	width: 100%;
	height: 70px;
	background: #fff;
	z-index:100; 
	transition: .5s;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.03);
}

header ul.spTabHeadNav {
	display: flex;
	justify-content: space-between;
}
header ul.spTabHeadNav > li:nth-child(1) {
	width: 142px;
}
header ul.spTabHeadNav > li:nth-child(2) {
	position: relative;
}

header ul.spTabHeadNav img.hlogo {
	width: 142px;
	margin: 13px 10px 0 18px;
}




/* ハンバーガー ---------------------------------------- */

header .navContainer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

header .navBt {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	padding: 16px 20px;
	background: #E95F18;
	cursor: pointer;
	z-index: 2;
}

header .bar {
	display: block;
	width: 30px;
	height: 2px;
	margin: 8px 0;
	background: #fff;
	transition: 0.5s;
}

/* ボタンクリック時のアニメーション */
header #toggle:checked ~ .navBt .bar:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}
header #toggle:checked ~ .navBt .bar:nth-child(2) {
	opacity: 0;
}
header #toggle:checked ~ .navBt .bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* メニュートグルのスタイル */
header #toggle {
	display: none;
}

/* メニューのスタイル */
header .navList {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: #E95F18;
	transition: 0.5s;
	z-index: 1;
	overflow-y: auto;
}

/* チェック時のアニメーション */
header #toggle:checked ~ .navList {
	right: 0;
}

/* メニュー */
header .navList ul {
	list-style: none;
	padding: 70px 0 0;
}

header .navList ul li a {
	display: block;
	color: #fff;
	font-size: 16px;
	padding: 23px 26px 20px;
	border-bottom: 1px solid #fff;
	transition: 0.3s;
}
header .navList ul li:nth-child(1) a {
	border-top: 1px solid #EBE2E2;
}
header .navList ul li a:hover {
	color: #E95F18;
	background: #fff;
}




/* パンくず */

.bread {
	color: #fff;
	font-size: 11px;
	margin: 0 0 32px;
	padding: 83px 0 11px;
	background: #E95F18;
}
.bread .inner {
	line-height: 1.5;
}
.bread a {
	color: #fff;
	text-decoration: underline;
}
.bread a:hover,
.bread a:visited {
	color: #fffad9;
}



.inner {
	padding: 0 18px;
}




/* タイトル */

#title {
	padding: 0;
}

#title h1 {
	color: #666;
	font-family: "M PLUS Rounded 1c";
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 24px;
	padding: 0 0 12px;
	border-bottom: 3px solid #EF5F16;
}




h2 {
	color: #777;
	font-family: "M PLUS Rounded 1c";
	font-size: 30px;
	font-weight: 400;
	text-align: center;
	margin: 0 0 24px;
	letter-spacing: 0.05em;
}

h2 .fSmall {
	font-size: 24px;
}


h3 {
	color: #E35811;
	font-family: "M PLUS Rounded 1c";
	font-size: 24px;
	font-weight: 400;
	text-align: center;
	margin: 0 0 15px;
}

h3 .fSmall {
	color: #777;
	font-size: 18px;
}

a,
a:visited {
	color: #EF5F16;
}
a:hover {
	color: #e8834f;
}




/* フォーム関係 */

.cbTxt {
	color: #fff;
	font-size: 18px;
	vertical-align: -1px;
}

input[type='checkbox'].srchCheck {
	appearance: none;
	position: relative;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 3px;
	vertical-align: -7px;
}
input[type='checkbox'].srchCheck:checked::before {
	position: absolute;
	top: 1px;
	left: 6px;
	content: '';
	width: 5px;
	height: 12px;
	border-right: 2px solid #454545;
	border-bottom: 2px solid #454545;
	transform: rotate(45deg);
}







/* -----　フッター　-------------------------- */

footer {
	padding: 26px 0 0;
	background: #555;
}

footer .ftContainer {
	padding: 0 24px 80px;
}

footer ul.ftCont li .sholder {
	display: block;
	color: #fff;
	font-size: 14px;
	text-align: center;
	margin: 0 0 5px;
}
footer ul.ftCont li h2 {
	color: #fff;
	font-size: 19px;
	margin: 0 0 20px;
}
footer ul.ftCont li a.outLink {
	display: block;
	width: 100%;
	max-width: 300px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	margin: 0 auto 30px;
	padding: 13px 0;
	background: url(/img/common/mk_arrowWhite_R.svg) 92% 50% no-repeat;
	background-size: 15px auto;
	border: 1px solid #fff;
	border-radius: 20px;
	transition: 0.5s;
}
footer ul.ftCont li a.outLink:hover {
	/*background: #E95F18 url(/img/common/mk_arrowWhite_R.svg) 94% 50% no-repeat;*/
	background: #777777 url(/img/common/mk_arrowWhite_R.svg) 94% 50% no-repeat;
	background-size: 15px auto;
	/*border: 1px solid #E95F18;*/
	border: 1px solid #ffffff;
	transition: 0.5s;
}

footer ul.ftCont li ul.ftNav {
	display: flex;
	flex-wrap: wrap;
	width: 312px;
	margin: 0 auto;
}
footer ul.ftCont li ul.ftNav li {
	padding: 0 0 3px;
}
footer ul.ftCont li ul.ftNav li:nth-child(odd) {
	width: 55%;
}
footer ul.ftCont li ul.ftNav li:nth-child(even) {
	width: 45%;
}


footer ul.ftCont li ul.ftNav li a {
	display: block;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 16px;
}
footer ul.ftCont li ul.ftNav li a.mLink {
	font-size: 14px;
}
footer ul.ftCont li ul.ftNav li a.sLink {
	font-size: 13px;
}
footer ul.ftCont li ul.ftNav li .stl {
	display: block;
	color: #fff;
	font-size: 14px;
	margin: 0 0 16px;
}


footer .copy {
	color: #fff;
	font-size: 11px;
	text-align: center;
	padding: 15px 5px 14px;
	background: #333;
}



/* page top ボタン */

html {
	scroll-behavior: smooth;
}

a.pagetop {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	right: 0;
	bottom: 40px;
	background: #333;
	transition: 0.5s;
	z-index: 2;
}
.pagetop .btPtop {
	color: #fff;
	font-size: 10px;
}
.pagetop .btPtop::before {
	content: '';
	display: block;
	vertical-align: middle;
	width: 24px;
	height: 11px;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 12px;
	background: url(/img/common/mk_arrow_ptop.svg) no-repeat;
	background-size: 24px auto;
}
a.pagetop:hover {
	background: #777;
	transition: 0.5s;
}
a.pagetop:active {
	background: #333;
}



/* colorbox カスタム */

.close_btn {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	font-size: 22px;
}

#colorbox, #cboxOverlay, #cboxWrapper {
	overflow: visible;
}
#cboxWrapper {
	overflow: visible;
}
#cboxBottomLeft, #cboxBottomCenter, #cboxBottomRight, #cboxTopLeft, #cboxTopCenter, #cboxTopRight, #cboxMiddleLeft, #cboxMiddleRight {
	width: 0;
	height: 0;
	background: none;
}
#cboxContent,
button#cboxPrevious,
button#cboxNext {
	background: none;
}
#cboxLoadedContent {
	background: #fff;
	padding: 0;
	margin: 0;
	overflow: auto;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#cboxTitle {
	display: none;
}

#cboxClose {
	top: 0;
	bottom: unset;
}



.useSP { display: inline; }
.usePC { display: none; }








/*media Queries Tablet
----------------------------------------------------*/
@media print, screen and (min-width:601px) {

.inner { *padding:0 50px; }




/* -----　フッター　-------------------------- */

footer {
	padding: 36px 0 0;
}

footer .ftContainer {
	padding: 0 2% 80px;
}

footer ul.ftCont {
	display: flex;
	justify-content: space-between;
}

footer ul.ftCont > li:nth-child(1) {
	width: 308px;
}
footer ul.ftCont > li:nth-child(2) {
	width: calc(100% - 308px);
	padding: 0 0 0 2%;
}


footer ul.ftCont li ul.ftNav {
	width: 100%;
}

footer ul.ftCont li ul.ftNav li:nth-child(odd) {
	width: 58%;
}
footer ul.ftCont li ul.ftNav li:nth-child(even) {
	width: 42%;
}



}/* media Queries Tablet */



@media print, screen and (min-width:681px) {


footer .ftContainer {
	padding: 0 4.4444% 80px;
}


footer ul.ftCont > li:nth-child(1) {
	width: 320px;
}
footer ul.ftCont > li:nth-child(2) {
	width: calc(100% - 320px);
	padding: 0 0 0 6%;
}



footer ul.ftCont li h2 {
	font-size: 20px;
}


}/* media Queries Tablet */





/*media Queries PC
----------------------------------------------------*/
@media print, screen and (min-width:811px) {

body { font-size: 18px; }


/* -----　ヘッダー　-------------------------- */

header ul.spTabHeadNav {
	display: none;
}


header {
	height: 160px;
}

header .pcHeadNav {
	display: block;
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 23px 30px 17px;
}


header .pcHeadNav ul.upperNav {
	display: flex;
	justify-content: space-between;
	margin: 0 0 16px;
}
header .pcHeadNav ul.upperNav > li:nth-child(1) {
	width: 213px;
}
header .pcHeadNav ul.upperNav > li:nth-child(2) {
	text-align: right;
}


/* 上部リンク */

header .pcHeadNav ul.upperNav li ul.linkBl,
header .pcHeadNav ul.upperNav li ul.headSearchBl {
	display: flex;
	justify-content: flex-end;
}

header .pcHeadNav ul.upperNav li ul.linkBl {
	margin: 0 0 20px;
}

header .pcHeadNav ul.upperNav li ul.linkBl li a {
	color: #555;
	font-size: 13px;
	margin: 0 0 0 20px;
}
header .pcHeadNav ul.upperNav li ul.linkBl li a::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 8px;
	margin: -3px 0 0;
	padding: 0 10px 1px 0;
	background: url(/img/common/mk_arrowOrg_R.svg) no-repeat;
	background-size: 6px auto;
}
header .pcHeadNav ul.upperNav li ul.linkBl li a:hover {
	color: #EF5F16;
}


/* フリー検索 */

header .pcHeadNav ul.upperNav li ul.headSearchBl {
	align-items:center;
}
header .pcHeadNav ul.upperNav li ul.headSearchBl li input[type='text'] {
	width: 250px;
	font-size: 14px;
	margin: 0 20px 0 0;
	padding: 0.4em;
	border: 1px solid #D3D3D3;
	border-radius: 3px;
}
header .pcHeadNav ul.upperNav li ul.headSearchBl li:nth-child(1)::before {
	content: '';
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url(/img/common/mk_search_gry.svg) no-repeat;
	background-size: 21px auto;
	vertical-align: middle;
	padding: 0 10px 1px 0;
}

header .pcHeadNav ul.upperNav li ul.headSearchBl li input[type='submit'] {
	width: 82px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	padding: 6px 0 7px;
	border: none;
	background: #EF5F16;
	border-radius: 3px;
	cursor: pointer;
}


/* グローバルナビ */

header .pcHeadNav ul.lowerNav {
	display: table;
	width: 100%;
}
header .pcHeadNav ul.lowerNav li {
	position: relative;
	display: table-cell;
	vertical-align: middle;
}
header .pcHeadNav ul.lowerNav li::before {
	content: "";
	position: absolute;
	top: 1px;
	left: -1px;
	display: inline-block;
	width: 1px;
	height: 30px;
	background: #777;
}
header .pcHeadNav ul.lowerNav li:last-child::after {
	content: "";
	position: absolute;
	top: 1px;
	right: -1px;
	display: inline-block;
	width: 1px;
	height: 30px;
	background: #777;
}
header .pcHeadNav ul.lowerNav li a {
	display: inline-block;
	width: 100%;
	color: #555;
	font-size: 15px;
	text-align: center;
	padding: 8px 5%;
	white-space: nowrap;
}
header .pcHeadNav ul.lowerNav li:nth-child(3) a {
	line-height: 20px;
	margin: -4px 0 0;
	padding: 0 5%;
}
header .pcHeadNav ul.lowerNav li a:hover {
	color: #EF5F16;
}


@media screen and (min-width:1130px) {

header .pcHeadNav ul.lowerNav li {
	width: 16.6666%;
}
header .pcHeadNav ul.lowerNav li a {
	font-size: 15px;
}

}




/* 　アウトライン　 */

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}


.bread {
	margin: 0 0 46px;
	padding: 173px 0 11px;
}



#title h1 {
	font-size: 40px;
	margin: 0 0 46px;
	padding: 0 0 20px;
}




h2 {
	font-size: 40px;
	margin: 0 0 36px;
}

h2 .fSmall {
	font-size: 34px;
}







/* -----　フッター　-------------------------- */

footer {
	padding: 56px 0 0;
}

footer .ftContainer {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 80px;
}


footer ul.ftCont > li:nth-child(2) {
	padding: 0;
}

footer ul.ftCont li ul.ftNav {
	width: 320px;
}

footer ul.ftCont li ul.ftNav li:nth-child(odd),
footer ul.ftCont li ul.ftNav li:nth-child(even) {
	padding: 0 0 0 3%;
}




.useSP { display: none; }
.usePC { display: inline; }



}/* media Queries PC */



@media print, screen and (min-width:911px) {


footer ul.ftCont > li:nth-child(2) {
	width: calc(100% - 320px);
}

footer ul.ftCont li ul.ftNav {
	flex-wrap: nowrap;
	width: 100%;
}

footer ul.ftCont li ul.ftNav li:nth-child(odd),
footer ul.ftCont li ul.ftNav li:nth-child(even) {
	width: 22%;
	padding: 0 0 0 3%;
}

footer ul.ftCont li ul.ftNav li:nth-child(1) {
	width: 34%;
	padding: 0 0 0 8%;
}



}/* media Queries PC */





@media print, screen and (min-width:1221px) {

.inner {
	padding: 0;
}

}






