/** @format */

@charset "UTF-8";
/** @format */
/** @format */
/** @format */
/** @format */
html {
  font-size: 16px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  background-color: #fffaf2;
}

.mv__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header {
  height: 100vh;
  width: 285px;
}
@media screen and (max-width: 768px) {
  .header {
    width: auto;
    height: auto;
  }
}

.header__logo {
  width: 390px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: fixed;
    z-index: 200;
    width: 164px;
    top: 0;
    left: 0;
  }
}

.header__nav {
  padding-left: 40px;
  width: 305px;
}

.nav__item:not(:first-child) {
  margin-top: 40px;
}

.nav__link {
  color: #985a02;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Kiwi Maru", serif;
}

.nav__caption {
  color: #f3a7b6;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inria Sans", sans-serif;
  display: block;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger.is-active {
  top: 32px;
  right: 20px;
}

.hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #f3a7b6;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}

.hamburger.is-active span {
  background-color: #fff;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fac170;
  width: 100%;
  height: 100%;
  z-index: 3000;
}

.drawer-menu.is-active {
  display: block;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.drawer-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 59px;
}

.drawer-menu__link {
  color: #fff;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav__caption.drawer-caption {
  font-size: 20px;
}

.drawer-menu__link.drawer-menu__link--contact {
  background-color: rgba(152, 90, 2, 0.6);
  border-radius: 6px;
  padding: 10px 5px;
  width: 100%;
  text-align: center;
}

/* === 親要素に relative を付けておく === */
.main {
  position: relative;
}

/* === block: cloud === */
.cloud {
  display: none;
  position: fixed;
  bottom: 16px; /* お好みで調整 */
  right: 16px; /* お好みで調整 */
  width: 371px;
  height: 222px;
  padding: 5px;
  background: url("../images/cloud-bg.svg") no-repeat center/cover;
  z-index: 10;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .cloud {
    background-image: none;
    width: 100%;
    height: auto;
  }
}

/* === elements === */
.cloud__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cloud__list {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.cloud__item {
  width: 153px;
  height: auto;
  background-color: #f5f9ff;
  border-radius: 40px;
  padding: 10px 12px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s -webkit-box-shadow;
  transition: 0.3s -webkit-box-shadow;
  transition: 0.3s box-shadow;
  transition: 0.3s box-shadow, 0.3s -webkit-box-shadow;
}
.cloud__item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .cloud__item {
    width: 100px;
  }
}

.cloud__item:last-child {
  margin-top: 20px;
}

.icon__menu {
  cursor: pointer;
  display: none;
}

.icon__text {
  font-family: "Kiwi Maru", serif;
  color: #985a02;
  font-size: 24px;
  position: absolute;
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -47%);
  transform: translate(-50%, -47%);
}
@media screen and (max-width: 1100px) {
  .icon__text {
    font-size: 20px;
  }
}

/* fixed 用クラスが付いたときだけ表示 */
.icon__menu--fixed {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex; /* または flex / block など適宜 */
  position: fixed;
  background-image: url(../images/menu__icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 15%;
  height: 30%;
  position: fixed;
  left: 1%;
  top: 3%;
  z-index: 200;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .icon__menu--fixed {
    top: 12px;
    right: 12px;
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .icon__menu--fixed {
    top: 12px;
    right: 12px;
    background-size: contain;
  }
}

/*―――― menu-drawer ――――*/
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.menu-drawer--open {
  pointer-events: auto;
}

/* オーバーレイ */
.menu-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.menu-drawer--open .menu-drawer__overlay {
  opacity: 1;
}

/* パネル */
/* パネル本体を左側に隠す */
.menu-drawer__panel {
  position: absolute;
  top: 0;
  left: -300px; /*→ 左隠しに */
  width: 300px;
  height: 100%;
  background-color: #f3f9e0;
  padding: 32px 24px;
  -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1); /* ← シャドウも左寄りに */
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease; /* ← right→left */
}
@media screen and (max-width: 768px) {
  .menu-drawer__panel {
    display: none;
  }
}

.menu-drawer--open .menu-drawer__panel {
  left: 0; /* ← open 時は left:0 で見せる */
}

/* スマホ幅も同様に */
@media screen and (max-width: 768px) {
  .menu-drawer__panel {
    left: -240px;
  }
  .menu-drawer--open .menu-drawer__panel {
    left: 0;
  }
}
/* 閉じるボタンを左側に */
.menu-drawer__close {
  position: absolute;
  top: 16px;
  left: 16px; /* ← 右16px→左16px */
  right: auto;
  font-size: 24px;
  background: none;
  border: none;
  color: #985a02;
  cursor: pointer;
}

/* メニューリスト */
.menu-drawer__list {
  list-style: none;
  padding: 80px 0 0;
  margin: 0;
}

.menu-drawer__item + .menu-drawer__item {
  margin-top: 32px;
}

.menu-drawer__link {
  display: block;
  text-decoration: none;
}

/* 日本語タイトル */
.menu-drawer__link-title {
  font-size: 25px;
  color: #985a02;
  letter-spacing: 0.05em;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 768px) {
  .menu-drawer__link-title {
    font-size: 18px;
  }
}

/* 英語サブタイトル */
.menu-drawer__link-subtitle {
  font-size: 14px;
  color: #fcd6e0;
  margin: 4px 0 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .menu-drawer__link-subtitle {
    font-size: 12px;
  }
}

.mv {
  position: relative;
  width: 65%;
  height: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 51px;
    width: 100%;
  }
}

