@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture {
  max-width: 100%;
  vertical-align: bottom;
}

input, button,
textarea, select {
  font: inherit;
  appearance: none;
}

textarea:not([rows]) {
  min-height: 10em;
}

:root {
  --color00: #5B4337;
  --color01: #F0EBE2;
  --color02: #EA818B;
  --color03: #DB4D4D;
  --color04: #C94726;
  --color05: #D8CABB;
  --color06: #F8F7F4;
  --color07: #B5936C;
  --color08: #EF6969;
  --color09: #F8F5E9;
  --color10: #6ECA32;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}
@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color00);
  font-size: 1rem;
}
@media (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
}

a[target=_blank]:not([class*=icon]) {
  display: inline-block;
  position: relative;
  padding-right: 1.375rem;
}
@media (max-width: 767px) {
  a[target=_blank]:not([class*=icon]) {
    padding-right: 1.125rem;
  }
}
a[target=_blank]:not([class*=icon])::after {
  background: url("../images/icon_blank.svg") no-repeat;
  background-size: 100% auto;
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  right: 0;
  top: 0.3125rem;
}
@media (max-width: 767px) {
  a[target=_blank]:not([class*=icon])::after {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.l-main {
  background-color: var(--color01);
  padding-bottom: 10rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .l-main {
    padding-bottom: 5rem;
  }
}
.l-main-secondary {
  overflow-x: hidden;
  padding: 6.25rem 1.25rem 10rem;
  background-color: var(--color01);
}
@media (max-width: 767px) {
  .l-main-secondary {
    padding: 3.75rem 1.25rem 5rem;
  }
}

.l-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.l-btn-spmenu {
  display: none;
  outline: none;
  border: none;
  padding: 0;
  position: absolute;
  background: none;
  width: 1.625rem;
  height: 1.125rem;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
.l-btn-spmenu.open span {
  background-color: transparent;
}
.l-btn-spmenu.open span::before {
  top: 0;
  transform: rotate(225deg);
}
.l-btn-spmenu.open span::after {
  bottom: 0;
  transform: rotate(-225deg);
}
.l-btn-spmenu span,
.l-btn-spmenu span::before,
.l-btn-spmenu span::after {
  position: absolute;
  content: "";
  display: block;
  width: 1.625rem;
  height: 2px;
  border-radius: 0.25rem;
  background-color: #DB4D4D;
  transition: 0.3s ease;
  margin: auto;
  left: 0;
  right: 0;
}
.l-btn-spmenu span {
  top: 50%;
}
.l-btn-spmenu span::before {
  top: -0.5rem;
}
.l-btn-spmenu span::after {
  bottom: -0.5rem;
}
@media (max-width: 767px) {
  .l-btn-spmenu {
    display: block;
  }
}

.l-header {
  position: fixed;
  top: 2.5rem;
  z-index: 100;
  width: 100%;
  padding: 0 1.25rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .l-header.scrolled, body.secondary .l-header {
    top: 0;
    padding: 0;
    border-radius: 0 0 3.75rem 3.75rem;
    background-color: #fff;
  }
  .l-header.scrolled .l-header-inner, body.secondary .l-header .l-header-inner {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
  .l-header.scrolled .l-header-ttlsns, body.secondary .l-header .l-header-ttlsns {
    display: none;
  }
  .l-header.scrolled .l-nav a, body.secondary .l-header .l-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .l-header {
    top: 0;
    padding: 0;
  }
}
.l-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 3.75rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .l-header-inner {
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 0.625rem 1.25rem;
    justify-content: center;
    position: relative;
  }
}
.l-header-logo a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: #5B4337;
}
@media (max-width: 767px) {
  .l-header-logo a {
    font-size: 1rem;
  }
}
.l-header-logo a span {
  flex: 1;
  white-space: nowrap;
}
.l-header-logo img {
  width: 3.75rem;
}
@media (max-width: 767px) {
  .l-header-logo img {
    width: 2.5rem;
  }
}
@media (max-width: 767px) {
  .l-header-logo {
    text-align: center;
  }
}
.l-header-spwrap {
  width: calc(100% - 14vw);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .l-header-spwrap {
    display: block;
    visibility: hidden;
    opacity: 0;
    background-color: #5B4337;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100lvh;
    padding: 15vh 1.25rem 0 1.25rem;
    z-index: -1;
    transition: 0.3s ease;
    overflow-y: auto;
  }
}
.l-header-address {
  display: none;
}
@media (max-width: 767px) {
  .l-header-address {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
    margin-top: 5vh;
  }
  .l-header-address address {
    font-style: normal;
    display: block;
  }
}
.l-header-address a {
  color: #fff;
  text-decoration: none;
}
.l-header-copyright {
  margin-top: 1.25rem;
  text-align: center;
  color: #B5936C;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
}
.l-header-sns {
  display: flex;
  gap: 1.125rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-header-sns {
    gap: 1rem;
  }
}
.l-header-r {
  text-align: center;
}
@media (max-width: 767px) {
  .l-header-r {
    margin-left: 0;
  }
}
.l-header-ttlsns {
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0.625rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .l-header-ttlsns {
    display: none;
  }
}
.l-header-ttlsns span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.l-header-ttlsns span::before, .l-header-ttlsns span::after {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  border-radius: 0.125rem;
  background-color: #DBBA77;
}
.l-header nav {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .l-header nav {
    border-radius: 1.25rem;
    background-color: #F8F7F4;
    padding: 2.25rem 2.5rem;
    margin-bottom: 1.875rem;
  }
}

.l-nav {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .l-nav {
    display: block;
  }
}
@media (max-width: 767px) {
  .l-nav li:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--color05);
  }
}
.l-nav a {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #5B4337;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .l-nav a {
    font-size: 1rem;
  }
}
.l-nav a span {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: var(--color03);
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .l-nav a span {
    font-size: 0.6875rem;
  }
}
@media (any-hover: hover) {
  .l-nav a:hover {
    color: var(--color03);
  }
}

