@charset "UTF-8";

/*============================================================================================
      General
=============================================================================================*/
/*    Fonts
=====================================================*/
.g_yugo{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.g_mPlusRounded{
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

.g_notoSans{
	font-family: YakuHanJPs, 'Noto Sans JP';
}


/*    - Reset - input, textarea
=====================================================*/
input[type='text'],
select,
textarea{
	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 #D6D6D6;
	border-radius: 0;
	background-color: #fff;
	padding: 11px 12px;
}

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: #D8D8D8;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #D8D8D8;
}
::-moz-placeholder{ /* Others */
  color: #D8D8D8;
}
::-ms-input-placeholder{ /* Others */
  color: #D8D8D8;
}
::placeholder{ /* Others */
  color: #D8D8D8;
}

@media (max-width: 896px){
	/* iOSでタップ時のズームを防ぐ */
	input,
	button,
	select,
	textarea{
		font-size: 1.6rem;
	}
}

/*    Select
=====================================================*/
.g_select{
	width: 100%;
	position: relative;
	display: inline;
	background-color: #fff;
}
.g_select::before{
  content: "";
	width: 10px;
	height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
	background-image: url(../img/common/ic_select_arrow.svg);
  position: absolute;
  pointer-events: none;
	top: 43%;
	bottom: 0;
	right: 13px;
}
.g_select select{
	padding-right: 30px;
}

@media (max-width:896px){
	.g_select::before{
		top: 45%;
	}
	.g_select select{
		line-height: 1.6;
	}
}
@media (max-width:576px){
	.g_select::before{
		top: 46%;
	}
}



/*    Hamburger Menu
=====================================================*/
/*-- Initial --*/
@media (max-width: 1200px){
	.g_hamb{
		width: 15.46vw;
		max-width: 58px;
		display: flex;
		flex-wrap: wrap;
		align-items: center!important;
		justify-content: center!important;
		cursor: pointer;
	}
	.g_hamb_inr{
		width: 18px;
		height: 15px;
		position: relative;
	}
	.g_hamb_inr div{
		width: inherit;
		height: 1px;
		display: block;
		background-color: #222;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: top .2s, bottom .2s, -webkit-transform .2s;
		transition: transform .2s, top .2s, bottom .2s;
		transition: transform .2s, top .2s, bottom .2s, -webkit-transform .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: 160px;
}
.g_sec_sm{
	padding-top: 60px;
}
.g_sec__last{
	padding: 160px 0;
}
.g_bd_t{
	border-top: 1px solid #EEE;
}
@media (max-width: 896px){
	.g_sec{
		padding-top: 100px;
	}
	.g_sec__last{
		padding: 100px 0;
	}
}
@media (max-width: 576px){
	.g_sec{
		padding-top: 26.66vw;
	}
	.g_sec__last{
		padding: 26.66vw 0;
	}
}

.g_bg{
	padding: 160px 0;
}
.g_bg__gry{
	background-color: #F8F8F8;
}
.g_box{
	padding: 40px 50px;
	background-color: #fff;
	border-radius: 20px;
}
@media (max-width: 896px){
	.g_bg{
		padding: 100px 0;
	}
	.g_box{
		padding: 30px 20px;
	}
	@media (max-width: 576px){
		.g_bg{
			padding: 26.66vw 0;
		}
	}
	.g_box{
		padding: 8vw 5.3vw;
	}

}

/*    Heading
=====================================================*/
.g_pgHd{
	padding: 70px 20px 0;
	font-weight: bold;
	text-align: center;
}
.g_pgHd_jp{
	font-size: 2.8rem;
	text-align: center;
}
.g_pgHd_en{
	line-height: 0;
	height: 13px;
	text-align: center;
	margin-bottom: 30px;
}
.g_head_en img{
	width: auto;
	max-width: initial;
	height: 100%;
}
@media (max-width: 576px){
	.g_pgHd{
		padding: 70px 5vw 0;
	}
}


.g_h2{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
}
.g_h3{
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.5;
}
.g_h4{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
}
.g_h5{
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
}
.g_h6{
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}
@media (max-width: 896px){
	.g_h2{
		font-size: 2.8rem;
		font-weight: bold;
	}
	.g_h3{
		font-size: 2.4rem;
		font-weight: bold;
	}
	.g_h4{
		font-size: 2rem;
		font-weight: bold;
	}
	.g_h5{
		font-size: 1.6rem;
		font-weight: bold;
	}
	.g_h6{
		font-size: 1.4rem;
	}
}
@media (max-width: 576px){

}

/*    Text - basic -
=====================================================*/
.g_txt{
	font-size: 1.4rem;
}
.g_cap{
	font-size: 1.3rem;
}
.g_note{
	font-size: 1.2rem;
}

.g_ltr{
	letter-spacing: 2px;
}
.g_txmb_msm{
	margin-bottom: 0.5em;
}
.g_txmb_sm{
	margin-bottom: 1em;
}
.g_txmb_md{
	margin-bottom: 1.5em;
}
.g_txmb_lg{
	margin-bottom: 2em;
}

.g_lgTtl_mb{
	margin-bottom: 70px;
}
@media (max-width: 896px){
	.g_lgTtl_mb{
		margin-bottom: 30px;
	}
}

.g_clr__gry{
	color: #797979;
}
.g_clr__rbl{
	color: #04A5BA;
}


/*    Button - basic -
=====================================================*/
.g_btn{
	width: 100%;
	max-width: 260px;
	font-size: 1.4rem;
	font-weight: bold;
	position: relative;
	display: block;
	color: #fff;
	background-color: #222;
	border: 2px solid #222;
	border-radius: 5px;
	transition: color .2s, background .2s;
	-webkit-transition: color .2s, background .2s;
}
.g_btn a{
	font-size: inherit;
	font-weight: inherit;
	width: 100%;
	height: 100%;
	padding: 16px 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.g_btn:hover{
	color: #222;
	background-color: #fff;
}

.g_btn.u_ic::after{
	width: 6px;
	height: 6px;
	top: 0;
	bottom: 0;
	right: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.g_btn.u_ic:hover::after{
	border-top: 1px solid #666;
	border-right: 1px solid #666;
}

/* ライトブルー */
.g_btn__rbl{
	background-color: #04A5BA;
	border-color: #04A5BA;
}
.g_btn__rbl:hover{
	color: #04A5BA;
}

/*アンカーリンク*/
.g_btn_anc_lst {
	font-size: 0;
	text-align: center;
}
.g_btn.g_btn__anc {
	display: inline-block;
	max-width: 160px;
}
/* .g_btn.g_btn__anc + .g_btn.g_btn__anc {
	margin-left: 10px;
} */
.g_btn.g_btn__anc a {
	padding: 0.5rem 0;
}
.g_btn.g_btn__anc::after{
	width: 0.6rem;
	height: 0.6rem;
	top: -0.3rem;
	bottom: 0;
	right: 2rem;
	border-top: 0.2rem solid #fff;
	border-right: 0.2rem solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.g_btn.g_btn__anc:hover::after{
	border-top: 0.2rem solid #04A5BA;
	border-right: 0.2rem solid #04A5BA;
}

/*戻るボタン*/
.g_btn.g_btn_back::after{
	width: 6px;
	height: 6px;
	top: 0;
	bottom: 0;
	right: auto;
	left: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.g_btn.g_btn_back:hover::after{
	border-top: 1px solid #666;
	border-right: 1px solid #666;
}

/*外部リンク付きボタン*/
.g_btn .g_tab{
	position: absolute;
	padding-right: 0;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}
.g_btn .g_tab::before,
.g_btn .g_tab::after{
	background-color: #222;
	border: 1px solid #fff;
}
.g_btn:hover .g_tab::before,
.g_btn:hover .g_tab::after{
	background-color: #fff;
	border-color: #222;
}

@media (max-width: 896px){
	.g_btn .g_tab{
		right: 2.2vw;
	}
}
@media (max-width: 576px){
	.g_btn.g_btn__anc {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 260px;
	}
	/* .g_btn.g_btn__anc + .g_btn.g_btn__anc {
		margin-left: auto;
		margin-top: 10px;
	} */

	.g_btn .g_tab{
		right: 5.3vw;
	}
}

/*    link - Text -
=====================================================*/
/* underline */
.g_link{
	color: #04A5BA;
	text-decoration: underline;
}
.g_link:hover{
	text-decoration: none;
}
.g_link .g_pdf::after{
	background-image: url(../img/common/ic_pdf_rbl.svg);
}
.g_link .g_tab::before,
.g_link .g_tab::after{
	border-color: #04A5BA;
}

/* color */
.g_link_clr{
	transition: color .2s;
}
.g_link_clr:hover{
	color: #04A5BA;
}
.g_link_clr:hover .g_tab::before,
.g_link_clr:hover .g_tab::after{
	border-color: #04A5BA;
}

/* hover transparent */
.g_link_transp{
	transition: opacity .3s;
}
.g_link_transp:hover{
	opacity: .7;
}

/* border */
.g_link_bd{
	font-weight: bold;
	transition: color .2s;
	position: relative;
	display: inline-block;
}
.g_link_bd::before,
.g_link_bd::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: 0;
	pointer-events: none;
}
.g_link_bd::before{
	background-color: #222;
}
.g_link_bd::after{
	width: 0;
	transition: width .2s;
	background-color: #04A5BA;
}
.g_link_bd:hover{
	color: #04A5BA;
}
.g_link_bd:hover::after{
	width: 100%;
}
.g_link_bd a{
	display: block;
	padding-bottom: 0.3em;
}
.g_link_bd:hover .g_tab::before,
.g_link_bd:hover .g_tab::after{
	border-color: #04A5BA;
}

/*    Decoration
=====================================================*/
.g_pdf{
	padding-right: 1em;
	line-height: inherit;
}
.g_pdf::after{
	width: 9px;
	height: 13px;
	bottom: 2px;
	right: 0;
	background-image: url(../img/common/ic_pdf.svg);
	transition: background .2s;
}
a:hover .g_pdf::after{
	background-image: url(../img/common/ic_pdf_rbl.svg);
}

@media (max-width: 576px){

}
@media (max-width: 374px){
	.u_ic.g_pdf::after {
		width: 3.2vw;
		height: 4.3vw;
		bottom: 0.5vw;
	}
}


/* 外部リンクアイコン */
.g_tab{
  position: relative;
  display: inline;
	width: 1em;
	height: 1em;
	padding-right: 1.3em;
}
.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;
	min-width: 7px;
	height: 0.5em;
	min-height: 7px;
	border: 1px solid #222;
	right: 0;
	bottom: 0.325em;
	display: inline;
	pointer-events: none;
	transition: border .2s;
	margin: 0;
}
.g_tab::before{
	right: 0.25em;
	bottom: 0.075em;
}

.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_bold{
	font-weight: bold;
}

.g_bd{
	border: 1px solid #999;
}

.g_decoHd_bb{
	position: relative;
	padding-bottom: 0.3em;
	border-bottom: 1px solid #eee;
}
.g_decoHd_bb::after{
	content: '';
	position: absolute;
	display: block;
	width: 27px;
	bottom: -1px;
	border-bottom: 1px solid #04A5BA;
	z-index: 5;
}
.g_decoHd_bl{
	position: relative;
	padding-left: 15px;
}
.g_decoHd_bl::before{
	content: '';
	font-size: inherit;
	position: absolute;
	left: 0;
	top: 0.2em;
	display: inline-block;
	width: 4px;
	height: 1em;
	background-color: #04A5BA;
}
.g_decoHd_bl__w::before{
	height: 93%;
	top: -0.5%;
}

.g_cir{
	position: relative;
	padding-left: 1em;
}
.g_cir::before{
	content: '';
	font-size: inherit;
	position: absolute;
	width: 0.8em;
	height: 0.8em;
	background-color: #04A5BA;
	border-radius: 100%;
	top: 0.38em;
	left: 0;
}

@media (max-width: 576px){
}

/*    Information list
=====================================================*/
.g_info_itm{
	padding: 15px 0;
	display: flex;
	flex: 1 0 auto;
	align-items: baseline;
	transition: all .2s;
}
.g_info_itm_li{
	border-top: 1px solid #ddd;
}
.g_info_itm_li:last-child{
	border-bottom: 1px solid #ddd;
}
/* .g_info_itm:first-child{
	border-top: none;
} */
.g_info_itm_cap{
	width: auto;
	padding: 0;
	font-size: 1.5rem;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	vertical-align: middle;
	line-height: 20px;
}
.g_info_itm_cap span{
	transition: all .2s;
}
.g_info_itm_label{
	min-width: 120px;
	height: 20px;
	padding: 0 10px;
	border: 1px solid #666;
	text-align: center;
	font-size: 1rem;
	color: #666;
	margin: 0 20px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	line-height: 20px;
	transition: all .2s;
}
.g_info_itm_label__imp{
	background-color: #fdc702;
	color: #222;
	border-color: #fdc702;
}
.g_info_itm_txt{
	padding: 0;
	transition: all .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;
}

.g_info_itm_thum .g_info_itm_cap{
	flex-wrap: wrap;
}
.g_info_itm_date{
	margin-right: 10px;
}
.g_info_itm_thum .g_info_itm_label{
	min-width: 63px;
	height: auto;
	min-height: 20px;
	margin: 0 10px 0 0;
}
.g_info_itm_thum p{
	transition: all .2s;
}
.g_info_itm_thum a:hover p,
.g_info_itm_thum a:hover .g_info_itm_cap span{
	color: #bbb;
}
.g_info_itm_thum a:hover .g_info_itm_cap .g_info_itm_label{
	border-color: #bbb;
}
.g_info_itm_thum_img{
	margin-bottom: 15px;
	overflow: hidden;
}
.g_info_itm_thum_img img{
	width: 100%;
	height: 160px;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: all .2s;
}
.g_info_itm_thum a:hover img{
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
}

.g_info_link{
	padding-right: 10px;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: right;
	transition: all .2s;
}
.g_info_link:hover{
	color: #bbb;
}
.g_info_link::after{
	width: 6px;
	height: 6px;
	top: 0;
	bottom: 0;
	right: 0;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.g_info_link:hover::after{
	border-color: #bbb;
}

@media (max-width: 896px){
	.g_info_itm{
		padding: 20px 0;
	}
}
@media (max-width: 576px){
	.g_info_itm{
		padding: 5.3vw 0;
		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;
	}

	.g_info_itm_thum .g_info_itm_label{
		min-width: 16.8vw;
	}
	.g_info_itm_thum_img{
		width: 35%;
		height: 25vw;
		margin-right: 5%;
		margin-bottom: 0;
	}
	.g_info_itm_thum_img img{
		height: 25vw;
	}
	.g_info_itm_thum_txt{
		width: 60%;
	}
}


/*    Category list
=====================================================*/
.g_catLst{
	width: 230px;
	height: 40px;
	margin-bottom: 40px;
	position: relative;
}
.g_catLst::before{
	content: "";
	width: 40px;
	height: 40px;
	background-color: #707070;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
}
.g_catLst::after{
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	pointer-events: none;
}
.g_catLst_select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ddd;
	border-radius: 0;
	background-color: #fff;
	display: block;
	width: inherit;
	height: 100%;
	padding-left: 20px;
	color: #666;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	cursor: pointer;
}
.g_catLst_select:focus{
	outline: none;
}
@media (max-width: 896px){
	.g_catLst_select{
		font-size: 16px;
	}
}
@media (max-width: 576px){
	.g_catLst{
		width: 100%;
		margin-bottom: 6.6vw;
	}
	.g_catLst_select{
		font-size: 16px;
	}
}

/*    Category Tag
=====================================================*/
.g_tag{
	color: #707070;
	font-size: 1rem;
	text-align: center;
	line-height: 1;
	padding: 6px 10px;
	display: block;
	background-color: #eee;
	border-radius: 1000px;
	margin: 0 10px 10px 0;
}
.g_tag__blu{
	color: #fff;
	background-color: #04A5BA;
}

@media (max-width: 576px){
	.g_tag_new{
		width: 100%;
		margin: 0 10px 10px 0;
	}
	.g_tag_new .g_tag{
		margin: 0;
		display: inline-block;
	}
}


/*    Pager list
=====================================================*/
.g_pager{
}
.g_pager_li{
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #ddd;
	margin-left: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	transition: color .2s, background .2s;
}
.g_pager_li a{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.g_pager_li span{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.g_pager_li.current{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: #04A5BA;
	color: #fff;
	border-color: #04A5BA;
}
.g_pager_li.current a{
	pointer-events: none;
}
.g_pager_li.prev{
	margin-left: 0;
}
.g_pager_li:hover{
	background-color: #04A5BA;
	color: #fff;
	border-color: #04A5BA;
}
.g_pager_dots{
	margin-left: 8px;
	font-size: 1.6rem;
}


/* single */
.g_single_pager{
	margin-top: 80px;
	padding: 15px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.g_single_pager_prev{
	border-right: 1px solid #ddd;
}
.g_single_pager .u_img{
	min-width: 110px;
  margin-right: 20px;
  transition: opacity .2s;
}
.g_single_pager .u_img img{
	margin: 0;
}
.g_single_pager_note{
	margin-bottom: 5px;
}
.g_single_pager p{
  transition: color .2s;
}
.g_single_pager img{
	width: 100px;
	height: 100px;
	-o-object-fit: cover;
	   object-fit: cover;
}
.g_single_pager .g_info_itm_cap{
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.g_single_pager .g_info_itm_date{
	margin-right: 10px;
}
.g_single_pager .g_info_itm_label{
	min-width: 63px;
	height: auto;
	min-height: 20px;
	margin: 0 10px 0 0;
 transition: all .2s;
}
.g_single_pager a:hover p,
.g_single_pager a:hover span{
	color: #999;
}
.g_single_pager a:hover .u_img{
  opacity: .5;
}
.g_single_pager a:hover .g_info_itm_label{
	border-color: #999;
}

@media (max-width: 576px){
	.g_single_pager{
		border-bottom: none;
	}
	.g_single_pager .g_single_pager_prev{
		border-right: none;
		margin-bottom: 15px;
	}
	.g_single_pager_prev,
	.g_single_pager_next{
		border-bottom: 1px solid #ddd;
		padding-bottom: 15px;
	}
}


/*    List dot
=====================================================*/
.g_dot{
	padding-left: 1em;
	position: relative;
}
.g_dot::before{
	content: '';
	font-size: inherit;
	width: 0.5em;
	height: 0.5em;
	border-radius: 100%;
	background-color: #222;
	top: 0.5em;
	left: 0;
	position: absolute;
}
.g_dot + .g_dot{
	margin-top: 0.5em;
}

/*    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
=====================================================*/
.g_entry_head_txt{
	font-size: 2rem;
	line-height: 1.6;
	margin-top: 15px;
}
.g_entry_article{
	width: 100%;
}
.g_entry_article h1{
	margin-bottom: 10px;
	font-size: 4rem;
	font-weight: bold;
}
.g_entry_article h2{
	margin-bottom: 15px;
	font-size: 3rem;
	font-weight: bold;
}
.g_entry_article h3{
	margin-bottom: 20px;
	font-size: 2.6rem;
	font-weight: bold;
}
.g_entry_article h4{
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: bold;
}
.g_entry_article h5{
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: bold;
}
.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;
	min-height: 1em;
	/* 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.4rem;
}
.g_entry_article code{
	padding: 2px;
	border-radius: 2px;
	color: #23282d;
	background-color: #f3f4f5;
}
.g_entry_article em,
.g_entry_article strong{
	display: inline;
}
.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{
	text-decoration: underline;
}
.g_entry_article p > a:hover{
	text-decoration: none;
}
.g_entry_article .wp-block-button{
	transition: opacity 0.2s;
}
.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%;
	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-color: #ababab;
}
.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: #eee;
}
.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 .aligncenter .wp-block-embed__wrapper{
	text-align: center;
}

@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{
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	bottom: 40px;
	right: 6.64vw;
	transition: opacity 0.2s, visibility 0s, ease 0.2s;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
	border: 2px solid #222;
	background-color: #fff;
}
.g_pagetop:hover{
	background-color: #eee;
}
.g_pagetop a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.g_pagetop img{
	width: 12px;
	height: 13px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.g_pagetop.js_show{
	opacity: 1;
	visibility: visible;
}
.g_pagetop.js_stc{
	position: absolute;
	top: -25px;
}

@media (max-width: 896px){
	.g_pagetop{
		right: 5vw;
		bottom: 20px;
	}
}

/*    Breadcrumb
=====================================================*/
.g_breadcrumb_lst{
	padding: 10px 0;
	margin-top: 30px;
}
.g_breadcrumb_lst_line{
	border-bottom: 1px solid #eee;
}
.g_breadcrumb_lst_li{
	position: relative;
	font-size: 1rem;
	line-height: 1.5;
}
.g_breadcrumb_lst_li + .g_breadcrumb_lst_li{
	padding-left: 20px;
}
.g_breadcrumb_lst_li + .g_breadcrumb_lst_li::before{
	content: "";
	position: absolute;
	margin: auto;
	width: 3px;
	height: 3px;
	top: 0.6em;
	left: 0.75em;
	border-top: 1px solid #222;
	border-right: 1px solid #222;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.g_breadcrumb_lst_li a{
	transition: color .2s;
}
.g_breadcrumb_lst_li a:hover{
	color: #04A5BA;
}
@media (max-width: 896px){
	.g_breadcrumb_lst{
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		margin-top: 30px;
	}
	.g_breadcrumb_lst_li{
		display: inline-block;
		white-space: nowrap;
	}
}
@media (max-width: 576px){}


/*    404
=====================================================*/
.g_404_ttl{
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1;
}
.g_404_txt{
	padding: 30px 0;
	font-size: 1.6rem;
	line-height: 2;
}
.g_404_btn{
	position: relative;
	display: block;
	width: 350px;
	margin: auto;
	color: #fff;
	background-color: #666;
	border: 2px solid #666;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 5px;
	transition: background .2s, color .2s;
	-webkit-transition: background .2s, color .2s;
}
.g_404_btn a{
	width: 100%;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.g_404_btn::after{
	content: "";
	position: absolute;
	margin: auto;
	width: 6px;
	height: 6px;
	top: 0;
	bottom: 0;
	right: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.g_404_btn:hover{
	background-color: #fff;
	color: #666;
}
.g_404_btn:hover::after{
	border-top: 1px solid #666;
	border-right: 1px solid #666;
}
@media (max-width: 896px){}
@media (max-width: 576px){}

/*    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: flex;
 align-items: center;
	justify-content: space-between;
}
.g_gdpr_txt{
	font-size: 1.4rem;
	line-height: 1.6;
	width: 80%;
}
.g_gdpr_btn{
	font-size: 1.4rem;
	font-weight: 500;
	width: 255px;
	height: 50px;
	color: #fff;
	border: 2px solid #222;
	background-color: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background .3s;
	cursor: pointer;
	border-radius: 5px;
}
.g_gdpr_btn:hover{
	color: #222;
	background-color: #fff;
}

@media (max-width: 1024px){
	.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 svg{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 400px;
}
body.js_notmove{
	overflow: hidden;
}
@media (max-width: 576px){
	.loader svg{
		max-width: 90vw;
	}
}



/*    FadeIn
=====================================================*/
.js_fadeIn {
	position: relative;
	opacity: 0;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	transition: opacity .7s, -webkit-transform .7s;
	transition: transform .7s, opacity .7s;
	transition: transform .7s, opacity .7s, -webkit-transform .7s;
	z-index: 2;
}
.js_fadeIn.delay {
	transition: opacity .7s .2s, -webkit-transform .7s .2s;
	transition: transform .7s .2s, opacity .7s .2s;
	transition: transform .7s .2s, opacity .7s .2s, -webkit-transform .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%;
	-webkit-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	width: 60%;
}

/*    Table Parts
=====================================================*/
.g_dl > div{
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}
.g_dl > div:first-child{
	border-top: 1px solid #eee;
}
.g_dl dt{
	width: 160px;
	margin-right: 30px;
}
.g_dl dd{
	width: calc(100% - 190px);
}
.g_dl_sm dt{
	width: 80px;
	margin-right: 15px;
}
.g_dl_sm dd{
	width: calc(100% - 95px);
}

@media (max-width: 896px){
	.g_dl > div{
		padding: 25px 0;
	}
	.g_dl dt{
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.5em;
	}
	.g_dl dd{
		width: 100%;
	}
}


.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;
	}
}


/* tagle - 求人 */
.g_about_tbl{
	border-bottom: 1px solid #eee;
}
.g_about_tbl tr{
	border-top: 1px solid #eee;
}
.g_about_tbl th{
	background-color: #F8F8F8;
	width: 235px;
	padding: 20px;
	font-weight: bold;
}
.g_about_tbl td{
	padding: 20px;
	vertical-align: middle;
}
.g_about_tbl_ap_ttl{
}
.g_about_tbl_ap_txt{
}

@media (max-width: 896px){
	.g_about_tbl th{
		display: block;
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
		padding-left: 0;
		border-bottom: 1px solid #eee;
		padding: 15px 10px;
	}
	.g_about_tbl td{
		display: block;
		width: 100%;
		font-size: 1.4rem;
		padding: 18px 0;
	}
}




/*    g_tel
=====================================================*/
.g_tel{
	pointer-events: none;
}
@media (max-width: 896px){
	.g_tel{
		pointer-events: auto;
	}
}


/*    Member Registration
=====================================================*/
.g_reg_consulArea{
	width: 523px;
}
.g_reg_btnArea{
	width: 335px;
	max-width: 335px;
}
.g_reg_em{
	display: inline-block;
}
.g_reg_em::before,
.g_reg_em::after{
	width: 2px;
	height: 10px;
	background-color: #222;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	top: 0;
	bottom: 0;
	left: -10px;
	margin: auto;
}
.g_reg_em::after{
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	right: -10px;
	left: auto;
}
.g_reg_btn{
	font-size: 1.8rem;
	letter-spacing: 1px;
	max-width: 100%;
}
.g_reg_btn a{
	padding: 25px 10px;
}
@media (max-width: 1040px){
	.g_reg_consulArea{
		width: 100%;
		margin-bottom: 40px;
	}
}
@media (max-width: 896px){

}
@media (max-width: 576px){
	.g_reg_btnArea{
		width: 100%;
		max-width: 100%;
	}
}

/*   List
=====================================================*/
.g_lst{
}
.g_lst li{
	font-size: inherit;
	position: relative;
	padding-left: 1em;
}
.g_lst li + li{
	margin-top: 0.3em;
}
.g_lst li::before{
	content: "・";
	position: absolute;
	width: 1em;
	height: 1em;
	line-height: inherit;
	top: 0;
	left: 0;
}


/*    Job List
=====================================================*/
.g_job_lst_itm{
	border-bottom: 1px solid #eee;
}
.g_job_lst_itm:first-of-type{
	border-top: 1px solid #eee;
}
.g_job_lst_cop,
.g_job_lst_desc{
	transition: color .2s;
}
.g_job_lst_itm:hover .g_job_lst_cop,
.g_job_lst_itm:hover .g_job_lst_desc{
	color: #04A5BA;
}
.g_job_lst_itm > a{
	padding: 30px 0;
	display: block;
}

@media (max-width: 896px){
	
}
@media (max-width: 576px){
	.g_job_lst_itm > a{
		padding: 20px 0;
	}
}


/*    Youtube
=====================================================*/
.g_youtube{
	position: relative;
  width:100%;
  height:0;
  padding-top: 56.25%;
}
.g_youtube iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*    Movie
=====================================================*/
.g_movie{
	position: relative;
  width: 100%;
  height:0;
  padding-top: 56.25%;
}
.g_movie video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 576px){
	.g_movie_inr{
		width: 100%;
		max-width: 100%;
	}
}