@charset "UTF-8";
/*—————————————————————————————————
   CSSリセット
—————————————————————————————————*/
* {
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'Helvetica', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro W3', 'Lucida Grande', 'Verdana', sans-serif;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
small,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li {
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ul,
ol,
li {
  list-style: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img {
  border: 0px;
}

a {
  color: #429ae3;
  text-decoration: underline;
  list-style-position: inside;
}

mark {
  background: none;
}

.ami {
  font-size: 2.0em;
  font-family: Verdana;
  font-style: italic;
}

sup {
  font-size: 0.5em;
  vertical-align: top;
  font-style: normal;
}

/* clearfix */
.clear {
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.tilt {
  font-style: italic;
}

.kome {
  margin-left: 1em;
  text-indent: -1em;
}

.kome:before {
  content: "※";
}

.btn:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}

* {
  box-sizing: inherit;
}

*:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  height: 100%;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  display: block;
}

main,
.contents_mypage,
#contents {
  flex-grow: 1;
}

.marker {
  background: linear-gradient(transparent 75%, #ffe706 75%);
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.faq_box li a:after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

input[type="text"] {
  max-width: 100vw;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 800px;
  width: 100%;
  margin: 20px 0;
}

table th,
table td {
  border: 1px solid #eaf5f9;
  padding: 15px;
  font-size: 14px;
}

table th {
  width: 20%;
  background-color: #eaf5f9;
  color: #191919;
  border: 1px solid #fff;
}

#error_message,
.error_txt,
#email-error {
  color: red;
}

.btn1, .btn2, .btn3 {
  display: block;
  max-width: 100%;
  margin: 20px auto;
  padding: 5px 0;
  text-align: center;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bolder;
  border: solid 1px #429ae3;
  color: #429ae3;
  background-color: #fff;
  width: 300px;
  position: relative;
}

.btn1:hover, .btn2:hover, .btn3:hover {
  background-color: #429ae3;
  color: #FFF;
  cursor: pointer;
}

.btn1:after, .btn2:after, .btn3:after {
  content: "＞";
  position: absolute;
  right: 6px;
}

.btn2 {
  border: solid 1px #2ac8be;
  color: #2ac8be;
}

.btn2:hover {
  background-color: #2ac8be;
}

.btn3 {
  width: 200px;
  margin: 20px;
}

.btn-active:hover {
  background-color: #429ae3;
  color: #FFF;
}

.ama_btn {
  display: inline-block;
  width: 150px;
  border: 1px solid #9c7e31;
  border-top: 1px solid #a88734;
  border-bottom: 1px solid #846a29;
  border-radius: 3px;
  background: linear-gradient(to bottom, #f7dea1, #f0c24d);
  box-shadow: 0 1px 0 #faecc8 inset;
  text-align: center;
  color: #111;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1;
  padding: 0.7em;
  margin: 0 auto;
}

.ama_btn:hover {
  background: linear-gradient(to bottom, #f5d689, #eeba35);
}

.heading_h2 {
  width: 100%;
  max-width: 1200px;
  border-bottom: solid 1px #0080d8;
  margin: 40px 0 10px 0;
}

.heading_h2 span {
  display: inline;
  font-size: 20px;
  font-weight: normal;
  font-weight: bold;
}

.heading_h2 small {
  display: inline;
  margin-left: 10px;
  font-size: 12px;
  font-weight: lighter;
  color: #429ae3;
  vertical-align: text-top;
}

@media screen and (max-width: 1199px) {
  .table_wrapper,
  .table_wrapper_confirmation {
    overflow-x: scroll;
  }
}

/*—————————————————————————————————

   メインコンテンツ

—————————————————————————————————*/
#top section[class*="_box"] {
  margin-bottom: 80px;
}

/*メインビジュアル*/
.mainvis, .mainvis2 {
  max-width: 1200px;
  display: block;
  margin: auto;
  padding-top: 7px;
}

.mainvis img, .mainvis2 img {
  width: 100%;
  object-fit: contain;
}

.mainvis2 {
  padding: 0;
}

/*—————————————————————————————————
   TOP
—————————————————————————————————*/
main .contents_inner {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px;
}

main .contents_inner section:first-child {
  margin-top: 30px;
}

.head_title {
  padding: 10px;
  max-width: 1200px;
  margin: auto;
}

.contents_head {
  background-color: #0080d8;
  color: #fff;
  width: 100%;
}

.arrows {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 40px solid #429ae3;
  margin: 10px auto;
}

.input_box {
  width: 360px;
  justify-content: space-between;
  background-color: #efefef;
  padding: 20px 20px;
  margin-top: 10px;
}

.input_box input {
  width: 100%;
  height: 20px;
  border-radius: 3px;
  border: solid 1px #bfbfbf;
}

[class^="category_"], .category_none, .category_update, .category_news {
  margin-right: 30px;
  width: 100px;
  height: 22px;
  line-height: 22px;
  border: solid 1px #429ae3;
  font-size: 0.75em;
  color: #429ae3;
  text-align: center;
}

.category_none {
  border: solid 1px gray;
  color: gray;
}

.category_update {
  border: solid 1px #429ae3;
  color: #429ae3;
}

.category_news {
  border: solid 1px #2ac8be;
  color: #2ac8be;
}

/*投稿表示ボックス*/
.archive_box {
  position: relative;
}

.archive_box li {
  display: flex;
  border-bottom: dashed 1px #83b4d5;
  padding: 12px 0;
  align-items: center;
}

.archive_box li time {
  width: 145px;
}

.archive_box li .news_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75%;
}

.archive_box li .news_title a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.archive_box li .news_title a:hover {
  text-decoration: underline;
}

.archive_box .archive_link {
  font-size: 12px;
  position: absolute;
  right: 42px;
  top: 12px;
}

.archive_box .archive_link::before {
  content: '';
  height: 0;
  width: 0;
  display: inline-block;
  border: 4px transparent solid;
  border-right-width: 0;
  border-left-color: #333;
  margin-right: 5px;
}

.rss {
  position: absolute;
  right: 0;
  top: -2px;
}

.rss img {
  width: 30px;
}

/*縦ボックス*/
.func_box ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.func_box li {
  padding: 10px 30px 0 20px;
  text-align: center;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.func_box li:nth-child(1) {
  background: #e5eaf1;
}

.func_box li:nth-child(1) .item_head {
  color: #2b6cba;
}

.func_box li:nth-child(2) {
  background: #eaf5f9;
}

.func_box li:nth-child(2) .item_head {
  color: #2eafff;
}

.func_box li:nth-child(2) img {
  width: 300px;
  margin-right: 34px;
}

.func_box li:nth-child(3) {
  background: #edfdfc;
}

.func_box li:nth-child(3) .item_head {
  color: #2ac8be;
}

.func_box li div {
  width: 80%;
}

.func_box li img {
  width: 334px;
  object-fit: scale-down;
}

.func_box .item_head {
  font-size: 1.2em;
  font-weight: bolder;
  padding: 5px 0;
  margin-bottom: 10px;
}

.func_box .item_head:before {
  content: "■";
}

.func_box .item_head,
.func_box .item_main {
  padding-left: 10px;
  text-align: justify;
}

.func_box .example {
  width: 100%;
  text-align: left;
  background-color: #fff;
  padding: 5px;
  font-size: 13px;
}

.func_box .example .item_main2 {
  font-weight: bold;
}

.func_box .example p:not(.item_main2) {
  padding-left: 60px;
}

/*横ボックス*/
.intro_box {
  margin-bottom: 150px;
}

.intro_box .intro_inner {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  line-height: 18px;
}

.intro_box .intro_item_wrapper {
  background-color: #eaf5f9;
  width: 75%;
}

.intro_box .equip {
  margin-right: 30px;
}

.intro_box .attent {
  position: absolute;
  bottom: -30px;
}

.intro_box .attent .ami {
  font-size: 16px;
  font-weight: bold;
}

.intro_box ul {
  display: flex;
  justify-content: space-between;
}

.intro_box li {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
  font-size: 13px;
}

.intro_box li:nth-child(2) {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

.intro_box li img {
  margin-bottom: 10px;
}

.intro_box .item_head {
  background-color: #0080d8;
  color: #fff;
  font-size: 1.2em;
  font-weight: bolder;
  height: 85px;
  position: relative;
}

.intro_box .item_head span {
  width: 80%;
}

.intro_box .item_head .mini {
  font-size: 14px;
}

.intro_box .item_img {
  height: 150px;
  position: relative;
  background-color: #fff;
}

.intro_box .item_main {
  text-align: justify;
  padding: 20px;
}

@media all and (-ms-high-contrast: none) {
  .intro_box .item_main {
    text-align: left;
  }
}

.intro_box .item_price {
  margin-bottom: 10px;
  margin-top: auto;
}

/*横ボックス2*/
.serv_box, .serv_box_table {
  margin: 40px 0 60px;
  position: relative;
}

.serv_box small, .serv_box_table small {
  font-size: 0.8em;
}

.serv_box .attent, .serv_box_table .attent {
  position: absolute;
  right: 4px;
  top: 25px;
}

.serv_box h3, .serv_box_table h3,
.serv_box h4,
.serv_box_table h4 {
  text-align: center;
}

.serv_box h3, .serv_box_table h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.serv_box .item_head, .serv_box_table .item_head {
  background-color: #0080d8;
  color: #fff;
  font-weight: bold;
  padding: 20px;
}

.serv_box .item_img, .serv_box_table .item_img {
  height: 170px;
  position: relative;
  background-color: #fff;
}

.serv_box .item_main, .serv_box_table .item_main,
.serv_box .item_sub,
.serv_box_table .item_sub {
  padding: 40px 10px;
  font-weight: bolder;
}


.serv_box .item_sub,
.serv_box_table .item_sub {
  color: #0080d8;
  font-size: 1.2em;
  border-bottom: 2px solid #fff;
}

.serv_box_table table th,
.serv_box_table table td {
  border: 2px solid #fff;
}

.serv_box_table .item_sub,
.serv_box_table .item_main {
  background-color: #eaf5f9;
  text-align: center;
  width: 25%;
}

.opt_box {
  margin-bottom: 120px;
}

.opt_box h3,
.opt_box h4 {
  text-align: center;
}

.opt_box h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.opt_box ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

.opt_box ul .attent {
  position: absolute;
  right: 4px;
  top: -24px;
}

.opt_box li:nth-of-type(1) {
  width: 100%;
}

.opt_box li:nth-of-type(2) {
  flex-basis: 280px;
  flex-shrink: 0;
  display: block;
  margin: auto;
}

.opt_box li:nth-of-type(3) {
  background: #eaf5f9;
  border-left: 2px solid #fff;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 448px;
}

.opt_box .item_head {
  background-color: #0080d8;
  color: #fff;
  font-weight: bold;
  padding: 20px;
}

.opt_box .item_img {
  height: 134px;
  position: relative;
  background-color: #fff;
}

.opt_box .item_main {
  padding: 16px 30px;
  text-align: justify;
}

.opt_box .item_main:nth-child(1) {
  border-bottom: 2px solid #fff;
  color: #0080d8;
  font-size: 1.2em;
  font-weight: bolder;
}

.opt_box .item_main:nth-child(2) {
  font-size: 13px;
}

/*左画像右テキストボックス*/
.two_box .items {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.two_box .items img {
  margin: auto;
  display: block;
}

.two_box .arrow_box {
  text-align: center;
}

.two_box .arrow_box img {
  width: 150px;
}

.two_box .item {
  margin: 40px auto;
}

.movie_box {
  margin-top: -40px;
}

.movie_box iframe {
  margin: 40px auto;
  display: block;
  max-width: 640px;
}

.spec_box_inner {
  margin-top: 20px;
}

.spec_box_inner table {
  min-width: 400px;
}

.spec_box_inner td {
  font-size: 13px;
}

/*導入事例ボックス*/
.items_link_btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 50px 0 30px 0;
}

.items_link_btn a {
  display: block;
  position: relative;
  width: 350px;
  border: solid 1px #429ae3;
  text-decoration: none;
}

.items_link_btn a:hover {
  opacity: 0.7;
}

.items_link_btn_head {
  background-color: #429ae3;
  height: 2ems;
  color: #FFF;
  font-weight: bolder;
  display: block;
  padding: 10px;
  height: 48px;
}

.items_link_btn_txt {
  display: inline-block;
  background-color: #FFF;
  color: #429ae3;
  padding: 10px;
}

.items_link_btn_allow {
  display: inline-block;
  position: absolute;
  top: 65%;
  left: 88%;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-color: #305c72;
  background-position: 50% 50%;
  background-image: url("../img/share/img_share_btn1_hover.png");
  border-radius: 5px;
}

/*FAQボックス*/
.faq_box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.faq_box li {
  width: 32%;
  margin: 20px 0;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  background-color: #0080d8;
}

.faq_box li div {
  max-width: 80%;
}

.faq_box li img {
  margin: 5px;
}

.faq_box li p {
  text-align: center;
  color: #fff;
}

.faq_box li a {
  display: block;
  width: 230px;
  max-width: 100%;
  background-color: #fff;
  color: #000;
  font-weight: bolder;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  margin: 4px auto;
  position: relative;
}

.faq_box li a:hover {
  opacity: 0.8;
  cursor: pointer;
}

.faq_box li a:after {
  content: "＞";
  right: 6px;
}

/*———————————————————————
 ダウンロード
————————————————————*/
.contents_dl_box {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.contents_dl_box > li {
  border: 1px solid #ccc;
  text-align: center;
  width: 49%;
  margin: 30px 0 0;
  padding: 30px;
}

.contents_dl_box > li > ul {
  max-width: 300px;
  margin: auto;
}

.contents_dl_box > li li {
  list-style-position: inside;
  list-style-type: disc;
  text-align: left;
  font-size: 13px;
}

/*———————————————————————
     404
———————————————————————*/
#none section {
  margin: 20px auto;
  text-align: center;
  color: #194767;
  border: dashed 6px #d2dbeb;
  background-color: #ffffff;
  padding: 50px 25px;
}

/*——————————————————————————————————————————————————————

  レスポンシブ タブレット（ipad Pro）

———————————————————————————————————————————————————————*/
@media screen and (max-width: 1199px) {
  .intro_box .intro_inner {
    display: block;
  }
  .intro_box .intro_item_wrapper {
    width: 100%;
    overflow-x: scroll;
  }
  .intro_box li {
    min-width: 250px;
  }
  .intro_box .equip {
    margin: 20px auto;
    display: block;
  }
  .intro_box .attent {
    bottom: -50px;
  }
  .func_box li {
    display: block;
    padding: 20px;
  }
  .func_box li div {
    margin: auto;
    width: 100%;
  }
  .func_box li img {
    display: block;
    margin: auto !important;
  }
  .spec_box_inner {
    overflow-x: scroll;
  }
}

/*———————————————————————————————————————————————————————————————————————————————————————————————————

   レスポンシブ

———————————————————————————————————————————————————————————————————————————————————————————————————*/
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  /*TOP*/
  .archive_box li {
    display: block;
  }
  .archive_box li .news_title {
    width: 100%;
  }
  .two_box .arrow_box img {
    width: 75px;
  }
  .two_box .items {
    display: block;
  }
  .items_link_btn {
    display: block;
    margin: 20px auto;
  }
  .items_link_btn li {
    margin: 10px 0;
  }
  .items_link_btn li a {
    width: 100%;
  }
  .func_box .example p:not(.item_main2) {
    padding-left: 20px;
  }
  .input_box {
    width: 100%;
  }
  /*
	faq
	—————————————————————————————————*/
  .faq_box li {
    width: 100%;
    display: inline-block;
    padding: 0;
    text-align: center;
    font-size: 0.9em;
    margin: 10px 0;
  }
  .faq_box li div {
    margin: 0 auto 15px;
  }
  .faq_box li p {
    padding: 2px;
  }
  .faq_box li a {
    height: 30px;
    width: 90%;
  }
  /*
	ダウンロード
	—————————————————————————————————*/
  .contents_dl_box {
    flex-wrap: wrap;
  }
  .contents_dl_box > li {
    width: 100%;
  }
}

/*—————————————————————————————————

   ヘッダー

—————————————————————————————————*/
header {
  margin-bottom: 20px;
}

footer {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  header {
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */