@charset "UTF-8";

/* ---------------------------------- ページ共通設定 ---------------------------------- */

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

*:after, *:before {
	background-position: left top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
::-webkit-input-placeholder {
color:#999999;
opacity:1;
}
::-moz-placeholder {
color:#999999;
opacity:1;
}
:-ms-input-placeholder {
color:#999999;
}
:focus::-webkit-input-placeholder {
opacity:1;
color:transparent;
}
:focus:-moz-placeholder {
opacity:1;
color:transparent;
}
:focus::-moz-placeholder {
opacity:1;
color:transparent;
}
:focus:-ms-placeholder {
opacity:1;
color:transparent;
}
a {
	color: inherit;
	text-decoration: none;
	/* display: block; */
}
.normal a:hover {
	text-decoration: underline;
}
.underline {
	text-decoration: underline;
}
a.underline {
	text-decoration: underline;
}
.normal a.underline:hover {
	text-decoration: none;
}

a[href*="tel:"]{ cursor: default !important; text-decoration: none !important; opacity: 1 !important; }

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	/* width: 16%; */
}
input[type="text"],textarea,.select_box{
  border: 1px solid #e5e5e5;
  padding: 0 1.28em;
  height: 40px;
  line-height: 1;
  color: #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
	background-color: #ffffff;
}

.error_color{
	border: 1px solid #e6b8b8 !important;
	background-color: #ffcccc !important;
}

textarea{
  height: 144px;
  padding: 1em 1.28em;
  line-height: 1.4;
}

.select_box{
	position: relative;
	padding: 11px 30px 11px 15px;
	white-space: nowrap;
}

.select_box:after{
	content: "";
	display: inline-block;
	vertical-align:  middle;
	height: 100%;
}

.select_box:before{
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4px 0 4px;
	border-color: #000000 transparent transparent transparent;
}

.select_box select{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
}

.select_box .select_box_text{
	overflow:  hidden;
}

.select_box.no_val .select_box_text{
	color: #999999;
}

select{
  width: 100%;
}

hr {
	border-left: none;
	border-right: none;
	border-top: none;
	height: 0;
	border-bottom: 1px solid #66290a;
	margin: 10px 0;
}

figure{
  line-height: 0;
}
picture{
	line-height: 0;
}

.font_montserrat{
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

@media screen and (max-width:700px) {

input,textarea, select{
  font-size: 16px;
}
	
	input[type="radio"],input[type="checkbox"]{
		font-size: inherit;
	}
  
}


.color_gray01{
  color: #999999 !important;
}

.color_gray02{
  color: #666666 !important;
}

.color_red01{
	color: #ad4e4e !important;
}

.color_brown01{
	color: #bf864d !important;
}

.color_orange01{
	color: #ff9f40 !important;
}

.color_blue01{
	color: #003399 !important;
}

.color_blue02{
	color: #0099ff !important;
}

.color_green01{
	color: #9acc00 !important;
}

.color_green02{
	color: #27873d !important;
}

.color_green03{
	color: #a0aa00 !important;
}

/*
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}*/

/* ------------------ .bg ------------------ */

.bg_white{
  background-color: #ffffff !important;
}

.bg_gray01{
  background-color: #f5f5f5 !important;
}

.bg_gray02{
  background-color: #f4f4f4 !important;
}

.bg_gray03{
  background-color: #ebebeb !important;
}

.bg_black01{
	background-color: #000000 !important;
}

.bg_black02{
	background-color: #333333 !important;
}

/* ------------------ .link_block ------------------ */

.link_block{
  display: block;
  text-decoration: none !important;
}

/* ------------------ .imghover ------------------ */

.imghover{
  text-decoration: none !important;
  -moz-transition: opacity 0.4s ease 0s;
  -webkit-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}

.normal .imghover:hover{
  -ms-filter: "alpha(opacity=70)" ;
	-khtml-opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/* ------------------ .img_cover ------------------ */

.img_cover{
	position: relative;
  overflow:  hidden;
  text-indent: 200%;
  white-space: nowrap;
  background-size: cover;
  background-position:  center center;
  height: 0;
  background-image: url(../img/template/loading01.svg);
  background-size: 10% auto;
  background-repeat: no-repeat;
  background-position:  center center;
  background-color: #eeeeee;
}
.img_cover.delay_load{
}


.img_cover.delay_load:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(../img/template/loading01.svg);
  background-size: 10% auto;
  background-repeat: no-repeat;
  background-position:  center center;
  background-color: #eeeeee;
}

.img_cover.delay_load.img_none:after{
  background-color: #eeeeee !important;
	background-image: none !important;
}

.img_cover.delay_load.load_img:after{
  display: none;
  background: none !important;
}

.img_cover.delay_load img{
  display: none;
}

.delay_img_obj{
  -ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

.delay_img_obj.load_active{
  -ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;	
}

/*  
-------------------------------------------- html、body --------------------------------------------
*/

body{
  font-family: 'Noto Sans JP', sans-serif; 
  font-weight: 400;
	font-size: 15px;
  letter-spacing: 0.05em;
	line-height: 1.8;
	color: #000000;
	min-width: 320px;
}

.font_sans{
  font-family: 'Noto Sans JP', sans-serif; 
  font-weight: 400;
}

@media screen and (max-width:700px) {
  body{
  }
}

@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop, body {
  font-family:"メイリオ", Meiryo, Osaka, "sans-serif"
  }
}


/* #all_wrap */

#all_wrap {
	overflow: hidden;
}

/* .main_content_wrap */

.main_content_wrap {
	position: relative;
	padding: 120px 100px 130px 100px;
}

.main_content_wrap .main_content {
  position: relative;
	margin: 112px auto;
	/*max-width: 1300px;*/
	max-width: 1100px;
}

.main_content_wrap .main_content:first-child{
  margin-top: 0;
  padding-top: 0;
}

.main_content_wrap .main_content:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
}

@media all and (min-width:901px) {
}

@media screen and (max-width:1500px) {
	
	.main_content_wrap {
		/*padding: 120px 30px 130px 100px;*/
		padding: 120px 100px 130px 100px;
	}
	
}

@media screen and (min-width:769px) and (max-width: 1250px) {
  
  .main_content_wrap {
    /*padding: 120px 30px 120px 100px;*/
		padding: 120px 30px 120px 100px;
  }
	
	.main_content_wrap.window_type {
		padding: 120px 100px 120px 100px;
	}
  
  .main_content_wrap .main_content {
    margin: 100px 0 100px 0;
  }
  
}

@media screen and (max-width:768px) {
	
  .main_content_wrap {
    padding: 60px 20px 65px 20px;
  }
  
  .main_content_wrap .main_content {
    margin: 56px 0 56px 0;
  }
  
}


.main_content_obj_wrap{
  position: absolute;
  top: 140px;
  left: 0%;
  text-align: left;
  pointer-events: none;
  width: 100%;
}

.main_content_obj_wrap .main_content_obj{
  position: absolute;
  left: -140px;
}

.main_content_obj_wrap.right_type .main_content_obj{
  left: auto;
  right: -140px;
}

@media screen and (max-width:700px) {
  .main_content_obj_wrap{
    display: none;
  }
}

/* ----------------------------- .window_content -----------------------------*/

.window_content{
  position: relative;
  width: 100vw;
  left: 50%;
  margin: 0 0 0 -50vw;
}

@media screen and (max-width:320px) {
  .window_content{
    width: 320px;
    margin: 0 0 0 -160px;
  }
}

/* ----------------------------- .content_border -----------------------------*/

.content_border{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	z-index: 1;
}

.content_border:before,
.content_border:after{
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	display: block;
}

.content_border:before{
	left: 0;
	background-color: #f2de00;
}

.content_border:after{
	left: 50%;
	background-color: #9acc00;
}

.content_border .content_border_obj:before{
	content: "";
	position: absolute;
	display: block;
	z-index: 2;
	height: 100%;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
	width: 1500px;
	top: 0;
	left: 50%;
	margin: 0 0 0 -750px;
}

/* ----------------------------- .btn_row -----------------------------*/

.btn_row{
  display: flex;
  justify-content: center;
  margin: 110px 0 0 0;
}

@media screen and (max-width:900px) {
  .btn_row{
    margin: 80px 0 0 0;
  }
}

@media screen and (max-width:700px) {
  .btn_row{
    margin: 55px 0 0 0;
  }
}

/* ----------------------------- .btn_wrap -----------------------------*/

.btn_wrap{
  position: relative;
}

.btn_wrap .btn_block{
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
}

.btn_wrap .btn{
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  cursor: pointer;
}
.btn_wrap .btn > *{
  display: inline-block;
  vertical-align: baseline;
}

.btn_wrap .btn_text{
  position: relative;
  line-height: 1.5;
  display: inline-block;
}

.btn_wrap .btn_img{
  position: absolute;
  top: 50%;
  right: 15px;
  height: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  line-height: 0;
}

.btn_wrap .btn_img:first-child{
  margin-left: 0;
}

.btn_wrap .btn_img:last-child{
  margin-right: 0;
}

.btn_wrap .btn .flex-text .text{
	text-decoration:  none !important;
	font-size: 120%;
}

/* .btn_wrap.type_normal */

.btn_wrap.type_normal{
}

.btn_wrap.type_normal .btn_block,
.btn_wrap.type_normal .btn{
  /*min-height: 36px;*/
	min-height: 56px;
	border-radius: 9999px;
}

.btn_wrap.type_normal .btn{
  font-size: 15px;
  color: #ffffff;
	padding: 8px 20px;
	font-weight: 500;
	background-color: #000000;
	transition: background-color 0.4s ease 0s, color 0.4s ease 0s, opacity 0.4s ease 0s;
}

.btn_wrap.type_green01 .btn{
	background-color: #9bcc00 !important;
}

.btn_wrap.type_green02 .btn{
	background-color: #27873d !important;
}

.btn_wrap.type_green03 .btn{
	background-color: #a0aa00 !important;
}

.btn_wrap.type_yellow01 .btn{
	background-color: #fe9f40 !important;
}

.btn_wrap.type_gray01 .btn{
	background-color: #bfbfbf !important;
}


.normal .btn_wrap.type_normal .btn:hover{
  opacity: 0.7;
}

/* .btn_wrap.type01 */

.btn_wrap.type01{
}

.btn_wrap.type01 .btn_block,
.btn_wrap.type01 .btn{
  min-height: 56px;
	border-radius: 9999px;
}

.btn_wrap.type01 .btn{
  font-size: 15px;
  color: #ffffff;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
  padding: 8px 20px;
  transition: background-color 0.4s ease 0s, color 0.4s ease 0s, opacity 0.4s ease 0s;
}

.btn_wrap.type01.type_red01 .btn{
	background: #ad4e4e !important;
}

.btn_wrap.type01.type_brown01 .btn{
	background: #bf864d !important;
}

