@charset "UTF-8";
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic UI", sans-serif;
  background-color: #414141;
}

body {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  display: block;
}
a:hover {
  opacity: 0.6;
}

.pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp {
    display: inherit;
  }
}

header {
  position: relative;
  z-index: 999;
  height: 76px;
}
@media screen and (max-width: 750px) {
  header {
    height: 120px;
  }
}
header .wrap {
  position: fixed;
  width: 100%;
  height: inherit;
  background-color: #fff;
}
header .wrap .content {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1350px;
  margin: 6px auto;
}
@media screen and (max-width: 750px) {
  header .wrap .content {
    width: 750px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
header .wrap .content .logo {
  margin: 0;
}
@media screen and (max-width: 750px) {
  header .wrap .content .logo {
    width: 35%;
    line-height: 100px;
    margin-top: 10px;
    margin-left: 50px;
  }
  header .wrap .content .logo img {
    width: 100%;
  }
}
header .wrap .content nav {
  display: flex;
  justify-content: center;
  width: 660px;
}
@media screen and (max-width: 750px) {
  header .wrap .content nav {
    display: none;
  }
}
header .wrap .content nav li {
  position: relative;
  margin: 0 10px;
  font-size: 14px;
  color: #013893;
  font-weight: bold;
}
header .wrap .content nav li .subnav {
  width: 150px;
  position: absolute;
  max-height: 0;
  overflow: hidden;
  background-color: rgba(240, 240, 240, 0.9);
  padding: 0 10px;
  transition: 0.3s;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 750px) {
  header .wrap .content nav li .subnav {
    max-height: none;
    position: relative;
    background-color: #fff;
    margin-left: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
header .wrap .content nav li .subnav div {
  padding: 10px 0;
  border-bottom: 1px solid #023895;
  font-weight: normal;
}
header .wrap .content nav li .subnav div:first-child {
  padding-top: 20px;
}
header .wrap .content nav li .subnav div:last-child {
  padding-bottom: 20px;
  border: none;
}
@media screen and (max-width: 750px) {
  header .wrap .content nav li .subnav div {
    padding: 5px 0;
    border-bottom: none;
    display: flex;
    width: 50%;
  }
  header .wrap .content nav li .subnav div:before {
    content: "・";
  }
}
header .wrap .content nav li:nth-child(3):hover .subnav {
  max-height: 340px;
}
header .wrap .content .snsbox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  header .wrap .content .snsbox {
    display: none;
  }
}
header .wrap .content .snsbox li {
  width: 34px;
  margin: 10px;
}
header .wrap .content .snsbox li img {
  width: 100%;
}

#sp_nav {
  margin-right: 30px;
  display: none;
}
@media screen and (max-width: 750px) {
  #sp_nav {
    display: block;
  }
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  position: absolute;
  top: 20%;
  right: 40px;
  display: inline-block;
  width: 80px;
  height: 22px;
  vertical-align: middle;
}
#nav-open .close {
  display: none;
  width: 80px;
  height: 80px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 10px;
  /*線の太さ*/
  width: 80px;
  /*長さ*/
  border-radius: 3px;
  background: #013893;
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -27px;
}

#nav-open span:after {
  bottom: -55px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 110px;
  left: 0;
  z-index: 9999;
  /*最前面に*/
  width: 750px;
  height: auto;
  background: #fff;
  /*背景色*/
  transition: 0.3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateY(-150%);
}
#nav-content nav {
  display: block;
  margin: 0 auto;
}
#nav-content nav li {
  margin: 10px 15px;
  padding: 20px 0;
  font-size: 30px;
  color: #013893;
  font-weight: bold;
  border-bottom: 1px solid #013893;
}
#nav-content .snsbox {
  display: flex;
  justify-content: center;
  width: 750px;
  margin: 50px 0;
}
#nav-content .snsbox li {
  width: 80px;
  margin: 0 50px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
}