.mv__decorations {
  position: absolute;
  z-index: 500;
  top: 5%;
  right: 80%;
  width: 257px;
}

.mv__slider {
  position: relative;
  height: inherit;
}

.swiper-slide {
  position: relative;
}

.mv-img {
  width: 100%;
  height: 100vh;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .mv-img {
    height: 500px;
    margin-left: auto;
  }
}

.mv__text-box {
  position: absolute;
  bottom: 0;
  left: -10%;
  /* background-image: url("../images/mv-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  background: linear-gradient(to bottom, rgba(255, 251, 203, 0.6), /* #fffbcb */ rgba(255, 249, 177, 0.6), /* #fff9b1 */ rgba(223, 213, 93, 0.7) /* #dfd55d */);
  border-radius: 40px;
  padding: 38px 25px 48px 35px;
  border-radius: 40px;
  max-width: 413px;
  width: 100%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 300;
}
@media screen and (max-width: 768px) {
  .mv__text-box {
    left: 0;
    padding: 30px 6px 31px 8px;
    width: 50%;
    height: 45%;
  }
}

.mv-deco2 {
  background-image: url(../images/mv-deco2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 90%;
  top: 5%;
}
@media screen and (max-width: 768px) {
  .mv-deco2 {
    width: 22px;
    height: 22px;
  }
}

.mv-deco3 {
  background-image: url(../images/mv-deco3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 329px;
  height: 228px;
  position: absolute;
  top: -5%;
  left: -13%;
  z-index: -1;
}

.mv__text--highlight {
  display: inline-block;
  font-size: 64px;
  font-weight: 500;
  font-family: "Kiwi Maru", serif;
  color: #fff;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 3px #f3a7b6;
}
@media (max-width: 768px) {
  .mv__text--highlight {
    font-size: 24px;
    -webkit-text-stroke: 1px #f28ab2;
  }
}

.mv__a {
  width: 123px;
}
@media screen and (max-width: 768px) {
  .mv__a {
    width: 76px;
    margin-top: 5px;
  }
}

.mv__text--main {
  font-family: "Kiwi Maru", serif;
  -webkit-text-stroke: 1px #985a02;
  font-size: 48px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 768px) {
  .mv__text--main {
    font-size: 28px;
    -webkit-text-stroke: 0.5px #5b3012;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
  }
}

.mv__text--sub {
  margin-top: 40px;
  font-family: "Kiwi Maru", serif;
  color: #fff;
  -webkit-text-stroke: 1px #985a02;
  font-size: 40px;
}
@media (max-width: 768px) {
  .mv__text--sub {
    margin-top: 10px;
    font-size: 20px;
    -webkit-text-stroke: 0.9px #5b3012;
  }
}

.about {
  margin-top: 83px;
  position: relative;
}
@media (max-width: 768px) {
  .about {
    margin-top: 40px;
  }
}

.about__inner.inner {
  background-image: url(../images/about-bg.svg);
  background-repeat: no-repeat;
  height: 540px;
  width: 100%;
  padding-top: 50px;
}
@media screen and (max-width: 1200px) {
  .about__inner.inner {
    background-size: contain;
    background-position: center;
  }
}
@media screen and (max-width: 768px) {
  .about__inner.inner {
    height: auto;
    padding-bottom: 34px;
    padding-top: 5px;
  }
}

.about-deco {
  background-image: url(../images/about__deco.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 20%;
  height: 40%;
  position: absolute;
  left: 7%;
  top: 1%;
}
@media screen and (max-width: 768px) {
  .about-deco {
    width: 15%;
    height: 30%;
    top: 0;
  }
}

.about__contents {
  margin-top: 33px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about__contents {
    margin-top: 8px;
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about__text-box {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #985a02;
  margin-left: 105px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about__text-box {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .about__text-box {
    margin-left: 0;
    margin-left: 20px;
  }
}

.about__text-title {
  font-size: 32px;
  letter-spacing: 0.05em;
  z-index: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__text-title {
    font-size: 16px;
  }
}

.about__text-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/about-title-deco.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .about__text-title::before {
    font-size: 24px;
    width: 196px;
    left: 30%;
  }
}

.about__deco02 {
  position: absolute;
  left: 80%;
  top: 17%;
  width: 168px;
  display: inline-block;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .about__deco02 {
    font-size: 20px;
    width: 132px;
    left: 55%;
  }
}
@media screen and (max-width: 390px) {
  .about__deco02 {
    left: 60%;
    font-size: 16px;
  }
}

.about__text {
  font-size: 16px;
  color: #985a02;
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 8px;
    margin-top: 8px;
  }
}

.about-text-bold {
  font-weight: 700;
}

.about-img {
  width: 50%;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  right: -2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .about-img {
    display: none;
  }
}

/* =======================
   ニュースセクション全体
   ======================= */
.news {
  position: relative;
  background-color: #fff9f5;
  overflow: hidden;
  margin-top: 121px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 20px;
  }
}

/* 背景パターン */
.news__deco {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 617px;
  background-image: url("../images/news-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

/* 中央ラッパー */
.news__wrapper {
  position: relative;
  max-width: 834px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 2;
}
/* バインダーフレーム*/
.news__frame-bg {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 110%;
  background-image: url("../images/news-bg2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .news__frame-bg {
    background-image: url("../images/news-sp-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

/* メイン「紙」フレーム */
.news__frame {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 122px;
  height: auto;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .news__frame {
    padding-top: 100px;
  }
}

/* 見出し */
.news__title {
  font-size: 40px;
  color: #985a02;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 24px;
  }
}

.news__title::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/news-title-bg.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .news__title::before {
    font-size: 24px;
    width: 196px;
    left: 50%;
  }
}

/* リスト */
.news__list {
  margin-top: 12.51px;
  padding: 0;
}

.news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  width: 100%;
  border-bottom: 2px solid #f3a7b6;
}
@media screen and (max-width: 768px) {
  .news__item {
    padding-bottom: 0;
    padding-left: 10px;
  }
}

.news__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.news__date {
  font-weight: bold;
  color: #5e1c02;
  font-size: 16px;
  margin-left: 123px;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 13px;
    margin-left: 0;
  }
}

.news__details {
  color: #5e1c02;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-left: 120px;
}
@media screen and (max-width: 768px) {
  .news__details {
    font-size: 13px;
    margin-left: 20px;
  }
}

/* フッター（ボタン） */
.news__footer {
  margin-left: 50%;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .news__footer {
    margin-top: 50px;
    margin-left: 40%;
  }
}
@media screen and (max-width: 390px) {
  .news__footer {
    margin-left: 30%;
  }
}

.news__button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/news-button.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 94px;
  width: 406px;
}
@media screen and (max-width: 768px) {
  .news__button {
    width: 258px;
    height: 48px;
  }
}

.news__button-text {
  color: #985a02;
  font-size: 20px;
  border-bottom: 2px solid #e4f0be;
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .news__button-text {
    font-size: 11px;
    margin-left: 50px;
  }
}

.goods {
  width: 100%;
  margin-top: 80px;
}

.goods__inner.inner {
  text-align: center;
  background-image: url(../images/goods-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .goods__inner.inner {
    background-image: url(../images/goods-sp-bg.svg);
    height: 380px;
  }
}

.goods__title-wrapper {
  position: relative;
  display: inline-block;
}

.goods__title {
  font-size: 40px;
  font-weight: bold;
  color: #985a02;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .goods__title {
    font-size: 24px;
  }
}

.goods__title::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/news-title-bg.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .goods__title::before {
    font-size: 24px;
    width: 196px;
    left: 50%;
  }
}

.goods__container {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .goods__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
  }
}

.goods__main-image {
  width: 31.4%;
}
@media screen and (max-width: 768px) {
  .goods__main-image {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 167px;
  }
}
@media screen and (max-width: 450px) {
  .goods__main-image {
    width: 90%;
  }
}

.goods__image--main {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .goods__image--main {
    width: 50%;
    height: 167px;
  }
}

.goods__info {
  width: 50.48%;
  margin-top: 110px;
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .goods__info {
    width: 60%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    height: 68px;
  }
}

.goods__thumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
}
@media screen and (max-width: 768px) {
  .goods__thumbs {
    margin: 0 auto;
    width: 50%;
    gap: 8px;
  }
}
@media screen and (max-width: 470px) {
  .goods__thumbs {
    width: 90%;
  }
}

