@charset "UTF-8";
/* 基本色 */

:root {
	--main-color:  #0081A4;
	--accent-color: #F0E852;
	--dark-main-color: #004F64;
	--text-bright-color: #fff;
	--large-width: 1000px;
	--middle-width: 800px;
	}
	
	
/* 基本設定 */

body {
	font-family: 'メイリオ' , 'Hiragino Kaku Gothic Pro' , sans-serif;
	}
	
/* コンテンツA:ヒーローイメージ */

.conA {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80vh;
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../img/heroIMG.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
	}
	
.conA h1 {
	margin-bottom: 10px;
    font-family: 'Cabin', sans-serif;
	font-size: 15vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
	display: none;
	}
	
.conA p {
	font-size: 18px;
	letter-spacing: 0.3em;
	margin-left: 0.3em;
	}
	
.conA img {
	width: 70%;
	margin-top: 20px;
	}
	
	
/* コンテンツB:マークの説明 */

.conB {
	text-align: center;
	padding: 50px 0 0 0;
	
	}
	
.conB h2 {
	margin: 40px 0 20px 0;
	}
	
.conB p {
	display: inline-block;
	width: 60%;
	}
	
.conB img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	}
	
  .top_point {
	  margin-top: 30px;
	  color: #0080a3;
	  font-size: 20px;
	  line-height: 1.7em;
	  letter-spacing: 0.2em;
	  }
	
	
@media (min-width:768px){
	
	.conA h1 {
	font-size: 115px;
	}
	
	.conA p {
	font-size: 24px;
	}
	}
	

	
@media (max-width: 768px){
	.conA {
	height: 70vh;
		}
		
	.conB h2 {
		font-size: 19px;
		width: 80%;
		margin: 20px auto;

		}
		
	.conA p {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-left: 0.1em;
	}
	
	.conB p {
	display: inline-block;
	width: 80%;
	}
	
	.conB img {	
	width: 100%;
	}
	
		.top_point {
	  margin-top: 20px;
	  color: #0080a3;
	  font-size: 16px;
	  line-height: 1.4em;
	  letter-spacing: normal;
	  }
	  
	  .top_point  {
		  display: inline-block;
		  width: 80%;
		  }
	
	}
	
	
	

/* フッター */

footer {
	background-color: #0080a3;
	margin: 100px 0 0 0;
	padding: 5px 0 30px 0;
	}
	
.footA {
	padding: 10px 0 0 20px;
	color: #fff;
	}
	
.footA h4 {
	font-size: 13px;
	}
	

	
	
.website a {
	color: inherit;
	}
	
.footB {
padding: 0 0 0 20px;
	}
	
.footB ul {
	color: #FFF;
	padding-top: 10px;
	font-size: 14px;
	}
	
.footB a {
	color: inherit;
	}
	
.footB a:hover {
	background-color: rgba(0,0,0,0.3);
	}


	
.footC {
	font-size: 12px;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	color: #fff;
}

@media (min-width: 767px) {
	
	#footAB {
		width: 80%;
		height:150px;
		margin: 0 auto;
		}
	
	.footA {
		float: left;
		width: 300px;
		}
		
	.footA img {
		width: 50%;
		height: 50%;
		}
		
	.footB {
		float: right;
		width: 450px;
		}
	
	#footC {
		clear: both;
		}
	
	.footB ul {
		display: flex;
		}
		
	.footB ul a {
		border-left: 1px solid #fff;
		padding-left: 5px;
		padding-right: 20px;
		padding-bottom: 5px;
		}
	
	}
	
@media (max-width: 768px) {
	
		.footA img {
		width: 35%;
		height: 35%;
		}
}
	
@media (max-width: 359px) {
	
		.footA img {
		width: 50%;
		height: 50%;
		}
}
	

/* ヘッダー */

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

     .headA {
		display: inline-block;
		line-height: 70px;
		padding-left: 20px;
		padding-right: 20px;	
		background-color: #0080a3;
		background-color: var(--main-color);
		color: #fff;
		color: var(--text-bright-color);
		font-family: 'Cabin', sans-serif;
		font-size: 24px;
		 }
		 
/* ヘッダーB:ナビゲーションメニュー */

.headB a {
	display: block;
	padding: 15px;
	color: inherit;
	font-size: 12px;
	}
	
.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: 0 auto;
	 }

	.headB ul {
		display:flex;
		}
		
	}
	
	
/* ヘッダーC:トグルボタン */


@media (max-width: 767px) {
	
	/* 小さい画面用の設定 */
	
	.container-small {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 
	}
	
.headB {
	display: none;
	}
	
	}
	
.headC {
	border: none;
	outline: none;
	background: none;
	font-size: 28px;
	opacity: 0.5;
	cursor: pointer;
	}
	
.headC:hover {
	opacity: 0.3;
	}

@media (min-width: 768px) {
	
	/* 大きい画面用の設定 */
	
	.headC {
		display: none;
		}
		
	.headB {
		display: block !important;
		}
		
	}
	
	
