﻿*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
a {
  outline: none;
  text-decoration: none;
}
@font-face {
  font-family: "shippori-mincho-b1";
  font-weight: 600;
  src: url(../fonts/ShipporiMinchoB1-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "shippori-mincho-b1";
  font-weight: 700;
  src: url(../fonts/ShipporiMinchoB1-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "noto-sans-jp";
  font-weight: 400;
  src: url(../fonts/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "noto-sans-jp";
  font-weight: 500;
  src: url(../fonts/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "noto-sans-jp";
  font-weight: 700;
  src: url(../fonts/NotoSansJP-Bold.ttf) format("truetype");
}
html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html,
  body {
    scroll-padding-top: 144px;
  }
}
body {
  font-size: 16px;
  font-family: "noto-sans-jp", "メイリオ", sans-serif;
  font-weight: 400;
  color: #434343;
}
main {
  background-color: #f8f8f8;
  padding-bottom: 2em;
}
a {
  color: inherit;
}
.section {
  padding: 10vw 1vw 15vw;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 64px 0;
  }
}
.bg_gray {
  background: #f8f8f8;
}
.bg_beige {
  background: #f5efea;
}
.bg_marblestone01 {
  width: 100%;
  height: 100%;
  background-image: url("../images/top/bg-marblestone01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg_marblestone02 {
  width: 100%;
  height: 100%;
  background-image: url("../images/top/bg-marblestone02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .hp_sp_br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .hp_sp_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hp_pc_br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hp_pc_br {
    display: block;
  }
}
.hp_ta-c {
  text-align: center !important;
}
.hp_ta-r {
  text-align: right !important;
}
.hp_txt_small {
  font-size: 0.8em;
}
.hp_txt_large {
  font-size: 1.5em;
}
.hp_font_serif {
  font-family: "shippori-mincho-b1", serif;
}
.btn {
  width: 100%;
  display: block;
  padding: 0.7em 0.875em;
  border-radius: 4px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  overflow: hidden;
}
.btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #c57d86 10%, transparent 10%) no-repeat
    50%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
}
.btn:hover::after {
  transform: scale(12, 12);
}
.btn > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn.btn__ghost {
  border: solid 2px #c57d86;
}
.btn.btn__ghost.btn__ghost-gold {
  border: solid 2px #c9b8aa;
}
.btn.btn__ghost.btn__ghost-gold::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #c9b8aa 10%, transparent 10%) no-repeat
    50%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
}
.btn.btn__ghost.btn__ghost-gold:hover::after {
  transform: scale(12, 12);
}
.btn.btn__rounded {
  border-radius: 88px;
}
.btn.btn__arrow-r {
  position: relative;
}
.btn.btn__arrow-r::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #c57d86;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}
.btn.btn__arrow-r > .txt {
  color: #c57d86;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
.btn.btn__arrow-r:hover > .txt {
  position: relative;
  z-index: 3;
  color: #fff;
}
.btn.btn__arrow-r:hover::before {
  border-left: 10px solid #fff;
  z-index: 3;
}
.btn .label {
  background: #ffcd14;
  background: linear-gradient(90deg, #ffcd14 0%, #ff5639 100%);
  border-radius: 4px;
  padding: 0.2em 0.3em;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn .txt {
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
.btn .icon {
  width: 24px;
}
.btn.btn__line {
  padding: 0.6em 1.313em;
  background: #fff;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #8cdc8a 11%,
    #5cc559 40%,
    #42ac3b 100%
  );
}
.btn.btn__line::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
.btn.btn__line:hover {
  opacity: 1;
}
.btn.btn__line:hover::after {
  animation: btnLight 1s;
}
.btn.btn__line .iconBox {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .btn.btn__line .iconBox {
    width: 40%;
  }
}
.btn.btn__line .txtBox {
  width: 100%;
}
.btn.btn__line .txt {
  display: block;
  font-size: 1.4em;
}
@media screen and (min-width: 768px) {
  .btn.btn__line .txt {
    font-size: 1.125em;
  }
}
.btn.btn__line .txt.hp_txt_small {
  font-size: 0.8em;
}
@keyframes btnLight {
  100% {
    left: 125%;
  }
}
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99999;
  background: #f5efea;
  border-bottom: solid 4px #c57d86;
  box-shadow: 0px 3px 20px -7px rgba(0, 0, 0, 0.3);
}
.header.header__static {
  position: static;
}
.header.js-active {
  position: fixed;
}
.header > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.5em 0.8em;
  gap: 16px;
  row-gap: 40px;
  background: transparent;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header > .inner {
    padding: 12px 24px 20px 24px;
    gap: 40px;
    row-gap: 40px;
    padding: 1em 0.8em;
  }
}
.header .logoBox {
  width: 40%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media screen and (min-width: 768px) {
  .header .logoBox {
    width: 230px;
  }
}
.header .navBox {
  display: none;
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header .navBox {
    display: block;
    width: auto;
    /* max-width: 720px; */
    margin-left: unset;
  }
}
.header .navBox.js-active {
  width: 90%;
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
.header .navBox .navList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  flex-wrap: wrap;
  gap: 5px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header .navBox .navList {
    flex-direction: row;
  }
}
.header .navBox .navList > li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  border-bottom: solid 1px currentColor;
}
@media screen and (min-width: 768px) {
  .header .navBox .navList > li {
    width: auto;
    border-bottom-style: none;
  }
}
.header .navBox .navList > li > a {
  display: block;
  width: 100%;
  padding: 0.5em 0;
  color: #434343;
  text-align: left;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .header .navBox .navList > li > a {
    font-size: 0.875em;
    flex-direction: row;
    display: inline;
    width: auto;
    padding: 0;
    text-align: center;
  }
}
.header .btnBox {
  width: 40%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  order: 2;
}
@media screen and (min-width: 768px) {
  .header .btnBox {
    display: block;
    width: 100%;
    max-width: 180px;
    order: 3;
  }
}
.header .btnBox > .btn .inner {
  gap: 16px;
}
.header .btnBox .txtBox > .txt {
  font-size: 0.8em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .header .btnBox .txtBox > .txt {
    font-size: 1.1em;
  }
}
.header .btnBox .txtBox > .txt.hp_txt_small {
  font-size: 0.7em;
}
@media screen and (min-width: 768px) {
  .header .btnBox .txtBox > .txt.hp_txt_small {
    font-size: 0.8em;
  }
}
.header .btnBox > .btn.btn__line {
  padding: 0.4em 1em;
}
.header .navBtn {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 999;
  order: 3;
}
@media screen and (min-width: 768px) {
  .header .navBtn {
    display: none;
  }
}
.header .navBtn.js-active .navBtnLine {
  transition: 0.3s all;
  top: 50%;
  bottom: auto;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}
.header .navBtn.js-active .navBtnLine:nth-child(2) {
  display: none;
}
.header .navBtn.js-active .navBtnLine:nth-child(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.header .navBtn .navBtnLine {
  width: 100%;
  height: 3px;
  background: #c57d86;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header .navBtn .navBtnLine:nth-child(2) {
  top: 50%;
}
.header .navBtn .navBtnLine:nth-child(3) {
  top: auto;
  bottom: 0;
}
.gnaviBg {
  display: none;
  width: 100%;
  height: 100vh;
  background: #e2beba;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.lowerHeading {
  width: 100%;
  padding: 2em;
  background-image: url("../images/common/bg-header@2x.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .lowerHeading {
    padding: 4em;
  }
}
.lowerHeading.lowerHeading__page {
  background-image: none;
  padding: 2em 0;
}
@media screen and (min-width: 768px) {
  .lowerHeading.lowerHeading__page {
    padding: 4em 0;
  }
}
.lowerHeading.lowerHeading__page .ttlBox {
  text-align: center;
}
.lowerHeading.lowerHeading__page .heading {
  font-size: 1.313em;
}
@media screen and (min-width: 768px) {
  .lowerHeading.lowerHeading__page .heading {
    font-size: 2em;
  }
}
.lowerHeading.lowerHeading__page .heading > .txt {
  font-family: "noto-sans-jp", "メイリオ", sans-serif;
}
.lowerHeading > .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.lowerHeading .heading {
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .lowerHeading .heading {
    font-size: 1.2em;
  }
}
.lowerHeading .heading > .txt {
  display: inline-block;
  font-family: "shippori-mincho-b1", serif;
}
@media screen and (min-width: 768px) {
  .lowerHeading .heading > .txt {
    display: inline-block;
  }
}
.lowerHeading .heading > .txt.hp_txt_large {
  font-size: 1.3em;
}
@media screen and (min-width: 768px) {
  .lowerHeading .heading > .txt.hp_txt_large {
    font-size: 1.5em;
  }
}
.breadcrumbBox {
  background-color: #f5efea;
  padding: 1em;
}
.breadcrumbList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 8px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .breadcrumbList {
    max-width: 1000px;
  }
}
.breadcrumbList > li {
  list-style: none;
  position: relative;
  font-size: 0.875em;
  color: #434343;
}
.breadcrumbList > li::after {
  display: block;
  content: "＞";
  width: 1em;
  height: 1em;
  font-size: 0.7em;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 2;
}
.breadcrumbList > li:last-of-type::after {
  display: none;
}
.catBox {
  width: 90%;
  margin: 1em auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .catBox {
    max-width: 1000px;
    padding: 0;
  }
}
.catList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .catList {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
.catList.catList__5col {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
@media screen and (min-width: 768px) {
  .catList.catList__5col {
    grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  }
}
.catList.catList__sidebar {
  gap: 0;
  display: block;
  margin-bottom: 1em;
}
.catList.catList__sidebar:last-child {
  margin-bottom: 0;
}
.catList li {
  list-style: none;
}
.catList > .cat {
  border: solid 1px #c9b8aa;
  background: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.catList > .cat input[type="radio"] {
  display: none;
}
.catList > .cat::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #c9b8aa 10%, transparent 10%) no-repeat
    50%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
  z-index: 1;
}
.catList > .cat:hover::after {
  transform: scale(12, 12);
}
.catList > .cat.cat__fill-gold {
  background: #c9b8aa;
}
.catList > .cat.cat__fill-gold:hover::after {
  transform: scale(12, 12);
}
.catList > .cat.cat__fill-gold > .txt {
  color: #fff;
  font-size: 0.875em;
  position: relative;
  z-index: 3;
}
.catList > .cat.cat__fill-pink {
  background: #c57d86;
  border-style: none;
}
.catList > .cat.cat__fill-pink:hover::after {
  transform: scale(12, 12);
}
.catList > .cat.cat__fill-pink > .txt {
  color: #fff;
  font-size: 0.875em;
  position: relative;
  z-index: 3;
}
.catList > .cat > a {
  display: block;
  padding: 0.8em 0.5em;
  color: #434343;
  position: relative;
  z-index: 3;
}
.catList > .cat > label {
  display: block;
  padding: 0.8em 0.5em;
  color: #434343;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.catList > .cat.cat__tag .txt {
  position: relative;
}
.catList > .cat.cat__tag .txt::before {
  display: inline-block;
  content: "#";
  vertical-align: middle;
  color: inherit;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%);
  z-index: 1;
}
.catList > .cat.cat__sidebar {
  border-style: none;
  border-bottom: solid 1px #e5e5e5;
}
.catList > .cat.cat__sidebar > a {
  text-align: left;
  background-image: url("../images/common/icon-arrow-gr.webp");
  background-repeat: no-repeat;
  background-size: 4%;
  background-position: right 8px center;
}
@media screen and (min-width: 768px) {
  .catList > .cat.cat__sidebar > a {
    background-size: 5%;
  }
}
.catList > .cat.cat__sidebar > a > .txt {
  font-size: 0.875em;
}
.catList > .cat.cat__sidebar:last-child {
  border-bottom-style: none;
}
.catList.catList__tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.catList.catList__tag > .cat {
  border-radius: 4px;
  padding: 0.1em 1.3em;
  cursor: default;
}
.categoryList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
  gap: 10px;
  margin: 2vw auto;
}
@media screen and (min-width: 768px) {
  .categoryList {
    max-width: 1000px;
  }
}
.categoryList > li {
  border: solid 1px #c9b8aa;
  background: #fff;
  text-align: center;
}
.categoryList > li > a {
  display: block;
  padding: 0.8em 0.5em;
  color: #434343;
}
.shopList {
  width: 100%;
  margin: 2vw auto;
  padding: 0 1em;
}
@media screen and (min-width: 768px) {
  .shopList {
    max-width: 1000px;
    padding: 0;
  }
}
.shopList.shopList__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .shopList.shopList__grid {
    margin: 4vw auto;
    gap: 10px;
    row-gap: 64px;
  }
}
.shopList.shopList__grid > .card:nth-child(n + 2) {
  margin-top: 0;
}
.articleList {
  width: 100%;
  margin: 2vw auto;
  padding: 0 1em;
}
@media screen and (min-width: 768px) {
  .articleList {
    max-width: 1000px;
    padding: 0;
  }
}
.articleList > .card:nth-child(n + 2) {
  margin-top: 0;
}
.articleList .bodyBox {
  margin: 2vw auto;
}
.articleList.articleList__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .articleList.articleList__grid {
    margin: 4vw auto;
    gap: 10px;
  }
}
.articleList.articleList__grid > .card:nth-child(n + 2) {
  margin-top: 0;
}
.articleList.articleList__grid > .card .bodyBox > .inner {
  flex-direction: column;
}
.cardList:nth-child(n + 2) {
  margin-top: 2em;
}
.cardList.cardList__aside {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cardList.cardList__aside .cardListItem > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cardList.cardList__aside .cardListItem .imgBox {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .cardList.cardList__aside .cardListItem .imgBox {
    max-width: 170px;
  }
}
.cardList.cardList__aside .cardListItem .imgBox > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.cardList.cardList__aside .cardListItem .ttlBox {
  margin-bottom: 0;
  width: 100%;
  font-size: 0.875em;
}
.cardList.cardList__aside .cardListItem:nth-child(n + 2) {
  margin-top: 1em;
  border-top: solid 1px #e5e5e5;
  padding-top: 1em;
}
.card {
  background-color: #fff;
  padding: 1.5em;
}
@media screen and (min-width: 768px) {
  .card {
    padding: 32px;
  }
}
.card:nth-child(n + 2) {
  margin-top: 1.5em;
}
.card.card__normal {
  background-color: transparent;
  padding: 0;
}
.card.card__normal .cardTtl {
  font-size: 1.125em;
}
.card.card__3col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
}
.card .headBox .ttlBox {
  margin: 0 0 1em;
}
.card .headBox > .ttl {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  vertical-align: middle;
  margin-top: 2vw;
}
@media screen and (min-width: 768px) {
  .card .headBox > .ttl {
    font-size: 1.313em;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .card .cardTtl {
    min-height: 56px;
    display: block;
  }
}
.card .shopImg {
  width: 100%;
  flex: 0 1 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card .shopImg img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
.card .bodyBox > .inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .card .bodyBox > .inner {
    flex-direction: row;
    gap: 32px;
  }
}
.card .bodyBox .imgBox {
  width: 100%;
  flex: 0 1 auto;
}
.card .bodyBox .imgBox img {
  width: 100%;
}
.card .bodyBox .excerptBox {
  width: 100%;
  flex: 0 1 auto;
}
.card .bodyBox .excerptBox .txt {
  line-height: 1.8;
}
.card .btnBox {
  width: 100%;
  margin-top: 2vw;
}
@media screen and (min-width: 768px) {
  .card .btnBox {
    max-width: 200px;
    margin-left: auto;
  }
}
.label {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em 0.7em;
  border-radius: 4px;
  text-align: center;
  font-size: 0.875em;
  font-weight: 700;
  margin-right: 0.2em;
}
.label.label__new {
  color: #fff;
  background-color: #c57d86;
}
.metaBox {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0.8em auto 1.3em;
}
@media screen and (min-width: 768px) {
  .metaBox {
    flex-direction: row;
    align-items: center;
  }
}
.metaBox .shopIcon {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875em;
}
.metaBox .shopIcon::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.2em;
}
.metaBox .shopIcon.time::before {
  background-image: url("../images/common/icon-time@2x.webp");
}
.metaBox .shopIcon.area::before {
  background-image: url("../images/common/icon-area@2x.webp");
}
.metaBox .shopIcon.money::before {
  background-image: url("../images/common/icon-money@2x.webp");
}
.metaBox .shopIcon.job::before {
  background-image: url("../images/common/icon-job@2x.webp");
}
.metaBox .catBox {
  width: auto;
  max-width: none;
  margin: 0;
}
.tableBox {
  width: 100%;
  margin: 2vw auto 0;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .tableBox {
    margin: 1vw auto 0;
    min-height: 160px;
  }
}
.tableInfoBox {
  border-bottom: solid 1px #f1e1d4;
}
.tableInfoBox:last-child {
  border-bottom-style: none;
}
.tableInfoBox > .ttl {
  width: 30%;
  text-align: left;
  background-color: #e2beba;
  font-size: 0.875em;
  font-weight: 700;
  padding: 0.5em 1em;
}
.tableInfoBox > .txt {
  background-color: #fff;
  padding: 0.5em 1em;
  font-size: 0.875em;
}
.areaListBox {
  margin: 2vw auto;
}
.catListBox {
  margin: 2vw auto;
}
.col2Box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .col2Box {
    flex-direction: row;
    gap: 24px;
  }
}
.col2BoxItem {
  width: 100%;
  flex: 0 1 auto;
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .col2BoxItem {
    width: 50%;
    padding: 1.5em;
  }
}
.col2BoxItem.col2BoxItem__bg {
  background: #fff;
  border: solid 1px #707070;
}
.col2BoxItem > .ttl {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .col2BoxItem > .ttl {
    font-size: 1.313em;
    margin-bottom: 0.3em;
  }
}
.contactBox {
  width: 90%;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .contactBox {
    width: 100%;
    margin: 2vw auto;
  }
}
.contactBox > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contactBox > .inner {
    flex-direction: row;
    gap: 24px;
    max-width: 670px;
  }
}
.contactBox .telBox {
  width: 100%;
  flex: 0 1 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contactBox .telBox {
    width: 60%;
  }
}
.contactBox .telBox > a {
  font-size: 2.5em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contactBox .telBox > a {
    font-size: 2.8em;
  }
}
.contactBox .btnBox {
  width: 100%;
  flex: 0 1 auto;
}
@media screen and (min-width: 768px) {
  .contactBox .btnBox {
    width: 50%;
  }
}
.contactBox .btnBox > .btn.btn__line {
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .contactBox .btnBox > .btn.btn__line .txt {
    font-size: 1.313em;
  }
}
.contactBox .btnBox .iconBox {
  width: 16%;
}
@media screen and (min-width: 768px) {
  .contactBox .btnBox .iconBox {
    width: 20%;
  }
}
.pageContents {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .pageContents {
    max-width: 1000px;
  }
}
.pageContents > .inner {
  padding: 0 1em;
}
@media screen and (min-width: 768px) {
  .pageContents > .inner {
    padding: 0;
  }
}
.pageContents .ttlBox > h2 {
  font-size: 1.125em;
}
@media screen and (min-width: 768px) {
  .pageContents .ttlBox > h2 {
    font-size: 1.5em;
  }
}
.pageSection {
  margin: 0 auto 15vw;
}
@media screen and (min-width: 768px) {
  .pageSection {
    margin: 0 auto 5vw;
  }
}
.pageSection > .ttlBox {
  margin-bottom: 1em;
}
.pageSection > .leadBox {
  margin: 1.5em 0;
}
@media screen and (min-width: 768px) {
  .pageSection > .leadBox {
    margin: 2em 0;
  }
}
.headingIcon {
  position: relative;
  padding-top: 2.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .headingIcon {
    padding-left: 2em;
    padding-top: 0;
    text-align: left;
  }
}
.headingIcon::before {
  display: block;
  content: "";
  width: 44px;
  height: 44px;
  background-image: url("../images/common/icon-diamond.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .headingIcon::before {
    top: 50%;
    right: auto;
    transform: translateY(-50%);
  }
}
.pageSection .tableBox {
  overflow-x: scroll;
}
.pageSection .tableCont {
  width: 100%;
  min-width: 600px;
  table-layout: fixed;
  border-collapse: collapse;
}
.pageSection .thead {
  background-color: #c57d86;
  color: #fff;
}
.pageSection .thead th {
  padding: 1em 0.5em;
  text-align: center;
  border-left: solid 1px #fff;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #c57d86;
  z-index: 1;
}
.pageSection .thead th:nth-of-type(1) {
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .pageSection .thead th {
    position: static;
  }
}
.pageSection .tbody tr {
  width: 100%;
}
.pageSection .tbody tr:nth-of-type(2n) {
  background-color: #ebebea;
}
.pageSection .tbody tr:nth-of-type(2n) th {
  background-color: #ebebea;
}
.pageSection .tbody th {
  padding: 1em 0.5em;
  text-align: center;
  color: #c57d86;
  position: sticky;
  top: 0;
  left: 0;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .pageSection .tbody th {
    position: static;
  }
}
.pageSection .tbody td {
  padding: 1em 0.5em;
  text-align: center;
  border-left: solid 1px #ccc;
}
.footer {
  background: #f8f8f8;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer > .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
  padding: 4em 1em;
}
@media screen and (min-width: 768px) {
  .footer > .inner {
    gap: 160px;
    flex-direction: row;
    padding: 4em 0;
    gap: 64px;
  }
}
.footer .logoBox {
  width: 40%;
  margin: 0 auto;
  order: 3;
}
@media screen and (min-width: 768px) {
  .footer .logoBox {
    order: 1;
    max-width: 200px;
    width: 100%;
    margin-right: auto;
  }
}
.footer .footerListBox {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media screen and (min-width: 768px) {
  .footer .footerListBox {
    order: 2;
  }
}
.footer .footerListBox .ttlBox {
  margin-bottom: 0.3vw;
}
.footer .footerListBox .ttl {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer .footerListBox:last-child {
    order: 3;
  }
}
.footer .footerList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer .footerList {
    align-items: center;
  }
}
.footer .footerList > li {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center;
}
.footer .footerList > li > a {
  font-size: 0.875em;
  color: #434343;
  font-weight: 400;
}
.footer .footermenuList > li {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .footer .footermenuList > li {
    margin-bottom: 0.5vw;
  }
}
.footer .footermenuList > li > a {
  color: #434343;
  font-weight: 700;
}
.footer .copyrightBox {
  text-align: center;
  padding: 0.4em;
  background: #c57d86;
}
@media screen and (min-width: 768px) {
  .footer .copyrightBox {
    padding: 0.4em;
  }
}
.footer .copyrightBox > small {
  font-size: 0.8em;
  color: #fff;
}
.error-section > .inner {
  width: 100%;
  height: 100%;
  padding: 10vw 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .error-section > .inner {
    max-width: 1000px;
    padding: 84px 0;
  }
}
.error-section .ttlBox {
  text-align: center;
}
.error-section .ttlBox .subTxt {
  margin-top: 1vw;
}
.error-section .txtBox {
  margin: 4vw auto;
}
.error-section .txtBox .txt {
  line-height: 1.8;
}
.error-section .btnBox {
  width: 80%;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .error-section .btnBox {
    width: 100%;
    max-width: 300px;
    margin: 4vw auto;
  }
}
.searchBox {
  width: 100%;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .searchBox {
    margin: 4vw auto;
    max-width: 700px;
  }
}
.searchForm {
  position: relative;
}
.searchInputArea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 1.125em;
  padding: 1em 4em 1em 2em;
  border-radius: 88px;
  border: solid 3px #c9b8aa;
}
.searchBtn {
  position: absolute;
  top: 50%;
  right: 13px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.searchSubmit {
  -webkit-appearance: none;
  appearance: none;
  border-style: none;
  border-radius: 50%;
  font-size: 0;
  background-color: #c9b8aa;
  background-image: url("../images/common/icon-search-w@2x.webp");
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.errorBox > .inner {
  width: 100%;
  height: 100%;
  padding: 4vw 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .errorBox > .inner {
    max-width: 1000px;
    padding: 32px 0;
  }
}
.errorBox .ttlBox {
  text-align: center;
}
.errorBox .ttlBox .subTxt {
  margin-top: 1vw;
}
.errorBox .txtBox {
  margin: 4vw auto;
}
.errorBox .txtBox .txt {
  line-height: 1.8;
}
.errorBox .btnBox {
  width: 80%;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .errorBox .btnBox {
    width: 100%;
    max-width: 300px;
    margin: 4vw auto;
  }
}
.authorBox {
  width: 100%;
  border: solid 2px #d9d6d6;
  padding: 1.5em;
  margin-bottom: 1.5em;
}
.authorBox > .ttlBox > .ttl {
  font-size: 1.125em;
  margin-top: 0;
  margin-bottom: 1em;
}
.authorBox .recentlyPost {
  border-top: dashed 2px #d9d6d6;
  margin-top: 1.125em;
  padding-top: 1.125em;
}
.authorBox .recentlyPost > .ttlBox > .ttl {
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0.875em;
}
.authorBox .recentlyPostList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .authorBox .recentlyPostList {
    flex-direction: row;
  }
}
.authorBox .recentlyPostListItem {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .authorBox .recentlyPostListItem {
    width: calc(100% / 4);
  }
}
.authorBox .recentlyPostListItem .imgBox {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .authorBox .recentlyPostListItem .imgBox {
    width: 100%;
  }
}
.authorBox .recentlyPostListItem .imgBox > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.authorBox .recentlyPostListItem .dateBox {
  display: block;
  font-size: 0.75em;
  color: #9c9ca1;
  margin-top: 0.2em;
}
.authorBox .recentlyPostListItem .txtBox > .ttl {
  display: block;
  font-size: 0.75em;
}
.authorBox .recentlyPostListItem > a {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .authorBox .recentlyPostListItem > a {
    display: block;
  }
}
.authorCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .authorCont {
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }
}
.authorCont > .imgBox {
  width: 30%;
}
.authorCont > .imgBox > figure {
  margin: 0 auto;
}
.authorCont > .txtBox {
  width: 100%;
}
.authorCont > .txtBox > .ttlBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .authorCont > .txtBox > .ttlBox {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }
}
.authorCont .authorName {
  font-size: 1em;
  font-weight: 700;
}
.authorCont .authorCap {
  font-size: 0.75em;
  font-weight: 500;
}
.authorCont .leadBox {
  margin-top: 1em;
}
.authorCont .leadBox > .txt {
  font-size: 0.875em;
}
.authorCont .authorLink {
  font-weight: 700;
  color: #c57d86;
  text-decoration: underline;
  position: relative;
  padding-right: 1.6em;
  background-image: url("../images/common/icon-outerlink.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
}
.search-submit {
  display: none;
}
.headingBox {
  margin: 0 auto;
}
.headingBox .imgBox {
  width: 70%;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .headingBox .imgBox {
    width: 23%;
  }
}
.headingBox .subTxtBox {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  font-size: 0.7em;
}
.home ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#fv {
  width: 100%;
  height: 40vw;
  min-height: 480px;
  background-image: url("../images/top/bg-fv-sp.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  #fv {
    min-height: 590px;
    background-image: url("../images/top/bg-fv-pc.webp");
  }
}
#fv > .inner {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  #fv > .inner {
    max-width: 1200px;
  }
}
#fv .detailBox {
  width: 100%;
  margin: 1em auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  #fv .detailBox {
    margin: 1em auto;
    max-width: 450px;
  }
}
#fv .detailList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
#fv .detailList > li {
  width: 100%;
  text-align: center;
}
#fv .detailList > li .txt {
  font-family: "shippori-mincho-b1", serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #fv .detailList > li .txt {
    font-size: 2em;
  }
}
.decoImgBox.decoImgBox__l {
  display: block;
  width: 120px;
  height: 150px;
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .decoImgBox.decoImgBox__l {
    width: 150px;
  }
}
.decoImgBox.decoImgBox__m {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 1;
}
.fvLeadBox {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fvLeadBox {
    width: 450px;
    top: 1vw;
    left: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fvLeadBox .imgLeadBox .imgBox:first-child {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .fvLeadBox .imgLeadBox .imgBox:first-child {
    width: 100%;
  }
}
.fvLeadBox .imgLeadBox .imgBox:last-child {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .fvLeadBox .imgLeadBox .imgBox:last-child {
    width: 100%;
  }
}
.fvLeadBox .imgLeadBox .txtBox {
  text-align: left;
  margin: 1em auto;
}
@media screen and (min-width: 768px) {
  .fvLeadBox .imgLeadBox .txtBox {
    text-align: center;
  }
}
.fvLeadBox .imgLeadBox .txtBox > .txt {
  color: #666;
  font-weight: 700;
  font-size: 1.2em;
}
.fv-anchor {
  width: 100%;
}
.fv-anchor > .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .fv-anchor > .inner {
    max-width: 800px;
    padding: 2em 0;
  }
}
.fv-anchor .btnBox {
  width: 100%;
  flex: 0 1 auto;
}
.fv-anchor .btn {
  width: 100%;
  display: inline-block;
  border-radius: 0;
}
.fv-anchor .btn.btn__ghost-gold {
  border-width: 4px;
  padding: 0.2em 0 0.4em;
  background-image: url("../images/common/icon-search-gd@2x.webp");
  background-repeat: no-repeat;
  background-position: center left 8px;
  background-size: 15%;
}
@media screen and (min-width: 768px) {
  .fv-anchor .btn.btn__ghost-gold {
    padding: 0.8em 0.5em;
  }
}
.fv-anchor .btn.btn__ghost-gold:focus {
  background-image: url("../images/common/icon-search-w@2x.webp");
}
.fv-anchor .btn.btn__ghost-gold:hover {
  background-image: url("../images/common/icon-search-w@2x.webp");
}
@media screen and (min-width: 768px) {
  .fv-anchor .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: inherit;
  }
}
.fv-anchor .btn .icon {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .fv-anchor .btn .icon {
    width: 20%;
  }
}
.fv-anchor .btn .txt {
  width: 100%;
  color: #434343;
  font-weight: 700;
  font-size: 0.7em;
}
@media screen and (min-width: 768px) {
  .fv-anchor .btn .txt {
    font-size: 1.125em;
  }
}
.fv-anchor .btn .txt > .subTxt {
  display: block;
  margin-top: -0.1em;
}
@media screen and (min-width: 768px) {
  .fv-anchor .btn .txt > .subTxt {
    display: inline;
  }
}
#shop-search {
  background-color: #fff;
}
.home .faqBox {
  width: 100%;
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .home .faqBox {
    width: 100%;
    max-width: 1000px;
    margin: 32px auto;
  }
}
.faqItem:nth-child(n + 2) {
  margin-top: 18px;
}
.faqItem .ttlBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #c9b8aa;
  padding: 0.8em 0.5em;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faqItem .ttlBox {
    padding: 1em;
  }
}
.faqItem .ttlBox .txt {
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .faqItem .ttlBox .txt {
    font-size: 1.125em;
  }
}
.faqItem .ttlBox::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 14px solid #857262;
  border-bottom: 0;
  margin-left: auto;
  transition: 0.3s all;
}
.faqItem .ttlBox.js-active::after {
  transform: rotate(-180deg);
  transition: 0.3s all;
}
.faqItem .iconBox {
  width: 35%;
}
@media screen and (min-width: 768px) {
  .faqItem .iconBox {
    width: 5%;
  }
}
.faqItem .leadBox {
  background: #fff;
  padding: 1em 1.2em;
}
@media screen and (min-width: 768px) {
  .faqItem .leadBox {
    padding: 2em;
  }
}
.aboutBox {
  width: 100%;
  margin: 2em auto;
}
@media screen and (min-width: 768px) {
  .aboutBox {
    width: 100%;
    max-width: 1000px;
  }
}
.aboutItem {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .aboutItem {
    flex-direction: row;
    align-items: flex-start;
  }
}
.aboutItem:nth-child(n + 2) {
  margin-top: 3em;
}
.aboutItem:nth-child(2n) {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .aboutItem:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.aboutItem .imgBox {
  width: 80%;
  flex: 0 1 auto;
}
.aboutItem .txtBox {
  width: 100%;
  flex: 0 1 auto;
}
.aboutItem .ttl {
  font-size: 1.313em;
  margin-bottom: 1.1em;
}
.aboutItem .txt {
  margin-bottom: 1em;
  line-height: 1.8;
}
#otodoke .ttl {
  font-family: "shippori-mincho-b1", serif;
  font-size: 1.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #otodoke .ttl {
    font-size: 1.8em;
  }
}
#otodoke .txtBox {
  margin-top: 2em;
  text-align: center;
}
#otodoke .txt {
  line-height: 1.8;
}
.pointBox {
  width: 100%;
  margin: 2em auto;
}
@media screen and (min-width: 768px) {
  .pointBox {
    width: 100%;
    max-width: 1000px;
  }
}
.pointList {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .pointList {
    gap: 24px;
    flex-direction: row;
  }
}
.pointItem {
  width: 100%;
  flex: 0 1 auto;
}
.pointItem > .imgBox {
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .pointItem > .imgBox {
    width: 90%;
  }
}
.pointItem .ttl {
  text-align: center;
  font-size: 1.125em;
  margin: 1.5em auto;
}
.pointItem .txt {
  line-height: 1.8;
}
#area-search-02 .headingBox > .ttl {
  text-align: center;
}
#area-search-02 .headingBox > .ttl .txt {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 600;
}
#contact,
#confirm {
  position: relative;
}
#contact > .inner,
#confirm > .inner {
  margin: 0 auto;
  padding: 80px 16px 40px;
}
@media screen and (min-width: 768px) {
  #contact > .inner,
  #confirm > .inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }
}
#contact > .inner > .ttlBox,
#confirm > .inner > .ttlBox {
  text-align: center;
}
#contact .leadBox,
#confirm .leadBox {
  margin: 32px auto;
  text-align: center;
}
#contact .formBox,
#confirm .formBox {
  margin: 2.5em auto;
}
#contact .contBox,
#confirm .contBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 1.313em 0;
  border-top: solid 1px #bfbfbf;
}
@media screen and (min-width: 768px) {
  #contact .contBox,
  #confirm .contBox {
    flex-direction: row;
  }
}
#contact .contBox:last-child,
#confirm .contBox:last-child {
  border-bottom: solid 1px #bfbfbf;
}
#contact .contBox > .ttl,
#confirm .contBox > .ttl {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contact .contBox > .ttl,
  #confirm .contBox > .ttl {
    width: 50%;
  }
}
#contact .contBox > .cont,
#confirm .contBox > .cont {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 100%;
}
#contact .contBox > .contList,
#confirm .contBox > .contList {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 100%;
}
#contact .contBox .contList > .cont:nth-of-type(n + 2),
#confirm .contBox .contList > .cont:nth-of-type(n + 2) {
  margin-top: 0.5em;
}
#contact .label.label__caution,
#confirm .label.label__caution {
  background: #333333;
  color: #fff;
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.8em;
  padding: 0.2em 0.8em;
  border-radius: 4px;
}
.ly_caution {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .ly_caution {
    width: 100%;
    max-width: 900px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 767px) {
  .ly_caution {
    width: 96%;
    margin: 2em auto;
  }
}
.bl_caution_ttl {
  font-size: clamp(14px, 1vw, 14px);
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 0.5em 0;
  position: relative;
}
.bl_caution_ttl::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #000333 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bl_caution_cont {
  margin-top: 1em;
}
.bl_cautionListItem {
  font-size: clamp(10px, 1vw, 12px);
}
.globalFooter .copyrights {
  text-align: center;
}
.bl_footer {
  background: #e8e8e8;
  padding: 2em;
  text-align: center;
}
.bl_footer small {
  font-size: clamp(12px, 1vw, 12px);
}
.archive-section > .inner {
  width: 100%;
  height: 100%;
  padding: 10vw 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-section > .inner {
    max-width: 1000px;
    padding: 84px 0;
  }
}
.archive-section .metaBox {
  flex-direction: row;
}
.shopinfo-section ul {
  list-style: none;
  padding: 0;
}
.shopinfo-section li {
  list-style: none;
}
.shopinfo-section ol {
  list-style: none;
  padding: 0;
}
.shopinfo-section > .inner {
  width: 100%;
  height: 100%;
  padding: 10vw 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .shopinfo-section > .inner {
    max-width: 1000px;
    padding: 84px 0;
  }
}
.shopinfo-section .metaBox {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .shopinfo-section .metaBox {
    align-items: center;
  }
}
.shop-ttl {
  font-size: 1.125em;
}
@media screen and (min-width: 768px) {
  .shop-ttl {
    font-size: 1.5em;
  }
}
.interiorImgBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 24px;
}
.interiorImgBox > .imgBox {
  width: 100%;
}
.interiorImgBox > .imgBox:nth-child(n + 2) {
  width: calc(100% / 4.1);
}
.interiorImgBox > .imgBox:nth-child(n + 2) img {
  height: 164px;
}
.interiorImgBox > .imgBox img {
  object-fit: cover;
  width: 100%;
}
.interiorImgBox.interiorImgBox__2col {
  flex-wrap: wrap;
  gap: 24px;
}
.interiorImgBox.interiorImgBox__2col > .imgBox {
  width: 48%;
}
.interiorImgBox.interiorImgBox__2col > .imgBox img {
  height: 272px;
}
.fieldBox {
  margin: 10vw auto;
}
@media screen and (min-width: 768px) {
  .fieldBox {
    margin: 5vw auto;
  }
}
.fieldTtl {
  font-size: 1.125em;
  margin: 1em 0 0.5em;
}
@media screen and (min-width: 768px) {
  .fieldTtl {
    font-size: 1.6em;
  }
}
.fieldTtl + .imgBox {
  width: 80%;
  margin: 3vw auto;
}
@media screen and (min-width: 768px) {
  .fieldTtl + .imgBox {
    width: 50%;
    min-width: 400px;
  }
}
.detailsTableBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .detailsTableBox {
    flex-direction: row;
  }
}
.detailsTableBox:nth-child(n + 2) {
  margin-top: 0.2em;
}
.detailsTableBox > .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 0.5em;
  background: #e5e5e5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .detailsTableBox > .ttl {
    width: 30%;
    padding: 1em;
    flex-direction: row;
  }
}
.detailsTableBox > .contBox {
  width: 100%;
  padding: 1em;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .detailsTableBox > .contBox {
    padding: 1.5em 2em;
  }
}
.detailsTableBox .cont {
  padding: 1.125em 0;
}
@media screen and (min-width: 768px) {
  .detailsTableBox .cont {
    padding: 1.313em 0;
  }
}
.detailsTableBox .cont:nth-child(n + 2) {
  border-top: dashed 1px #707070;
}
.detailsTableBox .cont iframe {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .detailsTableBox .cont iframe {
    height: 450px;
  }
}
.detailsTableBox .contTtl {
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .detailsTableBox .contTtl {
    font-size: 1em;
  }
}
.detailsTableBox .contTxt {
  line-height: 1.8;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .detailsTableBox .contTxt {
    font-size: 1em;
  }
}
figcaption.contTxt {
  font-size: 0.8em !important;
}
.shopPointList {
  width: 100%;
  margin: 2em auto;
}
.shopPointItem {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  border: solid 1px #707070;
  background: #fff;
  padding: 0.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shopPointItem {
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 2em;
  }
}
.shopPointItem:nth-child(n + 2) {
  margin-top: 1em;
}
.shopPointItem > .ttl {
  width: 20%;
  font-weight: bold;
  font-size: 1.125em;
  flex: 0 1 auto;
}
@media screen and (min-width: 768px) {
  .shopPointItem > .ttl {
    font-size: 1.313em;
  }
}
.shopPointItem > .txt {
  width: 100%;
  flex: 0 1 auto;
  font-size: 1.313em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .shopPointItem > .txt {
    font-size: 1.5em;
  }
}
.single .swiper-wrapper {
  max-height: 50vw;
}
.single .swiper-slide {
  overflow: hidden;
  cursor: pointer;
}
.single .swiper-slide > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.single .slider-thumbnail {
  margin-top: 1em;
}
.single .slider-thumbnail .swiper-slide {
  width: calc(100% / 5);
}
.single .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.single-section > .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 10vw 1em;
}
@media screen and (min-width: 768px) {
  .single-section > .inner {
    width: calc(100% - 280px);
    padding: 84px 0;
    flex-direction: row;
  }
}
.single-section .contentsBox {
  width: 100%;
  padding: 1em 1em 5em;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .single-section .contentsBox {
    padding: 48px 64px 96px;
  }
}
.single-section .headBox .ttlBox {
  margin-bottom: 2em;
}
.single-section .metaBox {
  flex-direction: row;
}
.articleBox,
.asideBox {
  width: 100%;
}
.articleBox h1,
.asideBox h1 {
  font-size: 1.4em;
}
@media screen and (min-width: 768px) {
  .articleBox h1,
  .asideBox h1 {
    font-size: 1.8em;
  }
}
.articleBox h2,
.asideBox h2 {
  margin: 3em 0 2em;
  font-size: 1.5em;
  position: relative;
}
.articleBox h2::before,
.asideBox h2::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.5em;
  background-color: #c57d86;
  border-radius: 12px;
  margin-right: 0.6em;
  vertical-align: middle;
}
.articleBox h3,
.asideBox h3 {
  margin: 3em 0 2em;
  font-size: 1.313em;
  position: relative;
}
.articleBox h3::before,
.asideBox h3::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.5em;
  background-color: #c57d86;
  border-radius: 12px;
  margin-right: 0.6em;
  vertical-align: middle;
}
.articleBox h4,
.asideBox h4 {
  margin: 3em 0 2em;
  font-size: 1.125em;
  position: relative;
}
.articleBox h4::before,
.asideBox h4::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.5em;
  background-color: #e2beba;
  border-radius: 12px;
  margin-right: 0.6em;
  vertical-align: middle;
}
.articleBox p,
.asideBox p {
  margin: 1.3em 0;
}
.articleBox figure,
.asideBox figure {
  margin: 1.3em 0;
}
.articleBox h2 {
  margin: 3em 0 1.3em;
}
.articleBox h3 {
  margin: 3em 0 1.3em;
}
.articleBox h4 {
  margin: 3em 0 1.3em;
}
.articleBox p {
  line-height: 1.8;
}
.asideBox {
  width: 100%;
  background-color: #fff;
  padding: 1.5em 1em 3em;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .asideBox {
    padding: 48px 64px 96px;
  }
}
.asideBox h2 {
  margin-top: 0;
}
.asideBox.asideBox__sidebar {
  width: 100%;
  padding: 0;
  margin-top: 0;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .asideBox.asideBox__sidebar {
    width: 100%;
    max-width: 280px;
  }
}
.sideBox {
  width: 100%;
  background-color: #fff;
  padding: 1.5em 1em 5em;
}
.sideBox:nth-child(n + 2) {
  margin-top: 0.875em;
}
.sideBox .ttlBox > h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 1.125em;
}
.sideBox .ttlBox > h3::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 1.5em;
  background-color: #c57d86;
  border-radius: 12px;
  margin-right: 0.6em;
  vertical-align: middle;
}
.sideBox .ttlBox .ttl__sub {
  margin-top: 0;
  margin-bottom: 0.2em;
}
.page ul {
  list-style: none;
  padding: 0;
}
.page li {
  list-style: none;
}
.page ol {
  list-style: none;
  padding: 0;
}
.lowerHeading__page + .imgBox {
  width: 90%;
  margin: 0 auto 4vw;
}
@media screen and (min-width: 768px) {
  .lowerHeading__page + .imgBox {
    max-width: 700px;
    width: 100%;
  }
}
.pageSection .ttlBox + .imgBox {
  width: 80%;
  margin: 2vw auto;
}
@media screen and (min-width: 768px) {
  .pageSection .ttlBox + .imgBox {
    max-width: 400px;
    width: 100%;
  }
}
.noteBox.noteBox__img {
  margin: 3vw auto;
  background-color: #f5efea;
  border: solid 1px #c9b8aa;
}
.noteBox.noteBox__img .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .noteBox.noteBox__img .inner {
    flex-direction: row;
  }
}
.noteBox.noteBox__img .txtBox {
  width: 100%;
  flex: 0 1 auto;
  padding: 1.5em;
}
@media screen and (min-width: 768px) {
  .noteBox.noteBox__img .txtBox {
    padding: 2em 2.5em;
  }
}
.noteBox.noteBox__img .txt {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .noteBox.noteBox__img .txt {
    font-size: 1.125em;
  }
}
.noteBox.noteBox__img .imgBox {
  width: 40%;
  position: relative;
  align-self: stretch;
  margin-top: 20vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .noteBox.noteBox__img .imgBox {
    width: 25%;
    margin-top: 0;
  }
}
.noteBox.noteBox__img .imgBox > img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.leadBox > .txt {
  margin-bottom: 1em;
  line-height: 1.8;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .leadBox > .txt {
    font-size: 1em;
  }
}
.leadBox > .ttl {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1em;
}
.nutsPointList {
  width: 100%;
  margin: 2em auto;
}
.nutsPointListItem {
  width: 100%;
  gap: 4px;
  border: solid 1px #707070;
  background: #fff;
  padding: 1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .nutsPointListItem {
    gap: 16px;
    padding: 2em;
  }
}
.nutsPointListItem:nth-child(n + 2) {
  margin-top: 1em;
}
.nutsPointListItem .ttlBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .nutsPointListItem .ttlBox {
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
}
.nutsPointListItem .ttl {
  width: 100%;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nutsPointListItem .ttl {
    font-size: 1.125em;
    text-align: left;
  }
}
.nutsPointListItem .txt {
  width: 100%;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .nutsPointListItem .txt {
    font-size: 1em;
  }
}
.recommendList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin: 2vw auto;
}
.recommendList .imgBox {
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recommendList .imgBox {
    width: 90%;
  }
}
.recommendList .txtBox {
  margin-top: 1em;
}
.recommendList .txtBox > .txt {
  line-height: 1.8;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .recommendList .txtBox > .txt {
    font-size: 1em;
  }
}
.flowListItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flowListItem:nth-child(n + 2) {
  margin-top: 1em;
}
.flowListItem > .imgBox {
  width: 20%;
  background-color: #c57d86;
  padding: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}