.goods__thumb {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  width: 30%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .goods__thumb {
    width: 30%;
    height: 68px;
  }
}

.goods__description {
  font-size: 14px;
  line-height: 1.6;
  color: #8c5726;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .goods__description {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 0;
    margin-left: 12px;
  }
}

.gallery {
  margin-top: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-top: 25px;
  }
}

.gallery__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../images/gallery-bg.jpg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .gallery__bg {
    height: 50%;
  }
}

.goods__title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery__title-sub.title-sub {
  letter-spacing: 0.4em;
}

.gallery__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .gallery__inner {
    margin-top: 27px;
  }
}

.gallery__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery__img {
  width: 100%;
  height: auto;
  border-radius: 150px 150px 70px 70px;
  aspect-ratio: 1/1.1;
}
@media screen and (max-width: 768px) {
  .gallery__img {
    max-height: 200px;
  }
}

.gallery__button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.gallery__button--prev {
  background: url("../images/gallery-prev.svg") center/contain no-repeat;
  width: 10%;
  height: 30px;
  left: 20%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .gallery__button--prev {
    left: 25%;
  }
}

.gallery__button--next {
  background: url("../images/gallery-next.svg") center/contain no-repeat;
  width: 10%;
  height: 30px;
  right: 20%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .gallery__button--next {
    right: 25%;
  }
}

