@charset"utf-8";   /*index.html用css_ken*/
* {
   box-sizing: border-box;
 }
@media only screen and (min-width: 721px) /*and (max-width:1023px)*/ {
 html {
  font-size: 70%;
 }
}
@media only screen and (max-width: 720px) {  /*標準ルートフォント16pxに0.625を掛けると10px remを使うときに必要*/
 html {
   font-size: 62.5%;
 }
}

body{
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222222;
  font-family:'Verdana',sana-serif;
  line-height: 1.5;
}
p,h1,h2,h3,h4,h5,h6{
  /*margin-top: 0;*/
  margin: 0;
}
a {
  text-decoration: none;
}
h1{
  margin: 0;
  padding: 0;
  font-size: 5rem;
  font-weight: 300;   /*標準は400*/
}
h2{
  font-size: 4rem;
  font-weight: 300;   /*標準は400*/
}
h3{
  font-size: 3rem;
  font-weight: 300;   /*標準は400*/
}
h4{
  font-size: 2rem;
  font-weight: 300;   /*標準は400*/
}
h5,h6{
  font-size: 1.8rem;
  font-weight: 200;   /*標準は400*/
}
p{
  font-size: 1.6rem;
  font-weight: 400;   /*標準は400*/
}
#hmenu img {
  /*vertical-align:bottom;*/
  width: 30px;
  height: 28px;
}
img {
  /*vertical-align:bottom;*/
  width:100%;
  min-width: 140px;
  max-width: 1040px;
  height: auto;
}
.arrow{
  width: 30px;
  height: 30px;
  border: 5px solid;
  border-color: #0088ff #0088ff transparent transparent;
  transform: rotate(135deg);
}
hr {
  border-width: 0.5px 0px 0px 0px;
  border-style: solid;
  border-color: #cccccc;
  height: 1px;
  width: 85vw;
}
hr.style1 {
  border-width: 0.5px 0px 0px 0px;
  border-style: solid;
  border-color: #cccccc;
  width: 90%;
  margin-bottom: 2rem;
  border-color: red;
  
}
@media screen and (min-width: 700px) {
hr {
  border-width: 0.5px 0px 0px 0px;
  border-style: solid;
  border-color: #cccccc;
  height: 1px;
  width: 1100px;
}
}

section{
  padding: 2px;
  margin-top: 0;
  margin-left: 10;
  margin-right: 10;
  margin-bottom: 0;
}
/*=====================header============================*/
header {
  display: inline-flex;
  /*padding: 0 1%;*/
  /*position: fixed;*/
  top: 0;
  width: 100%;
  height: 4rem;
  background-color: transparent;
  /*display: flex;*/
  /*align-items: top;*/
}
.headA a{
  font-size: 2rem;
  font-weight: 400; 
  color: #000;
  padding-left: 10;
}
a {
  color: #0000ff;
  text-decoration: none; 
}
.site_header{
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 0 1%;
}
/*==============================hメニュー=======================*/
#hmenu{
  margin: 0;
  padding: 3px;
  background: #ffffff;
  /*background: #000;*/
}
#hcheck, #hclose {display:none;}
#hopen{
  display: block;
  width: 58px;
  cursor: pointer;
}
#hopen img{ display: block;}
#hclose, nav{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
}
#hclose{
  z-index: 2;
  width: 100%;
  background: transparent;
  opacity: 0.5;
  transition: 0.5s;
}
nav{
  z-index: 3;
  /*width: 330px;*/
  width: 70vw;
  background-color: #fff;
  transition: 0.5s;
  transform: translateX(-100%);
}
#hcheck:checked ~ #hclose { display: block;}
#hcheck:checked ~ nav{
  transform: translateX(0);
  box-shadow: 4px 0 12px rgba(0,0,0,0.4);
  overflow-y: scroll; 
}
/*
.nav{
  float: right;
  margin-top: 5px;
}*/
nav li{
 /*margin:  20px;*/
 margin: 20px auto;
 font-size: 1.8rem;
 list-style: none;
 text-align:center;
}
/*===========================ハンバーガーアイコン================================*/
.btn-burger {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 10px;
/*background-color: red;*/
}
/*ハンバーガーアイコンを作る三本線*/
.icon, .icon:before, .icon:after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px; 
  width: 23px; 
  background-color: #000;
  /*border-radius: 2px;*/
  display: block;
  content: '';
  cursor: pointer;
  margin: auto;
}
.icon:before {
  top: 16px;
}
.icon:after {
   top: -16px;
}
/*チェックボックス非表示*/
.nav-toggle {
  display: none;
}
/*====================================================*/
/*アイコンをクリックしたら*/
.nav-toggle:checked ~ .btn-burger .icon {
  background: transparent;
}
.nav-toggle:checked ~ .btn-burger .icon:before {
  transform: rotate(-45deg);
  top: 0;
}
.nav-toggle:checked ~ .btn-burger .icon:after {
  transform: rotate(45deg);
  top: 0;
}
.icon,.icon:before,.icon:after {
  transition: all 0.5s;
}
/*=======================footer==================================*/
.footer{
  /*display: flex;*/
  width: 100%;
  background-color: #EEEEEE;
  font-size: 1.6rem;
  padding: 5px;
}
.for_top{
  display: flex;
  justify-content: flex-end;
  /*background-color: #000;*/
  /*margin-right: 10px;*/
}
/*=======================topページ==================================*/
@media screen and (min-width: 700px) {
.content{
  width: 1200px;
  margin: 0 auto;
}
}
.content li{
  font-size: 1.6rem;
}
ul.device{
  /*list-style-type: disc;*/
  list-style-type: none;
  display: list-item;  /* 縦に並べる */
  margin-left: 15px;
}
.top_0{
  background-image: url(./img/oosaka2.jpg);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: cover;
  width:100%;
  height:65%;
  margin: 0;
  padding:10px;
}
.top_1{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}
/*==============device_introductionの始まり==============*/
.device_introduction{
  display: flex;
  flex-direction: column;
  /*background-color: red;*/
  margin: 10px;
}
.device_introduction_1{
  width: 60vw;
  /*background-color: lightgray;*/
}
.device_introduction_1 h5{
  font-weight: 550;
  font-size:1.8rem;
}
.device_introduction_2{
  width: 80vw;
  background-color: #f5f5f5;
  margin: 0;
  padding: 5px;
}
.device_introduction_2 h5{
  font-weight: 400;
  font-size:1.6rem;
}
@media screen and (min-width: 700px) {
.device_introduction{
 display: flex;
 flex-direction: row;
  width: 700px;
  margin: 15px auto 0;
  /*background-color: blue;*/
}
}

