@charset "UTF-8";
:root {
  --color-primary: #E8334A;
  --color-white: #FFFFFF;
  --color-black: #212121;
  --color-text: #333333;
  --color-gray-light: #F5F5F5;
  --color-gray: #9E9E9E;
  --color-border: #E0E0E0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}

p {
  font-size: 16px;
}
@media (max-width: 768px) {
  p {
    font-size: clamp(12px, 3.73vw, 14px);
  }
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  text-align: center;
}
@media (max-width: 768px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: #E8334A;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 700;
  color: #212121;
  padding-left: 16px;
  border-left: 4px solid #E8334A;
}
@media (max-width: 768px) {
  h3 {
    font-size: 21.84px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
}
h4::before {
  content: "●";
  color: #E8334A;
  margin-right: 8px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 19.92px;
  }
}

.site-main {
  max-width: 1080px;
  min-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .site-main {
    min-width: 0;
  }
}

.page-title-band {
  background-color: #FBF9F4;
  padding: 48px 20px;
  text-align: center;
}

.page-title-band__heading {
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  margin: 0;
}
@media (max-width: 768px) {
  .page-title-band__heading {
    font-size: clamp(16px, 6.4vw, 24px);
  }
}

.site-header {
  border-bottom: 1px solid #E0E0E0;
}

.site-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .site-header__inner {
    height: 60px;
    padding-top: 0;
    justify-content: center;
    align-items: baseline;
  }
}

.site-header__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "A-OTF UD Shin Go NT Pr6", "Noto Sans", sans-serif;
  color: #212121;
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
}
.site-header__title a {
  color: inherit;
  font-size: 36px;
}
@media (max-width: 768px) {
  .site-header__title a {
    font-size: clamp(16px, 4.8vw, 18px);
  }
}
.site-header__title::before {
  display: none;
}
html:not([lang=ja]) .site-header__title {
  width: 100%;
  padding-right: 210px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .site-header__title {
    font-size: clamp(16px, 4.8vw, 18px);
    text-align: left;
  }
}

.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.site-header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E8334A;
  transition: transform 0.3s, opacity 0.3s;
}

.pc-nav {
  width: 100%;
  margin-top: 12px;
  padding: 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  padding: 0 20px;
}

.pc-nav__item {
  text-align: center;
  position: relative;
}
.pc-nav__item.is-current::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary, #E8334A);
}

.pc-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
}
.pc-nav__link:hover {
  color: #E8334A;
}

.pc-nav__label-ja {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
}

.pc-nav__label-en {
  font-size: 14px;
  font-weight: 700;
  color: #E8334A;
  text-transform: uppercase;
}

.site-header__language {
  position: absolute;
  right: 20px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #333333;
  cursor: pointer;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  width: 180px;
  height: 40.851px;
}
@media (max-width: 768px) {
  .site-header__language {
    display: none;
  }
}
.site-header__language .gtranslate_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-header__language select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.site-header__language-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.site-header__language-label {
  font-size: 14px;
  color: #444;
}

.site-header__language-arrow {
  width: 10px;
  height: 6px;
  display: block;
}

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  flex-direction: column;
  overflow-y: auto;
}
.sp-menu.is-open {
  display: flex;
}

.sp-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E0E0E0;
}

.sp-menu__title {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
}

.sp-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sp-menu__close-icon {
  font-size: 32px;
  color: #E8334A;
}

.sp-menu__nav {
  flex: 1;
  padding: 24px 20px;
}

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

.sp-menu__item {
  border-bottom: none;
}

.sp-menu__link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #212121;
}

.sp-menu__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #E8334A;
  margin-right: 12px;
  flex-shrink: 0;
}
.sp-menu__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-left: -2px;
}

.sp-menu__language {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  margin: 0 20px 24px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.sp-menu__language select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 0 center;
  border: none;
  padding: 0 16px 0 0;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.sp-menu__language select:focus {
  outline: none;
}

.sp-menu__language-icon {
  font-size: 24px;
}

.sp-menu__language-label {
  font-size: 16px;
}

.site-footer {
  text-align: center;
  padding-bottom: 24px;
  position: relative;
}

.sns-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 32px 20px;
  background-color: #FBF9F4;
}

