@charset "UTF-8";
/* Modern & Accessible CSS Reset
  Based on Josh W. Comeau & Andy Bell's resets
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 水平スクロールバーのスペースを常に確保する（レイアウトの安定化） */
  scrollbar-gutter: stable;
}

html, body {
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

img, picture, video, canvas, svg {
  vertical-align: bottom;
  line-height: 1;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 注意: ul, ol の list-style: none; はここには含めません。
  Safari(VoiceOver)のバグで、list-styleを消すとリスト要素として
  読み上げられなくなる問題があるため。
  role="list" が明示的に付与されている場合のみ、リストスタイルをリセットする */
ul[role=list],
ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 10. 【重要】アニメーションを減らす設定（アクセシビリティ）
  OS設定で「視差効果を減らす」をオンにしているユーザーへの配慮 
*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**

  * ここからはHOBONICHI

**/
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #071D49;
  outline-offset: 2px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

/**  base  **/
[x-cloak],
[v-cloak] {
  display: none !important;
}

.device-sp {
  display: initial;
}
@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

body.scroll-lock {
  overflow: hidden;
}

/**  common  **/
body {
  font-family: "A1 Gothic M", sans-serif;
  background-color: #F1E880;
  color: #000;
  font-size: 0.875rem;
  line-height: 2;
  position: relative;
}
@media (min-width: 600px) {
  body {
    font-size: 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: #000;
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

.hide-fonts {
  font-size: 0;
  line-height: 0;
  color: transparent;
  pointer-events: none;
  user-select: none;
  position: absolute;
  opacity: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 992px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding-left: 1.25rem;
    padding-right: 2.5rem;
  }
}

.header-nav {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  height: 3rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .header-nav {
    background-color: transparent;
  }
}
.header-nav a {
  display: flex;
  padding: 0.75rem;
}
.header-nav a img {
  height: 1.25rem;
}
.header-nav button {
  margin-left: auto;
}
@media (min-width: 992px) {
  .header-nav button {
    display: none;
  }
}

.header-menu {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  font-size: 1.0625rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .header-menu {
    transform: translateX(0);
    position: relative;
    height: auto;
    width: auto;
  }
}
.header-menu button {
  align-self: flex-end;
  padding: 0.75rem;
}
@media (min-width: 992px) {
  .header-menu button {
    display: none;
  }
}
.header-menu a {
  text-decoration: none;
  display: block;
  padding: 0.75rem;
}
@media (min-width: 992px) {
  .header-menu a {
    line-height: 0.625rem;
    padding: 0.625rem 1.25rem;
  }
}
.header-menu ul {
  width: min(100% - 7.25rem, 25rem);
}
@media (min-width: 992px) {
  .header-menu ul {
    width: auto;
    display: flex;
  }
}
.header-menu li {
  border-bottom: 1px solid #000;
  text-align: center;
}
@media (min-width: 992px) {
  .header-menu li {
    border-bottom: none;
    border-right: 1px solid #000;
  }
}
.header-menu li img {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .header-menu li img {
    display: none;
  }
}
.header-menu.active {
  transform: translateX(0);
}

footer {
  position: relative;
  z-index: 100;
}
footer a {
  display: flex;
}

.footer-image {
  background: linear-gradient(0deg, #37D888, #F1E880);
  position: relative;
}
.footer-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, rgba(241, 232, 128, 0), #F1E880);
}
@media (min-width: 600px) {
  .footer-image::before {
    height: 48%;
  }
}
.footer-image img {
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100%;
}
@media (min-width: 600px) {
  .footer-image {
    height: 18.75rem;
  }
}
@media (min-width: 3844px) {
  .footer-image {
    height: auto;
  }
  .footer-image img {
    object-fit: contain;
  }
}

.footer-contents {
  background-color: #37D888;
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  padding-right: 3.125rem;
  padding-left: 3.125rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .footer-contents {
    gap: 0;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

.footer_logo a {
  display: block;
  width: min(100%, 31.25rem);
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3.75rem;
    margin-top: 5.375rem;
    margin-bottom: 4.125rem;
  }
}

.footer_share {
  font-family: "A1 Gothic B", sans-serif;
  font-size: 0.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.footer_share ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.footer_share li {
  width: 1.75rem;
}

@media (min-width: 992px) {
  .footer_mo {
    order: 1;
  }
}
.footer_mo ul {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
}
.footer_mo li:first-child {
  width: 9.1875rem;
}
.footer_mo li:last-child {
  width: 4.1875rem;
}

.footer_hobo {
  font-family: "A1 Gothic B", sans-serif;
  font-size: 0.75rem;
}
.footer_hobo ul {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.footer_hobo a {
  text-decoration: none;
}

.footer_store {
  font-size: 0.75rem;
  width: 82%;
}
.footer_store ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}
@media (min-width: 600px) {
  .footer_store ul {
    justify-content: center;
  }
}
.footer_store li:nth-child(2) {
  width: 100%;
}
@media (min-width: 600px) {
  .footer_store li:nth-child(2) {
    width: auto;
  }
}

.footer_copyright {
  text-align: center;
  font-size: 0.625rem;
}

/**  index以外全体  **/
main {
  position: relative;
}
main::before {
  content: "";
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 730/286;
  background-image: url(../images/header-bg-sp.webp);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  z-index: -1;
}
@media (min-width: 600px) {
  main::before {
    background-image: url(../images/header-bg.webp);
    height: 19.0625rem;
    aspect-ratio: initial;
    background-size: cover;
  }
}
@media (min-width: 1642px) {
  main::before {
    height: auto;
    aspect-ratio: 1642/305;
  }
}

.content-wrapper {
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: min(100% - 1.375rem, 50rem);
  padding: 2rem 1.125rem;
  margin-top: -5.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .content-wrapper {
    border-radius: 2.5rem;
    padding: 3rem 7.5rem 4.25rem;
    margin-top: -8.75rem;
  }
}
.content-wrapper h1 {
  font-size: 1.5rem;
  font-family: "A1 Gothic B", sans-serif;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .content-wrapper h1 {
    font-size: 2rem;
  }
}

.btn-blank {
  border-radius: 62.4375rem;
  border: 1.389px solid #000;
  background: #F9C8A8;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-family: "A1 Gothic B", sans-serif;
  height: 3.25rem;
  width: 17.5rem;
  gap: 0.5rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.btn-blank::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 1.75rem;
}
@media (min-width: 600px) {
  .btn-blank {
    font-size: 1.5rem;
    height: 4rem;
    width: 20.625rem;
    gap: 0.75rem;
  }
  .btn-blank::after {
    font-size: 2rem;
  }
}
.btn-blank span {
  position: relative;
  top: 1px;
}

@media (min-width: 600px) {
  .outline .content-wrapper {
    padding: 3rem 5rem 2.25rem;
  }
}
.outline h1 {
  margin-bottom: 2.25rem;
}
.outline .caption {
  width: min(100% - 4.5rem, 27.125rem);
  margin-right: auto;
  margin-left: auto;
}
.outline .outline-detail {
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .outline .outline-detail {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1.125rem;
    width: min(100% - 4.5rem, 27.125rem);
    margin-top: 2.25rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }
}
.outline .outline-detail dt {
  color: #E95513;
  font-family: "A1 Gothic B", sans-serif;
}
.outline .outline-detail dd {
  margin-bottom: 1em;
  grid-column-start: 2;
}
.outline .outline-detail br {
  display: block;
}
.outline .outline-gmap {
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .outline .outline-gmap {
    margin-bottom: 3.625rem;
  }
}
.outline .outline-gmap div {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.5px solid #939393;
}
@media (min-width: 600px) {
  .outline .outline-gmap div {
    aspect-ratio: 640/344;
  }
}
.outline .outline-gmap iframe {
  width: 100%;
  height: 100%;
}
.outline .outline-map {
  margin-bottom: 2.75rem;
}
@media (min-width: 600px) {
  .outline .outline-map {
    width: calc(100% - 5rem);
  }
}
.outline .tanoshimi {
  border: 1px solid #E95513;
  border-radius: 1rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 600px) {
  .outline .tanoshimi {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    padding: 3rem 2rem;
  }
}
.outline .tanoshimi > div {
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}
@media (min-width: 600px) {
  .outline .tanoshimi > div {
    padding-right: 0rem;
    padding-left: 0rem;
  }
}
.outline .tanoshimi-logo {
  width: 9.375rem;
}
@media (min-width: 600px) {
  .outline .tanoshimi-logo {
    width: 13.5rem;
  }
}
.outline .tanoshimi-banner {
  display: block;
  width: 15rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
.outline .tanoshimi-banner img {
  border-radius: 0.5rem;
  overflow: hidden;
}
.outline .tanoshimi-banner:hover img {
  filter: brightness(1.1);
  transition: filter 0.1s ease;
}
@media (min-width: 600px) {
  .outline .tanoshimi-banner {
    width: 21.875rem;
    margin-bottom: 0.75rem;
  }
}
.outline hr {
  width: 100%;
  border: none;
  border-top: 1px solid #E95513;
}
.outline h2 {
  font-size: 1.25rem;
  font-family: "A1 Gothic B", sans-serif;
  text-align: center;
  color: #E95513;
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .outline h2 {
    font-size: 1.5rem;
    margin-top: 0.75rem;
  }
}
.outline .link-stamp {
  border-radius: 62.4375rem;
  background: #E95513;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  height: 3rem;
  width: 12.5rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
.outline .app {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.5rem;
  background-color: rgba(233, 85, 19, 0.2);
  border-radius: 0.5rem;
  padding: 1rem 2.625rem;
  font-size: 1rem;
  align-items: center;
}
@media (min-width: 600px) {
  .outline .app {
    padding: 1.5rem;
    grid-template-columns: 5rem 1fr;
    gap: 0rem 1.75rem;
  }
  .outline .app > img {
    grid-row: 1/3;
  }
}
.outline .app-link {
  display: flex;
  flex-direction: column;
  grid-column: 1/3;
  gap: 0.625rem;
}
@media (min-width: 600px) {
  .outline .app-link {
    grid-column: inherit;
    flex-direction: row;
    gap: 1rem;
  }
}
.outline .app-link a {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}

.kuji h1 {
  margin-bottom: 1rem;
  font-feature-settings: "palt";
  font-size: 1.25rem;
}
@media (min-width: 600px) {
  .kuji h1 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    font-feature-settings: normal;
  }
}
.kuji h1 small {
  font-size: 1.125rem;
}
@media (min-width: 600px) {
  .kuji h1 small {
    font-size: 1.5rem;
  }
}
.kuji h1 br {
  display: block;
}
.kuji .caption {
  line-height: 1.8;
}
.kuji .caption p {
  margin-bottom: 1em;
}
.kuji .caption small {
  font-size: 0.875rem;
}
.kuji .kuji-photo {
  display: block;
  border-radius: 0.5rem;
  width: min(100%, 25.125rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.75rem;
}
@media (min-width: 600px) {
  .kuji .kuji-photo {
    margin-bottom: 1.5rem;
  }
}
.kuji .btn-blank {
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  gap: 1.125rem;
}
.kuji .btn-blank:hover {
  filter: brightness(1.1);
  transition: filter 0.1s ease;
}
.kuji .btn-blank small {
  font-size: 0.8125rem;
  display: block;
}
.kuji .kuji-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
  margin-bottom: 3.625rem;
}
@media (min-width: 600px) {
  .kuji .kuji-detail {
    margin-top: 1.5rem;
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 600px) {
  .kuji .kuji-date {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1.125rem;
  }
}
.kuji .kuji-info small {
  font-size: 0.875rem;
}
@media (min-width: 600px) {
  .kuji .kuji-info small {
    display: block;
    text-indent: -1em;
    padding-left: 1em;
    font-feature-settings: inherit;
  }
}
.kuji .kuji-info .btn-blank {
  background-color: #37D888;
  line-height: 0;
  gap: 0.5rem;
  width: 17.0625rem;
  height: 3.5rem;
}
.kuji .kuji-info .btn-blank::after {
  font-size: 1.5rem;
}
.kuji .kuji-info-mogily {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem 1.5rem;
  margin-bottom: 4.125rem;
  margin-top: 1.3125rem;
}
@media (min-width: 600px) {
  .kuji .kuji-info-mogily {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    margin-top: 1.75rem;
    margin-bottom: 4.875rem;
  }
}
.kuji .kuji-info-mogily img {
  width: 7rem;
}
@media (min-width: 600px) {
  .kuji .kuji-info-mogily img {
    width: 9.125rem;
  }
}
.kuji .kuji-info-mogily div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 600px) {
  .kuji .kuji-info-mogily div {
    flex-direction: column-reverse;
  }
}
.kuji .kuji-info-mogily p {
  font-size: 0.875rem;
}
.kuji .kuji-info-mogily br {
  display: block;
}
.kuji dt {
  color: #E95513;
  font-family: "A1 Gothic B", sans-serif;
}
.kuji dd {
  line-height: 1.8;
  margin-bottom: 1em;
}
.kuji dd dt {
  color: #37D888;
  margin-top: 1em;
}
.kuji dd dd:nth-last-of-type(2) {
  margin-bottom: 2em;
}
@media (min-width: 600px) {
  .kuji dd dd:nth-last-of-type(2) {
    margin-bottom: 3em;
  }
}
.kuji dd li {
  margin-bottom: 1em;
}
.kuji small {
  font-feature-settings: "palt";
}
.kuji .kuji-map {
  display: block;
  width: min(100%, 29.75rem);
  margin-top: 2rem;
  margin-bottom: 1.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .kuji .kuji-map {
    margin-top: 3rem;
    margin-bottom: 2.25rem;
  }
}
.kuji ul {
  padding-inline-start: 2em;
  margin-bottom: 2em;
}

.admission .caption {
  line-height: 1.8;
}
.admission .admission-order {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 600px) {
  .admission .admission-order {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.admission .admission-order div {
  color: #E95513;
  font-feature-settings: "palt";
}
.admission dt {
  margin-bottom: 0.5em;
}
.admission dd {
  font-family: "A1 Gothic R", sans-serif;
}
.admission ul {
  padding-inline-start: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contents .caption {
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .contents .caption {
    margin-bottom: 3rem;
    text-align: center;
  }
}
.contents ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .contents ul {
    gap: 1.875rem;
  }
}
.contents a {
  display: block;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
.contents a:hover img {
  filter: brightness(1.1);
  transition: filter 0.1s ease;
}
@media (min-width: 600px) {
  .contents a {
    width: 30rem;
  }
}
.contents .thumb {
  border-radius: 1rem;
  overflow: hidden;
}

.goods > div {
  padding-right: 1.375rem;
  padding-left: 1.375rem;
}
.goods h1 {
  font-size: 1.75rem;
  font-family: "A1 Gothic B", sans-serif;
  text-align: center;
}
@media (min-width: 600px) {
  .goods h1 {
    font-size: 2.875rem;
  }
}
.goods h2 {
  font-size: 1.5rem;
  font-family: "A1 Gothic B", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3125rem;
}
.goods h2 img {
  width: 9.6875rem;
}
@media (min-width: 600px) {
  .goods h2 {
    font-size: 2.375rem;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.375rem;
  }
  .goods h2 img {
    width: 13.9375rem;
  }
}
.goods .caption {
  line-height: 1.8;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .goods .caption {
    text-align: center;
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
}
.goods ul {
  text-align: center;
  display: grid;
  gap: 1.5rem 1.25rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3.125rem;
}
@media (min-width: 600px) {
  .goods ul {
    gap: 2.5rem 1.75rem;
    grid-template-columns: repeat(auto-fit, 15rem);
    max-width: 65.25rem;
    margin-bottom: 3.75rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .goods .goods-list-summers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .goods .goods-list-summers li {
    width: 15rem;
  }
}
.goods a {
  text-decoration: none;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.goods .name br:not(.device-sp) {
  display: block;
}
.goods .thumb {
  border-radius: 0.5rem;
  overflow: hidden;
}
.goods .thumb:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.goods .price {
  font-size: 0.75rem;
}
@media (min-width: 600px) {
  .goods .price {
    font-size: 1rem;
  }
}
@media (min-width: 600px) {
  .goods .tax {
    font-size: 0.875rem;
  }
}
.goods .date-0525 .thumb,
.goods .pre-sale .thumb {
  position: relative;
}
.goods .date-0525 .thumb::before,
.goods .pre-sale .thumb::before {
  z-index: 1;
  font-size: 0.625rem;
  position: absolute;
  bottom: 0.375rem;
  right: 0.375rem;
  content: "";
  display: block;
  padding: 0.125rem 0.1875rem;
  border: 0.643px solid #9F9E9E;
}
@media (min-width: 600px) {
  .goods .date-0525 .thumb::before,
  .goods .pre-sale .thumb::before {
    font-size: 0.75rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.goods .date-0525 .thumb::after,
.goods .pre-sale .thumb::after {
  position: absolute;
  top: 0.4375rem;
  left: 0.3125rem;
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url(../images/goods/ico-new.png);
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
@media (min-width: 600px) {
  .goods .date-0525 .thumb::after,
  .goods .pre-sale .thumb::after {
    top: 0.625rem;
    left: 0.625rem;
    width: 3.3125rem;
    height: 3.3125rem;
  }
}
.goods .pre-sale .thumb::before {
  content: "会場先行発売";
  color: #fff;
  background: #7B7676;
}
.goods .date-0525 .thumb::before {
  content: "5/25 AM11時発売";
  color: #4B4B4B;
  background-color: rgba(255, 255, 255, 0.65);
}
.goods .goods-note {
  font-family: "A1 Gothic R", sans-serif;
  display: flex;
  margin-bottom: 3.25rem;
}
.goods .goods-note::before {
  content: "※";
}
@media (min-width: 600px) {
  .goods .goods-note {
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
  }
}
.goods .goods-banner {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goods .goods-banner a {
  filter: drop-shadow(0 4px 4px 0 rgba(0, 0, 0, 0.2));
}
.goods .goods-banner a:hover img {
  filter: brightness(1.1);
  transition: filter 0.1s ease;
}
@media (min-width: 600px) {
  .goods .goods-banner a {
    width: 28.5rem;
  }
}