#nav-input:checked ~ #nav-open span, #nav-input:checked ~ #nav-open span:before, #nav-input:checked ~ #nav-open span:after {
  display: none;
}
#nav-input:checked ~ #nav-open .close {
  display: block;
}

.product01 .title img {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .product01 .title img {
    width: 96%;
  }
}
.product01 .content01 {
  background-color: #f5f3ed;
  background-position: center;
  padding: 30px 0;
}
.product01 .content02 {
  padding: 70px 0;
  background-color: #f5f3ed;
}
.product01 .content02 .box {
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .product01 .content02 .box {
    flex-direction: column;
  }
  .product01 .content02 .box article img {
    width: 75%;
    margin: 0 auto 200px;
  }
}
.product01 .content03 {
  background-color: #0f367a;
  position: relative;
}
.product01 .content03 div.text {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  width: 1100px;
  margin: 0 auto;
  padding: 25px 0 25px 20px;
}
.product01 .content03 div.text span {
  font-size: 36px;
}
.product01 .content03 div.img {
  position: absolute;
  top: -120%;
  left: calc(50% + 675px);
  transform: translateX(-50%);
}
.product01 .content04 {
  position: relative;
  width: 1100px;
  margin: 0 auto 190px;
}
@media screen and (max-width: 750px) {
  .product01 .content04 {
    width: 750px;
  }
}
.product01 .content04 .text {
  width: 980px;
  margin: 60px 0;
  font-size: 16px;
  color: #383838;
}
@media screen and (max-width: 750px) {
  .product01 .content04 .text {
    width: 96%;
    margin: 60px auto;
  }
}
.product01 .content04 .img {
  position: absolute;
  right: 50px;
  bottom: -110px;
}
@media screen and (max-width: 750px) {
  .product01 .content04 .img {
    display: none;
  }
}

.product02 article, .product03 article {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 750px) {
  .product02 article, .product03 article {
    width: 750px;
  }
}
.product02 article a, .product03 article a {
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 150px;
  overflow: hidden;
  text-align: center;
  margin: 10px;
}
@media screen and (max-width: 750px) {
  .product02 article a, .product03 article a {
    width: 215px;
  }
}
.product02 article a img, .product03 article a img {
  width: 100%;
}

.product02 .nav, .product02-2 .nav {
  width: 900px;
  display: flex;
  justify-content: space-around;
  margin: 30px auto 70px;
}
@media screen and (max-width: 750px) {
  .product02 .nav, .product02-2 .nav {
    width: 700px;
  }
}
.product02 .nav div, .product02-2 .nav div {
  width: 400px;
  color: #023895;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border: 2px solid #023895;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .product02 .nav div, .product02-2 .nav div {
    border-radius: 0;
  }
}
.product02 .nav .active, .product02-2 .nav .active {
  background-color: #023895;
  color: #fff;
}

.product02-2 section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}
.product02-2 article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .product02-2 article {
    width: 700px;
  }
}
.product02-2 article img {
  width: 30px;
  height: 30px;
}
.product02-2 article .img {
  width: 250px;
  height: auto;
}

.product03 .text {
  margin-top: 30px;
}
.product03 article a {
  display: block;
  width: 180px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .product03 article a {
    width: 215px;
  }
}
.product03 article a img {
  width: 100%;
}

