@charset "UTF-8";

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

/*============================
ナビゲーション
==============================*/

/*ナビゲーションメニュー固定*/
#header {
    display: flex;
    position: fixed;
    align-items: center;
    z-index: 99;
}

/*ナビゲーション幅*/
nav {
	position: fixed;
	top:0;
	width: 100%;
	height: 62px;


}

/*ナビゲーション文字*/
nav ul{
	 display: flex;
    align-items: center;
    height: 80px;
    justify-content: space-around;
    list-style: none;
    background-color: white;
}

/*アイティコーポレーション文字*/
h1{
    color: black;
    text-align: center;
    top: 30%;
    padding: 10px;
    display: flex;
    align-items: center;
}
.menu2 {
	display: flex;
	background-color: white;

}

a {
    text-decoration:none; 
}

a:hover {
  text-decoration: underline;
}

/*============================
ゆっくりフェード切り替え
==============================*/
.css-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 18s infinite;

  display: flex;
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */

  text-align: center;         /* 文字中央揃え */
  color: #000000;
}

/* 表示タイミングをずらす */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }

@keyframes fadeSlide {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
/*スライダーの上の文字*/
.page-title {
    position: absolute;

/*ぼかした影を使用 配置は水平方向、垂直方向、ともに0です。

これでぼかしも0だと影が完全に文字の下に隠れます。このコードではぼかしを10にしました。

開始位置が文字と同じ影をぼかすことで、文字全体が発光しているように見せられます。*/
 text-shadow: 0 0 10px #ffcc00;	
    font-size: 37px;
    text-align: center;
 /* 文字の上下間。 */		
    margin-top: 8%;
}

h2{
    border-radius: 20px;
    width: 100%;
    padding: 20px;
}

h2 p{
    text-align: center;    
}

h3{
    color: blue
	background-color: aquamarine;
    width: 100%;
    text-align: center;
	font-size: 40px;  
	margin: 100px 0;
	border-bottom: 2px solid #0bd;　 　/* 下に線を引く */

}

h3 p{
    text-align: left; 
}

h4{
    font-size: 25px; 	
    width: 100%;
    padding: 20px;

}

h6{
    width: 100%;
    padding: 20px;
    font-size: 35px; 
	color: #1760a0;
	text-align: left;　　 　/* 左揃え */
}

h7{
	font-size:40px;	
	color: #ffffff;
}

p{
	text-align: left;　　 　/* 左揃え */
    margin-bottom: 2em; /* 段落間の余白 */


}
/*========================
  main横幅
==========================*/
main{		
    max-width: 1100px;
    top: 800px;
    margin: 0 auto;
}

/*============================
TOPページに戻る
==============================*/
#page_top{
    position:fixed;
    bottom: 80px;
    right:20px;
}

#page_top a{

    text-align: center;
    text-decoration: none;
    padding: 20px;
    background-color: aquamarine;
    border-radius: 50%; /*枠線の角の丸*/
}

/*マウスをポインタに乗せたときに色が変わる*/
#page_top a:hover{ 
    background-color: rgb(70, 212, 165);
}

/*============================
お知らせ
==============================*/
.osirase {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 左右中央 */
    width: 900px;
    margin: 0 auto ;
	height: 1200px;	
	margin-bottom: 40px; /* 要素の下に40pxの余白を追加 */
}

.item{
	margin-left: 50px;
}
.wrapper {                  /* 背景色を横いっぱいにする */
  background-color:#DDEEFF;	
  margin: 0 auto;           /*上下の余白を0にして左右中央に配置*/

}

/*============================
製造業に特化した ITソリューションを提供
==============================*/	

.to-container {
  display: flex;         /*直下の子要素を横並びにする*/
  align-items: center;   /*子要素を上下中央で揃える指定*/
  gap: 40px;             /*アイテム（要素）間の行と列の余白（溝）を40ピクセルに設定するプロパティ*/
}

.to-item1 {
  width: auto;          /*横幅 ＝ 親要素の幅いっぱい*/
  padding-left: 60px;   /* 左余白 */
}

.to-item1 h6 {
  margin-bottom: 10px;
}

.to-item1 p {
  margin-bottom: 20px;
}

.to-item2 {
  flex: 1;/*同じ親要素内にある指定した要素を均等幅にすることが可能*/
  justify-content: flex-start;/* 横並びの要素を左寄せで配置する指定 */
}


/* 画像を可変に */
.to-item2 img {
  display: block;	/* 前後で改行が入るので、縦に要素が並ぶ。 · 幅・高さの指定ができる。 · 余白の指定ができる。 · 要素の配置の指定ができない */
  max-width: 100%;
  height: auto;

}


@media screen and (max-width: 768px) {
  .to-container {
    flex-direction: column;
    align-items: stretch; /* 横いっぱい使う */
    gap: 20px;
    padding: 0 15px; /* 左右余白 */
  }

  .to-item1 {
    padding-left: 0;
  }

  .to-item1 h6 {
    font-size: 20px;
    line-height: 1.6;
  }

  .to-item1 p {
    font-size: 16px;
    line-height: 1.8;
  }

  .to-item2 {
    width: 100%;
    justify-content: center; /* 画像中央 */
  }

  .to-item2 img {
    width: 100%;
    max-width: 400px; /* 大きすぎ防止 */
    border-radius: 8px; /* ちょいオシャレ */
  }
}
/*============================
生産管理に関するお困りごとはございませんか？
==============================*/
.wrapper2{
  background-color:#1760a0;
  text-align: center;	
  padding-top: 100px; /* 内側上部に30pxの余白 */		
}	

