@charset "UTF-8";

/**  base  **/
:root {
  --c-red: #a71510;
  --c-brown: #550801;
  --c-dark-green: #002c29;
  --c-black: #000000;
  --c-white: #ffffff;

  --font-hina-mincho: "Hina Mincho", serif;
  --font-noto-serif-jp: "Noto Serif JP", serif;
  --font-zen-maru-gothic: "Zen Maru Gothic", sans-serif;
  --font-gothic-a1: "Gothic A1", sans-serif;

  --z-header: 100;
  --z-nav: 101;
  --z-nav-button: 102;

  --sp-gutter-x: 1.5rem;
  --sp-gutter-x-sm: 1.125rem;

  --pc-gutter-x: 2.5rem;

  --sp-max-width: 580px;
  --pc-width: 94%;
}

p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

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

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

a {
  color: currentColor;
  text-decoration: none;
  transition: opacity 0.35s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-family: var(--font-noto-serif-jp);
  color: var(--c-white);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "A1 Gothic B";
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.svg-symbol {
  display: none;
}

svg {
  display: block;
}

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

.pc {
  display: none;
}

.tab {
  display: none;
}

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

@media (min-width: 992px) {
  .pc {
    display: block;
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-100%);
  transition: transform 0.35s;
}

.header.is-visible {
  transform: translateY(0);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.44rem;
  height: 3rem;
}

.header-logo {
  max-width: 12rem;
  margin-right: 2.875rem;
}

.header-menu-button {
  position: fixed;
  top: 0.78rem;
  right: 1.34rem;
  display: block;
  z-index: var(--z-nav-button);
  width: 1.875rem;
  height: 1.4375rem;
}

.header-menu-button span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background: var(--c-white);
  border-radius: 100vmax;
  transition-property: transform, background;
  transition-duration: 0.35s;
}

.header-menu-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.header-menu-button span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-menu-button span:nth-child(3) {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
}

.header-menu-button[aria-expanded="true"] span {
  background: var(--c-black);
}

.header-menu-button[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-menu-button[aria-expanded="true"] span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header-pc-nav {
  display: none;
}

@media (min-width: 992px) {
  .header__inner {
    padding-inline: 3.87rem 3.44rem;
    height: 3.625rem;
  }

  .header-logo {
    max-width: 16.375rem;
    margin-right: 2.875rem;
  }

  .header-menu-button {
    display: none;
  }

  .header-pc-nav {
    display: flex;
  }

  .header-pc-nav-list {
    display: flex;
    gap: 2.06rem;
  }

  .header-pc-nav-link {
    position: relative;
    font-family: var(--font-hina-mincho);
    font-size: 1.0625rem;
    color: var(--c-white);
  }

  .header-pc-nav-link::after {
    content: "";
    position: absolute;
    top: calc(100% + 0.16rem);
    left: -0.28rem;
    width: calc(100% + 0.28rem * 2);
    height: 0.1875rem;
    background: var(--c-red);
    border-radius: 100vmax;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
  }

  @media (hover: hover) {
    .header-pc-nav-link:hover {
      opacity: 1;
    }

    .header-pc-nav-link:hover::after {
      transform: scaleX(1);
    }
  }
}

/* nav */

.nav {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 5.7rem 2.75rem 3.44rem;
  z-index: var(--z-nav);
  background: var(--c-white);
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.35s;
  overflow-y: auto;
}

.nav a {
  color: var(--c-black);
}

.nav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  height: 100%;
  max-height: 30.75rem;
}

.nav-list {
  display: grid;
  gap: 1.62rem;
  font-family: var(--font-hina-mincho);
  line-height: 1;
  font-size: 1.375rem;
}

.nav-footer-share {
  display: flex;
  align-items: center;
  gap: 1.63rem;
}

.nav-footer-share__title {
  font-family: var(--font-zen-maru-gothic);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.nav-footer-share-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-footer-share-list li {
  width: 1.75rem;
}

.nav-footer-logo {
  display: flex;
  gap: 1.72rem;
  margin-top: 1.88rem;
}

.nav-footer-logo-item:nth-child(1) {
  width: 7.1875rem;
}

.nav-footer-logo-item:nth-child(2) {
  width: 2.9375rem;
}

.nav-footer-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.nav-footer-contact-link {
  font-family: var(--font-zen-maru-gothic);
  font-size: 0.75rem;
}

.nav-footer-contact-link::before {
  content: "●";
}

@media (min-width: 992px) {
  .nav {
    display: none;
  }
}

/* footer */
.footer {
  padding-block: 4rem;
  color: var(--c-white);
  background: var(--c-black);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - var(--sp-gutter-x) * 2);
  margin-inline: auto;
}

.footer-share {
  display: flex;
  align-items: center;
  gap: 1.63rem;
  font-family: var(--font-zen-maru-gothic);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-share-list {
  display: flex;
  gap: 1.25rem;
}

.footer-share-list li {
  width: 1.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 2.12rem;
  margin-top: 2rem;
}

.footer-logo-item:nth-child(1) {
  width: 6.5625rem;
}

.footer-logo-item:nth-child(2) {
  width: 4.1875rem;
}

.footer-contact {
  display: flex;
  gap: 0.88rem;
  margin-top: 2rem;
  font-family: var(--font-zen-maru-gothic);
  font-weight: 700;
  font-size: 0.75rem;
}

.footer-contact-link::before {
  content: "●";
}

.footer-nav {
  margin-top: 3.38rem;
  font-family: var(--font-gothic-a1);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2em;
  font-size: 0.75rem;
  padding-inline: 2rem;
}

.footer-nav-link {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 2.56rem;
  font-family: var(--font-gothic-a1);
  font-weight: 400;
  font-size: 0.625rem;
}

@media ((min-width: 992px)) {
  .footer {
    padding-block: 5rem 4.37rem;
  }

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - var(--pc-gutter-x) * 2);
  }

  .footer-logo {
    gap: 2.06rem;
    margin-top: 0;
    margin-left: 6rem;
    order: 3;
  }

  .footer-logo-item:nth-child(1) {
    width: 6.5625rem;
  }

  .footer-logo-item:nth-child(2) {
    width: 4.1875rem;
  }

  .footer-contact {
    gap: 2rem;
    margin-left: 3.25rem;
    margin-top: 0;
  }

  .footer-contact-link::before {
    content: "●";
  }

  .footer-nav {
    order: 4;
    margin-top: 3.63rem;
    width: 100%;
  }

  .footer-nav-list {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    padding-inline: 0;
  }

  .footer-nav-item:not(:last-child)::after {
    content: "  ｜  ";
  }

  .footer-nav-link {
    text-decoration: underline;
  }

  .footer-copy {
    order: 5;
    width: 100%;
    margin-top: 1.06rem;
    text-align: center;
  }
}

/* mv */
.mv {
  --sp-width: 365;
  --sp-height: 648;
  --pc-width: 1440;
  --pc-height: 810;
  background: top left / 308px auto repeat url("../img/mv_bg_sp.webp");
  overflow: hidden;
}

.mv img {
  width: 100%;
}

.mv__inner {
  position: relative;
  aspect-ratio: var(--sp-width) / var(--sp-height);
}

.mv__title {
  position: absolute;
  z-index: 4;
  top: calc(27 / var(--sp-height) * 100%);
  left: calc(25 / var(--sp-width) * 100%);
  width: calc(323 / var(--sp-width) * 100%);
}

.mv__gift-box {
  position: absolute;
  z-index: 3;
  top: calc(116 / var(--sp-height) * 100%);
  left: calc(39 / var(--sp-width) * 100%);
  width: calc(93 / var(--sp-width) * 100%);
  transform: rotate(-7.04deg);
}

.mv__date {
  position: absolute;
  z-index: 4;
  top: calc(585 / var(--sp-height) * 100%);
  left: calc(23 / var(--sp-width) * 100%);
  width: calc(318 / var(--sp-width) * 100%);
}

