@charset "UTF-8";
/* ------------------------------------------------------------

	base style

------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

picture {
  line-height: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  color: #000000;
  font-family: Meiryo, Osaka, sans-serif;
  font-size: 75%;
  text-align: center;
}

/* ---------- fontsize Except IE ---------- */
:root * > body {
  font-size: 12px;
}

/* ---------- for Firefox2 ---------- */
body, x:-moz-any-link {
  font-size: 12px;
}

a:link {
  color: #0000EE;
  text-decoration: none;
}

a:visited {
  color: #551A8B;
  text-decoration: none;
}

a:active {
  color: #3399CC;
  text-decoration: underline;
}

a:hover {
  color: #3399CC;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

p,
address {
  font-size: 100%;
  font-style: normal;
  line-height: 1.85em;
}

#contents p {
  font-size: 110%;
}

/* list default */
ol,
ul {
  list-style: none;
}

ul,
ol,
dl {
  font-size: 100%;
  line-height: 1.85em;
}

#contents ul,
#contents ol,
#contents dl {
  font-size: 110%;
}

ul.list_basic {
  list-style-type: disc;
  padding-left: 15px;
}
ul.list_basic li {
  margin-left: 3px;
}

ul.list_square {
  list-style: none;
  padding-left: 1.5em;
}
ul.list_square > li {
  position: relative;
  padding-left: 0.5em;
  text-indent: -0.9em;
}
ul.list_square > li::before {
  content: "■";
  font-size: 1.2em;
  margin-right: 0.5em;
  display: inline-block;
  color: var(--marker-color, #000000);
}
ul.list_square.black {
  --marker-color: #000000;
}
ul.list_square.red {
  --marker-color: #e60033;
}
ul.list_square.green {
  --marker-color: #008216c5;
}
ul.list_square.blue {
  --marker-color: #00bfff;
}
ul.list_square ul.list_basic {
  text-indent: 0;
}
ul.list_square ul.list_basic li {
  padding-left: 0;
}
ul.list_square ol.list_basic {
  text-indent: 0;
  margin-left: 0;
}
ul.list_square ol.list_basic li {
  margin-left: 0;
}

ol.list_basic {
  list-style-type: decimal;
  margin-left: 20px;
}
ol.list_basic li {
  margin-left: 6px;
}

ol.list_alpha {
  list-style-type: lower-alpha;
  padding-left: 15px;
}
ol.list_alpha li {
  margin-left: 6px;
}

ol.list_note li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  padding-left: 2em;
  text-indent: -2em;
}
ol.list_note li:before {
  display: marker;
  content: "*" counter(cnt) ") ";
}

ul.list_link {
  margin-bottom: 24px;
}

sub {
  vertical-align: baseline;
}

/* sup */
* > sup {
  font-size: 70%;
  vertical-align: text-top;
  line-height: 13px;
}

/* form */
input,
select {
  vertical-align: middle;
}

/* image default */
img {
  border-style: none;
}

/* ----------clear---------- */
.clr {
  clear: both;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: 0 -1px -1px 0;
  border: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

/* ----------container---------- */
#container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-width: 960px;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -359px;
  padding: 140px 0 0;
  box-sizing: border-box !important;
  text-align: left;
}

/* ----------push---------- */
#push {
  height: 400px;
}

/* ----------header---------- */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: url(../images/header_bg.jpg) no-repeat center top;
}

@media only screen and (min-width: 960px) {
  body.fixed #header {
    position: fixed;
    top: -70px;
    z-index: 99999;
  }
}
#logo1 {
  width: 100%;
  height: 70px;
  max-width: 960px;
  margin: 0 auto;
  padding: 17px 0 0 0;
  box-sizing: border-box;
}
#logo1 a {
  display: block;
  width: 308px;
  height: 38px;
}
#logo1 img {
  width: 308px;
  height: 38px;
}

#hdrMenu dt#hdrMenuBtn {
  display: none;
}

