* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', Meiryo, ¥á¥¤¥ê¥ª, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
li {
  list-style-type: none;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
}
.brand-list {
  order: -9999;
}
.brand-list ul {
  display: grid;
  gap: 5px;
  margin-bottom: 30px;
  @media (min-width: 700px) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.brand-list li a {
  display: flex;
  align-items: center;
  border: 5px solid #333;
  background-color: #fff;
  filter: brightness(0.75);
  cursor: pointer;
  transition: filter 0.5s;
}
.brand-list li.-active a {
  filter: brightness(1);
}
.brand-list__image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.brand-list__logo {
  width: auto;
  height: 12px;
  font-size: 0;
}
.brand-list img {
  height: 100%;
}
.brand-list li a::after {
  content: '';
  margin-left: auto;
  padding: 0 5px;
  width: 16px;
  height: 20px;
  background-color: #333;
  clip-path: polygon(0 0, 100% 50%, 0 100%) content-box;
  flex-shrink: 0;
}
.container {
  display: block;
  overflow: hidden;
}
@media (min-width: 700px) {
  .flex {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .flex > div {
    width: 50%;
  }
}
.monsta_logo {
  width: 100%;
  text-align: center;
}
.logo {
  margin-bottom: 10px;
}
.prop {
  display: flex;
  margin-bottom: 20px;
}
.prop > li {
  width: calc(100% / 3);
}
.rate {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.rate .jp {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.rate:hover .jp {
  opacity: 1;
}
.link {
  margin-bottom: 30px;
  text-align: center;
}
.link a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  background-color: #09f;
  color: #fff;
  border-radius: 10px;
  padding: 0.5em 3em;
}
.link a::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url('img/icon_arrow.png');
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -5px;
}
.text {
  margin-bottom: 20px;
}
.text p {
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  font-weight: bold;
}

.inch-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  grid-auto-flow: dense;
  gap: 20px;
  width: calc(100% - 20px * 2);
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .inch-list ul {
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px;
  }
}
.inch-list li a {
  display: block;
  text-align: center;
  padding: 1em 0;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  &:hover,
  &.-active {
    background-color: #000;
    color: #fff;
  }
}

.size-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px !important;
}
.size-list ul {
  display: grid;
  gap: 10px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .size-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.size-list li {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.size-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  margin-right: 3px;
  background-color: #0197DD;
}
.size-list .dammy {
  height: 0;
}
.size-list .dammy::before {
  content: none;
}

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
  &.-active {
    grid-template-rows: 1fr;
    order: -1;
  }
}

/* 231130 */

.size-list{
  margin: 0 auto;
}
.size-list li:before{
  display: none;
}
.size-list li a{
  display: block;
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 3px 35px 3px 10px;
  position: relative;
  color: #345ECB;
  text-decoration: underline;
  
}
.size-list li a:after{
  position: absolute;
  content: '';
  right: 10px;
  top: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #6aa7cd;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