.product04 .text {
  margin-top: 30px;
}
.product04 .wrap {
  width: 1100px;
  margin: 0 auto;
}
.product04 article {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.product04 article li img {
  margin: 10px 35px;
}
@media screen and (max-width: 750px) {
  .product04 article li img {
    margin: 10px 16px;
  }
}

.product05 .wrap {
  width: 1100px;
  margin: 0 auto;
}
.product05 article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  width: 800px;
  border-bottom: 1px solid #a5a5a5;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  .product05 article {
    width: 700px;
  }
}
.product05 article .right {
  width: 450px;
}
.product05 article img {
  width: 200px;
}
.product05 section.rowbox {
  display: flex;
  justify-content: space-between;
}
.product05 section.rowbox article {
  width: 280px;
  flex-direction: column;
  align-items: center;
}
.product05 section.rowbox article .title {
  text-align: center;
}
.product05 .tag {
  background-color: #e55532;
  display: inline-block;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product06 {
  color: #5b5b5b;
}
.product06 article {
  margin: 0;
}
.product06 .question {
  position: relative;
  border-bottom: 1px solid;
  padding: 20px 0;
  margin-bottom: 10px;
  color: #013893;
  padding-right: 70px;
  cursor: pointer;
}
.product06 .question:before, .product06 .question:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #023895;
  transform: translateY(-50%);
  top: 50%;
  right: 32px;
  transition: 0.3s;
}
.product06 .question:before {
  right: 15px;
  transform: rotate(45deg);
}
.product06 .question:after {
  right: 3px;
  transform: rotate(-45deg);
}
.product06 .question.close:before, .product06 .question.close:after {
  width: 25px;
}
.product06 .question.close:before {
  right: 7px;
  transform: rotate(45deg);
}
.product06 .question.close:after {
  right: 7px;
  transform: rotate(-45deg);
}
.product06 .answer {
  height: 0;
  overflow: hidden;
  font-size: 16px;
}
.product06 .answer .red {
  color: #f00;
}

.body {
  position: relative;
}
.body #topimg {
  min-width: 1350px;
}
@media screen and (max-width: 750px) {
  .body #topimg {
    min-width: 750px;
  }
}
.body #topimg img {
  width: 100%;
}
.body #slider, .body #product, .body #examples, .body #topics, .body #banner {
  z-index: 10;
  position: relative;
}
.body #slider {
  background-color: rgba(0, 0, 0, 0.8);
  min-width: 1350px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .body #slider {
    min-width: 750px;
  }
}
.body #slider .slick {
  width: 100%;
  margin: 0 auto;
  z-index: -1;
}
.body #slider .slick .slide {
  width: 675px !important;
}
@media screen and (max-width: 750px) {
  .body #slider .slick .slide {
    width: 450px !important;
  }
}
.body #slider .slick .slide img {
  width: 100%;
}
.body #product {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 50px 0 65px;
  min-width: 1350px;
}
@media screen and (max-width: 750px) {
  .body #product {
    min-width: 750px;
  }
}
.body #product .wrap {
  width: 1350px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .body #product .wrap {
    flex-direction: column;
    width: 750px;
  }
}
.body #product .wrap article {
  width: 500px;
  margin: 0 50px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .body #product .wrap article {
    margin: 0 auto 70px;
  }
}
.body #product .wrap article .title {
  margin: 0 0 40px 0;
}
.body #product .wrap article .title img {
  margin: 0 auto;
}
.body #product .wrap article .box {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  transition: 0.5;
}
.body #product .wrap article .box .box_wrap {
  position: relative;
  margin-right: 18px;
}
.body #product .wrap article .box .box_wrap:last-child {
  margin-right: 0;
}
.body #product .wrap article .box .box_wrap .img {
  width: 107px;
  height: 107px;
  margin-bottom: 20px;
  overflow: hidden;
}
.body #product .wrap article .box .box_wrap .overlay {
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  top: 0;
  left: 0;
  width: 107px;
  height: 107px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.body #product .wrap article .box .box_wrap .overlay .num {
  font-size: 16px;
  font-weight: bold;
}
.body #product .wrap article .box .box_wrap .overlay .name {
  font-size: 13px;
}
.body #product .wrap article .box .box_wrap:hover .overlay {
  opacity: 1;
}
.body #product .wrap article .box_short {
  transition: 0.3s;
  height: 254px;
}
.body #product .wrap article .box_long_color {
  transition: 0.3s;
  height: 1000px;
}
.body #product .wrap article .box_long_pattern {
  transition: 0.3s;
  height: 900px;
}
.body #product .more, .body #product .close {
  width: 112px;
  margin: 0 auto;
}
.body #product .close {
  display: none;
}
.body #examples {
  min-width: 1350px;
  background-image: url(../images/front-page/back.gif);
  padding: 45px 0 90px 0;
}
@media screen and (max-width: 750px) {
  .body #examples {
    min-width: 750px;
  }
}
.body #examples .wrap {
  width: 1350px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .body #examples .wrap {
    width: 750px;
  }
}
.body #examples .wrap .title {
  margin: 0 0 0 40px;
  padding: 0 0 45px 0;
}
.body #examples .wrap .sp_more {
  display: none;
}
@media screen and (max-width: 750px) {
  .body #examples .wrap .sp_more {
    width: 600px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    margin: 40px auto 0;
    padding: 10px 0;
    text-align: center;
  }
}
.body #examples .wrap .gallery {
  width: 1100px;
  height: 630px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .body #examples .wrap .gallery {
    width: 600px;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}