.sns-share__label {
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  color: #333333;
}
@media (max-width: 768px) {
  .sns-share__label {
    font-size: clamp(12px, 3.2vw, 12px);
    line-height: normal;
  }
}

.sns-share__list {
  display: flex;
  gap: 24px;
}

.sns-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #FFFFFF;
  transition: opacity 0.2s;
}
.sns-share__link:hover {
  opacity: 0.8;
}

.sns-share__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.footer-nav {
  padding: 24px 20px;
  border: none;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-nav__item {
    text-align: left;
  }
}

.footer-nav__link {
  display: inline-flex;
  align-items: center;
  color: #333333;
  transition: color 0.2s;
}
.footer-nav__link.link-arrow {
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer-nav__link.link-arrow {
    font-size: clamp(12px, 3.73vw, 14px);
    white-space: nowrap;
  }
}
.footer-nav__link:hover {
  color: #E8334A;
}

.site-footer__mascot {
  padding: 24px 0;
}

.site-footer__mascot-img {
  width: 51px;
  height: 76px;
  aspect-ratio: 51/76;
}

.site-footer__info {
  padding: 0 20px 16px;
}

.site-footer__org {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 8px;
}

.site-footer__address,
.site-footer__tel {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

.site-footer__copyright {
  font-size: 12px;
  color: #212121;
  padding: 24px 20px;
}

.site-footer__page-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 100;
}
.site-footer__page-top:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site-footer__page-top svg {
    width: clamp(40px, 11vw, 48px);
    height: clamp(40px, 11vw, 48px);
  }
}

.breadcrumb {
  background-color: #FBF9F4;
  max-width: none;
  margin: 0;
  padding: 12px 20px;
  font-size: 14px;
  color: #212121;
}

.breadcrumb__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  color: #212121;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #E8334A;
}

.breadcrumb__current {
  color: #212121;
}
@media (max-width: 768px) {
  .breadcrumb__current {
    font-size: clamp(11px, 3.47vw, 13px);
  }
}

.breadcrumb__separator {
  margin: 0 8px;
  color: #9E9E9E;
  font-size: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.pagination__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.pagination__btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pagination__btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #373737;
  transition: background-color 0.2s, color 0.2s;
}
.pagination .page-numbers:hover {
  background-color: #F5F5F5;
}
.pagination .page-numbers.current {
  background-color: #E8334A;
  border-color: #E8334A;
  color: #FFFFFF;
}
.pagination .page-numbers.current:hover {
  background-color: #E8334A;
}
.pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
}
.pagination .page-numbers.dots:hover {
  background-color: transparent;
}