.gallery__more {
  position: relative;
  z-index: 1;
  margin-left: 60%;
  margin-top: 63px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .gallery__more {
    margin-top: 24px;
  }
}

.gallery__more-link {
  display: inline-block;
  font-size: 30px;
  color: #985a02;
  border-bottom: 1px solid #985a02;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .gallery__more-link {
    font-size: 14px;
  }
}

.buy {
  margin-top: 110px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .buy {
    margin-top: 55px;
  }
}

.buy__inner.inner {
  position: relative;
  max-width: 882px;
}

.buy__bubble {
  background: url("../images/buy-bg.svg") center/contain no-repeat;
  width: 100%;
  height: 610px;
}
@media screen and (max-width: 768px) {
  .buy__bubble {
    height: 350px;
  }
}

.buy__title-wrapper {
  position: absolute;
  top: 20%;
  left: 3%;
}
@media screen and (max-width: 768px) {
  .buy__title-wrapper {
    position: static;
  }
}

.buy__title-sub.title-sub {
  letter-spacing: 0.05em;
}

.buy__list {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-45%, -50%);
  transform: translate(-45%, -50%);
}
@media screen and (max-width: 768px) {
  .buy__list {
    width: 100%;
    max-width: 306px;
  }
}
@media screen and (max-width: 390px) {
  .buy__list {
    max-width: 250px;
  }
}

.buy__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.buy__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .buy__item:not(:first-child) {
    margin-top: 20px;
  }
}

.buy__item-number {
  display: inline-block;
  width: 43px;
  height: 43px;
  background-color: #f5f9ff;
  border-radius: 9999px;
  color: #000;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .buy__item-number {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
}

.buy__item-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.buy__item-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #4e88df;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .buy__item-title {
    font-size: 20px;
    font-weight: 700;
  }
}

.buy__item-desc {
  font-size: 18px;
  color: #985a02;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .buy__item-desc {
    font-size: 13px;
  }
}

.buy__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.buy__button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f5f9ff;
  border: 1px solid #fadede;
  border-radius: 40px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 9px 32px;
  -webkit-transition: 0.3s -webkit-box-shadow;
  transition: 0.3s -webkit-box-shadow;
  transition: 0.3s box-shadow;
  transition: 0.3s box-shadow, 0.3s -webkit-box-shadow;
}
.buy__button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .buy__button {
    padding: 10px 24px;
  }
}

.buy__button-img {
  display: block;
  width: auto;
}

.buy__button--minne {
  width: 45%;
  background-color: #f5f9ff;
}

