@charset "UTF-8";
/* Component
   ----------------------------------------------------------------- */
/**
 * icon
 */
.lsf {
  font-family: 'LigatureSymbols';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga" 1, "dlig" 1;
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga" 1, "dlig" 1;
  -o-font-feature-settings: "liga" 1, "dlig" 1;
  font-feature-settings: "liga" 1, "dlig" 1;
  word-wrap: normal;
}

.lsf-icon:before,
.lsf-icon-af:after{
  content:attr(title);
  margin-right:0.3em;
  /*font-size:130%;*/
	font-size: 22px;
	font-size: 2.2rem;
  font-family: 'LigatureSymbols';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga" 1, "dlig" 1;
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga" 1, "dlig" 1;
  -o-font-feature-settings: "liga" 1, "dlig" 1;
  font-feature-settings: "liga" 1, "dlig" 1;
	line-height: 1;
  word-wrap: normal;
}

.lsf-icon-af:after {
	margin-left: 0.3em;
	vertical-align: middle;
	font-weight: 400;
}

.sp-v { display: block!important; }		/* ～ 479 */
.sp-h { display: none!important; }		/* 480 ～ 767 */
.tab { display: none!important; }		/* 768 ～ 991 */
.pc { display: none!important; }		/* 992 ～ 1399 */
.pc-m { display: none!important; }		/* 1400 ～ */
.sp { display: block!important; }		/* ～ 767 */
.tab-pc { display: none!important; }	/* 768 ～ */
.sp-tab { display: block!important; }	/* ～ 991 */

@media (min-width: 480px) {
	.sp-v { display: none!important; }		/* ～ 479 */
	.sp-h { display: block!important; }		/* 480 ～ 767 */
	.tab { display: none!important; }		/* 768 ～ 991 */
	.pc { display: none!important; }		/* 992 ～ 1399 */
	.pc-m { display: none!important; }		/* 1400 ～ */
	.sp { display: block!important; }		/* ～ 767 */
	.tab-pc { display: none!important; }	/* 768 ～ */
	.sp-tab { display: block!important; }	/* ～ 991 */
}

@media (min-width: 768px) {
	.sp-v { display: none!important; }		/* ～ 479 */
	.sp-h { display: none!important; }		/* 480 ～ 767 */
	.tab { display: block!important; }		/* 768 ～ 991 */
	.pc { display: none!important; }		/* 992 ～ 1399 */
	.pc-m { display: none!important; }		/* 1400 ～ */
	.sp { display: none!important; }		/* ～ 767 */
	.tab-pc { display: block!important; }	/* 768 ～ */
	.sp-tab { display: block!important; }	/* ～ 991 */
}

@media (min-width: 992px){
	.sp-v { display: none!important; }		/* ～ 479 */
	.sp-h { display: none!important; }		/* 480 ～ 767 */
	.tab { display: none!important; }		/* 768 ～ 991 */
	.pc { display: block!important; }		/* 992 ～ 1399 */
	.pc-m { display: none!important; }		/* 1400 ～ */
	.sp { display: none!important; }		/* ～ 767 */
	.tab-pc { display: block!important; }	/* 768 ～ */
	.sp-tab { display: none!important; }	/* ～ 991 */
}

@media (min-width: 1400px){
	.sp-v { display: none!important; }		/* ～ 479 */
	.sp-h { display: none!important; }		/* 480 ～ 767 */
	.tab { display: none!important; }		/* 768 ～ 991 */
	.pc { display: none!important; }		/* 992 ～ 1399 */
	.pc-m { display: block!important; }		/* 1400 ～ */
	.sp { display: none!important; }		/* ～ 767 */
	.tab-pc { display: block!important; }	/* 768 ～ */
	.sp-tab { display: none!important; }	/* ～ 991 */
}

/**
 * Button
 */
.btn_link {
	width: 200px;
	line-height: 1;
	color: #E4002B;
	display: block;
	padding: 12px 15px;
	text-align: center;
	border: 1px solid #E4002B;
	position: relative;
}
.btn_link.long{
width: 323px;
}
.btn_link.btn_link__wLarge {
	width: 350px;
	max-width: 100%;
}
.btn_link::before {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #E4002B;
	border-right: 1px solid #E4002B;
	-webkit-transform: rotate(45deg);
	transform:  rotate(45deg) translateY(-50%);
	margin-top:-1px;
}