.open_menu .l-header-spwrap {
  visibility: visible;
  opacity: 1;
}

.l-header-secondary {
  background-color: #F8F7F4;
  padding: 6.875rem 1.25rem 3.75rem 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-header-secondary {
    padding: 5.625rem 1.25rem 1.5rem 1.25rem;
  }
}
.l-header-secondary::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  background: url("../images/bg_wave02.svg") repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 1rem;
}
.l-header-secondary__ttl {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .l-header-secondary__ttl {
    font-size: 1.75rem;
  }
}
.l-header-secondary__ttl span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .l-header-secondary__ttl span {
    font-size: 1.375rem;
  }
}
.l-header-secondary__subtxt {
  font-size: 1.125rem;
  color: var(--color02);
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-header-secondary__subtxt {
    font-size: 0.8125rem;
  }
}

.l-bread {
  margin-bottom: 3rem;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .l-bread {
    margin-bottom: 1.5rem;
    margin-right: -1.25rem;
    font-size: 0.75rem;
    overflow-x: auto;
  }
}
.l-bread li:not(:last-child) {
  background: url("../images/icon_arrow03.svg") no-repeat right center;
  background-size: 0.3125rem auto;
  padding-right: 0.9375rem;
  margin-right: 0.625rem;
}
.l-bread a {
  color: #BEB39D;
}

.l-footer {
  background-color: var(--color00);
  color: #fff;
  padding: 3.125rem 1.25rem 0.9375rem 1.25rem;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 3rem 1.25rem 0.9375rem 1.25rem;
  }
}
.l-footer a {
  color: #fff;
  text-decoration: none;
}
.l-footer-inner {
  max-width: 1200px;
  margin: 0 auto 3.125rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer-inner {
    margin-bottom: 4.25rem;
    display: block;
  }
}
.l-footer-inner__l {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 2.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .l-footer-inner__l {
    display: block;
  }
}
.l-footer-inner__l address {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-footer-inner__l address {
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }
}
.l-footer-inner__l address a {
  color: #fff;
  text-decoration: none;
}
.l-footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
}
.l-footer-logo img {
  width: 11.25rem;
}
@media (max-width: 767px) {
  .l-footer-logo {
    text-align: center;
    margin-bottom: 1.25rem;
  }
}
.l-footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color07);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .l-footer-copyright {
    font-size: 0.5625rem;
    letter-spacing: 0.05em;
  }
}
.l-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  font-weight: 700;
  flex-wrap: wrap;
  gap: 0.9375rem 1.875rem;
}
@media (max-width: 767px) {
  .l-footer-nav {
    padding: 0 1.25rem;
  }
}
.l-footer-nav a {
  transition: 0.3s ease;
}
.l-footer-nav a:hover {
  opacity: 0.5;
}
.l-footer-sns {
  flex: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-footer-sns {
    justify-content: center;
    margin-bottom: 2.5rem;
  }
}

.l-pagetop {
  display: block;
  position: fixed;
  z-index: 99;
  width: 3.4375rem;
  height: 3.4375rem;
  background: var(--color00) url("../images/icon_arrow01.svg") no-repeat center;
  background-size: 20% auto;
  transform: rotate(-90deg);
  border-radius: 50%;
  bottom: 1.25rem;
  right: 5%;
  transition: 0.3s ease;
  opacity: 0;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .l-pagetop {
    width: 2.5rem;
    height: 2.5rem;
    right: 0.9375rem;
    bottom: 2.5rem;
  }
}
.l-pagetop:hover {
  transform: scale(1.1) rotate(-90deg);
  background-color: var(--color08);
}
.l-pagetop.show {
  opacity: 1;
}

.p-mv {
  position: relative;
  overflow: hidden;
  background: var(--color01);
  border-bottom-left-radius: 62.5rem 12.5rem;
  border-bottom-right-radius: 62.5rem 12.5rem;
  margin-left: -6.25rem;
  margin-right: -6.25rem;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
@media (max-width: 767px) {
  .p-mv {
    border-bottom-left-radius: 31.25rem 25rem;
    border-bottom-right-radius: 31.25rem 25rem;
    margin-bottom: 1.5rem;
  }
}
.p-mv-img {
  text-align: center;
}
.p-mv-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-mv-img img {
    height: 90vh;
    object-fit: cover;
  }
}
.p-mv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.p-mv-ttl {
  font-weight: 700;
  font-size: unset;
  line-height: 1.5;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5), 0 0 0.625rem rgba(0, 0, 0, 0.5), 0 0 0.625rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .p-mv-ttl {
    font-size: 1.125rem;
  }
}
.p-mv-ttl span {
  font-size: 2rem;
}