@media (max-width: 768px) {
  .pagination {
    padding: 40px 0;
  }
  .pagination__links {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination__btn {
    width: clamp(32px, 10.67vw, 40px);
    height: clamp(32px, 10.67vw, 40px);
  }
  .pagination .page-numbers {
    width: clamp(32px, 10.67vw, 40px);
    height: clamp(32px, 10.67vw, 40px);
    font-size: clamp(12px, 3.73vw, 14px);
    border-radius: 6px;
  }
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 2px solid #E8334A;
  border-radius: 30px;
  background-color: #FFFFFF;
  color: #E8334A;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  background-color: #E8334A;
  color: #FFFFFF;
}

.btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 2px solid #E8334A;
  border-radius: 30px;
  background-color: #E8334A;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-filled:hover {
  opacity: 0.8;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 250px;
  height: 60px;
  border: 2px solid #E8334A;
  border-radius: 100px;
  background-color: #FFFFFF;
  color: #E8334A;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn-pill:hover {
  background-color: #E8334A;
  color: #FFFFFF;
}
.btn-pill:hover .btn-pill__arrow circle {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.btn-pill:hover .btn-pill__arrow path {
  stroke: #E8334A;
}
@media (max-width: 768px) {
  .btn-pill {
    width: 200px;
    height: 48px;
    font-size: 16px;
  }
}

.btn-pill__arrow {
  position: absolute;
  left: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .btn-pill__arrow {
    left: 12px;
  }
}

.back-to-list {
  text-align: center;
  padding: 40px 0;
}

.back-to-list__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 250px;
  height: 60px;
  border: 2px solid #E8334A;
  border-radius: 100px;
  background-color: #FFFFFF;
  color: #E8334A;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.back-to-list__btn:hover {
  background-color: #E8334A;
  color: #FFFFFF;
}
.back-to-list__btn:hover .back-to-list__icon circle {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.back-to-list__btn:hover .back-to-list__icon path {
  stroke: #E8334A;
}
@media (max-width: 768px) {
  .back-to-list__btn {
    width: 200px;
    height: 48px;
    font-size: 16px;
  }
}

.back-to-list__icon {
  position: absolute;
  left: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .back-to-list__icon {
    left: 12px;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.2s;
}
.link-arrow::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E8334A;
  margin-right: 8px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M4 2l4 4-4 4' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}
.link-arrow:hover {
  color: #E8334A;
}

a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background: url("../images/icon-external.png") no-repeat center/contain;
  vertical-align: middle;
}

a[target=_blank].sns-share__link::after,
a[target=_blank].block-accordion__shop-web-link::after,
a[target=_blank].post-card-event__thumb-link::after {
  display: none;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.site-main--front {
  max-width: none;
  padding: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: #FBF9F4;
  padding-bottom: 48px;
}

.hero__garland {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__garland-img {
  width: 300px;
  height: auto;
}
@media (max-width: 768px) {
  .hero__garland-img {
    width: 128px;
  }
}

.hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__catchphrase {
  position: relative;
  text-align: center;
  padding: 48px 0 32px;
}
@media (max-width: 768px) {
  .hero__catchphrase {
    padding: 32px 0 24px;
  }
}

.hero__catchphrase-img {
  height: 48px;
  width: auto;
}
.hero__catchphrase-img--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__catchphrase-img--pc {
    display: none;
  }
  .hero__catchphrase-img--sp {
    display: block;
    width: 100%;
    height: auto;
  }
}

.hero__main {
  position: relative;
}

.hero__carousel {
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero__carousel {
    padding-bottom: clamp(16px, 4vw, 20px);
  }
}

.hero__carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.hero__carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}

.hero__carousel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero__carousel-caption {
  margin-top: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.hero__carousel-caption--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__carousel-caption--pc {
    display: none;
  }
  .hero__carousel-caption--sp {
    display: block;
    margin-top: 5px;
    color: #000;
    font-size: clamp(10px, 3.2vw, 12px);
    font-weight: 500;
    line-height: 1.4;
  }
}

.hero__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero__carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E0E0E0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s;
}
.hero__carousel-dot.is-active {
  background-color: #E8334A;
}

.hero__mascot-area {
  position: absolute;
  left: calc(50% + 463px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}
@media (max-width: 768px) {
  .hero__mascot-area {
    position: static;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: clamp(8px, 3.07vw, 12px);
    margin-top: 24px;
  }
}

.hero__mascot-img {
  width: 160px;
  height: auto;
}
.hero__mascot-img--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__mascot-img--pc {
    display: none;
  }
  .hero__mascot-img--sp {
    display: block;
    width: 80px;
    flex-shrink: 0;
  }
}

.hero__mascot-badge {
  display: block;
  margin-top: 8px;
}
.hero__mascot-badge--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__mascot-badge--pc {
    display: none;
  }
  .hero__mascot-badge--sp {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.6vw, 12px);
    flex: 1;
    margin-top: 0;
    padding: clamp(10px, 3.2vw, 16px);
    border: 4px solid #993300;
    border-radius: 100px;
    background: #FFFFFF;
    color: #993300;
    font-size: clamp(12px, 3.73vw, 14px);
    font-weight: 700;
    line-height: 1.5;
  }
}

.hero__mascot-badge-img {
  width: 160px;
  height: auto;
}

.hero__mascot-badge-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 6.53vw, 44px);
  height: clamp(32px, 6.53vw, 44px);
  border-radius: 50%;
  background-color: #993300;
  flex-shrink: 0;
}
.hero__mascot-badge-arrow svg {
  width: clamp(16px, 2.67vw, 20px);
  height: clamp(16px, 2.67vw, 20px);
}