.normal .btn_wrap.type01 .btn:hover{
  opacity: 0.7;
}

@media screen and (max-width:700px) {
  .btn_wrap.type01 .btn_block,
  .btn_wrap.type01 .btn{
    min-height: 50px;
  }
  
}

/* ------------------------------------------------------------------------------
.arrow
------------------------------------------------------------------------------ */

.arrow_img{
	transform-origin: 50% 50%;
	transform: rotate(0deg);
}

.arrow_img.right{
	transform-origin: 50% 50%;
	transform: rotate(0deg);
}

.arrow_img.down{
	transform-origin: 50% 50%;
	transform: rotate(90deg);
}

.arrow_img.left{
	transform-origin: 50% 50%;
	transform: rotate(180deg);
}

.arrow_img.up{
	transform-origin: 50% 50%;
	transform: rotate(270deg);
}

/* ------------------------------------------------------------------------------
.search_box
------------------------------------------------------------------------------ */

.search_box{
}

.search_box .search_box_in{
}

.search_box .search_box_content{
	
}

.search_head{
	overflow:  hidden;
	position: relative;
	color: #ffffff;
	line-height: 1;
	font-size: 15px;
	font-weight: 500;
}

.search_head:before,
.search_head:after{
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
}

.search_head:before{
	left: 0;
	background-color: #f2de00;
}

.search_head:after{
	left: 50%;
	background-color: #9acc00;
}

.search_head_in:before{
	content: "";
	position: absolute;
	z-index: 1;
	height: 100%;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
	width: 1100px;
	top: 0;
	left: 50%;
	margin: 0 0 0 -550px;
}

.search_head_content{
	position: relative;
	z-index: 2;
	display: table;
	width: 100%;
}

.search_head_content > *{
	display: table-cell;
	padding: 15px 25px;
}

.search_head_content .search_head_result{
	width: 100%;
}

.search_head_result_block{
	display: table;
}

.search_head_result_block > *{
	display: table-cell;
	white-space: nowrap;
}

.search_head_result_block .search_head_title{
	padding: 0 25px 0 0;
	
}

.search_head_result_block .search_head_info_list{
	letter-spacing: -0.4em;
	margin: 0 -10px -10px 0;
}

.search_head_result_block .search_head_info_list li{
	letter-spacing: 0.05em;
	padding: 0 10px 10px 0;
}

.search_head_result_block .search_head_number{
	font-size: 18px;
	padding: 0 0 0 13px;
}

.search_head_result_block .search_head_number_text{
	position: relative;
}

.search_head_result_block .search_head_number_text:after{
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	background-color: #fff;
	height: 1px;
}

.search_head_content .search_head_link{
	text-align: right;
	white-space: nowrap;
}

.search_head_content .search_head_link.search_head_switch{
	display: inline-block;
	vertical-align:  middle;
}



.search_box_in{
	/*display: none;*/
}

/* .search_box_content_wrap */

.search_box_content_area{
	padding: 53px 0 0 0;
}

@media screen and (max-width: 768px) {
	.search_box_content_area{
		padding: 26px 0 0 0;
	}
	.search_box_content_wrap{
		border: 1px solid #cccccc;
	}
}


@media screen and (max-width: 768px) {
	.search_head_content{
		display: block;
	}

	.search_head_content > *{
		display: block;
	}
	
	.search_head_content .search_head_link{
		text-align: left;
	}
}

.search_box_switch_list{
	display: flex;
	border: 1px solid #cccccc;
}

.search_box_switch_list .search_box_switch_block{
	border-right: 1px solid #cccccc;
	width: 20%;
	flex-grow: 1;
}

.search_box_switch_list .search_box_switch_block:last-child{
	border-right: none;
}

.search_box_switch_list .search_box_switch_block{
	display: flex;
	flex-direction: column;
}

.search_box_switch_list .search_box_switch{
	flex-grow: 1;
	border: none;
}


/* .search_box動作 */

.search_box .search_box_in{
	height: 0;
	overflow:  hidden;
}

.search_box .search_box_in.box_anime{
	transition: height 0.4s ease 0s;
}

.search_box.box_active .search_box_in{
	
}

.search_box_content .search_box_block{
	height: 0;
	overflow:  hidden;
}


.search_box_content.active .search_box_block{
	height: auto;
}

.search_box_content .search_box_block_in{
	padding: 65px 0 0 0;
}

@media screen and (min-width: 769px) {
	.search_box_content .search_box_block{
		transition: height 0s ease 0s;
	}
}

@media screen and (max-width: 768px) {
	
	.search_box .search_box_in{
		transition: height 0s ease 0s;
	}
	
	.search_box_content .search_box_block.box_anime{
		transition: height 0.4s ease 0s;
	}
	.search_box_content .search_box_block_in{
		padding: 20px 20px 40px 20px;
		border-bottom: 1px solid #cccccc;
	}
	.search_box_content_wrap{
		border-bottom: none;
	}
}



/* .search_box_switch */

.search_box_switch{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	padding: 15px;
	line-height: 1.4;
	cursor: pointer;
	border-bottom: 1px solid #cccccc;
}



@media screen and (min-width: 769px) {
	
	.search_box_switch.active{
		background-color: #ffffff;
	}

	.search_box_switch.active:after{
		content: "";
		display: block;
		position: absolute;
		bottom: -1px;
		left: 0;
		height: 1px;
		width: 100%;
		background-color: #ffffff;
		z-index: 2;
	}
	
}

@media screen and (max-width: 769px) {
	
}

/* .search_box_table */

.search_box_table{
	display: table;
	width: 100%;
}

.search_box_table .search_box_tr{
	display: table-row;
}

.search_box_table .search_box_tr > *{
	display: table-cell;
	vertical-align: top;
	padding-bottom: 16px;
}

.search_box_table .input_list li{
	min-width: 25%;
}

@media screen and (min-width: 769px) {
.search_box_content .search_box_switch{
	display: none;
}
	
}


@media screen and (max-width: 768px) {
	.search_box_content_head{
		display: none;
	}
}

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


	.search_box_table .search_box_tr:last-child > *{
		padding-bottom: 0px;
	}

}
	
.search_box_table .search_box_tr .search_box_th{
	white-space: nowrap;
	width: 220px;
}

.search_box_table .search_box_tr .search_box_td{
	width: 100%;
	padding-left:37px;
}

.search_box_table .search_box_tr .search_box_td .input_list_wrap{
	padding: 0 0 10px 0;
}

.search_box_table .search_box_tr .search_box_th .input_label,
.search_box_table .search_box_tr .search_box_th .search_box_table_title02{
	background-color: #f5f5f5;
	width: 220px;
	padding: 15px;
	display: block;
}

.search_box_table .search_box_table_title01{
	position: relative;
	padding: 0 0 0 1.6em;
	line-height: 1;
	margin: 10px 0 0 0;
}

.search_box_table .search_box_table_title01:after{
	content: "";
	position: absolute;
	top: 0em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 0.31em solid #9ccc00;
	background-color: #ffffff;
	border-radius: 100%;
}

.search_map_box_wrap{
	padding: 0 0 40px 0;
}

@media screen and (max-width:900px) {
	.search_box_table,
	.search_box_table .search_box_tr,
	.search_box_table .search_box_tr > *{
		display: block;
		width: auto;
	}
	
	.search_box_table .search_box_tr .search_box_th,
	.search_box_table .search_box_tr .search_box_th .input_label,
	.search_box_table .search_box_tr .search_box_th .search_box_table_title02{
		width: auto;
	}
	
	.search_box_table .search_box_tr .search_box_td{
		padding-left: 0;
	}
	
}

/* .search_map_box */

.search_map_box{
	display: table;
	width: 100%;
	height: 510px;
}

.search_map_box > *{
	display: table-cell;
	vertical-align:  middle;
}

.search_map_box_img{
	position: relative;
}

.search_map_icon_list_wrap{
	text-align: center;
}

.search_map_icon_list{
	margin: 0 -20px -20px 0;
}

.search_map_icon_list li{
	display: inline-block;
	vertical-align: top;
	padding: 0 20px 20px 0;
}

.search_map_box_img .search_map_icon_list_wrap{
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 100%;
}

.search_map{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #666666;
}

.search_map_box_text{
	background-color: #f5f5f5;
	padding: 35px;
	width: 300px;
}

.search_map_box_text .search_map_icon_list_wrap{
	margin: 20px 0 0 0;
}

@media screen and (max-width:900px) {
	.search_map_box{
		height: auto;
	}
	.search_map_box,
	.search_map_box > *{
		display: block;
		width: auto;
	}
	
	.search_map_box_img{
		height: 350px;
		}
	
	.search_map_box_text{
		padding: 25px 25px 40px 25px;
	}
	
	.search_map_box_img .search_map_icon_list_wrap{
		display: none;
	}
	
	.search_map_box_text .search_map_icon_list_wrap{
		text-align: left;
		margin-top: 10px;
	}
	
}

/* .special_list_wrap */

.special_list_wrap{
	margin: 0 auto;
}

.special_list_wrap .special_list{
	margin: 0 -55px -55px 0;
	display: flex;
	flex-wrap: wrap;
}

.special_list_wrap .special_list_block{
	padding: 0 55px 55px 0;
	width: 33.3%;
}

.special_list_wrap .special_list_block .img_cover{
	padding-bottom: 66.6%;
}

.special_list_wrap .special_list_block .special_list_img{
}

.special_list_wrap .special_list_block .special_list_text{
	font-size: 18px;
	background-color: #f5f5f5;
	padding: 15px;
	text-align: center;
}

@media screen and (max-width:900px) {
	.special_list_wrap .special_list{
		margin: 0 -35px -35px 0;
	}

	.special_list_wrap .special_list_block{
		padding: 0 35px 35px 0;
		width: 50%;
	}
	
	.special_list_wrap .special_list_block .special_list_text{
		font-size: 15px;
	}
	
}

@media screen and (max-width:700px) {
	
	.special_list_wrap{
		max-width: 400px;
	}
	
	.special_list_wrap .special_list_block{
		width: 100%;
	}
}

/* ---------------------------------------------------------------
.image_search_content_area 
--------------------------------------------------------------- */

.image_search_content_area{
	margin: 60px 0 0 0;
}

/* .image_search_list_wrap */

.image_search_list_wrap{
	
}

.image_search_list_wrap .image_search_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -55px -55px 0;
}

.image_search_list_wrap .image_search_list_block{
	width: 33.33%;
	padding: 0 55px 55px 0;
}

.image_search_list_wrap .image_search_list_text{
	margin: 0 0 8px 0;
}

.image_search_list_wrap .image_search_list_img{
	
}

.image_search_list_wrap .image_search_list_img_block{
	position: relative;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	padding-bottom: 66.67%;
}

