@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  src: url("font/icomoon.eot?icfp0p");
  src: url("font/icomoon.eot?icfp0p#iefix") format("embedded-opentype"), url("font/icomoon.ttf?icfp0p") format("truetype"), url("font/icomoon.woff?icfp0p") format("woff"), url("font/icomoon.svg?icfp0p#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search::before {
  content: '\e900';
}

.icon-shopping::before {
  content: '\e901';
}

/* Verification
   ========================================================================== */
*, *::before, *::after {
  /* outline: 1px solid red; */
  /* outline-offset: -1px; */
}

/* Root
   ========================================================================== */
:root {
  --theme-color: #fd710c;
  --accent-color-01: #4b280e;
  --accent-color-02: #f2eee2;
  --gutter: 20px;
}

/* Document
   ========================================================================== */
/**
 * 1. Prevent adjustments of font size after orientation changes in iOS.
 * 2. Smooth scroll.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * 1. Line feed processing.
 * 2. Remove the margin in all browsers.
 */
body {
  color: var(--accent-color-01);
  font-family: "Noto Sans JP", sans-serif;
  /* 1 */
  word-wrap: break-word;
  /* 1 */
  overflow-wrap: break-word;
  background-color: var(--accent-color-02);
  min-inline-size: 23.4375rem;
  /* 2 */
  margin: 0;
}
@media (min-width: 48rem) {
  body {
    min-inline-size: 67.5rem;
  }
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  box-sizing: content-box;
  /* 1 */
  block-size: 0;
  /* 2 */
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* 1 */
  font-family: monospace, monospace;
  /* 2 */
  font-size: 1em;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 */
a {
  color: var(--theme-color);
  /* 1 */
  background-color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  /* 1 */
  -webkit-border-after: none;
  border-block-end: none;
  /* 2 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
  /* 2 */
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  inset-block-end: -0.25em;
}

sup {
  inset-block-start: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Eliminate the gap.
 * 2. Fluid image.
 * 3. Remove the border on images inside links in IE 10.
 */
img {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
  /* 2 */
  block-size: auto;
  /* 3 */
  border-style: none;
}

a img {
  transition: opacity 0.2s linear;
}
a:hover img {
  opacity: 0.5;
}

svg {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
  /* 2 */
  block-size: auto;
}

/**
 * 1. Eliminate the gap.
 * 2. Fluid iframe.
 */
iframe {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: inherit;
  /* 2 */
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  color: inherit;
  /* 1 */
  display: table;
  /* 1 */
  max-inline-size: 100%;
  /* 3 */
  padding: 0;
  /* 1 */
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Eliminate the gap.
 */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: bottom;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  block-size: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
summary::-webkit-details-marker {
  display: none;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Video
   ========================================================================== */
/**
 * Fluid video.
 */
video {
  max-inline-size: 100%;
  block-size: auto;
}

/* List
   ========================================================================== */
li[class] {
  list-style: none;
}

/* id
   ========================================================================== */
[id] {
  scroll-margin-block-start: 3.75rem;
}
@media (min-width: 48rem) {
  [id] {
    scroll-margin-block-start: 6.25rem;
  }
}

/* Button
   ========================================================================== */
button {
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

/* YouTube
   ========================================================================== */
/**
 * Fluid YouTube.
 */
@supports (aspect-ratio: 16 / 9) {
  iframe[src*=youtube] {
    aspect-ratio: 16 / 9;
    max-inline-size: 100%;
    block-size: 100%;
  }
}

/************************************************
    Screen Reader
*************************************************/
.sr-only {
  white-space: nowrap;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  position: absolute;
}

/************************************************
    Display
*************************************************/
/*  inline
------------------------------------------------*/
.inline {
  display: inline;
}

@media (min-width: 48rem) {
  .mq-M-inline {
    display: inline;
  }
}
/*  inline-block
------------------------------------------------*/
.i-blk {
  display: inline-block;
}

@media (min-width: 48rem) {
  .mq-M-i-blk {
    display: inline-block;
  }
}
/*  block
------------------------------------------------*/
.blk {
  display: block;
}

@media (min-width: 48rem) {
  .mq-M-blk {
    display: block;
  }
}
/************************************************
    Sticky Polyfill
*************************************************/
.sticky {
  position: sticky;
}
.sticky.sticky-fixed.is-sticky {
  margin-top: 0;
  margin-bottom: 0;
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sticky.sticky-fixed.is-sticky:not([style*=margin-top]) {
  margin-top: 0 !important;
}
.sticky.sticky-fixed.is-sticky:not([style*=margin-bottom]) {
  margin-bottom: 0 !important;
}
.sticky.sticky-fixed.is-absolute {
  position: absolute;
}

/************************************************
    Toggle
*************************************************/
/* ハンバーガーメニュー */
.toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1em;
  line-height: 1em;
  background-color: var(--theme-color);
  padding-block: 1.125rem;
  padding-inline: 0.9375rem;
  border: none;
  cursor: pointer;
  position: relative;
}
@supports not (padding-block: 1.125rem) {
  .toggle {
    -webkit-padding-before: 1.125rem;
    padding-block-start: 1.125rem;
    -webkit-padding-after: 1.125rem;
    padding-block-end: 1.125rem;
  }
}
@supports not (padding-inline: 0.9375rem) {
  .toggle {
    -webkit-padding-start: 0.9375rem;
    padding-inline-start: 0.9375rem;
    -webkit-padding-end: 0.9375rem;
    padding-inline-end: 0.9375rem;
  }
}
.toggle .hamburger {
  display: block;
  inline-size: 1.875rem;
  block-size: 1.5rem;
  margin-inline: auto;
  position: relative;
  transition: all 0.4s;
}
@supports not (margin-inline: auto) {
  .toggle .hamburger {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}
.toggle .line {
  display: block;
  background-color: white;
  inline-size: 100%;
  block-size: 0.1875rem;
  border-radius: 0.09375rem;
  position: absolute;
  inset-inline-start: 0;
  transition: all 0.4s;
}
@supports not (inset-inline-start: 0) {
  .toggle .line {
    left: 0;
  }
}
.toggle .line:first-of-type {
  inset-block-start: 0;
}
@supports not (inset-block-start: 0) {
  .toggle .line:first-of-type {
    top: 0;
  }
}
.toggle .line:nth-of-type(2) {
  inset-block-start: 0;
  inset-block-end: 0;
  margin: auto;
}
@supports not (inset-block-start: 0) {
  .toggle .line:nth-of-type(2) {
    top: 0;
  }
}
@supports not (inset-block-end: 0) {
  .toggle .line:nth-of-type(2) {
    bottom: 0;
  }
}
.toggle .line:last-of-type {
  inset-block-end: 0;
}
@supports not (inset-block-end: 0) {
  .toggle .line:last-of-type {
    bottom: 0;
  }
}

/* ハンバーガーボタンクリックアニメーション */
.open .toggle .line:first-of-type {
  transform: translateY(0.65625rem) rotate(-45deg);
}
.open .toggle .line:nth-of-type(2) {
  opacity: 0;
}
.open .toggle .line:last-of-type {
  transform: translateY(-0.65625rem) rotate(45deg);
}

/************************************************
    Button
*************************************************/
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  display: inline-block;
}

/************************************************
    Content
*************************************************/
.content {
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.content p {
  margin: 0;
}

/************************************************
    Address
*************************************************/
.address {
  font-size: 1em;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.address p {
  margin: 0;
}

/************************************************
    Copyright
*************************************************/
.copyright {
  font-size: 0.8125em;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin: 0;
}
.footer .copyright {
  text-align: end;
}
@media (min-width: 48rem) {
  .footer .copyright {
    -webkit-margin-before: 3.3846153846em;
    margin-block-start: 3.3846153846em;
  }
}
.copyright small {
  font-size: 1em;
}

/************************************************
    Navigation
*************************************************/
.navigation {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}
.navigation-list {
  padding: 0;
  margin: 0;
}
@media (min-width: 48rem) {
  .navigation-list {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.header .navigation-list {
  padding-inline: 1.04em;
}
@supports not (padding-inline: 1.04em) {
  .header .navigation-list {
    -webkit-padding-start: 1.04em;
    padding-inline-start: 1.04em;
    -webkit-padding-end: 1.04em;
    padding-inline-end: 1.04em;
  }
}
.footer .navigation-list {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation-item {
  padding-inline: 1.04em;
}
@supports not (padding-inline: 1.04em) {
  .navigation-item {
    -webkit-padding-start: 1.04em;
    padding-inline-start: 1.04em;
    -webkit-padding-end: 1.04em;
    padding-inline-end: 1.04em;
  }
}
.header .navigation-item {
  padding-block: 0.5em;
}
@supports not (padding-block: 0.5em) {
  .header .navigation-item {
    -webkit-padding-before: 0.5em;
    padding-block-start: 0.5em;
    -webkit-padding-after: 0.5em;
    padding-block-end: 0.5em;
  }
}
.navigation a {
  color: inherit;
  text-decoration: none;
}

/************************************************
    Page Top
*************************************************/
.pageTop {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-align: end;
  padding-inline: var(--gutter);
  margin: 0;
  position: fixed;
  inset-block-end: 4em;
  inset-inline-end: 0;
  z-index: 5;
}
@supports not (padding-inline: var(--gutter)) {
  .pageTop {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@supports not (inset-block-end: 4em) {
  .pageTop {
    bottom: 4em;
  }
}
@supports not (inset-inline-end: 0) {
  .pageTop {
    right: 0;
  }
}
@media (min-width: 48rem) {
  .pageTop {
    padding-inline: 2.875em;
    inset-block-end: 3.75em;
  }
  @supports not (padding-inline: 2.875em) {
    .pageTop {
      -webkit-padding-start: 2.875em;
      padding-inline-start: 2.875em;
      -webkit-padding-end: 2.875em;
      padding-inline-end: 2.875em;
    }
  }
  @supports not (inset-block-end: 3.75em) {
    .pageTop {
      bottom: 3.75em;
    }
  }
}
.pageTop .anchor {
  color: var(--accent-color-01);
  text-decoration: none;
  display: inline-block;
  background: url('img/pageTop.svg') no-repeat center / contain;
  padding-block: 1.1875em 1.3125em;
  padding-inline: 1.25em;
}
@supports not (padding-block: 1.1875em 1.3125em) {
  .pageTop .anchor {
    -webkit-padding-before: 1.1875em;
    padding-block-start: 1.1875em;
    -webkit-padding-after: 1.3125em;
    padding-block-end: 1.3125em;
  }
}
@supports not (padding-inline: 1.25em) {
  .pageTop .anchor {
    -webkit-padding-start: 1.25em;
    padding-inline-start: 1.25em;
    -webkit-padding-end: 1.25em;
    padding-inline-end: 1.25em;
  }
}

/************************************************
    ヘッダー
*************************************************/
.header {
  color: var(--accent-color-02);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  background-color: var(--accent-color-01);
  -webkit-padding-start: var(--gutter);
  padding-inline-start: var(--gutter);
  position: sticky;
  inset-block-start: 0;
  z-index: 10;
}
@supports not (inset-block-start: 0) {
  .header {
    top: 0;
  }
}
@media (min-width: 48rem) {
  .header {
    padding-block: 1.125em;
    padding-inline: 32px;
  }
  @supports not (padding-block: 1.125em) {
    .header {
      -webkit-padding-before: 1.125em;
      padding-block-start: 1.125em;
      -webkit-padding-after: 1.125em;
      padding-block-end: 1.125em;
    }
  }
  @supports not (padding-inline: 32px) {
    .header {
      -webkit-padding-start: 32px;
      padding-inline-start: 32px;
      -webkit-padding-end: 32px;
      padding-inline-end: 32px;
    }
  }
}
.admin-bar .header {
  inset-block-start: 32px;
}
@supports not (inset-block-start: 32px) {
  .admin-bar .header {
    top: 32px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    inset-block-start: 46px;
  }
  @supports not (inset-block-start: 46px) {
    .admin-bar .header {
      top: 46px;
    }
  }
}
.header .toggle {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  z-index: 3;
}
@media (min-width: 48rem) {
  .header .toggle {
    display: none;
  }
}

.h__title {
  font-size: 0.75em;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-row-align: center;
  align-self: center;
  z-index: 3;
  margin: 0;
}
@media (min-width: 48rem) {
  .h__title {
    font-size: 1em;
  }
}
.h__title img {
  inline-size: 11.0083125em;
}

.h-modal {
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr (auto)[2] 1fr;
  grid-template-rows: 1fr repeat(2, auto) 1fr;
  grid-row-gap: 2.5em;
  background-color: var(--accent-color-01);
  box-sizing: border-box;
  inline-size: 100vi;
  block-size: 100vb;
  padding-block: 2.5em;
  padding-inline: var(--gutter);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
}
@supports not (padding-block: 2.5em) {
  .h-modal {
    -webkit-padding-before: 2.5em;
    padding-block-start: 2.5em;
    -webkit-padding-after: 2.5em;
    padding-block-end: 2.5em;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .h-modal {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@supports not (inset-block-start: 0) {
  .h-modal {
    top: 0;
  }
}
@supports not (inset-inline-start: 0) {
  .h-modal {
    left: 0;
  }
}
@media (min-width: 48rem) {
  .h-modal {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    inline-size: auto;
    block-size: auto;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
  }
}
.open .h-modal {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.h-modal::before, .h-modal::after {
  content: "";
}
.h-modal::before {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.h-modal::after {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: -2;
}

.h__button {
  color: var(--accent-color-02);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  -ms-grid-column-align: center;
  justify-self: center;
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
  box-sizing: border-box;
  min-inline-size: 12.2857142857em;
  padding-block: 1em;
  padding-inline: 1em;
  border-radius: 0.5714285714em;
}
@supports not (padding-block: 1em) {
  .h__button {
    -webkit-padding-before: 1em;
    padding-block-start: 1em;
    -webkit-padding-after: 1em;
    padding-block-end: 1em;
  }
}
@supports not (padding-inline: 1em) {
  .h__button {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
@media (min-width: 48rem) {
  .navigation + .h__button {
    -webkit-margin-start: 0.48em;
    margin-inline-start: 0.48em;
  }
}
.h__button:hover {
  color: var(--theme-color);
  background-color: var(--accent-color-02);
}
.h__button::before {
  content: '\e901';
  font-family: "icomoon";
  font-weight: normal;
  font-size: 1.7142857143em;
  -webkit-margin-end: 0.5416666667em;
  margin-inline-end: 0.5416666667em;
}

/************************************************
    フッター
*************************************************/
.footer {
  color: var(--accent-color-01);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: white;
  padding-block: 2.8125em 2.5em;
  padding-inline: var(--gutter);
}
@supports not (padding-block: 2.8125em 2.5em) {
  .footer {
    -webkit-padding-before: 2.8125em;
    padding-block-start: 2.8125em;
    -webkit-padding-after: 2.5em;
    padding-block-end: 2.5em;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .footer {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    padding-inline: 3em 2em;
  }
  @supports not (padding-inline: 3em 2em) {
    .footer {
      -webkit-padding-start: 3em;
      padding-inline-start: 3em;
      -webkit-padding-end: 2em;
      padding-inline-end: 2em;
    }
  }
}
.footer .navigation {
  -webkit-margin-before: 2em;
  margin-block-start: 2em;
}
@media (min-width: 48rem) {
  .footer .navigation {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: end;
    justify-self: end;
    -ms-grid-row-align: start;
    align-self: start;
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
}
.footer .copyright {
  text-align: end;
  -webkit-margin-before: 3.3846153846em;
  margin-block-start: 3.3846153846em;
}
@media (min-width: 48rem) {
  .footer .copyright {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column-align: end;
    justify-self: end;
    -ms-grid-row-align: end;
    align-self: end;
    -webkit-margin-before: 3.3846153846em;
    margin-block-start: 3.3846153846em;
  }
}

.f__title {
  font-size: 1em;
  margin: 0;
}
@media (min-width: 48rem) {
  .f__title {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-grid-row-align: start;
    align-self: start;
    -webkit-margin-before: 0.125em;
    margin-block-start: 0.125em;
  }
}

.f__address {
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
@media (min-width: 48rem) {
  .f__address {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-margin-before: 0.25em;
    margin-block-start: 0.25em;
  }
}
.f__address .name {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4210526316;
}
@media (min-width: 48rem) {
  .f__address .name {
    -webkit-margin-start: 220px;
    margin-inline-start: 220px;
  }
}
.f__address .tel {
  font-size: 1.375em;
  line-height: 1.4210526316;
}
@media (min-width: 48rem) {
  .f__address .tel {
    -webkit-margin-after: 0.5em;
    margin-block-end: 0.5em;
    -webkit-margin-start: 220px;
    margin-inline-start: 220px;
  }
}
.f__address p {
  margin: 0;
}

.f__note {
  font-size: 0.875em;
  line-height: 1.5714285714;
}
@media (min-width: 48rem) {
  .f__note {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.f__address + .f__note {
  -webkit-margin-before: 0.2857142857em;
  margin-block-start: 0.2857142857em;
}
.f__note p {
  margin: 0;
}

/************************************************
    Section
*************************************************/
.section {
  font-size: 0.875em;
  padding-block: 4.6875rem;
  padding-inline: var(--gutter);
}
@supports not (padding-block: 4.6875rem) {
  .section {
    -webkit-padding-before: 4.6875rem;
    padding-block-start: 4.6875rem;
    -webkit-padding-after: 4.6875rem;
    padding-block-end: 4.6875rem;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .section {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .section {
    font-size: 1em;
    padding-block: 6.25rem;
  }
  @supports not (padding-block: 6.25rem) {
    .section {
      -webkit-padding-before: 6.25rem;
      padding-block-start: 6.25rem;
      -webkit-padding-after: 6.25rem;
      padding-block-end: 6.25rem;
    }
  }
}

/************************************************
    CURRY
*************************************************/
@-webkit-keyframes toLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes toLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-Curry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2] 1fr;
  grid-template-rows: repeat(2, auto) 1fr;
  max-inline-size: 60em;
  padding-block: 0;
  margin-block: 7.5em;
  margin-inline: auto;
}
@supports not (padding-block: 0) {
  .section-Curry {
    -webkit-padding-before: 0;
    padding-block-start: 0;
    -webkit-padding-after: 0;
    padding-block-end: 0;
  }
}
@supports not (margin-block: 7.5em) {
  .section-Curry {
    -webkit-margin-before: 7.5em;
    margin-block-start: 7.5em;
    -webkit-margin-after: 7.5em;
    margin-block-end: 7.5em;
  }
}
@supports not (margin-inline: auto) {
  .section-Curry {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}
.section-Curry::before {
  content: "";
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  display: block;
  border-radius: 2.5em;
  outline: 1px solid var(--accent-color-01);
  outline-offset: -1px;
  z-index: 1;
}
.section-Curry__title {
  color: var(--accent-color-02);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
  white-space: nowrap;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -js-display: flex;
  display: flex;
  background-color: var(--accent-color-01);
  padding-block: 0.6666666667em;
  border-start-start-radius: 1.6666666667em;
  border-start-end-radius: 1.6666666667em;
  overflow: hidden;
  margin: 0;
  z-index: 2;
}
@supports not (padding-block: 0.6666666667em) {
  .section-Curry__title {
    -webkit-padding-before: 0.6666666667em;
    padding-block-start: 0.6666666667em;
    -webkit-padding-after: 0.6666666667em;
    padding-block-end: 0.6666666667em;
  }
}
@media (min-width: 48rem) {
  .section-CurryMenu .section-Curry__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
    z-index: 4;
  }
}
@media (min-width: 48rem) {
  .section-OnlineShop .section-Curry__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.section-Curry__title .text {
  -js-display: flex;
  display: flex;
  -webkit-animation: toLeft 16s linear infinite;
  animation: toLeft 16s linear infinite;
}
.section-Curry__title .title {
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.375em;
}
@supports not (padding-inline: 0.375em) {
  .section-Curry__title .title {
    -webkit-padding-start: 0.375em;
    padding-inline-start: 0.375em;
    -webkit-padding-end: 0.375em;
    padding-inline-end: 0.375em;
  }
}
.section-Curry__title .title::before {
  content: "";
  display: inline-block;
  background: no-repeat center / contain;
  inline-size: 1.5em;
  block-size: 1.5em;
  -webkit-margin-end: 0.75em;
  margin-inline-end: 0.75em;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
@supports ((background-image: -webkit-image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x)) or (background-image: image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x))) {
  .webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x);
    background-image: image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x)) or (background-image: image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x))) {
  .no-webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x);
    background-image: image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x)) or (background-image: image-set(url('img/crown.webp') 1x, url('img/crown@2x.webp') 2x, url('img/crown@3x.webp') 3x))) {
  .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: url('img/crown.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
      background-image: url('img/crown@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
      background-image: url('img/crown@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x)) or (background-image: image-set(url('img/crown.png') 1x, url('img/crown@2x.png') 2x, url('img/crown@3x.png') 3x))) {
  .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: url('img/crown.png');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
      background-image: url('img/crown@2x.png');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
      background-image: url('img/crown@3x.png');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-CurryChampionshipBattle .section-Curry__title .title::before {
  background-image: url('img/crown.png');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: url('img/crown@2x.png');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-CurryChampionshipBattle .section-Curry__title .title::before {
    background-image: url('img/crown@3x.png');
  }
}

.section-CurryMenu .section-Curry__title .title::before {
  inline-size: 1.875em;
  block-size: 1.875em;
}
@supports ((background-image: -webkit-image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x)) or (background-image: image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x))) {
  .webp .section-CurryMenu .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x);
    background-image: image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x)) or (background-image: image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x))) {
  .no-webp .section-CurryMenu .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x);
    background-image: image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x)) or (background-image: image-set(url('img/curry.webp') 1x, url('img/curry@2x.webp') 2x, url('img/curry@3x.webp') 3x))) {
  .section-CurryMenu .section-Curry__title .title::before {
    background-image: url('img/curry.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-CurryMenu .section-Curry__title .title::before {
      background-image: url('img/curry@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-CurryMenu .section-Curry__title .title::before {
      background-image: url('img/curry@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x)) or (background-image: image-set(url('img/curry.png') 1x, url('img/curry@2x.png') 2x, url('img/curry@3x.png') 3x))) {
  .section-CurryMenu .section-Curry__title .title::before {
    background-image: url('img/curry.png');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-CurryMenu .section-Curry__title .title::before {
      background-image: url('img/curry@2x.png');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-CurryMenu .section-Curry__title .title::before {
      background-image: url('img/curry@3x.png');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-CurryMenu .section-Curry__title .title::before {
  background-image: url('img/curry.png');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-CurryMenu .section-Curry__title .title::before {
    background-image: url('img/curry@2x.png');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-CurryMenu .section-Curry__title .title::before {
    background-image: url('img/curry@3x.png');
  }
}

@supports ((background-image: -webkit-image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x)) or (background-image: image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x))) {
  .webp .section-TakeOut .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x);
    background-image: image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x)) or (background-image: image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x))) {
  .no-webp .section-TakeOut .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x);
    background-image: image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x)) or (background-image: image-set(url('img/bag.webp') 1x, url('img/bag@2x.webp') 2x, url('img/bag@3x.webp') 3x))) {
  .section-TakeOut .section-Curry__title .title::before {
    background-image: url('img/bag.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-TakeOut .section-Curry__title .title::before {
      background-image: url('img/bag@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-TakeOut .section-Curry__title .title::before {
      background-image: url('img/bag@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x)) or (background-image: image-set(url('img/bag.png') 1x, url('img/bag@2x.png') 2x, url('img/bag@3x.png') 3x))) {
  .section-TakeOut .section-Curry__title .title::before {
    background-image: url('img/bag.png');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-TakeOut .section-Curry__title .title::before {
      background-image: url('img/bag@2x.png');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-TakeOut .section-Curry__title .title::before {
      background-image: url('img/bag@3x.png');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-TakeOut .section-Curry__title .title::before {
  background-image: url('img/bag.png');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-TakeOut .section-Curry__title .title::before {
    background-image: url('img/bag@2x.png');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-TakeOut .section-Curry__title .title::before {
    background-image: url('img/bag@3x.png');
  }
}

@supports ((background-image: -webkit-image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x)) or (background-image: image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x))) {
  .webp .section-OnlineShop .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x);
    background-image: image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x)) or (background-image: image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x))) {
  .no-webp .section-OnlineShop .section-Curry__title .title::before {
    background-image: -webkit-image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x);
    background-image: image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x)) or (background-image: image-set(url('img/cart.webp') 1x, url('img/cart@2x.webp') 2x, url('img/cart@3x.webp') 3x))) {
  .section-OnlineShop .section-Curry__title .title::before {
    background-image: url('img/cart.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-OnlineShop .section-Curry__title .title::before {
      background-image: url('img/cart@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-OnlineShop .section-Curry__title .title::before {
      background-image: url('img/cart@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x)) or (background-image: image-set(url('img/cart.png') 1x, url('img/cart@2x.png') 2x, url('img/cart@3x.png') 3x))) {
  .section-OnlineShop .section-Curry__title .title::before {
    background-image: url('img/cart.png');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-OnlineShop .section-Curry__title .title::before {
      background-image: url('img/cart@2x.png');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-OnlineShop .section-Curry__title .title::before {
      background-image: url('img/cart@3x.png');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-OnlineShop .section-Curry__title .title::before {
  background-image: url('img/cart.png');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-OnlineShop .section-Curry__title .title::before {
    background-image: url('img/cart@2x.png');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-OnlineShop .section-Curry__title .title::before {
    background-image: url('img/cart@3x.png');
  }
}

.section-Curry__thumbnail {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media (min-width: 48rem) {
  .section-CurryMenu .section-Curry__thumbnail {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / 4;
    z-index: 2;
  }
}
.section-Curry__thumbnail img {
  inline-size: 100%;
  border-end-start-radius: 2.5em;
  border-end-end-radius: 2.5em;
}
@media (min-width: 48rem) {
  .section-TakeOut .section-Curry__thumbnail img {
    border-radius: 0;
  }
}
.section-Curry__go {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.5;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: end;
  align-self: end;
  display: inline-block;
  margin-block: 0 1.15em;
  -webkit-margin-end: 1.15em;
  margin-inline-end: 1.15em;
  z-index: 3;
}
@supports not (margin-block: 0 1.15em) {
  .section-Curry__go {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 1.15em;
    margin-block-end: 1.15em;
  }
}
@media (min-width: 48rem) {
  .section-Curry__go {
    font-size: 2.5em;
  }
}
@media (min-width: 48rem) {
  .section-CurryMenu .section-Curry__go {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 / 5;
  }
}
.section-OnlineShop .section-Curry__go {
  -ms-grid-row: 3;
  grid-row: 3;
}
@media (min-width: 48rem) {
  .section-OnlineShop .section-Curry__go {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -webkit-margin-end: 3.925em;
    margin-inline-end: 3.925em;
  }
}
.section-Curry__go a {
  color: #342a27;
  text-decoration: none;
  display: inline-block;
  background: url('img/go.svg') no-repeat center / 3.845375em auto;
  padding-block: 1.078825em 1.238825em;
  padding-inline: 1.1131125em;
}
@supports not (padding-block: 1.078825em 1.238825em) {
  .section-Curry__go a {
    -webkit-padding-before: 1.078825em;
    padding-block-start: 1.078825em;
    -webkit-padding-after: 1.238825em;
    padding-block-end: 1.238825em;
  }
}
@supports not (padding-inline: 1.1131125em) {
  .section-Curry__go a {
    -webkit-padding-start: 1.1131125em;
    padding-inline-start: 1.1131125em;
    -webkit-padding-end: 1.1131125em;
    padding-inline-end: 1.1131125em;
  }
}
.section-Curry__content {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.625;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  -webkit-margin-before: 2em;
  margin-block-start: 2em;
}
.section-CurryChampionshipBattle .section-Curry__content {
  max-inline-size: 47.84em;
  max-inline-size: 48em;
  margin-inline: auto;
}
@supports not (margin-inline: auto) {
  .section-CurryChampionshipBattle .section-Curry__content {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}
@media (min-width: 48rem) {
  .section-CurryMenu .section-Curry__content {
    color: #342a27;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 / 5;
    background-color: white;
    padding-block: 2.75em;
    padding-inline: 6.3125em 4.8125em;
    border: 1px solid var(--accent-color-01);
    border-radius: 2.5em;
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
  @supports not (padding-block: 2.75em) {
    .section-CurryMenu .section-Curry__content {
      -webkit-padding-before: 2.75em;
      padding-block-start: 2.75em;
      -webkit-padding-after: 2.75em;
      padding-block-end: 2.75em;
    }
  }
  @supports not (padding-inline: 6.3125em 4.8125em) {
    .section-CurryMenu .section-Curry__content {
      -webkit-padding-start: 6.3125em;
      padding-inline-start: 6.3125em;
      -webkit-padding-end: 4.8125em;
      padding-inline-end: 4.8125em;
    }
  }
}
@media (min-width: 48rem) {
  .section-TakeOut .section-Curry__content {
    color: #342a27;
    text-align: center;
    background-color: white;
    -webkit-border-before: 1px solid var(--accent-color-01);
    border-block-start: 1px solid var(--accent-color-01);
    padding-block: 1.75em;
    padding-inline: 1.04em 1em;
    border-end-start-radius: 2.5em;
    border-end-end-radius: 2.5em;
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
  @supports not (padding-block: 1.75em) {
    .section-TakeOut .section-Curry__content {
      -webkit-padding-before: 1.75em;
      padding-block-start: 1.75em;
      -webkit-padding-after: 1.75em;
      padding-block-end: 1.75em;
    }
  }
  @supports not (padding-inline: 1.04em 1em) {
    .section-TakeOut .section-Curry__content {
      -webkit-padding-start: 1.04em;
      padding-inline-start: 1.04em;
      -webkit-padding-end: 1em;
      padding-inline-end: 1em;
    }
  }
}
.section-OnlineShop .section-Curry__content {
  color: #342a27;
  -ms-grid-row: 2;
  grid-row: 2;
  background-color: white;
  padding-block: 2.5em;
  padding-inline: 1em;
  -webkit-margin-before: 0;
  margin-block-start: 0;
}
@supports not (padding-block: 2.5em) {
  .section-OnlineShop .section-Curry__content {
    -webkit-padding-before: 2.5em;
    padding-block-start: 2.5em;
    -webkit-padding-after: 2.5em;
    padding-block-end: 2.5em;
  }
}
@supports not (padding-inline: 1em) {
  .section-OnlineShop .section-Curry__content {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
@media (min-width: 48rem) {
  .section-OnlineShop .section-Curry__content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 3;
    grid-row: 3;
    -webkit-padding-after: 12.5em;
    padding-block-end: 12.5em;
    padding-inline: 3em 9.5em;
    border-end-start-radius: 2.5em;
    border-end-end-radius: 2.5em;
  }
  @supports not (padding-inline: 3em 9.5em) {
    .section-OnlineShop .section-Curry__content {
      -webkit-padding-start: 3em;
      padding-inline-start: 3em;
      -webkit-padding-end: 9.5em;
      padding-inline-end: 9.5em;
    }
  }
}
.section-Curry__content p {
  margin: 0;
}

@media (min-width: 48rem) {
  .section-CurryMenu {
    -ms-grid-columns: 51fr 7fr 38fr;
    grid-template-columns: 51fr 7fr 38fr;
    -ms-grid-rows: 5em 8.875em 28.625em 5.125em;
    grid-template-rows: 5em 8.875em 28.625em 5.125em;
  }
}
@media (min-width: 48rem) {
  .section-CurryMenu::before {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
    z-index: 3;
  }
}

@media (min-width: 48rem) {
  .section-TakeOut::before {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
    z-index: 2;
  }
}

@media (min-width: 48rem) {
  .section-OnlineShop {
    -ms-grid-columns: 372fr 202fr 386fr;
    grid-template-columns: 372fr 202fr 386fr;
    -ms-grid-rows: 6.75em (auto)[2] 1fr;
    grid-template-rows: 6.75em repeat(2, auto) 1fr;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
}
.section-OnlineShop::before {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1 / -1;
}
@media (min-width: 48rem) {
  .section-OnlineShop::before {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / 4;
    z-index: 3;
  }
}
.section-OnlineShop__thumbnail {
  text-align: center;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  background-color: white;
  border-end-start-radius: 2.5em;
  border-end-end-radius: 2.5em;
}
@media (min-width: 48rem) {
  .section-OnlineShop__thumbnail {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / -1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / -1;
    background-color: transparent;
    border-radius: 0;
    -webkit-margin-end: -6.5em;
    margin-inline-end: -6.5em;
    z-index: 4;
  }
}
.section-OnlineShop__thumbnail--shadow {
  mix-blend-mode: multiply;
}

/************************************************
    ACCESS
*************************************************/
.section-Access {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  padding: 0;
}
.section-Access__title {
  color: var(--accent-color-02);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1.5;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  background-color: var(--theme-color);
  padding-block: 1.2em;
  padding-inline: 0.6em;
  margin: 0;
}
@supports not (padding-block: 1.2em) {
  .section-Access__title {
    -webkit-padding-before: 1.2em;
    padding-block-start: 1.2em;
    -webkit-padding-after: 1.2em;
    padding-block-end: 1.2em;
  }
}
@supports not (padding-inline: 0.6em) {
  .section-Access__title {
    -webkit-padding-start: 0.6em;
    padding-inline-start: 0.6em;
    -webkit-padding-end: 0.6em;
    padding-inline-end: 0.6em;
  }
}
@media (min-width: 48rem) {
  .section-Access__title {
    padding-inline: 1.2em;
  }
  @supports not (padding-inline: 1.2em) {
    .section-Access__title {
      -webkit-padding-start: 1.2em;
      padding-inline-start: 1.2em;
      -webkit-padding-end: 1.2em;
      padding-inline-end: 1.2em;
    }
  }
}
.section-Access__button {
  color: var(--accent-color-02);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-decoration: none;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: center;
  background-color: var(--accent-color-01);
  box-sizing: border-box;
  padding-block: 1.3125em;
  padding-inline: 2.08em 2.04em;
  border-radius: 2.25em;
  -webkit-margin-end: 1.5em;
  margin-inline-end: 1.5em;
}
@supports not (padding-block: 1.3125em) {
  .section-Access__button {
    -webkit-padding-before: 1.3125em;
    padding-block-start: 1.3125em;
    -webkit-padding-after: 1.3125em;
    padding-block-end: 1.3125em;
  }
}
@supports not (padding-inline: 2.08em 2.04em) {
  .section-Access__button {
    -webkit-padding-start: 2.08em;
    padding-inline-start: 2.08em;
    -webkit-padding-end: 2.04em;
    padding-inline-end: 2.04em;
  }
}
@media (min-width: 48rem) {
  .section-Access__button {
    min-inline-size: 14.75em;
    -webkit-margin-end: 3em;
    margin-inline-end: 3em;
  }
}
.section-Access__button:hover {
  color: var(--accent-color-01);
  background-color: var(--accent-color-02);
}
.section-Access__button::before {
  content: '\e900';
  font-family: "icomoon";
  font-weight: normal;
  font-size: 1.25em;
  -webkit-margin-end: 0.7em;
  margin-inline-end: 0.7em;
}
.section-Access__map {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  inline-size: 100%;
  block-size: 100vb;
  max-block-size: 30em;
}
.section-Access-guide {
  color: var(--accent-color-02);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media (min-width: 48rem) {
  .section-Access-guide {
    font-size: 0.8333333333vw;
    font-size: 0.8333333333vi;
    -js-display: flex;
    display: flex;
  }
}
.section-Access-guide-item {
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background: no-repeat center / cover;
  min-block-size: 3lh;
  padding-block: 12.625em;
  padding-inline: 1em;
}
@supports not (padding-block: 12.625em) {
  .section-Access-guide-item {
    -webkit-padding-before: 12.625em;
    padding-block-start: 12.625em;
    -webkit-padding-after: 12.625em;
    padding-block-end: 12.625em;
  }
}
@supports not (padding-inline: 1em) {
  .section-Access-guide-item {
    -webkit-padding-start: 1em;
    padding-inline-start: 1em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
@supports not (min-block-size: 3lh) {
  .section-Access-guide-item {
    min-block-size: 6em;
  }
}
@media (min-width: 48rem) {
  .section-Access-guide-item {
    flex: 1;
  }
}
@supports ((background-image: -webkit-image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x)) or (background-image: image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x))) {
  .webp .section-Access-guide-item--inside {
    background-image: -webkit-image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x);
    background-image: image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x))) {
  .no-webp .section-Access-guide-item--inside {
    background-image: -webkit-image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x);
    background-image: image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x)) or (background-image: image-set(url('img/guide_inside.webp') 1x, url('img/guide_inside@2x.webp') 2x, url('img/guide_inside@3x.webp') 3x))) {
  .section-Access-guide-item--inside {
    background-image: url('img/guide_inside.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-Access-guide-item--inside {
      background-image: url('img/guide_inside@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-Access-guide-item--inside {
      background-image: url('img/guide_inside@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_inside.jpg') 1x, url('img/guide_inside@2x.jpg') 2x, url('img/guide_inside@3x.jpg') 3x))) {
  .section-Access-guide-item--inside {
    background-image: url('img/guide_inside.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-Access-guide-item--inside {
      background-image: url('img/guide_inside@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-Access-guide-item--inside {
      background-image: url('img/guide_inside@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-Access-guide-item--inside {
  background-image: url('img/guide_inside.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--inside {
    background-image: url('img/guide_inside@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--inside {
    background-image: url('img/guide_inside@3x.jpg');
  }
}

@supports ((background-image: -webkit-image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x)) or (background-image: image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x))) {
  .webp .section-Access-guide-item--address {
    background-image: -webkit-image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x);
    background-image: image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x))) {
  .no-webp .section-Access-guide-item--address {
    background-image: -webkit-image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x);
    background-image: image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x)) or (background-image: image-set(url('img/guide_address.webp') 1x, url('img/guide_address@2x.webp') 2x, url('img/guide_address@3x.webp') 3x))) {
  .section-Access-guide-item--address {
    background-image: url('img/guide_address.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-Access-guide-item--address {
      background-image: url('img/guide_address@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-Access-guide-item--address {
      background-image: url('img/guide_address@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_address.jpg') 1x, url('img/guide_address@2x.jpg') 2x, url('img/guide_address@3x.jpg') 3x))) {
  .section-Access-guide-item--address {
    background-image: url('img/guide_address.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-Access-guide-item--address {
      background-image: url('img/guide_address@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-Access-guide-item--address {
      background-image: url('img/guide_address@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-Access-guide-item--address {
  background-image: url('img/guide_address.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--address {
    background-image: url('img/guide_address@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--address {
    background-image: url('img/guide_address@3x.jpg');
  }
}

@supports ((background-image: -webkit-image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x)) or (background-image: image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x))) {
  .webp .section-Access-guide-item--parking {
    background-image: -webkit-image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x);
    background-image: image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x))) {
  .no-webp .section-Access-guide-item--parking {
    background-image: -webkit-image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x);
    background-image: image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x)) or (background-image: image-set(url('img/guide_parking.webp') 1x, url('img/guide_parking@2x.webp') 2x, url('img/guide_parking@3x.webp') 3x))) {
  .section-Access-guide-item--parking {
    background-image: url('img/guide_parking.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-Access-guide-item--parking {
      background-image: url('img/guide_parking@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-Access-guide-item--parking {
      background-image: url('img/guide_parking@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x)) or (background-image: image-set(url('img/guide_parking.jpg') 1x, url('img/guide_parking@2x.jpg') 2x, url('img/guide_parking@3x.jpg') 3x))) {
  .section-Access-guide-item--parking {
    background-image: url('img/guide_parking.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-Access-guide-item--parking {
      background-image: url('img/guide_parking@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-Access-guide-item--parking {
      background-image: url('img/guide_parking@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-Access-guide-item--parking {
  background-image: url('img/guide_parking.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--parking {
    background-image: url('img/guide_parking@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Access-guide-item--parking {
    background-image: url('img/guide_parking@3x.jpg');
  }
}

.section-Access-guide-item p {
  margin: 0;
}
.section-Access-guide-item .marker {
  background-color: var(--accent-color-01);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-block: 0.21875em;
  padding-inline: 0.375em;
}
@supports not (padding-block: 0.21875em) {
  .section-Access-guide-item .marker {
    -webkit-padding-before: 0.21875em;
    padding-block-start: 0.21875em;
    -webkit-padding-after: 0.21875em;
    padding-block-end: 0.21875em;
  }
}
@supports not (padding-inline: 0.375em) {
  .section-Access-guide-item .marker {
    -webkit-padding-start: 0.375em;
    padding-inline-start: 0.375em;
    -webkit-padding-end: 0.375em;
    padding-inline-end: 0.375em;
  }
}
/*# sourceMappingURL=maps/style.css.map */