.hero__mascot-badge-text {
  flex: 1;
}

.home-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px;
}

.home-section__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #212121;
}
@media (max-width: 768px) {
  .home-section__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .home-section--events .home-section__title {
    margin-top: 100px;
  }
}

.home-section__title-en {
  display: block;
  font-size: 20px;
  color: #E8334A;
  text-transform: uppercase;
  margin-top: 4px;
}

.home-section__more {
  text-align: right;
  margin-top: auto;
  padding-top: 24px;
}

.home-columns {
  display: flex;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px;
}
@media (max-width: 768px) {
  .home-columns {
    flex-direction: column;
    gap: 0;
  }
}

.home-section--news {
  flex: 1;
  padding: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.home-news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-news__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid #E0E0E0;
}
.home-news__item:last-child {
  border-bottom: none;
}

.home-news__date {
  font-size: 13px;
  color: #9E9E9E;
  flex-shrink: 0;
}

.home-news__link {
  color: #333333;
  font-weight: 700;
  transition: color 0.2s;
}
.home-news__link:hover {
  color: #E8334A;
}

.home-section--events {
  flex: 1;
  padding: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.home-events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.home-events__item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E0E0E0;
}
.home-events__item:last-child {
  border-bottom: none;
}

.home-events__thumb {
  flex-shrink: 0;
  width: 120px;
}

.home-events__thumb-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.home-events__body {
  flex: 1;
}

.home-events__date {
  display: block;
  font-size: 13px;
  color: #9E9E9E;
  margin-bottom: 4px;
}

.home-events__author {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: normal;
  margin-bottom: 4px;
}

.home-events__title {
  font-size: 18px;
  font-weight: 700;
  border-left: none;
  padding-left: 0;
}
.home-events__title::before {
  display: none;
}
.home-events__title a {
  color: #212121;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.home-events__title a:hover {
  color: #E8334A;
}

.home-events__meta {
  margin-top: 8px;
}

.home-events__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-top: 4px;
}

.home-events__meta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 20px;
  border-radius: 20px;
  background-color: #E8334A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.home-section--blocks {
  max-width: none;
  padding: 0;
  background: #FBF9F4;
}

.home-blocks__garland {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.home-blocks__garland::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}
@media (max-width: 768px) {
  .home-blocks__garland {
    height: 180px;
  }
  .home-blocks__garland::before {
    height: 120px;
  }
}

.home-blocks__garland-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  height: auto;
}
@media (max-width: 768px) {
  .home-blocks__garland-left {
    width: 160px;
  }
}

.home-blocks__garland-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: auto;
}
@media (max-width: 768px) {
  .home-blocks__garland-right {
    width: 160px;
  }
}

.home-blocks__heading-band {
  padding: 24px 20px 16px;
  text-align: center;
}

.home-blocks__heading {
  color: #212121;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .home-blocks__heading {
    font-size: 24px;
  }
}

.home-blocks__intro {
  text-align: center;
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .home-blocks__intro {
    font-size: clamp(13px, 4vw, 15px);
    font-weight: 700;
    line-height: 1.2;
  }
}

.home-blocks__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.home-blocks__credit {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: normal;
  text-align: left;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .home-blocks__credit {
    font-size: clamp(12px, 3.73vw, 14px);
    text-align: center;
  }
}

.home-blocks__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .home-blocks__cta {
    flex-direction: column;
    align-items: center;
  }
}

.home-blocks__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 360px;
  height: 60px;
  border-radius: 100px;
  background-color: #E8334A;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.home-blocks__cta-btn:hover {
  opacity: 0.8;
}
.home-blocks__cta-btn svg {
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .home-blocks__cta-btn {
    width: 100%;
    max-width: 360px;
    height: 52px;
    font-size: 16px;
  }
}

.news-list {
  max-width: 1040px;
  margin: 0 auto;
}

.post-card-news {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}

.post-card-news__date {
  display: block;
  font-size: 13px;
  color: #9E9E9E;
  margin-bottom: 8px;
}

