@charset "utf-8";
/* CSS Document */
/* YUI3 CSS Fonts フォントサイズ対応表
10px:77%     11px:85%     12px:93% 
13px:100%    14px:108%    15px:116%
16px:123.1%  17px:131%    18px:138.5%
19px:146.5%  20px:153.9%  21px:161.6%
22px:167%    23px:174%    24px:182%
25px:189%    26px:197%
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    background:transparent;
}
*{
	margin:0;
	padding:0;
	line-height:1.5;
	list-style:none;
}
table{
    border-collapse:collapse;
    border-spacing:0;
}
img{
	border:none;
}
a, a:link,/*未訪問のリンクを指定*/
a:visited,/*訪問済みのリンクを指定*/
a:hover,/*マウスオーバーした時のリンク部分を指定*/
a:active,/*クリック時のリンク部分を指定*/
a{
	text-decoration:none;
}
body{
	font:14px/1.3 Geneva, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

@font-face {
  font-family: U-OTF-GothicMB101Upr-Heavy;
  src: url("../font/U-OTF-GothicMB101Upr-Heavy.otf") format("opentype");
}
@font-face {
  font-family: U-OTF-GothicMB101Upr-DeBold;
  src: url("../font/U-OTF-GothicMB101Upr-DeBold.otf") format("opentype");
}
@font-face {
  font-family: U-OTF-GothicMB101Upr-Medium;
  src: url("../font/U-OTF-GothicMB101Upr-Medium.otf") format("opentype");
}
/* clearfix
----------------------------------------------------*/
.clearfix{ /zoom: 1; }
.clearfix:after{ content: ''; display: block; clear: both; }
/* box-sizing
----------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/*送信ボタン*/
input[type="submit"] {
  -webkit-appearance: none;
}
input[type="reset"] {
  -webkit-appearance: none;
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
/* スクロールバーの有無によるズレ対策 */
html {
	overflow-y: scroll;
    overflow-x: hidden;
	height:100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
.header {
    width: 100%;
	height: 70px;
    background-color:#fff;
}
.hd-logo {
    padding:0 0 0 10px;
   	height:70px;
}
.hd-logo:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}
.hd-logo img {
	vertical-align: middle;
	max-width:100%;
	max-height:50px;
}



/*////////////  Footer /////////////////////*/
footer{
	width: 100%;
	background-color: #000;
}
.footer-wrapper{
	width: 100%;
	position: relative;
	background-color: #000;
	background-image: url(../img/top/footer-background.jpg);
	background-repeat: no-repeat;
	background-size: contain;
}
.footoer-wrapper-center{
	width: 100%;
	margin: 0 auto;
	padding: 70px 0 15px;
}
.under-sns{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	/*gap: 50px;*/
}
.under-sns li{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #fff;
	font-size: 174%;
	line-height: 50px;
	transition: .3s;
}
.under-sns li:nth-child(2){
	margin: 0 30px;
}
.under-sns li img{
	vertical-align: middle;
}
.under-sns li a{
	color: #fff;
}
.under-sns li:hover{
	transform: scale(1.1);
}

.footer-banner{
	display: grid;
	justify-content: center;
	padding: 0 5%;
}


.footer-banner-sub01{
	display: grid;
	gap: 20px;
	padding: 40px 30px 20px;
}
.footer-banner-sub01 li a{
	display: block;
}
.footer-banner-sub01 li{
	border: 1px solid #fff;
	padding: 15px 55px;
	transition: .2s;
	color: #fff;
	text-align: center;
}
.footer-banner-sub01 li:hover{
	transform: translate(2px,2px);
	background-color: #fff;
	color: #000;
}
.footer-banner-sub img{
	width: 100%;
}
.fotter-nav-sub ul li{
	width: ;
}
.fotter-nav-sub ul li a{
	position: relative;
}
.fotter-nav-sub ul li a::after{
	content: '';/* ボーダーライン */
	position: absolute;
	top: 25px;
	left: 0;
	/*線の形状*/
	width: 80%;
	height: 1px;
	background: #fff;
	/*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}
.fotter-nav-sub ul li a:hover::after{
	transform: scale(1.5, 1);
}
.footer-banner-sub{
	display: grid;
	justify-content: ;
	gap: 10px;
	padding: 0 30px 20px;
}
.footer-banner-sub li{
	transition: .2s;
}
	
.footer-banner-sub li:hover{
	opacity: 0.8;
	transform: translate(2px,2px);
}


/*////////////  Footer02 /////////////////////*/
.underfooter-wrapper{
	width:100%;
	background-color: #00467e;
	clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
	-moz-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
}
.underfooter-wrapper-center{
	width: 100%;
	margin: 0 auto;
	padding: 55px 4% 20px;
	display: grid;
	gap: 20px;
}
.underfooter-info img{
	width: 50%;
}
.footer-address{
	padding-top: 25px;
	position: relative;
	color: #fff;
}
.footer-address::after{
	content: '';
	width: 70%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 15px;
	left: 0;
}
.copy{
	font-size: 77%;
	text-align: center;
	padding: 30px 0 5px;
	color: #bae0fe;
}


.l-sp-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    height: 65px;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 4000;
}
.l-sp-tools__item{
    border-right: 1px solid #FFFFFF;
}
.l-sp-tools__item {
    width: 33.33%;
}
.l-sp-tools__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #00a0e9;
    color: #fff;
    font-size: 0.6rem;
	font-weight:bold;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  display: block;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 20%;
  height: 65px;
  z-index: 999;
  font-weight:bold;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  background:#009e9f;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", "YuGothic", "游ゴシック", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  
}
.menu_text{
	font-size: 0.7rem;
	display:block;
}
#factory .el_humburger {
   display: none;
}
.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 18px;
  display: inline-block;
}
.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}
.el_humburger_text.el_humburger_text__close {
  display: none;
}
.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}
.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 1px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-5px) rotate(45deg);
  -ms-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}
