@charset "UTF-8";

/* 基本色 */
:root {
	--main-color: #fff;
	--accent-color: #fff;
	--dark-main-color: #fff;
	--text-bright-color: #000;
	--icon-color: #fff;
	--icon-bk-color: #fff;
	--gray-color:#cccccc;
	--large-width: 1000px;
	--middle-width: 800px;
}


/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;
}



/* 基本設定： ページ全体 */
body {
	margin: 0;
	font-family: 'メイリオ',
		'Hiragino Kaku Gothic Pro', 
		sans-serif;
}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb70 {margin-bottom: 70px;}
.mb80 {margin-bottom: 80px;}
.mb90 {margin-bottom: 90px;}
.mb100 {margin-bottom: 100px;}

.ml10 {margin-left: 10px;}
.ml20 {margin-left: 20px;}
.ml30 {margin-left: 30px;}
.ml40 {margin-left: 40px;}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}

.bold {font-weight: bold;}
.red {color: #FF0004;}

/* コンテンツA： メインイメージ */



.conA {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
}

.conA.compact {
	height: 450px;
	min-height: 0;
	background-image: url(img/balloon.jpg);
}

.conA h1 {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'ヒラギノ角ゴシック', sans-serif;
	font-size: 9vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
	color: #4F4F4F;
}

.conA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 18px;
	color: #4F4F4F;
}

.conA img {
	width: 20%;
}

.conA a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	
	border-radius: 6px;
	background-color: #fff;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.conA a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

@media (max-width: 472px) {
	
	.conA.compact {
	width: 100%; 
		max-width: 768px;
	background-image: url(img/mv_s3.jpg);
}


}


/* お知らせ */


.news .text {
	padding: 0px;
	
}

.news h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.news .photo {
	min-height: 300px;
	background-image: url(img/plant.jpg);
	background-position: center;
	background-size: cover;
}

.news table {
	border-collapse: collapse;
	border-top: solid 1px #CCCCCC;
	font-size: 0.875rem;
	
}

.news th,
.news td {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: solid 1px #c7c7c7;
}

.news th {
	padding-right: 1rem;
	text-align: left;
	word-break: keep-all;
}

.news a {color:#3A3737;
		text-decoration: none;

}
.news a:hover {color:#6A6868;
border-bottom: #cccccc solid 1px; }


@media (min-width: 768px) {
	.news .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}


	.news .text {
		flex: 3;
		padding: 50px;
	}
}

@media (max-width: 768px) {
	.news{ margin: 10px 10px 50px;
	}
}





/* フッター */
footer {
	color: #000000;
	color: var(--text-bright-color);
	background-color: #eeeeee;
	background-color: #eeeeee;
}

footer .container {
	padding: 20px 20px;
	margin-top: 50px;
}


@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}


	.footC {
		flex: 0 0 100%;
	}
		.footE {
		flex: 0 0 100%;
	}
}

.foot {

}

.foot .container {
display:block;
max-width: 1100px;
margin:0 auto;
height: auto; 

}

.fotmenu{

}

.fotmenu li {
	list-style:none;
	padding:12px;
	font-size:70%;
	  display: inline;

}
.fotmenu li a {color:#3A3737;
		text-decoration: none;

}
.fotmenu li a:hover {color:#6A6868;
border-bottom: #cccccc solid 1px; }

@media (max-width: 767px) {
	
}



/* フッターC： コピーライト */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}



/* ヘッダー */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
}

.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

/* ヘッダーA: サイト名 */
.headA {
	display: inline-block;
	padding-top: 13px;
	line-height: 70px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fff;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-decoration: none;
}


/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.headB a {
	display: block;
	padding: 15px;
	color: #000000;
	font-size: 12px;
	text-decoration: none;
}

.headB a:hover {
	background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display: flex;
	}
}


/* ヘッダーC： トグルボタン */

.container-small img {max-width:80%;}


@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.container-small img {max-width:60%;}

	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
	}
}

@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}



/* コンテンツページ: 記事 */