.image_search_list_wrap .image_search_list_img_obj{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image_search_list_wrap .image_search_list_img_obj img{
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
}

@media screen and (max-width:1000px) {
	.image_search_list_wrap .image_search_list{
		margin: 0 -25px -35px 0;
	}
	
	.image_search_list_wrap .image_search_list_block{
		padding: 0 25px 35px 0;
	}
}

@media screen and (max-width:700px) {
	
	.image_search_list_wrap .image_search_list{
		margin: 0 -25px -35px 0;
	}
	
	.image_search_list_wrap .image_search_list_block{
		width: 50%;
		padding: 0 25px 35px 0;
	}
}

/* ------------------------------------------------------------------------------
.input_label
------------------------------------------------------------------------------ */

.input_label{
	position: relative;
	line-height: 1.6;
	display: inline-block;
	vertical-align: bottom;
}

.input_label .input_label_obj{
	position: relative;
	display: inline-block;
	vertical-align: bottom;
}

.input_label .text{
	line-height: 1.6;
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	padding: 0 0 0 1.6em;
}

.input_label input{
	position: absolute;
	top: 0.3em;
	left: 0;
	width: 1em;
	height: 1em;
}

/*
.input_label input{
	display: none;
}

.input_label input + .text:before{
	content: "";
	position: absolute;
	top: 0.3em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 1px solid #cccccc;
	background-color: #ffffff;
}

.input_label input + .text:after{
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0.25em;
	width: 0.5em;
	height: 0.5em;
	background-color: #9acc00;
	display: none;
}

.input_label input:checked + .text:after{
	display: block;
}

.input_label input[type="checkbox"] + .text:before{
	border-radius: 0.25em;
}

.input_label input[type="checkbox"] + .text:after{
	border-radius: 0.125em;
}

.input_label input[type="radio"] + .text:before{
	border-radius: 100%;
}

.input_label input[type="radio"] + .text:after{
	border-radius: 100%;
}
*/


/* ------------------------------------------------------------------------------
.input_list_wrap
------------------------------------------------------------------------------ */


.input_list_wrap{
}

.input_list_wrap .input_list{
	letter-spacing: -0.4em;
	margin: 0 -1em -1em 0;
}

.input_list_wrap .input_list li{
	display: inline-block;
	vertical-align:  top;
	padding: 0 1em 1em 0;
	letter-spacing: 0.05em;
}

/* ------------------------------------------------------------------------------
TITLE
------------------------------------------------------------------------------ */

/* .title_type01 */


.title_type01{
	text-align: center;
	margin: 0 0 50px 0;
}

.title_type01 .text_wrap{
	display: inline-block;
	vertical-align: middle;
}

.title_type01 .text_wrap .image{
	display: block;
	text-align: center;
	line-height: 0;
	margin: 0 0 22px 0;
}

.title_type01 .text_wrap .text01,
.title_type01 .text_wrap .text02{
	display: block;
}

.title_type01 .text_wrap .text01{
	position: relative;
	padding: 0 60px;
}

.title_type01 .text_wrap .text01{
	font-size: 30px;
	line-height: 1;
}

.title_type01 .text_wrap .text01.font_montserrat{
	font-size: 48px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	padding: 0 35px;
}

.title_type01 .text_wrap .text01_in{
	display: inline-block;
	vertical-align: bottom;
	position: relative;
	z-index: 2;
}

.title_type01 .text_wrap .text01:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.1em;
	height: 4px;
	width: 100%;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
}

.title_type01 .text_wrap .text01.b_none:after{
	display: none;
}

.title_type01 .text_wrap .text01.font_montserrat:after{
	bottom: 0.15em;
}

.title_type01 .text_wrap .text02{
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.1em;
	margin: 18px 0 0 0;
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 700px) {
	
	.title_type01{
		margin-bottom: 35px;
	}
	
	.title_type01 .text_wrap .text01{
		font-size: 24px;
	}

	.title_type01 .text_wrap .text01.font_montserrat{
		font-size: 38px;
	}
	
	.title_type01 .text_wrap .text01{
		padding: 0 15px;
	}
	
	.title_type01 .text_wrap{
		/*display: block;*/
	}
	
}

/* ------------------------------------------------------------------------------
.category_list
------------------------------------------------------------------------------ */

.category_list{
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -10px 0;
}

.category_list .category_list_block{
	padding: 0 10px 10px 0;
}

.category_list .category_list_block_in{
	background-color: #ffffff;
	border-radius: 3px;
}

.category_list .category_list_switch{
	font-size: 11px;
	color: #ffffff;
	background-color: #bfbfbf;
	padding: 6px 10px;
	border-radius: 3px;
	display: block;
	min-width: 110px;
	text-align: center;
}


/* ------------------------------------------------------------------------------
.area_switch_wrap
------------------------------------------------------------------------------ */

.area_switch_wrap{
	display: inline-block;
	background-color: #ffffff;
	line-height: 1;
}


.area_switch_wrap .area_switch{
	display: block;
	font-size: 11px;
	color: #ffffff;
	background-color: #333333;
	padding: 6px;
}

/* ------------------------------------------------------------------------------
sns_list_wrap
------------------------------------------------------------------------------ */

.sns_list_wrap{
	white-space: nowrap;
	line-height: 0;
}

.sns_list_wrap .sns_list{
	margin: 0 -24px 0 0;
	letter-spacing: -0.4em;
}

.sns_list_wrap .sns_list li{
	letter-spacing: normal;
	display: inline-block;
	vertical-align:  middle;
	padding: 0 24px 0 0;
}

/* ------------------------------------------------------------------------------
.office_list_wrap
------------------------------------------------------------------------------ */

.office_list_wrap{
	
}

.office_list_wrap .office_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -35px -35px 0;
}

.office_list_wrap .office_list_block{
	padding: 0 35px 35px 0;
}

.office_list_wrap .office_list_block_title{
	font-size: 14px;
	line-height: 1.6;
	border-bottom: 1px solid #666666;
	padding: 0 0 12px 0;
	margin: 0 0 15px 0;
}

.office_list_wrap .office_list_block_in{
	font-size: 13px;
}

.office_list_wrap .office_list_block_address{
	display: inline;
}

.office_list_wrap .office_list_block_address .text01{
	display: block;
}

.office_list_wrap .office_list_block_address .text02{
	display: inline;
}

.office_list_wrap .office_list_map_link{
	display: inline;
	color: #999999;
}

.office_list_wrap .office_list_tel{
	line-height: 1;
	margin: 10px 0 0 0;
}

.office_list_wrap .office_list_tel_in{
	padding: 0 0 0 35px;
	position: relative;
}

.office_list_wrap .office_list_tel_in:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/template/icon_freedial_white@2x.png");
	background-position: top left;
	width: 24px;
	height: 20px;
	
}

.office_list_wrap .office_list_tel .text01{
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px 0;
}

.office_list_wrap .office_list_tel .text02{
	font-size: 12px;
	color: #999999;
}

.office_list_wrap .office_list_btn_wrap{
	margin: 22px 0 0 0;
}

.office_list_wrap .office_list_btn,
.office_list_wrap .office_list_btn a{
	border-radius: 9999px;
	display: block;
}

.office_list_wrap .office_list_btn{
	background-color: #ffffff;
	width: 100%;
	max-width: 200px;
	margin: 0 0 0 0;
}

.office_list_wrap .office_list_btn a{
	background-color: #000000;
	color: #ffffff;
	font-size: 600;
	text-align: center;
	padding: 12px;
	line-height: 1;
	text-decoration: none !important;
}

@media screen and (max-width: 700px) {
	.office_list_wrap .office_list_btn{
		max-width: none;
	}
}

/* ------------------------------------------------------------------------------
.house_grid_list_wrap
------------------------------------------------------------------------------ */

.house_grid_list_wrap{
	max-width: 1100px;
	margin: 0 auto;
	color: #000;
}

.house_grid_list_wrap .house_grid_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -32px -32px 0;
}

.house_grid_list_wrap .house_grid_list[data-kazu="1"]{
	justify-content: center;
}

.house_grid_list_wrap .house_grid_list[data-kazu="2"]{
	justify-content: center;
}

.house_grid_list_wrap .house_grid_list[data-kazu="3"]{
	justify-content: center;
}

@media screen and (max-width: 1160px) {
	.house_grid_list_wrap .house_grid_list[data-kazu="1"]{
		justify-content: center;
	}

	.house_grid_list_wrap .house_grid_list[data-kazu="2"]{
		justify-content: flex-start;
	}

	.house_grid_list_wrap .house_grid_list[data-kazu="3"]{
		justify-content: flex-start;
	}
}

@media screen and (max-width: 700px) {
	.house_grid_list_wrap .house_grid_list[data-kazu="1"]{
		justify-content: flex-start;
	}

	.house_grid_list_wrap .house_grid_list[data-kazu="2"]{
		justify-content: flex-start;
	}

	.house_grid_list_wrap .house_grid_list[data-kazu="3"]{
		justify-content: flex-start;
	}
}

.house_grid_list_wrap .house_grid{
	padding: 0 32px 32px 0;
	width: 25%;
	display: flex;
	flex-direction: column;
}

.house_grid_list_wrap .house_grid_content{
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	border: 1px solid #e6e6e6;
	background-color: #ffffff;
}

.house_grid_list_wrap .house_grid_area{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	line-height: 1;
}

.house_grid_list_wrap .house_grid_img{
	position: relative;
}

.house_grid_list_wrap .house_grid_img_obj{
	position: relative;
}

.house_grid_list_wrap .house_grid_img_obj .img_cover{
	padding-bottom: 66.6%;
}

.house_grid_text{
	padding: 20px;
}

.house_grid_text_date{
	font-size: 11px;
	line-height: 1;
	color: #808080;
	margin: 0 0 7px 0;
}

.house_grid_text_title{
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 5px 0;
}

.house_grid_text_content{
	font-size: 12px;
	line-height: 1.58;
	color: #999999;
}

.house_grid_text_cat{
	margin: 14px 0;
}

/* .house_grid_link_wrap */

.house_grid_link_wrap{
	margin: 14px 0 0 0;
}

.house_grid_link_wrap .house_grid_link_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px 0 0;
	color: #666666;
	line-height: 1;
	font-size: 11px;
}

.house_grid_link_wrap .house_grid_link_block{
	padding: 0 15px 0 0;
}

.house_grid_link_wrap .house_grid_link{
	display: block;
}

.house_grid_link_obj{
	display: flex;
	align-items: center;
}

.house_grid_link_icon{
	margin: 0 5px 0 0;
}

.house_grid.new .house_grid_img:before{
	content: "NEW";
	position: absolute;
	bottom: -20px;
	right: 20px;
	font-size: 10px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	text-align: center;
	line-height: 40px;
	background-color: #ff9f40;
	pointer-events: none;
	z-index: 5;
}

