@charset "UTF-8";
@layer normalize, wpBlockLibrary, destyle;
@layer normalize {
  /* Document
   * ========================================================================== */
  /**
   * Add border box sizing in all browsers (opinionated).
   */
  *,
::before,
::after {
    box-sizing: border-box;
  }
  /**
   * 1. Add text decoration inheritance in all browsers (opinionated).
   * 2. Add vertical alignment inheritance in all browsers (opinionated).
   */
  ::before,
::after {
    text-decoration: inherit; /* 1 */
    vertical-align: inherit; /* 2 */
  }
  /**
   * 1. Use the default cursor in all browsers (opinionated).
   * 2. Change the line height in all browsers (opinionated).
   * 3. Use a 4-space tab width in all browsers (opinionated).
   * 4. Remove the grey highlight on links in iOS (opinionated).
   * 5. Prevent adjustments of font size after orientation changes in
   *    IE on Windows Phone and in iOS.
   * 6. Breaks words to prevent overflow in all browsers (opinionated).
   */
  html {
    cursor: default; /* 1 */
    line-height: 1.5; /* 2 */
    -moz-tab-size: 4; /* 3 */
    -o-tab-size: 4;
    tab-size: 4; /* 3 */
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%; /* 5 */
    -webkit-text-size-adjust: 100%; /* 5 */
    word-break: break-word; /* 6 */
  }
  /* Sections
   * ========================================================================== */
  /**
   * Remove the margin in all browsers (opinionated).
   */
  body {
    margin: 0;
  }
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Edge, Firefox, and Safari.
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  /* Grouping content
   * ========================================================================== */
  /**
   * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
   */
  dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
    margin: 0;
  }
  /**
   * Remove the margin on nested lists in Edge 18- and IE.
   */
  ol ol,
ol ul,
ul ol,
ul ul {
    margin: 0;
  }
  /**
   * 1. Add the correct sizing in Firefox.
   * 2. Show the overflow in Edge 18- and IE.
   */
  hr {
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  /**
   * Add the correct display in IE.
   */
  main {
    display: block;
  }
  /**
   * Remove the list style on navigation lists in all browsers (opinionated).
   */
  nav ol,
nav ul {
    list-style: none;
    padding: 0;
  }
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  /* Text-level semantics
   * ========================================================================== */
  /**
   * Remove the gray background on active links in IE 10.
   */
  a {
    background-color: transparent;
  }
  /**
   * Add the correct text decoration in Edge 18-, IE, and Safari.
   */
  abbr[title] {
    text-decoration: underline;
    -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 {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  /**
   * Add the correct font size in all browsers.
   */
  small {
    font-size: 80%;
  }
  /* Embedded content
   * ========================================================================== */
  /*
   * Change the alignment on media elements in all browsers (opinionated).
   */
  audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
  }
  /**
   * Add the correct display in IE 9-.
   */
  audio,
video {
    display: inline-block;
  }
  /**
   * Add the correct display in iOS 4-7.
   */
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  /**
   * Remove the border on iframes in all browsers (opinionated).
   */
  iframe {
    border-style: none;
  }
  /**
   * Remove the border on images within links in IE 10-.
   */
  img {
    border-style: none;
  }
  /**
   * Change the fill color to match the text color in all browsers (opinionated).
   */
  svg:not([fill]) {
    fill: currentColor;
  }
  /**
   * Hide the overflow in IE.
   */
  svg:not(:root) {
    overflow: hidden;
  }
  /* Tabular data
   * ========================================================================== */
  /**
   * Collapse border spacing in all browsers (opinionated).
   */
  table {
    border-collapse: collapse;
  }
  /* Forms
   * ========================================================================== */
  /**
   * Remove the margin on controls in Safari.
   */
  button,
input,
select {
    margin: 0;
  }
  /**
   * 1. Show the overflow in IE.
   * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
   */
  button {
    overflow: visible; /* 1 */
    text-transform: none; /* 2 */
  }
  /**
   * Correct the inability to style buttons in iOS and Safari.
   */
  button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
  }
  /**
   * 1. Change the inconsistent appearance in all browsers (opinionated).
   * 2. Correct the padding in Firefox.
   */
  fieldset {
    border: 1px solid #a0a0a0; /* 1 */
    padding: 0.35em 0.75em 0.625em; /* 2 */
  }
  /**
   * Show the overflow in Edge 18- and IE.
   */
  input {
    overflow: visible;
  }
  /**
   * 1. Correct the text wrapping in Edge 18- and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   */
  legend {
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    white-space: normal; /* 1 */
  }
  /**
   * 1. Add the correct display in Edge 18- and IE.
   * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
   */
  progress {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
  }
  /**
   * Remove the inheritance of text transform in Firefox.
   */
  select {
    text-transform: none;
  }
  /**
   * 1. Remove the margin in Firefox and Safari.
   * 2. Remove the default vertical scrollbar in IE.
   * 3. Change the resize direction in all browsers (opinionated).
   */
  textarea {
    margin: 0; /* 1 */
    overflow: auto; /* 2 */
    resize: vertical; /* 3 */
  }
  /**
   * Remove the padding in IE 10-.
   */
  [type=checkbox],
[type=radio] {
    padding: 0;
  }
  /**
   * 1. Correct the odd appearance in Chrome, Edge, and Safari.
   * 2. Correct the outline style in Safari.
   */
  [type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  /**
   * Correct the cursor style of increment and decrement buttons in Safari.
   */
  ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
  }
  /**
   * Correct the text style of placeholders in Chrome, Edge, and Safari.
   */
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
  }
  /**
   * Remove the inner padding in Chrome, Edge, and Safari on macOS.
   */
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  /**
   * 1. Correct the inability to style upload buttons in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  /**
   * Remove the inner border and padding of focus outlines in Firefox.
   */
  ::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  /**
   * Restore the focus outline styles unset by the previous rule in Firefox.
   */
  :-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  /**
   * Remove the additional :invalid styles in Firefox.
   */
  :-moz-ui-invalid {
    box-shadow: none;
  }
  /* Interactive
   * ========================================================================== */
  /*
   * Add the correct display in Edge 18- and IE.
   */
  details {
    display: block;
  }
  /*
   * Add the correct styles in Edge 18-, IE, and Safari.
   */
  dialog {
    background-color: white;
    border: solid;
    color: black;
    display: block;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
  dialog:not([open]) {
    display: none;
  }
  /*
   * Add the correct display in all browsers.
   */
  summary {
    display: list-item;
  }
  /* Scripting
   * ========================================================================== */
  /**
   * Add the correct display in IE 9-.
   */
  canvas {
    display: inline-block;
  }
  /**
   * Add the correct display in IE.
   */
  template {
    display: none;
  }
  /* User interaction
   * ========================================================================== */
  /*
   * 1. Remove the tapping delay in IE 10.
   * 2. Remove the tapping delay on clickable elements
        in all browsers (opinionated).
   */
  a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
    touch-action: manipulation; /* 2 */
  }
  /**
   * Add the correct display in IE 10-.
   */
  [hidden] {
    display: none;
  }
  /* Accessibility
   * ========================================================================== */
  /**
   * Change the cursor on busy elements in all browsers (opinionated).
   */
  [aria-busy=true] {
    cursor: progress;
  }
  /*
   * Change the cursor on control elements in all browsers (opinionated).
   */
  [aria-controls] {
    cursor: pointer;
  }
  /*
   * Change the cursor on disabled, not-editable, or otherwise
   * inoperable elements in all browsers (opinionated).
   */
  [aria-disabled=true],