.body #examples .wrap .gallery .img img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .body #examples .wrap .gallery .img {
    margin: 30px 0;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .body #examples .wrap .gallery .img.more {
    display: none;
  }
}
.body #topics {
  min-width: 1350px;
  padding: 50px 0 80px 0;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 750px) {
  .body #topics {
    min-width: 750px;
    padding: 50px 0 140px 0;
  }
}
.body #topics .wrap {
  width: 1350px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .body #topics .wrap {
    width: 750px;
  }
}
.body #topics .wrap .title {
  margin: 0 0 0 40px;
}
.body #topics .wrap .topiclist {
  width: 800px;
  padding: 50px 0 0 95px;
}
@media screen and (max-width: 750px) {
  .body #topics .wrap .topiclist {
    width: 700px;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.body #topics .wrap .topiclist .topic {
  color: #fff;
  padding: 0 0 30px 15px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #fff;
}
.body #topics .wrap .topiclist .topic .info {
  display: flex;
  align-items: center;
}
.body #topics .wrap .topiclist .topic .info .date {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .body #topics .wrap .topiclist .topic .info .date {
    font-size: 20px;
  }
}
.body #topics .wrap .topiclist .topic .info .category {
  width: 90px;
  height: 25px;
  margin-left: 15px;
  text-align: center;
  background-color: #7c7c7c;
}
.body #topics .wrap .topiclist .topic .info .category.news {
  background-color: #ef0a0a;
}
.body #topics .wrap .topiclist .topic .title {
  font-size: 18px;
  margin: 15px 0 0 0;
}
@media screen and (max-width: 750px) {
  .body #topics .wrap .topiclist .topic .title {
    font-size: 24px;
  }
}
.body #topics .wrap .more {
  position: absolute;
  right: 230px;
  bottom: 0px;
}
@media screen and (max-width: 750px) {
  .body #topics .wrap .more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -130px;
  }
}

.body #sns {
  min-width: 1350px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .body #sns {
    min-width: 750px;
  }
}
.body #sns .wrap {
  display: flex;
  justify-content: space-around;
  width: 1099px;
  margin: 0 auto;
  padding: 65px 0 0 0;
}
.body #sns .wrap .facebook iframe{
  width: 500px;
  height: 700px;
}
.fb-page,
.fb-page span,
.facebook_wrap iframe,
.fb-page iframe{
  width: 500px !important;
  height: 700px !important;
}
@media screen and (max-width: 750px) {
  .body #sns .wrap {
    width: 650px;
    flex-direction: column;
  }
  .body #sns .wrap .facebook{
    margin:auto;
    text-align:center
  }
}