.gybox {width:98%; margin:10 auto;
	border: 1px dotted #C3BFBF;
	padding: 20px 30px;
  background: -moz-linear-gradient(top, #FFF, #eeeeee);
  background: -webkit-linear-gradient(top, #FFF, #eeeeee);
  background: linear-gradient(to bottom, #FFF, #eeeeee);
 
}

.post .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 50px auto;
}

.post h1 {
	padding-left: 0.5rem;
	border-left: solid 0.75rem #BF6A7A;
	border-left: solid 0.75rem var(--accent-color);
	font-size: 2rem;
}

.post p {
	font-size: 1rem;
	line-height: 2;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#0890FF;
}

.post img {
	max-width: 100%;

	
	}


@media (max-width: 472px) {
	/* 小さい画面用の設定 */
	.post .container {
	margin-top: -100px;
	}
	}


.taitlimg {
}

.taitlimg .container {
display:block;
width: 363px;
margin:0 auto;
height: auto; 

}

@media (max-width: 472px) {
	/* 小さい画面用の設定 */
	.taitlimg .container img {
	width: 60%;
	height: auto; 
	}
	}


.taitlfont {
	margin-top: 80px;
}

.taitlfont .container {
display:block;
max-width: 768px;
margin:0 auto;
height: auto; 

}


.conbcom{
	margin-top: 05px;
}

.conbcom .container {
display:block;
max-width:1000px;
margin:0 auto;
height: auto; 

}


.midashi {border-bottom: solid 1px #313030;
font-size: 20px;
	font-weight: bold;
width: 100%;
text-align: center;
}



/* コンテンツ絶対配置つき： 概要（アイコン＋テキスト） */
.conz .container {
	padding-top: 0px;
	padding-bottom: 0px;
	align-items: flex-end;
	position:relative
}

.conz .text {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 0px;
	text-align: center;
}

.conz h2 {
	
	
	font-size: 20px;
}

.conz span {

position:absolute;
top:8px;
margin-left: 35%;
	font-weight: bold;
	
}

.conz p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}



@media (min-width: 768px) {
	.conz .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conz .text	{
		flex: 1;
	}
}


@media screen and (min-width:465px) and ( max-width:768px) {
    /*　画面サイズが465pxから768pxまではここを読み込む　*/

.conz .text img	{margin-top: 40px;
}
.conz span {
position:absolute;
top:8px;
	margin-left: 26%;

}
}


@media (max-width: 464px) {
.conz .text img	{margin-top: 40px;
}
.conz span {
position:absolute;
top:8px;
	margin-left: 10%;

}
}



/* コンテンツx：） */
.conx .container {
	padding-top: 80px;
	padding-bottom:0px;
}

.conx .text {
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 0px;
	text-align: center;
}

.conx h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conx p {
	margin-top: 0;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}



@media (min-width: 768px) {
	.conx .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conx .text	{
		flex: 1;
	}
}

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	.conx .text {
	padding-bottom: 20px;
}
	
	}




/* コンテンツv：） */
.conv .container {
	padding-top: 20px;
	padding-bottom: 0px;
}

.conv .text {
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 0px;
	text-align:left;
}

.conv h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conv p {
	margin-top: 0;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}



@media (min-width: 768px) {
	.conv .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conv .text	{
		flex: 1;
	}
}


@media (max-width: 767px) {
	
	.conv .text	{
		text-align: center;
	}
}

/* コンテンツb：） */
.conb .container {
	padding-top: 20px;
	padding-bottom: 0px;
}

.indent{
  padding-left: 1em;
  text-indent: -1em;
}

.conbright { 
font-size:70%;}

@media (min-width: 768px) {
	.conb .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conb .text	{
		flex: 1;
	}
	
	
	
}

@media (max-width: 767px) {
	.conb .container {
		display:none;
	}
}




/* コンテンツconbcome：） */
.conbcome .container {
	padding-top: 20px;
	padding-bottom: 0px;
}

.indent{
  padding-left: 1em;
  text-indent: -1em;
}

.conbright {text-align: right;}

@media (min-width: 768px) {
	.conbcome .container {
		display: flex;
		max-width: 600px;
		max-width: var(--large-width);
		margin-left: 63%;
		margin-right: auto;
	}

	.conb .text	{
		flex: 1;
	}

}

@media (max-width: 767px) {
	.conbcome .container {
		display:none;
	}
}







/* コンテンツb_smho：） */

.b_smho .container {
	padding-top: 20px;
	padding-bottom: 0px;
}

.b_smho .text {
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 0px;
	text-align: center;
}


.b_smho h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.b_smho p {
	margin-top: 0;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}



@media (min-width: 768px) {
	.b_smho .container  {
		display:none;
	}
}





/* 製品 */
.product 

.product .text {
	padding: 0px;
}

.product h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.product .photo {
	min-height: 300px;
	background-image: url(img/plant.jpg);
	background-position: center;
	background-size: cover;
}

.product table {
	border-collapse: collapse;
	border-top: solid 1px #CCCCCC;
	font-size: 0.875rem;
}

.product th,
.product td {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: solid 1px #c7c7c7;
}

.product th {
	padding-right: 1rem;
	text-align: left;
	word-break: keep-all;
}


@media (min-width: 768px) {
	.product .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}


	.product .text {
		flex: 3;
		padding: 50px;
	}
}

@media (max-width: 768px) {
	.product{ margin: 10px 10px 50px;
	}
}




/* video */
video{width: 100%; height: auto;}


@media (min-width: 768px) {

video{max-width: 1000px; height: auto;
text-align: center;
}

}








/* botan */
.cont {
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
}

.cont.compact {
	height: 450px;
	min-height: 0;
}


.cont a {
	display: inline-block;
	margin: 20px;
	padding: 10px 90px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #525252;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.cont a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}


#pagetop {
	position: fixed;
	width: 35px;
	height: 35px;
	bottom: 40px;
	right: 40px;
	cursor: pointer;
}
.tablet #pagetop {
	right: 10px;
	bottom: 10px;
}



@media print {
  #pagetop {
		display: none;
  }
}



.wakubox {width:98%; margin:10 auto;
	border: 1px dotted #C3BFBF;
	padding: 20px 30px;
 
}

.post .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 50px auto;
}


.wakubox dt{
  float: left;

}
.wakubox dd{
  margin-left: 75px;
}



/* number */
.contn {
		display: flex;
padding-right: 20px;
	align-items: center;
	justify-content: flex-end; 
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
}