@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: m-plus-1p, sans-serif;
  color: #4E2F1A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove default styling */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

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

/* Remove focus outline for mouse users */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure focus is visible for keyboard users */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #FE410F;
  outline-offset: 2px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section__title {
  font-family: decoy, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #FE410F;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .section__title {
    font-size: 3rem;
  }
}
.section__title .ja__title {
  font-weight: 700;
  font-size: 0.813rem;
  font-family: m-plus-1p, sans-serif;
  display: block;
  color: #782F24;
}
@media (min-width: 821px) {
  .section__title {
    margin-bottom: 3rem;
  }
  .section__title .ja__title {
    font-weight: 700;
    font-size: 1.125rem;
    font-family: m-plus-1p, sans-serif;
  }
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #FE410F;
}

.text-secondary {
  color: #FE410F;
}

.text-accent {
  color: #FE410F;
}

.text-dark {
  color: #4E2F1A;
}

.text-gray {
  color: #666666;
}

.text-light {
  color: #999999;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 414px) {
  .mobile\:grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .mobile\:grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 821px) {
  .tablet\:grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .tablet\:grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .tablet\:grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.hidden {
  display: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 414px) {
  .mobile\:block {
    display: block;
  }
  .mobile\:flex {
    display: flex;
  }
  .mobile\:grid {
    display: grid;
  }
  .mobile\:hidden {
    display: none;
  }
}
@media (min-width: 821px) {
  .tablet\:block {
    display: block;
  }
  .tablet\:flex {
    display: flex;
  }
  .tablet\:grid {
    display: grid;
  }
  .tablet\:hidden {
    display: none;
  }
}
.btn_orange {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 821px) {
  .btn_orange {
    max-width: 400px;
  }
}
.btn_orange__link {
  display: block;
  background: #FE410F;
  color: white;
  padding: 0.9rem 0;
  border-radius: 50px;
  text-align: center;
  position: relative;
  font-size: 0.813rem;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .btn_orange__link {
    font-size: 1rem;
    padding: 1.8rem 0;
  }
  .btn_orange__link:hover {
    opacity: 0.6;
  }
}
.btn_orange__link.icon_insta::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("../images/icon_insta.svg") no-repeat center/contain;
}
@media (min-width: 821px) {
  .btn_orange__link.icon_insta::before {
    width: 30px;
    height: 30px;
  }
}
.btn_orange.bg_dark .btn_orange__link {
  background: #782F24;
}