@media screen and (max-width: 1160px) {
	.house_grid_list_wrap{
		max-width: 566px;
		margin: 0 auto;
	}

	.house_grid_list_wrap .house_grid_list{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -32px -32px 0;
	}

	.house_grid_list_wrap .house_grid{
		padding: 0 32px 32px 0;
		width: 50%;
		display: flex;
		flex-direction: column;
	}
	
}

@media screen and (max-width: 700px) {
	.house_grid_list_wrap{
		max-width: 280px;
		margin: 0 auto;
	}
	
	.house_grid_list_wrap .house_grid{
		width: 100%;
	}
	
}

/* .house_grid_text_btn */

.house_grid_list_wrap .house_grid_text_btn{
	width: 150px;
	margin: 20px auto 0 auto;
}

.house_grid_list_wrap .house_grid_text_btn .btn{
	padding: 0;
	font-size: 12px;
	letter-spacing: 0;
}

.house_grid_list_wrap .house_grid_text_btn .btn_wrap.type_normal .btn_block,
.house_grid_list_wrap .house_grid_text_btn .btn_wrap.type_normal .btn{
	min-height: 27px;
}

.house_grid_list_wrap .house_grid_text_btn .input_label input{
	top: 0.16em;
	left: 0;
	width: 1.33em;
	height: 1.33em;
}

/* ------------------------------------------------------------------------------
.ad_house_info_wrap
------------------------------------------------------------------------------ */

.ad_house_info_wrap{
	max-width: 980px;
	margin: 0 auto;
}

.ad_house_info_wrap .ad_house_info{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -40px -40px 0;
}

.ad_house_info_wrap .ad_house_info_block{
	max-width: 480px;
	width: 50%;
	padding: 0 40px 40px 0;
}

.ad_house_info_wrap .house_grid_list_wrap{
	max-width: 360px;
}

.ad_house_info_wrap .house_grid_list_wrap .house_grid{
	width: 100%;
}

.ad_house_info_wrap .title_type01{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

@media screen and (max-width: 1100px) {
	
	.ad_house_info_wrap .title_type01 .text_wrap{
		display: block;
	}
	
	.ad_house_info_wrap .title_type01 .text_wrap .text01{
		font-size: 24px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 700px) {
	.ad_house_info_wrap .ad_house_info{
		justify-content: center;
	}
	.ad_house_info_wrap .ad_house_info_block{
		width: 100%;
	}
	.ad_house_info_wrap .heightline{
		height: auto !important;
	}
	
	.ad_house_info_wrap .title_type01 .text_wrap .text01{
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.ad_house_info_wrap .house_grid_list_wrap{
		max-width: 280px;
	}
	
}

/* ------------------------------------------------------------------------------
.house_block_content
------------------------------------------------------------------------------ */

.house_block_list_wrap{
	margin: 0 0 0px 0;
}

.house_block_list_wrap .house_block_list{
	
}

.house_block_list_wrap .house_block{
	padding: 50px 0;
	border-bottom: 1px solid #cccccc;
}

.house_block_list_wrap .house_block:first-child{
	padding-top: 0;
}

.house_block_list_wrap .house_block_content{
	margin: 0 -40px 0px 0;
}

.house_block_list_wrap .house_block_content > *{
	width: 50%;
	padding: 0 40px 0px 0;
}

.house_block_list_wrap .house_block_text{
	float: right;
}

.house_block_list_wrap .house_block_img,
.house_block_list_wrap .house_block_btn_area{
	float: left;
	clear: left;
}

/*
.house_block_content .house_block_btn_area
*/

.house_block_list_wrap .house_block_btn_area{
	clear: none;
}

.house_block_list_wrap .house_block_btn_area .row_content{
}

.house_block_list_wrap .house_block_btn_area .btn{
	font-size: 12px;
}

.house_block_list_wrap .house_block_btn_area .input_label input{
	top: 0.16em;
	left: 0;
	width: 1.33em;
	height: 1.33em;
}

.house_block_list_wrap .house_block_slide .img_cover{
	padding-bottom: 66.6%;
}

.house_block_list_wrap .house_block_slide .swiper-pagination_wrap{
	margin-top: 20px;
}

.house_block_list_wrap .house_block_img_text{
	margin: 25px 0 0 0;
	color: #666666;
	font-size: 13px;
}

.house_block_list_wrap .house_block_head{
	position: relative;
	letter-spacing: -0.4em;
	margin: 0 0 -10px 0;
}

.house_block_list_wrap .house_block.new .house_block_head:before{
	content: "NEW";
	position: absolute;
	top: -12px;
	right: 0px;
	font-size: 10px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	text-align: center;
	line-height: 40px;
	background-color: #ff9f40;
	pointer-events: none;
	z-index: 5;
	letter-spacing: 0.05em;
}

.house_block_list_wrap .house_block_head > *{
	display: inline-block;
	vertical-align:  middle;
	letter-spacing: 0.05em;
	padding: 0 18px 10px 0;
}

.house_block_list_wrap .house_block_area{
	display: inline-block;
	vertical-align:  middle;
}

.house_block_list_wrap .house_block_date{
	font-weight: 500;
	color: #808080;
	font-size: 11px;
}

.house_block_list_wrap .house_block_title{
	display: table;
	margin: 16px 0 20px 0;
}

.house_block_list_wrap .house_block_title > *{
	display: table-cell;
	vertical-align:  top;
}

.house_block_list_wrap .house_block_title_info{
	padding: 0 15px 0 0;
	width: 70px;
	color: #ff9933;
	font-size: 13px;
	line-height: 1.4;
	padding: 0.3em 0 0 0;
}

.house_block_list_wrap .house_block_title  .house_block_title_text{
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
}

.house_block_list_wrap .house_block_category{
	margin: 0 0 23px 0;
}

.house_block_list_wrap .house_block_table{
	font-size: 14px;
	margin: 0 0 20px 0;
}

.house_block_list_wrap .house_block_table table{
	width: 100%;
}

.house_block_list_wrap .house_block_table table tr th,
.house_block_list_wrap .house_block_table table tr td{
	
}

.house_block_list_wrap .house_block_table table th{
	white-space: nowrap;
	min-width: 110px;
	padding: 0 1em 0 0;
}

.house_block_list_wrap .house_block_table table td{
	width: 100%;
}

@media screen and (max-width: 700px) {
	.house_block_list_wrap .house_block_table table th{
		width: auto;
		min-width: 0px;
	}
}

.house_block_list_wrap .house_block_freearea{
	font-size: 13px;
	color: #666666;
	margin: 0 0 20px 0;
}

.house_block_list_wrap .house_block_func{
	display: flex;
	flex-wrap: wrap;
	white-space: nowrap;
}

.house_block_list_wrap .house_block_func_head{
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
}

.house_block_list_wrap .house_block_func_title{
	font-size: 14px;
	line-height: 1;
	border: 1px solid #cccccc;
	padding: 10px 15px;
}

.house_block_list_wrap .house_block_func_place{
	font-size: 14px;
	margin: 0 0 0 18px;
}

.house_block_list_wrap .house_block_func_link{
	margin: 0 0 0 20px;
}

.house_block_list_wrap .house_block_func_link ul{
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	margin: 0 -15px -15px 0;
}

.house_block_list_wrap .house_block_func_link ul li{
	padding: 0 15px 15px 0;
}

.house_block_list_wrap .house_block_btn_area{
	white-space: nowrap;
	margin: 30px 0 0 0;
}

.house_block_list_wrap .house_block_btn_area .row_content{
	margin: 0 -12px -12px 0;
}

.house_block_list_wrap .house_block_btn_area .col{
	padding: 0 12px 12px 0;
	width: 46.3%;
}

.house_block_list_wrap .house_block_btn_area .btn_wrap.type_normal .btn_block,
.house_block_list_wrap .house_block_btn_area .btn_wrap.type_normal .btn{
  min-height: 36px;
}

.house_block_list_wrap .house_block_btn_area .btn_wrap.type_normal .btn{
  padding: 10px 10px;
}

.house_block_list_wrap .house_block_btn_area .row_content{
	justify-content: center;
}

@media screen and (max-width: 1300px) {
	
	.house_block_list_wrap .house_block_btn_area .row_content{
		justify-content: flex-start;
	}
	
	.house_block_list_wrap .house_block_btn_area .col{
		padding: 0 12px 12px 0;
		width: 50%;
	}
	
}

@media screen and (max-width: 950px) {
	.house_block_list_wrap .house_block_btn_area .col{
		width: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.house_block_list_wrap .house_block_func{
		display: block;
	}
	
	.house_block_list_wrap .house_block_func_link{
		margin: 10px 0 0 0;
	}
	
}

@media screen and (max-width: 769px) {
	
	.house_block_list_wrap .house_block_content{
		margin: 0;
	}
	
	.house_block_list_wrap .house_block_content > *{
		float: none !important;
		clear: none !important;
		width: 100%;
		padding: 0 0px 0px 0;
	}

	.house_block_list_wrap .house_block_slide,
	.house_block_list_wrap .house_block_btn_area{
		float: none;
		clear: none;
	}
	
	.house_block_list_wrap .house_block_img{
		margin: 0 0 20px 0;
	}
	
}

.house_block_list_wrap .house_block_history_btn{
	margin: 0 0 33px 0;
}

.house_block_list_wrap .house_block_history_btn .row_content{
	justify-content: flex-end;
}

.house_block_list_wrap .house_block_history_btn .btn_wrap.type_normal .btn_block,
.house_block_list_wrap .house_block_history_btn .btn_wrap.type_normal .btn{
	min-height: 40px;
}

.house_block_list_wrap .house_block_history_btn .btn_wrap.type_normal .btn{
	padding: 0 15px;
}

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

.house_block_list_wrap .house_block_history_btn + .house_block_content .house_block_btn_area .row_content{
	justify-content: center;
}

.house_block_list_wrap .house_block_history_btn + .house_block_content .house_block_btn_area .col{
	min-width: 180px;
	max-width: 180px;
}
	
}

@media screen and (max-width: 700px) {
	
	.house_block_list_wrap .house_block_history_btn{
		margin-bottom: 20px;
	}
	
	.house_block_list_wrap .house_block_history_btn .btn_wrap.type_normal{
		width: 100%;
	}
}

/* ------------------------------------------------------------------------------
.news_list_wrap
------------------------------------------------------------------------------ */

.news_list_wrap{
	margin: 46px auto 52px auto;
	max-width: 1100px;
}

.news_list_wrap .news_list{
	display: table;
	width: 100%;
}

.news_list_wrap .news_list_block{
	display: table-row;
}

.news_list_wrap .news_list_head,
.news_list_wrap .news_list_content{
	padding-top: 32px;
	padding-bottom: 32px;
	display: table-cell;
	vertical-align: top;
	border-bottom: 1px solid #cccccc;
}

.news_list_wrap .news_list_block:first-child .news_list_head,
.news_list_wrap .news_list_block:first-child .news_list_content{
	padding-top: 0px;
}

.news_list_wrap .news_list_head_in{
	display: table;
	white-space: nowrap;
}

.news_list_wrap .news_list_head_in > *{
	display: table-cell;
	vertical-align: middle;
}

.news_list_wrap .news_date{
	position: relative;
	display: inline-block;
	vertical-align:  middle;
	font-size: 12px;
	line-height: 1;
	color: #999999;
	text-align: left;
}

.news_list_wrap .news_list_block.new .news_date{
	padding-left: 50px;
}

.news_list_wrap .news_list_block.new .news_date:after{
	content: "NEW";
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -8px;
	line-height: 1;
	color: #ffffff;
	min-width: 37px;
	height: 16px;
	text-align: center;
	border-radius: 4px;
	font-size: 10px;
	line-height: 16px;
	background-color: #ff9f40;
}

.news_list_wrap .news_list_content{
	font-size: 15px;
	width: 100%;
	padding-left: 25px;
	padding-right: 25px;
}

.news_list_wrap .news_list_category{
}

#top_topics  .news_list{
	border-top: 1px solid #e5e5e5;
}

#top_topics .news_list_wrap .news_list_head,
#top_topics .news_list_wrap .news_list_content{
	border-color: #e5e5e5;
}

#top_topics .news_list_wrap .news_list_date{
	color: #cccccc;
}

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

	#top_topics .news_list_wrap .news_list_head,
	#top_topics .news_list_wrap .news_list_content{
		padding-top: 16px;
		padding-bottom: 16px;
	}

	#top_topics .news_list_wrap .news_list_head{
		padding-left: 30px;
	}

	#top_topics .news_list_wrap .news_list_category{
		padding: 0 0 0 25px;
	}
	
	#top_topics .news_list_wrap .news_list_block .news_date{
		padding-left: 50px;
	}

}


