@charset "UTF-8";
@font-face {
  font-family: "InterBold";
  src: url("../../../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "InterMedium";
  src: url("../../../fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "InterLight";
  src: url("../../../fonts/Inter-Light.ttf") format("truetype");
}
* {
  border: 0;
  box-sizing: border-box;
  color: #45433e;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin: 0;
  outline: 0;
  padding: 0;
}

html {
  font-size: clamp(0.8533333333rem, 4.2666666667vw, 2.1333333333rem);
  min-width: 20rem;
}
@media (min-width: 800px) {
  html {
    font-size: clamp(0.6675rem, 1.3333333333vw, 1rem);
  }
}

body {
  background: #45433e;
  overflow: auto;
  position: relative;
}

main {
  min-height: calc(100vh - 5rem);
}
@media (min-width: 800px) {
  main {
    min-height: calc(100vh - 5rem);
  }
}

h1 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (min-width: 800px) {
  h1 {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
  }
}

h2 {
  color: #45433e;
  font-weight: 700;
  letter-spacing: 0;
}

ol,
ul {
  list-style: none;
}

a,
p,
li,
dt,
dd,
th,
td,
span,
label,
input,
button,
select {
  text-decoration: none;
}

button {
  background: none;
  cursor: pointer;
}

@media (min-width: 800px) {
  a,
  label,
  button,
  i,
  .hover {
    transition: opacity 0.2s ease;
  }
  a:hover,
  label:hover,
  button:hover,
  i:hover,
  .hover:hover {
    opacity: 0.8;
  }
}
a:disabled,
label:disabled,
button:disabled,
i:disabled,
.hover:disabled {
  cursor: not-allowed;
}
a:disabled:hover,
label:disabled:hover,
button:disabled:hover,
i:disabled:hover,
.hover:disabled:hover {
  opacity: 1;
}

img {
  font-size: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.container__white-bg {
  background: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 800px) {
  .container__white-bg {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.container__gray-bg {
  background: #f4f4f5;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.container__gray-bg::before {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: 0;
}
@media (min-width: 800px) {
  .container__gray-bg::before {
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 800px) {
  .pc-only {
    display: inline-block;
  }
}

body:has(.nav[data-is-open=true]) {
  overflow: hidden;
}

.header {
  position: relative;
}

.header__inner {
  align-items: center;
  box-sizing: content-box;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  margin: 0 auto;
  width: 20rem;
}

.header__buttons {
  display: flex;
  gap: 1rem; /* ボタン同士の間隔 */
}

@media (min-width: 800px) {
  .header__inner {
    height: 5rem;
    width: 71.25rem;
  }
}

.nav-open {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.625rem;
  justify-content: space-between;
  letter-spacing: 0.065em;
}
@media (min-width: 800px) {
  .nav-open {
    font-size: 0.75rem;
  }
}
.nav-open::before {
  background: url(../../../images/icon/icon_menu.svg) no-repeat center/contain;
  content: "";
  height: 1.6875rem;
  width: 1.6875rem;
}
@media (min-width: 800px) {
  .nav-open::before {
    height: 2rem;
    width: 2rem;
  }
}

/* Backボタンのスタイル */
.back-btn {
  background-color: #ccc;
  border: none;
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}

.back-btn:hover {
  background-color: #bbb;
}

.nav {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  z-index: 10000;
}
.nav[data-is-open=true] {
  opacity: 1;
  visibility: visible;
}

.nav__inner {
  background: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
  margin: 0 auto;
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.25rem 0 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .nav__inner {
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 2.5rem 0;
    width: 100%;
  }
}
.nav[data-is-open=true] .nav__inner {
  transform: translateY(0);
}
.nav__inner ul {
  margin: 1.875rem auto 0;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__inner ul {
    margin-top: 1.875rem;
    width: 62.5rem;
  }
}
.nav__inner ul li {
  border-top: 1px solid #d3d2cf;
}
.nav__inner ul li a {
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  padding: 0.875rem 0.25rem;
}
@media (min-width: 800px) {
  .nav__inner ul li a {
    font-size: 1rem;
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form {
  padding: 0.875rem 0.25rem;
  position: relative;
}
@media (min-width: 800px) {
  .nav__inner ul li form {
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form input {
  border: 1px solid #d3d2cf;
  font-size: 0.875rem;
  padding: 0.875rem 1.875rem 0.875rem 0.5rem;
  width: 100%;
}
@media (min-width: 800px) {
  .nav__inner ul li form input {
    font-size: 1rem;
    padding: 1.25rem 3.75rem 1.25rem 1rem;
  }
}
.nav__inner ul li form button {
  box-sizing: content-box;
  height: 0.75rem;
  padding: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.875rem);
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__inner ul li form button {
    height: 1.125rem;
    padding: 0.5rem;
    right: 1.125rem;
    top: calc(50% - 1.0625rem);
    width: 1.125rem;
  }
}
.nav__inner ul li form button i {
  background: url(../../../images/icon/icon_search.svg) no-repeat center/contain;
  display: block;
  height: 100%;
  width: 100%;
}

.nav__close-btn {
  margin: 0 auto;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__close-btn {
    width: 62.5rem;
  }
}
.nav__close-btn button {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 0.625rem;
  margin-left: auto;
  padding-top: 0.25rem;
}
@media (min-width: 800px) {
  .nav__close-btn button {
    font-size: 0.75rem;
    padding-top: 0.125rem;
  }
}
.nav__close-btn button::before {
  background: url(../../../images/icon/icon_close.svg) no-repeat center/contain;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__close-btn button::before {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.breadcrumb {
  margin: 0 auto;
  padding: 1.1875rem 0;
  position: relative;
  width: 20rem;
  z-index: 5;
}
@media (min-width: 800px) {
  .breadcrumb {
    padding: 1.875rem 0;
    width: 62.5rem;
  }
}
.breadcrumb::before {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: -25%;
  position: absolute;
  top: 0;
  width: 150%;
  z-index: -1;
}
@media (min-width: 800px) {
  .breadcrumb::before {
    content: none;
  }
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
@media (min-width: 800px) {
  .breadcrumb ol {
    gap: 0.3125rem;
  }
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  font-size: 0.75rem;
}
@media (min-width: 800px) {
  .breadcrumb li:not(:first-child)::before {
    font-size: 0.75rem;
  }
}
.breadcrumb a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .breadcrumb a {
    font-size: 0.75rem;
  }
}
.breadcrumb span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
@media (min-width: 800px) {
  .breadcrumb span {
    font-size: 0.75rem;
  }
}

.brand__info {
  margin: 3.125rem auto 0;
  padding-bottom: 2.5rem;
  width: 20rem;
}
@media (min-width: 800px) {
  .brand__info {
    margin: 2.5rem auto 0;
    padding-bottom: 3.125rem;
    width: 62.5rem;
  }
}
.brand__info hgroup {
  align-items: center;
  border-bottom: 1px solid #d3d2cf;
  display: flex;
  gap: 1rem;
  padding-bottom: 1.0625rem;
}
@media (min-width: 800px) {
  .brand__info hgroup {
    gap: 1.875rem;
    padding-bottom: 0.9375rem;
  }
}
.brand__info hgroup h2 {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media (min-width: 800px) {
  .brand__info hgroup h2 {
    font-size: 1.125rem;
  }
}
.brand__info hgroup .brand__info--logo {
  height: 1.625rem;
  width: 4.875rem;
}
@media (min-width: 800px) {
  .brand__info hgroup .brand__info--logo {
    height: 1.625rem;
    width: 4.875rem;
  }
}
.brand__info p {
  font-size: 0.875rem;
  margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .brand__info p {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.brand__products {
  margin: 0 auto;
  padding: 1.5625rem 0 9.375rem;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .brand__products {
    padding: 2.5rem 0 12.5rem;
    width: 62.5rem;
  }
}

.brand__products--category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.625rem;
  margin: 3.125rem 0 2.8125rem;
  position: relative;
}
@media (min-width: 800px) {
  .brand__products--category {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem;
    height: 1.25rem;
    margin: 3.75rem 0 2.5rem;
  }
}
.brand__products--category a {
  align-items: center;
  border-bottom: 1px dashed #807f7d;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  gap: 0.4375rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.40625rem 0;
}
@media (min-width: 800px) {
  .brand__products--category a {
    border-bottom: none;
    font-size: 0.875rem;
    gap: 0.375rem;
    letter-spacing: 0;
    line-height: 1.75;
    padding: 0;
  }
}
.brand__products--category a::after {
  background: url(../../../images/icon/icon_arrow-rightdown.svg) no-repeat center/contain;
  content: "";
  height: 0.4375rem;
  width: 0.4375rem;
}
@media (min-width: 800px) {
  .brand__products--category a::after {
    height: 0.5625rem;
    width: 0.5625rem;
  }
}

.product-card {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}
@media (min-width: 800px) {
  .product-card {
    border-radius: 0.625rem;
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
    margin-top: 1.25rem;
  }
}
.product-card:not(:first-child) {
  margin-top: 1.5625rem;
}
@media (min-width: 800px) {
  .product-card:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.product-card__header {
  align-items: center;
  background: #807f7d;
  display: flex;
  height: 2.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 800px) {
  .product-card__header {
    height: 3.125rem;
    padding: 0 1.25rem;
  }
}
.product-card__header[data-type=brand] {
  background: #fff;
  height: 3.4375rem;
  padding-bottom: 0.8125rem;
  padding-top: 0.9375rem;
}
@media (min-width: 800px) {
  .product-card__header[data-type=brand] {
    height: 3.75rem;
    padding-bottom: 0.3125rem;
    padding-top: 0.3125rem;
  }
}
.product-card__header[data-type=new] {
  background: #c80421;
}
.product-card__header[data-type=managed] {
  background: #0071bc;
}

.product-card__header--brand-logo {
  height: 1.65625rem;
}
@media (min-width: 800px) {
  .product-card__header--brand-logo {
    height: 3.125rem;
  }
}

.product-card__header--title {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (min-width: 800px) {
  .product-card__header--title {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }
}
.product-card__header[data-type=new] .product-card__header--title, .product-card__header[data-type=managed] .product-card__header--title {
  letter-spacing: 0.3em;
}

.product-card__product-list {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
  padding: 0 0.9375rem;
  position: relative;
}
@media (min-width: 800px) {
  .product-card__product-list {
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.25rem 2.5rem;
  }
  .product-card__header[data-type=brand] + .product-card__product-list {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.product-card__product-list.js__product-card::before {
  align-items: center;
  background: white;
  content: "LOADING...";
  display: flex;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.75rem;
  height: 100%;
  left: 0;
  justify-content: center;
  opacity: 1;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 5;
}
@media (min-width: 800px) {
  .product-card__product-list.js__product-card::before {
    content: none;
  }
}
.product-card__product-list.js__product-card[data-is-ready=false] {
  height: 4.53125rem;
}
@media (min-width: 800px) {
  .product-card__product-list.js__product-card[data-is-ready=false] {
    height: 100%;
  }
}
.product-card__product-list.js__product-card[data-is-ready=true]::before {
  opacity: 0;
  visibility: hidden;
}
.product-card__product-list.js__product-card[data-is-expanded=true] {
  height: 100%;
}

@media (min-width: 800px) {
  .product-card__product-list--items {
    align-items: flex-start;
    display: flex;
    gap: 1.5rem;
  }
  .product-card__product-list .product-card__product-list--items:not(:first-child) {
    border-top: 1px dashed #807f7d;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
  }
}
.product-card__product-list--items div {
  display: grid;
  gap: 0 0.9375rem;
  grid-template-columns: 5rem 1fr;
  grid-template-rows: repeat(5, auto);
  grid-template-areas: "release release" "image category" "image name" "image color" "price price";
  padding: 1.5625rem 0;
  position: relative;
  width: 100%;
}
@media (min-width: 800px) {
  .product-card__product-list--items div {
    gap: unset;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    grid-template-areas: "release" "image" " category" "name" "color" "price";
    padding: 0;
    width: 8.75rem;
  }
}
.product-card__product-list--items div::before, .product-card__product-list--items div::after {
  content: "";
  left: -25%;
  height: 0.0625rem;
  position: absolute;
  width: 150%;
}
@media (min-width: 800px) {
  .product-card__product-list--items div::before, .product-card__product-list--items div::after {
    content: none;
  }
}
.product-card__product-list--items div::before {
  background: #d3d2cf;
  top: 0;
}
.product-card__product-list--items div::after {
  background: #f4f4f5;
  top: 0.0625rem;
}
.product-card__product-list--items div[data-index="0"]::before, .product-card__product-list--items div[data-index="0"]::after {
  content: none;
}
.product-card__product-list--items dt {
  font-size: 0.8125rem;
  grid-area: name;
  line-height: 1.3;
}
@media (min-width: 800px) {
  .product-card__product-list--items dt {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0.125rem;
  }
}
.product-card__product-list--items dt a {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .product-card__product-list--items dt a {
    letter-spacing: 0.05em;
  }
}

.product-card__product-list--released-at {
  color: #000;
  font-size: 0.8125rem;
  grid-area: release;
  letter-spacing: 0.05em;
  margin-bottom: 0.3125rem;
  transform: translateX(-0.375rem);
  width: 100%;
}
@media (min-width: 800px) {
  .product-card__product-list--released-at {
    font-size: 0.8125rem;
    margin-bottom: 0.875rem;
    transform: translateX(-0.375rem);
  }
}

.product-card__product-list--category {
  font-size: 0.8125rem;
  grid-area: category;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 800px) {
  .product-card__product-list--category {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin-top: 0.875rem;
  }
}

.product-card__product-list--colors {
  font-size: 0.8125rem;
  grid-area: color;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 800px) {
  .product-card__product-list--colors {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin-top: 0.125rem;
  }
}

.product-card__product-list--price {
  align-items: center;
  border-top: 1px dashed #807f7d;
  display: flex;
  flex-wrap: wrap;
  grid-area: price;
  margin-top: 0.9375rem;
  padding-top: 0.75rem;
  width: 100%;
}
@media (min-width: 800px) {
  .product-card__product-list--price {
    align-items: flex-start;
    border-top: none;
    flex-direction: column;
    margin-top: 0.875rem;
    padding-top: 0;
  }
}
.product-card__product-list--price[data-has-flag=true]::before {
  align-items: center;
  border: 1px solid #c80421;
  color: #c80421;
  content: attr(data-flag-txt);
  display: flex;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.625rem;
  justify-content: center;
  margin: 0 0.625rem 0 0;
  padding: 0 0.375rem;
}
@media (min-width: 800px) {
  .product-card__product-list--price[data-has-flag=true]::before {
    font-size: 0.75rem;
    margin: 0 0 0.875rem 0;
    padding: 0 0.875rem;
  }
}

.product-card__product-list--price_info {
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (min-width: 800px) {
  .product-card__product-list--price_info {
    font-size: 0.625rem;
  }
}
.product-card__product-list--price_info::before {
  content: "参考小売価格";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .product-card__product-list--price_info::before {
    display: block;
  }
}
.product-card__product-list--price_info span {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: inherit;
  line-height: 1.33;
  margin: 0 0.3125rem 0 0.3125rem;
  transform: translateY(-0.0625rem);
}
@media (min-width: 800px) {
  .product-card__product-list--price_info span {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 0.25rem 0 0;
    transform: none;
  }
}

.product-card__product-list--image {
  border: 1px solid #d3d2cf;
  grid-area: image;
  height: 5rem;
  width: 5rem;
}
@media (min-width: 800px) {
  .product-card__product-list--image {
    height: 8.75rem;
    width: 100%;
  }
}

.product-card__expand {
  align-items: center;
  background: #d3d2cf;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 2.5rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.product-card__product-list[data-is-expanded=false] ~ .product-card__expand::before {
  content: "すべての商品を見る";
}
.product-card__product-list[data-is-expanded=true] ~ .product-card__expand::before {
  content: "閉じる";
}
.product-card__expand::after {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.6) inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
}
@media (min-width: 800px) {
  .product-card__expand {
    display: none;
  }
}

/* Backボタンのスタイル */
.back-btn {
	background-color: #eee;
	border: none;
	padding: 0.3rem;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
}
.back-btn:hover {
	background-color: #bbb;
}
@media (min-width: 800px) {
	.back-btn {
		display: none;
	}
}

.floating-btn {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    width: 3.6rem;
    overflow: hidden;
    position: fixed;
    bottom: 3.4rem;
    right: 0.3rem;
	z-index: 10;
}
.floating-btn a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 1.03125rem;
    width: 100%;
    right: 1rem;
}
main:has(form[data-has-data=false]) .floating-btn {
	display: none;
}
@media (min-width: 800px) {
  .floating-btn {
    height: 5.625rem;
    width: 5.625rem;
    bottom: 6rem;
    right: 1.875rem;
  }
}

.floating-back {
  display: none;
}
@media (min-width: 800px) {
  .floating-back {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: fixed;
    top: 6rem;
    right: 1.875rem;
    height: 5.625rem;
    width: 5.625rem;
  }
  .floating-back a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0.8rem;
    width: 100%;
  }
}

.footer {
  bottom: 0;
  display: flex;
  height: 3rem;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding-top: 0.8rem;
  position: fixed;
  width: 100%;
  z-index: 5;
}
@media (min-width: 800px) {
  .footer {
    height: 3.75rem;
    padding-top: 1.25rem;
  }
}
.footer::before {
  background: #45433e;
  box-shadow: 0 0 0.375rem #000 inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: -1;
}
@media (min-width: 800px) {
  .footer::before {
    box-shadow: 0 0 0.375rem #000 inset;
  }
}
.footer a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.8rem;
}
@media (min-width: 800px) {
  .footer a {
    font-size: 0.75rem;
  }
}
.footer a::before {
  border: 0.0625rem solid transparent;
  border-left-color: #fff;
  border-top-color: #fff;
  content: "";
  height: 0.5rem;
  transform: rotate(45deg) translate(0, 12px);
  width: 0.5rem;
}
@media (min-width: 800px) {
  .footer a::before {
    border-width: 0.125rem;
    height: 0.375rem;
    width: 0.375rem;
	transform: rotate(45deg) translate(0, 0);
  }
}
.footer p{
	color: #FFFFFF;
	margin: 0;
	padding: 5px;
	display: block;
	position: absolute;
	top: 0;
	font-size: 0.6rem;
}
@media (min-width: 800px) {
  .footer p {
	right: 0;
	font-size: 0.7rem;
  }
}