@charset "UTF-8";

body,h1,h2,h3,h4,p,ul,ol{
  margin: 0;
  padding: 0;}

ul,li {list-style: none;}

a{text-decoration: none;}

* {box-sizing: border-box;} 

body {
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  line-height: 1.8;
  color: #444;}

.hd{background-color: #ccc;
	margin: 0;}

  header{width: 1000px;
	margin: 0 80px auto;
  display: flex;}

header h1 img {width: 250px;
	}


.sns{font-size: 2.5em;
  margin:0.5em 0 0  auto;}

.sns a{color: #000;
  transition: .5s ease;
  margin-left: 0.3em}

.sns a:hover{color:red;}



nav {background-color: #000;}

nav ul {width: 1000px;
	margin: 0 auto;
	list-style: none;
  display: flex;}

nav ul li {
	width: 33%;
  text-align: center;}

nav ul li a {
	display: block;
	text-decoration: none;
	color:#fff;
  padding: 10px 0;
  transition: all 0.5s;}

nav a:hover {
	background-color:red;
	color: #fff;}



.main_visual img {width: 100%;}




.text_wrapper {
	width: 1280px;
	margin: 50px auto 20px;
	text-align: center;
	font-size: 18px;
	line-height: 3;
	color: #333;;}

.text_wrapper img {
	width: 300px;
	margin-bottom: 30px;}

.hrline{border-top: 1px solid #ccc;
  border-bottom: 1px solid #fff;
	margin-bottom: 50px;}



.pickupBox{width: 1280px;
	margin: 0 auto;}

.title {
	font-size: 24px;
	letter-spacing: 10px;
	font-family: 'Quicksand', sans-serif;}

.box_wrapper {
	width: 1280px;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;}

.top_box_item {
	width: 300px;
	margin-bottom: 80px;}

.top_box_item h3,.top_box_item p {
	font-size: 14px;
	font-weight: normal;
	font-family: 'Quicksand', sans-serif;}

.top_box_item a {color: #333;
	transition: 0.5s ease;}
.top_box_item a:hover {color: red;
	opacity: 0.5;}
.top_box_item img {width: 100%;}


footer {color: #fff;
	width: 100%;
	  text-align: center;
	  background-color: #000;
	padding: 20px 0;}


.top_image img {width: 100%;}

.content {
	width: 1080px;
	margin:60px auto;
	color: #333;
	display: flex;}

.content img { 
	width: 600px;
	margin: 0 20px 20px;}


.content_text { 
	line-height: 2em;}

.content_text h2 {
	color: #000;
	font-size: 22px;
	font-weight: bold;}

.price {
	color: #000;
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 20px;}

.item_select { 
	width:100%;
	margin: 20px 0;
	padding:20px;
	font-size:16px;
	border:solid 1px #ccc;
	border-radius: 3px;
	cursor: pointer;
	outline:none;}


.cart_btn {width: 100%;
	margin: 40px 0 0;
	padding: 20px 90px;
	font-size:16px;
	color: #fff;
	border: none;
	border-radius: 3px;
	background-color: orangered;
	cursor: pointer;
	outline:none;
	transition: 0.5s ease;}

.cart_btn:hover {opacity: 0.5;}


/* 問い合わせページ */

.form_style {
	width: 800px;
	padding: 20px;
	padding-top: 30px;
	margin: 0 auto;
	border:#525f66 solid 1px;}


dl {width: 100%;
	padding: 20px 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;}

dt {width: 25%;}

dd{width: 75%;}

dt,dd{padding: 10px 10px 20px 10px;}


label{display: block;}


input[type="text"],input[type="email"],textarea {
	width: 100%;
	padding: 10px;
	color: #444444;
	border: solid 1px #cccccc;
	outline: none;/* 選択した時に周りに枠がつくのでそれを消す */
	transition: ease 0.3s;
	border-radius: 5px}

input[type="radio"],input[type="checkbox"]{margin-right: 10px;}


input[type="text"]:focus,input[type="email"]:focus,textarea:focus {
	box-shadow: 0 0 7px #528fcc;
	border: 1px solid #528fcc;}

textarea {resize: none;}


select {
	padding: 0px;
	color: #444444;
	border: solid 1px #cccccc;
	border-radius: 3px;
	font-size:14px;}

::placeholder{font-size: 14px;}


input[type="submit"] {
	background: #06668c;
	border: none;
	color: #ffffff;
	padding:20px 50px;
	display: block;
	margin: 0 auto;
	border-radius : 10px;
	cursor: pointer;
	transition: 0.5s ease;}

input[type="submit"]:hover {
	background: #aed1e8;
	color: #000000;}