.mv__logo {
  position: absolute;
  z-index: 4;
  top: calc(491 / var(--sp-height) * 100%);
  left: calc(37 / var(--sp-width) * 100%);
  width: calc(48 / var(--sp-width) * 100%);
}

.mv__img {
  position: absolute;
  width: calc(224 / var(--sp-width) * 100%);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
}

.mv__img--01 {
  top: calc(160 / var(--sp-height) * 100%);
  left: calc(113 / var(--sp-width) * 100%);
  transform: rotate(-1.93deg);
}

.mv__img--02 {
  top: calc(279 / var(--sp-height) * 100%);
  left: calc(23 / var(--sp-width) * 100%);
  transform: rotate(2.18deg);
}

.mv__img--03 {
  top: calc(379 / var(--sp-height) * 100%);
  left: calc(98 / var(--sp-width) * 100%);
  transform: rotate(-9.43deg);
}

@media (min-width: 600px) {
  .mv {
    background: top left / 788px auto repeat url("../img/mv_bg_pc.webp");
  }

  .mv__inner {
    aspect-ratio: var(--pc-width) / var(--pc-height);
  }

  .mv__title {
    top: calc(61 / var(--pc-height) * 100%);
    left: calc(122 / var(--pc-width) * 100%);
    width: calc(1039 / var(--pc-width) * 100%);
  }

  .mv__gift-box {
    top: calc(76 / var(--pc-height) * 100%);
    left: calc(1196 / var(--pc-width) * 100%);
    width: calc(122 / var(--pc-width) * 100%);
    transform: rotate(0);
  }

  .mv__date {
    top: calc(692 / var(--pc-height) * 100%);
    left: calc(100 / var(--pc-width) * 100%);
    width: calc(1130 / var(--pc-width) * 100%);
  }

  .mv__logo {
    top: calc(675 / var(--pc-height) * 100%);
    left: calc(1274 / var(--pc-width) * 100%);
    width: calc(65 / var(--pc-width) * 100%);
  }

  .mv__img {
    width: calc(584 / var(--pc-width) * 100%);
  }

  .mv__img--01 {
    top: calc(235 / var(--pc-height) * 100%);
    left: calc(996 / var(--pc-width) * 100%);
    transform: rotate(-1.93deg);
  }

  .mv__img--02 {
    top: calc(233 / var(--pc-height) * 100%);
    left: calc(-120 / var(--pc-width) * 100%);
    transform: rotate(-3.06deg);
  }

  .mv__img--03 {
    top: calc(275 / var(--pc-height) * 100%);
    left: calc(434 / var(--pc-width) * 100%);
    transform: rotate(2.18deg);
  }
}

/* yodogawa */
.yodogawa {
  padding-block: 4.25rem 3.74rem;
  color: var(--c-white);
  background: var(--c-brown);
  overflow: hidden;
}

.yodogawa__inner {
  display: flex;
  flex-direction: column;
  gap: 3.28rem;
  width: calc(100% - var(--sp-gutter-x) * 2);
  max-width: var(--sp-max-width);
  margin-inline: auto;
}

.yodogawa__main {
}

.yodogawa__title {
  font-family: var(--font-hina-mincho);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.yodogawa__text {
  margin-top: 1.44rem;
  font-size: 0.875rem;
  line-height: 2;
}

.yodogawa__images {
}

.yodogawa__img {
  position: relative;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
}

.yodogawa__img--01 {
  z-index: 2;
  width: 103%;
  margin-left: -3.13rem;
  transform: rotate(-7.963deg);
}

.yodogawa__img--02 {
  width: 64.3%;
  margin-top: -0.97763rem;
  margin-left: auto;
  margin-right: -0.36rem;
  transform: rotate(7.615deg);
}

@media (min-width: 992px) {
  .yodogawa {
    padding-block: 5.75rem 13.93rem;
  }

  .yodogawa__inner {
    flex-direction: row-reverse;
    gap: 2rem;
    justify-content: space-between;
    width: calc(100% - var(--pc-gutter-x) * 2);
    max-width: 1175px;
    padding-left: 4.3rem;
  }

  .yodogawa__main {
    flex-shrink: 0;
    width: max-content;
  }

  .yodogawa__title {
    font-size: 1.5rem;
  }

  .yodogawa__text {
    margin-top: 2.19rem;
    padding-bottom: 7.89rem;
    font-size: 1rem;
  }

  .yodogawa__images {
    position: relative;
    max-width: 44.625rem;
    align-self: flex-end;
  }

  .yodogawa__img--01 {
    z-index: 2;
    width: 100%;
    margin-left: 0;
  }

  .yodogawa__img--02 {
    position: absolute;
    top: 83.4%;
    right: -26.19%;
    bottom: 0;
    width: 44.1%;
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
  }
}

/* common */
.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-hina-mincho);
  font-size: 1.5rem;
  font-weight: 400;
}

.section-title::before {
  content: "";
  display: block;
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url("../img/giftbox.webp");
}

@media (min-width: 992px) {
  .section-title {
    gap: 1.3rem;
    font-size: 2rem;
    line-height: 1.125;
  }

  .section-title::before {
    width: 2.625rem;
  }
}

/* info */
.info {
  scroll-margin-top: 3rem;
  padding-block: 4.5rem 4.76rem;
  color: var(--c-white);
  background: center / cover no-repeat url("../img/infomation_bg_sp.webp");
}

.info__inner {
  width: calc(100% - var(--sp-gutter-x) * 2);
  max-width: var(--sp-max-width);
  margin-inline: auto;
}

.info__text {
  margin-top: 1.44rem;
  font-size: 0.875rem;
  line-height: 2;
}

.info-list {
  margin-top: 2em;
  font-size: 0.875rem;
  line-height: 2;
}

.info-list a {
  text-decoration: underline;
}

.info-list dt {
  font-weight: 700;
}

.info-list dt::before {
  content: "●";
}

.info-list dt:not(:first-of-type) {
  margin-top: 1.3rem;
}

.info__buttons {
  display: grid;
  justify-content: center;
  gap: 0.76rem;
  margin-top: 2.2rem;
}

.info-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding-inline: 0.81rem;
  min-height: 3.93119rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.66;
  background: var(--c-brown);
  border: 1px solid var(--c-brown);
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  /* transition-property: background, color; */
  /* transition-duration: 0.35s; */
}

.info-button img {
  width: 1.4375rem;
}

@media (min-width: 992px) {
  .info {
    scroll-margin-top: 3.625rem;
    padding-block: 7.44rem 7.56rem;
    background: center / cover no-repeat url("../img/infomation_bg_pc.webp");
  }

  .info__inner {
    display: grid;
    justify-content: center;
    width: calc(100% - var(--pc-gutter-x) * 2);
    max-width: unset;
    margin-inline: auto;
  }

  .info__text {
    margin-top: 1.88rem;
    font-size: 1rem;
  }

  .info-list {
    margin-top: 2em;
    font-size: 1rem;
    line-height: 2;
  }

  .info-list dt {
    display: flex;
  }

  .info-list dt:not(:first-of-type) {
    margin-top: 1.7rem;
  }

  .info__buttons {
    gap: 1.31rem;
    margin-top: 2.44rem;
  }

  .info-button {
    gap: 0.87rem;
    padding-inline: 1.75rem;
    min-height: 5.25rem;
    font-size: 1.125rem;
    line-height: 2.22;
    background: var(--c-brown);
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.1);
  }

  .info-button img {
    width: 1.4375rem;
  }
}

@media (hover: hover) {
  .info-button:hover {
    /* opacity: 1; */
  }
}

/* access */
.access {
  scroll-margin-top: 3rem;
  padding-block: 4.5rem 4.63rem;
  background: var(--c-dark-green);
}

.access__inner {
  width: calc(100% - var(--sp-gutter-x-sm) * 2);
  max-width: var(--sp-max-width);
  margin-inline: auto;
}

.access-content {
  margin-top: 2.62rem;
}

.access-section:not(:first-of-type) {
  margin-top: 4.75rem;
}

.access-section__title img {
  width: auto;
  height: 1.9375rem;
  margin-inline: auto;
}

