@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;
}


/*    Hamburger Menu
=====================================================*/
/*-- Initial --*/
@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;
		-webkit-box-align: center!important;
		        align-items: center!important;
		-ms-flex-pack: center!important;
		-webkit-box-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;
		-webkit-transition: top .2s, bottom .2s, -webkit-transform .2s;
		transition: top .2s, bottom .2s, -webkit-transform .2s;
		-o-transition: transform .2s, top .2s, bottom .2s;
		transition: transform .2s, top .2s, bottom .2s;
		transition: transform .2s, top .2s, bottom .2s, -webkit-transform .2s;
		-webkit-transform: rotate(0deg);
		-ms-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);
		-ms-transform: rotate(-45deg);
		    transform: rotate(-45deg);
		bottom: 0;
	}
	.g_hamb.js_open .g_hamb_inr_btm{
		-webkit-transform: rotate(45deg);
		-ms-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: 110px;
}
.g_sec__last{
	padding: 110px 0 180px;
}
@media (max-width: 896px){
	.g_sec{
		padding-top: 50px;
	}
	.g_sec__last{
		padding: 50px 0 40px;
	}
}
@media (max-width: 576px){
	.g_sec{
		padding-top: 16vw;
	}
	.g_sec__last{
		padding: 16vw 0 26vw;
	}
}

/*    Heading
=====================================================*/
.g_h2{
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1.4;
}
.g_h3{
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
}
.g_h3_top{
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
	color:  #0068B6;
}
.g_h4{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
}
.g_h5{
	font-size: 1.6rem;
}
.g_h6{
	font-size: 1.4rem;
}

@media (max-width: 896px){
	.g_h2{
		font-size: 2.9rem;
		font-weight: bold;
	}
	.g_h3{
		font-size: 1.8rem;
		font-weight: bold;
	}
	.g_h3_top{
		font-size: 1.8rem;
		font-weight: bold;
	}
	.g_h4{
		font-size: 1.6rem;
		font-weight: bold;
	}
	.g_h5{
		font-size: 1.4rem;
	}
	.g_h6{
		font-size: 1rem;
	}
}
@media (max-width: 576px){}

/*    Text - basic -
=====================================================*/
.g_clr__gry{
	color: #666;
}
.g_clr__red{
	color: #E50211;
}
.g_clr__blu{
	color: #16568F;
}
.g_txt{
	font-size: 1.5rem;
}
.g_cap{
	font-size: 1.4rem;
}
.g_note{
	font-size: 1.2rem;
}
.g_txt + .g_txt,
.g_cap + .g_cap{
	margin-top: 1em;
}

.g_c_red {
	color: #E40013;
}

/*    Button - basic -
=====================================================*/

/*    link - Text -
=====================================================*/
/* underline */
.g_link{
	text-decoration: underline;
}
.g_link:hover{
	text-decoration: none;
}
/* hover transparent */
.g_link_transp{
	-webkit-transition: opacity .2s;
	-o-transition: opacity .2s;
	transition: opacity .2s;
}
.g_link_transp:hover{
	opacity: .7;
}

/*    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;
	-o-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_bold{
	font-weight: bold;
}

.g_bd{
	border: 1px solid #999;
}

.g_decoHd_bb{
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
.g_decoHd_bb::after{
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	bottom: -1px;
	border-bottom: 1px solid #666;
	z-index: 5;
}
.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: #666;
}

@media (max-width: 576px){
	.g_decoHd_bl{
		padding-left: 4vw;
	}
	.g_decoHd_bl::before{
		top: 1.8vw;
		width: 1vw;
		height: 4.8vw;
	}
}

/*    Information list
=====================================================*/
.g_info_itm{
	padding: 15px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1 0 auto;
	-webkit-box-flex: 1;
	        flex: 1 0 auto;
	-ms-flex-align: baseline;
	-webkit-box-align: baseline;
	        align-items: baseline;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	        flex: 0 0 auto;
	-ms-flex-align: center;
	-webkit-box-align: center;
	        align-items: center;
	vertical-align: middle;
	line-height: 20px;
}
.g_info_itm_cap span{
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-align: center;
	-webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	        justify-content: center;
	line-height: 20px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.g_info_itm_label__imp{
	background-color: #fdc702;
	color: #222;
	border-color: #fdc702;
}
.g_info_itm_txt{
	padding: 0;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	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{
	-ms-flex-wrap: wrap;
	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{
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	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;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.g_info_itm_thum a:hover img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
			transform: scale(1.1);
}

.g_info_link{
	padding-right: 10px;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: right;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	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);
	-ms-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;
		-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;
	}

	.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);
	-ms-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;
	}
}


/*    Pager list
=====================================================*/
.g_pager_li{
	width: 40px;
	height: 40px;
	background-color: #666;
	border: 2px solid #666;
	margin-left: 8px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	-webkit-transition: stroke .2s, background .2s;
	-webkit-transition: color .2s, background .2s;
	-o-transition: color .2s, background .2s;
	transition: color .2s, background .2s;
}
.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;
	-webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	-webkit-box-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;
	-webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	-webkit-box-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;
	-webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	        justify-content: center;
	background-color: #fff;
	color: #666;
}
.g_pager_li.current a{
	pointer-events: none;
}
.g_pager_li.prev{
	margin-left: 0;
}
.g_pager_li:hover{
	background-color: #fff;
	color: #666;
}
.g_pager_dots{
	margin-left: 8px;
	font-size: 1.6rem;
}


.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;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}
.g_single_pager .u_img img{
	margin: 0;
}
.g_single_pager_note{
	margin-bottom: 5px;
}
.g_single_pager p{
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  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{
	-ms-flex-wrap: wrap;
	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;
	-webkit-transition: all .2s;
  -o-transition: all .2s;
  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 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;
}





/*    Pagetop（追従）
=====================================================*/
.g_pagetop_fixed{
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 120px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	z-index: 200;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.6);
	        box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.6);
}
.g_pagetop_fixed::before{
	width: 100%;
	height: 100%;
	background-image: url(../img/btn_pagetop.png);
}
.g_pagetop_fixed a{
	width: 100%;
	height: 100%;
	display: block;
}
.g_pagetop_fixed.js_show{
	opacity: 1;
	visibility: visible;
}
.g_pagetop_fixed:hover::before{
	background-image: url(../img/btn_pagetop_on.png);
}

@media (max-width: 896px){
	.g_pagetop_fixed{
		display: none;
	}
}

/*    Breadcrumb
=====================================================*/
.g_breadcrumb_lst{
	padding: 10px 0;
}
.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 #666;
	border-right: 1px solid #666;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	    transform: rotate(45deg);
}
.g_breadcrumb_lst_li a:hover{
	color: #666;
}
@media (max-width: 896px){
	.g_breadcrumb_lst{
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
	}
	.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;
	-o-transition: background .2s, color .2s;
	transition: background .2s, color .2s;
	-webkit-transition: background .2s, color .2s;
}
.g_404_btn a{
	width: 100%;
	padding: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	-webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: 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);
	-ms-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;
	-webkit-box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
	        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;
  -webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-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;
	-o-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;
	-webkit-box-pack: center;
	        justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-transition: background .3s;
	-o-transition: background .3s;
	transition: background .3s;
	cursor: pointer;
	border-radius: 5px;
}
.g_gdpr_btn:hover{
	color: #666;
	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;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
	background-color: #fff;
	position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.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);
  }
}

.loaded{
  opacity: 0;
  visibility: hidden;
}