/* ----------search---------- */
#hdrMenuContents #header_search .mt-site-search-filter-directories {
  margin: 0;
  display: none;
}
#hdrMenuContents #header_search form {
  width: 202px;
  display: flex;
  border: 2px solid #0086d1;
  border-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 5px;
}
@media only screen and (max-width: 959px) {
  #hdrMenuContents #header_search form {
    width: 280px;
    display: flex;
    border: none;
    border-radius: 5px;
    margin: 0 auto;
  }
}
#hdrMenuContents form input {
  width: calc(100% - 32px);
  appearance: none;
  height: 32px;
  line-height: 32px;
  margin: 0;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  padding: 0.5rem;
  outline: none;
}
#hdrMenuContents form input:focus {
  outline: none;
}
#hdrMenuContents #header_search form button {
  width: 32px;
  height: 32px;
  margin-left: 0;
  border: none;
  background: #fff url("../images/icn_site_search.png") no-repeat 0 0;
  background-size: 100% 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.mt-site-search-result-container__modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.boxSearch .mt-site-search-filter-directories {
  margin: 0;
  display: none;
}
.boxSearch form {
  width: 300px;
  display: flex;
  border: 2px solid #0086d1;
  border-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 5px;
}
@media only screen and (max-width: 959px) {
  .boxSearch form {
    width: 220px;
  }
}
.boxSearch form input {
  width: calc(100% - 32px);
  appearance: none;
  height: 32px;
  line-height: 32px;
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0.5rem;
  outline: none;
}
.boxSearch form input:focus {
  outline: none;
}
.boxSearch form button {
  width: 32px;
  height: 32px;
  margin-left: 0;
  border: none;
  background: #fff url("../images/icn_site_search.png") no-repeat 0 0;
  background-size: 100% 100%;
  text-indent: -9999px;
  cursor: pointer;
}

/* ----------custom search---------- */
.append_search .custom_searchBox {
  background: none !important;
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}
.append_search .custom_searchBox .custom_searchBox_query_input {
  height: 24px !important;
  min-height: 24px !important;
  line-height: 24px !important;
  margin: 0 !important;
  width: 168px !important;
  font-size: 12px !important;
  border: none !important;
  border-radius: 3px 0 0 3px !important;
  padding: 0 0 0 3px !important;
  background-color: #fff;
}
.append_search .custom_searchBox .custom_searchBox_query_input:focus {
  outline: none;
}
@media only screen and (max-width: 599px) {
  .append_search .custom_searchBox .custom_searchBox_query_input {
    width: 260px !important;
  }
}
.append_search .custom_searchBox .custom_searchBox_selects {
  display: none !important;
}
.append_search .custom_searchBox .custom_searchBox_misc {
  display: none !important;
}
.append_search .custom_searchBox_items {
  padding: 3px 5px !important;
  border: 2px solid #0086d1;
  border-radius: 100px;
  display: flex;
}
.append_search .custom_searchBox_submit {
  border: transparent 0 solid;
  font-size: 12px !important;
  background: #fff url(../images/icn_site_search_txt.png) no-repeat center center;
  background-size: 70% 70%;
  color: #0088d2 !important;
  padding: 0 !important;
  height: 24px !important;
  min-height: 24px !important;
  line-height: 24px !important;
  cursor: pointer !important;
  width: 21px !important;
  text-align: center !important;
  margin-left: -1px !important;
}
.append_search .custom_searchBox_submit:before {
  margin-left: 0 !important;
}
.append_search .custom_searchBox_submit span {
  margin: 0 !important;
}
.append_search .custom_searchBox_query_wrap {
  flex-grow: 0 !important;
  background-color: #fff !important;
  border-radius: 3px 0 0 3px !important;
}

.append_search .custom_searchBox {
  margin-bottom: 16px;
}
.append_search .custom_searchBox .custom_searchBox_query_input {
  width: 300px !important;
}
@media only screen and (max-width: 599px) {
  .append_search .custom_searchBox .custom_searchBox_query_input {
    width: 196px !important;
  }
}

.custom_pager_items {
  padding: 10px 0;
}

/* ----------search Result---------- */
.custom_searchBox .custom_searchBox_query_input {
  background-image: none !important;
}

/* ----------main---------- */
#main {
  width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

/* ----------mainIMG---------- */
@media only screen and (min-width: 960px) {
  .mainimgArea {
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: 0px 0px 3px 1px #cccccc;
    border: 1px solid #cccccc;
  }
  .mainimgArea .img {
    width: 435px;
    height: 158px;
    position: relative;
    overflow: hidden;
  }
  .mainimgArea .img img {
    position: absolute;
    top: 0;
    right: 0;
  }
  .mainimgArea .mainimg_txt {
    width: 240px;
  }
  .mainimgArea .mainimg_txt img {
    width: 95%;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .title-block {
    flex-wrap: wrap;
    width: inherit;
  }
  .title-block .index_banner {
    width: 220px;
  }
  .title-block .title-right {
    margin-left: 0;
    margin: 20px 0;
  }
  .mainimgArea {
    margin-bottom: 40px;
    width: 98%;
    box-shadow: 0px 0px 3px 1px #cccccc;
    border: 1px solid #cccccc;
    margin-left: auto;
    margin-right: auto;
  }
  .mainimgArea .img {
    width: 100%;
    height: 158px;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
  }
  .mainimgArea .img img {
    position: absolute;
    top: 0;
    right: 0;
  }
  .mainimgArea .mainimg_txt {
    width: 100%;
    display: block;
    text-align: center;
  }
  .mainimgArea .mainimg_txt img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
/* ----------contents---------- */
#contents {
  float: left;
  width: 690px;
}

/* ----------index_contents---------- */
#index_contents {
  float: left;
  width: 692px;
}