.post-card-news__title {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
  border-left: none;
  padding-left: 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .post-card-news__title {
    font-size: 24px;
  }
}
.post-card-news__title::before {
  display: none;
}
.post-card-news__title a {
  font-size: 24px;
  color: inherit;
  transition: color 0.2s;
}
.post-card-news__title a:hover {
  color: #E8334A;
}

.post-card-news__excerpt {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 8px;
}

.post-card-news__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #E8334A;
  transition: opacity 0.2s;
}
.post-card-news__more:hover {
  opacity: 0.7;
}

.post-card-news__more-arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #E8334A;
  border-right: 1.5px solid #E8334A;
  transform: rotate(45deg);
}

.news-single {
  max-width: 1040px;
  margin: 0 auto;
}

.news-single__date {
  display: block;
  font-size: 14px;
  color: #9E9E9E;
  margin-bottom: 12px;
}

.news-single__title {
  font-size: 32px;
  color: #212121;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .news-single__title {
    font-size: 24px;
  }
}

.news-single__content {
  line-height: 1.5;
}
.news-single__content p {
  margin-bottom: 16px;
}
.news-single__content img {
  margin: 16px 0;
}
.news-single__content a {
  text-decoration: underline;
}

.event-list {
  max-width: 1040px;
  margin: 0 auto;
}

.post-card-event {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 8px 24px;
  padding: 32px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 768px) {
  .post-card-event {
    grid-template-columns: 120px 1fr;
    gap: 8px 12px;
  }
}

.post-card-event__thumb {
  grid-column: 1;
  grid-row: 1/-1;
}
@media (max-width: 768px) {
  .post-card-event__thumb {
    grid-row: 1;
  }
}

.post-card-event__body {
  grid-column: 2;
  grid-row: 1;
}

.post-card-event__excerpt {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 768px) {
  .post-card-event__excerpt {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

.post-card-event__more {
  grid-column: 2;
  grid-row: 3;
}
@media (max-width: 768px) {
  .post-card-event__more {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

.post-card-event__thumb-img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card-event__no-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-event__no-image-text {
  font-size: 12px;
  color: #9E9E9E;
}

.post-card-event__body {
  min-width: 0;
}

.post-card-event__date {
  display: block;
  font-size: 13px;
  color: #9E9E9E;
  margin-bottom: 4px;
}

.post-card-event__author {
  font-size: 14px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 8px;
}

.post-card-event__title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  border-left: none;
  padding-left: 0;
  margin-bottom: 8px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
}
.post-card-event__title::before {
  display: none;
}
.post-card-event__title a {
  color: inherit;
  text-decoration: inherit;
  transition: color 0.2s;
}
.post-card-event__title a:hover {
  color: #E8334A;
}

.post-card-event__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 12px;
}

.post-card-event__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333333;
}

.post-card-event__badge-label {
  display: inline-block;
  padding: 2px 10px;
  background-color: #E8334A;
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.post-card-event__excerpt {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.post-card-event__more {
  font-size: 15px;
  font-weight: 700;
}

.event-single {
  max-width: 1040px;
  margin: 0 auto;
}

.event-single__date {
  display: block;
  font-size: 14px;
  color: #9E9E9E;
  margin-bottom: 4px;
}

.event-single__author {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 8px;
}

.event-single__title {
  font-size: 32px;
  color: #212121;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .event-single__title {
    font-size: 24px;
  }
}

.event-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}

.event-single__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333333;
}

.event-single__badge-label {
  display: inline-block;
  padding: 4px 14px;
  background-color: #E8334A;
  color: #FFFFFF;
  font-size: 14px;
  border-radius: 20px;
}

.event-single__content {
  line-height: 1.5;
}
.event-single__content p {
  margin-bottom: 16px;
}
.event-single__content img {
  margin: 16px 0;
}
.event-single__content a {
  text-decoration: underline;
}

.page-shoplist__intro {
  max-width: 800px;
  margin: 0 auto 32px;
}
.page-shoplist__intro p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.page-shoplist__lead {
  color: var(--000000, #000);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-shoplist__lead {
    font-size: clamp(14px, 4.27vw, 16px);
    text-align: left;
  }
}