[disabled] {
    cursor: not-allowed;
  }
  /*
   * Change the display on visually hidden accessible elements
   * in all browsers (opinionated).
   */
  [aria-hidden=false][hidden] {
    display: initial;
  }
  [aria-hidden=false][hidden]:not(:focus) {
    clip: rect(0, 0, 0, 0);
    position: absolute;
  }
}
@layer destyle {
  /*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
  /* Reset box-model and set borders */
  /* ============================================ */
  *,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0;
  }
  /* Document */
  /* ============================================ */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   * 3. Remove gray overlay on links for iOS.
   */
  html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -webkit-tap-highlight-color: transparent; /* 3*/
  }
  /* Sections */
  /* ============================================ */
  /**
   * Remove the margin in all browsers.
   */
  body {
    margin: 0;
  }
  /**
   * Render the `main` element consistently in IE.
   */
  main {
    display: block;
  }
  /* Vertical rhythm */
  /* ============================================ */
  p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
  }
  /* Headings */
  /* ============================================ */
  h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
  }
  /* Lists (enumeration) */
  /* ============================================ */
  ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  /* Lists (definition) */
  /* ============================================ */
  dt {
    font-weight: bold;
  }
  dd {
    margin-left: 0;
  }
  /* Grouping content */
  /* ============================================ */
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
  }
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: inherit; /* 2 */
  }
  address {
    font-style: inherit;
  }
  /* Text-level semantics */
  /* ============================================ */
  /**
   * Remove the gray background on active links in IE 10.
   */
  a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
  }
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted; /* 2 */
  }
  /**
   * 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 {
    font-family: monospace, monospace; /* 1 */
    font-size: inherit; /* 2 */
  }
  /**
   * 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 {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  /* Replaced content */
  /* ============================================ */
  /**
   * Prevent vertical alignment issues.
   */
  svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
  }
  /* Forms */
  /* ============================================ */
  /**
   * Reset form fields to make them styleable.
   * 1. Make form elements stylable across systems iOS especially.
   * 2. Inherit text-transform from parent.
   */
  button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none; /* 1 */
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit; /* 2 */
  }
  /**
   * Correct cursors for clickable elements.
   */
  button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
  }
  button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
    cursor: default;
  }
  /**
   * Improve outlines for Firefox and unify style with input elements & buttons.
   */
  :-moz-focusring {
    outline: auto;
  }
  select:disabled {
    opacity: inherit;
  }
  /**
   * Remove padding
   */
  option {
    padding: 0;
  }
  /**
   * Reset to invisible
   */
  fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  legend {
    padding: 0;
  }
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  progress {
    vertical-align: baseline;
  }
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  textarea {
    overflow: auto;
  }
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  [type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  /**
   * Correct the outline style in Safari.
   */
  [type=search] {
    outline-offset: -2px; /* 1 */
  }
  /**
   * 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. Fix font inheritance.
   */
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  /**
   * Fix appearance for Firefox
   */
  [type=number] {
    -moz-appearance: textfield;
  }
  /**
   * Clickable labels
   */
  label[for] {
    cursor: pointer;
  }
  /* 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;
  }
  /*
   * Remove outline for editable content.
   */
  [contenteditable]:focus {
    outline: auto;
  }
  /* Tables */
  /* ============================================ */
  /**
  1. Correct table border color inheritance in all Chrome and Safari.
  */
  table {
    border-color: inherit; /* 1 */
    border-collapse: collapse;
  }
  caption {
    text-align: left;
  }
  td,
th {
    vertical-align: top;
    padding: 0;
  }
  th {
    text-align: left;
    font-weight: bold;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  @media (hover: hover) {
    a[href^="tel:"] {
      pointer-events: none;
    }
  }
  a, button {
    color: inherit;
    text-decoration: none;
  }
  @media (hover: hover) {
    a:hover, button:hover {
      text-decoration: none;
    }
  }
  .wp-block-content * {
    all: revert-layer;
  }
}
/* ============================================================
/* module
============================================================ */
/* icon
============================================================ */
.m-arrow, .m-icon-chevron, .m-icon-external, .m-icon-blank, .m-icon-zoom, .m-icon-tel, .m-icon-mail, .m-icon-calendar, .m-icon-parking, .m-icon-point, .m-icon-clock, .m-icon-shop, .m-icon-map, .m-icon-news, .m-icon-home {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.m-arrow:before, .m-icon-chevron:before, .m-icon-external:before, .m-icon-blank:before, .m-icon-zoom:before, .m-icon-tel:before, .m-icon-mail:before, .m-icon-calendar:before, .m-icon-parking:before, .m-icon-point:before, .m-icon-clock:before, .m-icon-shop:before, .m-icon-map:before, .m-icon-news:before, .m-icon-home:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.m-icon-home:before {
  background-image: url(../img/common/icon_home.svg);
}

.m-icon-news:before {
  background-image: url(../img/common/icon_news.svg);
}

.m-icon-map:before {
  background-image: url(../img/common/icon_map.svg);
}

.m-icon-shop:before {
  background-image: url(../img/common/icon_shop.svg);
}

.m-icon-clock:before {
  background-image: url(../img/common/icon_clock.svg);
}

.m-icon-point:before {
  background-image: url(../img/common/icon_point.svg);
}

.m-icon-parking:before {
  background-image: url(../img/common/icon_parking.svg);
}

.m-icon-calendar:before {
  background-image: url(../img/common/icon_calendar.svg);
}

.m-icon-mail:before {
  background-image: url(../img/common/icon_mail.svg);
}

.m-icon-tel:before {
  background-image: url(../img/common/icon_tel.svg);
}

.m-icon-zoom:before {
  background-image: url(../img/common/icon_zoom.svg);
}

.m-icon-blank:before {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-image: url("../img/common/icon_blank.svg");
  mask-image: url("../img/common/icon_blank.svg");
  background: currentColor;
  background-color: currentColor;
}

.m-icon-external:before {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-image: url("../img/common/icon_external.svg");
  mask-image: url("../img/common/icon_external.svg");
  background: currentColor;
  background-color: currentColor;
}

.m-icon-chevron:before {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-image: url("../img/common/icon_chevron.svg");
  mask-image: url("../img/common/icon_chevron.svg");
  background: currentColor;
  background-color: currentColor;
}

.m-arrow:before {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  background: currentColor;
  background-color: currentColor;
}

/* btn
============================================================ */
.m-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.m-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  background-color: var(--color-main);
  box-shadow: 0 0.4rem 1.5rem 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.m-btn .m-arrow {
  position: absolute;
  top: 50%;
  right: 1.7rem;
  border-radius: 50%;
  background-color: currentColor;
  transform: translateY(-50%);
}
.m-btn .m-arrow:before {
  width: 60%;
  height: 60%;
  background-color: var(--color-main);
  transition: background-color 0.2s ease;
}
.m-btn:has(.m-arrow) {
  padding-left: 2.5em;
  padding-right: 3.5em;
}
@media (hover: hover) {
  .m-btn:hover, .m-btn:hover .m-arrow:before {
    background-color: var(--color-hover);
    box-shadow: none;
  }
}
@media screen and (min-width: 812px) {
  .m-btn {
    min-width: 28.2rem;
    height: 5.8rem;
    border-radius: 5.8rem;
    font-size: 1.8rem;
  }
  .m-btn .m-arrow {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .m-btn {
    min-width: 18.8rem;
    height: 5.5rem;
    border-radius: 5.5rem;
    font-size: 1.6rem;
  }
}

/* table
============================================================ */
.m-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.m-table th, .m-table td {
  border: 1px solid var(--color-line);
}
.m-table th {
  font-weight: bold;
  vertical-align: middle;
  background-color: var(--color-sub);
}
.m-table td {
  background-color: #fff;
}
@media screen and (min-width: 812px) {
  .m-table th, .m-table td {
    padding: 1.6rem 1em;
  }
  .m-table th {
    width: 28rem;
    text-align: center;
  }
}
@media screen and (max-width: 811px) {
  .m-table:not(.keep-table-style), .m-table:not(.keep-table-style) tbody, .m-table:not(.keep-table-style) tr, .m-table:not(.keep-table-style) th, .m-table:not(.keep-table-style) td {
    display: block;
  }
  .m-table:not(.keep-table-style) th, .m-table:not(.keep-table-style) td {
    margin-top: -1px;
  }
  .m-table th, .m-table td {
    padding: 1.6rem 1em;
  }
}

/* pagination
============================================================ */
.m-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: normal;
}
.m-pagination a, .m-pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  font-weight: bold;
  border-radius: 50%;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
@media (hover: hover) {
  .m-pagination a {
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .m-pagination a:hover {
    color: #fff;
    background-color: var(--color-main);
  }
}
.m-pagination .current {
  color: #fff;
  background-color: var(--color-main);
}
.m-pagination .dots {
  border: none;
}
.m-pagination .icon-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: -0.1rem;
  border-top: 3px solid;
  border-right: 3px solid;
  transform: scale(0.6, 1) rotate(45deg);
}
.m-pagination .prev {
  transform: scale(-1, 1);
}
.m-pagination .disabled {
  color: var(--color-line);
  border-color: var(--color-line);
}
@media screen and (min-width: 812px) {
  .m-pagination {
    margin-top: 9.6rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
  }
  .m-pagination a, .m-pagination span {
    width: 4.8rem;
  }
  .m-pagination .dots {
    width: 2rem;
  }
}
@media screen and (max-width: 811px) {
  .m-pagination {
    margin-top: 8rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
  }
  .m-pagination a, .m-pagination span {
    width: 4rem;
  }
  .m-pagination .dots {
    width: 2rem;
  }
}

/* form
============================================================ */
.m-form__note {
  margin-top: 3.2rem;
}
.m-form__privacy a {
  color: var(--color-main);
}
@media (hover: hover) {
  .m-form__privacy a:hover {
    text-decoration: underline;
  }
}
.m-form__privacy a .m-icon-blank {
  font-size: 50%;
  margin: 0 0.5em;
  vertical-align: super;
}
.m-form__submit {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  align-items: center;
  justify-content: center;
}
.m-form__submit .m-btn {
  width: 29rem;
}
.m-form__submit .m-btn:disabled {
  pointer-events: none;
  background-color: #ccc;
  box-shadow: none;
}

.m-form-item input[type=text],
.m-form-item input[type=email],
.m-form-item input[type=tel],
.m-form-item input[type=url],
.m-form-item input[type=number],
.m-form-item input[type=password],
.m-form-item input[type=date],
.m-form-item select,
.m-form-item textarea {
  width: 100%;
  padding: 1rem 1.6rem;
  font: inherit;
  border-radius: 0.8rem;
  border: 1px solid var(--color-line);
  background-color: #fff;
}
.m-form-item input[type=text]:focus,
.m-form-item input[type=email]:focus,
.m-form-item input[type=tel]:focus,
.m-form-item input[type=url]:focus,
.m-form-item input[type=number]:focus,
.m-form-item input[type=password]:focus,
.m-form-item input[type=date]:focus,
.m-form-item select:focus,
.m-form-item textarea:focus {
  outline: none;
  border-color: var(--color-main);
}
.m-form-item input[type=text][aria-invalid=true], .m-form-item input[type=text]:invalid,
.m-form-item input[type=email][aria-invalid=true],
.m-form-item input[type=email]:invalid,
.m-form-item input[type=tel][aria-invalid=true],
.m-form-item input[type=tel]:invalid,
.m-form-item input[type=url][aria-invalid=true],
.m-form-item input[type=url]:invalid,
.m-form-item input[type=number][aria-invalid=true],
.m-form-item input[type=number]:invalid,
.m-form-item input[type=password][aria-invalid=true],
.m-form-item input[type=password]:invalid,
.m-form-item input[type=date][aria-invalid=true],
.m-form-item input[type=date]:invalid,
.m-form-item select[aria-invalid=true],
.m-form-item select:invalid,
.m-form-item textarea[aria-invalid=true],
.m-form-item textarea:invalid {
  outline: none;
  background-color: #FAE9E8;
}
.m-form-item input[type=text]:autofill, .m-form-item input[type=text]:-webkit-autofill,
.m-form-item input[type=email]:autofill,
.m-form-item input[type=email]:-webkit-autofill,
.m-form-item input[type=tel]:autofill,
.m-form-item input[type=tel]:-webkit-autofill,
.m-form-item input[type=url]:autofill,
.m-form-item input[type=url]:-webkit-autofill,
.m-form-item input[type=number]:autofill,
.m-form-item input[type=number]:-webkit-autofill,
.m-form-item input[type=password]:autofill,
.m-form-item input[type=password]:-webkit-autofill,
.m-form-item input[type=date]:autofill,
.m-form-item input[type=date]:-webkit-autofill,
.m-form-item select:autofill,
.m-form-item select:-webkit-autofill,
.m-form-item textarea:autofill,
.m-form-item textarea:-webkit-autofill {
  box-shadow: 0 0 0 5rem #fff inset;
}
.m-form-item input[type=text]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item input[type=email]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item input[type=tel]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item input[type=url]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item input[type=number]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item input[type=password]:valid[aria-invalid=false]:not(:-moz-placeholder-shown), .m-form-item textarea:valid[aria-invalid=false]:not(:-moz-placeholder-shown) {
  background-color: #fff;
}
.m-form-item input[type=text]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item input[type=email]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item input[type=tel]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item input[type=url]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item input[type=number]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item input[type=password]:valid[aria-invalid=false]:not(:placeholder-shown),
.m-form-item textarea:valid[aria-invalid=false]:not(:placeholder-shown) {
  background-color: #fff;
}
.m-form-item select {
  padding-right: 2.5rem;
  background-image: url(../img/common/icon_chevron.svg);
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.5rem auto;
}
.m-form-item select:has(option:checked[value=""]) {
  color: gray;
}
.m-form-item textarea {
  height: 20rem;
}
.m-form-item label:has([type=checkbox]) {
  position: relative;
  display: block;
  padding-left: 2.5rem;
  cursor: pointer;
}
.m-form-item label:has([type=checkbox]) input {
  position: absolute;
  left: 0;
  top: 0;
}
.m-form-item label:has([type=checkbox]):before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  transform: translate(-50%, -50%);
  border: 1px solid;
  background-color: #fff;
}
.m-form-item label:has([type=checkbox]):after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  background-color: var(--color-main);
  -webkit-clip-path: polygon(0% 40%, 0% 50%, 34% 85%, 48% 85%, 100% 21%, 100% 9%, 89% 9%, 40% 70%, 11% 40%);
  clip-path: polygon(0% 40%, 0% 50%, 34% 85%, 48% 85%, 100% 21%, 100% 9%, 89% 9%, 40% 70%, 11% 40%);
  transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform: translate(-50%, -50%) scale(0);
}
.m-form-item label:has([type=checkbox]:checked):after {
  transform: translate(-50%, -50%) scale(1);
}
.m-form-item + .m-form-item {
  margin-top: 3.2rem;
}
.m-form-item__caption {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.m-form-item__caption .required {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.3rem;
  padding: 0 0.7em;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 0.4rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 811px) {
  .m-form-item input[type=text],
.m-form-item input[type=email],
.m-form-item input[type=tel],
.m-form-item input[type=url],
.m-form-item input[type=number],
.m-form-item input[type=password],
.m-form-item input[type=date],
.m-form-item select,
.m-form-item textarea {
    font-size: max(1.5rem, 16px);
  }
}

/* breakpoint only layout
============================================================ */
@media screen and (min-width: 812px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 811px) {
  .pc-only {
    display: none !important;
  }
}
/* news index item
============================================================ */
@media screen and (min-width: 812px) {
  .m-news-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .m-news-index {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
  }
}

.m-news-index__item__link {
  display: block;
  height: 100%;
  border: 1px solid var(--color-line);
  border-radius: 1.2rem;
  background-color: #fff;
}
.m-news-index__item__image {
  aspect-ratio: 1/1;
}
.m-news-index__item__image img {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.m-news-index__item__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.3rem;
  border-radius: 0.4rem;
  padding: 0 1em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-main);
}
.m-news-index__item__date {
  font-size: 1.4rem;
}
.m-news-index__item__ttl {
  line-height: 1.5;
  font-weight: bold;
}
.m-news-index__item__info {
  display: flex;
  align-items: center;
  padding: 0.25em 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  border-radius: 0.4rem;
  background-color: var(--color-sub);
}
.m-news-index__item__info em {
  font-size: 110%;
}
.m-news-index__item__info span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (hover: hover) {
  .m-news-index__item__link .m-news-index__item__ttl {
    transition: color 0.3s ease;
  }
  .m-news-index__item__link:hover .m-news-index__item__ttl {
    color: var(--color-main);
    text-decoration: underline;
  }
}
@media screen and (min-width: 812px) {
  .m-news-index__item__link {
    padding: 2.4rem;
  }
  .m-news-index__item__image {
    margin-bottom: 2rem;
  }
  .m-news-index__item__meta {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .m-news-index__item__ttl {
    font-size: 1.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .m-news-index__item__info {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 811px) {
  .m-news-index__item__link {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.6rem;
  }
  .m-news-index__item__image {
    width: 12rem;
  }
  .m-news-index__item__meta {
    margin-bottom: 0.25rem;
  }
  .m-news-index__item__date {
    margin-top: 0.25em;
  }
  .m-news-index__item__ttl {
    font-size: 1.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .m-news-index__item__info {
    grid-column: span 2;
  }
}

/* ============================================================
/* js
============================================================ */
/* loading
============================================================ */
.js-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-brand-a-100);
  background: url(../img/common/loading.svg) no-repeat center center/5rem auto;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.js-loading-overlay.isLoading {
  opacity: 1;
  visibility: visible;
}

/* modal
============================================================ */
.js-modal {
  padding: 0;
  background-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.js-modal::-webkit-scrollbar {
  display: none;
}
.js-modal::-webkit-backdrop {
  opacity: 0;
  -webkit-transition: opacity 0.5s, display 0.5s allow-discrete, overlay 0.5s allow-discrete;
  transition: opacity 0.5s, display 0.5s allow-discrete, overlay 0.5s allow-discrete;
}
.js-modal, .js-modal::backdrop {
  opacity: 0;
  transition: opacity 0.5s, display 0.5s allow-discrete, overlay 0.5s allow-discrete;
}
.js-modal::-webkit-backdrop {
  background: rgba(94, 94, 94, 0.5);
}
.js-modal::backdrop {
  background: rgba(94, 94, 94, 0.5);
}
.js-modal[open]::-webkit-backdrop {
  opacity: 1;
}
.js-modal[open], .js-modal[open]::backdrop {
  opacity: 1;
}
@starting-style {
  .js-modal[open]::-webkit-backdrop {
    opacity: 0;
  }
  .js-modal[open], .js-modal[open]::backdrop {
    opacity: 0;
  }
}
.js-modal__inner {
  transition: opacity 0.5s;
}
.js-modal[open] .js-modal__inner {
  opacity: 1;
}
.js-modal:not([open]) .js-modal__inner {
  opacity: 0;
  transition: none;
}

/* tab
============================================================ */
.js-tab [aria-hidden], .js-tab__tabpanel {
  display: grid;
  grid-template-rows: 1fr;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.js-tab [aria-hidden][aria-hidden=true], .js-tab__tabpanel[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  grid-template-rows: 0fr;
}
.js-tab.slide-panel [aria-hidden], .js-tab.slide-panel .js-tab__tabpanel {
  transition: opacity 0.3s ease-out 0.2s, visibility 0.3s ease-out 0.2s, grid-template-rows 0.2s ease-out;
}
.js-tab__tabpanel__inner {
  overflow: hidden;
}

/* accordion
============================================================ */
.js-accordion [aria-hidden], .js-accordion__content {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.2s ease-out;
}
.js-accordion [aria-hidden][aria-hidden=true], .js-accordion__content[aria-hidden=true] {
  grid-template-rows: 0fr;
}
.js-accordion__content__inner {
  overflow: hidden;
}

/* inview
============================================================ */
.js-inview-fadeup {
  opacity: 0;
  transform: translateY(50px);
}
.js-inview-fadeup.inviewed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

.js-inview-fade {
  opacity: 0;
}
.js-inview-fade.inviewed {
  opacity: 1;
  transition: opacity 1s ease;
}

.js-inview-delay1.inviewed {
  transition-delay: 0.25s;
}

/* ============================================================
/* variables
============================================================ */
:root {
  --color-base: #42311B;
  --color-main: #009A53;
  --color-sub: #F5FAF0;
  --color-line: #DFEAE0;
  --color-hover: #A3CA0F;
  --color-alert: #CB251C;
}

/* ============================================================
/* laytout
============================================================ */
body {
  position: relative;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--color-base);
}

@media screen and (min-width: 812px) {
  html {
    font-size: min(0.9vw, 62.5%);
  }
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 811px) {
  html {
    font-size: min(2.56vw, 12px);
  }
  body {
    font-size: 1.5rem;
    min-width: 320px;
  }
}
/* wrapper
============================================================ */
.l-wrapper {
  overflow-x: clip;
  position: relative;
}

@media screen and (min-width: 812px) {
  .l-container {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 811px) {
  .l-container {
    padding-bottom: 10rem;
  }
}

.l-inner {
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (min-width: 812px) {
  .l-inner {
    max-width: 1200px;
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .l-inner {
    max-width: 540px;
    padding: 0 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* header
============================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 1.6rem 1.6rem;
  box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.05);
  z-index: 9999;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 22rem;
}
.l-header__logo img {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .l-header {
    padding: 0 2.4rem;
  }
  .l-header__inner {
    height: 7rem;
  }
}
@media screen and (max-width: 811px) {
  .l-header__inner {
    padding-left: 1.5rem;
    height: 6.4rem;
  }
  .l-header:has(.l-gnav__btn[aria-expanded=true]) {
    border-radius: 0;
  }
}

/* gnav
============================================================ */
.l-gnav__btn {
  position: relative;
  color: #fff;
  background-color: var(--color-main);
  cursor: pointer;
  border-bottom-right-radius: 1.6rem;
  transition: background-color 0.3s ease;
}
.l-gnav__btn span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 0.2rem;
  border-radius: 0;
  background: currentColor;
  transition: transform 0.2s ease;
}
.l-gnav__btn span:nth-child(1) {
  transform: translate(-50%, -50%);
}
.l-gnav__btn span:nth-child(2) {
  transform: translate(-50%, -1.2rem);
}
.l-gnav__btn span:nth-child(3) {
  transform: translate(-50%, 1rem);
}
.l-gnav__btn[aria-expanded=true] span:nth-child(1) {
  transform: translate(-50%, -50%) scale(0);
}
.l-gnav__btn[aria-expanded=true] span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-gnav__btn[aria-expanded=true] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-gnav__btn span {
  border-radius: 0.1rem;
}
.l-gnav__btn[aria-expanded=true] {
  color: var(--color-main);
  background-color: transparent;
}
.l-gnav__item {
  font-weight: bold;
}
@media (hover: hover) {
  .l-gnav__item a {
    transition: color 0.3s ease;
  }
  .l-gnav__item a:hover {
    color: var(--color-main);
  }
}
@media screen and (min-width: 812px) {
  .l-gnav__btn, .l-gnav__list__sec {
    display: none;
  }
  .l-gnav__list__pri {
    display: flex;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
  }
  .l-gnav__item em {
    display: none;
  }
  .l-gnav__item a {
    position: relative;
    z-index: 0;
  }
  .l-gnav__item a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5rem;
    height: 5rem;
    background-color: var(--color-sub);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}
@media screen and (min-width: 812px) and (hover: hover) {
  .l-gnav__item a:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 811px) {
  .l-gnav__btn {
    width: 6.4rem;
    height: 6.4rem;
  }
  .l-gnav {
    position: fixed;
    top: 6.4rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .l-gnav[aria-hidden=false] {
    opacity: 1;
    visibility: visible;
  }
  .l-gnav__outer {
    max-height: 100%;
    overflow: auto;
    scrollbar-width: none;
  }
  .l-gnav__outer::-webkit-scrollbar {
    display: none;
  }
  .l-gnav__inner {
    padding: 1.2rem 1.5rem 4.8rem;
  }
  .l-gnav__item {
    font-size: 1.6rem;
  }
  .l-gnav__item a {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
  }
  .l-gnav__list__pri .l-gnav__item a {
    height: 5.6rem;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
  }
  .l-gnav__list__pri .l-gnav__item em {
    font-size: 3.2rem;
  }
  .l-gnav__list__pri .l-gnav__item:not(:last-child) {
    border-bottom: 1px solid var(--color-line);
  }
  .l-gnav__list__sec {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem;
  }
  .l-gnav__list__sec .l-gnav__item a {
    height: 5.4rem;
    justify-content: center;
    border-radius: 1.2rem;
    background-color: var(--color-sub);
  }
}

/* footer
============================================================ */
.l-footer {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.l-footer:before, .l-footer:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--color-sub);
  z-index: -1;
}
.l-footer:before {
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.l-footer:after {
  left: 0;
  bottom: 0;
  width: 100%;
}
.l-footer__btns {
  display: flex;
}
.l-footer__btns .m-btn {
  width: 100%;
  padding: 0;
}
.l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2em;
  column-gap: 2em;
  row-gap: 1em;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__caption {
  font-weight: bold;
}
.l-footer .l-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  font-size: 1.2rem;
  background-color: #fff;
}
@media screen and (min-width: 812px) {
  .l-footer {
    padding-top: 8.5rem;
  }
  .l-footer:before {
    top: 19rem;
    width: max(199rem, 110vw);
    height: 38rem;
  }
  .l-footer:after {
    top: 19rem;
  }
  .l-footer__btns {
    margin-bottom: 8.5rem;
    align-items: center;
    -moz-column-gap: min(3vw, 4rem);
    column-gap: min(3vw, 4rem);
  }
  .l-footer__btns li {
    flex: 1;
  }
  .l-footer__btns .m-btn {
    height: 10rem;
    font-size: 2.4rem;
    border-radius: 1.2rem;
  }
  .l-footer__nav {
    width: 60rem;
  }
}
@media screen and (min-width: 812px) and (hover: hover) {
  .l-footer__nav a {
    transition: color 0.3s ease;
  }
  .l-footer__nav a:hover {
    color: var(--color-main);
  }
}
@media screen and (min-width: 812px) {
  .l-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 812px) {
  .l-footer__info {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
  }
}
@media screen and (min-width: 812px) {
  .l-footer__logo {
    width: 9.7rem;
    grid-column: 1;
    grid-row: span 2;
  }
}
@media screen and (min-width: 812px) {
  .l-footer__caption {
    font-size: 2rem;
    padding-top: 0.5em;
  }
}
@media screen and (min-width: 812px) {
  .l-footer__address {
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 811px) {
  .l-footer {
    padding-top: 5rem;
  }
  .l-footer:before {
    top: 8rem;
    width: max(43rem, 110vw);
    height: 16rem;
  }
  .l-footer:after {
    top: 8rem;
  }
  .l-footer__btns {
    margin-top: 3rem;
    margin-bottom: 8rem;
    flex-direction: column;
    row-gap: 1.6rem;
  }
  .l-footer__btns .m-btn {
    height: 7.7rem;
    font-size: 2rem;
    border-radius: 1.2rem;
  }
  .l-footer__inner {
    padding-bottom: 5rem;
  }
  .l-footer__nav {
    margin-top: 5rem;
  }
  .l-footer__info {
    text-align: center;
  }
  .l-footer__logo {
    width: 13rem;
    margin: 0 auto 2rem;
  }
  .l-footer__caption {
    font-size: 1.8rem;
  }
}

/* pagetop
============================================================ */
.l-pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
body.is_follow_area .l-pagetop {
  opacity: 1;
  visibility: visible;
}
.l-pagetop span {
  font-size: 1.8rem;
  font-weight: bold;
}
.l-pagetop .m-arrow {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: currentColor;
  transform: rotate(-90deg);
}
.l-pagetop .m-arrow:before {
  width: 60%;
  height: 60%;
  background-color: #fff;
}
@media (hover: hover) {
  .l-pagetop:hover {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 812px) {
  .l-pagetop {
    margin-right: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 811px) {
  .l-pagetop {
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}

/* breadcrumb
============================================================ */
.l-breadcrumb {
  margin-bottom: 2.4rem;
}
.l-breadcrumb ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.6em;
  column-gap: 0.6em;
  flex-wrap: wrap;
}
.l-breadcrumb li:nth-child(n+2):before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-right: 0.8em;
  margin-top: -0.2em;
  border-top: 2px solid;
  border-right: 2px solid;
  vertical-align: middle;
  transform: scale(0.6, 1) rotate(45deg);
}
.l-breadcrumb li:first-child a {
  color: var(--color-main);
}
@media (hover: hover) {
  .l-breadcrumb a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 812px) {
  .l-breadcrumb {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 811px) {
  .l-breadcrumb {
    font-size: 1.2rem;
  }
}

/* top page style
============================================================ */
.sec-top-mv {
  position: relative;
  z-index: 0;
}
.sec-top-mv:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: var(--color-sub);
  z-index: -1;
}
.sec-top-mv__image {
  position: relative;
}
.sec-top-mv__image .js-slider__arrow-prev,
.sec-top-mv__image .js-slider__arrow-next {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.56);
  transform: translateY(-50%);
  z-index: 1;
}
.sec-top-mv__image .js-slider__arrow-prev .m-arrow,
.sec-top-mv__image .js-slider__arrow-next .m-arrow {
  color: var(--color-main);
}
.sec-top-mv__image .js-slider__arrow-prev.swiper-button-disabled,
.sec-top-mv__image .js-slider__arrow-next.swiper-button-disabled {
  display: none;
}
.sec-top-mv__image .js-slider__arrow-prev .m-arrow {
  transform: scale(-1, 1);
}
.sec-top-mv__image .js-slider__controller {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
}
.sec-top-mv__image .js-slider__pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --swiper-pagination-bullet-width: 1rem;
  --swiper-pagination-bullet-height: 1rem;
  --swiper-pagination-bullet-horizontal-gap: .4rem;
  --swiper-pagination-color: var(--color-main);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: var(--color-line);
  --swiper-pagination-bullet-inactive-opacity: 1;
}
.sec-top-mv__image .js-slider__player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--color-sub);
}
.sec-top-mv__image .js-slider__player .icon-player {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
}
.sec-top-mv__image .js-slider__player .icon-player:before, .sec-top-mv__image .js-slider__player .icon-player:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--color-main);
}
.sec-top-mv__image .js-slider__player .icon-player:before {
  left: 20%;
}
.sec-top-mv__image .js-slider__player .icon-player:after {
  right: 20%;
}
.sec-top-mv__image.paused .js-slider__player .icon-player:before {
  width: 100%;
  -webkit-clip-path: polygon(0% 0%, 80% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 80% 50%, 0% 100%);
}
.sec-top-mv__image.paused .js-slider__player .icon-player:after {
  display: none;
}
.sec-top-mv__item {
  width: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
}
.sec-top-mv__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.sec-top-mv__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 812px) {
  .sec-top-mv {
    padding-top: 7rem;
  }
  .sec-top-mv:before {
    bottom: 12.8rem;
  }
  .sec-top-mv__image {
    max-width: 222rem;
    margin: 0 auto;
  }
  .sec-top-mv__image .swiper-slide {
    width: 74.4rem;
    padding: 4rem 1.2rem 3.2rem;
  }
  .sec-top-mv__image .js-slider__arrow-prev,
.sec-top-mv__image .js-slider__arrow-next {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 3rem;
  }
  .sec-top-mv__image .js-slider__arrow-prev {
    left: 4rem;
  }
  .sec-top-mv__image .js-slider__arrow-next {
    right: 4rem;
  }
  .sec-top-mv__item {
    aspect-ratio: 720/480;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-mv {
    padding-top: 6.4rem;
  }
  .sec-top-mv:before {
    bottom: 7.8rem;
  }
  .sec-top-mv__image .swiper-slide {
    width: 28.6rem;
    padding: 2.4rem 0.8rem 1.6rem;
  }
  .sec-top-mv__image .js-slider__arrow-prev,
.sec-top-mv__image .js-slider__arrow-next {
    display: none;
  }
  .sec-top-mv__item {
    aspect-ratio: 270/360;
  }
}

.sec-top-emergency__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  background-color: var(--color-alert);
}
.sec-top-emergency__list {
  color: var(--color-alert);
  border: 0.4rem solid;
}
.sec-top-emergency__item:nth-child(n+2) {
  border-top: 1px solid var(--color-line);
}
.sec-top-emergency__item__date {
  font-size: 1.4rem;
}
.sec-top-emergency__item__ttl {
  line-height: 1.5;
  font-weight: bold;
}
.sec-top-emergency__item__ttl a {
  text-decoration: underline;
}
@media (hover: hover) {
  .sec-top-emergency__item__ttl a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 812px) {
  .sec-top-emergency {
    margin-top: 9.6rem;
  }
  .sec-top-emergency .l-inner {
    max-width: 96rem;
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .sec-top-emergency__ttl {
    width: 12rem;
    font-size: 1.8rem;
    border-radius: 0.8rem 0 0 0.8rem;
  }
  .sec-top-emergency__list {
    padding: 0 2.4rem;
    border-left: none;
    border-radius: 0 0.8rem 0.8rem 0;
  }
  .sec-top-emergency__item {
    padding: 2.4rem 0;
    display: flex;
    align-items: center;
    -moz-column-gap: 1em;
    column-gap: 1em;
  }
  .sec-top-emergency__item__date {
    width: 6em;
  }
  .sec-top-emergency__item__ttl {
    flex: 1;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-emergency {
    margin-top: 4.8rem;
    padding-bottom: 3.2rem;
  }
  .sec-top-emergency__ttl {
    height: 5.5rem;
    font-size: 1.6rem;
    border-radius: 0.8rem 0.8rem 0 0;
  }
  .sec-top-emergency__list {
    padding: 0 1.6rem;
    border-top: none;
    border-radius: 0 0 0.8rem 0.8rem;
  }
  .sec-top-emergency__item {
    padding: 1.6rem 0;
    -moz-column-gap: 1em;
    column-gap: 1em;
  }
}

.sec-top-cnav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sec-top-cnav__item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  background-color: var(--color-sub);
}
.sec-top-cnav__item__ttl {
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5em;
}
@media (hover: hover) {
  .sec-top-cnav__item__icon {
    transition: border-color 0.3s ease;
  }
  .sec-top-cnav__item:hover .sec-top-cnav__item__icon {
    border-color: var(--color-line);
  }
  .sec-top-cnav__item__ttl {
    transition: color 0.3s ease;
  }
  .sec-top-cnav__item:hover .sec-top-cnav__item__ttl {
    color: var(--color-main);
  }
}
@media screen and (min-width: 812px) {
  .sec-top-cnav {
    margin-top: 9.6rem;
  }
  .sec-top-cnav__list {
    -moz-column-gap: 5.6rem;
    column-gap: 5.6rem;
  }
  .sec-top-cnav__item__icon {
    width: 11.3rem;
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-cnav {
    margin-top: 4.8rem;
  }
  .sec-top-cnav__list {
    -moz-column-gap: 3.2rem;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
    max-width: 39rem;
    margin: 0 auto;
  }
  .sec-top-cnav__item__icon {
    width: 8.8rem;
    font-size: 4.8rem;
  }
}

.sec-top-cont__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-top-cont__header__icon {
  line-height: 0;
}
.sec-top-cont__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.sec-top-cont__ttl .sub {
  color: var(--color-main);
}
@media screen and (min-width: 812px) {
  .sec-top-cont__header__icon {
    font-size: 6.4rem;
  }
  .sec-top-cont__ttl .main {
    font-size: 3.2rem;
  }
  .sec-top-cont__ttl .sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-cont__header__icon {
    font-size: 4.8rem;
  }
  .sec-top-cont__ttl .main {
    font-size: 2.4rem;
  }
  .sec-top-cont__ttl .sub {
    font-size: 1.8rem;
  }
}

.sec-top-news {
  background-color: var(--color-sub);
}
.sec-top-news .sec-top-cont__header {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--color-sub);
}
@media screen and (min-width: 812px) {
  .sec-top-news {
    margin-top: 17rem;
    padding-bottom: 9.6rem;
  }
  .sec-top-news .sec-top-cont__header {
    padding-top: 3.8rem;
    transform: translateY(-7rem);
  }
  .sec-top-news .m-btn {
    margin: 6.4rem auto 0;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-news {
    margin-top: 16rem;
    padding-bottom: 6.4rem;
  }
  .sec-top-news .sec-top-cont__header {
    padding: 3rem 1rem;
    transform: translateY(-7rem);
    margin-bottom: -6rem;
  }
  .sec-top-news .m-btn {
    margin: 4.8rem auto 0;
  }
}

.sec-top-floormap__list {
  display: flex;
  flex-direction: column;
}
.sec-top-floormap__item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.2rem;
  border: 2px solid var(--color-main);
}
@media (hover: hover) {
  .sec-top-floormap__item__link {
    transition: background-color 0.3s ease;
  }
  .sec-top-floormap__item__link:hover {
    background-color: var(--color-sub);
  }
}
.sec-top-floormap__item__floor {
  font-weight: bold;
  color: var(--color-main);
}
.sec-top-floormap__item__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-top-floormap__item__arrow span {
  font-weight: bold;
  color: var(--color-main);
}
.sec-top-floormap__item__arrow em {
  border-radius: 50%;
  background-color: var(--color-main);
}
.sec-top-floormap__item__arrow em:before {
  width: 60%;
  height: 60%;
  background-color: #fff;
}
@media screen and (min-width: 812px) {
  .sec-top-floormap {
    margin-top: 9.6rem;
  }
  .sec-top-floormap .l-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sec-top-floormap__list {
    width: min(70vw, 88.8rem);
    row-gap: 1.6rem;
  }
  .sec-top-floormap__item__link {
    height: 10rem;
    padding: 0 3.2rem;
  }
  .sec-top-floormap__item__floor {
    font-size: 2.4rem;
  }
  .sec-top-floormap__item__ttl {
    font-size: 1.8rem;
    margin: 0 auto 0 2em;
  }
  .sec-top-floormap__item__arrow span {
    font-size: 1.4rem;
  }
  .sec-top-floormap__item__arrow em {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-top-floormap {
    margin-top: 8rem;
  }
  .sec-top-floormap__list {
    margin-top: 4.8rem;
    row-gap: 1rem;
  }
  .sec-top-floormap__item__link {
    height: 9.6rem;
    padding: 0 2.4rem;
  }
  .sec-top-floormap__item__floor {
    font-size: 2.2rem;
  }
  .sec-top-floormap__item__ttl {
    flex: 1;
    font-size: 1.6rem;
    margin: 0 1.5em;
  }
  .sec-top-floormap__item__arrow span {
    font-size: 1.2rem;
  }
  .sec-top-floormap__item__arrow em {
    font-size: 2rem;
  }
}

/* subpage
============================================================ */
.sec-subpage__header {
  position: relative;
  z-index: 0;
}
.sec-subpage__header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: var(--color-sub);
  z-index: -1;
}
.sec-subpage__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}
.sec-subpage__ttl .sub {
  color: var(--color-main);
}
@media screen and (min-width: 812px) {
  .sec-subpage__header {
    padding-top: 7rem;
  }
  .sec-subpage__header:has(.sec-subpage-cnav)::before {
    bottom: 5.6rem;
  }
  .sec-subpage__ttl {
    height: 26.7rem;
  }
  .sec-subpage__ttl .main {
    font-size: 4rem;
  }
  .sec-subpage__ttl .sub {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-subpage__header {
    padding-top: 6.4rem;
  }
  .sec-subpage__header:has(.sec-subpage-cnav)::before {
    bottom: 8rem;
  }
  .sec-subpage__ttl {
    height: 15.8rem;
  }
  .sec-subpage__ttl .main {
    font-size: 2.8rem;
  }
  .sec-subpage__ttl .sub {
    font-size: 2rem;
  }
}

.sec-subpage-cnav {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.08);
}
.sec-subpage-cnav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-subpage-cnav__item__ttl {
  font-weight: bold;
}
.sec-subpage-cnav__item__arrow {
  transform: rotate(90deg);
  border-radius: 50%;
  background-color: var(--color-main);
}
.sec-subpage-cnav__item__arrow:before {
  width: 60%;
  height: 60%;
  background-color: #fff;
}
@media (hover: hover) {
  .sec-subpage-cnav__item {
    transition: color 0.3s ease;
  }
  .sec-subpage-cnav__item:hover {
    color: var(--color-main);
  }
}
.sec-subpage-cnav__item:nth-child(n+2):before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
  bottom: 0.5rem;
  border-left: 1px solid var(--color-line);
}
@media screen and (min-width: 812px) {
  .sec-subpage-cnav {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sec-subpage-cnav__item {
    width: min(31vw, 40rem);
    height: 9.6rem;
    font-size: 2.4rem;
  }
  .sec-subpage-cnav__item__icon {
    font-size: 3.4rem;
  }
  .sec-subpage-cnav__item__ttl {
    margin: 0 1em 0 0.5em;
  }
}
@media screen and (max-width: 811px) {
  .sec-subpage-cnav__item {
    flex: 1;
    flex-direction: column;
    height: 12rem;
    font-size: 1.5rem;
  }
  .sec-subpage-cnav__item__icon {
    font-size: 3.2rem;
  }
  .sec-subpage-cnav__item__ttl {
    margin: 0.2em 0 0.5em;
  }
}

.sec-cont__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-cont__header__icon {
  line-height: 0;
  font-size: 200%;
}
.sec-cont__ttl {
  font-weight: bold;
}
.sec-cont__ttl2 {
  padding-left: 0.8rem;
  font-weight: bold;
  border-bottom: 1px solid var(--color-main);
}
@media screen and (min-width: 812px) {
  .sec-cont {
    padding-top: 10rem;
  }
  .sec-cont:not(:first-child) {
    margin-top: 10rem;
  }
  .sec-cont__header {
    margin-bottom: 6.4rem;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
    font-size: 3.2rem;
  }
  .sec-cont__ttl2 {
    margin-bottom: 3.2rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-cont {
    padding-top: 8rem;
  }
  .sec-cont:not(:first-child) {
    margin-top: 8rem;
  }
  .sec-cont__header {
    margin-bottom: 4rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
    font-size: 2.4rem;
  }
  .sec-cont__ttl2 {
    margin-bottom: 3.2rem;
    font-size: 2.2rem;
  }
}

/* sec floormap
============================================================ */
.sec-floormap__tablist {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-floormap__tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-main);
  font-weight: bold;
  border-radius: 0.8rem;
  background-color: var(--color-sub);
}
.sec-floormap__tab[aria-selected=true] {
  color: #fff;
  background-color: var(--color-main);
}
.sec-floormap__map {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.6rem;
  border: 1px solid var(--color-line);
}
.sec-floormap__map-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4rem;
  padding: 0 2.4rem;
  margin: 1.6rem auto 0;
  color: var(--color-main);
  font-size: 1.6rem;
  border: 1px solid;
  border-radius: 0.8rem;
}
.sec-floormap__map-zoom em {
  font-size: 2rem;
}
.sec-floormap__shop__image {
  aspect-ratio: 3/2;
}
.sec-floormap__shop__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.sec-floormap__shop__image:has(.img-logo) {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--color-line);
}
.sec-floormap__shop__image .img-logo {
  width: 46%;
  border-radius: inherit;
}
.sec-floormap__shop__image .img-logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.sec-floormap__shop__ttl {
  display: flex;
  align-items: baseline;
  font-weight: bold;
  line-height: 1.5;
}
.sec-floormap__shop__ttl em {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  color: #fff;
  font-style: normal;
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  background-color: var(--color-main);
}
.sec-floormap__shop__ttl span {
  flex: 1;
}
.sec-floormap__shop__info li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0.6rem 0;
}
.sec-floormap__shop__info li em {
  font-size: 1.8rem;
  transform: translateY(0.2em);
}
@media screen and (min-width: 812px) {
  .sec-floormap__tablist {
    margin-bottom: 3.2rem;
    -moz-column-gap: 3.2rem;
    column-gap: 3.2rem;
  }
  .sec-floormap__tab {
    height: 6.6rem;
    font-size: 3.2rem;
  }
  .sec-floormap__map {
    padding: 5rem;
  }
  .sec-floormap__map img {
    width: 83rem;
  }
  .sec-floormap__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 6.4rem;
  }
  .sec-floormap__shop__image {
    border-radius: 0.8rem;
  }
  .sec-floormap__shop__ttl {
    margin: 1.6rem 0;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
  }
  .sec-floormap__shop__ttl em {
    width: 2.4rem;
    font-size: 1.4rem;
  }
  .sec-floormap__shop__ttl span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-floormap__tablist {
    margin-bottom: 1.6rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
  .sec-floormap__tab {
    height: 4.6rem;
    font-size: 1.8rem;
  }
  .sec-floormap__map {
    padding: 1.8rem;
  }
  .sec-floormap__map img {
    width: 25rem;
  }
  .sec-floormap__list {
    display: flex;
    flex-direction: column;
    margin-top: 4.8rem;
    row-gap: 2.4rem;
  }
  .sec-floormap__shop {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
  .sec-floormap__shop__image {
    width: 12.8rem;
    border-radius: 0.4rem;
  }
  .sec-floormap__shop__image:has(.img-logo) {
    border-width: 0.2rem;
  }
  .sec-floormap__shop__ttl {
    margin-bottom: 0.6rem;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem;
  }
  .sec-floormap__shop__ttl em {
    width: 2.2rem;
    font-size: 1.2rem;
  }
  .sec-floormap__shop__ttl span {
    font-size: 1.6rem;
  }
}

img.pswp__img {
  padding: 2rem;
  background-color: #fff;
}

/* sec shop
============================================================ */
.sec-shop-index {
  border-radius: 0.8rem;
  background-color: var(--color-sub);
}
.sec-shop-index__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-shop-index__ttl {
  font-weight: bold;
}
.sec-shop-index__list {
  border-radius: 0.4rem;
  background-color: #fff;
}
.sec-shop-index__item {
  border-bottom: 1px solid var(--color-line);
}
.sec-shop-index__item__header {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
}
.sec-shop-index__item__ttl {
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.8rem;
}
.sec-shop-index__item__official {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  font-size: 1.2rem;
  color: var(--color-main);
  margin-top: 0.5em;
}
@media (hover: hover) {
  .sec-shop-index__item__official:hover {
    text-decoration: underline;
  }
}
.sec-shop-index__item__image {
  width: 7.2rem;
  aspect-ratio: 1/1;
}
.sec-shop-index__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.sec-shop-index__item__info {
  display: grid;
  row-gap: 0.4rem;
}
.sec-shop-index__item__info li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.sec-shop-index__item__info li em {
  font-size: 1.8rem;
  transform: translateY(0.2em);
}
.sec-shop-index__item__desc {
  line-height: 1.6;
}
.sec-shop-index__accordion-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-main);
  padding: 0 1.5rem;
}
.sec-shop-index__accordion-btn[aria-expanded=true] {
  transform: scale(1, -1);
}
.sec-shop-index__close {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  width: 100%;
  font-size: 1.3rem;
  color: var(--color-main);
  line-height: 1.5;
  padding: 2.4rem;
}
.sec-shop-index__close em {
  font-size: 1rem;
  transform: scale(1, -1);
}
@media screen and (min-width: 812px) {
  .sec-shop-index {
    padding: 0.8rem;
    margin-bottom: 2.4rem;
  }
  .sec-shop-index__accordion-btn, .sec-shop-index__close {
    display: none;
  }
  .sec-shop-index__header {
    height: 7.5rem;
  }
  .sec-shop-index__ttl {
    font-size: 2.4rem;
  }
  .sec-shop-index__list {
    padding: 0 2.4rem;
  }
  .sec-shop-index__item {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    padding: 2.4rem 0;
  }
  .sec-shop-index__item:last-of-type {
    border-bottom: none;
  }
  .sec-shop-index__item__header {
    width: 30rem;
  }
  .sec-shop-index__item__info {
    width: 25rem;
  }
  .sec-shop-index__item__desc {
    flex: 1;
  }
}
@media screen and (max-width: 811px) {
  .sec-shop-index {
    padding: 0.4rem;
    margin-bottom: 1.6rem;
  }
  .sec-shop-index__header {
    height: 6rem;
  }
  .sec-shop-index__ttl {
    font-size: 2rem;
  }
  .sec-shop-index__list {
    padding: 0 2.4rem;
  }
  .sec-shop-index__item {
    display: grid;
    row-gap: 1.6rem;
    padding: 2.4rem 0;
  }
  .sec-shop-index__item__info a {
    text-decoration: underline;
  }
}