.btn_link:hover {
	background-color: #E4002B;
	color: #fff;
}

.btn_link:hover::before {
	border-color: #fff;
}

.icon_arrow {
  padding-right: 10px;
  position: relative;
}

.icon_arrow::before {
	content: '';
	position: absolute;
	right: 3px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #E4002B;
	border-right: 1px solid #E4002B;
	-webkit-transform: rotate(45deg) translateY(-50%);;
	transform: translateY(-50%) rotate(45deg);
}

a.icon_arrow {
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
	.btn_link {
		max-width: 200px;
		width: 100%;
	}
	.btn_link.long{
		max-width: 323px;
		}
}

/**
 * searchform
 */
.searchform {
	position: relative;
  color: #C8CDD2;
}

.searchform {
	box-sizing: border-box;
	position: relative;
	border: 1px solid #C8CDD2;
	display: block;
	padding: 0 10px;
	border-radius: 20px;
	height: 26px;
	width: 200px;
	overflow: hidden;
	background: #fff;
}

.searchform input[type="text"] {
	width: 100%;
	border: none;
	height: 26px;
	line-height: 26px;
	color: #111;
}

.searchform button[type="submit"] {
	margin-top: -9px;
	padding: 0 10px;
	color: #C8CDD2;
  font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
  position: absolute;
	right: 0;
	top: 50%;
	outline: 0;
}

.searchform ::placeholder {
	color: #C8CDD2;
}

@media screen and (max-width: 767px) {
  .searchform {
    margin: 25px auto;
    padding: 0 35px 0 10px;
    width: 90%;
    height: 36px;
  }

  .searchform input[type="text"] {
    padding: 0.5em 0;
    height: 36px;
    /* line-height: 36px; */
  }

  .searchform button[type="submit"] {
    margin-top: -15px;
    font-size: 30px;
  }
}

/**
 * link
 */
.anchor .anchor_img {
	border: 1px solid transparent;
}

.anchor:hover .anchor_img {
	border: 1px solid #E4002B;
}

.anchor_txt {
  padding-bottom: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid #0B1013;
}
.anchor_txt:hover {
  border-color: #E4002B;
}

/**
 * tab
 */
.tab_btn {
	margin-bottom: 60px;
	letter-spacing: -.4em;
}

.tab_btn > li {
	display: inline-block;
	letter-spacing: normal;
}

.tab_btn > li a {
	font-weight: bold;
	display: block;
	padding: 20px 40px;
	border-bottom: 1px solid #C8CDD2;
}

.tab_btn .is-active {
	color: #E4002B;
	border-bottom-color: #E4002B;
}
/*-----------------------------------------*/



.tabBtn {
	margin: 0 auto 60px;
  max-width: 980px;
	letter-spacing: -.4em;
}

.tabBtn-btm {
  margin-bottom: 100px;
}

.tabBtn_item {
	display: inline-block;
  width: 25%;
	letter-spacing: normal;
  text-align: center;
}
.tabBtn-fix {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
	flex-wrap: wrap;
}

.tabBtn-fix .tabBtn_item {
  max-width: 140px;
  flex: 1;
}

.tabBtn_item > a {
	font-weight: bold;
	display: block;
  padding: 20px 0;
	border-bottom: 1px solid #C8CDD2;
}

.tabBtn_item > a.is-active {
	color: #E4002B;
	border-bottom-color: #E4002B;
}

@media screen and (max-width: 767px) {
  .tabBtn {
    margin-bottom: 30px;
  }

  .tabBtn-btm {
    margin-bottom: 60px;
  }
  .tabBtn-fix .tabBtn_item > a {
    padding: 20px 0;
  }
}
/**
 * title
 */
.ttl01 {
  font-size: 30px;
  font-size: 3.0rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.4;
}

.ttl02 {
  font-size: 20px;
  font-size: 2.0rem;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

.ttl02 span {
	font-weight: normal;
	font-size: 1.6rem;
}
.ttl03 {
  font-size: 16px;
  font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .ttl01 {
    font-size: 26px;
    font-size: 2.6rem;
  }

  .ttl02 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/**
 * text
 */
.txt_pg {
	margin-bottom: 1.5em;
}

/**
 * grid
 */
.grid {
	margin-left: -30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.grid_item {
	margin: 0 0 40px 30px;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: calc((100% / 4) - 30px);
}

.grid_item > a {
  display: block;
  width: 100%;
}

.grid_img {
	margin-bottom: 20px;
	position: relative;
	width: 100%;
}

.grid_img::before {
	content: '';
	display: block;
	padding-top: 100%;
}

.grid_img .inr {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.grid {
		margin-left: -20px;
	}

	.grid_item {
		margin: 0 0 30px 20px;
		flex-basis: calc((100% / 3) - 20px);
	}
}

@media screen and (max-width: 480px) {
	.grid_item {
		flex-basis: calc((100% / 2) - 20px);
	}
}


/**
 * table
 */
table,
th,
td {
  border-collapse: collapse;
  border: 1px solid #C8CDD2;
  line-height: 1.5;
}

.def_tbl {
  width: 100%;
  table-layout: fixed;
}

.def_tbl th {
  padding: 20px;
  font-weight: normal;
  text-align: left;
  background-color: #F3F3F3;
  vertical-align: middle;
}

.def_tbl td {
  padding: 20px;
  vvertical-align: middle;
}

.def_tbl .w180 {
  width: 180px;
}

.def_tbl-nbr th,
.def_tbl-nbr td {
  white-space: nowrap;
}

.scroll_tbl {
	overflow: auto;
	white-space: nowrap;
}

.scroll_tbl::-webkit-scrollbar {
    height: 14px;
}

.scroll_tbl::-webkit-scrollbar-track {
    background: #F1F1F1;
}

.scroll_tbl::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 7px;
}

.scroll_tbl > table {
	width: 100%;
	table-layout: auto;
}

.scroll_tbl > table th {
    padding: 20px;
    font-weight: normal;
		text-align: left;
    background-color: #F3F3F3;
    vertical-align: middle;
}

.scroll_tbl > table td {
    padding: 20px;
    vertical-align: middle;
}

.flex_tbl {
  display: flex;
  border-top: 1px solid #C8CDD2;
  border-left: 1px solid #C8CDD2;
}

.flex_tbl .flexTbl_unit {
  display: flex;
  flex-basis: 50%;
}

.flex_tbl .flexTbl_unit .flexTbl_th,
.flex_tbl .flexTbl_unit .flexTbl_td {
  border-right: 1px solid #C8CDD2;
  border-bottom: 1px solid #C8CDD2;
  padding: 10px 20px;
  width: 50%;
  /*flex: 1;*/
}

.flex_tbl .flexTbl_unit .flexTbl_th {
  background-color: #F3F3F3;
	width: 65%;
}
.flex_tbl .flexTbl_unit .flexTbl_td {
	width: 35%;
}
.flex_tbl .flexTbl_unit .flexTbl_td-2 {
  padding: 0;
  /*flex: 2.5;*/
  border: none;
}

.flex_tbl .flexTbl_unit-col2 > .flexTbl_th {
	width: 30%;
}

.flex_tbl .flexTbl_unit-col2 > .flexTbl_td .flexTbl_th,
.flex_tbl .flexTbl_unit-col2 > .flexTbl_td .flexTbl_td {
	width: 50%;
}

.flex_tbl .flexTbl_unit-col2 > .flexTbl_td {
	width: 70%;
}

.flex_tbl .flexTbl_group {
  width: 50%;
}
/*
.flex_tbl .flexTbl_group-6 {
  width: 60%;
}

.flex_tbl .flexTbl_group-4 {
  width: 40%;
}
*/

.list_tbl dl {
	padding: 20px 0;
	display: flex;
	align-items: center;
	position: relative;
	line-height: 1.8;
}

.list_tbl-row dl {
	display: block;
}

.list_tbl dl::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 180px;
	height: 1px;
	background-color: #E4002B;
}

.list_tbl dl::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #C8CDD2;
}

.list_tbl dl:last-child {
  padding-bottom: 0;
}

.list_tbl dl:first-child {
  padding-top: 0;
}

.list_tbl dl:last-child::after,
.list_tbl dl:last-child::before {
  content: none;
}

.list_tbl dt {
	align-self: center;
	font-weight: bold;
	width: 180px;
}

.list_tbl dd {
	padding-left: 20px;
	flex: 1;
}

.list_tbl .horizontalBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 979px) {
  .flex_tbl .flexTbl_unit .flexTbl_th, .flex_tbl .flexTbl_unit .flexTbl_td {
		padding: 10px;
		white-space: nowrap;
	}
	.flex_tbl .flexTbl_unit .flexTbl_td-2 {
		padding: 0;
	}

	.flex_tbl .flexTbl_unit .flexTbl_th {
		background-color: #F3F3F3;
		width: 60%;
	}
	.flex_tbl .flexTbl_unit .flexTbl_td {
		width: 40%;
	}

	.flex_tbl .flexTbl_unit-col2 > .flexTbl_th {
		width: 20%;
	}

	.flex_tbl .flexTbl_unit-col2 > .flexTbl_td {
		width: 80%;
	}
}
@media screen and (max-width: 767px) {
  .list_tbl dl::before,
	.list_tbl dl::after {
		content: none;
	}

	.list_tbl dl {
    margin-bottom: 20px;
		padding: 0;
		flex-direction: column;
	}

	.list_tbl dt {
		padding: 20px 0;
		border-bottom: 1px solid #E4002B;
		width: 100%;
	}

  .list_tbl dl:first-child dt {
    padding-top: 0;
  }

	.list_tbl dd {
		padding: 20px 0;
		width: 100%;
		border-bottom: 1px solid #C8CDD2;
	}

  .list_tbl dl:last-child dd {
    border: none;
    padding-bottom: 0;
  }

	.list_tbl .horizontalBox {
		display: block;
	}

  .def_tbl .w180 {
    width: auto;
  }

  .flex_tbl {
    flex-direction: column;
  }

  .flex_tbl .flexTbl_unit {
    flex-direction: column;
  }

  .flex_tbl .flexTbl_group {
    width: 100%;
  }

  .flex_tbl .flexTbl_unit .flexTbl_th,
  .flex_tbl .flexTbl_unit .flexTbl_td {
    padding: 20px;
    width: 100%;
  }

  .flex_tbl .flexTbl_unit .flexTbl_td-2 {
    padding: 0;
    display: flex;
  }

  .flex_tbl .flexTbl_td-2 .flexTbl_unit {
    flex: 1;
  }

	.flex_tbl .flexTbl_unit-col2 > .flexTbl_td .flexTbl_th,
	.flex_tbl .flexTbl_unit-col2 > .flexTbl_td .flexTbl_td {
		width: 100%;
	}
  table.def_tbl {
		border-bottom: none;
	}

	table.def_tbl th,
	table.def_tbl td {
		text-align: left;
    display: block;
		border: none;
		border-bottom: 1px solid #C8CDD2;
	}

	.scroll_tbl > table td,
	.scroll_tbl > table th {
		max-width: 120px;
		min-width: 120px;
		white-space: normal;
	}
}
@media screen and (max-width: 640px) {
  /*
  .flex_tbl {
    flex-direction: column;
  }

  .flex_tbl .flexTbl_unit {
    flex-direction: column;
  }

  .flex_tbl .flexTbl_group {
    width: 100%;
  }

  .flex_tbl .flexTbl_unit .flexTbl_th,
  .flex_tbl .flexTbl_unit .flexTbl_td {
    padding: 20px;
    width: 100%;
  }

  .flex_tbl .flexTbl_unit .flexTbl_td-2 {
    padding: 0;
    display: flex;
  }

  .flex_tbl .flexTbl_td-2 .flexTbl_unit {
    flex: 1;
  }
  */
}


/**
 * sp toggleBtn
 */
@media screen and (max-width: 767px) {
.navToggle {
    display: block;
    position: relative;
    /*
    right: 13px;
    top: 12px;
    */
    width: 34px;
    height: 30px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }

	.navToggle span {
			display: block;
			position: absolute;
			width: 20px;
			border-bottom: solid 2px #0B1013;
			-webkit-transition: .35s ease-in-out;
			-moz-transition: .35s ease-in-out;
			transition: .35s ease-in-out;
			left: 7px;
	}

	.navToggle span:nth-child(1) {
			top: 7px;
	}

	.navToggle span:nth-child(2) {
			top: 14px;
	}

	.navToggle span:nth-child(3) {
			top: 21px;
	}

	.navToggle span:nth-child(4) {
			border: none;
			color: #eee;
			font-size: 9px;
			font-weight: bold;
			top: 34px;
	}

	.navToggle.active span:nth-child(1) {
			top: 14px;
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			transform: rotate(-45deg);
	}

	.navToggle.active span:nth-child(2),
	.navToggle.active span:nth-child(3) {
			top: 14px;
			-webkit-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			transform: rotate(45deg);
	}
}

/**
 * pagetop
 */
#pagetop {
	margin-right: -530px;
  width: 40px;
  position: fixed;
  right: 50%;
  bottom: 20px;
}
#pagetop:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
	#pagetop {
		margin-right: -500px;
	}
}
@media (max-width: 980px) {
	#pagetop {
		margin-right: 0;
		right: 20px;
	}
}

/**
 * overlay
 */
.overlay {
	position: fixed;
	z-index: 10;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
	visibility: hidden;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.overlay.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

/**
 * menu close btn
 */
.header .btn_close {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -70px;
  left: 50%;
  margin-left: -10px;
  transform: rotate(45deg);
}

.header .btn_close::before {
  content: '';
  padding: 0;
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: -9px;
  left: 0;
}
.header .btn_close:hover,
.header .btn_close:hover:before,
.header .btn_close:hover:after{
	cursor:pointer;
}
.header .btn_close::after {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  width: 20px;
  height: 2px;
  background: #fff;
	pointer-events:none;
}

/**
 * effect
 */
.is-view-in {
	opacity: 0;
	transform: translate(0,30px);
	-webkit-transform: translate(0,30px);
	transition: transform 1s .2s,opacity 1s .2s;
}
.is-view-on {
	opacity: 1;
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
}


/* Project
   ----------------------------------------------------------------- */
/**
 * mainHeader
 */
.header::after {
	content: '';
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #E4002B;
}

.header .header_right {
  text-align: right;
}

.header .globalNav {
  display: block;
  margin-left: auto;
	width: 500px;
}

.header .globalNav_list {
	display:-webkit-flex;
	display:flex;
	justify-content: space-between;
}

@media (min-width:768px){
	.header .globalNav_list > li{
		padding: 28px 0;
	}
}

.header .globalNav_item > a {

  display: block;
  line-height:1;
}

.header .globalNav_item > a.is-current {
	color: #E4002B;
}

.header .globalNav_item.active > a {
  color: #E4002B;
}

.header .globalNav_subMenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 5;
}
.header .dd_subMenu--scroll {
	overflow-y: scroll;
	max-height: calc(100vh - 160px);
}
.header .dd_subMenu--scroll::-webkit-scrollbar {
	display: none;
}
/*
.header .globalNav_item.hover:hover .globalNav_subMenu{
  display: block;
}
*/
.header .globalNav_subMenu dl {
  margin: 0 auto;
  display: flex;
  max-width: 980px;
  justify-content: space-between;
  text-align: left;
}

.header .globalNav_subMenu dt {
	margin-bottom: 0;
  width: 180px;
  text-align: left;
}

.header .globalNav_subMenu dt > a {
	padding-top: 40px;
	display: block;
	width: 100%;
	height: 100%;
}

.header .globalNav_subMenu dd {
  flex: 1;
}

.header .globalNav_subMenu .globalNav_subMenu_list {
  overflow: hidden;
  border-left: 1px solid #C8CDD2;
}

.header .globalNav_subMenu .globalNav_subMenu_item {
  width: 25%;
  height: 100px;
  float: left;
  border-right: 1px solid #C8CDD2;
  border-bottom: 1px solid #C8CDD2;
}