.page-shoplist__anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page-shoplist__anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-shoplist__anchor-nav .btn-pill {
    width: 100%;
    font-size: clamp(12px, 3.73vw, 14px);
    justify-content: flex-start;
    padding-left: clamp(38px, 12vw, 45px);
  }
  .page-shoplist__anchor-nav .btn-pill .btn-pill__arrow {
    width: clamp(17px, 5.33vw, 20px);
    height: clamp(17px, 5.33vw, 20px);
  }
}

.page-shoplist__credit {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .page-shoplist__credit {
    font-size: clamp(12px, 3.73vw, 14px);
  }
}

.block-accordion {
  margin-bottom: 0;
  padding-bottom: 0;
}

.block-accordion__title {
  font-size: 26px;
  font-weight: 700;
  color: #E8334A;
  text-align: center;
  border-left: none;
  padding-left: 0;
  padding-top: 32px;
  margin-bottom: 16px;
}
.block-accordion__title::before {
  display: none;
}
@media (max-width: 768px) {
  .block-accordion__title {
    font-size: 20px;
  }
}

.block-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
  margin-top: 24px;
  cursor: pointer;
}
.block-accordion__toggle[aria-expanded=true] {
  border-bottom: none;
}

.block-accordion__toggle-label {
  font-size: 16px;
  font-weight: 700;
  color: #E8334A;
}

.block-accordion__toggle-icon {
  font-size: 20px;
  color: #E8334A;
}

.block-accordion__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .block-accordion__content {
    flex-direction: column;
    gap: 16px;
  }
}

.block-accordion__image-wrap {
  flex-shrink: 0;
  max-width: 400px;
}
@media (max-width: 768px) {
  .block-accordion__image-wrap {
    width: 100%;
  }
}

.block-accordion__image {
  max-width: 100%;
  height: auto;
}

.block-accordion__image-caption {
  font-size: 16px;
  color: #212121;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .block-accordion__image-caption {
    font-size: clamp(11px, 3.47vw, 13px);
  }
}

.block-accordion__description {
  flex: 1;
  max-width: 600px;
  background-color: #FBF9F4;
  border-radius: 8px;
  padding: 24px 32px;
}
@media (max-width: 768px) {
  .block-accordion__description {
    padding: 16px 20px;
  }
}

.block-accordion__description-list {
  list-style: none;
}
.block-accordion__description-list li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .block-accordion__description-list li {
    font-size: clamp(13px, 4vw, 15px);
  }
}
.block-accordion__description-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #E8334A;
}
.block-accordion__description-list li:last-child {
  margin-bottom: 0;
}

.block-accordion__body {
  padding: 0 0 32px;
}
.block-accordion__body[hidden] {
  display: none;
}

.block-accordion__shop-list {
  list-style: none;
  counter-reset: shop-counter;
}

.block-accordion__shop {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 0;
}

.block-accordion__shop-icon {
  flex-shrink: 0;
  margin-top: 6px;
}

.block-accordion__shop-info {
  flex: 1;
}

.block-accordion__shop-name {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-left: none;
  padding-left: 0;
  position: relative;
}
.block-accordion__shop-name::before {
  display: none;
}
.block-accordion__shop-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -36px;
  right: 0;
  border-bottom: 1px solid #E0E0E0;
}

.block-accordion__shop-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .block-accordion__shop-detail {
    margin-left: -36px;
  }
}
.block-accordion__shop-detail {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}
.block-accordion__shop-detail + .block-accordion__shop-detail {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .block-accordion__shop-detail + .block-accordion__shop-detail {
    margin-top: clamp(9px, 2.67vw, 10px);
  }
}
.block-accordion__shop-detail + .block-accordion__shop-web-link {
  margin-top: 20px;
}

.block-accordion__shop-tel-sp {
  display: none;
  color: inherit;
}
@media (max-width: 768px) {
  .block-accordion__shop-tel-sp {
    display: inline;
  }
}

@media (max-width: 768px) {
  .block-accordion__shop-tel-pc {
    display: none;
  }
}

.block-accordion__shop-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 30px;
  border: 1px solid #FBF9F4;
  border-radius: 100px;
  background-color: #FBF9F4;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  flex-shrink: 0;
}

