@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}
html {
	font-size:100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0;
	padding: 0;
}
@keyframes fadeIn {
	0% {opacity: 0}
	85% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	85% {opacity: 0}
	100% {opacity: 1}
}
body {
	color: #333;
	font-size:16px;
	margin: 0 auto;
	padding: 0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,"ヒラギノ角ゴ Pro W3",'Hiragino Kaku Gothic ProN',Arial,Helvetica,Meiryo,'MS PGothic', Sans-serif;
	line-height: 1.55;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
	animation: fadeIn 1s ease 0s  1 normal;
}
ul li{
	list-style: outside none none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}
table {
	border-collapse:collapse;
	border-spacing: 0;
}
iframe{
	width: 100%;
}
address{
	font-style: normal;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	text-decoration:none;
	outline: none;
	overflow: hidden;
	color:#006DBB;
}
a:hover {
	opacity:0.85;
	text-decoration: none;
}
/*フォント設定
---------------------------------------------------------------------------*/
.mincho{
	font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3,"ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/*見出し設定
---------------------------------------------------------------------------*/
.secTtl{
	text-align: center;
	margin-bottom: 60px;
}
.secTtl span{
	font-size: 31px;
	border-bottom: 4px solid #006FBC;
	width: 100%;
	max-width: 780px;
	padding-bottom: 6px;
	display: inline-block;
}
/*共通コンテンツ・部品
---------------------------------------------------------------------------*/
/*Slide
--------------------------------------*/
.slider{
	display: none;
}
.slider.slick-initialized{
	display: block;
}
/*ボタン設定
--------------------------------------*/
button,
input[type="submit"],
input[type="button"]{
	border: none;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
}
.btn-more{
	color: #FFF;
	display: inline-block;
	width: 238px;
	height: 48px;
	line-height: 48px;
	background-color: #3278BD;
	border-radius: 4px;
	-webkit-box-shadow: 1px 5px 10px rgba(0,0,0,0.3);
	box-shadow: 1px 5px 10px rgba(0,0,0,0.3);
	position: relative;
	text-align: center;
}
.btn-more:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #ffffff;
}
.btn-type1{
	color: #FFF;
	display: inline-block;
	width: 406px;
	height: 78px;
	line-height: 78px;
	background: rgb(218,106,106);
	background: linear-gradient(180deg, rgba(218,106,106,1) 0%, rgba(183,79,76,1) 100%);
	border: 1px solid #B74F4C;
	border-radius: 6px;
	font-size: 28px;
	letter-spacing: 0.1em;
	padding-right: 15px;
	position: relative;
	text-align: center;
}
.btn-type1:before {
	content: "";
	position: absolute;
	display: block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	background-color: #fff;
	top: 0;
	bottom: 0;
	right: 60px;
	margin: auto;
}
.btn-type1:after{
	content: "";
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	transform: rotate(-45deg);
	right: 68px;
	border-color: #DA6A6A;
	top: 0;
	bottom: 0;
	margin: auto;
}
/*水平線設定
--------------------------------------*/
.hrStyle1{
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #000;
	margin-bottom: 20px;
}
/*テーブル設定
--------------------------------------*/
/*カラム設定
---------------------------------------------------------------------------*/
.flexCols {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap : wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexAlignC{
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flexAlignEnd{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.flexJC { 
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flexCC { 
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flexSbet{ 
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between
}
.flexSbetC{ 
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flexSard {
	-ms-flex-pack: distribute;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/*Layout
---------------------------------------------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	main {
		display: block;
	}
}
.innerWrap{
	max-width: 1000px;
	margin: 0 auto;
}
.bgF1{
	background-color: #F1F1F1;
}
/*Header
---------------------------------------------------------------------------*/
.hdr-msg{
	background-color: #006FBC;
	color: #FFF;
	line-height: 40px;
	text-align: center;
}
.hdr-logo{
	margin: 12px 0;
	display: block;
}
.sp-btn-menu {
	display: none;
}
@media screen and (min-width:770px) and (max-width:1020px) {
	.hdrInner{
		padding: 0 2%;
	}
}
/*search-form
----------------------------------------*/
.search-form{
	position: relative;
}
.search-field{
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	font-size: 14px;
	padding: 10px 40px 10px 8px;
	width: 370px;
}
.search-submit{
	background: url(../images/common/icon/icon-search.png) no-repeat 50% 50% / auto;
	position: absolute;
	right: 0;
	width: 40px;
	height: 100%;
	padding: 0;
}
/*gNavi
--------------------------------------*/
.gNavi{
	background-color: #F2F2F2;
}
.gNavi ul li{
	width: calc(98% / 7);
	height: auto;
	text-align: center;
}
.gNavi  ul li a{
	display: inline-block;
	font-weight: 500;
	padding-top: 60px;
	padding-bottom: 8px;
}
.gNavi  ul li a span{
	padding-top: 5px;
	font-size:13px;
	display:block;
}
.gNavi ul li:nth-of-type(3) a{
	background: url(../images/common/icon/icon-nav2.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(4) a{
	background: url(../images/common/icon/icon-nav5.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(5) a{
	background: url(../images/common/icon/icon-nav4.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(6) a{
	background: url(../images/common/icon/icon-nav6.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(7) a{
	background: url(../images/common/icon/icon-nav8.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(8) a{
	background: url(../images/common/icon/icon-nav7.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(9) a{
	background: url(../images/common/icon/icon-nav3.png) no-repeat 50% 15px / 42px;
}
.gNavi ul li:nth-of-type(10) a{
	background: url(../images/common/icon/icon-nav8.png) no-repeat 50% 15px / 42px;
}
/*FOOTER
---------------------------------------------------------------------------*/
footer {
	padding-top: 40px;
	color: #fff;
	background-color: #006FBC;
}
footer a{
	color: #FFF;
}
.ftrInner{
	border-bottom: 1px dashed #FFF;
	padding-bottom: 58px;
}
.ftr-logoWrap{
	text-align: center;
	margin-bottom: 45px;
}
.ftr-box1 ul li{
	margin-bottom: 6px;
}
.ftr-box2 h5{
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 400;
}
.ftr-box2 ul li a{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 15px;
}
.ftr-box2 ul li a:before{
	content: "・"
}
.copyRight{
	text-align: center;
	padding: 20px 0 60px;
}
.ptopWrap {
    background-color: #002060;
}
.ptopWrap a .ptopImg {
    width: 35px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
	 margin-left: auto;
    margin-right: auto;
}
.ptopWrap a .ptopImg img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 770px) and (max-width: 1020px) {
	.ftrInner{
		padding: 0 1% 58px;
	}
}
/* ページネーション
---------------------------------------------------------------------------*/
.nav-links {
	text-align: center;
	letter-spacing: -.4em;
	margin-top: 50px;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.page-numbers {
	font-size: 18px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-left:1px solid #ddd;
	width: 35px;
	height: 35px;
	display: inline-block;
	line-height: 35px;
	vertical-align: middle;
	letter-spacing: normal;
}
.page-numbers:last-of-type {
	border-right: 1px solid #ddd;
}
.page-numbers.current{
	background-color: #006FBC;
	border: 1px solid #006FBC;
	color: #FFF;
}
.next.page-numbers{
	font-size: 22px;
}
.prev.page-numbers{
	font-size: 22px;
}
/*--------------------------------------------------------------------------
下層共通 lower_layer
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
/*breadcrumb
--------------------------------------*/
/*Main
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
カテゴリ一覧ページ archive
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
.mainVisualCat {
	width: 100%;
	position: relative;
	padding-bottom: 15px;
	height: 240px;
	background-image: url(../images/home/slide/mv-slide1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}
.archive .searchCat_boxWrap{
	margin-bottom: 0;
}
/*Main
---------------------------------------------------------------------------*/
.secCat {
	padding: 70px 0 50px;
}
@media screen and (min-width:770px) and (max-width:1020px) {
	.secCat{
		padding: 70px 1% 50px;
	}
}
/* catList
--------------------------------------*/
.catList_boxWrap::after{
	content:"";
	display: block;
	width:31.3%;
}
.catList_box{
	background-color: #fff;
	border: 1px solid #BABABA;
	width: 31.3%;
	margin-bottom: 30px;
	display: block;
}
.catList_box .ttl{
	font-size: 15px;
	padding: 14px 10px 10px;
	color: #333;
}
@media screen and (min-width:770px) {
	.catList_box .imgWrap img{
		width: 100%;
		height: 20.3vw;
		max-height: 207px;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}
}


/*ect
---------------------------------------------------------------------------*/
.floatL { float: left; }
.floatR { float: right; }
.alignL {text-align: left;}
.alignR {text-align: right;}
.alignCR {text-align: center;}

.pcNone{display: none!important;}
.spNone{display: block!important;}

.fw700{font-weight: 700;}
.textNone {text-indent: 100%;white-space: nowrap;overflow: hidden;line-height: 0;}

.marker_yellow {
background: linear-gradient(transparent 60%, #ffff66 60%);
	color:#000000;
	font-weight:bold;
}

@media screen and (min-width:800px) and (max-width:1000px) {

}