html {
  font-size: 62.5%;
  width: 100%;
}

/*--------------------------------------------------------------------------------
　▼ body　
--------------------------------------------------------------------------------*/
body {
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
  font-family: "Meiryo", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka",
    sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

body.font-m {
  zoom: 100%;
}
body.font-l {
  zoom: 120%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/*ズーム*/
body.font-s {
  zoom: 80%;
}
body.font-m {
  zoom: 100%;
}
body.font-l {
  zoom: 120%;
}

@media screen and (max-width: 900px) {
  body.font-s {
    zoom: 100%;
  }
  body.font-m {
    zoom: 100%;
  }
  body.font-l {
    zoom: 100%;
  }
}

/*--------------------------------------------------------------------------------
　▼ その他　
--------------------------------------------------------------------------------*/
.line {
  line-height: 2.4rem;
}

/*--------------------------------------------------------------------------------
　▼ aタグ　
--------------------------------------------------------------------------------*/
a {
  color: #004088;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

/*--------------------------------------------------------------------------------
　▼ p　
--------------------------------------------------------------------------------*/
p {
  line-height: 3rem;
  margin: 0;
}

.p-indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  p {
    line-height: 2rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ 画像　
--------------------------------------------------------------------------------*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}

.img {
  line-height: 1;
}

.img > img {
  width: 100%;
}

/*--------------------------------------------------------------------------------
　▼ header
--------------------------------------------------------------------------------*/
.header {
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header .inner-box {
  display: table;
  table-layout: fixed;
  max-width: 1000px;
  width: 100%;
}

.header .logo {
  display: table-cell;
  margin: 0;
  vertical-align: middle;
  width: 35%;
}

.header .logo a {
  display: inline-block;
  text-decoration: none;
}

.header .logo h1 {
  margin: 0 auto;
  padding: 8px 0;
}

.header .logo .sp-logo {
  display: none;
}

#search {
  float: right;
  width: 45%;
}

#search .gsc-control-cse {
  padding: 1em 0 !important;
}

#search .gsc-search-button-v2 {
  padding: 0 !important;
}

#search .gsc-search-button-v2 svg {
  height: 25px !important;
  width: 25px !important;
}

#nav-toggle {
  display: none;
}

.header-detail {
  display: table-cell;
  font-size: 0;
  text-align: right;
  vertical-align: top;
  width: 65%;
}

.header-detail p {
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 10px 0 20px;
  vertical-align: middle;
}

.font-list,
.lang-list {
  display: inline-block;
}

.font-list > li,
.lang-list > li {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.font-list > li > a,
.lang-list > li > a {
  color: #fff;
  display: table-cell;
  font-size: 1.4rem;
  font-weight: bold;
  height: 30px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 30px;
}

.font-list > li > a,
.lang-list > li > a {
  background-color: rgba(0, 122, 210, 0.6);
}

.font-list > li > a.active,
.lang-list > li > a.active {
  background-color: #007ad2;
}

@media screen and (max-width: 1024px) {
  .header {
    position: static;
  }

  .header .inner-box {
    padding: 5px 10px;
  }

  .header .logo {
    padding-top: 5px;
    width: 50%;
  }

  .header .logo h1 {
    padding: 0;
  }

  .header .inner-box {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .header-detail {
    vertical-align: middle;
    width: 34%;
  }

  #search {
    display: none;
  }

  #nav-toggle {
    display: table-cell;
    vertical-align: middle;
    width: 10%;
    z-index: 100;
  }

  #nav-toggle div {
    background-color: #093d88;
    height: 40px;
    position: relative;
    width: 40px;
  }

  .open #nav-toggle div {
    background-color: #939393;
  }

  #nav-toggle span {
    display: block;
    height: 4px;
    background: #fff;
    position: absolute;
    width: 80%;
    left: 10%;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 18%;
  }

  #nav-toggle span:nth-child(2) {
    top: 44%;
  }

  #nav-toggle span:nth-child(3) {
    top: 70%;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 48%;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

@media screen and (max-width: 767px) {
  .header .head-inner {
    border-bottom: 5px solid #007ad2;
  }

  .header-detail p {
    font-size: 1.2rem;
    padding: 0 5px 0 0;
  }

  .font-list > li > a,
  .lang-list > li > a {
    font-size: 1.2rem;
  }

  .header.open {
    height: 100vh;
    position: fixed;
    z-index: 9999;
  }

  .header .logo {
    padding-left: 10px;
  }

  .header .logo .pc-logo {
    display: none;
  }

  .header .logo .sp-logo {
    display: block;
    width: 180px;
  }
}