.access-section__list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 1.56rem;
  padding-left: 2.44rem;
  margin-top: 0.75rem;
  line-height: 2;
}

.access-section__list dt {
  font-weight: 700;
  font-size: 0.875rem;
}

.access-section__list dd {
  font-size: 0.875rem;
}

.access-section__list small {
  font-size: 0.75rem;
}

.access-section__list address {
  font-style: normal;
  font-size: 0.75rem;
}

.access-section__list dd span {
  display: inline-block;
}

.access-section__list p:not(:first-child) {
  margin-top: 2em;
}

.access-section-button {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 1.5rem;
  margin-top: 0.5rem;
  padding: 0.06rem 0.81rem;
  font-family: var(--font-zen-maru-gothic);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-black);
  border-radius: 100vmax;
}

.access-section__map {
  margin-top: 0.88rem;
  width: 100%;
  aspect-ratio: 328/217;
}

.access-section__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 992px) {
  .access {
    scroll-margin-top: 3.625rem;
    padding-block: 7.06rem 7.56rem;
  }

  .access__inner {
    width: calc(100% - var(--pc-gutter-x) * 2);
    max-width: 44.5rem;
  }

  .access-content {
    margin-top: 2.25rem;
  }

  .access-section:not(:first-of-type) {
    margin-top: 8.31rem;
  }

  .access-section {
    display: grid;
    grid-template-columns: 13.25rem minmax(0, 1fr);
    gap: 2.06rem;
  }

  .access-section__title {
    padding-top: 0.31rem;
  }

  .access-section__title img {
    height: 2.25rem;
  }

  .access-section__list {
    gap: 0.75rem 1.56rem;
    padding-left: 0;
    margin-top: 0;
  }

  .access-section__list dt {
    font-size: 1rem;
  }

  .access-section__list dd {
    font-size: 1rem;
  }

  .access-section__list small {
    font-size: 0.875rem;
  }

  .access-section__list address {
    font-size: 0.875rem;
  }

  .access-section__list dd span {
    display: inline-block;
  }

  .access-section__list p:not(:first-child) {
    margin-top: 2em;
  }

  .access-section__map {
    grid-column: span 2;
    margin-top: 0;
    aspect-ratio: 445/175;
  }
}

/* goods */
.goods {
  scroll-margin-top: 3rem;
  padding-block: 4.5rem 4.7rem;
  background: top left / 308px auto repeat url("../img/goods_bg_sp.webp");
  overflow: hidden;
}

.goods__inner {
  position: relative;
  width: calc(100% - var(--sp-gutter-x-sm) * 2);
  max-width: var(--sp-max-width);
  margin-inline: auto;
}

.goods__lead {
  margin-top: 1.3rem;
  font-family: var(--font-hina-mincho);
  font-size: 0.875rem;
  line-height: 2;
}

.goods-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.13rem 1rem;
  margin-top: 2.2rem;
}

.goods-items::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 0.62rem;
  display: block;
  width: 28.1%;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url("../img/giftbox_open.webp");
}

.goods-item {
  font-family: var(--font-gothic-a1);
  font-size: 0.75rem;
  line-height: 1.33;
  text-align: center;
}

.goods-item__link {
  display: block;
}

.goods-item__img {
  position: relative;
  border: 1px solid #c2c2c2;
  border-radius: 0.5rem;
  overflow: hidden;
}

.goods-item__on-sale {
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
  width: 75%;
  max-width: 7.1875rem;
}

.goods-item__new {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 23%;
  max-width: 2.1875rem;
}

.goods-item__sold-out {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 39%;
  max-width: 3.75rem;
}

.goods-item__name {
  text-wrap: balance;
  margin-top: 0.88rem;
}

.goods-item--img-only {
}

.goods-item--img-only--01 .goods-item--img-only__img {
  width: 87%;
  margin-inline: auto;
  transform: rotate(5.679deg);
}

.goods-item--img-only__img {
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
}

.goods-item--img-only--02 {
  display: none;
}

