.term-menu {
margin-bottom: 20px;
}
.term-menu__title {
font-weight: bold;
margin-bottom: 0;
background: var(--key-color);
color: #eee;
padding: 5px 10px;
border: 1px solid #eee;
}
.term-menu ul {
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
}
.term-menu li {
list-style: none;
width: calc(100% / 3);
margin: 0;
border: 1px solid #eee;
}
.term-menu a {
text-decoration: none;
color: inherit;
font-size: 14px;
height: 100%;
position: relative;
margin-left: 25px;
padding: 8px 0;
display: block;
align-content: center;
}
.term-menu nav a::before {
font-family: "Font Awesome 7 Free";
content: "\f0da";
font-weight: 900;
font-size: 20px;
line-height: 0;
position: absolute;
top: 50%;
left: -15px;
transform: translate(0, 50%);
}
@media (max-width: 700px) {
.term-menu li {
width: calc(100% / 2);
}
}.shop-card { 
border: 1px solid #ccc;
border-radius: 4px;
padding:20px;
width: 100%;
display:flex;
gap:20px;
}
.shop-card__image {
flex: 0 0 150px;
width: 100%;
height: 150px;
}
.shop-card__image a {
display: block;
text-align: center;
align-content: center;
width: 100%;
height: 100%;
}
.shop-card__image img {
vertical-align:middle;
border-radius: 5px;
width: auto;
max-height: 150px;
}
.shop-card__content {
flex: 1;
}
.shop-card__title {
font-weight: bold;
font-size: 18px;
padding: 15px 0;
}
.shop-card__buttons {
display: flex;
gap: 10px;
}
.shop-card__buttons a {
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 5px;
text-decoration: none;
font-size: 13px;
font-weight: bold;
text-align: center;
color: #fff;
white-space: nowrap;
}
.shop-card__buttons a:hover {
color: #fff;
}
.shop-card__button-amazon {
background: #000000cc;
}
.shop-card__button-rakuten {
background: #c95656cc;
}
.shop-card__button1, .shop-card__button2 {
background: #00aabbcc;
}
@media screen and (max-width: 480px){
.shop-card {
padding: 10px;
gap: 10px;
}
.shop-card__image {
flex: 0 0 120px;
height: 120px;
}
.shop-card__image img {
max-height: 120px;
}
.shop-card__title {
padding: 0 0 10px 0;
}
.shop-card__buttons, .shop-card__buttons a {
display: block;
}
.shop-card__buttons a {
margin-bottom: 5px;
font-size: 11px;
}
}