.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}
.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}
.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.navi {
  position: fixed;
  right: 0;
  height: 100%;
  padding: 10px 5% 0;
  background-color: rgba(255, 255, 255, 1);
  z-index: 996;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}
.js_humburgerOpen .navi {
  width: 100%;
  transform: translateZ(0) translateX(0);
}
.navi_item {
  position: relative;
  margin-bottom: 15px;
  font-size: 15px;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-weight:bold;
}
.navi_item.op_innerLink {
  cursor: pointer;
}
.navi_logo {
    padding:0 0 20px 0;
   	height:70px;
}
.navi_logo:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}
.navi_logo img {
	vertical-align: middle;
	max-width:100%;
	max-height:50px;
}
.navi_item,
.navi_item a {
  color: #333;
}
.navi_item a{
  display: block;
}
.el_spChildNavOpen {
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 20;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  padding: 10px;
}
.js_openParent.js_fire>.el_spChildNavOpen {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.js_openParent.js_fire>.el_spChildNavOpen>.el_spChildNavOpen_wrapper:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}
.el_spChildNavOpen_wrapper {
  position: relative;
  width: 13px;
  height: 13px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.el_spChildNavOpen_wrapper:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #111;
  position: absolute;
  top: calc(50% - 1px);
}
.el_spChildNavOpen_wrapper:after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #111;
  position: absolute;
  left: calc(50% - 1px);
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.nav_child {
  padding-top: 20px;
}
.nav_child_item a {
  display: block;
  position: relative;
  font-size: 13px;
  padding-left: 20px;
  margin-bottom: 15px;
  margin-left:17px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}
.last_op a {
  margin-bottom: 0px;
  border: none;
}

.js_openSwitch {
  cursor: pointer;
}
.js_openTarget {
  display: none;
}
.nav_child_item a:before {
  height: 1px;
  margin-top: 0;
}
.nav_child_item a:before {
  content: "";
  width: 8px;
  height: 2px;
  background: #17288b;
  display: block;
  position: absolute;
  top: 30%;
  left: 0;
  margin-top: -1px;
}
.nav_child_item a:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 30%;
  right: 14px;
  margin-top: -3px;
  -webkit-transform: tranlate(-50%, -50%);
  -ms-transform: tranlate(-50%, -50%);
  transform: tranlate(-50%, -50%);
  border-left: 6px solid #17288b;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.list_op a:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 24%;
  right: 14px;
  margin-top: -3px;
  -webkit-transform: tranlate(-50%, -50%);
  -ms-transform: tranlate(-50%, -50%);
  transform: tranlate(-50%, -50%);
  border-left: 6px solid #17288b;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/*資料請求*/
.c-btn-style01--type03 a {
    box-sizing: border-box;
    position: relative;
    display: block;
    text-decoration: none;
    padding: 22px 24px;
    font-weight: bold;
    letter-spacing: .1em;
    background: #00467e;
	border: 1px solid #fff;
    color: #fff;
	width:80%;
	margin:0 auto 20px;
	text-align:center;
}
.c-btn-style01--type05{
	display:block;
	font-size: 180%;
	color: #333;
	padding: 0 10px;
	width:100%;
	text-align:center;
	margin-bottom:10px;
}
.c-btn-style01--type05 a{
	color:#333;
	padding:0 5px;
	font-size:131%;
}
.add{
	color:#333;
	text-align:center;
	margin-bottom:100px;
	font-size:108%;
	line-height:1.7;
}
.add a{
	color: #333;
}