.flowListItem > .imgBox img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .flowListItem > .imgBox img {
    width: 50%;
  }
}
.flowListItem > .txtBox {
  width: 100%;
  background-color: #fff;
  padding: 1em;
  flex: 0 1 auto;
}
@media screen and (min-width: 768px) {
  .flowListItem > .txtBox {
    padding: 2em;
  }
}
.flowListItem > .txtBox .ttl {
  font-weight: 700;
  margin-bottom: 1em;
}
.flowListItem > .txtBox .txt {
  line-height: 1.8;
}
.reasonListBox {
  margin: 2vw auto;
}
.reasonList {
  padding-left: 1em;
}
.reasonListItem {
  position: relative;
  font-size: 1em;
  font-weight: 700;
  text-indent: -2em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .reasonListItem {
    font-size: 1.125em;
  }
}
.reasonListItem:nth-child(n + 2) {
  margin-top: 0.5em;
}
.reasonListItem::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/common/icon-arrow-list@2x.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.5em;
  vertical-align: middle;
}
.faqBox {
  margin: 2vw auto;
  width: 100%;
}
.faqListItem:nth-of-type(n + 2) {
  margin-top: 2em;
}
.faqListItem .ttlBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faqListItem .ttlBox {
    gap: 32px;
  }
}
.faqListItem .ttlBox .txtBox {
  width: 100%;
}
.faqListItem .ttlBox .txt {
  font-weight: 700;
}
.faqListItem .ttlBox.js-active .arrowBox::before {
  transform: rotate(-180deg);
  transition: 0.3s all;
}
.faqListItem .ttlBox.js-active .arrowBox::after {
  opacity: 0;
  transform: rotate(-90deg);
  transition: 0.3s all;
}
.faqListItem .iconBox {
  width: 40px;
  font-weight: 700;
  font-size: 2em;
  text-align: center;
}
.faqListItem .iconBox.iconBox__q {
  color: #c9b8aa;
}
.faqListItem .iconBox.iconBox__a {
  color: #c57d86;
}
.faqListItem .arrowBox {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: auto;
}
.faqListItem .arrowBox::before {
  display: block;
  content: "";
  width: 80%;
  height: 2px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  transition: 0.3s all;
}
.faqListItem .arrowBox::after {
  display: block;
  content: "";
  width: 80%;
  height: 2px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  transition: 0.3s all;
}
.faqListItem .txtBox {
  display: none;
}
.faqListItem .txtBox > .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em 1em;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .faqListItem .txtBox > .inner {
    gap: 32px;
  }
}
.faqListItem .contBox {
  width: 100%;
  flex: 0 1 auto;
}
.faqListItem .contBox > .txt {
  line-height: 1.8;
}
.faqListItem .contBox > .txt:nth-of-type(n + 2) {
  margin-top: 1em;
}
body.privacy-policy .txtBox > .ttlBox {
  margin: 2em 0 1em;
}
.privacyList {
  margin: 1em 0;
}
.privacyList > li {
  line-height: 1.8;
}
.privacyList > li:nth-of-type(n + 2) {
  margin-top: 1em;
}
.single .articleBox .bodyBox ul > li > ul {
  margin-left: 1em;
}
.single .articleBox .bodyBox mark {
  position: relative;
  z-index: 1;
}
.single .articleBox .bodyBox mark.has-inline-color {
  background: transparent;
}
.single .articleBox .bodyBox mark.has-inline-color::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 60%, inherit 60%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.single .articleBox .bodyBox .wp-block-quote {
  margin: 2em auto;
  background-color: #f5efea;
  padding: 1.5em 2em;
  box-shadow: 3px 3px 12px -6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .single .articleBox .bodyBox .wp-block-quote {
    padding: 1.5em;
  }
}
.single .articleBox .bodyBox .wp-block-quote::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background-image: url("../images/common/icon-quote.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  left: 24px;
  z-index: -1;
}
.single .articleBox .bodyBox .wp-block-quote::after {
  display: block;
  content: "";
  width: 106px;
  height: 106px;
  background-image: url("../images/common/icon-quote-l.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: -1;
}
.single .articleBox .bodyBox .wp-block-quote > p {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .single .articleBox .bodyBox .wp-block-quote > p {
    margin-left: 3em;
  }
}
.single .articleBox .bodyBox .wp-block-quote > cite {
  display: block;
  text-align: right;
  color: #9c9ca1;
  font-size: 0.75em;
}
.single .articleBox .bodyBox .is-nuts-borderblock {
  padding: 1.5em 2em;
  margin: 2em auto;
  background-color: #fffde8;
  border: solid 2px #c57d86;
  border-radius: 8px;
  line-height: 1.8;
}
.single .articleBox .bodyBox .is-nuts-borderblock > li:nth-of-type(n + 2) {
  margin-top: 0.5em;
}
.single .articleBox .bodyBox .wp-block-button .wp-block-button__link {
  background-color: #c57d86;
  position: relative;
}

/* ============================================
   口コミ・評判セクション
   ============================================ */
.reviewsSection {
  padding: 60px 0;
  background: linear-gradient(180deg, #faf8f6 0%, #fff5f5 100%);
}
.reviewsSection__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.reviewsSection__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #8b6f47;
  position: relative;
  padding-bottom: 20px;
}
.reviewsSection__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
  border-radius: 2px;
}
.reviewsSection__titleCount {
  color: #d4af37;
  font-weight: 700;
  margin-left: 8px;
}
.reviewsSection__empty {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.08);
}
.reviewsSection__emptyText {
  font-size: 18px;
  color: #a89080;
  font-weight: 500;
}
.reviewsSection__moreBtn {
  text-align: center;
  margin-top: 40px;
}