.news_list_wrap .news_list_category .category_list .category_list_switch{
	font-size: 12px;
	background-color: #333333;
}

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

@media screen and (max-width: 700px) {

	.news_list_wrap .news_list{
		display: block;
	}

	.news_list_wrap .news_list_block{
		display: block;
		border-bottom: 1px solid #e5e5e5;
		padding: 15px 4px;
	}

	.news_list_wrap .news_list_head,
	.news_list_wrap .news_list_content{
		display: block;
		border-bottom: none;
		padding: 0;
	}

	.news_list_wrap .news_list_head{
		margin-bottom: 10px;
	}
	
	.news_list_wrap .news_date{
		padding-left: 0;
	}
	
	.news_list_wrap .news_list_block.new .news_date{
		padding-left: 50px;
	}
	
	#top_topics .news_list_wrap .news_list_category{
		padding-left: 15px;
	}
	
}

/* ------------------------------------------------------------------------------
.gallery_list_wrap
------------------------------------------------------------------------------ */

.gallery_list_wrap{
	margin: 55px 0;
}

.gallery_list_wrap .gallery_list{
	display: flex;
	flex-wrap: wrap;
}

.gallery_list_wrap .gallery_list_block{
	width: 20%;
}

.gallery_list_wrap .gallery_list_block_in{
	background-color: #ffffff;
}

.gallery_list_wrap .gallery_list_block .img_cover{
	padding-bottom: 100%;
}

@media screen and (max-width: 900px) {
	.gallery_list_wrap .gallery_list_block{
		width: 25%;
	}
}

@media screen and (max-width: 700px) {
	.gallery_list_wrap .gallery_list_block{
		width: 33.3%;
	}
}

/* ------------------------------------------------------------------------------
#first_load
------------------------------------------------------------------------------ */

#first_load{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999;
}

/* ------------------------------------------------------------------------------
#header
------------------------------------------------------------------------------ */

#header{
	height: 80px;
}

#header .main_content_wrap{
	padding-left: 30px;
	padding-right: 30px;
}

#header_in{
	position: fixed;
	left: 0;
	width: 100%;
	height: 80px;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-color: #fff;
	z-index: 50000;
}

@media screen and (max-width:768px) {
	#header #header_in{
		position: relative;
		padding-left: 0;
		padding-right: 0;
	}
}

#header_content{
	position: relative;
	height: 100%;
	max-width: none;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-color: #ffffff;
	
}

#header_func{
	display: flex;
	align-items: center;
}

#header_history{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	/*margin: 0 32px 0 25px;*/
	margin: 0 30px 0 0 ;
	line-height: 0;
}

#header_history img{
	max-width: none;
}

#header_history_obj{
	position: relative;
	display: inline-block;
}

#header_history_number{
	display: flex;
	position: absolute;
	top: -5px;
	right: -8px;
	z-index: 2;
	font-size: 10px;
	color: #ffffff;
	border-radius: 100%;
	background-color: #ff9f40;
	line-height: 1;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
}

#header_history_text{
	display: inline-block;
	vertical-align:  middle;
}

@media screen and (max-width:768px) {
	
	#header_content{
		z-index: 30;
	}
	
	#header_sns{
		display: none;
	}
	
	#header_history{
		margin: 0;
		width: 80px;
		height: 80px;
		background-color: #ffffff;
		display: block;
	}
	
	#header_history .link_block{
		width: 100%;
		height: 100%;
	}
	
	#header_history_in{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		background-color: #f0f0f0;
		flex-direction: column;
	}
	#header_history_in .main_nav_func_nav_block_obj_text_sp{
		margin-top: 10px;
	}
	#header_history_in #header_history_obj{
		margin-top: -10px;
	}
	
}

@media screen and (max-width:768px) {
	#header_history{
		width: 64px;
		height: 64px;
	}
}


#header_logo01{
	position: absolute;
	top: 50%;
	left: 50%;
	/*margin: -25px 0 0 -134px;
	line-height: 1;
	*/
	margin: -26px 0 0 -134px;
	line-height: 0;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.4em;
	z-index: 10;
}

#header_logo01 figure{
	/*margin-bottom: 6px;*/
}

#header_logo02{
	/*position: absolute;
	right: 0;
	top:50%;
	margin: -27px 0 0 0;*/
	margin: 0 40px;
}

/* #main_nav_func_nav_list_wrap  */

#main_nav_func_nav_list_wrap{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

#main_nav_func_nav_list{
	display: flex;
	height: 100%;
}

.main_nav_func_nav_list_item{
	width: 120px;
}

.main_nav_func_nav_list_item,
.main_nav_func_nav_block,
.main_nav_func_nav_link{
	display: flex;
	flex-direction: column;
}

.main_nav_func_nav_block_in{
	display: flex;
	align-items: center;
	justify-content: center;
}

.main_nav_func_nav_link{
	text-decoration: none !important;
}

.main_nav_func_nav_block,
.main_nav_func_nav_link,
.main_nav_func_nav_block_in{
	flex-grow: 1;
}

.main_nav_func_nav_block_in{
	background-color: #F0F0F0;
	transition: background-color 0.4s ease 0s;
}

.main_nav_func_nav_link:hover .main_nav_func_nav_block_in{
	background-color: #C0F2D0;
}

.main_nav_func_nav_block_obj_img{
	text-align: center;
	height: 35px;
	line-height: 0;
}

.main_nav_func_nav_block_obj_text{
	font-size: 12px;
}
.main_nav_func_nav_block_obj_text_sp{
	display: none;
}


#header_logo02{
	position: relative;
	z-index: 3000;
}

#header_history{
	position: relative;
	z-index: 3000;
}

@media screen and (max-width:1150px) {
	#main_nav_func_nav_list_wrap{
		top: 80px;
	}
	#header_logo02{
		position: absolute;
		right: 30px;
		top: 50%;
		margin: -27px 0 0;
	}
	#header_history{
		margin-left: 25px;
	}
}

@media screen and (max-width:768px) {
	
	#header_logo02{
		display: none;
	}
	#header_history{
		position: static;
		margin-left: 0px;
	}
	#main_nav_func_nav_list_wrap{
		top: 0px;
		right: auto;
		left: 128px;
	}
	.main_nav_func_nav_list_item{
		width: 64px;
	}
	.main_nav_func_nav_block_obj_img{
		height: auto;
	}
	.main_nav_func_nav_block_obj_text{
		display: none;
	}
	.main_nav_func_nav_block_obj_text_sp{
		display: block;
		font-size: 11px;
	}
	#header_history .link_block{
		opacity: 1 !important;
		transition: none !important;
	}
	
	#header_history_in{
		transition: background-color 0.4s ease 0s !important;
	}
	
	#header_history .link_block:hover #header_history_in{
		background-color: #C0F2D0 !important;
	}
	

}

/* ------------------------------------------------------------------------------
#main_nav_area
------------------------------------------------------------------------------ */

#main_nav_area{
	/*background-color: #f0f0f0;*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}

#main_nav_wrap{
	/*background-color: #f0f0f0;*/
}

#main_nav{
	position: relative;
}

#main_nav_bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 300vh;
	z-index: 10;
	background-color: rgba(0,0,0,0.8);
	display: none;
}
	
#main_nav_content{
	width: 310px;
	background-color: #ffffff;
	font-size: 15px;
}

#main_nav_switch_obj_wrap{
	width: 22px;
	height: 15px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

#main_nav_switch_obj{
	position: relative;
	width: 22px;
	height: 15px;
	transition: height 0.2s ease 0s,width 0.2s ease 0s;
}

#main_nav_switch_obj .bar{
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background-color: #000;
  transition: transform 0.2s ease 0s, left 0.2s ease 0s, width 0.2s ease 0s;
  transform-origin: 0% 0%; 
}

#main_nav_switch_obj .bar.bar01{
  top: 0;
}

#main_nav_switch_obj .bar.bar02{
  top: 7px;
}

#main_nav_switch_obj .bar.bar03{
  bottom: 0;
}


.nav_switch_anime01 #main_nav_switch_obj .bar.bar02{
  display: none; 
}

.nav_switch_anime02 #main_nav_switch_obj{
  height: 6px;
}

.nav_switch_anime03 #main_nav_switch_obj .bar.bar01{
  left: 3px;
  transform: rotate(45deg);
}

.nav_switch_anime03 #main_nav_switch_obj .bar.bar03{
  left: 3px;
  transform: rotate(-45deg);
}

.nav_switch_anime03 #main_nav_switch_obj{
  height: 15px;
  width: 20px;
}

.nav_switch_anime03 #main_nav_switch_obj .bar{
	width: 20px;
}

#main_nav_func{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	padding: 0 0 0 80px;
	/*transition: padding-left 0.4s ease 0s;*/
	width: 100%;
}

.footer_active #main_nav_func{
	padding-left: 0;
}

@media screen and (min-width:769px) {
	
	#main_nav_wrap{
		height: auto !important;
	}
	
	#main_nav_content_wrap{
		position: relative;
		width: 80px;
		overflow:  hidden;
	}

	.nav_anime01 #main_nav_content_wrap{
		transition: width 0.4s ease 0s;
	}

	.nav_active #main_nav_content_wrap{
		width: 310px;
	}

	.nav_active.icon_click #main_nav_content_wrap{
		width: 620px;
	}

	
	.nav_select #main_nav_content_wrap{
		overflow:  visible;
	}
	
	#main_nav_area{
		position: absolute;
		top: 0;
		left: 0;
		transition: left 0.4s ease 0s;
	}

	.footer_active #main_nav_area{
		/*left: -600px;*/
		left: -80px;
	}
	
	.footer_active.nav_active #main_nav_area{
		left: 0px;
	}
	
	#main_nav_bg{
		display: none !important;
	}
	
	#main_nav_head #main_nav_return{
		display: none;
	}
	
}

@media screen and (max-width:768px) {
	
	#main_nav_territory{
		position: absolute;
		top: 80px;
		left: 0;
	}
	
	#main_nav_zone{
		position: absolute;
		top: 0;
		left: 0;
		transition: left 0.4s ease 0s;
	}

	.footer_active #main_nav_zone{
		/*left: -600px;*/
		left: -80px;
	}
	
	.footer_active.nav_active #main_nav_zone{
		left: 0px;
	}
	
	.main_nav_active #main_nav_zone{
		position: fixed;
	}
	
	#main_nav_func{
		padding-left: 64px;
	}

	/*.nav_active,
	.nav_active body{
		overflow:  hidden;
	}*/
	
	#main_nav_wrap{
		height: 100vh;
	}
	
	.nav_select #main_nav_wrap{
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	
	#main_nav{
	}
	
	#main_nav_content{
		display: block;
		width: 310px;
		border-bottom: 1px solid #fff;
	}
	
	#main_nav_content_wrap{
		position: absolute;
		top: 0;
		left: -310px;
		padding-bottom: 200px;
		min-height: 100vh;
		/*background-color: #f0f0f0;*/
	}
	
	.nav_anime01 #main_nav_content_wrap{
		transition: left 0.4s ease 0s;
	}
	
	.nav_active #main_nav_content_wrap{
		left: 0;
	}
	
	.nav_select #main_nav_content_wrap{
		position: static;
	}
	
	#main_nav_area{
		background-color: #f0f0f0;
	}

}

@media screen and (min-width:769px) and (max-height:650px) {
	
	.nav_active #main_nav_wrap{
		/*max-height: 100vh !important;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;*/
	}
	
	#main_nav_content_wrap{
		/*background-color: #f0f0f0;*/
	}
	
	.nav_active #main_nav_content_wrap{
		width: 620px;
	}
	
}

#main_nav_switch{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
	width: 80px;
	height: 80px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
}

@media screen and (max-width:768px) {
	#main_nav_switch{
		width: 64px;
		height: 64px;
	}
}

#main_nav_switch_obj{
	
}

#main_nav_switch_text{
	line-height: 1;
	font-size: 11px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	margin: 10px 0 0 0;
}

.main_nav_content{
	width: 100%;
	background-color: #f0f0f0;
	border-right: 1px solid #fff;
}

.main_nav_content:last-child{
	border-right: none;
}

.main_nav_block{
	border-bottom: 1px solid #fff;
}

.main_nav_block:last-child{
	border-bottom: none;
}

#main_nav_head{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 25px;
	background-color: #fff;
}

#main_nav_head #main_nav_return{
	font-size: 12px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

#main_nav_head #main_nav_sns{
	margin: 0 0 0 40px;
}

@media screen and (min-width:769px) {
	#main_nav_head #main_nav_sns{
		display: none;
	}
}

@media screen and (max-width:768px) {
	#main_nav_head{
		height: 64px;
	}
}


/* .main_nav_list */

.main_nav_list{
	
}

.main_nav_list .main_nav_list_block{
	/*border-bottom: 1px solid #fff;*/
	width: 100%;
}

.main_nav_list .main_nav_list_block:last-child{
	border-bottom: none;
}

.main_nav_list .main_nav_list_btn{
	cursor: pointer;
}

.main_nav_list .main_nav_list_btn_main{
}

.main_nav_list .main_nav_list_link{
	display: block;
	background-color: #f0f0f0;
	transition: background-color 0.4s ease 0s, border-color 0.4s ease 0s;
	text-decoration: none !important;
	border-bottom: 1px solid #fff;
}

.main_nav_list .main_nav_list_block:last-child .main_nav_list .main_nav_list_link{
	border-bottom: none;
}

/*
.normal .main_nav_list .main_nav_list_link:hover{
	background-color: #e6e6e6;
}

.normal .main_nav_list .main_nav_list_block:hover .main_nav_list_btn_main .main_nav_list_link{
	background-color: #e6e6e6;
}

.main_nav_list_btn.active,
.main_nav_list_btn.active .main_nav_list_link{
	background-color: #e6e6e6 !important;
}
*/

.normal .main_nav_list .main_nav_list_link:hover{
	background-color: #C0F2D0;
	border-bottom-color: #90D0A4;
}

.normal .main_nav_list .main_nav_list_block:hover .main_nav_list_btn_main .main_nav_list_link{
	background-color: #C0F2D0;
	border-bottom-color: #90D0A4;
}

/*
.main_nav_list_btn.active,
.main_nav_list_btn.active .main_nav_list_link{
	background-color: #C0F2D0 !important;
}*/

.main_nav_list .main_nav_list_content{
	display: table;
	height: 50px;
	width: 100%;
}

.main_nav_list .main_nav_list_content > *{
	display: table-cell;
	vertical-align:  middle;
}

.main_nav_list .main_nav_list_content .image{
	text-align: center;
	width: 80px;
}

/* .main_nav_list_btn_sub */

@media screen and (min-width:769px) {
	.main_nav_list_btn_sub{
		position: absolute;
		height: 100%;
		top: 0;
		left: 310px;
	}

	.main_nav_list_btn_sub_in{
		/*width: 310px;
		border-left: 1px solid #ffffff;
		*/
		height: 100%;
		top: 0;
		/*display: none;*/
		white-space: nowrap;
		padding: 80px 0 0 0;
		width: 0;
		overflow:  hidden;
	}
	
	.main_nav_list_btn_sub_content{
		min-width: 200px;
		height: 100%;
		display: inline-block;
		/*background-color: #e6e6e6;*/
	}
	
	.main_nav_list_btn_sub_list_wrap{
		display: block !important;
	}

}

@media screen and (min-width:769px) and (max-height:750px) {
	.main_nav_list .main_nav_list_content{
		height: 42px;
	}
	.main_nav_list .main_nav_list_content img{
		transform-origin: 50% 50%;
		transform: scale(0.9);
	}
	.main_nav_list_btn_sub_list li a{
		padding: 12px 20px !important;
	}
}

.main_nav_list_btn_sub .main_nav_list_btn_sub_head .main_nav_list_link{
	/*background-color: #e6e6e6;*/
}

/* .main_nav_list_btn_sub_list */



.main_nav_list_btn_sub_list{
	color: #fff;
	line-height: 1.8;
}

.main_nav_list_btn_sub_list li{
	margin: 0 0 0 0;
}

.main_nav_list_btn_sub_list li:last-child{
	margin-bottom: 0;
}

.main_nav_list_btn_sub_list li a{
	position: relative;
	display: block;
	padding:  15px 25px;
	/*padding: 0 0 0 20px;*/
	background-color: rgba(65,163,95,0);
	color: #fff;
	transition: background-color 0.4s ease 0s,color 0.4s ease 0s;
	text-decoration: none !important;
}

.main_nav_list_btn_sub_list li a:hover{
	background-color: rgba(65,163,95,1);
}

/*
.main_nav_list_btn_sub_list li a:after{
	content: "";
	position: absolute;
	top: 0.9em;
	left: 0;
	width: 8px;
	height: 1px;
	background-color: #000;
}*/

.main_nav_list_btn_sub_head{
	border-bottom: 1px solid #ffffff;
}

.main_nav_list_btn_sub_content{
	height: 100%;
	background-color: rgba(8,25,13,0.86);
}

.main_nav_list_btn_sub_head .main_nav_list_content{
	height: 105px;
	font-size: 20px;
}

.main_nav_list_btn_sub_info{
	padding: 0 0 25px 0;
}

.main_nav_list_btn_sub_info .main_nav_list{
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

#main_nav_sub_content{
	display: none;
}

@media screen and (max-width:768px) {
	
	.main_nav_list_btn_sub .main_nav_block{
		position: relative;
	}
	
	.main_nav_list_btn_main .main_nav_list_content .text{
		position: relative;
	}
	
	/*.main_nav_list_btn_main .main_nav_list_content .text:after{
		content: "";
		position: absolute;
		display: block;
		width: 6px;
		height: 10px;
		background-image: url("../img/template/icon_nav_arrow01_black01@2x.png");
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center center;
		right: 25px;
		top: 50%;
		margin: -5px 0 0 0;
		transform-origin: 50% 50%;
		transform: rotate(90deg);
	}
	
	.main_nav_list_btn_main .active .main_nav_list_content .text:after{
		transform: rotate(270deg);
	}*/
	
	.main_nav_list_btn.active .main_nav_list_link{
		background-color: #C0F2D0;
	}
	
	.main_nav_list_btn_sub .text_plus{
		position: absolute;
		top: 20px;
		right: 15px;
		width: 16px;
		height: 16px;
		z-index: 10;
		pointer-events: none;
	}

	.main_nav_list_btn_sub .text_plus:before,
	.main_nav_list_btn_sub .text_plus:after{
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		border-radius: 3px;
		background-color: #000000;
	}

	.main_nav_list_btn_sub .text_plus:before{
		width: 16px;
		height: 2px;
		margin: -1px 0 0 -8px;
	}

	.main_nav_list_btn_sub .text_plus:after{
		width: 2px;
		height: 16px;
		margin: -8px 0 0 -1px;
	}
	
	.main_nav_list_btn.active .main_nav_list_btn_sub .text_plus:after{
		display: none;
	}
	
	.main_nav_list_btn{
		position: relative;
	}
	
	.main_nav_list_btn_sub{
	}
	
	.main_nav_list_btn_sub_in{
		display: block;
		height: auto;
		width: auto !important;
	}
	
	.main_nav_list_btn_sub_list_wrap{
		display: none;
	}
	.main_nav_list_btn_sub_head{
		display: none !important;
	}
	
	.main_nav_content{
		width: 100%;
	}
	
	.main_nav_list_btn_sub_content{
		background-color: #DBFFE7;
	}
	
	.main_nav_content{
		border-right: none;
		border-bottom: 1px solid #fff;
	}

	.main_nav_content:last-child{
		border-bottom: none;
	}
	
	.main_nav_list01 .main_nav_list_block:last-child{
		border-bottom: none;
	}
	
	.main_nav_list_btn_sub_in{
		
	}
	
	.main_nav_list_btn_sub_list_wrap{
	}
	
	.main_nav_list_btn_sub_list li a{
		color: #000000;
	}
	
	.main_nav_list_btn_sub_list li a:hover{
		color: #fff;
		background-color: #41A35F;
	}
	
}

