@charset 'UTF-8';



/*==========================
　　　　　　Reset
==========================*/
:root {
  --main-lh: 1.7;
  --main-color: #000f1e;
  --insert-color: #ff1a00;
  --main-gradient: linear-gradient(to right, rgba(255,26,0,1) 30%,rgba(152,15,0,1) 100%);
  --font-roboto: 'Roboto', sans-serif;
  --font-mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

body {
	color: var(--main-color);
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, "メイリオ", "ms pgothic", sans-serif;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

ul, ol {
	margin:0;
	padding:0;
}

li {
	list-style-type: none;
}

p {
	margin:0;
	padding:0;
}

a {
	color: var(--main-color);
	text-decoration: none;
}

a, a:hover, button, button:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;  
  transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	margin:0;
	padding:0;
}

dl, dt, dd {
	margin:0;
	padding:0;
}

input:focus, textarea:focus {
  outline:none;
}

input, textarea, button {
	border: none;
	background: none;
}


/*==========================
　　　　　　Common
==========================*/

/*　Layout
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#wrapper {
	overflow: hidden;
	width: 100%;
}
.container {
	box-sizing: border-box;
	padding: 0 15px;
}
.inner {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}
.float_wrap {overflow: hidden;}
.left_clm   {float: left;}
.right_clm  {float: right;}

.l-flex {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
}
.l-flex.jc-space {
	-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		    justify-content: space-between;
}
.l-flex.jc-center {
	-webkit-justify-content: center;
		-ms-justify-content: center;
		    justify-content: center;
}
.l-flex.jc-start {
	-webkit-justify-content: flex-start;
		-ms-justify-content: flex-start;
		    justify-content: flex-start;
}
.l-flex.jc-end {
	-webkit-justify-content: flex-end;
		-ms-justify-content: flex-end;
		    justify-content: flex-end;
}
.l-flex.ai-center {
	-webkit-align-items: center;
		-ms-align-items: center;
		    align-items: center;
}
.l-flex.ai-stretch {
	-webkit-align-items: stretch;
		-ms-align-items: stretch;
		    align-items: stretch;
}
.w10 { width: 10%; }
.w20 { width: 20%; }
.w30 { width: 30%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }
.w100 { width: 100%; }


/*　Font
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.ja {}
.eng {font-family: 'Poppins', sans-serif; letter-spacing: 1px;}
.bold { font-weight: bold; }
.red { color: #ff0000; }
.txt { line-height: 1.7; text-align: justify; }
.mincho {font-family:var(--font-mincho);}


/*　Link
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.txtlink,
.txtlink_o:hover { text-decoration: underline; }


/*==========================
　　　　　　Header
==========================*/
#logomark,
.loading {
	width: 160px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
#logomark {
	animation: roll 2.5s linear infinite;
}
.loading {
	width: auto;
	margin-top: 80px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #00479d;
}
.loading span {
  display: inline-block;
  margin: 0 -.05em;
  animation: loading 1.4s infinite alternate;
}
.loading span:nth-child(2) {
  animation-delay: .1s;
}
.loading span:nth-child(3) {
  animation-delay: .2s;
}
.loading span:nth-child(4) {
  animation-delay: .3s;
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes roll {
    from {
        transform: translate(-50%,-50%) perspective(160px) rotateY(0deg);
    }
    50%{
        transform: translate(-50%,-50%) perspective(160px) rotateY(180deg);
    }
    to{
        transform: translate(-50%,-50%) perspective(160px) rotateY(360deg);
    }
}
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: .2s;
}
#header.fixed {
	background: #fff;
	transition: .2s;
}
.header_inner {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 0;
	transition: .2s;
}
#header.fixed .header_inner {
	padding: 20px 0;
	transition: .2s;
}
.header_logo {
	background: url(img/logo02.png) no-repeat center center / 100%;
}
#header.lower {
	background: #fff;
}
#header.lower .header_inner {
	max-width: 1120px;
}
#gnav li {
	font-weight: bold;
	float: left;
}
#gnav li:not(.contact) {
	margin-right: 25px;
	margin-top: 9px;
}
#gnav li.contact {
	box-sizing: border-box;
	border-radius: 20px;
	overflow: hidden;
}
#gnav li.contact a {
	background: var(--insert-color);
	padding: 8px 20px;
	display: block;
	color: #fff;
}

