@charset "UTF-8";

/*============================================================================================
      General
=============================================================================================*/
/*    - Reset - input, textarea
=====================================================*/
input[type='text'],
select,
textarea{
	color: inherit;
	width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 11px 12px;
}
input[type="text"],
select{
  border-radius: 4px;
  font-size: inheirt;
  font-family: inherit;
  box-sizing: border-box;
  background: #FAFAFA;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 9px 12px;
  border: 1px solid #999;
}
input[type='submit'],
input[type='button'],
button{
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  outline: none;
}
input,
select{
	line-height: 1;
}
select{
	color: inherit;
	min-height: 46px;
}
textarea{
  resize: vertical;
	height: 220px;
}
input[type='submit'],
input[type='button'],
input[type='radio'],
input[type='checkbox'],
label,
button,
select{
  cursor: pointer;
}
select::-ms-expand{
  display: none;
}
::-webkit-input-placeholder{ /* WebKit, Blink, Edge */
  color: #999;
}
:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color: #999;
}
::placeholder{ /* Others */
  color: #999;
}

@media (max-width: 896px){
	/* iOSでタップ時のズームを防ぐ */
	input,
	button,
	select,
	textarea{
		font-size: 1.6rem;
	}
}



/*    Hamburger Menu
=====================================================*/
/*-- Initial --*/
.g_hamb{
	display: none;
}
@media (max-width: 896px){
	.g_hamb{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-align: center!important;
		align-items: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important;
	}
	.g_hamb_inr{
		width: 18px;
		height: 15px;
		position: relative;
	}
	.g_hamb_inr div{
		width: inherit;
		height: 1px;
		display: block;
		background-color: #666;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		-webkit-transition: transform .2s, top .2s, bottom .2s;
		transition: transform .2s, top .2s, bottom .2s;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.g_hamb .g_hamb_inr_top{
		bottom: auto;
	}
	.g_hamb .g_hamb_inr_btm{
		top: auto;
	}

	/*-- Opened --*/
	.g_hamb.js_open .g_hamb_inr_mdl{
		opacity: 0;
	}
	.g_hamb.js_open .g_hamb_inr_top{
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 0;
	}
	.g_hamb.js_open .g_hamb_inr_btm{
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 0;
	}
}
@media (max-width: 576px){
	.g_hamb_inr{
		width: 4.8vw;
		height: 3.84vw;
	}
}


/*    Slider
=====================================================*/
/*-- Default Custom --*/
.g_slider.slick-slider{
	margin: auto;
	width: 100%;
	height: auto;
	min-height: auto;
	padding-bottom: 30px;
}
.g_slider.slick-slider .slick-list,
.g_slider.slick-slider .slick-track{
	height: inherit;
}
.g_slider.slick-dotted.slick-slider{
  margin-bottom: 0;
}
.g_slider .slick-dots{
	bottom: 0;
	right: 0;
	left: 0;
	padding-top: 0;
	height: auto;
	text-align: center;
}
.g_slider .slick-dots li{
  width: 10px;
  height: 10px;
  margin: 0 3px;
	overflow: visible;
}
.g_slider .slick-dots li button{
	overflow: visible;
}
.g_slider .slick-dots li button::before{
	background-color: #eee;
	border-radius: 50%;
}
.g_slider .slick-dots li.slick-active button::before{
	background-color: #999;
  color: black;
}

.g_slider .slick-prev,
.g_slider .slick-next{
	top: 0;
	width: 40px;
  height: 40px;
}
.g_slider .slick-prev:before{
	background-image: url(../img/slider/ic_prev1.png);
}
.g_slider .slick-next:before{
	background-image: url(../img/slider/ic_next1.png);
}

.g_slider .slick-prev{
  left: 0;
}
.g_slider .slick-next{
	right: 0;
}
[dir='rtl'] .g_slider .slick-prev{
	right: 0;
}
[dir='rtl'] .g_slider .slick-next{
  left: 0;
}

/*-- Original --*/
.g_slider_itm.slick-slide{
	width: 100%;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.g_slider_itm.slick-slide img{
	width: 100%;
}
.g_slider_itm[data-slick-index="-2"]{}
.g_slider_itm[data-slick-index="-1"]{}
.g_slider_itm[data-slick-index="0"]{}
.g_slider_itm[data-slick-index="1"]{}
.g_slider_itm[data-slick-index="2"]{}
.g_slider_itm[data-slick-index="3"]{}
.g_slider_itm[data-slick-index="4"]{}
@media (max-width:896px){}
@media (max-width: 576px){}

/*    Section
=====================================================*/
.g_sec{
  padding-top: 60px;
}
.g_sec_bt{
  padding-top: 60px;
  margin-top: 60px;
  border-top: 2px solid #DDD;
}
@media (max-width: 576px){
  .g_pgHd__x + .g_sec{
    padding-top: 30px;
  }
}


/*    Heading
=====================================================*/
.g_pgHd{
	padding: 60px 0;
	/* background-color: var(--color-reverse); */
}
.g_pgHd_main{
  font-size: 3rem;
  font-weight: bold;
	text-align: inherit;
  line-height: 1.4;
}
.g_pgHd_sub{
	text-align: inherit;
	display: inline-block;
	line-height: 1.5;
}

/* 縦並び */
.g_pgHd__y{
	text-align: center;
}
.g_pgHd__y .g_pgHd_sub{
	margin-top: 1.5em;
}

/* 横並び */
.g_pgHd__x{
  align-items: baseline;
}
.g_pgHd__x .g_pgHd_main{
	margin-right: 20px;
}

@media (max-width: 896px){
  .g_pgHd_main{
    font-size: 2.8rem;
  }
}
@media (max-width: 576px){
	.g_pgHd{
		padding: 16vw 0;
  }
}


/*    Text - basic -
=====================================================*/
.g_clr_bl{
  color: #00A0E9;
}
.g_clr_pi{
  color: #F8AAAA;
}
.g_bold{
  font-weight: bold;
}
.g_normal{
  font-weight: normal;
}

.g_fz10{
  font-size: 1rem;
}
.g_fz11{
  font-size: 1.1rem;
}
.g_fz12{
  font-size: 1.2rem;
}
.g_fz13{
  font-size: 1.3rem;
}
.g_fz14{
  font-size: 1.4rem;
}
.g_fz15{
  font-size: 1.5rem;
}
.g_fz16{
  font-size: 1.6rem;
}
.g_fz18{
  font-size: 1.8rem;
}
.g_fz20{
  font-size: 2rem;
}
.g_fz22{
  font-size: 2.2rem;
}
.g_fz24{
  font-size: 2.4rem;
}
.g_fz26{
  font-size: 2.6rem;
}
.g_fz28{
  font-size: 2.8rem;
}
.g_fz30{
  font-size: 3rem;
}
@media (max-width: 1040px){
  .g_fz10_lg{
    font-size: 1rem;
  }
  .g_fz11_lg{
    font-size: 1.1rem;
  }
  .g_fz12_lg{
    font-size: 1.2rem;
  }
  .g_fz13_lg{
    font-size: 1.3rem;
  }
  .g_fz14_lg{
    font-size: 1.4rem;
  }
  .g_fz15_lg{
    font-size: 1.5rem;
  }
  .g_fz16_lg{
    font-size: 1.6rem;
  }
	.g_fz18_lg{
    font-size: 1.8rem;
  }
  .g_fz20_lg{
    font-size: 2rem;
  }
  .g_fz22_lg{
    font-size: 2.2rem;
  }
  .g_fz24_lg{
    font-size: 2.4rem;
  }
  .g_fz26_lg{
    font-size: 2.6rem;
  }
  .g_fz28_lg{
    font-size: 2.8rem;
  }
	.g_fz30_lg{
		font-size: 3rem;
	}
}
@media (max-width: 896px){
  .g_fz10_md{
    font-size: 1rem;
  }
  .g_fz11_md{
    font-size: 1.1rem;
  }
  .g_fz12_md{
    font-size: 1.2rem;
  }
  .g_fz13_md{
    font-size: 1.3rem;
  }
  .g_fz14_md{
    font-size: 1.4rem;
  }
  .g_fz15_md{
    font-size: 1.5rem;
  }
  .g_fz16_md{
    font-size: 1.6rem;
  }
	.g_fz18_md{
    font-size: 1.8rem;
  }
  .g_fz20_md{
    font-size: 2rem;
  }
  .g_fz22_md{
    font-size: 2.2rem;
  }
  .g_fz24_md{
    font-size: 2.4rem;
  }
  .g_fz26_md{
    font-size: 2.6rem;
  }
  .g_fz28_md{
    font-size: 2.8rem;
  }
	.g_fz30_md{
		font-size: 3rem;
	}
}
@media (max-width: 576px){
  .g_fz10_sm{
    font-size: 1rem;
  }
  .g_fz11_sm{
    font-size: 1.1rem;
  }
  .g_fz12_sm{
    font-size: 1.2rem;
  }
  .g_fz13_sm{
    font-size: 1.3rem;
  }
  .g_fz14_sm{
    font-size: 1.4rem;
  }
  .g_fz15_sm{
    font-size: 1.5rem;
  }
  .g_fz16_sm{
    font-size: 1.6rem;
  }
	.g_fz18_sm{
    font-size: 1.8rem;
  }
  .g_fz20_sm{
    font-size: 2rem;
  }
  .g_fz22_sm{
    font-size: 2.2rem;
  }
  .g_fz24_sm{
    font-size: 2.4rem;
  }
  .g_fz26_sm{
    font-size: 2.6rem;
  }
  .g_fz28_sm{
    font-size: 2.8rem;
  }
	.g_fz30_sm{
		font-size: 3rem;
	}
}

/*    Button - basic -
=====================================================*/
/*    ボタン
----------------------------------------*/
.g_btn{
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  color: #fff;
  background-color: #00A0E9;
  /* border: 2px solid #00A0E9; */
  width: 100%;
  max-width: 300px;
  padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
  border-radius: 4px;
}

/* アンカー */
.g_anchor{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.g_anchor_itm{
  color: #00A0E9;
  font-size: 1.3rem;
  width: 100%;
  padding: 7px 30px 7px 15px;
  border: 1px solid #00A0E9;
  background-color: #fff;
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
	border-radius: 4px;
}
.g_anchor_itm::before{
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-left: 1px solid #00A0E9;
  border-bottom: 1px solid #00A0E9;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: linear .2s;
  transition: linear .2s;
  transform-origin: center;
}
.g_anchor_itm:hover{
  color: #fff;
  background-color: #00A0E9;
  opacity: 1;
}
.g_anchor_itm:hover::before{
  border-color: #fff;
}

@media (max-width: 896px){
  .g_anchor{
    grid-template-columns: 1fr 1fr;
  }
}

/*    link - Text
=====================================================*/
/* underline */
.g_link{
	color: #00A0E9;
	text-decoration: underline;
}
.g_link:hover{

}
/* hover transparent */
.g_link_transp{
	transition: opacity .2s;
}
.g_link_transp:hover{
	opacity: .6;
}

/* デフォルトhoverリセット */
.g_link_reset a:hover{
	opacity: 1;
}

/*    Decoration
=====================================================*/
/* 外部リンクアイコン */
.g_tab{
  position: relative;
  display: inline;
	width: 1em;
	height: 1em;
	padding-right: 1.5em;
}
.g_tab::before,
.g_tab::after{
	content: "";
	margin: auto;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	background-color: #fff;
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	border: 1px solid #666;
	right: 0;
	bottom: 0.325em;
	display: inline;
	pointer-events: none;
	-webkit-transition: border .2s;
	transition: border .2s;
	margin: 0;
}
.g_tab::before{
	right: 0.2em;
	bottom: 0.125em;
}
/* .g_tab:hover::before,
.g_tab:hover::after{
  border-color: #8a8a8a;
} */

.g_tab_txt.g_tab::before,
.g_tab_txt.g_tab::after{
	bottom: 0.45em;
}
.g_tab_txt.g_tab::before{
	bottom: 0.25em;
}

.g_bd{
	border: 1px solid #00A0E9;
	padding: 15px;
}

.g_decoHd_bb{
  border-bottom: 2px solid #00A0E9;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

.g_decoHd_bl{
	position: relative;
	padding-left: 15px;
}
.g_decoHd_bl::before{
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	display: inline-block;
	width: 4px;
	height: 18px;
	background-color: #00A0E9;
}

@media (max-width: 576px){
	.g_decoHd_bl{
		padding-left: 4vw;
	}
	.g_decoHd_bl::before{
		top: 1.8vw;
		width: 1vw;
		height: 4.8vw;
	}
}

/*    Data ／ Label
=====================================================*/
.g_data{
	color: #777;
	font-size: 1.4rem;
	display: block;
}

.g_label{
	color: #666;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1;
	-webkit-transition: background .2s;
	transition: background .2s;
	border: 1px solid #DDD;
	border-radius: 1000px;
	background-color: #fff;
}
.g_label_lst .g_label{
	margin: 4px 8px 4px 0;
}
.g_label.active,
.g_label:hover{
	background-color: #DDD;
	opacity: 1;
}
.g_label a{
	width: 100%;
	height: 100%;
	padding: 5px 15px;
	display: block;
}
.g_label a:hover{
	opacity: 1;
}




/*    Information list - normal
=====================================================*/
.g_info_itm{
	padding: 15px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.g_info_itm_li{
	border-top: 1px solid #ddd;
}
.g_info_itm_li:last-child{
	border-bottom: 1px solid #ddd;
}
.g_info_itm_cap{
	width: auto;
	padding: 0;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-align: center;
	align-items: center;
	vertical-align: middle;
	line-height: 20px;
}
.g_info_itm_cap span{
	-webkit-transition: color .2s;
	transition: color .2s;
}
.g_info_itm_txt{
	padding: 0;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.g_info_itm:hover .g_info_itm_txt,
.g_info_itm:hover .g_info_itm_cap span{
	color: #bbb;
}
.g_info_itm:hover .g_info_itm_label{
	border-color: #bbb;
}


@media (max-width: 896px){
	.g_info_itm{
		padding: 20px 0;
	}
}
@media (max-width: 576px){
	.g_info_itm{
		padding: 5.3vw 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.g_info_itm_cap{
		line-height: 5.8vw;
	}
	.g_info_itm_label{
		min-width: 30.8vw;
		height: 5.8vw;
		margin-right: 5.3vw;
		margin-left: 5.3vw;
		line-height: 5.8vw;
	}
	.g_info_itm_txt{
		margin-top: 2.6vw;
	}
}


/*    Information list - thumbnail
=====================================================*/
.g_info_thum{
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4,1fr);
}
.g_info_itm_thum{
	display: flex;
	flex-direction: column;
}
.g_info_itm_thum_img{
	width: 100%;
	height: 0;
	padding-top: calc(100% * 0.59);
	overflow: hidden;
	position: relative;
	margin-bottom: 5px;
}
.g_info_itm_thum_img img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	object-fit: cover;
	-webkit-transition: transform .2s;
	transition: transform .2s;
}
/* .g_info_itm_thum_img:hover img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
			transform: scale(1.1);
} */
.g_info_itm_thum_txt{}

.g_info_itm_thum .g_label_lst{
	margin-top: auto;
}

@media (max-width: 896px){
	.g_info_thum{
		grid-template-columns: repeat(2,1fr);
	}
}
@media (max-width: 576px){
	.g_info_thum{
		gap: 12px;
	}
}


/* サイドバー用 */
.g_info_thum__side{
	width: 100%;
	display: block;
}
.g_info_thum__side .g_info_itm_thum{
	border-bottom: 1px solid #DDD;
	padding: 12px 0;
	display: block;
}
.g_info_thum__side a{
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 2fr;
}
.g_info_thum__side .g_info_itm_thum_img{
	grid-column-start: 1;
	grid-column-end: 2;
	margin-bottom: 0;
}
/* .g_info_thum__side a:hover .g_info_itm_thum_img img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
			transform: scale(1.2);
} */
.g_info_thum__side .g_info_itm_thum_txt{
	grid-column-start: 2;
	grid-column-end: 3;
}
/* .g_info_thum__side:hover .g_info_itm_thum_txt{
	opacity: .6;
} */
@media (max-width: 1040px){
	.g_info_thum__side{
		display: grid;
		gap: 15px;
		grid-template-columns: repeat(2,1fr);
	}
}
@media (max-width: 576px){
	.g_info_thum__side{
		grid-template-columns: repeat(1,1fr);
	}
}


/*    Category list
=====================================================*/
.g_catLst{
	width: 100%;
	max-width: 230px;
	height: 38px;
	position: relative;
}
.g_catLst::before{
	content: "";
	width: 38px;
	height: 38px;
	background-color: #00A0E9;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.g_catLst::after{
	content: "";
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 0;
	bottom: 4px;
	right: 14px;
	margin: auto;
	pointer-events: none;
}
.g_catLst_select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	background-color: #FAFAFA;
	display: block;
	width: inherit;
	height: 100%;
	min-height: 100%;
	color: inherit;
	font-family: inherit;
	border-radius: 4px;
}
.g_catLst_select:focus{
	outline: none;
}

/*     Search Box
=====================================================*/
.g_srchBox_bd{
	width: 100%;
	height: 38px;
}
.g_srchBox_bd form{
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.g_srchBox_input{
	width: calc(100% - 38px);
	height: 100%;
}
.g_srchBox_input input{
	width: 100%;
	height: 100%;
	border-right: none;
	width: 100%;
	padding: 11px 12px;
	line-height: 1;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.g_srchBox_btn{
	width: 38px;
	height: 100%;
}
.g_srchBox_btn::before{
	width: 16px;
	height: 16px;
	background-image: url(../img/common/ico_search_wh.svg);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.g_srchBox_btn input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	right: 0;
	bottom: 1px;
	font-size: 0;
	border: none;
	display: block;
	background-color: #00A0E9;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}


/*    Pager list
=====================================================*/
.g_pager_li{
	width: 40px;
	height: 40px;
	background-color: #00A0E9;
	border: 1px solid #00A0E9;
	margin-left: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	-webkit-transition: stroke .2s, background .2s;
	transition: color .2s, background .2s;
	border-radius: 4px;
}
.g_pager_li a{
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.g_pager_li span{
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.g_pager_li.current{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	color: #00A0E9;
}
.g_pager_li.current a{
	pointer-events: none;
}
.g_pager_li.prev{
	margin-left: 0;
}
.g_pager_li:hover{
	background-color: #fff;
	color: #00A0E9;
}
.g_pager_dots{
	margin-left: 8px;
	font-size: 1.6rem;
}


/*    Pager Single
=====================================================*/
.g_single_pager{
  
}
.g_single_pager_prev,
.g_single_pager_back,
.g_single_pager_next{
  margin: 0 1%;
  max-width: 300px;
  width: 30%;
  position: relative;
}
.g_single_pager i{
  font-size: 1.2rem;
  position: absolute;
}
.g_single_pager_prev i{
  left: 14px;
}
.g_single_pager_next i{
  right: 14px;
}
@media (max-width: 576px){
  .g_single_pager{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
	.g_single_pager .g_btn{
    font-size: 1.2rem;
  }
  .g_single_pager_prev,
  .g_single_pager_back,
  .g_single_pager_next{
    margin: 0;
    width: 100%;
    display: flex;
  }
  .g_single_pager_prev{
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .g_single_pager_back{
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .g_single_pager_next{
    grid-column-start: 3;
    grid-column-end: 4;
  }
  .g_single_pager_prev i{
    left: 2.5vw;
  }
  .g_single_pager_next i{
    right: 2.5vw;
  }
}

/*    List number
=====================================================*/
.g_incr{
	counter-reset: item;
	padding-left: 2em;
}
.g_incr_itm{
	font-size: inherit;
	list-style-type: none;
	position: relative;
}
.g_incr_itm::before{
	font-size: inherit;
  line-height: inherit;
	content: counter(item);
	counter-increment: item;
	top: 0;
	left: -2em;
	width: 2em;
	position: absolute;
	display: inline-block;
	margin: auto;
}


/*    Entry
=====================================================*/
/*    Entry
=====================================================*/
.g_entry_article{
	width: 100%;
}
.g_entry_article h1{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 0.5em;
}
.g_entry_article h2{
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.68;
	margin-bottom: 0.5em;
}

.g_entry_article h3{
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.g_entry_article h4{
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.g_entry_article h5{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.g_entry_article h6{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}

@media (max-width: 896px){
	.g_entry_article h1{
		font-size: 2.2rem;
	}
	.g_entry_article h2{
		font-size: 2rem;
	}
	.g_entry_article h3{
		font-size: 1.9rem;
	}
	.g_entry_article h4{
		font-size: 1.8rem;
	}
	.g_entry_article h5{
		font-size: 1.7rem;
	}
	.g_entry_article h6{
		font-size: 1.6rem;
	}
}

.g_entry_article > ul,
.g_entry_article > ul ul {
	padding-left: 1.3em;
	margin-left: 1.3em;
	list-style-type: disc;
}
.g_entry_article > ol,
.g_entry_article > ol ol{
	padding-left: 1em;
	margin-left: 1em;
	list-style-type: decimal;
}
.g_entry_article li{
	margin-bottom: initial;
	font-size: inherit;
}
.g_entry_article p{
	font-size: 1.5rem;
	margin-bottom: 1em;
}
.g_entry_article p.has-small-font-size{
	font-size: calc(1.5rem * 0.8);
}
.g_entry_article p.has-medium-font-size{
	font-size: calc(1.5rem * 1.25);
}
.g_entry_article p.has-large-font-size{
	font-size: calc(1.5rem * 2);
}
.g_entry_article p.has-huge-font-size{
	font-size: calc(1.5rem * 3);
}
.g_entry_article p.has-drop-cap:not(:focus):first-letter{
	font-size: 5em;
	margin: 0;
}
.g_entry_article .wp-block-image .alignright {
	float: none;
	margin: 0 0 0 auto;
}
.g_entry_article em{
	font-style: italic;
	display: inline;
}
.g_entry_article figcaption{
	/* text-align: center; */
	margin: auto;
	font-size: 1.2rem;
}
.g_entry_article code{
	padding: 2px;
	border-radius: 2px;
	color: #23282d;
	background: #f3f4f5;
}
.g_entry_article strong{
	font-weight: bold;
}
.g_entry_article div{
	font-size: 1.5rem;
}
.g_entry_article img{
	max-width: 100%;
	height: auto;
}
.g_entry_article p > a{
	color: #00A0E9;
	text-decoration: underline;
}
.g_entry_article p > a:hover{
	text-decoration: none;
}
.g_entry_article .aligncenter .wp-block-embed__wrapper {
	text-align: center;
}
.g_entry_article .wp-block-button {
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	margin-bottom: 0.5em!important;
}
.g_entry_article .wp-block-button:hover {
	opacity: .6;
}
.g_entry_article .is-style-outline .wp-block-button__link,
.g_entry_article .wp-block-button__link.is-style-outline {
	padding: 10px 24px;
}
.g_entry_article .wp-block-table {
	width: 100%!important;
	border: 1px solid #ddd;
}
.g_entry_article .wp-block-table tr {
	border-top: 1px solid #ddd;
}
.g_entry_article .wp-block-table tr:last-child {
	border-bottom: none;
}
.g_entry_article .wp-block-table tr th,
.g_entry_article .wp-block-table tr td {
	padding: 10px;
	vertical-align: middle;
}
.g_entry_article .wp-block-table tr th {
	color: #fff;
	font-weight: bold;
	background: #00A0E9;
}
.g_entry_article .wp-block-table thead th {
	text-align: center;
}
.g_entry_article .wp-block-table tr th + th{
	border-left: 1px solid #ddd;
}
.g_entry_article .wp-block-table tr td + td {
	border-left: 1px solid #ddd;
}
.g_entry_article .wp-block-table tfoot {
	background-color: #FDF2DF;
}
.g_entry_article .wp-block-table thead tr:first-of-type,
.g_entry_article .wp-block-table tbody tr:first-of-type{
	border-top: none;
}
.g_entry_article iframe{
	max-width: 100%;
}
.g_entry_article blockquote{
	padding-left: 10px;
	border-left: 3px solid #ddd;
}
.g_entry_article blockquote > p{
	margin-bottom: 0.4em;
}
.g_entry_article blockquote > cite{
	color: #797979;
}

@media all and (-ms-high-contrast: none) {
	.g_entry_article .blocks-gallery-grid, .wp-block-gallery {
		-ms-flex: 0 1 auto;
	}

	.g_entry_article .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
	.g_entry_article .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
	.g_entry_article .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
	.g_entry_article .blocks-gallery-grid.is-cropped .blocks-gallery-item img,
	.g_entry_article .wp-block-gallery.is-cropped .blocks-gallery-image a,
	.g_entry_article .wp-block-gallery.is-cropped .blocks-gallery-image img,
	.g_entry_article .wp-block-gallery.is-cropped .blocks-gallery-item a,
	.g_entry_article .wp-block-gallery.is-cropped .blocks-gallery-item img {
		height: 100%;
		font-family: 'object-fit: cover;';
	}
}


/*    Pagetop（フッター固定）
=====================================================*/
.g_pagetop{
	width: 45px;
	height: 45px;
	position: absolute;
	top: -45px;
	right: 26px;
	display: block;
}
.g_pagetop a{
	display: block;
}
.g_pagetop a:hover rect{
	fill: #00A0E9;
	transition: fill .2s;
}

@media (max-width: 576px){
	.g_pagetop{
		right: 2.7%;
	}
}

/*    Breadcrumb
=====================================================*/
.breadcrumb-wrap{
  margin-bottom: 40px;
}
.breadcrumb{
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb-item{
	position: relative;
	font-size: 1rem;
	line-height: 1.5;
}
.breadcrumb-item + .breadcrumb-item{
	padding-left: 20px;
}
.breadcrumb-item + .breadcrumb-item::before{
	content: "";
	position: absolute;
	margin: auto;
	width: 4px;
	height: 4px;
	top: 0.5em;
	left: 0.5em;
	border-top: 1px solid #00A0E9;
	border-right: 1px solid #00A0E9;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.breadcrumb-item a:hover{
	color: #00A0E9;
}
@media (max-width: 896px){
	.breadcrumb{
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
    line-height: 1.2;
	}
	.breadcrumb-item{
		display: inline-block;
		white-space: nowrap;
	}
}


/*    GDPR
=====================================================*/
.g_gdpr{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 30px 0 30px;
	box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
	position: fixed;
	left: 0;
	bottom: 0;
	display: none;
	z-index: 500;
}
.g_gdpr_wrp{
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
  align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.g_gdpr_txt{
	font-size: 1.4rem;
	line-height: 1.6;
	width: 80%;
	color: #666;
}
.g_gdpr_txt a{
	font-weight: bold;
	text-decoration: underline;
}
.g_gdpr_txt a:hover{
	color: #222;
	text-decoration: none;
	-webkit-transition: color .3s;
	transition: color .3s;
}
.g_gdpr_btn{
	font-size: 1.4rem;
	font-weight: 500;
	width: 255px;
	height: 50px;
	color: #fff;
	border: 2px solid #666;
	background-color: #666;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: background .3s;
	transition: background .3s;
	cursor: pointer;
	border-radius: 5px;
}
.g_gdpr_btn:hover{
	color: #666;
	background-color: #fff;
}

@media (max-width: 1040px){
	.g_gdpr{
		padding-left: 0;
	}
	.g_gdpr_wrp{
		width: 80%;
	}
}
@media (max-width: 896px){
	.g_gdpr_wrp{
		display: block;
	}
	.g_gdpr_txt{
		width: 100%;
	}
	.g_gdpr_btn{
		width: 130px;
		margin: 15px 0 0 auto;
	}
}
@media (max-width: 576px){
	.g_gdpr{
		padding: 3.5vw 0;
		/* bottom: 8vh; */
	}
	.g_gdpr_wrp{
		width: 86vw;
	}
	.g_gdpr_btn{
		width: 30vw;
		height: 9vw;
		margin: 4vw 0 0 auto;
	}
}

/*    Loading
=====================================================*/
#loading{
  width: 100vw;
  height: 100vh;
	background-color: #fff;
	position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
#loading.page_loading{
	background-color: #fff;
}
.loader{
	border-radius: 50%;
  width: 5em;
  height: 5em;
  margin: auto;
  font-size: 10px;
  border-top: 5px solid rgba(22, 22, 22, 0.2);
  border-right: 5px solid rgba(22, 22, 22, 0.2);
  border-bottom: 5px solid rgba(22, 22, 22, 0.2);
	border-left: 5px solid #666;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8{
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8{
  0%{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html.js_notmove{
	overflow: hidden;
}

/*    FadeIn
=====================================================*/
.js_fadeIn{
	position: relative;
	opacity: 0;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	-webkit-transition: transform .7s, opacity .7s;
	-o-transition: transform .7s, opacity .7s;
	transition: transform .7s, opacity .7s;
	z-index: 2;
}
.js_fadeIn.delay{
	-webkit-transition: transform .7s .2s, opacity .7s .2s;
	-o-transition: transform .7s .2s, opacity .7s .2s;
	transition: transform .7s .2s, opacity .7s .2s;
}
.js_fadeIn.active{
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/*    Modal
=====================================================*/

.g_modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.g_modal_bg{
	background-color: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.g_modal_content{
	background-color: #fff;
	left: 50%;
	padding: 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
}

/*    Table Parts
=====================================================*/
.g_dl > div{
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
}
.g_dl > div:first-child{
	border-top: 1px solid #ddd;
}
.g_dl dt{
	width: 15%;
	margin-right: 5%;
}
.g_dl dd{
	width: 80%;
}

@media (max-width: 896px){
	.g_dl dt{
		width: 100%;
		margin-right: 0;
	}
	.g_dl dd{
		width: 100%;
		margin-top: 5px;
	}
}


.g_table{
	border: 1px solid #ddd;
}
.g_table tr{
	border-bottom: 1px solid #ddd;
}
.g_table tr:last-child{
	border-bottom: none;
}
.g_table tr th ,
.g_table tr td{
	padding: 15px;
}
.g_table tr th{
	width: 160px;
	background-color: #fafafa;
	border-right: 1px solid #ddd;
}

@media (max-width: 896px){
	.g_table tr th ,
	.g_table tr td{
		display: block;
	}
	.g_table tr th{
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ddd;
	}
}

/*    g_tel
=====================================================*/
.g_tel{
	pointer-events: none;
}
@media (max-width: 576px){
	.g_tel{
		pointer-events: auto;
	}
}


/*    サイドナビ
=====================================================*/
.g_aside{
	width: 220px;
}
@media (max-width: 1040px){
	.g_aside{
		width: 94.6%;
		margin: 60px auto 0;
		padding-top: 60px;
    border-top: 2px solid #DDD;
	}
}
@media (max-width: 576px){
	.g_aside .g_catLst{
		max-width: 100%;
	}
}


/*    サイドナビ
=====================================================*/
.g_catBox{
	background-color: #fff;
	padding: 20px;
}
.g_catBox_hd{
	padding-right: 30px;
}
.g_catBox_bd{
	width: calc(100% - 126px);
	padding: 12px 0 12px 30px;
}
.g_catBox_bd::before{
	width: 1px;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: #00A0E9;
}
.g_catBox_bd_pick{
	width: calc(100% - 126px);
}
.g_catBox_bd_btn{
	font-size: 1.2rem;
	cursor: pointer;
	padding-right: 12px;
	display: block;
	margin-bottom: 4px;
}
.g_catBox_bd_btn::before{
	width: 5px;
	height: 5px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 0;
	bottom: 2px;
	right: 0;
	-webkit-transition: linear .2s;
	transition: linear .2s;
}
.g_catBox_bd_btn.js_open::before{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.g_catBox_bd_catall{
	width: 100%;
	display: none;
}

@media (max-width: 896px){
	.g_catBox_bd{
		padding-top: 0;
		padding-bottom: 0;
	}
	.g_catBox_bd_pick{
		width: 100%;
	}
	.g_catBox_bd_btn{
		margin-top: 10px;
	}
}
@media (max-width: 576px){
	.g_catBox{
		padding: 15px;
	}
	.g_catBox_hd{
		padding-right: 0;
		margin-bottom: 10px;
	}
	.g_catBox_bd{
		width: 100%;
		padding: 0;
	}
	.g_catBox_bd::before{
		display: none;
	}
}