.header .globalNav_subMenu .globalNav_subMenu_item a {
	padding: 20px 10px;
	display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header .globalNav_ecocsr .globalNav_subMenu_item {
	border-bottom: none;
	border-top: 1px solid #C8CDD2;
}

.header .globalNav_ecocsr .globalNav_subMenu_item:nth-child(5) {
	clear: left;
}

.header .globalNav_subMenu .globalNav_subMenu_item .icon_arrow {
  position: relative;
  flex: 1;
}
/*
.header .globalNav_subMenu .globalNav_subMenu_item .icon_arrow::after {
	content: '\E112';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
*/
.header .globalNav_subMenu .globalNav_subMenu_item img {
  margin-right: 10px;
  width: 60px;
  height: auto;
}

.header .siteNav_list {
  padding: 12px 20px;
  min-width: 386px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
  background-color: #F3F3F3;
}

.header .siteNav_lng {
  position: relative;
  cursor: pointer;
}

.header .siteNav_lng span {
	font-size: 11px;
	font-size: 1.1rem;
	vertical-align: middle;
}

.header .siteNav_lng > a:hover {
	color: #0B1013;
}

.header .siteNav_lng_menu {
	padding-top: 20px;
  display: none;
	position: absolute;
	top: 100%;
	left: -20px;
	width: 120px;
	background: #F3F3F3;
	z-index: 6;
}

.header .siteNav_lng.hover:hover .siteNav_lng_menu {
	top: 100%;
	display: block;
}

.header .siteNav_lng_item {
	text-align: center;
}

.header .siteNav_lng_item a {
	padding: 10px 0;
	display: block;
}

.header .siteNav_lng_item a:hover {
	color: #0B1013;
	background-color: #C8CDD2;
}

.header .siteNav_sns .icon {
  font-size: 22px;
}

@media screen and (max-width: 979px) {
  .header .globalNav_subMenu {
    padding: 0 20px;
  }

  .header .globalNav_subMenu dt {
    width: 130px;
  }

  .header .globalNav_subMenu .globalNav_subMenu_item {
    width: 33.33%;
  }

	.header .globalNav_ecocsr .globalNav_subMenu_item {
		border-top: none;
		border-bottom: 1px solid #C8CDD2;
	}

	.header .globalNav_subMenu .globalNav_subMenu_item-empty {
		display: none;
	}
}

@media screen and (max-width: 767px) {
  .header .header_logo {
    max-width: 110px;
  }

  .header .siteNav_list {
    margin: 0;
    padding: 0;
    justify-content: space-around;
    width: 100px;
    min-width: 100px;
    background-color: transparent;
  }

  .header .siteNav_sns,
  .header .siteNav_search {
    display: none;
  }

  .header .siteNav_lng {
    position: static;
  }

  .header .siteNav_lng .lsf_txt {
    display: none;
  }

  .header .siteNav_lng .lsf-icon::before {
    margin: 0;
    font-size: 32px;
    font-size: 3.2rem;
  }

  .header .header_navSp {
    display: flex;
    width: 100px;
    justify-content: space-around;
    align-items: center;
  }

  .header .navLanguage .icon {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1;
  }

	.header .globalNav {
    display: none;
    position:absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    background: #fff;
    color: #000;
    text-align: left;
    /*transform: translateY(-100%);*/
    /*transition: all 0.6s;*/
    width: 100%;
	}

	.header .globalNav_list {
    margin: 0 auto;
    display: block;
    padding: 0;
    width: 100%;
		overflow: scroll;
			max-height: calc(100vh - 62px);
	}

	.header .globalNav_item {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #C8CDD2;
	}

  .header .globalNav_item a {
    display: block;
    color: #000;
    padding: 20px;
	}

	.header .globalNav .searchform {
		margin: 25px auto;
		padding: 0 35px 0 10px;
		width: 90%;
		height: 36px;
	}


  .header .globalNav .goFb a {
		padding: 15px;
		display: block;
		text-align: center;
		vertical-align: middle;
	}

	.header .globalNav .goFb .icon::before {
		font-size: 30px;
	}

  .header .siteNav_lng_menu {
    padding: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: left;
    width: 100%;
	}

  .header .siteNav_lng_list {
    overflow: hidden;
  }

  .header .siteNav_lng_item {
		/*一旦英語サイトのみ*/
		/*
		float: left;
		width: 33.333%;
		*/
		width: 100%;
	}

  .header .siteNav_lng_item a {
		padding: 15px 0;
		display: block;
		text-align: center;
		border-right: 1px solid #C8CDD2;
	}

  .header .siteNav_lng_item:last-child a {
		border: none;
	}
}

/**
 * bread clump
 */
.topicpath {
  padding: 0;
  background-color: #E4002B;
}

.topicpath .topicpath_list {
  margin: 0 auto;
  max-width: 980px;
}

.topicpath .topicpath_item {
  padding: 10px 0;
  display: inline-block;
}

.topicpath .topicpath_item a {
  margin-right: 15px;
  padding-right: 22px;
  background: url(../img/icon_topicpath.png) right center no-repeat;
}
.topicpath .topicpath_item a,
.topicpath .topicpath_item span {
  display: block;
  color: #fff;
}

@media screen and (max-width: 979px) {
  .topicpath {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .topicpath {
    display: none;
  }
}

/**
 * tabNav
 */
.tabNav {
  margin-top: -20px;
}

@media screen and (max-width: 979px) {
  .tabNav {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .tabNav {
    display: none;
  }
}

/**
 * contentHeader
 */

.contentHeader {
  margin-bottom: 60px;
	padding: 0;
	border-bottom: 1px solid #C8CDD2;
}

.contentHeader > .inr {
	margin: 0 auto;
	max-width: 980px;
	height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contentHeader_ttl {
  flex: 1;
}

.contentHeader .contentHeader_ttlMain {
	padding: 0;
}

.contentHeader .contentHeader_ttlSub {
  margin-top: 10px;
}

.contentHeader .contentHeader_link {
	margin-bottom: 0;
	padding-left: 20px;
	width: 210px;
	height: 100%;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: normal;
  -ms-grid-row-align: normal;
  align-self: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	border-left: 1px solid #C8CDD2;
}

.contentHeader .contentHeader_link > a {
	width: 100%;
	padding: 20px 0;
	display: block;
}

.contentHeader .localNav {
  margin-left: -20px;
  display: none;
  width: 100%;
  width: 100vw;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #C8CDD2;
  position: relative;
}

.contentHeader .localNav_list {
	width: auto;
	white-space: nowrap;
}

.contentHeader .localNav_item {
	display: inline-block;
}

.contentHeader .localNav_item > a {
	display: block;
	padding: 20px;
}

.contentHeader .localNav_item-current > a {
	color: #E4002B;
}

@media screen and (max-width: 979px) {

  .contentHeader {
    padding: 25px 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .contentHeader {
    margin-bottom: 30px;
  }

  .contentHeader > .inr {
    position: relative;
    height: auto;
    min-height: 113px;
  }

  .contentHeader_ttl {
    width: 100%;
    padding: 20px 0;
    border-right: none;
  }

  .contentHeader .contentHeader_link {
    padding: 10px;
    width: auto;
    height: auto;
    position: absolute;
    right: 12px;
    bottom: 20px;
    border: none;
  }

  .contentHeader .contentHeader_link::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #E4002B;
    border-right: 2px solid #E4002B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
  }

  .contentHeader .contentHeader_link.active::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .contentHeader .contentHeader_link > a {
    display: none;
  }
}

/**
 * pageHeader
 */
.pageHeader {
  margin-bottom: 60px;
	padding: 0 0 60px;
	border-bottom: 1px solid #C8CDD2;
}

.pageHeader > .inr {
	margin: 0 auto;
	max-width: 980px;
}

.pageHeader_ttl {
  margin-bottom: 30px;
  text-align: center;
}

.pageHeader_mv {
	margin-bottom: 30px;
  width: 100%;
}

.pageHeader_lead {
	font-size: 15px;
	font-size: 1.5rem;
}
@media screen and (max-width: 979px) {
  .pageHeader {
    padding: 0 20px 60px;
  }
}
@media screen and (max-width: 767px) {
  .pageHeader {
		margin-bottom: 30px;
		padding: 0 20px 60px;
	}

  .pageHeader_ttl {
    margin-bottom: 20px;
  }

  .pageHeader_lead {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/**
 * pageContent
 */
.pageContent-single {
  margin-bottom: 100px;
  padding: 0;
}

.pageContent-single > .inr {
	max-width: 980px;
	margin: 0 auto;
 /* padding: 30px 0 0*/;
	padding: 0;
}

@media screen and (max-width: 979px) {
	.pageContent-single {
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
  /*
  .pageContent {
    padding: 30px 0;
  }
  */

  .pageContent-single {
    margin-bottom: 60px;
  }
  /*
  .pageContent-single > .inr {
    padding: 30px 0 0;
  }
  */
}

/**
 * section
 */
.section {
  margin-bottom: 60px;
  padding: 0;
}

.section_ttl {
	margin-bottom: 30px;
	padding-top: 30px;
	position: relative;
}

.section_ttl::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #C8CDD2;
}

.section_ttl::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 50px;
	height: 1px;
	background-color: #E4002B;
}

.section-g {
	margin-bottom: 60px;
	padding: 60px 0;
	background-color: #F3F3F3;
}

.section > .inr {
	max-width: 980px;
	margin: 0 auto;
}

.section.hr {
  border-bottom: 1px solid #C8CDD2;
}

.sectionPrimary:nth-child(n+2) {
	padding-top: 60px;
	border-top: 1px solid #C8CDD2;
}

.sectionPrimary_ttl {
	margin-bottom: 30px;
}

.sectionSec {
  margin-bottom: 100px;
	padding-top: 60px;
	border-top: 1px solid #C8CDD2;
}

.sectionSec > .inr {
	max-width: 980px;
	margin: 0 auto;
}

.sectionSec_ttl {
	margin-bottom: 30px;
}

@media screen and (max-width: 979px) {
	.section {
		padding: 0 20px;
	}

	.section-g {
		padding: 30px 20px;
	}

	.sectionSec {
		padding: 60px 20px 0;
	}
}

@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 30px;
  }

	.sectionSec {
    margin-bottom: 60px;
		padding: 30px 20px 0;
	}
}


/**
 * contentFooter
 */

.contentFooter {
	text-align: right;
	border-top: 1px solid #C8CDD2
}

.contentFooter > .inr {
	margin: 0 auto;
	max-width: 980px;
}

.contentFooter_nav {
	padding: 0 20px;
	display: inline-block;
	width: 200px;
	border-left: 1px solid #C8CDD2;
}

.contentFooter_nav a {
	padding-top: 20px;
	padding-bottom: 20px;
	display: block;
	text-align: left;
}

@media screen and (max-width: 767px) {

  .contentFooter_nav {
		width: 50%;
	}
}

/**
 * mainFooter
 */
.footer {
	border-top: 1px solid #EA0029;
}
.footer .footer_btm {
	color: #fff;
	background-color: #0B1013;
}

.footer .footer_btm .inr {
	margin: 0 auto;
	padding: 40px 0;
	width: 980px;
	display: flex;
	justify-content: space-between;
}

.footer .footer_left {
	display: flex;
	justify-content: space-between;
}

.footer .tel-number a {
	color:#fff;
	text-decoration:none;
}
.footer .footer_logo {
	margin-right: 25px;
	width: 90px;
}

.footer .copyright {
	align-self: flex-end;
}

.footer .footer_nav {
	width: 980px;
	margin: 0 auto;
	padding: 30px 0;
}

.footer .footer_navItem {
	margin-right: 40px;
	display: inline-block;
}

@media screen and (max-width: 979px) {
  .footer .footer_nav {
		padding: 30px 20px;
		width: 100%;
	}

	.footer .footer_btm .inr {
		padding: 40px 20px;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
.footer .footer_left {
		display: none;
	}

	.footer .footer_nav {
		padding: 0;
	}

	.footer .footer_navItem {
		margin-right: 0;
		display: block;
		border-bottom: 1px solid #C8CDD2;
	}

	.footer .footer_navItem a {
		padding: 15px 20px;
		display: block;
	}

	.footer .footer_btm .inr {
		padding: 10px 0;
		display: block;
		text-align: center;
	}
}


/* Utility
   ----------------------------------------------------------------- */