/* ------------------------------------------------------------------------------
#main
------------------------------------------------------------------------------ */

#main{
  position: relative;
}

/* ------------------------------------------------------------------------------
#page_head
------------------------------------------------------------------------------ */

#page_head{
	background-color: #f5f5f5;
	text-align: center;
	padding: 50px 20px 60px 20px;
}

#page_title{
	font-size: 30px;
	line-height: 1.4;
	text-align: left;
	display: inline-block;
}

@media screen and (max-width:768px) {
	
	#page_head{
		background-color: #f5f5f5;
		text-align: center;
		padding: 90px 20px 30px 20px;
	}
	
	#page_title{
		font-size: 24px;
	}
}

@media screen and (max-width:700px) {
	#page_title{
		font-size: 20px;
	}
}

/* ------------------------------------------------------------------------------
#footer
------------------------------------------------------------------------------ */

#footer{
	border-top: 1px solid #eee;
}

#footer .main_content_wrap{
	padding-left: 30px;
	padding-right: 30px;
}

@media screen and (max-width:700px) {
	
#footer .main_content_wrap{
	padding-left: 20px;
	padding-right: 20px;
}
	
}

/* #footer01 */

#footer01{
	background-color: #f5f5f5;
	padding-top: 56px;
	padding-bottom: 56px;
}

#footer01_in{
	max-width: 1300px;
}

#footer01 .footer_slide_block{
	
}

#footer01 .footer_slide_block .footer_slide_img{
	margin: 0 0 18px 0;
}

@media screen and (min-width:701px) {
	#footer01 .footer_slide_block .footer_slide_img{
		height: auto !important;
	}
}

#footer01 .footer_slide_block .img_cover{
	padding-bottom: 47.24%;
}

#footer01 .footer_slide_block .footer_slide_title{
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 5px 0;
}

#footer01 .footer_slide_block .footer_slide_text_in{
	color: #999999;
}

#footer01 .swiper-container{
	max-width: 1100px;
}

@media screen and (max-width:700px) {
	#footer01 .footer_slide_block .img_cover{
		padding-bottom: 56.25%;
	}
	
	#footer01 .swiper_arrow_wrap{
		height: auto;
	}
}

/* #footer02 */

#footer02{
	padding-top: 55px;
	padding-bottom: 70px;
	background-color: #ffffff;
}

#footer02_in{
	max-width: 1300px;
}

#footer02 .footer_link_list_wrap{
	font-size: 13px;
	padding: 0 50px 0 0;
}

#footer02 .footer_link_list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -35px -35px 0;
}

#footer02 .footer_link_list_block{
	padding: 0 35px 35px 0;
}

#footer02 .footer_link_list_block ul{
	padding:0;
}
#footer02 .footer_link_list_block ul li{
	padding-right: 40px;
}
#footer02 .footer_link_list_block ul li.recruit_link{
	padding: 10px 0 0 0;
}
#footer02 .footer_link_list_title{
	font-size: 14px;
	line-height: 1.2;
	border-bottom: 1px solid #cccccc;
	padding: 0 0 12px 0;
	margin: 0 0 15px 0;
}

@media screen and (max-width: 1100px) {
	#footer02 .footer_link_list_block{
		width: 33.3%;
	}
}

@media screen and (max-width: 769px) {
	#footer02{
		padding-top: 35px;
		padding-bottom: 50px;
	}
	#footer02 .footer_link_list_wrap{
		padding: 0;
	}
	#footer02 .footer_link_list_block{
		width: 50%;
	}
	
}

@media screen and (max-width: 500px) {
	#footer02 .footer_link_list_block{
		width: 100%;
	}
}

/* #pagetop_switch */

#pagetop_switch{
  position: absolute;
  top: -18px;
  right: 0;
}

#pagetop_switch_in{
  overflow:  hidden;
  white-space: nowrap;
  padding: 20px 0 0 0;
  height: 68px;
  width: 14px;
  transition: padding-top 0.2s ease 0s;
}

.normal #pagetop_switch:hover #pagetop_switch_in{
  padding-top: 0;
}

#pagetop_switch a{
  width: 100%;
  height: 100%;
}

#pagetop_obj{
  position: relative;
  width: 16px;
  height: 100%;
  overflow:  hidden;
  text-indent: 200%;
  white-space: nowrap;
}

#pagetop_head{
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 8px;
  margin: 0 0 0 -8px;
}

#pagetop_head_left,
#pagetop_head_right{
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  overflow:  hidden;
  transition: width 0.2s ease 0s;
}

#pagetop_head_left,
#pagetop_head_right{
  
}

#pagetop_head_left:after,
#pagetop_head_right:after{
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: #000000;
}

#pagetop_head_left{
  right: 50%;
}

#pagetop_head_left:after{
  right: 0;
  transform-origin: 100% 50%;
  transform: rotate(-45deg);
}

#pagetop_head_right{
  left: 50%;
}

#pagetop_head_right:after{
  left: 0;
  transform-origin: 0% 50%;
  transform: rotate(45deg);
}

#pagetop_bar{
  position: relative;
  top: 1px;
  width: 1px;
  height: calc(100% - 1px);
  background-color: #000000;
  margin: 0 auto;
}

@media screen and (max-width: 769px) {
	#pagetop_switch{
		display: none;
	}
}

/* #footer03 */

#footer03{
	color: #ffffff;
	background-color: #333333;
	padding-top: 30px;
	padding-bottom: 40px;
}

#footer03_in{
	max-width: 1300px;
}

#footer03 .office_list_wrap .office_list{
	flex-wrap: nowrap;
}

#footer03 .office_list_wrap .office_list_btn_wrap{
	display: none;
}

@media screen and (max-width: 1100px) {
	#footer03 .office_list_wrap .office_list{
		flex-wrap: wrap;
	}
	#footer03 .office_list_wrap .office_list .office_list_block{
		width: 33.3%;
	}
}

@media screen and (max-width: 769px) {
	#footer03 .office_list_wrap .office_list .office_list_block{
		width: 50%;
	}
}

@media screen and (max-width: 500px) {
	#footer03 .office_list_wrap .office_list .office_list_block{
		width: 100%;
	}
}

/* #footer04 */


#footer04{
	color: #fff;
	padding-top: 0px;
	padding-bottom: 0px;
}

#footer04:before,
#footer04:after{
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
}

#footer04:before{
	left: 0;
	background-color: #f2de00;
}

#footer04:after{
	left: 50%;
	background-color: #9acc00;
}

#footer04_in{
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
}

#footer04_in:before{
	content: "";
	position: absolute;
	z-index: 1;
	height: 100%;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
	width: 1500px;
	top: 0;
	left: 50%;
	margin: 0 0 0 -750px;
}


#footer_copy{
	position: relative;
	z-index: 2;
	font-size: 11px;
	display: inline-block;
	vertical-align:  middle;
	letter-spacing: -0.4em;
}

#footer_copy > *{
	display: inline-block;
	vertical-align:  middle;
	margin: 0 20px 0 0;
	letter-spacing: 0.05em;
}

#footer_copy > *:last-child{
	margin-right: 0;
	
}

@media screen and (max-width: 769px) {
	#footer_copy > *{
		display: block;
		margin: 0 0 8px 0;
	}
	
#footer_copy > *:last-child{
	margin-bottom: 0;
}
	
}

/* ------------------------------------------------------------------------------
#bread_list_wrap
------------------------------------------------------------------------------ */

#bread_list_wrap{
	font-size: 13px;
	margin-top: 0;
	margin-bottom: 30px;
	padding-top: 22px;
	padding-bottom: 0;
}

#bread_list{
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

#bread_list li{
	display: inline;
}

#bread_list li:after{
	content: "/";
	color: #999999;
	margin: 0 0.5em;
}

#bread_list li a{
	color: #999999;
}

#bread_list li:last-child a{
	color: #000 !important;
	text-decoration: none !important;
	pointer-events: none;
}

#bread_list li:last-child:after{
	display: none;
}

#bread_list_wrap + .main_content_wrap{
	padding-top: 0;
}

/* ------------------------------------------------------------------------------
#page_visual_wrap
------------------------------------------------------------------------------ */

#page_visual_wrap{
	padding-top: 0;
	padding-bottom: 0;
}

#page_visual{
	margin: 0 auto;
	display: table;
	width: 100%;
	height: 360px;
	background-color: #f5f1e9;
}

#page_visual > *{
	position: relative;
	display: table-cell;
	vertical-align: middle;
}

#page_visual_img{
	width: 33%;
}

#page_visual_img .img_cover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#page_visual_text{
	width: 67%;
	padding: 45px;
}

#page_visual_text_in{
}

#page_visual_text .page_visual_title01{
	font-size: 30px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 0.57em 0;
}

#page_visual_text .page_visual_lead{
	margin: 0 0 40px 0;
}

#page_visual_text .page_visual_lead:last-child{
	margin-bottom: 0;
}

#page_visual_wrap + .main_content_wrap{
	padding-top: 60px;
}

#page_visual_wrap .page_visual_head{
	margin: 0 0 12px 0;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj{
	font-size: 24px;
	font-weight: 500;
	display: inline-block;
	vertical-align: bottom;
	padding: 2px 15px;
	color: #ffffff !important;
	background-color: #000000;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_gray01{
  background-color: #999999 !important;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_red01{
	background-color: #ad4e4e !important;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_brown01{
	background-color: #bf864d !important;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_orange01{
	background-color: #ff9f40 !important;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_blue01{
	background-color: #003399 !important;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj.color_blue02{
	background-color: #0099ff !important;
}

@media screen and (max-width: 1000px ){
	#page_visual_text{
		padding: 25px;
	}
	
	#page_visual_wrap .page_visual_head .page_visual_head_obj{
		font-size: 20px;
	}
	
	#page_visual_text .page_visual_title01{
		font-size: 26px;
	}
	
}

@media screen and (max-width: 700px ){
	
#page_visual_wrap{
	padding-top: 0;
	padding-bottom: 0;
}

#page_visual_text_in{
}

#page_visual_text .page_visual_title01{
	font-size: 20px;
}

#page_visual_text .page_visual_lead{
	margin: 0 0 20px 0;
}

#page_visual_wrap + .main_content_wrap{
	padding-top: 40px;
}

#page_visual_wrap .page_visual_head{
	margin: 0 0 12px 0;
}

#page_visual_wrap .page_visual_head .page_visual_head_obj{
	font-size: 16px;
	padding: 2px 10px;
}
	
}