/* sec news detail
============================================================ */
.sec-news-detail__wrap {
  background-color: var(--color-sub);
}
.sec-news-detail {
  border-radius: 1.6rem;
  background-color: #fff;
}
.sec-news-detail__header__image {
  aspect-ratio: 1/1;
}
.sec-news-detail__header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}
.sec-news-detail__ttl {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1em;
}
.sec-news-detail__meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.sec-news-detail__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.4rem;
  padding: 0 1em;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-main);
}
.sec-news-detail__info {
  display: flex;
  padding: 0.5em 0.75em;
  -moz-column-gap: 0.8em;
  column-gap: 0.8em;
  border-radius: 0.4rem;
  background-color: var(--color-sub);
}
.sec-news-detail__info em {
  font-size: 150%;
  transform: translateY(0.1em);
}
.sec-news-detail__info span {
  flex: 1;
}
.sec-news-detail__shop {
  border: 1px solid var(--color-line);
  border-radius: 1.2rem;
}
.sec-news-detail__shop__image {
  aspect-ratio: 3/2;
  border-radius: 0.8rem;
}
.sec-news-detail__shop__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.sec-news-detail__shop__image:has(.img-logo) {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--color-line);
}
.sec-news-detail__shop__image .img-logo {
  width: 46%;
  border-radius: inherit;
}
.sec-news-detail__shop__image .img-logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.sec-news-detail__shop__ttl {
  font-weight: bold;
}
.sec-news-detail__shop__info li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  line-height: 1.5;
  margin: 0.6rem 0;
}
.sec-news-detail__shop__info li em {
  font-size: 1.8rem;
  transform: translateY(0.2em);
}
@media screen and (min-width: 812px) {
  .sec-news-detail__wrap {
    padding-top: 7rem;
    padding-bottom: 9.6rem;
  }
  .sec-news-detail {
    margin: 9.6rem 0 0;
    padding: 12rem;
  }
  .sec-news-detail__header {
    display: flex;
    -moz-column-gap: 3.2rem;
    column-gap: 3.2rem;
    margin-bottom: 12rem;
  }
  .sec-news-detail__header__image {
    width: 32rem;
  }
  .sec-news-detail__header__inner {
    flex: 1;
  }
  .sec-news-detail__ttl {
    font-size: 3.2rem;
  }
  .sec-news-detail__category {
    height: 2.6rem;
    font-size: 1.4rem;
  }
  .sec-news-detail__shop {
    margin-top: 15rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    padding: 4rem;
  }
  .sec-news-detail__shop__image {
    width: 24rem;
  }
  .sec-news-detail__shop__inner {
    flex: 1;
  }
  .sec-news-detail__shop__ttl {
    margin-bottom: 2.4rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .sec-news-detail__shop__btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 23rem;
    height: 16rem;
    row-gap: 1.7rem;
  }
  .sec-news-detail__shop__btns .m-btn {
    min-width: 100%;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-news-detail__wrap {
    padding-top: 6.4rem;
    padding-bottom: 8rem;
  }
  .sec-news-detail {
    margin-top: 8rem;
    padding: 2rem;
  }
  .sec-news-detail__header {
    margin-bottom: 8rem;
  }
  .sec-news-detail__header__image {
    margin-bottom: 3.2rem;
  }
  .sec-news-detail__ttl {
    font-size: 2.8rem;
  }
  .sec-news-detail__category {
    height: 2.3rem;
    font-size: 1.2rem;
  }
  .sec-news-detail__shop {
    margin-top: 10rem;
    padding: 2rem;
  }
  .sec-news-detail__shop__image {
    margin-bottom: 2.4rem;
  }
  .sec-news-detail__shop__ttl {
    margin-bottom: 2.4rem;
    font-size: 2rem;
  }
  .sec-news-detail__shop__btns {
    display: flex;
    flex-direction: column;
    row-gap: 1.7rem;
    margin-top: 4rem;
  }
  .sec-news-detail__shop__btns .m-btn {
    width: 100%;
  }
}

/* sec news recent
============================================================ */
.sec-news-recent {
  margin-top: 0 !important;
}
@media screen and (min-width: 812px) {
  .sec-news-recent .m-btn {
    margin: 6.4rem auto 0;
  }
}
@media screen and (max-width: 811px) {
  .sec-news-recent .m-btn {
    margin: 4.8rem auto 0;
  }
}

/* sec open
============================================================ */
.sec-open__time .m-table td {
  font-weight: bold;
  vertical-align: middle;
}
.sec-open__note {
  margin-top: 2em;
}
.sec-open .m-btn {
  margin: 3.2rem auto 0;
}
@media screen and (min-width: 812px) {
  .sec-open__time {
    width: 72rem;
    margin: 0 auto;
  }
  .sec-open__time .m-table th {
    width: 16rem;
    font-size: 2.4rem;
  }
  .sec-open__time .m-table td {
    font-size: 2.8rem;
  }
  .sec-open__time .m-table td span {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
  .sec-open__time .m-table td small {
    font-size: 1.8rem;
  }
  .sec-open__note {
    text-align: center;
  }
}
@media screen and (max-width: 811px) {
  .sec-open__time .m-table th {
    width: 7.2rem;
    text-align: center;
    font-size: 1.8rem;
  }
  .sec-open__time .m-table td {
    font-size: 1.8rem;
  }
  .sec-open__time .m-table td span {
    display: flex;
    flex-direction: column;
  }
  .sec-open__time .m-table td small {
    font-size: 1.4rem;
  }
}

/* sec access
============================================================ */
.sec-access__map {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.sec-access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 812px) {
  .sec-access__map {
    margin-top: 3.2rem;
    height: 60rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-access__map {
    margin-top: 3.2rem;
    height: 24rem;
  }
}

/* sec parking
============================================================ */
.sec-parking__caption {
  margin-bottom: 1em;
  font-weight: bold;
}
.sec-parking__image img {
  border-radius: 0.8rem;
}
@media screen and (min-width: 812px) {
  .sec-parking__caption {
    font-size: 2.8rem;
  }
  .sec-parking__image {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-parking__caption {
    font-size: 2rem;
  }
  .sec-parking__image {
    margin-top: 3.2rem;
  }
}

/* sec information
============================================================ */
.sec-information__logo img {
  width: 100%;
}
.sec-information__cont a {
  text-decoration: underline;
}
.sec-information__cont a:hover {
  text-decoration: none;
}
@media screen and (min-width: 812px) {
  .sec-information__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 6.4rem;
    column-gap: 6.4rem;
  }
  .sec-information__logo {
    width: 36rem;
  }
  .sec-information__cont {
    flex: 1;
  }
}
@media screen and (max-width: 811px) {
  .sec-information__inner {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
  }
}

/* sec contact
============================================================ */
.sec-contact__form__container {
  border-radius: 1.2rem;
  background-color: var(--color-sub);
}
.sec-contact__form__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--color-main);
  font-weight: bold;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
.sec-contact__form__trigger[aria-expanded=true] span {
  display: none;
}
.sec-contact__form__trigger[aria-expanded=true]:before {
  content: attr(data-opened);
}
.sec-contact__form__trigger[aria-expanded=true] em {
  transform: scale(1, -1);
}
@media screen and (min-width: 812px) {
  .sec-contact__form__trigger {
    height: 10rem;
  }
  .sec-contact__form__inner {
    padding: 3.2rem 12rem 12rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-contact__form__trigger {
    height: 6.8rem;
  }
  .sec-contact__form__inner {
    padding: 3.2rem 2rem 2rem;
  }
}

.modal-contact-result__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 1.5em;
}
.modal-contact-result__close {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  border-radius: 4rem;
  padding: 0 2em;
  border: 1px solid;
}
.modal-contact-result[data-msg=validation_failed] .modal-contact-result__msg {
  color: red;
}
@media screen and (min-width: 812px) {
  .modal-contact-result__inner {
    width: 60rem;
    min-height: 20rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 811px) {
  .modal-contact-result__inner {
    width: 32rem;
    min-height: 20rem;
    padding: 2rem;
  }
}

/* loading
============================================================ */
.js-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-brand-a-100);
  background: url(../img/common/loading.svg) no-repeat center center/5rem auto;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.js-loading-overlay.isLoading {
  opacity: 1;
  visibility: visible;
}

/* sec privacy
============================================================ */
.sec-privacy__caption {
  font-weight: bold;
}
.sec-privacy__cont > * {
  margin-bottom: 3.2rem;
}
.sec-privacy__cont a {
  text-decoration: underline;
}
@media (hover: hover) {
  .sec-privacy__cont a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 812px) {
  .sec-privacy__caption {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 811px) {
  .sec-privacy__caption {
    font-size: 2rem;
  }
}