/*==============device_introductionの終わり==============*/
/*================device_table=======================*/
.table_device{
display: flex;
flex-direction: column;
align-items: center;
}
.table_device{
  width:95%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.8rem;
}
/*.table_device tr {
  height:15vh;
  border-color: #DCDCDC;
  border-style: solid;
  border-width: 0.7px 0;
}*/
/*=====================company_profile===========================*/
.company_profile {
  display: flex;
  flex-direction: row;
  background-image: url(./img/gps_01.jpg);
  background-repeat: no-repeat;
  /*background-position: center center;*/
  background-size: cover;
  background-position: 20% 70%;
  width:100%;
  height:25vh;
}
/*=============================table====================================*/
.company_profile_table{
display: flex;
flex-direction: column;
align-items: center;
}
.company{
  width:90%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.6rem;
}
.company tr {
  height:15vh;
  border-color: #DCDCDC;
  border-style: solid;
  border-width: 0.7px 0;
}
/*=========================content_prototyping=====================================*/
.content_prototyping{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content_prototypingA{
  width: 90vw;
  text-align: center;
  margin-top: 20px;
  /*background-color: #e6e6e6;*/
}
.content_prototypingB{
  width: 85vw;
  background-color: #cce7ff;
  /*text-align: center;*/
  /*line-height: 40px;*/
  margin-top: 20px;
  padding: 2% 5%;
  border-radius: 10px;
  /*border: 3px solid #009cd3;*/
}
@media screen and (min-width: 700px) {
.content_prototypingB{
  width: 700px;
  margin: 15px auto 0;
  /*background-color: blue;*/
}
}
.content_prototypingC{
  width: 85vw;
  background-color: #cce7ff;
  margin-top: 20px;
  padding: 2% 5%;
  border-radius: 10px;
}
@media screen and (min-width: 700px) {
.content_prototypingC{
  width: 700px;
  margin: 15px auto 0;
}
}
.content_prototypingD{
  display: flex;
  flex-direction: column;
  width: 85vw;
  background-color: #cce7ff;
  margin-top: 20px;
  padding: 2% 5%;
  border-radius: 10px;
}
@media screen and (min-width: 700px) {
.content_prototypingD{
  width: 700px;
  margin: 15px auto 0;
}
}
.content_prototypingD_0{
  display: flex;
  font-size: 1.4rem;
  /*flex-direction: column;*/
  /*flex-direction: row;*/
  /*justify-content: space-around;*/
  /*align-items: center;*/
  /*background-color: #fff;*/
}
.content_prototypingD_1{
  /*justify-self: center;*/
  /*flex: 1 0 50px;*/
  margin: 5px;
  padding: 2%;
  /*background-color: #cce7ff;*/
  border-radius: 5px;
  border: 0.7px solid #000;
}
.content_prototypingD_2{
  /*justify-self: center;*/
  /*flex: 1 0 50px;*/
  margin: 5px;
  padding: 2%;
  border-radius: 5px;
  border: 0.7px solid #000;
  /*background-color: #cce7ff;*/
}
.content_prototypingD_3{
  justify-self: center;
  /*flex: 1 0 70px;*/
  margin: 5px;
  padding: 2%;
  border-radius: 5px;
  border: 0.7px solid #000;
  /*background-color: #cce7ff;*/
}
.content_prototypingD_4{
  justify-self: center;
  /*flex: 1 0 30px;*/
  margin: 5px;
  padding: 2%;
  border-radius: 5px;
  border: 0.7px solid #000;
}
.content_prototypingD_5{
  justify-self: center;
  /*flex: 1 0 30px;*/
  margin: 5px;
  padding: 2%;
  border-radius: 5px;
  border: 0.7px solid #000;
}
.arrow_right{
  margin-right: 2px;
  width: 9px;
  height: 9px;
  border: 3.5px solid;
  border-color: #0088ff #0088ff transparent transparent;
  transform: rotate(45deg);
  /*background-color: #ffffff;*/
}
/*ul.flow_list li h3::first-letter{
    font-family: garamond,times; 
    font-size: 2rem; 
    letter-spacing: 0.15em; 
}*/
/*=======================working========================================*/
.working_0 {
  display: flex;
  flex-direction: row;
  background-image: url(./img/gps_03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 30% 80%;
  width:100%;
  height:25vh;
}
.working_1{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
/*.working_1_1{
justify-content: center;
}*/
/*====================explanatory material説明資料==========================*/
.explanatory_0 {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  height:45vh;
}
.explanatory_1{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
/*====================explanatory追加==========================*/
 .explanatory_1_1{
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 2px;
 }
/*============================contentA0========================*/
.contentA0{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*margin-bottom: 0;*/
  /*flex-direction:row;*/
  margin: 0;
  padding: 30px;
  width: 100%;
  /*background-color: #5D9AB2;*/
}
.contentA0_img{
/*background-color: #5D9AB2;*/
}
.contentA0_txt{
  /*display: flex;*/
  /*flex-direction: column;*/
  /*background-color: #5D9AB2;*/
}
.contentA0_txt_name{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contentA0_txth3{
  background-color: #fff;
}
.contentA0_txth4{
  /*background-color: #5D9AB2;*/
  margin-bottom: 3rem;
}
.contentA_solo_txt{
  display: flex;
  flex-direction: column;
  /*justify-content: space-around;*/
  justify-content: center;
  align-items: center;
  /*background-color: #5D9AB2;*/
  margin: 0;
  padding: 30px;
}
.contentA_solo img{
  width: auto;
  /*height: 50vh;*/
  /*background-color: #5D9AB2;*/
}
.contentA{
  display: flex;
  flex-direction: column;
  /*justify-content: space-around;*/
  justify-content: center;
  /*align-items: center;*/
  margin-bottom: 0;
  /*flex-direction:row;*/
  /*margin: 0;
  padding: 0;*/
  /*width: 100%;*/
  /*background-color: #5D9AB2*/;
}
/*============================メニュー中身========================*/
/*.nav {
  background-color: #EEE;
  position: fixed;
  top: 0;
  left: 0;
  width: 60vw;
}
.nav-list a {
  display: block;
  text-decoration: none;
  color: #222222;
}
.nav-list {
  list-style: none;
  display: none;
  margin: 0;
  padding-left: 20px;
}
.nav-list li {
  margin: 0;
  padding: 5px;
  text-align:center;
  font-size: 20px;
}
.nav-toggle:checked ~ .nav .nav-list {
  display: block;
}*/
/*==============幅768px以上のスタイル指定 ここから==================*/
/*@media screen and (min-width: 768px) {
.btn-burger {
  display: none;  
}
header {
  margin: 0;
  padding: 1px 0 0;
  width: 100%;
  display: flex;
  justify-content: space-between; 
}
ul{
  display: flex;
  align-items: center; 
}
.nav-toggle:checked ~ .nav .nav-list {
  display: none;
}
.nav {
  float: right;
  width: 100%;
  background-color: transparent;
}
.nav-list {
  display: flex;
  justify-content: center;
  height: 30px;
  align-items: center;
}
}*/
/*------------------@media print用------------------*/
@media print, media screen and {
 html {
   font-size: 63%;
 }
 .pagebreak {
   break-before: page;
 }
 #hmenu{
   display: none;
 }
 .footer {
   display: none;
 }
}
/*------------------@media print用終了------------------*/

