@charset "euc-jp";
/* CSS Document */
img {
	width: 100%;
}
#pc_header {
	display: none;
}
body {
	font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: .1rem;
	color: #323232;
}
a:link, a:visited, a:hover, a:active {
	color: inherit; /* 全ての状態で親要素の文字色を継承 */
	text-decoration: none;
}
.bg {
	background-size: 100%;
	background-color: #FFFFFF;
	text-align: center;
}
.pc {
	display: none;
}
.sp {
	margin: 0 auto;
	width: 100%;
	display: block;
}
.header {
	width: 20%;
	margin: 0 auto;
	text-align: center;
}
/* フェードインアニメーション */
#animation {
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}
@keyframes fade-in {
 from {
 opacity: 0;
}
 to {
 opacity: 1;
}
}
/* フェードインアニメーション */

h1 {
	width: 100%;
	margin: 0 auto;
}
h2 {
	width: 100%;
}
h3 {
	width: 100%;
	font-weight: normal;
}
.main_top {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.bg_2 {
	margin: 0 auto;
}
.category {
	width: 90%;
	margin: 0 auto;
	padding: 20px 0 20px 0;
}
.main_block {
	width: 100%;
	margin: 0 auto;
	padding: 0 5%;
}
.category_subtitle {
	width: 100%;
	margin: 0 auto;
	font-size: 18px;
	text-align: center;
	border-bottom: 4px double #c1e1dc;
}
.category_text {
	text-align: left;
	margin: 0 auto;
	padding: 10px 0 10px 0;
}
.card {
	width: 95%;
	margin: 0 auto;
	padding: 5px 0 10px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.card__item {
	width: calc((100% - 10px) / 2);
	background: #fcfcfc;
	padding: 5px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);/* 水平・垂直移動なし、5pxぼかし、半透明の黒 */
	border-radius: 5px; /* 全ての角を丸める */
}
.card__img-area {
	aspect-ratio: 1/1;
	margin-bottom: 2px;
}
.card__img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.text-area {
	text-align: left;
}
.card__title {
	padding-bottom: 2px;
	font-size: 12px;
}
.price {
	font-size: 12px;
}
.bana {
	width: 100%;
	margin: 20px 0 50px 0;
}
.bana-img {
	width: 90%;
	text-align: center;
	height: auto;
	margin: 0 auto;
	margin-bottom: 20px;
}
/* 他の商品を見るボタン */
.other_design a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #323232;
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 180px;
	text-align: center;
	padding: 4px 16px 4px 0;
	margin: 20px 24px 40px 24px;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.other_design a::before {
	content: "";
	display: block;
	position: absolute;
	width: 180px;
	height: 1px;
	background: #323232;
	bottom: 0;
	transition: all 0.3s;
}
.other_design a::after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #323232;
	rotate: 40deg;
	right: -3px;
	bottom: 10px;
	transition: all 0.3s;
}
.other_design a:hover::after, .other_design a:hover::before {
	translate: 20px 0;
	transition: all 0.3s;
}
/* 他の商品を見るボタン */
/* TOPへ戻るボタン */
html {
	scroll-behavior: smooth;
	min-height: 200vh;
}
.pagetop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #fdd475;
	border-radius: 5px;/* 画像の枠,角のまるみ*/
	border: solid 2px #FFFFFF;
	z-index: 99;
}
.pagetop__arrow {
	width: 10px;
	height: 10px;
	border-top: 5px solid #FFFFFF;
	border-right: 5px solid #FFFFFF;
	transform: rotate(-45deg);
	margin-top: 5px;
}
/* TOPへ戻るボタン ここまで */

/* -------- フッター ---------*/
.back {
	text-align: center;
	margin-bottom: 10px;
}
.back a {
	background: #2e2e2e;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
}
footer {
	width: 100%;
	background: #000;
	color: #fff;
	text-align: center;
	padding: 3px 0;
}

@media screen and (min-width: 960px) {
/* 960px以上に適用されるCSS（PC用） */
	
/* ページ内リンク着地位置のズレ調整 */
#shoulder, #booktype, #hard, #taf, #accessory, #keycase, #other {
	padding-top: 110px;
	margin-top: -110px;
}
#header {
	display: none;
}
#pc_header {
	display: block;
}
.bg {
	background-color: #FFFFFF;
	/*background: url(../images/spring2024-bg.jpg) center center;/* 背景画像 */
	background-size: 100%;
	text-align: center;
}
.pc {
	display: block;
	width: 1100px;
	margin: 0 auto;
}
.sp {
	display: none;
}
.header {
	width: 200px;
	margin: 0 auto;
	text-align: center;
}
h1 {
	width: 1100px;
	text-align: center;
	margin: 0 auto;
	display: inline-block;
}
span {
	background: linear-gradient(transparent 80%, #ffeb94 20%);
}
.main_top {
	width: 40%;
	margin: 0 auto;
	text-align: center;
}
.category {
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 30px;
}
.category_subtitle {
	width: 90%;
	margin: 0 auto;
	margin-bottom: 15px;
	padding-bottom: 5px;
	font-size: 21px;
	text-align: center;
	border-bottom: 4px double #c1e1dc;
}
.category_text {
	text-align: center;
	margin: 5px 0 10px 0;
}
.card {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 10px;
}
.card__item {
	width: calc((100% - 60px) / 4);
	background: #fcfcfc;
	padding: 5px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);/* 水平・垂直移動なし、5pxぼかし、半透明の黒 */
	border-radius: 5px; /* 全ての角を丸める */
}
.card__img-area {
	aspect-ratio: 1/1;
	margin-bottom: 5px;
}
.card__img-area img {
	width: 100%;
	height: 100%;
	padding: 2%;
	object-fit: cover;
}
.card__title {
	padding: 0 10px 0px 5px;
}
.price {
	font-size: 14px;
	padding: 0 10px 0px 10px;
}
.bana {
	width: 1100px;
	margin: 0 auto;
	padding-top: 50px;
}
.bana-img {
	width: 60%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 20px;
}/* 他の商品を見るボタン */
.other_design a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #323232;
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 180px;
	text-align: center;
	padding: 4px 16px 4px 0;
	margin: 10px 10px 20px 10px;
	margin-left: auto;   /* 左側の余白を自動で全取りする */
	margin-right: 0;     /* 右側はくっつける */
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.other_design a::before {
	content: "";
	display: block;
	position: absolute;
	width: 180px;
	height: 1px;
	background: #323232;
	bottom: 0;
	transition: all 0.3s;
}
.other_design a::after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #323232;
	rotate: 40deg;
	right: -3px;
	bottom: 10px;
	transition: all 0.3s;
}
.other_design a:hover::after, .other_design a:hover::before {
	translate: 20px 0;
	transition: all 0.3s;
}
/* 他の商品を見るボタン */
}