/* 中身のレイアウト */
.soudan-container {
  max-width: 1500px;   /* 中身の横幅を制限 */
  margin: 0 auto;      /* 中央寄せ */
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/

}

.soudan-left{            /* 絵の横幅*/
  width: 600px;	
  padding-top: 20px; /* 内側上部に30pxの余白 */	
}

.soudan-right{
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/
  margin-left: 100px;   　 /*子要素の左側に余白を100pxいれる*/	
  margin-bottom: 50px;     /*要素の下に50pxの余白を追加*/	
  text-align: left;　　 　/* 左揃え */	
}	


/*=========================
攻撃型生産管理システムTPiCS
===========================*/

.tpics{
  max-width: 1100px;
  margin: 0 auto;
}
/*=========================
TPiCS-Xで、製造業が抱える５つの難問を解決する
===========================*/	

.wrapper3{

  text-align: center;	
  padding-top: 100px; /* 内側上部に30pxの余白 */		
}	

#nanmon {
    padding-top: 100px;
    margin-top: -100px;
    background-color: #ccffff;	
}

.nanmon-container{
    display: flex;
    justify-content: center;
    padding: 30px;
    text-align: left;	
}

.nanmon-item1{
    width: 600px;
    margin-left: 30px;
	font-size:25px;	
	
}

.nanmon-item2{

    margin-left: 30px;
    justify-content: center;
    display: flex;
    align-items: center;	

}



/*=========================
TPiCS-Xの豊富なカスタム設計
kougekigata-item3
===========================*/	
.skill-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
	gap: 20px; /* アイテム間の隙間 */
	
 }

.skill-item{
    text-align: left;
    margin-left: 50px;
    width: 300px;
	border: 2px solid #333; /* 線を引く */
	padding: 20px;
    background-color:#DDEEFF;	
 }

/*========================
 kougekigata-item5
表
==========================*/
.kougekigata-item5{

    max-width: 1000px;
    top: 800px;
    margin: 0 auto;
}
/*=========================
TPiCS-X導入事例
kougekigata-item6
===========================*/	
.kougekigata-item6{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.zirei{
	margin-left: 150px;	
}



/* ============================
関連製品セクション
============================ */
	

.kanren-title{
    background:#1f3f66;
    color:white;
    text-align:center;
    font-size:50px;
    padding:30px 430px 30px 430px;
    margin: 20px 0;
    font-weight:bold;
}
	
.kanren-title2{   
    text-align:center;
    font-size:22px;
    color:#003366;
    font-weight:bold;
}




/* 中身のレイアウト */
.kanren-container {
  max-width: 1500px;   /* 中身の横幅を制限 */
  margin: 0 auto;      /* 中央寄せ */
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/

}

.kanren-left{            /* 絵の横幅*/
  width: 300px;	
  padding-top: 20px; /* 内側上部に20pxの余白 */	

}

.kanren-right{
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/
  margin-left: 100px;   　 /*子要素の左側に余白を200pxいれる*/	
  margin-bottom: 50px;     /*要素の下に50pxの余白を追加*/	
  text-align: left;　　 　/* 左揃え */	
}	

.kanren2-container {
  max-width: 1500px;   /* 中身の横幅を制限 */
  margin: 0 auto;      /* 中央寄せ */
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/

}

.kanren2-left{            /* 絵の横幅*/
  display: flex;
  padding: 20px;
  gap: 20px;	       /*行や列の間のすき間（溝）を設定*/
  margin-left: 100px;   　 /*子要素の左側に余白を200pxいれる*/	
  margin-bottom: 50px;     /*要素の下に50pxの余白を追加*/	
  text-align: left;　　 　/* 左揃え */	
}

.kanren2-right{
  width: 600px;	

}
/*=================
  導入効果
=================*/
#dounyu {
    padding-top: 100px;
    margin-top: -100px;

}

.effect-container{
    display: flex;
    justify-content: center;
    padding: 30px;
    text-align: left;	
}

.effect-list1{
    width: 600px;
    margin-left: 30px;
	font-size:18px;	
	
}

.effect-list2{

    margin-left: 100px;
    justify-content: center;
    display: flex;
    align-items: center;	


}
.effect-list{
    margin-top:20px;
}

.effect{
    margin-bottom:18px;
}

.effect-title{
    color:#cc0000;
    font-weight:bold;
}

.effect-text{
    margin-top:5px;
}


/*=================
  セミナー・デモ
=================*/
#seminar{
	padding-top: 100px;
	margin-top: -100px;

}
/*========================
  表
==========================*/
table{
    width: 900px;
    border-collapse:collapse;
    border:solid 2px rgb(51, 51, 119);
    margin: 50px;
    margin: 0 auto;     /* 中央寄せ */
}

table tr,td{
    border: dashed 1px rgb(26, 26, 62);
}

 table td{
    padding: 10px;
 }



/*=========================
出張デモンストレーション
===========================*/
#demo {
    padding-top: 100px;
    margin-top: -100px; 
}

.demo-container{
    display: flex;
    justify-content: center;
    padding: 30px;
    text-align: left;
}

.demo-item1{
    width: 700px;
    margin-left: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.demo-item2{
    width: 700px;
    margin-left: 30px;	
}

.demo-img{
    width: 300px;
}

/*=================
   生産管理に関するお困りごとはお気軽にご相談ください。
=================*/
.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
ul,li{
    margin:0;
    padding:0;
    list-style: none;/*箇条書きリストの先頭についている「黒い点」や、「番号」の見た目に関する指定ができるプロパティ*/
}

/*=================
フッター
===================*/
footer{
    background-color: yellowgreen;
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
}