.section__line {
  height: 50px;
  background: #782F24 url("/assets/images/bg_line.png") repeat-x 6% center/auto 15px;
}
@media (min-width: 821px) {
  .section__line {
    height: 76px;
    background: #782F24 url("/assets/images/bg_line.png") repeat-x 54.5% center/auto 21px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  overflow: hidden;
}
.header .container {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100svh;
}
.header__inner {
  padding-top: 4%;
  position: relative;
  height: calc(100% - 51px);
  background: url("/assets/images/mv_sp.png") no-repeat center 97%/cover;
}
.header__inner .header__sp_se {
  display: none;
}
@media (min-width: 375px) and (max-height: 657px) {
  .header__inner {
    height: calc(100% - 51px);
    background: url("/assets/images/mv_sp_se.png") no-repeat center 61%/cover;
  }
}
@media (min-width: 821px) {
  .header__inner {
    padding-top: 0;
    margin-bottom: 1rem;
    height: calc(100% - 60px);
    background: url("/assets/images/mv_pc.png") no-repeat center center/cover;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__inner {
    padding-top: 8%;
    background: url("/assets/images/mv_sp.png") no-repeat center 62%/cover;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .header__inner {
    padding-top: 2%;
    background: url("/assets/images/mv_pc.png") no-repeat center 28%/cover;
  }
}
.header__logo {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  max-width: 214px;
}
@media (min-width: 375px) and (max-height: 657px) {
  .header__logo {
    width: 43%;
  }
}
@media (min-width: 768px) {
  .header__logo {
    width: 51%;
  }
}
@media (min-width: 821px) {
  .header__logo {
    width: 29.3%;
    max-width: 375px;
    height: 100%;
    margin: auto 0 auto 12%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__logo {
    width: 36.3%;
    max-width: 375px;
    margin: 0 auto;
    align-items: flex-start;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .header__logo {
    width: 17%;
    margin: auto 0 auto 12%;
  }
}
.header__logo-img {
  margin: 0 auto;
}
.header__parts {
  position: absolute;
  width: 23%;
  top: 52%;
  right: 13%;
}
@media (min-width: 821px) {
  .header__parts {
    width: auto;
    top: 12%;
    right: 13%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__parts {
    top: 46%;
    right: 18%;
  }
}
.header__hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.header__hero-content {
  text-align: center;
}
@media (min-width: 821px) {
  .header__hero-content {
    text-align: left;
  }
}
.header .header_date {
  margin: 0 auto 15px;
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 375px) and (max-height: 657px) {
  .header .header_date {
    margin: 0 auto 5px;
    width: 80%;
  }
}
@media (min-width: 821px) {
  .header .header_date {
    max-width: 1040px;
    text-align: left;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .header .header_date {
    width: 35%;
    margin: 0 0 0 13%;
    bottom: 4%;
  }
}
.header .header_date img {
  margin: 0 auto;
}
@media (min-width: 821px) {
  .header .header_date img {
    margin: 0;
    width: 82%;
  }
}
.header__info {
  background: #FE410F;
  padding: 0.5rem;
}
.header__info__inner img {
  margin: 0 auto;
}
@media (min-width: 821px) {
  .header__info__inner {
    max-width: 1040px;
    margin: 0 auto;
  }
}
.header__nav {
  background: #FE410F;
  padding: 10px 0.5rem;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 821px) {
  .header__nav {
    background: #FFFFFF;
  }
}
@media (min-width: 821px) {
  .header__nav__inner {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__nav-logo {
  width: 11%;
  max-width: 139px;
}
.header__nav-logo a {
  transition: opacity 0.3s;
}
.header__nav-logo a:hover {
  opacity: 0.6;
}
@media (min-width: 821px) {
  .header__nav__content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.header__nav-sns {
  margin-left: 0.5rem;
}
.header__nav-sns__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-sns-link {
  margin: 0 4px;
}
.header__nav-sns-link a {
  width: 39px;
  height: 39px;
  background: #FE410F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .header__nav-sns-link a:hover {
    opacity: 0.6;
  }
}
.header__nav-sns-link a img {
  width: 20px;
  height: 20px;
}
.header__nav.is-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.header .nav__list {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 8px;
  position: relative;
}
@media (min-width: 821px) {
  .header .nav__list {
    background: none;
    flex-wrap: nowrap;
  }
}
.header .nav__list::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #FE410F;
  pointer-events: none;
}
@media (min-width: 821px) {
  .header .nav__list::before {
    display: none;
  }
}
.header .nav__item {
  width: 33.3333333333%;
  position: relative;
}
@media (min-width: 821px) {
  .header .nav__item {
    width: auto;
    margin: 0 0.5rem;
  }
}
.header .nav__item:not(:last-child)::before, .header .nav__item:not(:nth-child(3))::before {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #FE410F;
  pointer-events: none;
}
@media (min-width: 821px) {
  .header .nav__item:not(:last-child)::before, .header .nav__item:not(:nth-child(3))::before {
    display: none;
  }
}
.header .nav__link {
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: decoy, serif;
  color: #FE410F;
  font-size: 1rem;
  font-weight: 800;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 821px) {
  .header .nav__link {
    font-size: 1.2rem;
  }
  .header .nav__link:hover {
    opacity: 0.6;
  }
}
.header .nav__item:nth-child(4) .nav__link, .header .nav__item:nth-child(5) .nav__link {
  font-size: 1rem;
}
@media (min-width: 821px) {
  .header .nav__item:nth-child(4) .nav__link, .header .nav__item:nth-child(5) .nav__link {
    font-size: 1.2rem;
  }
}

.section, .info-section, .products-section, .campaign-section, .collection-section, .collab-section, .food-section, .daily-section, .passport-section {
  padding: 2rem 0;
  font-family: m-plus-1p, sans-serif;
}
@media (min-width: 821px) {
  .section, .info-section, .products-section, .campaign-section, .collection-section, .collab-section, .food-section, .daily-section, .passport-section {
    padding: 4rem 0;
  }
}

.about-section {
  padding-top: 4rem;
  position: relative;
  background-color: #fbf0d1;
}
@media (min-width: 821px) {
  .about-section {
    padding-top: 6.3rem;
  }
}
.about-section .btn_orange {
  margin-bottom: 60px;
}
@media (min-width: 821px) {
  .about-section .btn_orange {
    margin-bottom: 6.3rem;
  }
}
.about-section .section__title {
  margin-bottom: 0rem;
  font-size: 1.7rem;
}
@media (min-width: 821px) {
  .about-section .section__title {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}
.about-section .section__description {
  font-family: m-plus-1p, sans-serif;
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.8;
  color: #782F24;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}
.about-section .section__description::before {
  content: "";
  position: absolute;
  bottom: -19%;
  left: 3%;
  width: 50px;
  height: 71px;
  transform: rotate(-30deg);
  background: url("/assets/images/parts_about_01.svg") no-repeat center center/contain;
  z-index: 2;
}
@media (min-width: 821px) {
  .about-section .section__description::before {
    width: 107px;
    height: 146px;
    bottom: 21%;
    left: auto;
    right: -5%;
    transform: rotate(0deg);
  }
}
.about-section .section__description::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: 2%;
  width: 70px;
  height: 70px;
  background: url("/assets/images/parts_about_02.svg") no-repeat center center/contain;
  z-index: 2;
}
@media (min-width: 821px) {
  .about-section .section__description::after {
    width: 155px;
    height: 147px;
    bottom: 56%;
    right: auto;
    left: -11%;
  }
}
@media (min-width: 821px) {
  .about-section .section__description {
    font-family: m-plus-1p, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
  }
}
.about-section .section__description dt {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .about-section .section__description dt {
    font-size: 32px;
    margin-bottom: 1.5rem;
  }
}
.about-section .section__description dd {
  margin-bottom: 0.4rem;
}
@media (min-width: 821px) {
  .about-section .section__description dd {
    margin-bottom: 0.7rem;
  }
}
.about-section__image {
  background: #782F24;
  padding: 10px;
}
@media (min-width: 821px) {
  .about-section__image {
    padding: 60px 10px;
  }
}
.about-section__image__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 821px) {
  .about-section__image__inner {
    max-width: 1024px;
    margin: 0 auto;
  }
}
.about-section__image .about-section__img {
  width: 49.5%;
  border-radius: 8px;
}
@media (min-width: 821px) {
  .about-section__image .about-section__img {
    width: 49%;
    border-radius: 20px;
  }
}

.map-section {
  background-color: #FAFAFA;
}
@media (min-width: 821px) {
  .map-section {
    background-color: #FE410F;
  }
}
@media (min-width: 821px) {
  .map-section .map {
    padding: 60px 10px 20px;
  }
}
.map-section__image {
  background: #FE410F;
  padding: 10px;
}
@media (min-width: 821px) {
  .map-section__image {
    padding: 22px 10px 60px;
  }
}
.map-section__image__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 821px) {
  .map-section__image__inner {
    max-width: 1024px;
    margin: 0 auto;
  }
}
.map-section__image .map-section__img {
  width: 49.5%;
  border-radius: 8px;
}
@media (min-width: 821px) {
  .map-section__image .map-section__img {
    width: 49%;
    border-radius: 20px;
  }
}

.map__image {
  text-align: center;
  position: relative;
}
.map__image .map__img {
  width: 100%;
}
@media (min-width: 821px) {
  .map__image {
    max-width: 1024px;
    margin: 0 auto;
  }
  .map__image .map__img {
    border-radius: 20px;
  }
}
.map__image__parts {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 113%;
}

.passport-section {
  background: #fbf0d1;
}
.passport-section .ja__title {
  color: #782F24;
}
@media (min-width: 821px) {
  .passport-section .container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.passport-section .section__title {
  margin-bottom: 10px;
}
.passport-section .section__title .sub__title {
  display: block;
  font-size: 14px;
}
@media (min-width: 821px) {
  .passport-section .section__title .sub__title {
    font-size: 21px;
  }
}
@media (min-width: 821px) {
  .passport-section .section__title {
    font-size: 3rem;
  }
}
.passport-section .passport-intro {
  margin-bottom: 1rem;
}
@media (min-width: 821px) {
  .passport-section .passport-intro {
    margin-bottom: 37px;
  }
}
.passport-section .passport-intro__image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
}
@media (min-width: 821px) {
  .passport-section .passport-intro__image {
    max-width: 372px;
    margin: 0 auto 21px;
  }
}
.passport-section .passport-intro__text {
  font-size: 0.813rem;
  line-height: 1.8;
  color: #782F24;
  text-align: center;
}
@media (min-width: 821px) {
  .passport-section .passport-intro__text {
    font-size: 18px;
  }
}
.passport-section .passport {
  position: relative;
}
@media (min-width: 821px) {
  .passport-section .passport {
    margin-left: 5%;
  }
}
.passport-section .passport-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}
@media (min-width: 821px) {
  .passport-section .passport-card {
    max-width: 580px;
    position: relative;
    z-index: 0;
    align-items: center;
  }
  .passport-section .passport-card::after {
    content: "";
    position: absolute;
    left: -48%;
    right: 0;
    bottom: -20%;
    margin: auto;
    width: 154%;
    height: 195px;
    background: #923219;
    border-radius: 20px;
    z-index: -1;
  }
}
.passport-section .passport-card__image {
  width: 52%;
  position: relative;
  z-index: 1;
}
@media (min-width: 821px) {
  .passport-section .passport-card__image {
    width: 35%;
    margin-right: -40px;
    top: 16px;
  }
}
.passport-section .passport-card__present {
  width: 35%;
}
@media (min-width: 821px) {
  .passport-section .passport-card__present {
    width: 30%;
  }
  .passport-section .passport-card__present img {
    transform: scale(1.3);
    transform-origin: left;
  }
}
.passport-section .passport-card__content {
  width: 100%;
  text-align: center;
  font-size: 0.813rem;
  line-height: 1;
  color: #FFFFFF;
  background: #923219;
  border-radius: 20px;
  padding: 19px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -8%;
}
@media (min-width: 821px) {
  .passport-section .passport-card__content {
    width: 70%;
    margin-top: 0;
    background: none;
    padding: 0;
    justify-content: flex-start;
  }
}
.passport-section .passport-card__tag {
  width: 33%;
  font-size: 54px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
}
@media (min-width: 821px) {
  .passport-section .passport-card__tag {
    width: 27%;
    font-size: 84px;
  }
}
.passport-section .passport-card__tag span {
  font-size: 1.875rem;
  vertical-align: middle;
}
@media (min-width: 821px) {
  .passport-section .passport-card__tag span {
    font-size: 50px;
  }
}
.passport-section .passport-card__description {
  width: 62%;
  text-align: left;
  padding-left: 5px;
  font-size: 0.813rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (min-width: 821px) {
  .passport-section .passport-card__description {
    font-size: 1.25rem;
  }
}
.passport-section .passport-card__details {
  width: 100%;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .passport-section .passport-card__details {
    font-size: 22px;
    text-align: left;
  }
}
.passport-section .passport__note {
  max-width: 330px;
  margin: 0 auto;
  font-size: 10px;
  color: #923219;
  text-align: right;
  margin-top: 5px;
}
@media (min-width: 821px) {
  .passport-section .passport__note {
    max-width: none;
    font-size: 12px;
    margin-top: 30px;
    margin-right: -6%;
  }
}
@media (min-width: 821px) {
  .passport-section .reentry {
    margin-top: 1rem;
  }
}
.passport-section .reentry__inner {
  width: 100%;
  max-width: 330px;
  margin: 0.5rem auto 0;
  background: #F9DAA3 url("/assets/images/bg_reentry_sp.png") no-repeat center bottom/88%;
  border-radius: 20px;
  padding: 12px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 821px) {
  .passport-section .reentry__inner {
    background: #F9DAA3 url("/assets/images/bg_reentry.png") no-repeat 99% bottom/35%;
    max-width: 980px;
    padding: 0;
    flex-direction: row;
    justify-content: center;
  }
}
.passport-section .reentry_title {
  font-family: decoy, serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #F18E2C;
  margin-bottom: 1rem;
}
@media (min-width: 821px) {
  .passport-section .reentry_title {
    text-align: left;
    padding-left: 0;
    font-size: 2rem;
    width: 100%;
  }
}
.passport-section .reentry__content {
  width: 100%;
  text-align: center;
  font-size: 0.813rem;
  line-height: 1;
  color: #782F24;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 821px) {
  .passport-section .reentry__content {
    flex-wrap: wrap;
    width: 69%;
    padding-top: 30px;
  }
}
.passport-section .reentry__content__inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 821px) {
  .passport-section .reentry__content__inner {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.passport-section .reentry__content .reentry__tag {
  width: 20%;
  font-size: 54px;
  font-weight: 700;
  color: #782F24;
  text-align: right;
}
@media (min-width: 821px) {
  .passport-section .reentry__content .reentry__tag {
    width: auto;
    font-size: 84px;
    text-align: left;
  }
}
.passport-section .reentry__content .reentry__tag span {
  font-size: 1.875rem;
  vertical-align: middle;
}
@media (min-width: 821px) {
  .passport-section .reentry__content .reentry__tag span {
    font-size: 50px;
  }
}
.passport-section .reentry__content .reentry__description {
  width: 62%;
  text-align: left;
  padding-left: 5px;
  font-size: 0.813rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (min-width: 821px) {
  .passport-section .reentry__content .reentry__description {
    width: 81%;
    font-size: 1.25rem;
  }
}
.passport-section .reentry__content .reentry__details {
  width: 100%;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .passport-section .reentry__content .reentry__details {
    text-align: left;
    font-size: 1.4rem;
  }
}
.passport-section .reentry .reentry__parts {
  width: 46%;
  margin: 0 auto;
  padding: 20px 0 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #782F24;
}
@media (min-width: 821px) {
  .passport-section .reentry .reentry__parts {
    padding: 93px 0 27px;
    width: 22%;
    margin: 0;
    font-size: 1.25rem;
  }
  .passport-section .reentry .reentry__parts img {
    width: 80%;
  }
}

.daily-section {
  padding: 2rem 0 0;
  background: #FE410F;
}
@media (min-width: 821px) {
  .daily-section {
    padding: 3rem 0 0;
  }
}
.daily-section .section__title {
  color: #FFFFFF;
}
.daily-section .section__title .ja__title {
  color: #FFFFFF;
}
.daily-section .daily-intro__text {
  text-align: center;
  font-size: 0.813rem;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .daily-section .daily-intro__text {
    font-size: 1.125rem;
  }
}
.daily-section .daily {
  padding: 10px;
}
@media (min-width: 821px) {
  .daily-section .daily {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.daily-section .daily .event-stage {
  text-align: center;
  border-radius: 10px;
  background: #782F24;
  padding: 1rem 0;
  color: #FFFFFF;
  margin-bottom: 10px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-stage {
    padding: 1rem 0 1.3rem;
    border-radius: 20px;
    margin-bottom: 1rem;
  }
}
.daily-section .daily .event-stage__icon {
  display: inline-block;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  padding: 2px 1rem;
  text-align: center;
  font-size: 0.813rem;
  margin-right: 8px;
  vertical-align: middle;
}
@media (min-width: 821px) {
  .daily-section .daily .event-stage__icon {
    font-size: 1rem;
  }
}
.daily-section .daily .event-stage__text {
  display: inline-block;
  font-size: 1.25rem;
  vertical-align: middle;
  font-family: decoy, serif;
  font-weight: 800;
}
@media (min-width: 821px) {
  .daily-section .daily .event-stage__text {
    font-size: 1.5rem;
  }
}
.daily-section .daily .event-item {
  background: #fbf0d1;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 20px 5px 1rem;
  position: relative;
  text-align: center;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item {
    padding: 34px 5px 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    margin-bottom: 20px;
  }
}
.daily-section .daily .event-item::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 2%;
  width: 90px;
  height: 80px;
  background: url("/assets/images/bg_ex_content.png") no-repeat center center/contain;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item::before {
    width: 269px;
    height: 240px;
    top: 12%;
    left: 4%;
  }
}
.daily-section .daily .event-item__title {
  margin-bottom: 17px;
  text-align: center;
  font-size: 26px;
  color: #782F24;
  font-weight: 800;
  padding-left: 24%;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__title {
    font-size: 2.5rem;
    order: 0;
  }
}
.daily-section .daily .event-item__title img {
  display: inline-block;
}
.daily-section .daily .event-item__title span {
  display: block;
  font-family: decoy, serif;
  color: #FE410F;
  font-size: 1.3rem;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__title span {
    font-size: 1.55rem;
  }
}
.daily-section .daily .event-item__description {
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FE410F;
  text-align: center;
  margin-bottom: 1rem;
  padding-left: 24%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__description {
    font-size: 1.125rem;
    order: 0;
    margin-bottom: 27px;
  }
}
.daily-section .daily .event-item__details {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details {
    padding-left: 27%;
  }
}
.daily-section .daily .event-item__details_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0.5rem;
  font-family: "din-2014", sans-serif;
}
.daily-section .daily .event-item__details_inner:nth-of-type(1)::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #FE410F;
  position: absolute;
  right: -0.6rem;
  top: 9px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details_inner:nth-of-type(1)::after {
    height: 30px;
    top: 18px;
  }
}
.daily-section .daily .event-item__details_inner .event-item__date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #782F24;
  margin-right: 3px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details_inner .event-item__date {
    font-size: 40px;
    margin-right: 8px;
  }
}
.daily-section .daily .event-item__details_inner .event-item__date span {
  font-size: 0.813rem;
  font-weight: 700;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details_inner .event-item__date span {
    font-size: 22px;
  }
}
.daily-section .daily .event-item__details_inner .event-item__date.line-through {
  position: relative;
}
.daily-section .daily .event-item__details_inner .event-item__date.line-through::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 72%;
  height: 2px;
  background: #FE410F;
  transform: translateY(-50%);
}
.daily-section .daily .event-item__details_inner .event-item__time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 50px;
  background: #782F24;
  padding: 5px 8px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details_inner .event-item__time {
    font-size: 1rem;
    padding: 4px 8px;
  }
}
.daily-section .daily .event-item__details_inner .event-item__time span {
  width: 16px;
  height: 16px;
  display: inline-block;
  text-align: center;
  font-size: 10px;
  color: #FFFFFF;
  background: #FE410F;
  border-radius: 50%;
  vertical-align: text-bottom;
  margin-right: 3px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__details_inner .event-item__time span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.daily-section .daily .event-item__details_inner .event-item__time.line-through {
  position: relative;
}
.daily-section .daily .event-item__details_inner .event-item__time.line-through::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #FE410F;
  transform: translateY(-50%);
}
.daily-section .daily .event-item__text {
  font-size: 0.813rem;
  color: #782F24;
  text-align: center;
  width: 90%;
  margin: 10px auto 0;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__text {
    font-size: 1.125rem;
    margin: 0 auto 30px;
    padding-left: 29%;
  }
}
.daily-section .daily .event-item__text span {
  display: block;
  font-size: 10px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__text span {
    font-size: 14px;
  }
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.daily-section .daily .event-item__price {
  margin: 1rem auto 0;
  position: relative;
  display: inline-block;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price {
    margin: 0 6.5rem 0 0;
    padding-left: 27%;
  }
}
.daily-section .daily .event-item__price span {
  font-size: 0.813rem;
  position: relative;
  color: #FFFFFF;
  background: #782F24;
  display: inline-block;
  padding: 5px 5px;
  line-height: 1;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price span {
    font-size: 1.125rem;
    padding: 8px 5px;
  }
}
.daily-section .daily .event-item__price span::before, .daily-section .daily .event-item__price span::after {
  position: absolute;
  top: 0;
  width: 0px;
  height: 0px;
  border-color: #782F24 transparent;
  border-style: solid;
  content: "";
}
.daily-section .daily .event-item__price span::before {
  border-width: 11px 0px 12px 11px;
  left: -10px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price span::before {
    border-width: 17px 0px 17px 11px;
    left: -10px;
  }
}
.daily-section .daily .event-item__price span::after {
  border-width: 11px 12px 12px 0px;
  right: -11px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price span::after {
    border-width: 17px 13px 17px 0px;
    right: -12px;
  }
}
.daily-section .daily .event-item__price .event-item__parts {
  width: 64px;
  height: 44px;
  position: absolute;
  top: -23%;
  right: -50%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__price .event-item__parts {
    width: 82px;
    height: 56px;
    top: -30%;
    right: -20%;
  }
}
.daily-section .daily .event-item__btn {
  margin: 1.2rem auto 0;
  max-width: 240px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__btn {
    margin: 1.2rem 0;
    max-width: 220px;
  }
}
@media (min-width: 821px) {
  .daily-section .daily .event-item__btn .btn_orange__link {
    padding: 1rem 0;
    font-size: 14px;
  }
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two {
    padding: 34px 5px 2rem;
  }
}
.daily-section .daily .event-item.event-two::after {
  content: "";
  position: absolute;
  top: 1%;
  left: 1%;
  width: 68px;
  height: 67px;
  background: url("/assets/images/icon_winners_01.png") no-repeat center center/contain;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two::after {
    width: 120px;
    height: 112px;
    top: -5%;
    left: -1%;
  }
}
.daily-section .daily .event-item.event-two .event-item__title {
  font-size: 24px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two .event-item__title {
    font-size: 2.5rem;
  }
}
.daily-section .daily .event-item.event-two .event-item__description {
  margin-bottom: 0.3rem;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two .event-item__description {
    margin-bottom: 27px;
  }
}
.daily-section .daily .event-item.event-two .event-item__details {
  padding-left: 24%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two .event-item__details {
    padding-left: 27%;
  }
}
.daily-section .daily .event-item.event-two .event-item__details_inner {
  flex-direction: column;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two .event-item__details_inner {
    flex-direction: initial;
  }
}
.daily-section .daily .event-item.event-two .event-item__details_inner:nth-of-type(1)::after {
  display: none;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two .event-item__text {
    margin: 0 auto 20px;
  }
}
.daily-section .daily .event-item.event-two.icon_winners_02::after {
  content: "";
  position: absolute;
  top: 1%;
  left: 1%;
  width: 68px;
  height: 67px;
  background: url("/assets/images/icon_winners_02.png") no-repeat center center/contain;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event-two.icon_winners_02::after {
    width: 120px;
    height: 112px;
    top: -5%;
    left: -1%;
  }
}
.daily-section .daily .event-item.event_01 .event-item__title img {
  width: 208px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_01 .event-item__title img {
    width: auto;
  }
}
.daily-section .daily .event-item.event_02 .event-item__details {
  flex-direction: column;
}
.daily-section .daily .event-item.event_02 .is-close {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_02 .is-close {
    margin-bottom: 10px;
  }
}
.daily-section .daily .event-item.event_02 .is-close .is-close__text {
  position: absolute;
  top: 1%;
  left: -5%;
  width: 110%;
  height: 110%;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  z-index: 2;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_02 .is-close .is-close__text {
    height: 100%;
  }
}
.daily-section .daily .event-item.event_02::before {
  background: url("/assets/images/bg_ex_content_02.png") no-repeat center center/contain;
  top: 19%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_02::before {
    top: 13%;
  }
}
.daily-section .daily .event-item.event_02 .event-item__add {
  font-weight: 700;
  color: #FE410F;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_02 .event-item__add {
    font-size: 21px;
  }
}
.daily-section .daily .event-item.event_02 .event-item__text {
  margin: 14px auto 0;
}
.daily-section .daily .event-item.event_02 .event-item__title img {
  width: 255px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_02 .event-item__title img {
    width: auto;
  }
}
.daily-section .daily .event-item.event_03::before {
  background: url("/assets/images/bg_ex_content_03.png") no-repeat center center/contain;
  top: 25%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_03::before {
    top: 16%;
  }
}
.daily-section .daily .event-item.event_03 .event-item__text {
  margin: 14px auto 0;
}
.daily-section .daily .event-item.event_03 .event-item__title img {
  width: 262px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_03 .event-item__title img {
    width: auto;
  }
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_03 .event-item__price {
    margin: 0 2rem 0 0;
  }
}
.daily-section .daily .event-item.event_04 {
  padding: 34px 5px 2rem;
}
.daily-section .daily .event-item.event_04::before {
  top: 8%;
  background: url("/assets/images/bg_ex_content_04.png") no-repeat center center/contain;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_04::before {
    width: 222px;
    height: 222px;
    top: 8%;
    left: 6%;
  }
}
.daily-section .daily .event-item.event_04 .event-item__details {
  padding-left: 24%;
}
.daily-section .daily .event-item.event_04 .event-item__details_inner:nth-of-type(1)::after {
  content: none;
}
.daily-section .daily .event-item.event_04 .event-item__title {
  margin-bottom: 5px;
}
.daily-section .daily .event-item.event_04 .event-item__text {
  margin: 14px auto 0;
}
.daily-section .daily .event-item.event_04 .event-item__title img {
  width: 137px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_04 .event-item__title img {
    width: auto;
  }
}
.daily-section .daily .event-item.event_05 {
  flex-direction: inherit;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 {
    padding-left: 24%;
    padding: 40px 5px 2rem 24%;
  }
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__inner {
    width: 48%;
  }
}
.daily-section .daily .event-item.event_05 .event-item__textBox {
  margin-top: 10px;
  width: 88%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__textBox {
    width: 48%;
  }
}
.daily-section .daily .event-item.event_05::before {
  background: url("/assets/images/bg_ex_content_05.png") no-repeat center center/contain;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05::before {
    width: 149px;
    height: 149px;
    top: 11%;
    left: 6%;
  }
}
.daily-section .daily .event-item.event_05 .event-item__title {
  margin-bottom: 5px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__title {
    font-size: 34px;
    padding-left: 0;
    text-align: left;
  }
}
.daily-section .daily .event-item.event_05 .event-item__details {
  padding-left: 24%;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__details {
    padding: 0;
    text-align: left;
    justify-content: left;
  }
  .daily-section .daily .event-item.event_05 .event-item__details .event-item__details_inner {
    margin: 0;
  }
}
.daily-section .daily .event-item.event_05 .event-item__text {
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__text {
    margin: 0;
    padding-left: 5%;
    font-size: 24px;
    justify-content: space-between;
  }
}
.daily-section .daily .event-item.event_05 .event-item__text .event-item__drink {
  width: 35%;
  font-size: 22px;
  color: #FE410F;
  font-weight: 700;
  margin-left: 8px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__text .event-item__drink {
    width: 42%;
    font-size: 32px;
    line-height: 1.3;
    margin-left: 7px;
  }
}
.daily-section .daily .event-item.event_05 .event-item__text .event-item__drink span {
  font-size: 1.5rem;
  display: inline-block;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__text .event-item__drink span {
    font-size: 34px;
  }
}
.daily-section .daily .event-item.event_05 .event-item__title img {
  width: 215px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.event_05 .event-item__title img {
    width: auto;
  }
}
.daily-section .daily .event-item.event_05 .event-item__details_inner:nth-of-type(1)::after {
  content: none;
}
.daily-section .daily .event-item.is-close .event-close {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.is-close .event-close {
    border-radius: 20px;
    font-size: 20px;
  }
}
.daily-section .daily .event-item.is-close .event-close span {
  font-size: 20px;
}
@media (min-width: 821px) {
  .daily-section .daily .event-item.is-close .event-close span {
    font-size: 24px;
  }
}
.daily-section .event-item__footer {
  text-align: center;
  font-size: 1.125rem;
  color: #FFFFFF;
  font-weight: 600;
}
@media (min-width: 821px) {
  .daily-section .event-item__footer {
    font-size: 28px;
    margin-top: 70px;
  }
}
.daily-section .container {
  padding-bottom: 23%;
  background-image: url("/assets/images/bg_daily_parts_01.png"), url("/assets/images/bg_daily_parts_02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 18% 102.3%, 81% 102.3%;
  background-size: 30%, 30%;
}
@media (min-width: 821px) {
  .daily-section .container {
    padding-bottom: 224px;
    background-position: 24% 101.5%, 76% 101.5%;
    background-size: 247px, 247px;
  }
}

.food-section {
  background: #fbf0d1;
}
.food-section .food-intro__text {
  text-align: center;
  font-size: 0.813rem;
  line-height: 1.8;
  color: #782F24;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .food-section .food-intro__text {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    max-width: 660px;
    margin: 0 auto 53px;
  }
}
.food-section .food-intro__image {
  width: 45%;
  margin: 0 auto 8px;
}
@media (min-width: 821px) {
  .food-section .food-intro__image {
    width: 35%;
    margin-right: 23px;
  }
}

.restaurants {
  position: relative;
}
.restaurants .swiper-button-next, .restaurants .swiper-button-prev {
  width: 54px;
  height: 54px;
  border: 2px solid #FE410F;
  border-radius: 50%;
  top: 28%;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .restaurants .swiper-button-next:hover, .restaurants .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.restaurants .swiper-button-next {
  background: #FE410F url("/assets/images/icon_arrow_right_w.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .restaurants .swiper-button-next {
    right: 7.4%;
  }
}
.restaurants .swiper-button-prev {
  background: #FE410F url("/assets/images/icon_arrow_left_w.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .restaurants .swiper-button-prev {
    left: 7.4%;
  }
}

.restaurant-item__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.restaurant-item__image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.restaurant-item__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.restaurant-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.restaurant-item__content {
  text-align: center;
  padding: 1rem;
}
.restaurant-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FE410F;
  margin-bottom: 0.5rem;
}
@media (min-width: 821px) {
  .restaurant-item__title {
    font-size: 22px;
  }
}
.restaurant-item__price {
  font-size: 22px;
  font-weight: 700;
  color: #4E2F1A;
  margin-bottom: 0.5rem;
}
@media (min-width: 821px) {
  .restaurant-item__price {
    font-size: 22px;
  }
}
.restaurant-item__description {
  color: #4E2F1A;
  text-align: center;
  font-size: 0.813rem;
  line-height: 1.8;
  margin: 0 auto;
}
@media (min-width: 821px) {
  .restaurant-item__description {
    font-size: 1.125rem;
  }
}
.restaurant-item__description span {
  display: block;
  font-size: 12px;
}
@media (min-width: 821px) {
  .restaurant-item__description span {
    font-size: 14px;
  }
}

.collab-section {
  padding: 2rem 0 0;
  background: #FE410F;
}
@media (min-width: 821px) {
  .collab-section {
    padding: 4rem 0 0;
  }
}
.collab-section .section__title {
  color: #FFFFFF;
}
.collab-section .section__title .ja__title {
  color: #FFFFFF;
}
.collab-section .collab-intro__text {
  text-align: center;
  font-size: 0.813rem;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .collab-section .collab-intro__text {
    font-size: 1.125rem;
    margin-bottom: 53px;
  }
}

.collab-items {
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 821px) {
  .collab-items {
    margin-bottom: 100px;
  }
}
.collab-items .swiper-button-next,
.collab-items .swiper-button-prev {
  width: 54px;
  height: 54px;
  border: 2px solid #FE410F;
  border-radius: 50%;
  top: 49%;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .collab-items .swiper-button-next:hover,
  .collab-items .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.collab-items .swiper-button-next {
  background: #FFFFFF url("/assets/images/icon_arrow_right_o.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .collab-items .swiper-button-next {
    right: 7.4%;
  }
}
.collab-items .swiper-button-prev {
  background: #FFFFFF url("/assets/images/icon_arrow_left_o.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .collab-items .swiper-button-prev {
    left: 7.4%;
  }
}

.collab-item {
  border-radius: 20px;
  overflow: hidden;
  height: auto !important;
  display: flex;
  flex-direction: column;
}
.collab-item__content {
  padding: 1rem 1rem 1.4rem;
  text-align: center;
  background: #fbf0d1;
  font-size: 0.813rem;
  line-height: 1.8;
  color: #4E2F1A;
  flex-grow: 1;
}
@media (min-width: 821px) {
  .collab-item__content {
    padding: 1.5rem 0.5rem;
    width: 100%;
    font-size: 1rem;
  }
}
.collab-item__content .logo {
  margin-bottom: 1rem;
}
.collab-item__content .date {
  font-weight: 700;
  font-size: 36px;
  font-family: "din-2014", sans-serif;
  color: #782F24;
  margin-bottom: 1rem;
  line-height: 1;
}
.collab-item__content .date span {
  font-size: 20px;
}
.collab-item__content .text span {
  display: block;
  font-size: 12px;
}

.collection-section {
  background: #fbf0d1;
}
@media (min-width: 821px) {
  .collection-section {
    padding: 4rem 0 6rem;
  }
}
.collection-section .section__title {
  line-height: 1.2;
}
.collection-section .section__title .sub__title {
  display: block;
  font-size: 14px;
}
@media (min-width: 821px) {
  .collection-section .section__title .sub__title {
    font-size: 25px;
  }
}
.collection-section .collection-intro__text {
  text-align: center;
  font-size: 0.813rem;
  line-height: 1.8;
  color: #782F24;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .collection-section .collection-intro__text {
    font-size: 1.125rem;
    margin-bottom: 53px;
  }
}

.goods {
  position: relative;
}
.goods .swiper-button-next,
.goods .swiper-button-prev {
  width: 54px;
  height: 54px;
  border: 2px solid #FE410F;
  border-radius: 50%;
  top: 42%;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .goods .swiper-button-next,
  .goods .swiper-button-prev {
    top: 46%;
  }
  .goods .swiper-button-next:hover,
  .goods .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.goods .swiper-button-next {
  background: #FE410F url("/assets/images/icon_arrow_right_w.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .goods .swiper-button-next {
    right: 7.4%;
  }
}
.goods .swiper-button-prev {
  background: #FE410F url("/assets/images/icon_arrow_left_w.svg") no-repeat center center/20px 20px;
}
@media (min-width: 821px) {
  .goods .swiper-button-prev {
    left: 7.4%;
  }
}

.goods-item__image {
  position: relative;
  border-radius: 20px;
  border: 3px solid #FE410F;
  background: #FFFFFF;
  overflow: hidden;
  margin-bottom: 1rem;
}
.goods-item__image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.goods-item__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.goods-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.goods-item__name {
  color: #4E2F1A;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.campaign-section {
  background: #3C191D;
  color: #FFFFFF;
  padding: 0 0 2rem;
}
@media (min-width: 821px) {
  .campaign-section {
    padding: 0 0 4rem;
  }
}
.campaign-section .section__title {
  color: #FFFFFF;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .campaign-section .section__title {
    margin-bottom: 2.25rem;
  }
}
.campaign-section .section__title .ja__title {
  color: #FFFFFF;
}

