<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*--------------------------------------------------*/
/*-----   工場見学：ダンボールができるまで     -----*/
/*--------------------------------------------------*/
#pageHeader h1{
	margin-top:70px;
	line-height:120%;
}
#pageHeader h1 img{
	float:right;
	max-width:144px;
	margin:-50px 20px 0;
	padding:0;
}


.kengakku{
	border-top:3px double #CCC;
	margin:10px 0;
	padding:10px 0;
}

.balloon{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  background-color: #ffe9bb;
  margin-left: 120px;          /* 左に余白を設ける */
  width:50%;
}
/* 画像 - 絶対配置で左上に配置 */
.balloon .icon{
  position: absolute;
  left: -120px;
  top: 0;
}
.balloon .icon img{
	display:inline;
}
/* 三角アイコン */
.balloon::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #ffe9bb;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.kengakuImage{
	position:relative;
	display:inline;
	float:right;
	top:-80px;
}
.kengakuImage2{
	float:right;
}

/*=======================================================================================================================*/

/*--- タブレット用（481px～800px）環境の設定 ---*/

/*=======================================================================================================================*/
@media screen and (min-width:481px) and (max-width:800px){

.balloon{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  background-color: #ffe9bb;
  margin-left: 120px;          /* 左に余白を設ける */
  width:34%;
}



}


/*=======================================================================================================================*/

/*--- スマートフォン用（480px以下）環境の設定 ---*/

/*=======================================================================================================================*/
@media screen and (max-width : 480px){

#pageHeader h1{
	margin-top:30px;
}
#pageHeader h1 img{
	margin-top:-24px;
	width:80px;
}


.kengakuImage{
	position:inherit;
	float:none;
	margin-top:20px;
}
.kengakuImage2{
	float:left;
}


}
</pre></body></html>