@charset "UTF-8";
nav {
  box-sizing: border-box;
}

.header {
  background: #9b0020;
  box-sizing: border-box;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 9999;
}

.header-inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 100%;
}

.header-nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.header-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  max-width: 1080px;
  width: 100%;
}

.header-nav-list-item {
  width: 20%;
}

.header-nav-list-item + .header-nav-list-item {
  margin-left: 10px;
}

.header-nav-list-item.is-logo {
  margin-top: -50px;
  width: 125px;
}

.header-nav-list-item.is-logo a {
  display: block;
  width: 100%;
}

.header-nav-list-item a {
  color: #000;
  letter-spacing: 0.04em;
  text-align: center;
}

.header-nav-list-item a strong {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.header-nav-list-item a small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .header-nav-list-item a {
    transition: 0.6s ease;
  }
  .header-nav-list-item a:hover {
    opacity: 1;
    color: #fff;
  }
}
.header-snsBox {
  display: flex;
  position: absolute;
  top: 20px;
  right: 0;
}

.header-snsBox-item {
  display: block;
  width: 21px;
}

.header-snsBox-item + .header-snsBox-item {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 20px;
    height: 75px;
    position: relative;
  }
  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    z-index: 99;
  }
  .header-inner {
    display: block;
  }
  .header-nav {
    background: #9b0020;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 80px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.6s ease;
  }
  .header-nav-list {
    display: block;
    margin-top: 0;
    max-width: 100%;
  }
  .header-nav-list-item {
    text-align: center;
    width: auto;
  }
  .header-nav-list-item + .header-nav-list-item {
    margin-top: 24px;
    margin-left: 0;
  }
  .header-nav-list-item.is-logo {
    display: none;
  }
  .header-nav-list-item a {
    display: inline-block;
    padding: 0 24px;
    position: relative;
  }
  .header-nav-list-item a::before {
    background: #000;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 50%;
  }
  .header-nav-list-item a::after {
    background: #000;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 50%;
  }
  .header-nav-list-item a strong {
    font-size: 24px;
  }
  .header-nav-list-item a small {
    font-size: 14px;
  }
  .header-nav.close {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .header-snsBox {
    display: flex;
    margin-top: 24px;
    position: static;
    top: auto;
    right: auto;
  }
  .header-snsBox-item {
    width: 38px;
  }
  .header-snsBox-item + .header-snsBox-item {
    margin-left: 24px;
  }
}
.navBt {
  background: transparent;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 20px;
  width: 30px;
  height: 20px;
  z-index: 9999;
}

.navBt-item span {
  background: #fff;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
}

.navBt-item span:nth-child(1) {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s ease;
}

.navBt-item span:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s ease;
}

.navBt-item span:nth-child(3) {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s ease;
}

.navBt.close .navBt-item span:nth-child(1) {
  bottom: 0;
  transform: rotate(-45deg);
}

.navBt.close .navBt-item span:nth-child(2) {
  left: -100%;
  opacity: 0;
}

.navBt.close .navBt-item span:nth-child(3) {
  top: 0;
  transform: rotate(45deg);
}

.footer {
  background: #9b0020;
  box-sizing: border-box;
  position: relative;
  padding: 40px 40px 40px;
}

footer .footer_nav li a:hover {
  color: #fff;
}