.campaign-item__bg {
  background: url("/assets/images/bg_campaign_sp.jpg") no-repeat bottom center/cover;
  padding: 2rem 0 8.8rem;
}
@media (min-width: 821px) {
  .campaign-item__bg {
    background: url("/assets/images/bg_campaign_pc.jpg") no-repeat bottom center/cover;
    padding: 6rem 0 29.3vw;
  }
}

.campaigns {
  max-width: 800px;
  margin: 0 auto;
}

.campaign-item {
  text-align: center;
}
.campaign-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
@media (min-width: 821px) {
  .campaign-item__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
}
.campaign-item__title::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: -27px;
  transform: rotate(-30deg);
  width: 3px;
  height: 102px;
  background: #FFFFFF;
}
.campaign-item__title::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -27px;
  transform: rotate(30deg);
  width: 3px;
  height: 102px;
  background: #FFFFFF;
}
.campaign-item__title span {
  font-size: 2.25rem;
  font-weight: 600;
}
@media (min-width: 821px) {
  .campaign-item__title span {
    font-size: 72px;
  }
}
.campaign-item__period {
  text-align: center;
}
.campaign-item__period .period__title {
  text-align: center;
  display: inline-block;
  background: #fbf0d1;
  color: #FE410F;
  border-radius: 50px;
  font-size: 0.813rem;
  padding: 3px 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 821px) {
  .campaign-item__period .period__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.campaign-item__period .period__date {
  font-family: "din-2014", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 821px) {
  .campaign-item__period .period__date {
    font-size: 3rem;
  }
}
.campaign-item__period .period__date .dw {
  font-size: 1.125rem;
}
@media (min-width: 821px) {
  .campaign-item__period .period__date .dw {
    font-size: 27px;
  }
}
.campaign-item__period .period__date .time {
  font-size: 1.5rem;
}
@media (min-width: 821px) {
  .campaign-item__period .period__date .time {
    font-size: 34px;
  }
}
.campaign-item__period .period__date .line {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 821px) {
  .campaign-item__period .period__date .line {
    font-size: 1rem;
  }
}
.campaign-item__description {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 821px) {
  .campaign-item__description {
    font-size: 28px;
    text-align: left;
  }
}
@media (min-width: 821px) {
  .campaign-item__description__sub {
    font-size: 23px;
  }
  .campaign-item__description__sub span {
    font-size: 45px;
  }
}
.campaign-item__details {
  width: 90%;
  margin: 0 auto;
  max-width: 980px;
  background: #F9C158;
  border-radius: 20px;
  padding: 28px 1.5rem;
}
@media (min-width: 821px) {
  .campaign-item__details {
    margin: 57px auto 20px;
    padding: 50px 1.5rem;
  }
}
.campaign-item__details__text .campaign-item__description {
  color: #4E2F1A;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 821px) {
  .campaign-item__details__text .campaign-item__description {
    font-size: 1.875rem;
  }
}
.campaign-item__details__text .campaign-item__description__sub {
  font-size: 0.813rem;
  font-weight: 400;
  margin-top: 8px;
}
@media (min-width: 821px) {
  .campaign-item__details__text .campaign-item__description__sub {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
.campaign-item__details__image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 821px) {
  .campaign-item__details__image {
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.campaign-item__details__link {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #FE410F;
  margin-bottom: 14px;
}
@media (min-width: 821px) {
  .campaign-item__details__link {
    margin-bottom: 0;
    font-size: 1.875rem;
  }
}
.campaign-item__details__link span {
  position: relative;
  background: #fbf0d1;
  display: inline-block;
  padding: 2px 27px;
}
.campaign-item__details__link span::before, .campaign-item__details__link span::after {
  position: absolute;
  top: 0;
  width: 0px;
  height: 0px;
  border-color: #fbf0d1 transparent;
  border-style: solid;
  content: "";
}
.campaign-item__details__link span::before {
  border-width: 18px 0px 18px 12px;
  left: -12px;
}
@media (min-width: 821px) {
  .campaign-item__details__link span::before {
    border-width: 26px 0px 26px 12px;
  }
}
.campaign-item__details__link span::after {
  border-width: 18px 12px 18px 0px;
  right: -12px;
}
@media (min-width: 821px) {
  .campaign-item__details__link span::after {
    border-width: 26px 12px 26px 0px;
  }
}
.campaign-item__details__logo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
@media (min-width: 821px) {
  .campaign-item__details__logo {
    margin: 0 0 0 40px;
    max-width: 350px;
  }
}
.campaign-item__terms {
  margin: 1.5rem auto 0;
}
@media (min-width: 821px) {
  .campaign-item__terms {
    max-width: 900px;
  }
}
.campaign-item__terms__title {
  text-align: center;
  background: #FE410F;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
@media (min-width: 821px) {
  .campaign-item__terms__title {
    font-size: 1.125rem;
  }
}
.campaign-item__terms__inner {
  height: 15rem;
  overflow: hidden;
  overflow-y: scroll;
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  font-size: 12px;
  color: #000;
}
@media (min-width: 821px) {
  .campaign-item__terms__inner {
    height: 340px;
    font-size: 14px;
    padding: 2rem 3.5rem;
  }
}
.campaign-item__terms__inner .text__ttl {
  font-size: 14px;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}
.campaign-item__terms__inner .text__item {
  margin-bottom: 0.8rem;
}
@media (min-width: 821px) {
  .campaign-item__terms__inner .text__item {
    display: flex;
    justify-content: space-between;
  }
}
.campaign-item__terms__inner .text__item dt {
  margin-bottom: 3px;
}
@media (min-width: 821px) {
  .campaign-item__terms__inner .text__item dt {
    width: 20%;
    font-weight: 700;
  }
}
@media (min-width: 821px) {
  .campaign-item__terms__inner .text__item dd {
    width: 77%;
  }
  .campaign-item__terms__inner .text__item dd ul {
    list-style: disc;
  }
}
.campaign-item__terms__inner .text__item a {
  text-decoration: underline;
}
.campaign-item__terms__inner .item__terms__main h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.campaign-item__terms__inner .item__terms__main p {
  margin-bottom: 0.5rem;
}
.campaign-item__terms__inner .item__terms__main .terms__main_item {
  margin-bottom: 0.8rem;
}
@media (min-width: 821px) {
  .campaign-item__terms__inner .item__terms__main .terms__main_item {
    margin-bottom: 1.3rem;
  }
}
.campaign-item__terms__inner .item__terms__main .terms__main_item dt {
  font-weight: 700;
  margin-bottom: 3px;
}
.campaign-item__terms__inner .item__terms__main .terms__main_item ul {
  list-style: disc;
  padding: 0 0 0 1.7em;
  margin-bottom: 0.8rem;
}
.campaign-item__terms__inner .item__terms__main .terms__main_item a {
  text-decoration: underline;
}
.campaign-item__terms__inner .f_bold {
  font-weight: 700;
}

.products-section {
  background: #fbf0d1;
}
@media (min-width: 821px) {
  .products-section {
    padding: 4rem 0 6rem;
  }
}
.products-section .products-detail {
  text-align: center;
}
@media (min-width: 821px) {
  .products-section .products-detail {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.products-section .products-detail__image {
  width: 62%;
  margin: 0 auto 2rem;
}
@media (min-width: 821px) {
  .products-section .products-detail__image {
    width: 29%;
    margin: 0 0 3.7rem;
  }
}
.products-section .products-detail__content {
  font-size: 0.813rem;
  line-height: 1.8;
  color: #782F24;
  margin-bottom: 1.5rem;
}
@media (min-width: 821px) {
  .products-section .products-detail__content {
    font-size: 18px;
    margin-left: 50px;
    text-align: left;
  }
}

.info-section {
  background: #FE410F;
  padding: 2rem 0 0;
}
@media (min-width: 821px) {
  .info-section {
    padding: 4rem 0 0;
  }
}
.info-section .section__title {
  color: #FFFFFF;
}
.info-section .section__title .ja__title {
  color: #FFFFFF;
}
.info-section .access-info {
  padding: 0 1rem;
}
@media (min-width: 821px) {
  .info-section .access-info {
    max-width: 900px;
    padding: 0;
    margin: 0 auto;
  }
}
.info-section .access-info__inner {
  padding: 40px 1rem 0.5rem;
  border-radius: 20px;
  background: #fbf0d1;
  color: #FE410F;
}
@media (min-width: 821px) {
  .info-section .access-info__inner {
    padding: 60px 50px;
  }
}
.info-section .access-info .access-item__title {
  color: #FE410F;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: decoy, serif;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .info-section .access-info .access-item__title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}
.info-section .access-info .access-item__title .ja__title {
  display: block;
  font-size: 0.813rem;
  font-weight: 700;
  font-family: m-plus-1p, sans-serif;
  color: #782F24;
}
@media (min-width: 821px) {
  .info-section .access-info .access-item__title .ja__title {
    font-size: 1.125rem;
  }
}
.info-section .access-item {
  border-bottom: 1px solid #CCC;
  margin: 0 auto 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media (min-width: 821px) {
  .info-section .access-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.info-section .access-item dt {
  width: 120px;
  margin: 0 auto 13px;
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #FE410F;
  border-radius: 50px;
  padding: 3px 0;
}
@media (min-width: 821px) {
  .info-section .access-item dt {
    width: 140px;
    margin: 0 40px 0 0;
  }
}
.info-section .access-item dd {
  text-align: left;
  font-size: 0.813rem;
  line-height: 1.8;
}
.info-section .access-item dd .access-item__text__main {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 821px) {
  .info-section .access-item dd .access-item__text__main {
    font-size: 1.25rem;
    text-align: left;
  }
}
.info-section .access-item dd .access-item__text__sub {
  margin-top: 13px;
  color: #4E2F1A;
}
@media (min-width: 821px) {
  .info-section .access-map {
    margin-top: 26px;
    border-radius: 20px;
    overflow: hidden;
  }
}
.info-section .access-map iframe {
  width: 100%;
  border: none;
  height: 248px;
}
@media (min-width: 821px) {
  .info-section .access-map iframe {
    height: 310px;
  }
}
.info-section .btn_orange {
  margin: 40px auto;
}
@media (min-width: 821px) {
  .info-section .btn_orange {
    margin: 50px auto 60px;
  }
}

.footer {
  background-color: #fbf0d1;
  color: #FE410F;
  padding: 1rem 0 1.5rem;
  text-align: center;
}
@media (min-width: 821px) {
  .footer {
    padding: 38px 0 74px;
  }
}
.footer__logo {
  margin: 0 auto 1.5rem;
}
.footer__logo img {
  max-width: 126px;
  width: 100%;
  margin: 0 auto 0.5rem;
}
@media (min-width: 821px) {
  .footer__logo img {
    max-width: 180px;
    margin: 0 auto 20px;
  }
}
.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: decoy, serif;
  line-height: 1.3;
}
@media (min-width: 821px) {
  .footer__logo-text {
    font-size: 3rem;
  }
}
.footer__logo-text span {
  display: block;
  font-size: 0.813rem;
  font-weight: 700;
  font-family: m-plus-1p, sans-serif;
  color: #782F24;
}
@media (min-width: 821px) {
  .footer__logo-text span {
    font-size: 1.125rem;
  }
}
.footer__social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 30px;
  height: 30px;
  background: #FE410F;
  border-radius: 50%;
  margin: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media (min-width: 821px) {
  .footer__social-link {
    width: 39px;
    height: 39px;
  }
  .footer__social-link:hover {
    opacity: 0.6;
  }
}
.footer__social-link img {
  width: 16px;
  height: 16px;
}
@media (min-width: 821px) {
  .footer__social-link img {
    width: 19px;
    height: 19px;
  }
}
.footer__bottom {
  text-align: center;
  padding-top: 20px;
}
@media (min-width: 821px) {
  .footer__bottom {
    padding-top: 35px;
  }
}
.footer__copyright {
  font-size: 8px;
}
@media (min-width: 821px) {
  .footer__copyright {
    font-size: 12px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.main {
  overflow-x: hidden;
}

.section, .passport-section, .daily-section, .food-section, .collab-section, .collection-section, .campaign-section, .products-section, .info-section {
  position: relative;
}

.header {
  position: relative;
  z-index: 20;
}

.container--narrow {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
@media (min-width: 821px) {
  .container--narrow {
    max-width: 800px;
  }
}
.container--wide {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
}
@media (min-width: 821px) {
  .container--wide {
    max-width: 1400px;
  }
}

.grid--auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.grid--auto-fill {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.flex--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex--space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (min-width: 821px) {
  .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 821px) {
  .three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 821px) {
  .sidebar-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }
}

.card-grid--sm {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  gap: 1.5rem;
}
@media (min-width: 414px) {
  .card-grid--sm {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 821px) {
  .card-grid--sm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1240px) {
  .card-grid--sm {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-grid--md {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  gap: 2rem;
}
@media (min-width: 414px) {
  .card-grid--md {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 821px) {
  .card-grid--md {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1240px) {
  .card-grid--md {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-grid--lg {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  gap: 3rem;
}
@media (min-width: 414px) {
  .card-grid--lg {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 821px) {
  .card-grid--lg {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1240px) {
  .card-grid--lg {
    grid-template-columns: repeat(2, 1fr);
  }
}

.masonry {
  column-count: 1;
  column-gap: 1.5rem;
}
@media (min-width: 414px) {
  .masonry {
    column-count: 2;
  }
}
@media (min-width: 821px) {
  .masonry {
    column-count: 3;
    column-gap: 2rem;
  }
}
.masonry .masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.sticky {
  position: sticky;
  top: 1.5rem;
}

.aspect--square {
  position: relative;
}
.aspect--square::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.aspect--square > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aspect--video {
  position: relative;
}
.aspect--video::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.aspect--video > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aspect--photo {
  position: relative;
}
.aspect--photo::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.aspect--photo > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aspect--portrait {
  position: relative;
}
.aspect--portrait::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 133.3333333333%;
}
.aspect--portrait > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.centered-content {
  max-width: 65ch;
  margin: 0 auto;
}

.section--primary {
  background: linear-gradient(135deg, #FE410F 0%, #fbf0d1 100%);
  color: #FFFFFF;
}
.section--secondary {
  background: linear-gradient(135deg, #FE410F 0%, #fbf0d1 100%);
  color: #FFFFFF;
}
.section--accent {
  background: linear-gradient(135deg, #FE410F 0%, #fbf0d1 100%);
  color: #FFFFFF;
}
.section--gray {
  background-color: #F5F5F5;
}
.section--light {
  background-color: #FAFAFA;
}

.spacing--xs {
  padding: 0.25rem 0;
}
.spacing--sm {
  padding: 0.5rem 0;
}
.spacing--md {
  padding: 1rem 0;
}
.spacing--lg {
  padding: 1.5rem 0;
}
.spacing--xl {
  padding: 2rem 0;
}
.spacing--2xl {
  padding: 3rem 0;
}
.spacing--3xl {
  padding: 4rem 0;
}
.spacing--4xl {
  padding: 6rem 0;
}

.show-mobile {
  display: block;
}
@media (min-width: 414px) {
  .show-mobile {
    display: none;
  }
}

.show-tablet {
  display: none;
}
@media (min-width: 414px) {
  .show-tablet {
    display: block;
  }
}
@media (min-width: 821px) {
  .show-tablet {
    display: none;
  }
}

.show-desktop {
  display: none;
}
@media (min-width: 821px) {
  .show-desktop {
    display: block;
  }
}

.hide-mobile {
  display: block;
}
@media (max-width: 414px) {
  .hide-mobile {
    display: none;
  }
}

.hide-tablet {
  display: block;
}
@media (min-width: 414px) {
  .hide-tablet {
    display: none;
  }
}
@media (min-width: 821px) {
  .hide-tablet {
    display: block;
  }
}

.hide-desktop {
  display: block;
}
@media (min-width: 821px) {
  .hide-desktop {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */