@charset "UTF-8";
@import url("grid.css");
@import url("contact.css");

img {
	max-width:100%;
	height: auto;
}


a {
    display:block;
    color: #666;
    text-decoration-line: none;
}
a:hover { 
    color: #999;
}

/*ヘッダー
-------------------------------------*/
.logo img{
    height:80px;
    width:120px;
}

.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid #000;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: #f7f7f7;    
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open,#close  {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}

.container1 {
    text-align: center;
}

}
    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 90%;
    height: auto;
}

.mainimg {
    text-align: center;
}

/*メインコンテンツ
-------------------------------------*/
.ather {
   text-align: center;
}

main {
    margin: 5rem 0 0 0;
}

section {
	margin: 5rem 0;
	padding: 3rem 0;
}

.gray-back, .gray-back2 {
	background-color: #f4f4f4;
}

.item-price h3 {
    color:red;
    font-size: 30px;
    font-family: "Arial Black";
    font-style:italic;
}

.item-price p {
    background-color:palegoldenrod;
}


.item-price img {
    height: 350px;
    width: 400px;
}

.tel {
    text-align: center;
}

.tel img {
    width: 90%;
    height: auto;
}

/*POINT
-------------------------------------*/
.point, .NGpoint {
    display: block;
    flex: 1 1 auto;
    margin: 20px;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.point {
    margin: 2em 0;
    background: #f5eadb;
}

.NGpoint {
    margin: 2em 0;
    background: #dcefff;
}


.OKpoint-list, .NGpoint-list {
    margin: 0 auto;
    max-width: 1200px;
    padding:20px;
    position: relative;
   
}

.OKpoint-list h3 {
    font-size: 1.2em;
    background: #f5a85f;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.NGpoint-list h3 {
    font-size: 1.2em;
    background: #5fb3f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.OKpoint-list p, .NGpoint-list p {
    line-height: 2.0;
    padding: 15px 20px;
    margin: 0;
}


/*リサイクル商品リスト
-------------------------------------*/
.kaisyu {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}

.kaisyu h3 {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}

.kaisyu ul {
	padding: 20px;
    display: flex;
	flex-wrap: wrap;
    text-align: center;
}

.kaisyu li {
    padding: 10px;
}


.OK {
    background-color: lightsalmon;
}


.NG {
    background-color: lightskyblue;
}

/*キャッチコピー
-------------------------------------*/
.under {
    border-bottom: 0.4rem solid #000;
    padding:0 1rem 1rem 1rem;
}
.center {
    text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #f7f7f7;
    padding: 5rem 0;
}
footer h4 {
    border-bottom: 3px solid #ccc;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid #ccc;
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*お問い合わせボタン
-------------------------------------*/

  a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 3px, #e7e7e7 3px, #e7e7e7 30px);
    color: #333;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
  }
  a.btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    position: absolute;
    top: -6px;
    left: -6px;
    transition-duration: 0.2s;
  }
  a.btn:hover span {
    left: -1px;
    top: -1px;
  }

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 5px;
    background-color:tan;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

.sitemap ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 0;
}

.sitemap a {
    color:#fff;
    font-size: 13px;
}

.sitemap a:hover {
    background:dodgerblue;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background:skyblue;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #666;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}

}