.goods-banner {
  display: block;
  width: fit-content;
  max-width: 17.20688rem;
  margin-top: 3.38rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .goods {
    scroll-margin-top: 3.625rem;
    padding-block: 7.56rem;
    background: top left / 787px auto repeat url("../img/goods_bg_pc.webp");
  }

  .goods__inner {
    width: calc(100% - 7rem * 2);
    max-width: 67.5rem;
    margin-inline: auto;
  }

  .goods__inner::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -2.5rem;
    width: 7.125rem;
    max-width: calc((100% - 31.1875rem) / 2 - 1rem);
    aspect-ratio: 1/1;
    background: center / contain no-repeat url("../img/giftbox_open.webp");
  }

  .goods__lead {
    text-align: center;
    margin-top: 1.7rem;
    font-size: 1.125rem;
    line-height: 1.77;
  }

  .goods-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.63rem 2.5rem;
    margin-top: 4.7rem;
  }

  .goods-items::after {
    display: none;
  }

  .goods-item {
    font-size: 0.875rem;
    line-height: 1.57;
  }

  .goods-item__img {
    border-radius: 0.25rem;
  }

  .goods-item__on-sale {
    bottom: 0.38rem;
    left: 0.38rem;
    width: 50.5%;
    max-width: 7.5625rem;
  }

  .goods-item__new {
    position: absolute;
    top: 0.38rem;
    left: 0.38rem;
    width: 20%;
    max-width: 3rem;
  }

  .goods-item__sold-out {
    position: absolute;
    top: 0.38rem;
    right: 0.38rem;
    width: 25%;
    max-width: 3.75rem;
  }

  .goods-item__name {
    margin-top: 1.25rem;
  }

  .goods-item--img-only--01 .goods-item--img-only__img {
    width: 82.2356%;
    margin-top: -0.7rem;
    margin-right: -1.48rem;
    margin-left: auto;
  }

  .goods-item--img-only__img {
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
  }

  .goods-item--img-only--02 {
    display: block;
  }
  .goods-item--img-only--02 .goods-item--img-only__img {
    width: 123.33%;
    margin-top: 0.97rem;
    margin-left: -5.07rem;
    transform: rotate(-8.411deg);
  }

  .goods-banner {
    max-width: 31.1875rem;
    margin-top: 7.3rem;
  }
}

/* content */
.content {
  scroll-margin-top: 3rem;
  padding-block: 4.5rem 8.44rem;
  background: center / cover no-repeat url("../img/content_bg_sp.webp");
}

.content__inner {
  display: grid;
  justify-items: center;
  width: calc(100% - var(--sp-gutter-x) * 2);
  max-width: var(--sp-max-width);
  margin-inline: auto;
}

.content__lead {
  margin-top: 1.31rem;
  font-family: var(--font-hina-mincho);
  font-size: 0.875rem;
  line-height: 2;
}

.content-coming-soon {
  width: 100%;
  max-width: 15.25rem;
  margin-block: 13.56rem 8.06rem;
}

.content__list {
  display: grid;
  gap: 1.56rem;
  max-width: 25rem;
  margin-top: 1.31rem;
  margin-inline: var(--font-gothic-a1);
}

.content__list-item {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .content {
    scroll-margin-top: 3.625rem;
    display: grid;
    align-items: center;
    padding-block: 7.5rem 9.37rem;
    min-height: 54.25rem;
    background: center / cover no-repeat url("../img/content_bg_pc.webp");
  }

  .content__inner {
    display: grid;
    justify-items: center;
    align-content: center;
    width: calc(100% - var(--pc-gutter-x) * 2);
    margin-inline: auto;
  }

  .content__lead {
    margin-top: 1.7rem;
    font-size: 1.125rem;
    line-height: 1.77;
  }

  .content-coming-soon {
    width: 100%;
    max-width: 20.75rem;
    margin-block: 5rem 0;
  }

  .content__list {
    display: grid;
    gap: 2rem;
    max-width: 25rem;
    margin-top: 2.94rem;
    margin-inline: var(--font-gothic-a1);
  }
}
