﻿@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Unna:wght@400;700&display=swap');

:root {
  --base: #7E2C2C;
  --border: #A2A2A2;
  --alert: #cc0101;
  --gold: #b39b75;
  --link: #0096c8;
  --lightColor: #985656;
  --placeholder: #B8B8B8;
  --bgGray: #f6f6f6;
  --deepGray: #cacaca;

  --fontDefault: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  --fontUnna: "Unna", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
}

body {
  font-family: var(--fontDefault);
  color: #000;
  font-size: 16px;
  font-feature-settings: "palt";
  background: #fff;
}

a {
  color: #000;
  text-decoration: underline;
  word-break: break-word;
}

h1,
.h1 {
  width: calc(100% + 20px);
  padding: 15px 10px 12px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

h2,
.h2 {
  margin-top: 30px;
  padding: 10px 8px 10px 10px;
  font-size: 20px;
  font-weight: bold;
  background: none;
}

h3,
.h3 {
  margin: 0 0 8px;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #dedede;
  background: none;
}

h4,
.h4 {
  margin: 0;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  border-bottom: 0;
  background: none;
}

h5,
.h5 {
  font-size: 14px;
  font-weight: bold;
  background: none;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
  background: none;
}

.price {
  color: #000 !important;
}

.price::after,
.default-price::after {
  content: "（税込）";
}

.net::after,
.price.net::after,
.net-price::after,
.default-net::after {
  content: "（税抜）";
}

.pager {
  display: flex;
  margin-block: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
}
.pager a {
  color: #000;
}

.pager-scope,
.pager-total {
  width: 100%;
}
.pager-total {
  margin-bottom: 10px;
  text-align: left;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pager-count span {
  font-weight: normal;
}

.pagination > * {
  margin: 0;
  padding: 0;
  border-color: var(--border);
}
.pagination a {
  text-decoration: none;
}
.pager-current {
  color: #fff;
  background: var(--border);
}
.pagination a,
.pager-current span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.pager-current span {
  font-weight: normal;
}
.pagination .block-icon-image--center {
  display: none;
}
.pager-first a,
.pager-previous a,
.pager-next a,
.pager-last a {
  position: relative;
  border-color: var(--base);
  font-size: 0;
  background: var(--base);
}
.pager-first a:before,
.pager-previous a:before,
.pager-next a:before,
.pager-last a:before,
.pager-first a:after,
.pager-last a:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pager-first a:before {
  left: calc(50% - 1px);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.pager-first a:after {
  left: calc(50% + 5px);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.pager-previous a:before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.pager-next a:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pager-last a:before {
  left: calc(50% - 5px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.pager-last a:after {
  left: calc(50% + 1px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.action .btn {
  border-bottom-width: 1px;
  text-decoration: none;
}

.btn-default {
  color: #000;
  border: 1px solid var(--border);
  background: #fff;
}

.btn-primary {
  color: #fff;
  border: 1px solid var(--base);
  background: var(--base);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: #000;
  background: #fff;
}

.btn-danger {
  color: #fff;
  border: 1px solid var(--base);
  background: var(--base);
}

input[type="text"][size="20"],
input[type="password"][size="20"] {
  width: 170px;
}

.block-login--pwd input[type="text"][size="20"],
.block-login--pwd input[type="password"][size="20"] {
  width: 100%;
}

.block-common-alert {
  margin-top: 10px;
  color: var(--base);
  border: 1px solid var(--base);
  background: #fff;
}
.block-common-alert .action .btn {
  height: 40px;
}