/* ----------footer---------- */
#footer {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 420px;
  background: url(../images/footer_bg.jpg) no-repeat center bottom;
  margin: 30px auto 0;
  text-align: left;
}

#footer dt#ftrBtn {
  display: none;
}

@media only screen and (min-width: 960px) {
  #footer dd#ftrContents {
    display: block !important;
  }
}
ul#footer_btn {
  position: absolute;
  bottom: 18px;
  left: 50%;
  margin: 0 0 0 -475px;
  font-size: 1px;
  line-height: 1%;
  overflow: hidden;
  z-index: 2;
}

ul#footer_btn img {
  display: block;
}

ul#footer_btn li {
  float: left;
}

ul#footer_btn li.btn1 {
  padding-top: 3px;
  padding-right: 12px;
  padding-left: 12px;
}

ul#footer_btn li.btn2 {
  padding-top: 3px;
  padding-right: 20px;
}

ul#footer_btn li.btn3 {
  padding-top: 3px;
}

/* add */
#footer .footer_inner {
  width: 950px;
  padding-top: 55px;
  margin: 0 auto;
}

#footer .footer_inner .footer_link_title {
  font-family: Meiryo, Osaka, sans-serif;
  font-weight: bold;
  border-bottom: 2px solid #6E8EAD;
  padding-bottom: 1px;
  margin-bottom: 3px;
}

.footer_inner a,
.footer_inner a:link {
  color: #333;
  font-size: 13px;
}

#footer .footer_inner .footer_inner_box {
  width: 200px;
  margin-right: 50px;
  float: left;
  line-height: 28px; /* 2015.12.2 */
}

#footer .footer_inner .mr0 {
  margin-right: 0 !important;
}

/* ----------copyright---------- */
#copyright {
  padding: 0 0 0 255px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 1;
}

/* ----------topcontrol---------- */
#topcontrol {
  position: absolute;
  right: 0;
}

