html {
  background-color: #f2edd9
}

body {
  width: 1280px;
  background-color: #FFF;
  font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
  margin: auto;
  font-size: 18px;
  color: #707070;
  /* overflow-x: hidden; */
}

/* header.Header{
  background-color: #FFF;
  margin-bottom: 30px;
} */

header.Header{
  position: fixed;
  background-color: #FFF;
  /* left:0; */
  line-height:1;
  top:0;
  width:1280px;
  z-index:24;
  /* margin-bottom: 30px; */
}

main{
  padding-top: 190px;
  display: block;
}

.top_main{
  padding-top: 210px;
  display: block;
}

.Header_border{
  border-top: solid 10px #7DBA48;
  margin-bottom: 30px;
}

#nav_toggle{
  display: none;
}

.Topimage_box{
  position: relative;
  margin: 30px;
}

.Topimage_box img{
  width: 100%;
  border-radius: 10px;
}

.Topimage_box h2{
  position: absolute;
  right: 310px;
  bottom: 90px;
  width: 600px;
  height: 65px;
  padding-top: 5px;
  margin: 0;
  font-size: 44px;
  border: solid 1px #707070;
  background-color: #FFFFFF;
  text-align: center;
  border-radius: 35px;
}

.Header_fbox{
  display: flex;
  flex-wrap: wrap;
  height: 80px;
  margin-left: 30px;
  margin-bottom: 30px;
}

.Header_logo{
  display: flex;
  flex-wrap: wrap;
  width: 650px;
  margin-right: 20px;
}

img.clean{
  width: 320px;
  margin-right: 30px;
}

img.coin{
  width: 300px;
}

.Header_type_box{
  width: auto;
  margin-right: 40px;
}

h1.Header_type{
  margin: auto 0 auto 0;
  /* width: 500px; */
  /* font-weight: normal; */
  font-size: 18px;
  text-align:center
}

p.Header_type{
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

p.Header_type_small{
  font-weight: bold;
  font-size: 11px;
  margin: 0;
}

.Header_twitter{
  margin: auto;
  margin-left: 0;
}

.icon{
  font-size: 2.3em;
  color: #1DA1F2;
}

nav.Menu{
  background-color: #1879BF;
  z-index: 1000;
}

.Menu_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 40px;
  list-style-type: none;
}

.Menu_list li{
  flex-grow: 1;
  /* padding:3px 0; */
  padding: 0;
  height: 40px;
  position: relative;
  z-index: 1000;
}

a:hover{
  cursor:pointer;
  filter: alpha(opacity=60);        /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)";  /* ie 8 */
  -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.6;              /* Safari 1.x */
  opacity:0.6;
  zoom:1;
}

.Menu_list li a{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  height: 100%;
}

.Menu_list li.border_left ::before {
  content: '';
  width: 1px;/*線の長さ*/
  height: 16px;/*線の太さ*/
  transform: translateX(-36px);/*位置調整*/
  background-color: #FFF;/*線の色*/
}

.Menu_list li.border_left ul ::before {
  content: none;
}

.Menu_second{
  padding: 0;
  list-style-type: none;
}

.Menu_second li{
  display: none;
}

.Menu_list li:hover > .Menu_second li{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #1879BF;
}

/* サブリスト常時表示チェック用 */
/* .Menu_second li{
padding: 0;
background-color: #1879BF;
} */

.Menu_second li a{
  color: #FFF;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 499px) {
  /*　画面サイズ 499pxまで適用　*/
  body{
    width: 414px;
  }

  main{
    padding-top: 40px;
  }

  .top_main{
    padding-top: 70px;
  }

  header.Header{
    position: static;
    width: auto;
  }

  .Header_border{
    margin-bottom: 20px;
  }

  .Topimage_box h2{
    position: absolute;
    right: 37px;
    bottom: 57px;
    width: 280px;
    height: 30px;
    padding-top: 5px;
    margin: 0;
    font-size: 20px;
    border: solid 1px #707070;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 35px;
  }

  .Topimage_box img{
    height: 150px;
  }

  /*開閉ボタン*/
  #nav_toggle{
    display: block;
    background-color: #1879BF;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 3px;
    position: relative;
    top: 15px;
    z-index: 100;
    position: fixed;
    right:0;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span{
    display: block;
    height: 3px;
    background: #000;
    position:absolute;
    width: 70%;
    left: 6px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1){
    top:6px;
    background-color: #FFF;
  }
  #nav_toggle span:nth-child(2){
    top:18px;
    background-color: #FFF;
  }
  #nav_toggle span:nth-child(3){
    top:30px;
    background-color: #FFF;
  }

  /*開閉ボタンopen時*/
  .open #nav_toggle span:nth-child(1) {
    top: 16px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* nav.Menu{
    display: none;
		position: absolute;
		top:72px;
		width: 414px;
    height: 490px;
		left: 0;
  } */

  nav.Menu{
    display: none;
    position: fixed;
    top:53px;
    width: 414px;
    height: 490px;
    left: 0;
  }

  .Menu_list{
    display: block;
		margin: 0 auto;
		width: 90%;
	}

  .Menu_list li{
    margin: 0 auto;
		text-align: center;
		border-bottom: 1px solid #fff;
	}

  .Menu_list li:last-child{
    margin: 0 auto;
		text-align: center;
		border-bottom: 1px solid #fff;
    border: none;
	}

  .Menu_list li a{
    display: flex;
    flex-wrap: wrap;
	}

  .Menu_list li.border_left ::before {
    display: none;
  }

  .Menu_list li.border_left ul ::before {
    content: none;
  }

  .Menu_second{
    padding: 0;
    list-style-type: none;
    display: none;
  }

  .Menu_second li{
    display: none;
  }

  .Menu_list li:hover > .Menu_second li{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #1879BF;
  }

  /* サブリスト常時表示チェック用 */
  /* .Menu_second li{
  padding: 0;
  background-color: #1879BF;
  } */

  .Menu_second li a{
    color: #FFF;
  }

  .Header_logo{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 25px 0;
  }

  .Header_fbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }

  img.clean{
    margin: 0 auto 20px auto;
  }

  img.coin{
    margin: auto;
  }

  header.Header{
    height: 250px;
  }

  .Header_type_box{
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  h1.Header_type{
    width: 360px;
    margin: 0 auto;
    font-size: 14px;
  }

  p.Header_type{
    font-size: 13px;
    text-align: center;
  }

  p.Header_type_small{
    font-size: 9px;
    margin: 0 5px;
    text-align: center;
  }

  .Header_twitter{
    display: none;
  }

  .Menu{
    display: none;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}