.p-topabout {
  padding: 6.25rem 1.25rem 8.125rem;
}
@media (max-width: 767px) {
  .p-topabout {
    padding: 0 1.25rem 5rem 1.25rem;
  }
}
.p-topabout-inner {
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}
.p-topabout-box {
  padding-bottom: 5rem;
  border-radius: 1.25rem;
  background-color: var(--color06);
}
@media (max-width: 767px) {
  .p-topabout-box {
    border-radius: 0.625rem;
    padding: 0 1.25rem 4rem 1.25rem;
  }
}
.p-topabout-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 767px) {
  .p-topabout-ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-topabout-btn {
  margin-top: -1.875rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-topabout-imgs {
    display: flex;
    margin: 0 -1.25rem 4.375rem -1.25rem;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-topabout-imgs img {
  border-radius: 0.9375rem;
}
@media (max-width: 767px) {
  .p-topabout-imgs img {
    border-radius: 0.625rem;
  }
}
.p-topabout-imgs > div {
  position: absolute;
}
@media (max-width: 767px) {
  .p-topabout-imgs > div {
    position: static;
  }
}
.p-topabout-img01 {
  width: 17.5rem;
  top: -1.25rem;
  left: -6.5625rem;
}
@media (max-width: 767px) {
  .p-topabout-img01 {
    width: 8.125rem;
  }
}
@media (max-width: 767px) {
  .p-topabout-img01 img {
    border-radius: 0 0.9375rem 0.9375rem 0;
  }
}
.p-topabout-img02 {
  width: 12.5rem;
  top: 15rem;
  left: 2.5rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-topabout-img02 {
    width: 5.875rem;
    margin: 0 0 -1.25rem -2.5rem;
  }
}
.p-topabout-img03 {
  width: 20rem;
  top: 4.8125rem;
  right: -6.5625rem;
}
@media (max-width: 767px) {
  .p-topabout-img03 {
    width: 9.375rem;
  }
}
@media (max-width: 767px) {
  .p-topabout-img03 img {
    border-radius: 0.9375rem 0 0 0.9375rem;
  }
}
.p-topabout .u-icon-balloon {
  margin-bottom: 1.25rem;
  top: -1.25rem;
}
@media (max-width: 767px) {
  .p-topabout .u-icon-balloon {
    top: -1rem;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.p-topabout p {
  line-height: 2;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1em;
}
.p-topabout p:last-child {
  margin-bottom: 0;
}

.p-section-newsevent {
  padding: 6.25rem 1.25rem;
  background-color: var(--color06);
  position: relative;
}
@media (max-width: 767px) {
  .p-section-newsevent {
    padding: 4rem 1.25rem;
  }
}
.p-section-newsevent::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  background: url("../images/bg_wave01.svg") repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 1rem;
}
.p-section-newsevent::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  background: url("../images/bg_wave02.svg") repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 1rem;
}

.p-newsevent {
  display: grid;
  grid-template-columns: auto calc(100% - 15rem);
}
@media (max-width: 767px) {
  .p-newsevent {
    display: block;
  }
}
.p-newsevent-head {
  margin-bottom: 2.5rem;
}
.p-newsevent-contents {
  grid-row: span 3;
  margin-left: 4.75rem;
}
@media (max-width: 767px) {
  .p-newsevent-contents {
    margin-left: -1.25rem;
  }
}
.p-newsevent-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.p-section-shops {
  padding: 7.5rem 1.25rem 10rem;
}
@media (max-width: 767px) {
  .p-section-shops {
    padding: 4rem 1.25rem 5rem;
  }
}

.p-shops {
  display: grid;
  grid-template-columns: auto 1fr;
}
@media (max-width: 767px) {
  .p-shops {
    display: block;
  }
}
.p-shops-head {
  margin-bottom: 2.5rem;
}
.p-shops-contents {
  grid-row: span 3;
  margin-left: 4.75rem;
}
@media (max-width: 767px) {
  .p-shops-contents {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .p-shops-btn {
    text-align: center;
    margin-top: 3rem;
  }
}

.p-section-access {
  padding: 4.0625rem 1.25rem 0 1.25rem;
}
@media (max-width: 767px) {
  .p-section-access {
    padding: 2.25rem 1.25rem 0 1.25rem;
  }
}

.p-access {
  background-color: #fff;
  padding: 0 3.125rem 3.125rem;
  border-radius: 2.5rem;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-access {
    padding: 0 1.25rem 3.5rem;
    border-radius: 1.25rem;
  }
}
.p-access > * {
  z-index: 2;
  position: relative;
}
.p-access::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  top: -4.0625rem;
}
@media (max-width: 767px) {
  .p-access::before {
    width: 100%;
    top: -2.25rem;
  }
}
.p-access-head {
  margin-top: -1em;
  display: inline-block;
}
@media (max-width: 767px) {
  .p-access-head {
    margin-top: 0;
  }
}
.p-access-frame {
  border: 3px solid var(--color02);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-access-frame {
    margin-bottom: 1.5rem;
  }
}
.p-access-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 55/28;
}
@media (max-width: 767px) {
  .p-access-frame iframe {
    aspect-ratio: 59/64;
  }
}
.p-access-map {
  font-weight: 500;
}
.p-access-map p:not(:last-child) {
  margin-bottom: 0.5em;
}

.js-splide-news .splide__arrows {
  margin-top: 2.5rem;
  display: flex;
  justify-content: end;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .js-splide-news .splide__arrows {
    display: none;
  }
}
.js-splide-news .splide__arrows button {
  width: 1.875rem;
  height: 2.5rem;
  background: url("../images/icon_arrow02.svg") no-repeat center;
  background-size: 50% auto;
}
.js-splide-news .splide__arrows button.splide__arrow--prev {
  transform: scale(-1, 1);
}
.js-splide-news .splide__arrows button svg {
  display: none;
}
.js-splide-news .splide__arrow {
  position: static;
  transform: none;
  background: none;
  width: auto;
  height: auto;
}
.js-splide-news .splide__arrow svg {
  fill: var(--color03);
  width: 1.5rem;
  height: 1.5rem;
}
.js-splide-news .splide__track {
  margin-right: -50vw;
}
@media (max-width: 767px) {
  .js-splide-news .splide__track {
    padding-left: 1.25rem !important;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .js-splide-news .splide__track:has(ul > :nth-child(2)) {
    margin-right: -1.25rem;
  }
}

.p-newsWrap {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-newsWrap {
    display: block;
  }
}
.p-newsWrap-contents {
  flex: 1;
}
.p-newsWrap-aside {
  flex: 0 1 21.25rem;
  background-color: var(--color06);
  border-radius: 1.25rem;
  padding: 3.125rem;
}
@media (max-width: 767px) {
  .p-newsWrap-aside {
    margin-top: 5rem;
  }
}
.p-newsWrap-aside__ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}
.p-newsWrap-aside__ttl span {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: var(--color03);
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.1em;
}

.p-newsDetail {
  border-radius: 1.25rem;
  background-color: var(--color06);
  padding: 3.75rem 4.5rem;
}
@media (max-width: 767px) {
  .p-newsDetail {
    padding: 2rem 1.5rem;
  }
}
.p-newsDetail-head {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .p-newsDetail-head {
    gap: 0.5rem;
  }
}
.p-newsDetail-date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--color07);
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-newsDetail-date.event {
  color: var(--color03);
}
.p-newsDetail-date.information {
  color: var(--color10);
}
@media (max-width: 767px) {
  .p-newsDetail-date {
    font-size: 0.75rem;
  }
}
.p-newsDetail-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  border-bottom: 1px dashed var(--color05);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-newsDetail-ttl {
    font-size: 1.25rem;
  }
}
.p-newsDetail-body {
  margin-bottom: 5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-newsDetail-body {
    margin-bottom: 2rem;
  }
}
.p-newsDetail-body img {
  border-radius: 0.625rem;
  height: auto;
}
.p-newsDetail-body a {
  color: #BEB39D;
}
.p-newsDetail-body p {
  margin-bottom: 2.25rem;
}
@media (max-width: 767px) {
  .p-newsDetail-body p {
    margin-bottom: 1.5rem;
  }
}
.p-newsDetail-body ul li {
  position: relative;
  padding-left: 1rem;
}
.p-newsDetail-body ul li:not(:last-child) {
  margin-bottom: 0.75rem;
}
.p-newsDetail-body ul li::before {
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: var(--color02);
  top: 0.75rem;
  left: 0;
}
.p-newsDetail-body iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.p-newsDetail .wp-block,
.p-newsDetail .wp-block-image,
.p-newsDetail .wp-block-embed {
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-newsDetail .wp-block,
  .p-newsDetail .wp-block-image,
  .p-newsDetail .wp-block-embed {
    margin-bottom: 2rem;
  }
}
.p-newsDetail .wp-block-colmun {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .p-newsDetail .wp-block-colmun {
    flex-direction: column;
  }
}
.p-newsDetail .wp-block-colmun > div {
  flex: 0 1 calc(50% - 0.625rem);
}
@media (max-width: 767px) {
  .p-newsDetail .wp-block-colmun > div {
    flex: 100%;
  }
}
.p-newsDetail .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.p-newsDetail-footer {
  text-align: center;
}