.buy__button--instagram {
  width: 42.37%;
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .buy__button--instagram {
    margin-left: 18px;
  }
}

.footer {
  position: relative;
  /* まとめた背景画像を１枚で指定 */
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 531px;
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 60px;
    height: 180px;
  }
}
@media screen and (max-width: 390px) {
  .footer {
    background-image: url("../images/footer-sp-bg.png");
  }
}

.footer__inner.inner {
  position: relative;
  max-width: 1100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 252px;
}
@media screen and (max-width: 1200px) {
  .footer__inner.inner {
    padding-top: 300px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner.inner {
    padding-top: 70px;
    padding-right: 8px;
    padding-left: 30px;
  }
}

.footer__message {
  font-size: 36px;
  color: #985a02;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 768px) {
  .footer__message {
    font-size: 16px;
    margin-top: 0;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 63px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .footer__contents {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__contents {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    margin-top: 0;
  }
}

.footer__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
  }
}

.footer__nav-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__nav-item:not(:first-child) {
    margin-top: 8px;
  }
}

.footer__nav-link {
  font-size: 20px;
  color: #985a02;
  text-decoration: none;
  margin-left: 8px;
}
.footer__nav-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 14px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
  }
}

.footer__sns-text {
  font-size: 20px;
  color: #985a02;
}
@media screen and (max-width: 768px) {
  .footer__sns-text {
    font-size: 12px;
  }
}

.footer__sns-link {
  display: inline-block;
}

.footer__sns-icon {
  display: block;
  width: 80px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__sns-icon {
    width: 28px;
  }
}

.footer__anchor {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 37px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__anchor {
    right: 0.07%;
    width: 20px;
  }
}

.footer-arrow {
  width: 37px;
}
@media screen and (max-width: 768px) {
  .footer-arrow {
    width: 20px;
  }
}

/*cloud scss */
main section {
  opacity: 0;
  position: relative;
  top: 20px;
  -webkit-transition: opacity 0.8s ease-out, top 0.8s ease-out;
  transition: opacity 0.8s ease-out, top 0.8s ease-out;
}

main section.is-show {
  opacity: 1;
  top: 0;
}

.fv {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .fv {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .fv__title-wrapper {
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .fv__title-main {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .fv__title-sub {
    font-size: 16px;
  }
}

.fv__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  width: 95%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .fv__img {
    margin-right: auto;
  }
}

/* セクション全体 */
.this {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .this {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 40px;
  }
}

/* 横幅制限＋センター寄せ用（プロジェクト共通の .inner を利用） */
.this__inner.inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fffefa;
  margin-top: 68px;
  padding-top: 50px;
  padding-bottom: 130px;
}

/* 「○月の出店」ブロック */
.this__month {
  text-align: center;
}
.this__month-title {
  display: inline-block;
  font-size: 40px;
  color: #985a02;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .this__month-title {
    font-size: 20px;
  }
}

.this__month-title::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/news-title-bg.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .this__month-title::before {
    font-size: 24px;
    width: 196px;
    left: 50%;
  }
}

.accordion__title {
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
  color: #985a02;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .accordion__title {
    padding: 5px 10px;
  }
}

.accordion__title::after {
  position: absolute;
  top: 35%;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid #f3a7b6;
  border-right: 2px solid #f3a7b6;
}
@media screen and (max-width: 768px) {
  .accordion__title::after {
    right: 5px;
  }
}

.accordion__title.is-open::after {
  top: 45%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion__content {
  display: none;
  padding: 10px 0 10px 40px;
  background-color: rgba(255, 250, 242, 0.5);
}
@media screen and (max-width: 768px) {
  .accordion__content {
    padding-left: 5%;
  }
}

.accordion__text-title {
  color: #5e1c02;
  font-size: 20px;
}

.accodion__access-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.accordion__text {
  color: #5e1c02;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .accordion__text {
    font-size: 10px;
  }
}

.accodion__link {
  color: #5e1c02;
  border-bottom: 1px solid #f3a7b6;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .accodion__link {
    font-size: 10px;
  }
}
@media screen and (max-width: 390px) {
  .accodion__link {
    margin-left: 10px;
  }
}

.accodion__homepage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

/* リスト全体 */
.this__list {
  max-width: 833px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

/* 各アイテム */
.this__item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 3px solid #e4f0be;
}
.this__item:not(:first-child) {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .this__item:not(:first-child) {
    padding-top: 40px;
  }
}