.reviewsList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviewItem {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.reviewItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
}
.reviewItem:hover {
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.15);
  transform: translateY(-2px);
}
.reviewItem--hidden {
  display: none;
}
.reviewItem__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}
.reviewItem__nameDate {
  flex: 1;
  min-width: 200px;
}
.reviewItem__name {
  font-size: 20px;
  font-weight: 700;
  color: #8b6f47;
  margin-bottom: 8px;
}
.reviewItem__date {
  font-size: 14px;
  color: #a89080;
}
.reviewItem__ratings {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.reviewItem__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #faf8f6 0%, #fff5f5 100%);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(139, 111, 71, 0.08);
}
.reviewItem .stars {
  display: flex;
  gap: 2px;
  font-size: 18px;
}
.reviewItem .stars .star--full {
  color: #d4af37;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}
.reviewItem .stars .star--half {
  background: linear-gradient(90deg, #d4af37 50%, #e8d5b7 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviewItem .stars .star--empty {
  color: #e8d5b7;
}
.reviewItem .ratingLabel {
  font-size: 12px;
  color: #8b6f47;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reviewItem .ratingValue {
  font-size: 16px;
  font-weight: 700;
  color: #d4af37;
  min-width: 30px;
}
.reviewItem__photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.reviewItem__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.reviewItem__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.reviewItem__photo:hover img {
  transform: scale(1.05);
}
.reviewItem__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.reviewItem__block {
  background: linear-gradient(135deg, #faf8f6 0%, #fff 100%);
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
}
.reviewItem__block--positive {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
  border-left-color: #86c690;
}
.reviewItem__block--improvement {
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border-left-color: #f59e0b;
}
.reviewItem__block--advice {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
  border-left-color: #6fa8dc;
}
.reviewItem__blockTitle {
  font-size: 16px;
  font-weight: 700;
  color: #8b6f47;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviewItem__blockTitle .blockIcon {
  font-size: 20px;
}
.reviewItem__text {
  font-size: 15px;
  line-height: 1.8;
  color: #5a4a3a;
}
.reviewItem__infoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  background: #faf8f6;
  padding: 25px;
  border-radius: 12px;
}
.reviewItem__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.reviewItem__infoLabel {
  font-size: 12px;
  color: #a89080;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reviewItem__infoValue {
  font-size: 15px;
  color: #5a4a3a;
  font-weight: 600;
}

.btn__showMore {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.btn__showMore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn__showMore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}
.btn__showMore:hover::before {
  left: 100%;
}
.btn__showMore:active {
  transform: translateY(0);
}
.btn__showMore--hide {
  display: none;
}

/* ライトボックス */
.reviewLightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.reviewLightbox.active {
  display: flex;
}
.reviewLightbox__content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}
.reviewLightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.reviewLightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.reviewLightbox__close:hover {
  transform: scale(1.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .reviewsSection {
    padding: 40px 0;
  }
  .reviewsSection__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .reviewItem {
    padding: 25px 20px;
  }
  .reviewItem__header {
    flex-direction: column;
    gap: 15px;
  }
  .reviewItem__ratings {
    gap: 15px;
    width: 100%;
  }
  .reviewItem__rating {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .reviewItem__photos {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  .reviewItem__infoGrid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .btn__showMore {
    width: 100%;
    padding: 16px 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .reviewsSection__title {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .reviewItem {
    padding: 20px 15px;
  }
  .reviewItem__name {
    font-size: 18px;
  }
  .reviewItem__blockTitle {
    font-size: 15px;
  }
  .reviewItem__text {
    font-size: 14px;
  }
  .reviewItem .stars {
    font-size: 16px;
  }
}

/* ============================================
   口コミ統計情報
   ============================================ */
.reviewStats {
  margin: 30px 0;
  padding: 0;
}

.reviewStats__container {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, #faf8f6 0%, #fff5f5 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.reviewStats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}

.reviewStats__divider {
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
  margin: 0 20px;
}

.reviewStats__label {
  font-size: 16px;
  font-weight: 700;
  color: #8b6f47;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewStats__sublabel {
  font-size: 12px;
  font-weight: 500;
  color: #a89080;
}

.reviewStats__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reviewStats__stars {
  display: flex;
  gap: 3px;
  font-size: 24px;
}

.reviewStats__stars .star--full {
  color: #d4af37;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.reviewStats__stars .star--half {
  background: linear-gradient(90deg, #d4af37 50%, #e8d5b7 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviewStats__stars .star--empty {
  color: #e8d5b7;
}

.reviewStats__value {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  min-width: 50px;
}

.reviewStats__count {
  font-size: 13px;
  color: #a89080;
  font-weight: 500;
}

.reviewStats__timeValue {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.reviewStats__hours {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.reviewStats__unit {
  font-size: 16px;
  font-weight: 600;
  color: #8b6f47;
}

/* 口コミなしの場合 */
.reviewStats__empty {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #faf8f6 0%, #fff 100%);
  border-radius: 16px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
}

.reviewStats__emptyIcon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.reviewStats__emptyText {
  font-size: 18px;
  font-weight: 700;
  color: #8b6f47;
  margin-bottom: 8px;
}

.reviewStats__emptySubtext {
  font-size: 14px;
  color: #a89080;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .reviewStats__container {
    flex-direction: column;
    padding: 25px 20px;
    gap: 20px;
  }

  .reviewStats__divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 0;
  }

  .reviewStats__item {
    padding: 10px 0;
  }

  .reviewStats__label {
    font-size: 15px;
  }

  .reviewStats__stars {
    font-size: 22px;
  }

  .reviewStats__value {
    font-size: 24px;
  }

  .reviewStats__hours {
    font-size: 32px;
  }

  .reviewStats__unit {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .reviewStats {
    margin: 20px 0;
  }

  .reviewStats__container {
    padding: 20px 15px;
  }

  .reviewStats__label {
    font-size: 14px;
  }

  .reviewStats__stars {
    font-size: 20px;
    gap: 2px;
  }

  .reviewStats__value {
    font-size: 22px;
  }

  .reviewStats__emptyIcon {
    font-size: 40px;
  }

  .reviewStats__emptyText {
    font-size: 16px;
  }

  .reviewStats__emptySubtext {
    font-size: 13px;
  }

  .reviewStats__hours {
    font-size: 28px;
  }

  .reviewStats__unit {
    font-size: 14px;
  }
}

/* ============================================
   ピックアップ外の全国求人情報セクション
   ============================================ */
.allJobsSection {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f6 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

.allJobsSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.allJobsSection__header {
  text-align: center;
  position: relative;
}

.allJobsSection__title {
  font-size: 32px;
  font-weight: 700;
  color: #8b6f47;
  margin: 0;
  padding: 30px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.allJobsSection__title::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.allJobsSection__title:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.2);
}

.allJobsSection__title:hover::before {
  opacity: 1;
}

.allJobsSection__title::after {
  content: "🔍";
  margin-left: 12px;
  font-size: 28px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .allJobsSection {
    padding: 60px 0;
  }

  .allJobsSection__title {
    font-size: 24px;
    padding: 25px 30px;
  }

  .allJobsSection__title::after {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .allJobsSection {
    padding: 40px 0;
  }

  .allJobsSection__title {
    font-size: 18px;
    padding: 20px 25px;
    border-radius: 12px;
  }

  .allJobsSection__title::after {
    font-size: 18px;
    margin-left: 8px;
  }
}

/* ========================================
   日本地図CSS Gridスタイル（Jmap v0.0.1準拠）
   ======================================== */
.japanMapContainer {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(180deg, #faf8f6 0%, #fff5f5 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.1);
}

.japanMapContainer__title {
  font-size: 24px;
  font-weight: 700;
  color: #8b6f47;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.japanMapGrid__wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.japanMapGrid {
  display: grid;
  grid-template-rows: repeat(22, 1fr);
  grid-template-columns: repeat(54, 1fr);
  width: 100%;
  height: 500px;
  gap: 1px;
  position: relative;
}

.japanMapGrid__license {
  text-align: right;
  padding: 8px 0;
  margin-top: 8px;
}

.japanMapGrid__license small {
  font-size: 10px;
  color: #999;
  line-height: 1.4;
  display: inline-block;
}

.japanMapGrid__pref {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4e4c1 0%, #faf8f6 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.japanMapGrid__pref:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  transform: scale(1.05);
  box-shadow: 0 0 0 2px #d4af37, 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 100 !important;
}

.japanMapGrid__prefName {
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 700;
  color: #8b6f47;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  z-index: 1;
}

.japanMapGrid__pref:hover .japanMapGrid__prefName {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .japanMapGrid {
    height: 400px;
  }

  .japanMapGrid__prefName {
    font-size: clamp(9px, 1.1vw, 14px);
  }
}

@media (max-width: 768px) {
  .japanMapContainer {
    padding: 30px 20px;
    margin: 40px 0;
  }

  .japanMapContainer__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .japanMapGrid {
    height: 350px;
  }

  .japanMapGrid__prefName {
    font-size: clamp(8px, 1vw, 12px);
  }

  .japanMapGrid__license small {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .japanMapContainer {
    padding: 20px 15px;
    margin: 30px 0;
  }

  .japanMapContainer__title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .japanMapGrid {
    height: 300px;
    gap: 0.5px;
  }

  .japanMapGrid__prefName {
    font-size: clamp(7px, 0.9vw, 11px);
  }

  .japanMapGrid__pref {
    border-width: 0.5px;
  }

  .japanMapGrid__license {
    padding: 6px 0;
    margin-top: 6px;
  }

  .japanMapGrid__license small {
    font-size: 8px;
  }
}

/* ========================================
   都道府県リストスタイル（全地方展開）
   ======================================== */
.prefectureList {
  margin: 40px 0;
}

.region__item {
  background: #ffffff;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.08);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.region__header {
  padding: 20px 30px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.region__title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.region__content {
  padding: 30px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.prefecture__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.prefecture__list li {
  margin: 0;
}

.prefecture__list a {
  display: block;
  padding: 12px 20px;
  background: #ffffff;
  color: #8b6f47;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.05);
}

.prefecture__list a:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border-color: transparent;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .prefectureList {
    margin: 30px 0;
  }

  .region__header {
    padding: 16px 20px;
  }

  .region__title {
    font-size: 18px;
  }

  .region__content {
    padding: 20px;
  }

  .prefecture__list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .prefecture__list a {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .prefectureList {
    margin: 20px 0;
  }

  .region__header {
    padding: 14px 16px;
  }

  .region__title {
    font-size: 16px;
  }

  .region__content {
    padding: 16px;
  }

  .prefecture__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .prefecture__list a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ========================================
   日本地図モーダルスタイル
   ======================================== */
.japanMapModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.japanMapModal.active {
  display: block;
  opacity: 1;
}

.japanMapModal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.japanMapModal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.japanMapModal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.japanMapModal__close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.japanMapModal__scrollWrapper {
  width: 100%;
  height: calc(100% - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.japanMapModal__content {
  width: max-content;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.japanMapModal__content .japanMapGrid__wrapper {
  max-width: none;
}

.japanMapGrid--modal {
  width: 200vw;
  height: 150vh;
  max-width: none;
  margin: 0;
}

/* モーダル内のライセンス表記 */
.japanMapModal__content .japanMapGrid__license {
  padding: 12px 0;
  margin-top: 12px;
}

.japanMapModal__content .japanMapGrid__license small {
  font-size: 12px;
}

.japanMapModal__closeBottom {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  letter-spacing: 0.05em;
}

.japanMapModal__closeBottom:hover {
  background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 100%);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.japanMapModal__hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.9);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: hintPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hintPulse {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

/* モーダル内の地図はクリック時にリンクとして機能 */
.japanMapGrid--modal .japanMapGrid__pref {
  cursor: pointer;
  pointer-events: all;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .japanMapModal__close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .japanMapModal__closeBottom {
    bottom: 65px;
    padding: 12px 32px;
    font-size: 14px;
  }

  .japanMapGrid--modal {
    width: 250vw;
    height: 180vh;
  }

  .japanMapModal__hint {
    bottom: 20px;
    font-size: 12px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .japanMapModal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .japanMapModal__closeBottom {
    bottom: 55px;
    padding: 10px 28px;
    font-size: 13px;
  }

  .japanMapGrid--modal {
    width: 300vw;
    height: 200vh;
  }

  .japanMapModal__content {
    padding: 20px;
  }
}

/* ========================================
   ピックアップ外店舗（unpick_shop）
======================================== */
.unpickShop-section {
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.unpickShop-section > .inner {
  width: 100%;
  height: 100%;
  padding: 10vw 1em;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .unpickShop-section > .inner {
    max-width: 1000px;
    padding: 84px 0;
  }
}

.unpickShop__title {
  font-size: 1.125em;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d4af37;
}

@media screen and (min-width: 768px) {
  .unpickShop__title {
    font-size: 1.5em;
  }
}

.unpickShop__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.unpickShop__location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.unpickShop__prefecture,
.unpickShop__area {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 193, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
}

.unpickShop__category {
  display: flex;
  gap: 8px;
}

.unpickShop__sectionTitle {
  font-size: 1.125em;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid #d4af37;
}

@media screen and (min-width: 768px) {
  .unpickShop__sectionTitle {
    font-size: 1.25em;
  }
}

.unpickShop__basicInfo,
.unpickShop__salaryInfo {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

@media screen and (min-width: 768px) {
  .unpickShop__basicInfo,
  .unpickShop__salaryInfo {
    padding: 30px;
  }
}

.unpickShop__infoList {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.unpickShop__infoItem {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

@media screen and (min-width: 768px) {
  .unpickShop__infoItem {
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 14px 0;
  }
}

.unpickShop__infoItem:last-child {
  border-bottom: none;
}

.unpickShop__infoLabel {
  font-weight: 700;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.unpickShop__infoLabel span[class^="icon-"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.unpickShop__infoData {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.unpickShop__infoData a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.unpickShop__infoData a:hover {
  color: #b8941f;
  text-decoration: underline;
}

.unpickShop__content {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

@media screen and (min-width: 768px) {
  .unpickShop__content {
    padding: 30px;
  }
}

.unpickShop__contentBody {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.unpickShop__contentBody p {
  margin-bottom: 1em;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .unpickShop__infoItem {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .unpickShop__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .unpickShop__prefecture,
  .unpickShop__area {
    padding: 6px 14px;
    font-size: 13px;
  }

  .unpickShop__infoLabel,
  .unpickShop__infoData {
    font-size: 14px;
  }
}

/* ========================================
   ピックアップ外地域ページ（unpick_area）
======================================== */
.unpickArea__intro {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 228, 193, 0.05) 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

@media screen and (min-width: 768px) {
  .unpickArea__intro {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
}

.unpickArea__count {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .unpickArea__count {
    font-size: 18px;
  }
}

.unpickArea__count strong {
  color: #d4af37;
  font-weight: 700;
}

.unpickArea__countNumber {
  font-size: 1.5em;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.2em;
}

/* ========================================
   ピックアップ外都道府県ページ（unpick_prefecture）地域リスト
======================================== */
.unpickPrefecture__areaList {
  margin-bottom: 50px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(244, 228, 193, 0.03) 100%);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@media screen and (min-width: 768px) {
  .unpickPrefecture__areaList {
    padding: 40px 30px;
    margin-bottom: 70px;
  }
}

.unpickPrefecture__areaListTitle {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .unpickPrefecture__areaListTitle {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}

.unpickPrefecture__areaItems {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media screen and (min-width: 480px) {
  .unpickPrefecture__areaItems {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media screen and (min-width: 768px) {
  .unpickPrefecture__areaItems {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.unpickPrefecture__areaItem {
  margin: 0;
  padding: 0;
}

.unpickPrefecture__areaLink {
  display: block;
  padding: 12px 16px;
  text-align: center;
  background: #fff;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .unpickPrefecture__areaLink {
    padding: 15px 20px;
    min-height: 60px;
  }
}

.unpickPrefecture__areaLink:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 193, 0.1) 100%);
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.unpickPrefecture__areaName {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: block;
}

@media screen and (min-width: 768px) {
  .unpickPrefecture__areaName {
    font-size: 16px;
  }
}

.unpickPrefecture__areaLink:hover .unpickPrefecture__areaName {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   ピックアップ外エリア一覧（フロントページ）
======================================== */
.unpickAreaListSection {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .unpickAreaListSection {
    padding: 80px 0;
  }
}

.unpickAreaListSection .headingBox {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .unpickAreaListSection .headingBox {
    margin-bottom: 60px;
  }
}

.unpickAreaListSection .ttl {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .unpickAreaListSection .ttl {
    font-size: 32px;
  }
}

.unpickAreaList {
  max-width: 1000px;
  margin: 0 auto;
}

.unpickAreaList__prefecture {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

@media screen and (min-width: 768px) {
  .unpickAreaList__prefecture {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}

.unpickAreaList__prefecture:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.unpickAreaList__prefectureTitle {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 193, 0.1) 100%);
  border-left: 4px solid #d4af37;
}

@media screen and (min-width: 768px) {
  .unpickAreaList__prefectureTitle {
    font-size: 22px;
    margin-bottom: 25px;
    padding: 10px 20px;
  }
}

.unpickAreaList__areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .unpickAreaList__areas {
    gap: 10px;
  }
}

.unpickAreaList__areaItem {
  margin: 0;
  padding: 0;
}

.unpickAreaList__areaLink {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  color: #8b6f47;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 768px) {
  .unpickAreaList__areaLink {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.unpickAreaList__areaLink:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 100%);
  color: #6b5437;
}

.unpickAreaList__areaName {
  margin-right: 4px;
}

.unpickAreaList__areaCount {
  font-size: 0.9em;
  opacity: 0.9;
}

/*# sourceMappingURL=style.css.map */