/*--------------------------------------------------------------------------------
　▼ 共通　nav-list
--------------------------------------------------------------------------------*/
.nav-menu {
  background-color: rgba(0, 122, 210, 0.05);
  border-top: 5px solid #007ad2;
  position: relative;
  text-align: center;
  z-index: 9997;
}

.sp-menu {
  display: none;
}

.nav-ul {
  font-size: 0;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0;
}

.nav-ul > li {
  display: inline-block;
  position: static;
  text-align: center;
  vertical-align: middle;
  /*width: 15.5%;*/
  width: 12.5%;
}

.nav-ul > li:first-child {
  width: 7%;
}

.nav-ul > li > a {
  background-color: #007ad2;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: bold;
  padding: 13px 0;
  position: relative;
  text-decoration: none;
}

.nav-ul > .active > a {
  background-color: #004088;
}

.nav-ul > li > a:hover {
  background-color: #004088;
  opacity: 1;
}

.nav-ul > .mega-list .second-menu {
  background-color: #e5f1fc;
  position: absolute;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.second-in {
  background-color: #fff;
  max-height: 550px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: inherit;
  padding: 20px 50px 0;
}

.second-in .second-tit {
  color: #004088;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}

.second-in .second-tit > a {
  display: inline-block;
  color: #004088;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-ul > .mega-list a:after {
  border-bottom: 12px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  content: "";
  display: none;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%, 0);
  z-index: 2;
}

.nav-ul > .mega-list:hover a:after {
  display: inline-block;
  bottom: 0;
}

.nav-ul > li:hover {
  cursor: pointer;
}

.nav-ul > .mega-list:hover .second-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.nav-ul > li ul {
  padding: 0 0 20px;
  text-align: left;
}

.nav-ul > li ul > li {
  display: inline-block;
  margin-right: 2.5%;
  max-width: 18%;
  min-width: 18%;
  text-align: center;
  vertical-align: top;
}

.nav-ul > li ul > li:last-child {
  margin-right: 0;
}

.nav-ul > li ul > li > a {
  color: #007ad2;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
}

.nav-ul > li ul > li > a > img {
  line-height: 1;
  width: 100%;
}

.nav-ul > li ul > li span {
  display: block;
  font-size: 1.5rem;
  padding: 5px 0 0;
}

@media screen and (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }

  .open .sp-menu {
    display: block;
    height: 100vh;
    overflow: auto;
    position: relative;
    z-index: 9997;
  }

  .open .inner-box {
    position: relative;
    height: 100%;
    left: 0;
    top: 0;
  }

  .sp-menu .sp-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .nav-ul-sp {
    background-color: #e5f1fc;
    display: block;
    font-size: 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 20px 20px 200px;
  }

  .nav-ul-sp > li {
    display: block;
    width: 100%;
  }

  .nav-ul-sp > li > a {
    background-color: #007ad2;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
  }

  .nav-ul-sp > li ul > li {
    display: inline-block;
    margin: 0 0.5% 10px;
    max-width: 100%;
    min-width: 0;
    vertical-align: top;
    width: 49%;
  }

  .nav-ul-sp > li ul > .w100p {
    margin: 0;
    width: 100%;
  }

  .nav-ul-sp > li ul > li > a {
    background-color: #007ad2;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 1.4rem;
    padding: 5px;
    text-align: center;
    text-decoration: none;
  }

  .nav-ul-sp > li .sp-list > li > a {
    background-color: #fff;
    color: #007ad2;
  }

  .nav-ul-sp > li .sp-list > li .works-menu {
    background-color: #007ad2;
    color: #fff;
  }

  .nav-ul-sp > li ul > li > .mb10 {
    margin-bottom: 10px;
  }

  .second-in {
    background: none;
    max-width: 100%;
    overflow: inherit;
    padding: 30px 0 0;
  }

  .second-in .second-tit {
    color: #004088;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
  }
}

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

/*--------------------------------------------------------------------------------
　▼ 共通　ヘッダー固定
--------------------------------------------------------------------------------*/
.is-fixed {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  animation: slideDown 3.5s ease 2.5s 2 normal;
}