.p-article {
  display: flex;
  padding: 2.5rem;
  background-color: var(--color06);
  border-radius: 1.25rem;
  color: unset;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 1.25rem;
  gap: 2.25rem;
}
.p-article:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-article {
    padding: 0.9375rem;
    gap: 1rem;
  }
  .p-article .u-icon-category {
    font-size: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-article:hover {
    background-color: var(--color09);
  }
  .p-article:hover .p-article-thumb img {
    transform: scale(1.1);
  }
}
.p-article-thumb {
  flex: 0 1 32%;
  border-radius: 0.625rem;
  background-color: var(--color01);
  text-align: center;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .p-article-thumb {
    flex: 0 1 8.125rem;
  }
}
.p-article-thumb img {
  object-fit: cover;
  height: 100%;
  transition: 0.3s ease;
}
.p-article-thumb.no_image {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.p-article-txt {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.8;
}
.p-article-head {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-article-head {
    margin-bottom: 0.25rem;
  }
}
.p-article-date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--color07);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-article-date.event {
  color: var(--color03);
}
.p-article-date.information {
  color: var(--color10);
}
@media (max-width: 767px) {
  .p-article-date {
    font-size: 0.75rem;
  }
}
.p-article-ttl {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-article-ttl {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
  .p-article-ttl + p {
    display: none;
  }
}

.p-shopDetail {
  display: flex;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background-color: var(--color06);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.p-shopDetail:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-shopDetail {
    display: block;
    padding: 1.25rem;
  }
}
.p-shopDetail-img {
  flex: 0 1 36%;
}
.p-shopDetail-thumb {
  border-radius: 1.125rem;
  overflow: hidden;
  background-color: var(--color01);
  aspect-ratio: 4/3;
  text-align: center;
}
.p-shopDetail-thumb img {
  object-fit: cover;
  height: 100%;
}
.p-shopDetail-thumb.no_image {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.p-shopDetail-cat {
  margin-top: 1.125rem;
  text-align: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-shopDetail-cat {
    margin-top: 1rem;
  }
}
.p-shopDetail-contents {
  flex: 1;
}
@media (max-width: 767px) {
  .p-shopDetail-contents {
    margin-top: 2rem;
  }
}
.p-shopDetail-ttl {
  border-bottom: 1px dashed var(--color05);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-shopDetail-ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
  }
}
.p-shopDetail-ttl span {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .p-shopDetail-ttl span {
    display: block;
    margin-top: 0.625rem;
  }
}
.p-shopDetail-txt {
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px dashed var(--color05);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .p-shopDetail-txt {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}
.p-shopDetail-data {
  font-size: 0.875rem;
  display: grid;
  gap: 0.5rem 0.75rem;
  grid-template-columns: auto 1fr;
}
@media (max-width: 767px) {
  .p-shopDetail-data {
    display: block;
  }
}
.p-shopDetail-data dt {
  font-weight: 700;
  color: #836435;
}
.p-shopDetail-data dd {
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-shopDetail-data dd {
    margin-bottom: 1rem;
  }
  .p-shopDetail-data dd:last-child {
    margin-bottom: 0;
  }
}
.p-shopDetail-data a {
  color: unset;
}

.p-nd {
  border-bottom: 1px dashed var(--color05);
  padding-bottom: 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-nd {
    margin-bottom: 2.5rem;
  }
}
.p-nd-col {
  display: flex;
  gap: 4.75rem;
}
@media (max-width: 767px) {
  .p-nd-col {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-nd-col__l {
    margin-bottom: 3rem;
  }
}
.p-nd-col__r {
  flex: 1;
}
.p-nd-ttl {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-nd-ttl {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-aboutIntro {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-aboutIntro {
    display: block;
  }
}
.p-aboutIntro-img {
  flex: 0 1 47%;
}
@media (max-width: 767px) {
  .p-aboutIntro-img {
    margin-left: -1.25rem;
    margin-right: 0.625rem;
  }
}
.p-aboutIntro-img img {
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .p-aboutIntro-img img {
    border-radius: 0 1rem 1rem 0;
  }
}
.p-aboutIntro-ttl {
  font-size: 1.6875rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-aboutIntro-ttl {
    font-size: 1.375rem;
    margin-bottom: 2rem;
  }
}
.p-aboutIntro-contents {
  flex: 1;
  border-radius: 1.25rem;
  background-color: var(--color06);
  padding: 3.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 3.125rem 0 0 -3.125rem;
}
@media (max-width: 767px) {
  .p-aboutIntro-contents {
    position: relative;
    padding: 2.5rem 1.875rem;
    margin: -3.125rem -1.25rem 0 0.625rem;
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
.p-aboutIntro-contents p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.p-history {
  position: relative;
}
.p-history::before {
  position: absolute;
  content: "";
  top: 4.0625rem;
  left: 0.3125rem;
  width: 0.1875rem;
  height: calc(100% - 4.0625rem);
  background-color: var(--color02);
}
@media (max-width: 767px) {
  .p-history::before {
    top: 1.25rem;
    left: 0.3125rem;
    height: calc(100% - 1.25rem);
  }
}
.p-history-row {
  display: flex;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .p-history-row {
    display: block;
  }
}
.p-history-row:last-child {
  margin-bottom: 0;
}
.p-history-year {
  padding: 2.5rem 0 0 8.125rem;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-history-year {
    text-align: left;
    padding: 0 0 0 2.5rem;
  }
}
.p-history-year::before {
  content: "";
  position: absolute;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  top: 3.4375rem;
  left: 0;
  background-color: var(--color02);
  z-index: 2;
}
@media (max-width: 767px) {
  .p-history-year::before {
    top: 0.75rem;
  }
}
.p-history-year::after {
  content: "";
  position: absolute;
  top: 3.75rem;
  left: 0.75rem;
  width: 6.25rem;
  height: 2px;
  background-color: rgba(179, 157, 84, 0.2);
  border-radius: 2px;
}
@media (max-width: 767px) {
  .p-history-year::after {
    top: 1rem;
    width: 1.25rem;
  }
}
.p-history-year .num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .p-history-year .num {
    font-size: 2rem;
  }
}
.p-history-year .y {
  font-size: 0.9375rem;
  font-weight: 500;
  writing-mode: vertical-lr;
  display: inline-block;
}
@media (max-width: 767px) {
  .p-history-year .y {
    writing-mode: unset;
    margin-right: 0.5rem;
  }
}
.p-history-year .nengo {
  font-weight: 500;
  color: var(--color03);
}
.p-history-contents {
  background-color: var(--color06);
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  gap: 1.625rem;
  font-size: 0.875rem;
  position: relative;
  margin-left: 3.125rem;
  flex: 1;
}
@media (max-width: 767px) {
  .p-history-contents {
    display: block;
    padding: 1.25rem;
    margin: 0.625rem 0 0 1.625rem;
  }
}
.p-history-contents::before {
  top: 2.5rem;
  left: -1.875rem;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25rem 2.3125rem 1.25rem 0;
  border-radius: 0 0 0 1.875rem;
  border-color: transparent var(--color06) transparent transparent;
}
@media (max-width: 767px) {
  .p-history-contents::before {
    display: none;
  }
}
.p-history-contents > div:first-child {
  flex: 1;
}
.p-history-contents__img {
  flex: 0 1 41%;
}
@media (max-width: 767px) {
  .p-history-contents__img {
    margin-top: 2rem;
  }
}
.p-history-contents__img img {
  border-radius: 1rem;
}
.p-history-contents__ttl {
  font-size: 1.375rem;
  font-weight: 700;
  border-bottom: 1px dashed var(--color05);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-history-contents__ttl {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.p-event {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6.25rem 5%;
}
@media (max-width: 767px) {
  .p-event {
    flex-direction: column;
    gap: 3.625rem 0;
  }
}
.p-event > div {
  flex: 0 1 29.9333333333%;
}
.p-event-box {
  background-color: #E7E1D2;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-event-txt {
  text-align: center;
  padding: 1.25rem;
  font-weight: 700;
}
.p-event-balloon {
  max-width: 90%;
  margin: 0 auto 1.25rem;
  text-align: center;
  border-radius: 1.875rem;
  background-color: var(--color06);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.75rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-event-balloon {
    font-size: 1rem;
  }
}
.p-event-balloon::after {
  content: "";
  position: absolute;
  top: 85%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25rem 0.875rem 0 0.875rem;
  border-color: var(--color06) transparent transparent transparent;
}
.p-event-balloon .deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-event-balloon .deco {
    gap: 0.5rem;
  }
}
.p-event-balloon .deco::before {
  content: url("../images/icon_eventdeco.svg");
}
.p-event-balloon .deco::after {
  content: url("../images/icon_eventdeco.svg");
  transform: scale(-1, 1);
}

.c-section-secondary {
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .c-section-secondary {
    margin-bottom: 6.25rem;
  }
}
.c-section-secondary:last-child {
  margin-bottom: 0;
}

.c-ttl-topsection {
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .c-ttl-topsection {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.c-subttl-topsection {
  font-size: 0.9375rem;
  color: var(--color02);
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-subttl-topsection {
    font-size: 0.8125rem;
  }
}

.c-ttl-section {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-ttl-section {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.c-ttl-section .sub {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: var(--color03);
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.1em;
}

.c-list-newsevent {
  display: flex;
}
.c-list-newsevent .u-icon-balloon + * {
  margin-top: -1.25rem;
}
.c-list-newsevent__thumb {
  height: 15rem;
  text-align: center;
  border-radius: 0.625rem;
  background-color: var(--color01);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-list-newsevent__thumb {
    height: 11.25rem;
  }
}
.c-list-newsevent__thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6F624C;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}
.c-list-newsevent__thumb img {
  object-fit: cover;
  height: 100%;
  transition: 0.3s ease;
}
.c-list-newsevent__head {
  display: flex;
  align-items: center;
}
.c-list-newsevent__date {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--color07);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 2px;
}
.c-list-newsevent__date.event {
  color: var(--color03);
}
.c-list-newsevent__date.information {
  color: var(--color10);
}
@media (max-width: 767px) {
  .c-list-newsevent__date {
    font-size: 1rem;
  }
}
.c-list-newsevent__ttl {
  margin-top: 0.625rem;
  font-weight: 700;
}
.c-list-newsevent .u-icon-balloon {
  z-index: 5;
}
.c-list-newsevent li:nth-child(odd) {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-list-newsevent li:nth-child(odd) {
    margin-top: 1.875rem;
  }
}
.c-list-newsevent a {
  display: block;
  text-decoration: none;
  color: unset;
}
.c-list-newsevent a:hover .c-list-newsevent__thumb::before {
  opacity: 0.2;
}
.c-list-newsevent a:hover .c-list-newsevent__thumb img {
  transform: scale(1.1);
}

.c-list-shopcategory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .c-list-shopcategory {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.c-list-shopcategory__icon {
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-list-shopcategory__icon {
    width: 4.75rem;
    height: 4.75rem;
    padding: 0.75rem;
  }
}
.c-list-shopcategory a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 13.125rem;
  background-color: #F8F7F4;
  border: 2px solid var(--color02);
  text-align: center;
  border-radius: 0.625rem;
  font-weight: 700;
  color: unset;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-shopcategory a {
    height: 8.75rem;
    font-size: 0.8125rem;
  }
}
.c-list-shopcategory a > div::after {
  content: "";
  width: 6.25rem;
  height: 6.25rem;
  margin: 0.625rem auto 0;
  display: block;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-shopcategory a > div::after {
    width: 4.5625rem;
    height: 4.5625rem;
  }
}
.c-list-shopcategory a > div.restaurant::after {
  background: url("../images/icon_restaurant.svg") no-repeat center;
  background-size: 70%;
}
.c-list-shopcategory a > div.retail::after {
  background: url("../images/icon_retail.svg") no-repeat center;
  background-size: 85%;
}
.c-list-shopcategory a > div.health::after {
  background: url("../images/icon_health.svg") no-repeat center;
  background-size: 75%;
}
.c-list-shopcategory a > div.real-estate::after {
  background: url("../images/icon_real-estate.svg") no-repeat center;
  background-size: 75%;
}
.c-list-shopcategory a > div.beauty::after {
  background: url("../images/icon_beauty.svg") no-repeat center;
  background-size: 75%;
}
.c-list-shopcategory a > div.welfare::after {
  background: url("../images/icon_welfare.svg") no-repeat center;
  background-size: 75%;
}
.c-list-shopcategory a::after {
  content: "";
  position: absolute;
  right: -3.4375rem;
  bottom: -3.4375rem;
  width: 6.875rem;
  height: 6.875rem;
  background-color: var(--color02);
  border-radius: 50%;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-shopcategory a::after {
    right: -2.3125rem;
    bottom: -2.3125rem;
    width: 4.625rem;
    height: 4.625rem;
  }
}
.c-list-shopcategory a::before {
  content: "";
  width: 0.5625rem;
  height: 1rem;
  background: url("../images/icon_arrow01.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  right: 1rem;
  bottom: 0.875rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-list-shopcategory a::before {
    width: 0.4375rem;
    height: 0.75rem;
    right: 0.625rem;
    bottom: 0.625rem;
  }
}
@media (any-hover: hover) {
  .c-list-shopcategory a:hover {
    background-color: var(--color09);
    color: var(--color03);
  }
  .c-list-shopcategory a:hover > div::after {
    transform: scale(1.05);
  }
  .c-list-shopcategory a:hover::after {
    transform: scale(1.1);
  }
}

.c-list-archive li {
  border-top: 1px dashed var(--color05);
}
.c-list-archive li:last-child {
  border-bottom: 1px dashed var(--color05);
}
.c-list-archive a {
  font-family: "Poppins", sans-serif;
  display: block;
  padding: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color00);
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
.c-list-archive a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color00) url("../images/icon_arrow01.svg") no-repeat center;
  background-size: 0.25rem auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .c-list-archive a:hover {
    color: var(--color08);
  }
  .c-list-archive a:hover::after {
    background-color: var(--color08);
    right: -0.25rem;
  }
}

.c-list-tax {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-list-tax {
    gap: 0.75rem;
  }
}
.c-list-tax li {
  flex: 0 1 calc(33.3333333333% - 0.6875rem);
}
@media (max-width: 767px) {
  .c-list-tax li {
    flex: 0 1 calc(50% - 0.375rem);
  }
}
.c-list-tax a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  background-color: #F8F7F4;
  border: 2px solid var(--color02);
  text-align: center;
  border-radius: 0.625rem;
  text-decoration: none;
  color: unset;
  overflow: hidden;
  position: relative;
  height: 4.5625rem;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-tax a {
    height: auto;
    font-size: 0.8125rem;
    min-height: 7.5rem;
    flex-direction: column-reverse;
  }
}
.c-list-tax a:hover, .c-list-tax a.current {
  color: #fff;
  background-color: var(--color02);
}
.c-list-tax a:hover::before, .c-list-tax a.current::before {
  background-color: #fff;
}
.c-list-tax a:hover::after, .c-list-tax a.current::after {
  background-color: var(--color02);
}
@media (hover: hover) {
  .c-list-tax a:hover:not(.current)::after {
    background-position: calc(50% + 3px) 70%;
  }
}
.c-list-tax a::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: #663b1b;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 1rem;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-tax a::before {
    display: block;
    position: static;
    margin: 1rem auto 0;
  }
}
.c-list-tax a.restaurant::before {
  mask-image: url("../images/icon_restaurant.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a.retail::before {
  mask-image: url("../images/icon_retail.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a.health::before {
  mask-image: url("../images/icon_health.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a.real-estate::before {
  mask-image: url("../images/icon_real-estate.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a.beauty::before {
  mask-image: url("../images/icon_beauty.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a.welfare::before {
  mask-image: url("../images/icon_welfare.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 80%;
}
.c-list-tax a::after {
  content: "";
  position: absolute;
  width: 4.625rem;
  height: 4.625rem;
  background: var(--color02) url("../images/icon_arrow05.svg") no-repeat center 70%;
  background-size: 0.375rem auto;
  border-radius: 50%;
  transform: rotate(90deg);
  top: 0;
  right: -1.875rem;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-tax a::after {
    top: auto;
    right: -2.3125rem;
    bottom: -2.3125rem;
    background-position: 1.25rem 2.875rem;
  }
}

.c-list-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .c-list-pager {
    margin-top: 2.5rem;
  }
}
.c-list-pager .prev,
.c-list-pager .next {
  transition: 0.3s ease;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #E2DCCB url("../images/icon_arrow04.svg") no-repeat calc(50% + 2px) center;
  background-size: 15% auto;
}
@media (max-width: 767px) {
  .c-list-pager .prev,
  .c-list-pager .next {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.c-list-pager .prev:hover,
.c-list-pager .next:hover {
  background-color: #E1D9C1;
  background-position: calc(50% + 0.375rem) center;
}
.c-list-pager .prev {
  transform: scale(-1, 1);
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .c-list-pager .prev {
    margin-right: 0.5rem;
  }
}
.c-list-pager .next {
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .c-list-pager .next {
    margin-left: 0.5rem;
  }
}
.c-list-pager a, .c-list-pager .current {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  color: var(--color03);
  text-decoration: none;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-pager a, .c-list-pager .current {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-list-pager a:hover,
.c-list-pager .current {
  background-color: var(--color02);
  color: #fff;
}
.c-list-pager .dot {
  padding: 0 0.5rem;
  height: 3.5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .c-list-pager .dot {
    height: 2.5rem;
    padding: 0;
  }
}

.c-btn-type01 {
  border-radius: 0.5625rem;
  background-color: #5B4737;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  min-width: 15rem;
  display: inline-block;
  vertical-align: middle;
  padding: 1.25rem 1.25rem 1.25rem 1.875rem;
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 767px) {
  .c-btn-type01 {
    text-align: center;
    padding: 1rem;
    min-width: 13.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
  }
}
.c-btn-type01::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color08);
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: 0.3s ease;
}
.c-btn-type01::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff url("../images/icon_arrow02.svg") calc(50% + 1px) center no-repeat;
  top: 0;
  bottom: 0;
  right: 1.25rem;
  margin: auto;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn-type01::after {
    width: 1.375rem;
    height: 1.375rem;
    right: 1rem;
  }
}
.c-btn-type01:hover::before {
  transform: translateX(0);
}
.c-btn-type01:hover::after {
  transform: scale(1.1);
  background-image: url("../images/icon_arrow03.svg");
}
.c-btn-type01 span {
  position: relative;
}

.c-btn-nd_all {
  display: block;
  background-color: #F8F7F4;
  border: 2px solid var(--color02);
  text-align: center;
  font-weight: 700;
  padding: 1rem;
  color: unset;
  text-decoration: none;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
  transition: 0.3s ease;
}
.c-btn-nd_all:hover, .c-btn-nd_all.current {
  background-color: var(--color02);
  color: #fff;
}

.u-txt-c {
  text-align: center;
}

.u-txt-r {
  text-align: right;
}

.u-fc-gold {
  color: var(--color03);
}

.u-fc-pink {
  color: #DB4D4D;
}

.u-fc-red {
  color: #C94726;
}

.u-icon-down {
  display: inline-block;
  position: relative;
  padding-right: 2.25rem;
}
.u-icon-down::after {
  content: "";
  position: absolute;
  width: 1.4375rem;
  height: 1.4375rem;
  background: var(--color02) url("../images/icon_arrow05.svg") no-repeat center;
  background-size: 20%;
  transform: rotate(90deg);
  border-radius: 50%;
  right: 0;
  top: 0;
}

.u-icon-balloon {
  min-width: 14.375rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  background-color: #fff;
  border: 2px solid var(--color02);
  text-align: center;
  font-weight: 700;
  color: var(--color02);
  padding: 0.5rem;
  font-size: 0.8125rem;
  position: relative;
  display: inline-block;
  transform: translateX(-50%);
  left: 50%;
}
.u-icon-balloon.information {
  color: var(--color10);
  border-color: var(--color10);
}
.u-icon-balloon.information::before {
  border-color: var(--color10);
}
@media (max-width: 767px) {
  .u-icon-balloon {
    min-width: 11.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}
.u-icon-balloon::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #FFF;
  border-right: 2px solid var(--color02);
  border-bottom: 2px solid var(--color02);
  transform: translate(-50%, 55%) rotate(45deg);
  transform-origin: center center;
}

.u-icon-shopcat {
  display: inline-flex;
  text-align: center;
  font-size: 0.75rem;
  background-color: #ECE6D3;
  font-weight: 700;
  min-height: 2.125rem;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
  border-radius: 1rem;
}
.u-icon-shopcat::before {
  margin-right: 0.5rem;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
}
.u-icon-shopcat.restaurant::before {
  background: url("../images/icon_restaurant.svg") no-repeat center;
  background-size: 100%;
}
.u-icon-shopcat.retail::before {
  background: url("../images/icon_retail.svg") no-repeat center;
  background-size: 100%;
}
.u-icon-shopcat.health::before {
  background: url("../images/icon_health.svg") no-repeat center;
  background-size: auto 100%;
}
.u-icon-shopcat.real-estate::before {
  background: url("../images/icon_real-estate.svg") no-repeat center;
  background-size: auto 100%;
}
.u-icon-shopcat.beauty::before {
  background: url("../images/icon_beauty.svg") no-repeat center;
  background-size: 100%;
}
.u-icon-shopcat.welfare::before {
  background: url("../images/icon_welfare.svg") no-repeat center;
  background-size: 100%;
}

* + .u-icon-category {
  margin-left: 1rem;
}

.u-icon-category {
  display: inline-block;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  min-width: 5.25rem;
  padding: 0.3125rem;
  vertical-align: middle;
  border-radius: 0.9375rem;
  background-color: #E8BB27;
}
@media (max-width: 767px) {
  .u-icon-category {
    font-size: 0.75rem;
    padding: 0.25rem;
    min-width: 5rem;
  }
}
.u-icon-category.event {
  background-color: var(--color08);
}
.u-icon-category.information {
  background-color: var(--color10);
}

.u-icon-map {
  display: inline-block;
  background: url("../images/icon_map.svg") no-repeat;
  padding-left: 1.75rem;
}
@media (max-width: 767px) {
  .u-icon-map {
    background-size: 1.0625rem auto;
  }
}

.u-icon-instagram {
  display: inline-block;
  background: url("../images/icon_instagram.png") no-repeat;
  background-size: 100%;
  width: 1.875rem;
  height: 1.875rem;
  vertical-align: middle;
}
.u-icon-instagram.white {
  background: #fff;
  mask-image: url("../images/icon_instagram.png");
  mask-repeat: no-repeat;
  mask-size: 100%;
}

.u-icon-youtube {
  display: inline-block;
  background: url("../images/icon_youtube.svg") no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 1.375rem;
  vertical-align: middle;
}
.u-icon-youtube.white {
  background: #fff;
  mask-image: url("../images/icon_youtube.svg");
  mask-repeat: no-repeat;
  mask-size: 100%;
}

.u-icon-x {
  display: inline-block;
  background: url("../images/icon_x.svg") no-repeat;
  background-size: 100%;
  width: 1.5rem;
  height: 1.5625rem;
  vertical-align: middle;
}
.u-icon-x.white {
  background: #fff;
  mask-image: url("../images/icon_x.svg");
  mask-repeat: no-repeat;
  mask-size: 100%;
}

.u-icon-fb {
  display: inline-block;
  background: url("../images/icon_fb.svg") no-repeat;
  background-size: 100%;
  width: 1.875rem;
  height: 1.875rem;
  vertical-align: middle;
}
.u-icon-fb.white {
  background: #fff;
  mask-image: url("../images/icon_fb.svg");
  mask-repeat: no-repeat;
  mask-size: 100%;
}

@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}