#topcontrol img:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 SP
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width: 959px) {
  body {
    font-size: 1rem;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  #container {
    position: relative;
    width: 100%;
    min-width: 320px;
    min-height: 1px;
    height: auto !important;
    background: none;
    margin: 0;
    padding: 50px 0 0;
  }
  #push {
    display: none;
  }
  #navi {
    display: none;
  }
  /* ----------#hdrMenu---------- */
  #hdrMenu {
    position: relative;
  }
  #hdrMenu dd#hdrMenuContents {
    width: 100%;
    position: absolute;
    top: -5px;
    left: 0;
    background-color: #4daade;
    z-index: 99999;
    display: none;
  }
  #hdrMenu dt#hdrMenuBtn {
    position: absolute;
    top: -35px;
    right: 4px;
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background: url(../img_index_rwd/btn_menu.png) no-repeat left top;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    cursor: pointer;
  }
  #hdrMenu.open dt#hdrMenuBtn {
    background: url(../img_index_rwd/btn_close.png) no-repeat left top;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
  #srchBox.watermark {
    padding-bottom: 0px;
  }
  /* ----------index_header---------- */
  #header {
    width: 100%;
    height: 44px;
    background: none;
    background: #0085d0;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    z-index: 99999;
  }
  #header:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 5px;
    background: url(../img_index_rwd/hrd_btm.png) no-repeat left top;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    z-index: 100;
  }
  #header #logo1 {
    position: static;
    width: 70px;
    height: 25px;
    margin: 10px auto 0;
    padding: 0;
    background: url(../img_index_rwd/logo_ntn.png) no-repeat left center;
    background-size: 70px 25px;
  }
  #header #logo1 a {
    display: block;
    width: 70px;
    height: 25px;
  }
  #header #logo1 img {
    display: none;
  }
  #headerSubOuter {
    border-top: 2px solid #2a6382;
  }
  #header_sub_menu {
    width: 250px;
    height: 47px;
    margin: 0px auto 0;
  }
  #header_sub_menu li {
    float: left;
    margin: 7px 0 0;
  }
  #btn_inquiry,
  #btn_lang {
    position: static;
  }
  #header_sub_menu li#btn_inquiry {
    float: right;
  }
  #header_search {
    position: static;
    margin: 0;
    display: block;
    border-top: 2px solid #2a6382;
    padding: 10px 20px;
  }
  /* ----------footer---------- */
  #footer {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto 0;
    background: none;
    background-color: #ececec;
  }
  #footer dt#ftrBtn {
    position: relative;
    display: block;
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background-color: #aaaaaa;
    background-image: -moz-linear-gradient(top, #eeeeee, #aaaaaa);
    background-image: -ms-linear-gradient(top, #eeeeee, #aaaaaa);
    background-image: -o-linear-gradient(top, #eeeeee, #aaaaaa);
    background-image: -webkit-gradient(linear, center top, center bottom, from(#eeeeee), to(#aaaaaa));
    background-image: -webkit-linear-gradient(top, #eeeeee, #aaaaaa);
    background-image: linear-gradient(top, #eeeeee, #aaaaaa);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#aaaaaa', GradientType=0)";
  }
  #footer dt#ftrBtn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: url(../img_index_rwd/icn_plus.png) no-repeat left top;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
  }
  #footer dt#ftrBtn.open:after {
    background: url(../img_index_rwd/icn_minus.png) no-repeat left top;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
  }
  #footer dd#ftrContents {
    display: none;
  }
  /* add */
  #footer .footer_inner {
    width: auto;
    padding: 0px 20px 20px;
  }
  #footer .footer_inner .footer_link_title {
    padding: 10px 0 0;
    margin-bottom: 3px;
  }
  .footer_inner a,
  .footer_inner a:link {
    color: #333;
    font-size: 13px;
  }
  #footer .footer_inner .footer_inner_box {
    width: auto;
    margin-right: 0px;
    float: none;
    line-height: 23px;
  }
  #footer .footer_inner .mr0 {
    margin-right: 0 !important;
  }
  #footer .footer_inner li {
    border-bottom: 1px dotted #999;
  }
  #footer .footer_inner li a {
    display: block;
    padding: 12px 0;
  }
  #footer .footer_inner li#ftrContactBtn {
    text-align: center;
    border-bottom: none;
  }
  /* ----------footer_btn---------- */
  #footer_bottomArea {
    padding-top: 15px;
    background: #0085d0;
    position: relative;
  }
  #footer_bottomArea:after {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 7px;
    background: url(../img_index_rwd/ftr_top.png) no-repeat left top;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    z-index: 100;
  }
  ul#footer_btn {
    position: static;
    width: 210px;
    margin: 0 auto;
  }
  ul#footer_btn img {
    display: block;
    margin: 0 auto;
  }
  ul#footer_btn li {
    float: left;
    width: 50%;
    text-align: center;
  }
  ul#footer_btn li.btn1 {
    float: none;
    clear: both;
    width: auto;
    padding: 15px 0 0 0;
    text-align: center;
  }
  ul#footer_btn li.btn2 {
    padding: 15px 0 0 0;
    padding-right: 0px;
  }
  ul#footer_btn li.btn3 {
    padding: 15px 0 0 0;
  }
  /* ----------copyright---------- */
  #copyright {
    position: static;
    text-align: center;
    padding: 15px 0;
    border-bottom: 5px solid #02639a;
  }
  /* ----------topcontrol---------- */
  #topcontrol {
    position: absolute;
    right: 0;
    bottom: 10px;
  }
  #topcontrol {
    position: absolute;
    right: 0;
    bottom: 10px !important;
    width: 36px;
    height: 36px;
    z-index: 100;
  }
  #topcontrol img {
    width: 36px !important;
    height: 36px !important;
  }
  #topcontrol img:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
  }
  /* ---------main ---------- */
  #main {
    width: 95% !important;
    margin-bottom: 30px;
  }
  .fbox-reverse {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #main.fbox-reverse #l_nav,
  #main.fbox-reverse #contents {
    float: none;
  }
  #main.fbox-reverse #contents {
    width: 100%;
    min-height: 0%;
  }
  .pc_mainimg {
    display: none;
  }
  .sp_mainimg {
    width: 100%;
  }
  .sp_mainimg img {
    width: 100%;
  }
  /* ----------contents---------- */
  #contents {
    float: none;
    width: 100%;
  }
  #contents a {
    word-wrap: break-word;
  }
  /* ----------index_contents---------- */
  #index_contents {
    float: none;
    width: 100%;
  }
  #index_contents .head1 {
    width: calc(100% - 9px);
  }
  #l_nav_adapter {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 599px) {
  .link-catalog.type-04 {
    width: inherit;
  }
}

/*# sourceMappingURL=base_rwd2.css.map */