.body #banner {
  min-width: 1350px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .body #banner {
    min-width: 750px;
  }
}
.body #banner .wrap {
  width: 1099px;
  margin: 0 auto;
  padding: 65px 0 0 0;
}
@media screen and (max-width: 750px) {
  .body #banner .wrap {
    width: 650px;
  }
  .body #banner .wrap .item img {
    width: 100%;
  }
}
.body #banner .wrap .item img {
  width: 94%;
  margin: 0 3%;
}
.body #banner .navbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 60px 0;
}
.body #banner .navbox .arrow_right, .body #banner .navbox .arrow_left {
  margin: 0 40px;
  transition: 0.3s;
}
.body #banner .navbox .arrow_right:hover, .body #banner .navbox .arrow_left:hover {
  opacity: 0.6;
}
.body #banner .navbox .dots .slick-dots {
  position: inherit;
}
.body #banner .navbox .dots .slick-dots li {
  margin: 0 15px;
}
@media screen and (max-width: 750px) {
  .body #banner .navbox .dots .slick-dots li {
    margin: 0;
  }
}
.body #banner .navbox .dots .slick-dots li button:before {
  font-size: 25px;
  opacity: 0.25;
}
@media screen and (max-width: 750px) {
  .body #banner .navbox .dots .slick-dots li button:before {
    font-size: 10px;
  }
}
.body #banner .navbox .dots .slick-dots li.slick-active button:before {
  color: #023894;
  opacity: 1;
}
.body #head {
  background-image: url(../images/head.png);
  background-position: center;
  background-size: cover;
  min-width: 1350px;
  height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .body #head {
    width: 750px;
    min-width: auto;
  }
  .body #head img {
    width: 80%;
  }
}
.body #content {
  min-width: 1350px;
  background-color: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  .body #content {
    width: 750px;
    min-width: auto;
  }
}
.body #content .wrap {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .body #content .wrap {
    width: 700px;
  }
}
.body #content .wrap h3 {
  position: relative;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