.is-fixed .head-inner {
  display: table;
  table-layout: fixed;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.is-fixed .head-inner .inner-box {
  max-width: 100%;
}

.is-fixed .logo img {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.is-fixed .header-detail {
  display: none;
}

.is-fixed .nav-menu {
  background-color: #fff;
  border-top: none;
  display: table-cell;
  position: initial;
  vertical-align: middle;
  /* width: 66%; */
  width: 74%;
}

.is-fixed .nav-ul > li {
  width: auto;
}

.is-fixed .nav-ul > li:first-child {
  width: auto;
}

.is-fixed .nav-ul > li > a {
  background: none;
  color: #000;
  height: 100%;
  padding: 30px 10px;
}

@media screen and (max-width: 1024px) {
  .head-inner {
    display: table;
    table-layout: fixed;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
  }

  .is-fixed .header-detail {
    display: table-cell;
  }
}

/*--------------------------------------------------------------------------------
　▼ footer
--------------------------------------------------------------------------------*/
.footer {
  background-color: #004088;
  color: #fff;
  padding: 35px 0 45px;
}

.footer .inner-box {
  position: relative;
}

.footer .c-name {
  font-weight: bold;
}

.footer .foot-list {
  border-left: 1px solid #fff;
  padding: 0 10px 0 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer .foot-list li {
  display: block;
  padding: 5px 0;
  text-align: left;
}

.footer .foot-list li > a {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  text-decoration: none;
}

.copy {
  color: #939393;
  font-size: 1.2rem;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .footer .inner-box {
    padding: 0 3.25%;
  }

  .footer .foot-list {
    border-left: none;
    padding: 50px 0 0;
    position: static;
    text-align: center;
  }

  .footer .foot-in {
    padding: 0 2%;
  }

  .footer .foot-list li {
    display: inline-block;
    padding: 0;
    text-align: left;
  }

  .footer .foot-list li > a {
    display: inline-block;
    font-size: 1.2rem;
    padding: 5px 3px;
  }

  .footer .foot-list li:after {
    content: "|";
    display: inline;
    font-size: 1.1rem;
  }

  .footer .foot-list li:last-child:after {
    display: none;
  }

  .copy {
    text-align: center;
  }
}

/*--------------------------------------------------------------------------------
　▼ 共通 inner-box　
--------------------------------------------------------------------------------*/
.inner-box {
  width: auto;
  margin: 0 auto;
  max-width: 1000px;
}

.cf:after {
  clear: both;
  content: "";
  display: block;
}

.section {
  padding: 35px 0;
}

@media screen and (max-width: 1024px) {
  .inner-box {
    max-width: 100% !important;
    padding: 0 6.25%;
    width: 100% !important;
  }

  .pc-block {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .inner-box {
    padding: 0 2.5%;
  }

  .section {
    padding: 0 0 30px;
  }
}

/*--------------------------------------------------------------------------------
　▼ 共通 wrap-box
--------------------------------------------------------------------------------*/
.wrap-box {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.wrap-box .left-box {
  display: table-cell;
  vertical-align: top;
  width: 50%;
}

.wrap-box .right-box {
  display: table-cell;
  vertical-align: top;
  width: 50%;
}

.wrap-box02 .left-box {
  padding-right: 2%;
}

.wrap-box02 .right-box {
  padding-left: 2%;
}

@media screen and (max-width: 767px) {
  .wrap-box {
    display: block;
  }

  .wrap-box .left-box,
  .wrap-box .right-box {
    display: block;
    width: 100%;
  }

  .wrap-box .right-box {
    padding: 20px 0 0;
  }

  .wrap-box02 .left-box {
    padding-right: 0;
  }

  .wrap-box02 .right-box {
    padding: 0;
  }
}

/*--------------------------------------------------------------------------------
　▼ table 共通
--------------------------------------------------------------------------------*/
.table01 {
  margin: 10px auto;
}

.table01 tr th {
  background-color: rgba(0, 122, 210, 0.1);
  border-bottom: 6px solid #fff;
  color: #004088;
  padding: 11px 20px;
  width: 25%;
}

.table01 tr td {
  background-color: rgba(0, 122, 210, 0.05);
  border-bottom: 6px solid #fff;
  padding: 11px 20px;
}

@media screen and (max-width: 767px) {
  .table01 tr th {
    padding: 11px 15px;
    width: 30%;
  }

  .table01 tr td {
    padding: 11px 15px;
  }
}

/*--------------------------------------------------------------------------------
　▼ アンカー 共通
--------------------------------------------------------------------------------*/
.anchor {
  position: relative;
  top: -220px;
}

@media screen and (max-width: 1024px) {
  .anchor {
    top: 0;
  }
}

/*--------------------------------------------------------------------------------
　▼ 共通コンテンツ箇所
--------------------------------------------------------------------------------*/
.contents-wrapper {
  margin-top: 97px;
  padding: 0 0 75px;
}

.other .contents-wrapper {
  min-height: 750px;
  padding: 0 0 75px;
}

@media screen and (min-width: 1400px) {
  .other .contents-wrapper {
    min-height: 1000px;
  }
}

@media screen and (max-width: 1024px) {
  .contents-wrapper {
    margin-top: 0;
  }

  .other .contents-wrapper {
    padding: 0;
  }
}

/*--------------------------------------------------------------------------------
　▼ page-topへ
--------------------------------------------------------------------------------*/
.page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

.page-top a {
  background-color: #004088;
  color: #fff;
  display: block;
  line-height: 1em;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 14px 40px;
  text-align: center;
  text-decoration: none;
  z-index: 999999;
}

/*.page-top a span {*/
/*    position: absolute;*/
/*    right: 20px;*/
/*    top: 25px;*/
/*}*/

/*.page-top a::after {*/
/*    content: "";*/
/*    top: 0;*/
/*    right: 0;*/
/*    border-bottom: 120px solid transparent;*/
/*    border-right: 120px solid #004088;*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*}*/

/*----スマホ版------*/
#page-top a {
  display: none;
}

@media screen and (max-width: 1024px) {
  .page-top {
    display: none;
  }

  #page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }

  #page-top a {
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #007ad2;
  }

  #page-top a:before,
  #page-top a:after {
    position: absolute;
    top: 8px;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle;
    content: "";
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  #page-top a:before {
    left: 15px;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/*--------------------------------------------------------------------------------
　▼ 共通 dl
--------------------------------------------------------------------------------*/
.dl-detail {
  border-bottom: 1px solid #939393;
  font-size: 0;
  margin: 0;
  padding: 16px 0 0;
}

.dl-detail:after {
  clear: both;
  content: "";
  display: block;
}

.dl-detail > dt {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: middle;
  width: 20%;
}

.dl-detail > dd {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0;
  vertical-align: middle;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .dl-detail > dt,
  .dl-detail > dd {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ 派生ページ共通　
--------------------------------------------------------------------------------*/
.menu-box {
  background-color: rgba(0, 122, 210, 0.05);
  padding: 60px 0 20px;
}

.menu-box .sub-list {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.menu-box > .sub-list > li {
  display: inline-block;
  margin-right: 1%;
  vertical-align: middle;
  min-width: 19%;
}

.menu-box > .sub-list > li:last-child {
  margin-right: 0;
}

.menu-box > .sub-list > li > a {
  background-color: #004088;
  border-radius: 17px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6rem;
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .menu-box {
    padding: 10px 5px 20px;
  }

  .menu-box > .sub-list > li {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .menu-box > .sub-list {
    padding: 0 5%;
  }

  .menu-box > .sub-list > li {
    margin: 10px 0 0;
    width: 49%;
  }

  .menu-box > .sub-list > li:nth-child(odd) {
    margin-right: 1%;
  }

  .menu-box > .sub-list > li:nth-child(even) {
    margin-left: 1%;
  }

  .menu-box > .sub-list > li > a {
    border-radius: 17px;
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ 事業紹介ページ内 共通 business-main
--------------------------------------------------------------------------------*/
.business-main {
  line-height: 0;
  position: relative;
}

.business-main > img {
  width: 100%;
}

.business-main > p {
  background-color: rgba(0, 64, 136, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  padding: 30px 0;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.b-bg-blue {
  margin: 50px 0 0;
  padding: 40px 20px;
  text-align: center;
}

.b-bg-blue h4 {
  font-size: 2rem;
  margin: 0 auto 15px;
}

.b-bg-blue .list-detail > li {
  display: inline-block;
  text-align: center;
}

.b-bg-blue .list-detail > li > a {
  background-color: #004088;
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  min-width: 280px;
  padding: 8px 20px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .business-main > p {
    font-size: 1.8rem;
    line-height: 2.5rem;
    padding: 20px 10px;
  }

  .b-bg-blue {
    padding: 20px 10px;
  }

  .b-bg-blue h4 {
    font-size: 1.6rem;
  }

  .b-bg-blue .list-detail > li {
    display: block;
  }

  .b-bg-blue .list-detail > li > a {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ リスト ul　
--------------------------------------------------------------------------------*/
.list {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.list-square,
.list-kome {
  margin: 0;
  padding-left: 0px;
}

.list-square li,
.list-kome li {
  list-style: none;
  display: block;
  position: relative;
  margin-left: 15px;
}

.list-square li:before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 0;
  background: #000;
  position: absolute;
  left: -13px;
  top: 7px;
}

.list-kome li:before {
  content: "※";
  display: inline-block;
  border-radius: 0;
  position: absolute;
  left: -17px;
  top: 0;
}

.pdf-list {
  margin: 30px auto 70px;
}

.pdf-list tr > td {
  border-bottom: 6px solid #fff;
  padding: 10px 0;
}

.pdf-list tr > td:nth-child(1) {
  background-color: rgba(0, 64, 136, 0.1);
  color: #004088;
  padding: 10px 50px;
  /* text-decoration: underline; */
  width: 85%;
}

.pdf-list tr td:nth-child(2) {
  /*background-color: #004088;*/
  background-color: #007ad2;
  text-align: center;
  width: 15%;
}

.pdf-list.light tr > td:nth-child(1) {
  background: rgba(0, 122, 210, 0.1);
}
.pdf-list.light tr > td:nth-child(2) {
  background: #007ad2;
}

.pdf-list tr > td > a {
  display: inline-block;
  line-height: 0;
}

.pdf-list tr > td > a > img {
  vertical-align: middle;
  width: 43px;
}

@media screen and (max-width: 767px) {
  .pdf-list tr > td:nth-child(1) {
    padding: 10px;
  }
}

/*--------------------------------------------------------------------------------
　▼ ページタイトル　
--------------------------------------------------------------------------------*/
.title {
  color: #007ad2;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}

.other .title {
  font-size: 3rem;
  line-height: 3.4rem;
  margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 2rem;
  }

  .other .title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ セクションタイトル（下線付き）　
--------------------------------------------------------------------------------*/
.sec-title {
  border-bottom: 1px solid #007ad2;
  color: #004088;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  margin-bottom: 30px;
  padding: 0 0 5px;
  text-align: center;
}

.sec-title.bo-no {
  border-bottom: none;
  margin: 30px 0 5px;
}

.sec-title > span {
  font-size: 1.6rem;
}

.sec-title02 {
  border-bottom: 1px solid #007ad2;
  color: #007ad2;
  font-weight: bold;
  line-height: 1.6rem;
  margin-bottom: 15px;
  padding: 0 0 5px;
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

/*--------------------------------------------------------------------------------
　▼ セクションタイトル（背景色付き）　
--------------------------------------------------------------------------------*/
.bg-blue-title01 {
  background-color: rgba(0, 122, 210, 0.1);
  color: #007ad2;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.1rem;
  margin: 20px auto;
  padding: 12px 20px;
}

@media screen and (max-width: 767px) {
  .bg-blue-title01 {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 12px 10px;
  }
}

/*--------------------------------------------------------------------------------
　▼ ボックス関係
--------------------------------------------------------------------------------*/
.sec-wrap {
  margin-bottom: 40px;
}

.sec-box {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------------------------
　▼ 背景色
--------------------------------------------------------------------------------*/
.bg-blue01 {
  background-color: #007ad2;
}

.bg-blue02 {
  background-color: rgba(0, 122, 210, 0.1);
}

.bg-blue03 {
  background-color: rgba(0, 122, 210, 0.05);
}

.bg-blue04 {
  background-color: #f2f8fe;
}

/*--------------------------------------------------------------------------------
　▼ テキスト色
--------------------------------------------------------------------------------*/
.text-blue01 {
  color: #007ad2;
}

.text-blue02 {
  color: #004088;
}

/*--------------------------------------------------------------------------------
　▼ ボタン
--------------------------------------------------------------------------------*/
.bt-blue {
  background-color: #004088;
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  min-width: 280px;
  padding: 11px 20px;
  text-decoration: none;
}

/*--------------------------------------------------------------------------------
　▼ 製品情報ページ カテゴリーメニュー
--------------------------------------------------------------------------------*/
.product-ct-menu {
  margin: 60px auto 0;
}

.product-ct-menu .left-box {
  font-size: 0;
  line-height: 1;
  width: 30%;
}

.product-ct-menu .right-box {
  padding-left: 3%;
}

.product-ct-menu .right-box h3 {
  margin: 27px 0;
}

.product-ct-menu.bg-blue04 .list {
  width: 60%;
}

.product-ct-menu.bg-blue04 .list > li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.product-ct-menu.bg-blue04 .list > li:last-child {
  padding-left: 0;
}

.product-ct-menu.bg-blue04 .list > li > a {
  display: inline-block;
  font-size: 1.6rem;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .product-ct-menu {
    margin: 30px auto 0;
  }

  .product-ct-menu .left-box {
    width: 100%;
  }

  .product-ct-menu .left-box > img {
    width: 100%;
  }

  .product-ct-menu .right-box {
    padding: 0 2.5% 20px;
  }

  .product-ct-menu .right-box h3 {
    margin: 15px 0 5px;
  }

  .product-ct-menu.bg-blue04 .list {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------
　▼ BOX
--------------------------------------------------------------------------------*/
.box-x2,
.box-x3,
.box-x4 {
  display: block;
  font-size: 0;
  margin: 0;
  padding: 0;
  vertical-align: top;
  width: 100%;
}

.box-x2 > li,
.box-x3 > li,
.box-x4 > li {
  display: inline-block;
  font-size: 1.6rem;
  list-style: none;
  vertical-align: text-top;
}

.box-x2 > li {
  width: 50%;
}

.box-x2 > li:first-child {
  padding-left: 0;
  padding-right: 1%;
}

.box-x2 > li:last-child {
  padding-left: 1%;
  padding-right: 0;
}

.box-x3 > li {
  width: 33.33%;
  padding: 0 0.5%;
}

.box-x3 > li:first-child {
  padding-left: 0;
  padding-right: 1%;
}

.box-x3 > li:last-child {
  padding-left: 1%;
  padding-right: 0;
}

.box-x4 > li {
  width: 25%;
  padding: 0 0.5%;
}

.box-l75r25 {
  width: 100%;
}

.box-l670r330 .left-box {
  width: 670px;
}

.box-l670r330 .right-box {
  width: 330px;
  padding-left: 3%;
}

.box-navy-list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.box-navy-list > li {
  display: inline-block;
  width: 50%;
  list-style: none;
  font-size: 1.6rem;
}

.box-navy-list > li:nth-child(odd) {
  padding-right: 15px;
  padding-left: 0;
}

.box-navy-list > li:nth-child(even) {
  padding-right: 0;
  padding-left: 15px;
}

.box-navy {
  background-color: rgba(0, 64, 136, 0.2);
  color: #004088;
  margin-bottom: 10px;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .box-x2 > li,
  .box-x3 > li,
  .box-x4 > li {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 0 !important;
    width: 100%;
  }

  /*.box-x2 > li .img,*/
  /*.box-x3 > li .img,*/
  /*.box-x4 > li .img {*/
  /*    margin: 0 auto;*/
  /*    width: 90%;*/
  /*}*/

  .box-x2 > li img,
  .box-x3 > li img,
  .box-x4 > li img {
    width: 100%;
  }

  .its01 {
    margin: 0 auto;
    width: 90% !important;
  }

  .box-l670r330 .left-box,
  .box-l670r330 .left-box {
    width: 100%;
  }

  .box-l670r330 .right-box {
    padding: 20px 0;
    width: 100%;
  }

  .box-l670r330 .right-box img {
    width: 100%;
  }

  .box-navy > p {
    font-size: 1.6rem;
  }

  .box-navy-list > li {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

/*--------------------------------------------------------------------------------
　▼ 株主投資家情報 共通　
--------------------------------------------------------------------------------*/
.menu-ir .sub-list {
  max-width: 1200px;
}

.menu-ir > .sub-list > li {
  min-width: 15%;
}

@media screen and (max-width: 767px) {
  .menu-ir {
    padding: 30px 2% 20px;
    text-align: left;
  }

  .menu-ir > .sub-list > li {
    margin: 0 0 10px;
    vertical-align: top;
    width: 49%;
  }

  .menu-ir > .sub-list > li:nth-child(odd) {
    margin-right: 1%;
  }

  .menu-ir > .sub-list > li:nth-child(even) {
    margin-left: 1%;
  }
}

/*--------------------------------------------------------------------------------
　▼　共通　
--------------------------------------------------------------------------------*/

/* ナビメニュー・メガメニュー用CSSオプション */
nav.nav-menu .nav-ul .mega-list .second-menu .second-in .list img {
  width: 150px;
  height: 100px;
}

/* フッターロゴ下余白 */

.foot-logo {
  padding-bottom: 2rem;
}

footer.footer {
  padding: 35px 0 35px;
}

/* Googleカスタム検索枠 */
#search {
  width: 292.5px;
  height: 61px;
}