/* 日付 */
.this__date {
  font-size: 28px;
  color: #5e1c02;
  font-weight: 700;
  margin-left: 22px;
}
@media screen and (max-width: 768px) {
  .this__date {
    font-size: 20px;
    margin-left: 0;
  }
}

.this__place {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .this__place {
    margin-right: 15px;
  }
}

/* イベント名 */
.this__event {
  font-size: 22px;
  color: #5e1c02;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .this__event {
    margin-left: 12px;
    font-size: 13px;
  }
}

/* 会場リンク＋矢印 */
.this__link {
  font-size: 22px;
  color: #5e1c02;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .this__link {
    font-size: 14px;
  }
}

.this__month-title.next {
  display: inline-block;
  font-size: 40px;
  color: #985a02;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .this__month-title.next {
    font-size: 20px;
  }
}

.this__month-title.next::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/about-title-deco.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .this__month-title.next::before {
    font-size: 24px;
    width: 196px;
    left: 50%;
  }
}

.goods__inner.inner.page {
  max-width: 1200px;
}

.catalog {
  margin-top: 80px;
}

.catalog__inner.inner {
  max-width: 1200px;
  background-color: #fffefa;
  border-radius: 30px;
  padding-top: 61px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .catalog__inner.inner {
    padding-top: 30px;
  }
}

.catalog__title {
  position: relative;
  z-index: 0;
}

.catalog__title::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 371px;
  height: 62px;
  background: url("../images/news-title-bg.svg") center/contain no-repeat;
  z-index: -1; /* 文字の背面に配置 */
}
@media screen and (max-width: 768px) {
  .catalog__title::before {
    font-size: 24px;
    width: 196px;
    left: 50%;
  }
}

.catalog__title-text {
  color: #5e1c02;
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .catalog__title-text {
    font-size: 16px;
  }
}

.catalog__red {
  color: #ff8484;
}
@media screen and (max-width: 768px) {
  .catalog__red {
    font-size: 10px;
  }
}

.catalog__contents {
  margin-top: 30px;
}

.catalog__content {
  max-width: 1037px;
  margin-left: auto;
  margin-right: auto;
}

.catalog__content:not(:first-child) {
  margin-top: 45px;
}

.catalog__content-title {
  font-size: 40px;
  color: #5e1c02;
  font-weight: 500;
  border-bottom: 5px solid #99bf1c;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .catalog__content-title {
    font-size: 20px;
  }
}

.catalog__images {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 75px;
}
@media screen and (max-width: 768px) {
  .catalog__images {
    margin-top: 15px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    row-gap: 5px;
  }
}

.catalog__goodbox {
  position: relative;
  overflow: hidden;
}
.catalog__goodbox .catalog__img-title,
.catalog__goodbox .catalog__price {
  opacity: 1;
}

.catalog__img {
  border-radius: 40px;
  cursor: pointer;
  aspect-ratio: 2/ 2.5;
}
@media screen and (max-width: 768px) {
  .catalog__img {
    border-radius: 10px;
  }
}

.catalog__bottom-text {
  font-size: 20px;
  color: #5e1c02;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .catalog__bottom-text {
    font-size: 13px;
    margin-top: 10px;
  }
}

.goods__title-text {
  font-size: 16px;
  color: #985a02;
}
@media screen and (max-width: 768px) {
  .goods__title-text {
    font-size: 13px;
  }
}

.inner {
  max-width: 1072px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.title {
  color: #985a02;
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 24px;
  }
}

.title-sub {
  font-size: 16px;
  font-weight: 700;
  color: #f3a7b6;
  text-align: center;
  display: block;
  line-height: 0.9;
}
@media screen and (max-width: 768px) {
  .title-sub {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .lg-none {
    display: none;
  }
} /*# sourceMappingURL=style.css.map */

.mv.error {
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .mv.error {
    margin-top: 200px;
  }
}

.mv__error__title {
  background-color: #fff;
  padding: 30px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .mv__error__title {
    padding: 10px;
  }
}

.mv__error__title-large {
  font-size: 60px;
  color: #985a02;
}
@media screen and (max-width: 768px) {
  .mv__error__title-large {
    font-size: 30px;
  }
}

.mv__error__title-small {
  font-size: 24px;
  color: #985a02;
}
@media screen and (max-width: 768px) {
  .mv__error__title-small {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .mv__error__title-large {
  }
}

.button__error {
  color: #985a02;
  font-size: 20px;
}
