@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  font-size: 16px;
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #fff;
}
a {
	text-decoration: none;
}
a:hover img {
	opacity: 0.8;
}

.slider { /* スライダー・高さは使う画像に合わせて設定 */
	height: 500px;
	width: 80%;
	margin: 0 auto;
	max-width:1200px;
}

/*
ヘッダー部分・ロゴ・サイトタイトル*/
.header{
	width: 1070px;
	height: 100px;
	margin: 0 auto;
}
.header_logo {
	width: 300px;
	height: 90px;
	float: left;
}
.header_logo img {
	width: 300px;
	height: auto;
}


/*--------------------------------
メインナビゲーション
---------------------------------*/
.navigation {
	padding-top: 40px;
	width: 660px;
	float: right;
}
.navigation ul {
	float: right;
}
.navigation li {
	display: inline-block;
}
.navigation li a {
	margin-left: 32px;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	letter-spacing: 2px;
}
.navigation li a:hover {
	color: #72fef2;
}

/*--------------------------------
テキストエリア
---------------------------------*/
#cards {
	display: flex;
	justify-content: center;
  }

  .card {
	width: 300px;
	height: 315px;
	border: 1px solid rgb(211, 211, 211);
  }

  .card:nth-child(2) {
	margin-right: 70px;
	margin-left: 70px;
  }

  .picture img {
	width: 100%;
	height: 200px;
  }

  .description {
	width: 100%;
	height: 145px;
	padding-right: 12px;
	padding-left: 12px;
	box-sizing: border-box;
  }

  .description p {
	font-size: 20px;
	color: rgb(105, 105, 105);
  }

.text_wrapper {
	width: 800px;
	margin: 80px auto 80px;
	text-align: center;
}
.text_wrapper p {
	font-size: 18px;
	line-height: 2.2;
	color: #333;
}
.text_wrapper img {
	width: 300px;

}

.img_size{
	width: 300px;
	height: 200px;
}
.img_l{
	text-align: left;
}
.img_r {
	text-align: right;
}
.img_c {
	text-align: center;
}
  