/* 取り扱い商品：リサイクルトナー */

.post {
	text-align: center;
	padding: 50px 0 100px 0;
	
	}
	
.post h3 {
	color: #0080a3;
	letter-spacing: 0.3em;
	margin-top: 40px;
	margin-left: 0.3em;
	}
	
.post h2 {
	margin: 30px 0 20px 0;
	}
	
.post p {
	display: inline-block;
	width: 60%;
	}
	
.point2 {
	color: #0080a3;
	}

.post img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	} 
	
@media (max-width: 768px){
	
	.post h2 {
		font-size: 19px;
		width: 80%;
		margin: 20px auto;
		}
		
	.post h3 {
		font-size: 16px;
		width: 80%;
		margin-top: 70px;
		margin-left: auto;
		margin-right: auto;
		}
		
		
	.post p {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-left: 0.1em;
	display: inline-block;
	width: 80%;
	}
	
	
	.post img {	
	width: 100%;
	}
	
	}
	
	
/* 取り扱い商品：商品一覧 */

.list {
	padding: 0 0 50px 0;
}
	
.big_list{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	}
	
.list h2 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
	border-bottom: 1px solid #0080a3;
	color: #0080a3;
	font-size: 20px;
	letter-spacing: 0.3em;
	}
	
	
.small_list h3 {
	margin-top:20px;
	opacity: 0.7;
	font-size: 17px;
	}
	
.list h4 {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	opacity: 0.8;
	padding-top: 10px;
	}
	
.small_list ul {
	margin-top: 10px;
	padding: 0 0 30px 0;
	}
	
.small_list ul li {
	display: block;
	margin-left: 20px;
	font-size: 14px;
	}
	
		.list h2 {
		letter-spacing: normal;
		}
	
	
	
@media (min-width: 768px){
	
	/* 取り扱い商品：リサイクルトナー */
	

	
	.post {
		padding-bottom: 200px;
		}
	
	.post h3 {
		margin-top: 100px;
		}
	
	
	
	/* 取り扱い商品：商品一覧 */
	.list h2 {
		width: 70%;
		}

	.big_list {
		width: 60%;
		display: flex;
	
		}
		
	.small_list {
		flex: 1;
		}
	}
	
/* CM動画 */



.movie {
	margin-top: 200px;
	}
	
.cm_movie {
	text-align: center;
	margin: 0 auto;
	}
	
.movie h2 {
	text-align: center;
	letter-spacing: 0.5em;
	color: #0080a3;
	margin-bottom: 50px;
	}
	
@media (max-width: 767px){
	
	.movie {
	margin-top: 100px;
	}

	
	.movie h2 {
		font-size: 18px;
		letter-spacing: 0.2em;
		margin-bottom: none;
		}

   .cm_movie video {
	   width: 80%;
	   }

		}
		
		
		
	/* お問い合わせフォーム */
	
	.contact {
		text-align: center;
		}
	
	
	.contact h2{
		margin-top: 200px;
		color: #0080a3;
		letter-spacing: 0.3em;
		padding-left: 0.3em;
		}
		
	.contact p {
		margin-top: 30px;	
		}
		
	form dd {
		text-align: left;
		}
		
		
	@media (max-width: 767px){
		.contact h2 {
			margin-top: 100px;
			font-size: 18px;
			letter-spacing: none;
			}
			
		.contact p {
		display: inline-block;
		margin-top: 20px;
		max-width: 80%;
		}
			
		form {
			max-width: 80%;
			}
		}
		
		
/* サンクスページ */

.thanks{
		text-align: center;
		}
	
	
	.thanks h2{
		margin-top: 200px;
		color: #0080a3;
		}
		
	.thanks p {
		margin-top: 30px;	
		}
		

		
	@media (max-width: 767px){
		.thanks h2 {
			margin-top: 100px;
			font-size: 18px;
			letter-spacing: none;
			}
			
		.thanks p {
		display: inline-block;
		margin-top: 20px;
		max-width: 80%;
		}
			
	
		}
		
		
/* メールフォーム */

input#postal a:link {
	color: #0080a3;
	}

input#postal a:visited {
	color: #0080a3;
	}
	
	

/* スマホ時のテキスト左揃え*/

@media (max-width: 767px){
	

	
	.container h2 {
		text-align: left;
		width: 80%;
		}
		
	.container h3 {
		text-align: left;
		width: 80%;
		}
		
	.container p {
		text-align: left;
		width: 80%;
		}
		
	.top_point {
		text-align: left;
		width: 80%;
		}
		
		.conA p {
		text-align: center;
		width: 100%;
		}
		
	.thanks .contents  {
		margin: 0 auto;
		text-align: left;
		width: 90%;
		}
		
	
		
	.thanks .contents .point2 {
		display: inline-block;
		padding-top: 20px;		
		}
		
		
	.contact .contents  {
		text-align: left;
		width: 80%;
		margin: 0 auto;
		}
     
	
	
}



