.block-accordion__shop-web-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  width: 200px;
  height: 40px;
  border: 2px solid #4B4B4B;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  transition: opacity 0.2s;
}
.block-accordion__shop-web-link:hover {
  opacity: 0.7;
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.block-grid__item {
  display: block;
  text-align: left;
  transition: opacity 0.2s;
}
.block-grid__item:hover {
  opacity: 0.8;
}

.block-grid__card {
  aspect-ratio: 1/1;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .block-grid__card {
    aspect-ratio: auto;
  }
}

.block-grid__image {
  width: 100%;
  height: auto;
}

.block-grid__caption {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  padding: 8px 12px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .block-grid__caption {
    font-size: clamp(12px, 3.47vw, 13px);
    padding: 8px 4px;
  }
}
@media (max-width: 768px) {
  .block-grid__caption--long {
    font-size: clamp(10px, 2.67vw, 11px);
  }
}

.block-grid__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.block-grid__name {
  font-weight: 700;
  color: #212121;
}
@media (max-width: 768px) {
  .block-grid__name {
    font-size: clamp(14px, 4.27vw, 16px);
  }
}

.block-grid__count {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin-top: -8px;
  margin-left: 26px;
}
@media (max-width: 768px) {
  .block-grid__count {
    font-size: clamp(12px, 3.73vw, 14px);
  }
}

.page-about {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .page-about {
    padding: 0;
  }
}

.page-about__anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  padding-top: 48px;
}
.page-about__anchor-nav .btn-pill {
  width: 320px;
  height: 60px;
}
.page-about__anchor-nav .btn-pill--wide {
  width: 360px;
  padding-left: 48px;
}
@media (max-width: 768px) {
  .page-about__anchor-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page-about__anchor-nav .btn-pill {
    width: 100%;
    font-size: clamp(12px, 4.27vw, 16px);
    text-align: center;
    line-height: 1.4;
  }
  .page-about__anchor-nav .btn-pill .btn-pill__arrow {
    width: clamp(16px, 5.33vw, 20px);
    height: clamp(16px, 5.33vw, 20px);
    aspect-ratio: 1/1;
  }
  .page-about__anchor-nav .btn-pill--wide {
    grid-column: 1/-1;
    width: 100%;
  }
}

.about-section {
  max-width: 1040px;
  margin: 0 auto 64px;
}

.about-section__heading {
  font-size: 28px;
  font-weight: 700;
  color: #E8334A;
  text-align: center;
  margin-bottom: 40px;
  border-left: none;
  padding-left: 0;
}
.about-section__heading::before {
  display: none;
}
@media (max-width: 768px) {
  .about-section__heading {
    font-size: clamp(18px, 5.87vw, 22px);
  }
}

.about-subsection__heading {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
  border-left: 4px solid #E8334A;
  padding-left: 16px;
  margin: 48px 0 24px;
}
.about-subsection__heading::before {
  display: none;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.about-table th,
.about-table td {
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  text-align: left;
  font-size: 14px;
}
.about-table th {
  background-color: #FBF9F4;
  font-weight: 700;
  white-space: nowrap;
}

.about-table--officers {
  table-layout: auto;
}
.about-table--officers th:first-child {
  width: 160px;
  vertical-align: top;
  background-color: #F3EEE2;
}
.about-table--officers td:first-of-type {
  font-weight: 700;
  white-space: nowrap;
  background-color: #FBF9F4;
}
.about-table--officers td:first-of-type.about-table__name {
  font-weight: normal;
}
.about-table--officers td:nth-of-type(2) {
  white-space: nowrap;
  background-color: #FBF9F4;
}
.about-table--officers td:last-child,
.about-table--officers .about-table__name {
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .about-table--officers th:first-child {
    width: auto;
  }
  .about-table--officers th,
  .about-table--officers td {
    padding: 8px 10px;
  }
}

.about-table--beppyou {
  max-width: 600px;
}
.about-table--beppyou thead th {
  text-align: center;
}
.about-table--beppyou td {
  text-align: center;
}

.about-table__total th,
.about-table__total td {
  font-weight: 700;
}

.page-about p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.about-map {
  margin: 0 auto 16px;
  width: fit-content;
}
.about-map iframe {
  width: 617px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 195/134;
  border: 0;
  border-radius: 8px;
}

.about-access-text {
  width: 612px;
  max-width: 100%;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #FBF9F4;
  color: #212121;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.about-access-text__highlight {
  color: #E8334A;
}

.about-rules__chapter {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  margin: 48px 0 24px;
  border-left: none;
  padding-left: 0;
}
.about-rules__chapter::before {
  display: none;
}

p.about-rules__label {
  margin-top: 24px;
  margin-bottom: 4px;
}

.about-rules__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.about-rules__list li {
  padding-left: 2em;
  text-indent: -2em;
  line-height: 1.5;
}
.about-rules__list li::before {
  content: "1. ";
}

.about-rules__appendix {
  margin-top: 48px;
}
.about-rules__appendix p {
  margin-bottom: 4px;
}

.about-character {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .about-character {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.about-character__body {
  flex: 1;
  background-color: #FBF9F4;
  padding: 40px;
  border-radius: 8px;
}

.about-character__title {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}
.about-character__title::before {
  display: none;
}

.about-character__features {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 24px;
}
.about-character__features li {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.about-character__note {
  font-size: 14px;
  color: #9E9E9E;
}

.about-character__image {
  flex-shrink: 0;
  text-align: center;
}
.about-character__image img {
  width: 148px;
  height: 213px;
  aspect-ratio: 41/59;
  object-fit: contain;
}
@media (max-width: 768px) {
  .about-character__image img {
    width: clamp(60px, 19.73vw, 74px);
    height: auto;
  }
}

.about-character__copyright {
  font-size: 12px;
  color: #9E9E9E;
  margin-top: 8px;
}

.page-policy {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
@media (max-width: 768px) {
  .page-policy {
    padding: clamp(24px, 6.4vw, 32px) 5.33vw 48px;
  }
}

.page-policy__intro {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page-policy__intro {
    margin-bottom: 32px;
  }
}

.page-policy__section {
  margin-bottom: 70px;
}
.page-policy__section p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-policy__section {
    margin-bottom: 32px;
  }
}

.page-policy__heading {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
  border-left: none;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}
.page-policy__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 50px;
  background-color: #E8334A;
}
@media (max-width: 768px) {
  .page-policy__heading {
    font-size: clamp(18px, 5.33vw, 20px);
    padding-left: 28px;
  }
  .page-policy__heading::before {
    width: 14px;
    height: 14px;
  }
}

.page-policy__list {
  margin-bottom: 16px;
}
.page-policy__list li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.error404__heading {
  font-size: 32px;
  font-weight: 700;
  color: #E8334A;
  text-align: center;
  margin-bottom: 48px;
  border-left: none;
  padding-left: 0;
}
@media (max-width: 768px) {
  .error404__heading {
    font-size: 24px;
  }
}

.error404__body {
  text-align: center;
  line-height: 2;
}
.error404__body p + p {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .error404__body {
    text-align: left;
  }
}

html:not([lang=ja]) .pc-nav__list {
  align-items: flex-start;
}
html:not([lang=ja]) .pc-nav__label-ja {
  min-height: 3.5em;
}
html:not([lang=ja]) .page-about__anchor-nav .btn-pill {
  width: auto;
  min-width: 200px;
  max-width: 360px;
  height: auto;
  min-height: 60px;
  padding: 10px 24px;
  font-size: 14px;
}
html:not([lang=ja]) .page-about__anchor-nav .btn-pill--wide {
  width: auto;
  max-width: 420px;
}
html:not([lang=ja]) .about-table--officers th:first-child {
  width: auto;
  min-width: 120px;
  white-space: normal;
}
html:not([lang=ja]) .about-table--officers td:first-child,
html:not([lang=ja]) .about-table--officers td:nth-child(2) {
  white-space: normal;
}
html:not([lang=ja]) .about-table th {
  white-space: normal;
}
html:not([lang=ja]) .about-access-text {
  height: auto;
  min-height: 50px;
  padding: 12px 24px;
  font-size: 20px;
}
html:not([lang=ja]) .about-rules__chapter {
  word-break: break-word;
}
html:not([lang=ja]) .about-character__title {
  font-size: 18px;
}

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