.body #content .wrap h3:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 3px;
  background-color: #023894;
  left: 0;
  bottom: 0;
}
.body #content .wrap h3.product_title {
  position: relative;
  text-align: center;
  border: none;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
}
.body #content .wrap h3.product_title:before, .body #content .wrap h3.product_title:after {
  content: "";
  width: 200px;
  height: 3px;
}
@media screen and (max-width: 750px) {
  .body #content .wrap h3.product_title:before, .body #content .wrap h3.product_title:after {
    width: 100px;
  }
}
.body #content .wrap h3.product_title:before {
  background: linear-gradient(-45deg, #023894 10%, #023894 30%, transparent);
  margin-right: 80px;
}
.body #content .wrap h3.product_title:after {
  position: relative;
  background: linear-gradient(-45deg, transparent, #023894 70%, #023894 90%);
  margin-left: 80px;
}
.body #content .wrap .center {
  margin: 0 auto;
}
.body #content .wrap img.map {
  width: 700px;
  margin: 80px auto 100px;
}
.body #content .wrap .page-table {
  width: 96%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 750px) {
  .body #content .wrap .page-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.body #content .wrap .page-table th, .body #content .wrap .page-table td {
  border-bottom: 1px solid #c0c0c0;
  text-align: left;
  vertical-align: top;
  padding: 10px;
  color: #5b5b5b;
}
@media screen and (max-width: 750px) {
  .body #content .wrap .page-table th br, .body #content .wrap .page-table td br {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .body #content .wrap .page-table th {
    border-bottom: 1px solid #c0c0c0;
  }
}
@media screen and (max-width: 750px) {
  .body #content .wrap .page-table td {
    border-bottom: none;
  }
}
.body #content .wrap .page-table td .link {
  color: #013893;
}
.body #content .wrap .page-table td .link:after {
  content: "";
  width: 1.2em;
  height: 1.1em;
  display: inline-block;
  background-image: url(../images/sign.png);
  background-size: cover;
  margin-left: 5px;
}
.body #content .wrap .form-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 90%;
  margin: 0 auto;
}
.body #content .wrap .form-table table tr {
  border-bottom: 1px solid #eee;
}
.body #content .wrap .form-table table tr td, .body #content .wrap .form-table table tr th {
  vertical-align: top;
  padding: 20px 0;
  color: #5b5b5b;
}
.body #content .wrap .form-table table tr td input, .body #content .wrap .form-table table tr td textarea, .body #content .wrap .form-table table tr th input, .body #content .wrap .form-table table tr th textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
}
.body #content.page-product {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  padding: 0 !important;
}
@media screen and (max-width: 750px) {
  .body #content.page-product {
    min-height: 100vh;
  }
}
.body .product-menu {
  background-color: #f5f3ed;
  min-width: 1350px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .body .product-menu {
    width: 750px;
    min-width: auto;
  }
}
.body .product-menu a {
  display: inline-block;
  width: 100%;
}
.body .product-menu a div {
  padding: 0 40px;
  font-size: 18px;
  color: #9c947d;
  font-weight: light;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .body .product-menu a div {
    height: 100px;
  }
}
.body .product-menu a div span {
  font-size: 14px;
  margin: 0 20px;
}
.body .product-menu a div:last-child span {
  margin: 0 0 0 20px;
}
.body .product-menu a div:before, .body .product-menu a div:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 19px;
  background-image: url(../images/product/arrow.png);
}
.body .product-menu a div.left:before {
  margin-right: 20px;
}
.body .product-menu a div.left:after {
  width: 0;
}
.body .product-menu a div.right {
  justify-content: flex-end;
}
.body .product-menu a div.right:after {
  margin-left: 20px;
  transform: rotate(180deg);
}
.body .product-menu a div.right:before {
  width: 0;
}
.body#newslist .wrap {
  width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .body#newslist .wrap {
    width: 750px;
  }
}
.body#newslist .wrap .item {
  display: flex;
  border-bottom: 1px solid #023895;
  padding: 15px 50px;
}
@media screen and (max-width: 750px) {
  .body#newslist .wrap .item {
    flex-wrap: wrap;
  }
}
.body#newslist .wrap .item .date {
  margin-right: 15px;
}
.body#newslist .wrap .item .category {
  width: 90px;
  height: 25px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  color: #fff;
  background-color: #7c7c7c;
}
.body#newslist .wrap .item .category.news {
  background-color: #ef0a0a;
}
@media screen and (max-width: 750px) {
  .body#newslist .wrap .item .title {
    width: 100%;
    margin-top: 20px;
  }
}
.body#newslist .wrap ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.body#newslist .wrap ul.page-numbers li {
  margin: 0 5px;
}
.body#newslist .wrap ul.page-numbers li span, .body#newslist .wrap ul.page-numbers li a {
  padding: 10px;
  color: #013893;
  border: 1px solid;
  border-radius: 5px;
}
.body#newslist .wrap ul.page-numbers li span.current, .body#newslist .wrap ul.page-numbers li a.current {
  background-color: #013893;
  color: #fff;
}
.body#news-single .info {
  display: flex;
}
.body#news-single .info .category {
  width: 90px;
  height: 25px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  color: #fff;
  background-color: #7c7c7c;
}
.body#news-single .info .category.news {
  background-color: #ef0a0a;
}
.body#news-single .title {
  font-size: 24px;
  margin: 10px 0;
  border-bottom: 2px solid #013893;
}
.body#news-single .content {
  min-height: 30vh;
  border-bottom: 1px solid #013893;
  padding-bottom: 30px;
}
.body#news-single .back {
  color: #013893;
  margin: 20px auto;
  text-align: center;
}
.body .form-table {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .body .form-table {
    width: 700px;
  }
}
.body .form-table .kome {
  display: inline-block;
  width: 2.3em;
  text-align: center;
  height: 100%;
  background-color: #d9534f;
  color: #fff;
  font-size: 12px;
  padding: 1px 5px;
  margin: 0 30px;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .body .form-table .kome {
    margin: 0 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .body .form-table tr {
    display: flex;
    flex-direction: column;
  }
}
.body .form-table th, .body .form-table td {
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .body .form-table th, .body .form-table td {
    font-size: 24px;
  }
}
.body .form-table th {
  width: 400px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .body .form-table th {
    width: 100%;
    justify-content: flex-start;
  }
  .body .form-table th br {
    display: none;
  }
}
.body .form-table td {
  width: 500px;
}
@media screen and (max-width: 750px) {
  .body .form-table td {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .body .form-table td span.wpcf7-list-item {
    padding-bottom: 1em;
    padding-right: 1em;
  }
}
.body .form-table td span:first-child input[type=text].short {
  margin-right: 18px;
}
.body .form-table td input[type=text], .body .form-table td input[type=tel], .body .form-table td input[type=email], .body .form-table td textarea {
  width: 480px;
  height: 20px;
  padding: 5px 10px;
}
@media screen and (max-width: 750px) {
  .body .form-table td input[type=text], .body .form-table td input[type=tel], .body .form-table td input[type=email], .body .form-table td textarea {
    height: 40px;
    font-size: 26px;
    width: 100%;
  }
}
.body .form-table td input[type=text].short, .body .form-table td input[type=tel].short, .body .form-table td input[type=email].short, .body .form-table td textarea.short {
  width: 220px;
}
.body .form-table td input[type=text].short_more, .body .form-table td input[type=tel].short_more, .body .form-table td input[type=email].short_more, .body .form-table td textarea.short_more {
  width: 100px;
}
.body .form-table td select {
  width: 200px;
  height: 2em;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .body .form-table td select {
    font-size: 24px;
  }
}
.body .form-table td textarea {
  width: 480px;
  height: 130px;
  padding: 5px 10px;
}
@media screen and (max-width: 750px) {
  .body .form-table td textarea {
    font-size: 24px;
    width: 100%;
  }
}
.body .form-table td .txt-box {
  margin-bottom: 15px;
}
.body .formtable-btn input[type=submit] {
  display: none;
}
.body .formtable-btn label {
  display: block;
  width: 130px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  background-color: #013893;
  color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .body .formtable-btn label {
    width: 260;
    font-size: 30px;
  }
}

footer {
  background-color: #414141;
  z-index: 999;
  position: relative;
  min-width: 1350px;
}
@media screen and (max-width: 750px) {
  footer {
    min-width: 750px;
  }
}
footer .top_wrap, footer .bottom_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1350px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  footer .top_wrap, footer .bottom_wrap {
    width: 750px;
    padding-top: 80px;
  }
}
footer .top_wrap .logo {
  position: absolute;
  left: 0;
  top: 30px;
}
@media screen and (max-width: 750px) {
  footer .top_wrap .logo {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
footer .top_wrap nav {
  display: flex;
  margin: 65px 0 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 750px) {
  footer .top_wrap nav {
    width: 500px;
    flex-wrap: wrap;
    font-size: 24px;
  }
}
footer .top_wrap nav li {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  footer .top_wrap nav li {
    width: 250px;
    margin: 20px 0;
  }
}
footer .top_wrap nav li .subnav {
  display: none;
}
footer .bottom_wrap .snsbox {
  position: absolute;
  width: 190px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  footer .bottom_wrap .snsbox {
    width: 50%;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  footer .bottom_wrap .snsbox li {
    margin: 0 10px;
  }
}
footer .bottom_wrap .copyright {
  margin: 50px 0 20px 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

#content-form{
  position: relative;
  width: 1100px;
  margin: 0 auto 190px;
}
#content-form h3{
  text-align: center;
  color: #013893;
  border-bottom: 2px solid;
  padding: .5em 0;
}
@media screen and (max-width: 750px){
  #content-form {
    width: 750px;
  }
  #content-form.max{
    width: 100%;
  }
  #content-form h3{
    font-size: 1.8em;
  }
}

#content-download{
  text-align: center;
}
#content-download a{
  width: 800px;
  margin: 10em auto 5em;
  padding: 1em 0;
  background-color: #013893;
  color: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 750px){
  #content-download a{
    width: 600px;
    font-size: 1.5em;
  }
}