@media screen and (max-width: 600px ){
#page_visual{
	display: block;
	height: auto;
}

#page_visual > *{
	display: block;
}

#page_visual_img{
	width: auto;
}

#page_visual_img .img_cover{
	position: static;
	padding-bottom: 100%;
	height: 0;
}

#page_visual_text{
	width: auto;
	padding: 20px 20px 35px 20px;
}
	
}

/* ----------------------------------------------------------------------
#house_search
----------------------------------------------------------------------*/

#house_search_list_area{
	margin: 50px 0 60px 0;
}

#house_search_list_btn{
	position: fixed;
	z-index: 20000;
	bottom: 20px;
	right: 20px;
	width: 168px;
}

#house_search_list_btn .col{
	flex-grow: 1;
}

#house_search_list_btn .btn_row{
	margin-top: 0 !important;
}

#house_search_list_area:last-child{
	margin-bottom: 0;
}

@media screen and (max-width:700px) {
	
	#house_search_list_area{
		margin: 25px 0 60px 0;
	}
	
	#house_search_list_btn{
		bottom: 0px;
		right: 0px;
		width: 100%;
		background-color: #ffffff;
	}
	
}

/* ----------------------------------------------------------------------
.lead_text_wrap
----------------------------------------------------------------------*/

.lead_text_wrap{
  text-align: center;
  margin: 0 0 45px 0;
}

.lead_text_wrap .lead_text{
  display: inline-block;
  text-align: left;
  /*max-width: 820px;*/
}

.lead_text_wrap:last-child{
  margin-bottom: 0;
}

@media screen and (max-width: 989px) {
  .lead_text_wrap{
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 700px ){
  .lead_text_wrap{
    margin: 0 0 30px 0;
  }
}


/* ----------------------------------------------------------------------
.table
----------------------------------------------------------------------*/

.table{
  display: table;
  width: 100%;
}

.table .table_tr{
  display: table-row;
}

.table .table_th,
.table .table_td{
  display: table-cell;
  vertical-align: top;
}

@media all and (min-width: 701px ) and (max-width: 989px) {

}

@media screen and (max-width: 989px) {

}

@media screen and (max-width: 700px ){
  .table{
    display: block;
  }

  .table .table_tr{
    display: block;
  }

  .table .table_th,
  .table .table_td{
    display: block;
  }
}



/* ---------------------------------------- SWIPER ----------------------------------------  */

.swiper-button-disabled{
  display: none !important;
}

.swiper-wrapper{
  flex-wrap: nowrap !important;
  -webkit-flex-wrap: nowrap !important;
  margin: 0 !important;
}

.swiper-container_wrap{
  position: relative;
  width: 100%;
}


.swiper-pagination_wrap{
  width: 100%;
	margin: 40px 0 0 0;
	line-height: 0;
	text-align: center;
}

.swiper-pagination{
	position: relative;
	text-align: left;
	display: inline-block;
  line-height: 0;
  margin: 0 -20px -20px 0;
  z-index: 3;
}

.swiper-pagination .swiper-pagination-bullet{
	display: inline-block;
	vertical-align:  middle;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #cccccc;
  -ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;	
  margin: 0 20px 20px 0;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #000000;
}

.swiper-pagination .swiper-pagination-bullet:first-child:last-child{
  display: none;
}


.swiper-container_wrap .swiper_arrow_wrap{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-container_wrap .swiper_arrow_wrap_in{
  height: 100%;
  position: relative;
}

.swiper-container_wrap .swiper-button-prev,
.swiper-container_wrap .swiper-button-next{
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  overflow:  hidden;
  white-space: nowrap;
  text-indent: 200%;
	background-color: #ffffff;
	background-image: none !important;
}

.swiper-container_wrap .swiper-button-prev:before,
.swiper-container_wrap .swiper-button-next:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(left, #f2de00 0%, #9acc00 100%);
	background: -webkit-linear-gradient(left, #f2de00 0%,#9acc00 100%);
	background: linear-gradient(to right, #f2de00 0%,#9acc00 100%);
	transition: opacity 0.4s ease 0s;
}

.normal .swiper-container_wrap .swiper-button-prev:hover:before,
.normal .swiper-container_wrap .swiper-button-next:hover:before{
	opacity: 0.7;
}

.swiper-container_wrap .swiper-button-prev:after,
.swiper-container_wrap .swiper-button-next:after{
	content: "";
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -5px;
	width: 9px;
	height: 17px;
	background-position: center center;
	transform-origin: 50% 50%;
	background-image: url("../img/template/slide_arrow01@2x.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.swiper-container_wrap .swiper-button-next:after{
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
  transform:rotate(180deg);
}

.swiper-container_wrap .swiper_arrow_wrap_in{
  position: relative;
  height: 100%;
}

.swiper-container_wrap .swiper-button-prev{
  left: 0;
}

.swiper-container_wrap .swiper-button-next{
  right: 0;
}

.swiper-container_wrap .swiper_arrow_wrap_in{
  position: relative;
  height: 100%;
}


.swiper-container_wrap.arrow_no{
	padding: 0 !important;
}

.swiper-container_wrap.arrow_no .swiper_arrow_wrap{
	display: none !important;
}


/*
------------------------------------ .swiper-container_wrap.type01 ------------------------------------
*/

/* .swiper-container_wrap.type01 .swiper-container */

.swiper-container_wrap.type01{
  position: relative;
  padding: 0 60px;
}

.swiper-container_wrap.type01 .swiper-wrapper{
  height: auto;
}

.swiper-container_wrap.type01 .swiper-slide{
  height: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-container_wrap.type01.arrow_no .swiper-wrapper{
  transform: translate3d(0px, 0px, 0px) !important;
  transition: all 0s ease 0s !important;
}

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

.swiper-container_wrap.type01 .swiper-container{
}

.swiper-container_wrap.type01 .swiper-wrapper{
  z-index: 3; 
}

.swiper-container_wrap.type01 .swiper-slide img{
  max-width: none;
  width: 100%;
}


@media screen and (max-width: 950px) {
  .swiper-container_wrap.type01{
  }
}

/* pad */
@media screen and (max-width: 700px) {
  .swiper-container_wrap.type01{
		padding: 0 20px;
  }
}

/* sp */
@media screen and (max-width: 700px) {
  .swiper-container_wrap.type01{
    padding-bottom: 0;
  }
  .swiper-container_wrap.type01 .swiper-pagination_wrap{
    position: static;
    margin: 23px auto -20px auto;
  }
}

.swiper-container_wrap.type_fade{
  cursor: pointer;
}

.swiper-container_wrap.type_fade .swiper-slide{
  position: relative;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
#popup
----------------------------------------------------------------------*/

html.popup_active,
html.popup_active body{
	overflow:  hidden;
}

*[data-popup_html]{
	display: none;
}

#popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90000;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.4em;
}

#popup:after{
  content: "";
  display: inline-block;
  vertical-align:  middle;
  height: 100%;
}

#popup_in{
  position: relative;
  display: inline-block;
  vertical-align:  middle;
  letter-spacing: normal;
  padding: 50px 0;
  letter-spacing: normal;
  width: 100%;
  max-width: 1200px;
}

#popup_bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 1;
  background-color: rgba(0,0,0,0.9);
}

#popup_content{
  opacity: 0;
  position: relative;
  z-index: 2;
  white-space: normal;
  width: 100%;
  text-align: left;
}

#popup_close_wrap{
	color: #ffffff;
	margin: 30px 0 0 0;
	text-align: center;
	line-height: 1;
}

#popup_close{
	cursor: pointer;
	display: inline-block;
	vertical-align: baseline;
}

.popup_block{
	position: relative;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.666;
  margin: 0 auto;
  padding: 0 50px;
}

/* .ajax_popup_block */

@media screen and (max-width:700px) {
  .popup_block{
    padding: 50px 20px;
  }
  
}

.popup_loader {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255,1), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}


/* .pager_wrap */

.pager_wrap{
	color: #333333;
	line-height: 1;
	margin: 70px 0 0 0;
	display: flex;
	justify-content: center;
}


.pager_wrap .pager{
	display: flex;
}

.pager_wrap .pager > *{
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align:  middle;
	padding: 0 15px;
	border-right: 1px solid #333333;
	height:1.1em;
}


.pager_wrap .pager .dot{
}

.pager_wrap .pager .current{
	text-decoration: underline;
}


.pager_wrap .pager > *:first-child{
	padding-left: 0;
}

.pager_wrap .pager > *:last-child{
	border-right: none;
	padding-right: 0;
}

/* .zoom_content_wrap */

.zoom_content_wrap{
	overflow:  hidden;
}

/* 20201118 404 */

#content404{
}

.content404_block_wrap{
	text-align: center;
}

.content404_block{
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
}

.content404_block_obj{
	
	text-align: center;
}

.content404_title{
	font-size: 22px;
	text-align: center;
	margin: 0 0 10px 0;
}

.content404_lead{
	margin-bottom: 30px;
}

.content404_title span{
	display: inline-block;
	vertical-align: bottom;
}

.content404_text{
	position: relative;
	z-index: 2;
}

.content404_img{
	position: relative;
	z-index: 1;
	margin: -50px 0 15px 0;
}

.content404_btn{
	max-width: 280px;
	margin: 0 auto;
}

.content404_block .row_content.btn_row{
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	.content404_block_wrap{
		padding-top: 30px;
	}
}

/* 20240501 */

/*
.search_box_table_area{

}
.search_box_table_wrap{
	margin: 0 0 50px 0;
}
.search_box_table_wrap:last-child{
	margin-bottom: 0;
}
.search_box_table.type_head{
	margin-bottom: 30px;
}
.search_box_table.type_head .search_box_th{
	width: 100%;
}
.search_box_table.type_head .search_box_th .input_label{
	width: 100%;
	font-size: 20px;
	font-weight: 700;
}
.search_box_table .search_box_tr .search_box_th .input_label,
.search_box_table .search_box_tr .search_box_th .search_box_table_title02{
	white-space: normal;
}*/

.search_box_content[data-search="2"]{
	
}

.search_box_content[data-search="2"] .search_box_td_head01{
	font-size: 15px;
	font-weight: bold;
	border-bottom: 1px solid #CCCCCC;
	margin: 20px 0;
}

.search_box_content[data-search="2"] .search_box_td_head01:first-child{
	margin-top: 0;
}

.search_box_content[data-search="2"] .search_box_td_head01:last-child{
	margin-bottom: 0;
}

.search_box_content[data-search="2"] .search_box_td_head01 .input_label{
	display: block;
	padding: 14px 0;
}

.search_box_content[data-search="2"] .search_box_td{
	padding-bottom: 60px;
}

.search_box_content[data-search="2"] .search_box_th{
	font-weight: bold;
}

.search_box_content[data-search="2"] .input_label.no_area{
	color: #FF9F3E;
}