/*    FadeIn
=====================================================*/
.js_fadeIn{
	position: relative;
	opacity: 0;
	-webkit-transform: translate3d(0, 100px, 0);
	transform: translate3d(0, 100px, 0);
	-webkit-transition: transform .7s, opacity .7s;
	-o-transition: transform .7s, opacity .7s;
	-webkit-transition: opacity .7s, -webkit-transform .7s;
	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{
	-webkit-transition: transform .7s .2s, opacity .7s .2s;
	-o-transition: transform .7s .2s, opacity .7s .2s;
	-webkit-transition: opacity .7s .2s, -webkit-transform .7s .2s;
	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%);
	    -ms-transform: translate(-50%,-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: 896px){
	.g_tel{
		pointer-events: auto;
	}
}


/* 
.g_mv_h2_maxwidth{
	width: 100%;
	max-width: 1110px;
	margin: auto;
} */

.g_mv_pc_tbl{
	background-image: url(../img/mv_pc_back.jpg);
	background-repeat: no-repeat;
	background-size:cover ;
	padding: 50px 0px;
}

.g_center{
	width: 90%;
  }

.g_btn_width{
  margin: auto;
  width: 90%;
}

.g_performance_btn_width{
	max-width: 600px;
}

.g_performance_btn_img01{
	width: 20%;
}

.g_performance_btn_text{
  width: 93%;
  padding-left: 10px;
}

.g_performance_btn_img01 img{
  width: 92%;
}


.g_performance_btn_mt{
  margin-top: 30px;
}

.g_performance_btn_link{
  position: relative;
}






.g_h2_center{
	text-align: center;
	margin-bottom: 40px;
}

.g_btn_center{
	text-align: center;
}

.g_h2_run_problem{
	color: #0068B7;
	font-size: 2.8rem;
	font-weight: bold;
	background:linear-gradient(transparent 70%, #FFEF2E 0%);
	display: inline-block;

}

.g_sec{
	padding-top: 30px;
}

.g_mv_img{
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
}

.g_mv_h2{
	width: 100%;
}

.g_mv_h2 img{
	width: 100%;
}

.g_run_img {
    width: 50%;
    line-height: 0;
	margin-right: auto;
}

.g_run_detail_img{
	width: 80%;
	margin: 0 auto 20px auto;
}

.g_performance_btn {
    width: 48%;
    color: #0068B7;
    border: 1px solid #0068B7;
    background: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
    text-align: center;
    /* margin: 0 auto 15px auto; */
    border-radius: 61px;
	position: relative;
}

.g_performance_btn_injury {
	position: relative;
    width: 45%;
    color: #0068B7;
    border: 1px solid #0068B7;
    background: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
    text-align: center;
    /* margin: 0 auto 15px auto; */
    border-radius: 61px;
	font-size: 1.5rem;
	transition: 0.2s;
}

@media (any-hover: hover) {
	.g_performance_btn_injury:hover {
		opacity: 0.7;
	}
}

.g_performance_btn_mr{
	margin-right: 4%;
}
.performance_btn_mr_auto{
	margin: 0 auto;
}

.g_performance_btn a {
    position: relative;
    display: block;
    padding: 8px 0px;
}

.g_performance_btn_injury a {
    position: relative;
    display: block;
    padding: 8px 0px;
}

.g_arrow1 {
    width: 7px;
    height: 7px;
    border: 1px solid;
    border-color: transparent transparent #0068B7 #0068B7;
    -webkit-transform: rotate(-45deg) !important;
    -ms-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    position: absolute;
    top: 34%;
    right: 4%;
}

.g_arrow2 {
    width: 7px;
    height: 7px;
    border: 1px solid;
    border-color: transparent transparent #0068B7 #0068B7;
    -webkit-transform: rotate(-135deg) !important;
    -ms-transform: rotate(-135deg) !important;
    transform: rotate(-135deg) !important;
    position: absolute;
    top: 45%;
    right: 8%;
}

.g_support_btn{
	width: 48%;
	color: #2f2f2f;
    border: 1px solid #333;
	background: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
	text-align: center;
	padding: 20px 0;
}

.g_support_btn:hover{
    color: #fff;
    background-color: #333;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.g_txtlink{
	color: #0068B6;
}
.g_txtlink:hover{
	opacity: 0.5;
}

.g_run_text {
    color: #2f2f2f;
    font-size: 1.6rem;
}

.g_run_text_w {
    color: #2f2f2f;
    font-size: 1.8rem;
    width: 100%;
}

.g_run_text_l {
    color: #2f2f2f;
    font-size: 2.5rem;
}

.g_run_h3{
	font-size: 2.5rem;
	font-weight: bold;
	border-bottom: 3px solid #0068B6;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
.g_product_detail_nobtn {
    width: 100%;
    color: #2f2f2f;
    border: 1px solid #bbb;
    background: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 15px 0 0;
    list-style-type: none;
    text-align: center;
    margin: 0 auto;
	display: block;
	padding: 13px 0px;
}

.g_product_detail_btn {
    width: 100%;
    color: #2f2f2f;
    border: 1px solid #333;
    background: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 15px 0 0;
    list-style-type: none;
    text-align: center;
    margin: 0 auto;
}

.g_product_detail_btn a{
    display: block;
	padding: 13px 0px;
}

.g_product_detail_btn:hover{
    color: #fff;
    background-color: #333;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.g_run_img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.g_run_img_mr{
	margin-right: 5%;
}

.g_run_mb{
	margin-bottom: 80px;
}

.g_product_detail_btn_blue{
	background: #0068B7 !important;
	color:white !important;
}
.g_product_detail_btn_grey{
	background: #bbb !important;
	color:white !important;
}


.g_run_mt{
	margin-top: 80px;
}

.g_performance_btn_mb{
	margin-bottom: 60px;
}

.u_knee_brn_mb{
	margin-bottom: 60px;
}

.u_knee_brn_mb a{
	position: relative;
}

.g_Prod_lst_mb{
	margin-bottom: 0px;
}

.g_run_h2{
	font-size: 2.2rem;
	width: 100%;
	background: #0068B7;
	text-align: center;
	padding: 15px 0px;
	color:white;
	/* margin-bottom: 40px; */
	text-align: center;
}

.g_run_h2_bg_wh {
	font-size: 2rem;
	width: 80%;
	text-align: center;
	padding: 15px 0px;
	text-align: center;
	margin: 0 auto;
	margin-top: 30px;
}

.g_flex_pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .g_knee_flex_pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin-bottom: 100px;
  }

  .g_performance_btn_mt{
	margin-top: 20px;
}

.g_product_list_pad{
	padding: 20px;
}

.g_run_right{
	width: 45%;
}

.g_knee_brn_w{
	width: 100%;
	margin-bottom:0px;
	height: 60px;
}

.g_run_width{
	width: 100%;
}

.g_about_mr{
	margin-right: 2%;
}

.g_run_text_mab{
	margin-bottom: 30px;
}

.g_product_detail_btn_mb{
	margin-bottom: 0px;
}

.g_fatigue_measures_pt{
	padding-top: 10px;
}

.g_detail_btn{
	width: 100%;
	color: #0068B7;
	border: 1px solid #0068B7;
	background: white;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 15px 0 0;
	list-style-type: none;
	text-align: center;
    margin:0 auto;
	position: relative;
	border-radius: 61px;
	height: 40px;
	font-weight: normal;
}

.g_detail_btn_noimg{
	width: 45%;
	color: #0068B7;
	border: 1px solid #0068B7;
	background: white;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 15px 0 0;
	list-style-type: none;
	text-align: center;
    margin:0 auto;
	position: relative;
	border-radius: 61px;
	height: 40px;
	font-weight: normal;
}

.g_detail_btn a{
	padding: 0px;
}

.g_detail_btn_noimg a{
	padding: 0px;
}

.g_run_text_marbt{
	margin-bottom: 30px;
}

.g_product_flex{
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.g_list_mr{
	margin-right: 0px;
}

.g_knee_brn_tri{
	font-size: 11px;
	padding-right:5px ;
}

.g_display_sp{
	display: none;
}

.g_display_pc{
	display: block;
}

.g_run_text_marbot{
	margin-bottom: 120px;
}

.g_btn_mb{
	margin-bottom: 0px;
}

.g_run_mbottom{
	margin-bottom: 100px;
}

.g_run_mbttm{
	margin-bottom: 140px;
}

.g_performance_btn_mb{
	margin-bottom: 100px;
}

.g_sp_br{
	display: none;
}

@media (max-width: 896px){
	.g_display_lpc{
		display: none;
	}
	.g_knee_flex_pc {
		display: block;
		margin-bottom: 20px;
	}

	.g_performance_btn_text{
		width: 90%;
		padding-left: 10px;
	  }

	.g_arrow2 {
		width: 7px;
		height: 7px;
		border: 1px solid;
		border-color: transparent transparent #0068B7 #0068B7;
		-webkit-transform: rotate(-135deg) !important;
		-ms-transform: rotate(-135deg) !important;
		transform: rotate(-135deg) !important;
		position: absolute;
		top: 43%;
		right: 5%;
	}

	.g_run_text_w {
		color: #2f2f2f;
		font-size: 1.8rem;
		width: 100%;
	}

	.g_run_img {
		width: 100%;
		line-height: 0;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.g_run_right{
		width: 100%;
	}

	.g_product_list_pad {
		padding: 10px;
	}

	.g_product_detail_btn {
		width: 90%;
		color: #2f2f2f;
		border: 1px solid #333;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto;
	}
	.g_product_detail_nobtn {
		width: 90%;
		color: #2f2f2f;
		border: 1px solid #bbb;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto;
		display: block;
		padding: 13px 0px;
	}

	.g_detail_btn {
		width: 48%;
		color: #0068B7;
		border: 1px solid #0068B7;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto 100px auto;
	}

	.g_detail_btn_noimg {
		width: 48%;
		color: #0068B7;
		border: 1px solid #0068B7;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto 100px auto;
	}
	
	.g_performance_btn {
		font-size: 13px;
	}
	
	.g_performance_btn_injury {
		font-size: 13px;
	}

	.g_run_marbot{
		margin-bottom: 100px;
	}
	.g_txtlink{
		color: #0068B6;
	}
}

@media (max-width: 576px){

	.g_performance_btn_text{
		width: 100%;
		padding-left: 10px;
	  }

	.g_sp_br{
		display: block;
	}

	.g_mv_pc_tbl{
		background-image:none;
		padding:0px;
	}

	.g_center{
		width: 90%;
	  }

.g_performance_btn_mb{
	margin-bottom: 60px;
}

.g_h2_center{
	margin-bottom: 20px;
}

.g_h2_run_problem{
	font-size: 2.2rem;
}

.g_display_pc{
	display: none;
}

	.g_display_sp{
		display: block;
	}

	.g_fatigue_measures_pt{
		padding-top: 30px;
	}

	.g_sec_btn{
		padding: 20px 20px 0 20px;
	}

	.g_about_mr{
		margin-right: 0%;
	}

	.g_product_list_pad {
		padding: 0px;
	}

	.g_knee_brn_w {
		width: 100%;
		margin-bottom:50px;
	}

	.g_run_right{
		width: 100%;
	}

	.g_run_h2 {
		font-size: 1.6rem;
		width: 100%;
		background: #0068B7;
		text-align: center;
		padding: 8px 10px;
		color: white;
		/* margin-bottom: 20px; */
		text-align: center;
	}

	.g_run_h2_bg_wh {
		font-size: 1.4rem;
		width: 100%;
	}

	

	.g_run_img {
		width: 100%;
		line-height: 0;
		margin: 0 auto;
	}

	.g_run_text_w {
		color: #2f2f2f;
		font-size: 1.8rem;
		margin-bottom: 50px;
		width: 100%;
	}

	.g_run_text_l {
		color: #2f2f2f;
		font-size: 1.5rem;
		margin-bottom: 50px;
	}

	.g_performance_btn_mt{
		margin-top: 0px;
	}

	.g_flex_pc{
		display: block;
	  }

	.g_detail_btn{
		width: 100%;
		color: #0068B7;
		border: 1px solid #0068B7;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto;
	}

	.g_run_mt{
		margin-top: 40px;
	}

	.g_performance_btn{
		width: 100%;
		margin: 0 auto 14px auto;
	}
	
	.g_performance_btn_injury{
		width: 70vw;
		margin: 0 auto 14px auto;
	}

	.g_run_mb{
		margin-bottom: 20px;
	}

	.g-knees .l_flex{
		display: block;
	}

	.g_run_h3{
		font-size: 1.5rem;
		font-weight: bold;
		border-bottom: 3px solid #0068B6;
		text-align: center;
		padding-bottom: 5px;
		margin-bottom:20px;
	}

	.g_run_text{
		color: #2f2f2f;
		font-size: 1.4rem;
		margin-bottom: 30px;
	}

	.g_run_text_center{
		text-align: center;
	}

	.g_run_img{
		width: 100%;
		line-height: 0;
		margin: 0 auto 20px auto;
	}

	.g_product_detail_btn{
		width: 80%;
		color: #2f2f2f;
		border: 1px solid #333;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		padding: 0;
		margin: 0 auto;
	}

	.g_product_detail_btn a{
		display: block;
		padding: 11px 0px;
	}

	.g_product_detail_nobtn {
		width: 80%;
		color: #2f2f2f;
		border: 1px solid #bbb;
		background: white;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 15px 0 0;
		list-style-type: none;
		text-align: center;
		margin: 0 auto;
		display: block;
		padding: 11px 0px;
	}


  .g_support_btn{
		width: 100%;
	}

	.u_knee_brn_mb{
		margin-bottom: 60px;
	}

	.g_Prod_lst_mb{
		margin-bottom: 30px;
	}

	.g_run_text_mb{
		margin-bottom: 30px;
	}

	.g_performance_btn_m_b{
		margin-bottom: 30px;
	}

	.g_btn_w{
		width: 100%;
	}

	.g_run_text_mab{
		margin-bottom: 20px;
	}

	.g_run_text_marbt{
		margin-bottom: 20px;
	}

	.g_run_h3_mb{
		margin-bottom: 30px;
	}

	.g_product_flex{
		-webkit-box-pack: left;
		    -ms-flex-pack: left;
		        justify-content: left;
	}

	.g_run_text_marbot{
		margin-bottom: 50px;
	}

	.g_btn_mb{
		margin-bottom: 30px;
	}

	.g_performance_btn {
		font-size: 15px;
	}

	.g_performance_btn_injury {
		font-size: 15px;
	}

	.g_run_mbottom{
		margin-bottom: 60px;
	}

	.g_run_mbttm{
		margin-bottom: 70px;
	}


	.g_text{
		color:red !important;
	}

	.g_arrow1 {
		width: 7px;
		height: 7px;
		border: 1px solid;
		border-color: transparent transparent #0068B7 #0068B7;
		-webkit-transform: rotate(-45deg) !important;
		-ms-transform: rotate(-45deg) !important;
		transform: rotate(-45deg) !important;
		position: absolute;
		top: 31%;
		right: 6%;
	}

	.g_arrow2 {
		width: 7px;
		height: 7px;
		border: 1px solid;
		border-color: transparent transparent #0068B7 #0068B7;
		-webkit-transform: rotate(-135deg) !important;
		-ms-transform: rotate(-135deg) !important;
		transform: rotate(-135deg) !important;
		position: absolute;
		top: 42%;
		right: 6%;
	}

	.g_center{
		width: 90%;
	  }
	
	  .g_performance_btn_img01{
		width: 40%;
	  }
	
	  .g_btn_width{
		width: 90%;
		margin: 0 ;
	  }
	
	  .g_performance_btn_img01 img {
		width: 75%;
		margin: 0 auto;
		display: block;
	}
	
	.g_performance_btn_mt{
	  margin-top: 0px;
	}
	
	.g_performance_btn{
	  border-radius: 54px;
	}

	.g_performance_btn_injury{
		border-radius: 54px;
	  }

.g_performance_btn_marbt{
	margin-bottom: 0px;
}

.g_img_btn{
	padding: 0px !important;	
}
.g_txtlink{
	color: #0068B6;
}

}
