@charset "utf-8";

.c-ar-view {
  background: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
}

.c-ar-view__type-button {
  width: 100%;
  height: 100%;
  padding: 1em;
  display: flex;
  position: relative;
  justify-content: center;
}

.c-ar-view__type-button:hover {
  opacity: 0.7;
}

.c-ar-view__type-button[aria-selected="true"] {
  background: #004da1;
  color: #fff;
}

.c-ar-view__type-button[aria-selected="true"]::after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  bottom: calc(-1em + 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #004da1;
}

.c-ar-view__body {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}

.c-ar-view__color {
  margin: 1em 0;
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
}

/* .c-ar-view__color-button {
  padding: 0.5em;
  display: block;
  border: 1px solid #484848;
  position: relative;
}

.c-ar-view__color-button:hover {
  opacity: 0.7;
}

.c-ar-view__color-button[aria-selected="true"] {
  outline: 3px solid #004da1;
  border-color: #fff;
}

.c-ar-view__color-button--gunmetal {
  background: #606060;
  color: #fff;
  border-color: #606060;
}

.c-ar-view__color-button--white {
  background: #fff;
  color: #484848;
}

.c-ar-view__color-button--black {
  background: #484848;
  color: #fff;
  border-color: #484848;
} */

.c-ar-view__color-button{
  position: relative;
  color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-ar-view__color-button::before{
  content: '';
  width: 2em;
  height: 2em;
  display: block;
  background: #ccc;
  border-radius: 1em;
  box-shadow: inset 1px 1px 0.2em 0 rgba(0,0,0,0.3);
}

.c-ar-view__color-button::after{
  margin-top: -0.5em;
  color: #484848;
  font-size: 0.8em;
}

.c-ar-view__color-button--gunmetal::before{
  background: #606060;
}

.c-ar-view__color-button--white::before{
  background: #fff;
}

.c-ar-view__color-button--black::before{
  background: #000;
}

.c-ar-view__color-button[aria-selected="true"]::before{
  box-shadow: 0 0 0.5em 0 rgba(0,162,230,1);
}

.c-ar-view__color-button--gunmetal::after{
  content: 'ガンメタル';
}

.c-ar-view__color-button--white::after{
  content: 'ホワイト';
}

.c-ar-view__color-button--black::after{
  content: 'ブラック';
}

.c-ar-view__qr {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  clip-path: circle(50% at 50% 50%);
  overflow: hidden;
  font-size: 10px;
  text-align: center;
}

.c-ar-view__qr img {
  width: 50%;
}

.c-ar-view__link *+*{
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .c-ar-view__link {
    justify-content: center;
    text-align: center;
  }
}