/*--------------------------------
商品エリア
---------------------------------*/
.title {
	margin: 0 auto 20px auto;
	text-align: center;
	font-size: 20px;
	letter-spacing: 10px;
	font-weight: bold;
}
.box_wrapper {
	width: 1070px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.box_item {
	width: 240px;
	margin: 10px 10px 80px 10px;
	position: relative; /* saleアイコン設定・親要素相対ポジション */
}
.box_item h3 {
	font-size: 14px;
	margin: 0;
	padding: 0;
}
.box_item p {
	font-size: 14px;
	margin: 0;
	padding: 0;
}
.box_item a {
	color: #333;
}
.box_item a:hover {
	color: #ee72fe;
}
.box_item img {
	width: 100%;
}
.sale_icon:after { /* saleアイコン設定・子要素絶対ポジション */
	position: absolute;
	top: -10px;
	left: -10px;
	content: "SALE";
	background-color: #ff0000;
  border-radius: 10% 30% 70% 70%;/*枠の形*/
  padding: 8px 4px;/*文字と線の間の余白*/
	font-size: 10px;
	font-weight: bold;
	color: #fff;
}
.box1{margin-left: 200px;
	margin-right: 200px;

}
/*--------------------------------
フッター
---------------------------------*/
.footer {
	width: 1070px;
	height: 200px;
	padding-bottom: 25px;
	margin: 0 auto;
	border-top: dotted 1px #333;
}
.footer_copyright {
	width: 300px;
	height: 200px;
	position: relative;
	float: left;
}
.footer_copyright p {
	position: absolute;
	bottom: 0;
	font-size: 14px;
}
.footer_copyright p span {
	font-size: 18px;
	font-weight: bold;
	color: #ba72fe;
}
.footer_navigation {
	width: 660px;
	height: 200px;
	position: relative;
	float: right;
}
.footer_navigation ul {
	position: absolute;
	bottom: 0;
	right: 0;
	float: right;
}
.footer_navigation li {
	display: inline-block;
}
.footer_navigation li a {
	margin-left: 32px;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	letter-spacing: 2px;
}
.footer_navigation li a:hover {
	color: #ee72fe;
}


/*--------------------------------
商品詳細ページ設定
---------------------------------*/
.top_image {
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
	text-align: center;
}
.top_image img {
	width: 100%;
	height: auto;
}
.content {
	width: 1070px;
	height: auto;
	margin: auto;
	margin-bottom: 60px;
	overflow: auto;
	color: #333;
}
.content img { /* 商品写真エリア */
	width: 600px;
	float: left;
	margin: 20px;
}
.content_text { /* テキストエリア */
	width: 420px;
	margin-bottom: 40px;
	overflow: auto;
	line-height: 2em;
}
.content_text h2 {
	color: #fe72eb;
	font-size: 22px;
	font-weight: normal;
}
.price {
	color: #72a3fe;
	font-size: 18px;
	font-weight: normal;
}

.item_select { /* フォーム・セレクト */
	width:260px;
	height: 60px;
	margin-bottom: 20px;
	padding:10px;
	float: right;
	font-size:16px;
	border:solid 1px #ccc;
	border-radius: 3px;
	cursor: pointer;
	outline:none;
}

/*乃木*/
.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
  }
  .tab-wrap:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #7f00d3;
	display: block;
	order: -1;
  }
  .tab-label {
	color: White;
	background: LightGray;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
  }
  .tab-label:not(:last-of-type) {
	margin-right: 5px;
  }
  .tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
  }
  .tab-switch:checked+.tab-label {
	background: #9400d3;
  }
  .tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }
  .tab-switch {
	display: none;
  }
  /*櫻坂*/
  .tab-wrap_s {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
  }
  .tab-wrap_s:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #15fc00;
	display: block;
	order: -1;
  }
  .tab-label_s {
	color: White;
	background: LightGray;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
  }
  .tab-label_s:not(:last-of-type) {
	margin-right: 5px;
  }
  .tab-content_s {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
  }
  .tab-switch_s:checked+.tab-label_s {
	background: #7cfc00;
  }
  .tab-switch_s:checked+.tab-label_s+.tab-content_s {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }
  .tab-switch_s {
	display: none;
  }
  /*日向*/
  .tab-wrap_h {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
  }
  .tab-wrap_h:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #6394ff;
	display: block;
	order: -1;
  }
  .tab-label_h {
	color: White;
	background: LightGray;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
  }
  .tab-label_h:not(:last-of-type) {
	margin-right: 5px;
  }
  .tab-content_h {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
  }
  .tab-switch_h:checked+.tab-label_h {
	background: #63b9ff;
  }
  .tab-switch_h:checked+.tab-label_h+.tab-content_h {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }
  .tab-switch_h {
	display: none;
  }
/* フォーム・ボタン */
.cart_btn {
	width:260px;
	height: 60px;
	margin-top: 40px;
	float: right;
	font-size:16px;
	color: #fff;
	border: none;
	border-radius: 3px;
	background-color: #fed972;
	cursor: pointer;
	outline:none;
}
.cart_btn:hover {
	opacity: .8;
}

/* ▼表全体 */
table { border-collapse: collapse; }

/* ▼全セル共通の装飾 */
td, th {
  border: 1px solid black;  /* 罫線 */
  padding: 0.5em 1em;       /* 内側の余白量 */
}

/* ▼ヘッダ部分の装飾 */
thead {
	text-align: center;
  border-bottom: 3px double #7f00d3; /* 下線 */
  background-color: #dfd;          /* 背景色 */
  color: rgb(0, 97, 100);                /* 文字色 */
}

/* ▼本文部分のセルの装飾 */
tbody td {
  text-align: center;  /* センタリング */
  color: #333;         /* 文字色 */
}