.footer-inner {
  margin: 0 auto;
  max-width: 820px;
  width: 100%;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-list-item {
  border-right: solid #000 1px;
  line-height: 1.4;
  text-align: center;
  width: 16.6666%;
  box-sizing: border-box;
}

.footer-list-item:first-child {
  border-left: solid #000 1px;
}

.footer-list-item a {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

footer .pagetop a {
  display: block;
  position: absolute;
  top: -25px;
  right: 25px;
  background: #2e2e2e;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
}

footer .pagetop i {
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .footer-list-item a {
    transition: 0.6s ease;
  }
  .footer-list-item a:hover {
    opacity: 1;
    color: #fff;
  }
}
.footer__copyright {
  color: #000;
  font-size: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 20px 20px;
  }
  .footer-inner {
    max-width: 500px;
  }
  .footer-list {
    display: block;
    margin-bottom: 10px;
  }
  .footer-list-item {
    border-right: none;
    width: auto;
  }
  .footer-list-item + .footer-list-item {
    margin-top: 14px;
  }
  .footer-list-item a {
    font-size: 16px;
    text-align: left;
  }
  .footer-list-item:first-child {
    border-left: none;
  }
}
/* ▼▼▼▼▼▼▼▼▼取り扱いショップページ▼▼▼▼▼▼▼▼▼ */
/* CSS Document */
body {
  box-sizing: border-box;
  background: #000000;
  color: #ffffff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  height: auto;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

em {
  font-style: normal;
}

.f-EBGaramond {
  font-family: "EB Garamond", serif;
}

.shopMenu a, .shop_detail a {
  color: #ffffff;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  width: auto;
  max-width: 100%;
  line-height: 100%;
  vertical-align: bottom;
}

p, li, td, th, dt, dd {
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
}

.pageTitle {
  text-align: center;
  font-size: 28px;
  color: #ffffff;
  padding: 150px 0 50px;
}

.t-center {
  text-align: center;
}

.white_bg {
  background: #ffffff;
}

p.txt {
  margin-bottom: 20px;
}

.shop .inset {
  width: 98%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0 140px;
}

.shop .prefecture {
  border: solid 1px #ffffff;
  padding: 20px;
  margin-bottom: 40px;
}

.shop .prefecture p {
  font-weight: bold;
  padding-bottom: 5px;
}

.shop .prefecture ul {
  padding-bottom: 15px;
}

.shop .prefecture ul li {
  display: inline-block;
  border-right: solid 1px #ffffff;
  padding: 0 15px;
}

.shop .prefecture ul li:last-child {
  border-right: none;
}

.shop .prefecture ul li:first-child {
  padding-left: 0;
}

.shop .prefecture ul li a {
  text-decoration: underline;
}

.shopList {
  padding-top: 110px;
}

.shopMenu {
  display: block;
  width: 98%;
  max-width: 1250px;
  font-size: 16px;
  margin: 5px auto 0;
}

.shopMenu ul {
  display: grid;
  grid-template-columns: repeat(4, 0.5fr);
  gap: 30px 60px;
}

.shopMenuItem {
  display: block;
  padding-bottom: 4px;
  border-bottom: dashed 1px #C3C7D2;
}

.shopMenuInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.shopMenuInner>img{
  width: 16px;
  height: 16px;
}

/* テーブル */
table {
  width: 100%;
}

table th {
  color: #ffffff;
  padding: 20px 0;
  text-align: left;
}

table td {
  color: #ffffff;
  padding: 20px 0 20px 20px;
}

.shop_detail tr {
  border-bottom: solid 1px #343434;
  border-top: solid 1px #343434;
}

.shopList dt {
  font-size: 20px;
  margin: 15px 0;
  padding-left: 15px;
  border-left: solid 5px #9b0021;
}

.shopList table.shop_detail td:last-child a {
  border: solid 1px #ffffff;
  padding: 5px 5px 5px 15px;
  font-size: 13px;
  display: inline-block;
  width: 60px;
  position: relative;
}

.shopList table.shop_detail td:last-child a::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  background: url(../img/ico/arrow_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}

.shopList table.shop_detail th {
  width: 300px;
}

.shopList table.shop_detail td:nth-child(2) {
  width: 100px;
}

.shopList table td:nth-child(4) {
  width: 120px;
}

.shopList table.shop_detail td:last-child {
  width: 105px;
}

@media screen and (min-width: 769px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 769px), print {
  a[href^="tel:"] {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
  }
  div, h1, h2, h3, h4, h5, p, li, dl, dt, dd, article, header, footer, nav, span {
    box-sizing: border-box;
  }
  li {
    list-style: none;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  img {
    height: auto;
    width: auto;
    max-width: 100%;
    line-height: 100%;
    vertical-align: bottom;
  }
  em {
    font-style: normal;
  }
  h1, h2, h3, h4, h5 {
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
  }
  p, li, dt, dd {
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
  }
  a, button {
    transition: 0.6s ease;
  }
  a:hover, button:hover {
    opacity: 0.6;
  }
  .shop .inset {
    padding: 0 0 100px 0;
    max-width: 500px;
  }
  .shopMenu {
    display: none;
  }
  .pageTitle {
    padding: 50px 0;
  }
  table.shop_detail th, table.shop_detail td {
    text-align: left;
    display: block;
  }
  table th {
    padding: 20px 0;
  }
  table td {
    margin: 0 auto;
  }
  table td:nth-child(2) {
    padding: 0;
  }
  table td:nth-child(3) {
    padding: 0 0 10px;
    margin: 0 auto;
    width: 95%;
  }
  table td:nth-child(4) {
    padding: 10px 0;
  }
  table td:last-child {
    margin-top: 10px;
    margin-bottom: 20px;
    border: #fff 1px solid;
    padding: 0;
    position: relative;
  }
  .shopList table.shop_detail th {
    width: 95%;
    margin: 0 auto;
  }
  .shopList table.shop_detail td:nth-child(2) {
    width: 95%;
  }
  .shopList table td:nth-child(4) {
    width: 95%;
  }
  .shopList table.shop_detail td:last-child {
    width: 95%;
  }
  .shopList table.shop_detail td:last-child a {
    border: none;
    padding: 5px 15px;
  }
  .shopList table.shop_detail td:last-child a::before {
    right: -372px;
  }
  .shopList dt {
    margin: 15px 0px;
    position: relative;
  }
  .shopList {
    padding-top: 24px;
    border-bottom: dashed 1px #C3C7D2;
  }
  .shopList:first-child {
    padding-top: 0;
  }
  .accordion:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    height: 2px;
    width: 15px;
    background: #fff;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
  }
  .accordion:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    height: 2px;
    width: 15px;
    background: #fff;
    transition: all 0.3s ease-in-out;
  }
  .accordion.open:before {
    transform: rotate(180deg);
  }
  .accordion.open:after {
    opacity: 0;
  }
  .shopList dd {
    display: none;
  }
}
@media screen and (max-width: 510px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -354px;
  }
  .shopList {
    margin: 0 10px;
  }
}
@media screen and (max-width: 505px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -67.3267326733vw;
  }
}
@media screen and (max-width: 440px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -65.9090909091vw;
  }
}
@media screen and (max-width: 414px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -264px;
  }
}
@media screen and (max-width: 393px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -245px;
  }
}
@media screen and (max-width: 390px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -242px;
  }
}
@media screen and (max-width: 375px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -226px;
  }
}
@media screen and (max-width: 360px) {
  .shopList table.shop_detail td:last-child a::before {
    right: -213px;
  }
}/*# sourceMappingURL=style.css.map */