@charset "utf-8";
/* CSS Document */
/* Tシャツ白丸 */
.itemcardwrap {
  gap: 50px 30px;
}
.item-card {
  text-align: center;
  border-radius: 12px;
  width: clamp(200px, 25vw, 300px);
}
/* 円形イメージ */
.item-card .imgbox {
  width: clamp(200px, 25vw, 300px);
  height: clamp(200px, 25vw, 300px);
  margin: 0 auto -10px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.item-card .imgbox img {
  max-width: 80%;
  height: auto;
  object-fit: contain;
}
.item-card .title {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
/* 説明文 */
.item-card .desc {
  line-height: 1.7;
  margin-bottom: 20px;
}
/* ボタンエリア */
.item-card .btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.item-card .btns p {
  font-size: 14px;
}
.item-card .btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #000;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 600;
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 3px 3px 0 #000; /* 通常時の黒影 */
}
.item-card .btn img {
  width: 25px;
  height: auto;
}
.item-card .btn:hover {
  background: #f3f3f3;
  transform: translate(2px, 2px);
  box-shadow: none;
}

.notes {
    display: grid
;
    gap: 50px;
    padding: clamp(16px, 3vw, 32px) 0;
}
.pagetitle4{
	background-color: #C9171E;
}
.cate1 .box_wrap{
	gap:20px;
}
.cate1 .box_wrap .boxitem{
	background-color: #FFFFFF;
	border-radius: 20px;
	width: calc(50% - 10px);
	padding: 50px;
	flex-direction: row;
}
.cate1 .box_wrap .boxitem .topbox img{
	width: 45px;
	margin-bottom: 5px;
}
.cate1 .box_wrap .boxitem .bottombox{
    gap:20px;
	justify-content: flex-start;
	flex-direction: column;
  align-items: flex-start;
}
.cate1 .box_wrap .boxitem .bottombox .bottomitem{
    flex-wrap: nowrap;
	align-items: flex-start;
	
}
.cate1 .box_wrap .boxitem .bottombox .bottomitem img{
    width: 20px;
	padding-top: 2px;
}
.border-b{
	border-bottom: #000 3px solid;
}
.note__head {
    position: relative;
    margin: 0;
    padding: 8px 12px 8px 42px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: clamp(14px, 1.6vw, 18px);
}
.note__head::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: clamp(8px, 1vw, 12px);
    height: clamp(8px, 1vw, 12px);
    border-radius: 50%;
    background: #fff;
}
.cate1 .box2{
	gap: 50px;
}
.cate1 .box2 img{
	width: calc(12% - 25px);
}
.cate1 .box2 .notes{
	width: calc(88% - 25px);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .box_wrap{
		flex-direction: column;
	}
	.cate1 .box_wrap .boxitem{
		width: 100%;
	}
	.cate1 .box2 img{
		width: calc(20% - 25px);
	}
	.cate1 .box2 .notes{
		width: calc(80% - 25px);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .box_wrap .boxitem .bottombox .bottomitem img{
		width: 15px;
	}
	.cate1 .box_wrap .boxitem .topbox img {
		width: 35px;
	}
	.cate1 .box_wrap .boxitem{
		padding: 30px;
	}
	.cate1 .box2{
		flex-direction: column;
	}
	.cate1 .box2 img{
		width: 20%;
	}
	.cate1 .box2 .notes{
		width: 100%;
	}
	.cate1 .box2 {
		gap: 20px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