#header.fixed #gnav li:not(.contact) a {
	color: var(--main-color);
}
#header.fixed .header_logo img,
#header.lower .header_logo img {
	opacity: 0;
}
#gnav li:not(.contact) a:hover {
	color: var(--insert-color);
}
#header.fixed #gnav li:not(.contact) a:hover {
	color: var(--insert-color);
}
#gnav li.contact a:hover {
	background: #fff;
	color: var(--insert-color);
}
#header.fixed #gnav li.contact a:hover,
#header.lower #gnav li.contact a:hover {
	background: var(--main-color);
	color: #fff;
}



/*==========================
　　　　　　Main
==========================*/

/*　TopPage
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.top_mv {
	height: 100vh;
	position: relative;
}
.top_mv video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	z-index: -1;
	object-fit: cover;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.top_mv:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,15,30,.4);
}
.top_catch_wrap,
.top_info_wrap {
	position: relative;
	z-index: 1;
	color: #fff;
}
.top_catch_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.top_catch_wrap .catch {
	font-size: 56px;
	letter-spacing: 12px;
	font-weight: bold;
	font-feature-settings: "palt";
}
.top_catch_wrap .catch span {
	color: var(--insert-color);
}
.top_catch_wrap .txt {
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
	margin-top: 30px;
	line-height: 2;
}
.top_info_wrap {
	max-width: 1160px;
	width: 100%;
	margin: 170px auto 0;
	position: absolute;
	bottom: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.top_lang_nav li {
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	position: relative;
	margin-right: 15px;
}
.top_lang_nav li:not(:last-child):after {
	content: "/";
	position: absolute;
	top: 0;
	left: 100%;
	padding-left: 5px;
}
.top_lang_nav li a {
	color: #fff;
}
.top_lang_nav li a:hover {
	text-decoration: underline;
}
.top_lang_nav li.lang_ja a {
	color: var(--insert-color);
}
.top_news_wrap {
	max-width: 480px;
	width: 100%;
	border: 1px solid #fff;
	box-sizing: border-box;
	padding: 25px 20px;
	font-weight: bold;
	color: #fff;
	overflow: hidden;
	position: relative;
}
.datetime,
.post_title {
	float: left;
}
.datetime {
	margin-right: 25px;
	position: relative;
}
.datetime:after {
	content: "";
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: -15px;
}
.post_title a {
	color: #fff;
}
.post_title a:hover {
	color: var(--insert-color);
}
.top_news_wrap .list_btn {
	position: absolute;
	overflow: hidden;
	top: 50%;
	right: 20px;
	width: 16px;
	height: 11px;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.top_news_wrap .list_btn a {
	display: block;
}
.top_news_wrap .list_btn img {
	vertical-align: top;
}
.top_menu {
	padding: 100px 15px;
	box-sizing: border-box;
	position: relative;
	color: #fff;
}
.top_menu:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0; 
	background: -moz-linear-gradient(left, rgba(0,15,30,1) 0%, rgba(0,12,25,1) 17%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,15,30,1) 0%,rgba(0,12,25,1) 17%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(0,15,30,1) 0%,rgba(0,12,25,1) 17%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


#topMain-eq {background: url(img/top_maineq_bg.jpg) no-repeat center center / cover;}
#topProducts {background: url(img/top_product_bg.jpg) no-repeat center center / cover;}
#topCompany {background: url(img/top_company_bg.jpg) no-repeat center center / cover;}

.top_menu .inner {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.inner_box {
	display: inline-block;
}
.top_menu:nth-child(even) .inner_box {
	float: right;
}
.top_sctl {
	margin-bottom: 30px;
}
.top_sctl .eng {
	font-size: 32px;
	font-weight: bold;
	color: var(--insert-color);
	letter-spacing: 3px;
	position: relative;
}
.top_sctl .ja {
	display: block;
	font-size: 17px;
	font-weight: bold;
	margin-top: 10px;
	letter-spacing: 2px;
}
.more_btn_wrap {
	margin-top: 40px;
	padding: 7px 0;
}
.more_btn_wrap .btn span {
	position: relative;
	padding-left: 33px;
}
.more_btn_wrap .btn {
	color: var(--insert-color);
	font-weight: bold;
	font-size: 12px;
	box-sizing: border-box;
	position: relative;
}
.more_btn_wrap .btn span:before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid var(--insert-color);
	box-sizing: border-box;
	background: transparent;
	position: absolute;
	top: 50%;
	left: 0;
	transition: .2s;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.more_btn_wrap .btn:hover span:before {
	background: var(--insert-color);
	transition: .2s;
}


/*　Lower
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#wrapper.lower {
	margin-top: 112px;
}
.lw_tl_wrap {
	height: 480px;
}
.lw_tl_inner {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.lw_tl_inner:before,
.bg_image {
	width: 150%;
	height: 480px;
	background: #000;
	position: absolute;
	top: 0;
	z-index: -1;
}
.bg_image {
	left: 80px;
	overflow: hidden;
}
.bg_image:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,15,30,.4);
	position: absolute;
	top: 0;
	left: 0;
}
.lw_tl_inner:before {
	content: "";
	right: 80px;
	background: var(--main-gradient);
	z-index: -2;
	top: 60px;
}

.lw_tl {
	padding-top: 225px;
}
.lw_tl .eng {
	font-size: 64px;
	color: #fff;
	letter-spacing: 4px;
	display: block;
}
.lw_tl .ja {
	font-size: 21px;
	letter-spacing: 3px;
	display: block;
	margin-top: 5px;
	color: #fff;
}
.lw_tl_wrap .lang_nav {
	margin-top: 50px;
}
.lw_tl_wrap .lang_nav li.lang_ja {
	border-color: #fff;
	box-sizing: border-box;
}
.lw_tl_wrap .lang_nav li.lang_ja a {
	background: #fff;
	color: var(--insert-color);
}
.lw_tl_wrap .lang_nav li.lang_ja a:hover {
	background: var(--insert-color);
	color: #fff;
}
.bread {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
	padding: 24px 0;
}
.bread li {
	float: left;
	font-size: 11px;
	margin-right: 25px;
	position: relative;
}
.bread li:not(:last-child):after {
	content: "＞";
	position: absolute;
	top: 0;
	right: -18px;
}
.bread li a {
	color: #fff;
}
.bread li a:hover {
	text-decoration: underline;
}
#message {
	position: relative;
	overflow: hidden;
}
#message:before {
	content: "";
	width: 150%;
	height: 600px;
	background: #f7f7f7;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: -1;
	-webkit-transform: translate(-50%,60%) rotate(-15deg);
	   -moz-transform: translate(-50%,60%) rotate(-15deg);
	    -ms-transform: translate(-50%,60%) rotate(-15deg);
	     -o-transform: translate(-50%,60%) rotate(-15deg);
	        transform: translate(-50%,60%) rotate(-15deg);
}
.lw_contents_wrap .inner {
	padding: 80px 0;
}
.lw_contents_wrap section:first-child .inner {
	padding-top: 100px;
}
.massage_wrap .image,
.massage_wrap .content {
	width: 50%;
}
.massage_wrap .content {
	padding-left: 40px;
	box-sizing: border-box;
}
.lw_sctl {
	margin-bottom: 40px;
	text-align: center;
}
.lw_sctl + .txt {
	text-align: center;
	margin-bottom: 45px;
}
.lw_sctl .eng {
	color: var(--insert-color);
	display: block;
	margin-bottom: 10px;
}
.lw_sctl .ja {
	font-family: var(--font-mincho);
	font-size: 32px;
	letter-spacing: 2px;
}
.ceo_name {
	text-align: right;
	margin-top: 80px;
	font-weight: bold;
	letter-spacing: 1px;
}
.ceo_name .name {
	font-size: 24px;
	letter-spacing: 3px;
	padding-left: 10px;
}
#outline {
	background: url(img/logomark_bg.png) no-repeat center center / 560px;
}
#outline .lw_sctl,
#mailform .lw_sctl {
	text-align: center;
}
.tb {
	width: 100%;
	border-collapse: collapse;
	line-height: 1.7;
}
.tb th,
.tb td {
	padding: 20px 0;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.tb th {
	border-bottom: 1px solid var(--insert-color);
	width: 15%;
}
.tb td {
	padding: 20px 40px;
	box-sizing: border-box;
}
.tb tr:first-child th {
	border-top: 1px solid var(--insert-color);
}
.tb tr:first-child td {
	border-top: 1px solid rgba(0,0,0,.1);
}
.tb_td-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.tb_td-flex iframe {
  width: 300px;
  height: 200px;
  padding-left: 24px;
}
.contact_wrap {
	background: var(--main-gradient);
	color: #fff;
	padding: 40px 15px;
	box-sizing: border-box;
	font-size: 17px;
	font-weight: bold;
}
.contact_wrap .more_btn_wrap {
	margin-top: 0;
	border: 2px solid #fff;
	box-sizing: border-box;
	max-width: 360px;
	width: 100%;
	margin-left: 40px;
	border-radius: 50px;
	text-align: center;
	padding: 0;
}
.contact_wrap .more_btn_wrap .btn {
	color: #fff;
	padding: 25px 15px;
	box-sizing: border-box;
	display: block;
}
.contact_wrap .more_btn_wrap .btn span:before {
	border-color: #fff;
}
.contact_wrap .more_btn_wrap .btn:hover span:before {
	background: #fff;
}
.req {
	color: var(--insert-color);
}
.policy_wrap {
	height: 240px;
	overflow-y: scroll;
	border: 1px solid rgba(0,0,0,.1);
	box-sizing: border-box;
	padding: 30px;
	font-size: 12px;
	margin-top: 40px;
}
.policy_wrap .policy_title {
	font-family: var(--font-mincho);
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}
.policy dt {
	font-weight: bold;
	margin-top: 20px;
}
.privacy_link {
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
}
.form_btn {
	max-width: 400px;
	width: 100%;
	margin: 50px auto 0;
	border: 2px solid var(--insert-color);
	border-radius: 50px;
	text-align: center;
	padding: 0;
}
.form_btn .btn {
	padding: 25px 15px;
	display: block;
	box-sizing: border-box;
	color: var(--main-color);
}
button {
	display: block;
	width: 100%;
	cursor: pointer;
}
.env_title {
	font-size: 21px;
	padding-bottom: 10px;
	letter-spacing: 2px;
	position: relative;
	margin-bottom: 15px;
}
.env_title:after {
	content: "";
	width: 100%;
	height: 1px;
	background: -moz-linear-gradient(-45deg, rgba(255,26,0,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(255,26,0,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(255,26,0,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: absolute;
	top: 100%;
	left: 0;
}
.poli_box:not(:first-child) .env_title {
	margin-top: 60px;
}
.mate_list {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.mate_list li {
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	padding: 20px 10px;
	background: #f7f7f7;
	margin-right: 1%;
	box-sizing: border-box;
}
.mate_list li:not(:first-child) {
	margin-top: 1%;
}
.mate_list li:first-child,
.mate_list li:last-child,
.mate_list li:nth-child(6) {
	margin-right: 0;
}
.mate_list li:first-child,
.mate_list li:nth-last-child(2),
.mate_list li:last-child {
	padding: 10px;
}
.mate_list li.w20 {
	width: 19.1666%;
}
.mate_list li.w50 {
	width: 49.47%;
}
.left_bdr_tl {
	font-size: 17px;
	font-weight: bold;
	padding-left: 10px;
	border-left: 1px solid #ff1a00;
	box-sizing: border-box;
	margin-bottom: 25px;
	margin-top: 60px;
}
.left_bdr_tl:first-child {
	margin-top: 0;
}
.tb02 {
	width: 100%;
	border-collapse: collapse;
}
.tb02 th,
.tb02 td {
	padding: 20px 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #e5e5e5;
	line-height: 1.5;
}
.tb02 tr:last-child th,
.tb02 tr:last-child td {
	border-bottom: none;
}
.tb02 th {
	background: #f7f7f7;
	text-align: center;
	font-weight: bold;
}
.topics_tl {
	margin-bottom: 30px;
}
.topics_tl .year {
	font-size: 40px;
	font-family: var(--font-roboto);
	color: #ff1a00;
	margin-right: 10px;
}
.topics_list li {
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.topics_list li:first-child {
	border-top: 1px solid #e5e5e5;
}
.topics_list .title {
	width: 81.77%;
}
.cat_wrap {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.topics_list .cat_wrap {
	width: 18.23%;
}
.topics_list .cat_wrap .date,
.topics_list .cat_wrap .cat {
	display: inline-block;
}
.cat_wrap .date {
	font-weight: bold;
	letter-spacing: 1px;
	font-family: var(--font-roboto);
}
.topics_list .cat_wrap .date {
	width: 55px;
	font-size: 17px;
}
.cat_wrap .cat {
	border: 1px solid #000;
	box-sizing: border-box;
	display: inline-block;
	margin-right: 10px;
}
.cat_wrap .cat a {
	font-size: 11px;
	color: #fff;
	padding: 3px 10px;
	background: #000;
	display: block;
	font-weight: bold;
}
.cat_wrap .cat a:hover {
	background: #fff;
	color: #000;
}
.topics_list .title {
	font-size: 15px;
}
.topics_list .title a:hover {
	text-decoration: underline;
}
.pager_wrap {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 80px;
}
.pager_wrap .pager_btn {
	font-weight: bold;
	border: 2px solid #000;
	border-radius: 50px;
	text-align: center;
	max-width: 160px;
	width: 100%;
	transition: .2s;
}
.pager_wrap .pager_btn a {
	display: block;
	padding: 20px 15px;
	box-sizing: border-box;
}
.pager_wrap .pager_btn:hover {
	border-color: #ff1a00;
}
.pager_wrap .pager_btn a:hover,
.pager_wrap .list_btn a:hover {
	color: #ff1a00;
}
.pager_wrap .list_btn {
	font-weight: bold;
	margin: 0 40px;
}
.single_wrap {
	padding-left: 80px;
	box-sizing: border-box;
	margin-top: 60px;
}
.single_wrap p:not(:first-child) {
	margin-top: 30px;
	line-height: 1.7;
}
.single_wrap img {
	height: auto;
}
#single .left_bdr_tl {
	font-size: 32px;
}
.value_list {
	overflow: hidden;
}
.value_list .value_box {
	width: 47.916%;
	float: left;
}
.value_list .value_box:nth-child(odd) {
	margin-right: 4.168%;
}
.value_list .value_box:not(:nth-child(-n+2)) {
	margin-top: 40px;
}
.value_list .value_box .left_bdr_tl {
	margin: 15px 0;
	line-height: 1.5;
}
.tab {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.tab:after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: -moz-linear-gradient(-45deg, rgba(255,26,0,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(255,26,0,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(255,26,0,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.tab li {
	padding: 25px 10px;
	box-sizing: border-box;
	max-width: 200px;
	width: 100%;
	background: #f6f6f6;
	border-radius: 0 10px 0 0;
	text-align: center;
	font-weight: bold;
	margin-right: 10px;
	cursor: pointer;
	line-height: 1.5;
}
.tab li:last-child {
	margin-right: 0;
}
.tab li.current {
	border-radius: 10px 10px 0 0;
	color: #ff1a00;
	background: #fff;
	border: 1px solid #ff1a00;
	border-bottom: none;
	z-index: 1;
	position: relative;
}
.eq_tab_wrap {
	margin-top: 100px;
}
.eq_content {
	margin-top: 60px;
}
.eq_content li:not(.current) {
	display: none;
}
.eq_content .left_bdr_tl {
	margin: 40px 0 15px;
}
.pro_list {
	overflow: hidden;
}
.pro_list li {
	width: 30.5%;
	float: left;
	margin-right: 4.25%;
	margin-top: 40px;
}
.pro_list li:nth-child(3n) {
	margin-right: 0;
}
.pro_list li:nth-child(-n+3) {
	margin-top: 0;
}
.pro_list .image {
	overflow: hidden;
}
.pro_list .image img {
	height: auto;
}
.pro_list .image a {
	display: block;
}
.pro_list .image a:hover img {
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}
.pro_list .left_bdr_tl {
	margin-top: 15px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.6;
}
.pro_list .left_bdr_tl a:hover {
	color: #ff1a00;
}
#pro_single .image_num {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	counter-reset: number 0;
	margin-top: 30px;
}
#pro_single .image_wrap {
	text-align: center;
}
#pro_single .image_num li {
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
	width: 24.114%;
	margin-right: 1.181%;
	margin-top: 1.181%;
	padding: 20px;
	padding-left: 45px;
	font-weight: bold;
	position: relative;
	line-height: 1.5;
}
#pro_single .image_num li:before {
	counter-increment: number 1;
	content: counter(number) "";
	width: 20px;
	height: 20px;
	background: #ff1a00;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	text-align: center;
	position: absolute;
	top: 50%;
	left:15px;
	box-sizing: border-box;
	padding-top: 4px;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#pro_single .image_num li:nth-child(4n) {
	margin-right: 0;
}
#pro_single .image_num li:nth-child(-n+4) {
	margin-top: 0;
}
#pro_single .single_tl {
	font-size: 32px;
}
#pro_single .left_bdr_tl {
	padding-left: 15px;
}
.pro_ex_list dl {
	background: #f7f7f7;
	padding: 30px 40px;
	box-sizing: border-box;
	margin-top: 20px;
	line-height: 1.6;
}
.pro_ex_list dl:first-child {
	margin-top: 0;
}
.pro_ex_list dl .left_bdr_tl {
	margin-top: 0;
}
#pro_ex {
	position: relative;
}
#pro_ex:before {
	content: "";
	width: 1px;
	height: 40px;
	background: #ff1a00;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#pro_single .image_wrap img {
	height: auto;
}
#message .lw_sctl + .txt {
	text-align: left;
}



/*==========================
　　　　　　Footer
==========================*/
#footer {
	background: #f2f3f4;
	padding: 0 15px;
	box-sizing: border-box;
}
.footer_inner,
.footer_bottom {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
}
.address {
	margin-top: 20px;
}
.lang_nav {
	margin-top: 20px;
}
.lang_nav li {
	float: left;
	margin-right: 5px;
	box-sizing: border-box;
}
.lang_nav li a {
	padding: 5px 15px;
	display: block;
	color: #fff;
	font-size:11px;
	font-weight: bold;
}
.lang_nav li.lang_ja {
	border: 1px solid var(--insert-color);
}
.lang_nav li.lang_eng {
	border: 1px solid var(--main-color);
}
.lang_nav li.lang_ja a {
	background: var(--insert-color);
}
.lang_nav li.lang_eng a {
	background: var(--main-color);
	font-family: var(--font-roboto);
	letter-spacing: 1px;
}
.lang_nav li a:hover {
	background: #fff;
}
.lang_nav li.lang_ja a:hover {
	color: var(--insert-color);
}
.lang_nav li.lang_eng a:hover {
	color: var(--main-color);
}
.footer_nav_box {
	float: left;
	margin-right: 30px;
}
.footer_nav_box:nth-child(3) {
	margin-right: 60px;
}
.footer_nav_box:last-child {
	margin-right: 0;
}
.nav_title {
	color: var(--insert-color);
	font-weight: bold;
	margin-bottom: 20px;
}
.footer_nav_box li {
	margin-bottom: 10px;
}
.footer_nav_box li a:hover {
	color: var(--insert-color);
}
.footer_bottom {
	padding: 0 0 100px;
}
.footer_bottom .tel_wrap .tel {
	font-family: var(--font-roboto);
	color: var(--insert-color);
}
.footer_bottom .tel_wrap .tel .num {
	font-size: 27px;
	color: var(--main-color);
}
.footer_bottom .tel_wrap .time {
	font-size: 11px;
	margin-top: 5px;
}
.copy small {
	font-size: 14px;
	font-weight: bold;
}



