@charset "UTF-8";
@font-face {
  font-family: "din-2014";
  src: url("../fonts/DINMediumfont.woff2") format("woff2"), url("../fonts/DINMediumfont.woff") format("woff"), url("../fonts/DINMediumfont.otf") format("opentype");
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/**
 * 追記
 */
body {
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.6;
  transition: opacity 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

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

/* ------------------------------
 * default
------------------------------ */
html {
  font-size: 100%;
}

body {
  font-size: clamp(0.875rem, 0.875rem + (1rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1rem);
}
@supports (width: 100cqw) {
  body {
    font-size: clamp(0.875rem, 1rem / 1180px * 100cqw, 1rem);
  }
}
body {
  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  line-height: 1.4;
  color: #4B4B4B;
  position: relative;
}

.l-adjust {
  max-width: 1245px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

._sh {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

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

.l-header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.l-header::before {
  content: "";
  width: 89.7%;
  height: 100%;
  display: block;
  background-color: rgba(255, 245, 0, 0.7);
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .l-header::before {
    width: 100%;
  }
}
.l-header__container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.l-header__gnav {
  position: relative;
  z-index: 7;
}
.l-header__gnav-list {
  height: 67px;
  display: flex;
  gap: 20px clamp(15px, 15px + (90px - 30px) * (100vw - 375px) / (1180px - 375px), 90px);
  justify-content: center;
  align-items: center;
}
.l-header__gnav-link {
  font-weight: 600;
}
.l-header__gnav-link {
  color: #434343;
}

.l-footer {
  text-align: center;
  padding: 0 20px 32px;
}
.l-footer__copy {
  font-size: clamp(0.625rem, 0.625rem + (0.875rem - 0.625rem) * (100vw - 375px) / (1180px - 375px), 0.875rem);
}
@supports (width: 100cqw) {
  .l-footer__copy {
    font-size: clamp(0.625rem, 0.875rem / 1180px * 100cqw, 0.875rem);
  }
}
.l-footer__copy {
  font-family: "din-2014", sans-serif;
  color: #222;
}

.pagetop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #55ac21;
  position: fixed;
  bottom: clamp(20px, 20px + (70px - 20px) * (100vw - 375px) / (1180px - 375px), 70px);
  right: clamp(20px, 20px + (53px - 20px) * (100vw - 375px) / (1180px - 375px), 53px);
  transform: translateY(150px);
  z-index: 10;
  transition: all 0.2s;
}
.pagetop::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background-color: rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 0;
  left: 0;
}
.pagetop.is-show {
  transform: translateY(0);
  transition: all 0.2s;
}
.pagetop:hover, .pagetop:focus {
  opacity: 1;
  transition: all 0.2s;
}
.pagetop__arrow {
  color: #fff;
  width: 23px;
  height: 2px;
  display: block;
  background-color: #fff;
  position: relative;
  transform: rotate(-90deg);
  z-index: 5;
}
.pagetop__arrow::before, .pagetop__arrow::after {
  content: "";
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1.2px);
  right: 0;
  transform-origin: calc(100% - 0.5px) 50%;
}
.pagetop__arrow::before {
  transform: rotate(45deg);
}
.pagetop__arrow::after {
  transform: rotate(-45deg);
}

.l-main {
  overflow: hidden;
}

.kv {
  width: 100%;
  min-height: clamp(500px, 500px + (750px - 500px) * (100vw - 375px) / (1180px - 375px), 750px);
  height: 100vh;
  height: 100dvh;
  position: relative;
}
@media screen and (min-width: 1650px) {
  .kv {
    min-height: clamp(600px, 600px + (956px - 600px) * (100vw - 375px) / (1180px - 375px), 956px);
  }
}
@media screen and (max-width: 768px) {
  .kv {
    height: initial;
    height: initial;
  }
}
.kv::before, .kv::after {
  content: "";
  display: block;
}
.kv::before {
  width: 73.5%;
  height: calc(100% - 67px);
  background-color: #ACD784;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.kv::after {
  width: 90%;
  height: calc(100% - 67px);
  margin-left: auto;
  background-color: #6BBA27;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.kv__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/kv_bg.svg) no-repeat center 50%/auto clamp(10%, 10% + (88% - 10%) * (100vw - 375px) / (1180px - 375px), 88%);
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .kv__container {
    height: auto;
    padding: 100px 0 clamp(60px, 60px + (100px - 60px) * (100vw - 375px) / (1180px - 375px), 100px);
    background: url(../images/kv_bg.svg) no-repeat center center/auto 45%;
  }
}
.kv__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kv__heading {
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kv__text {
  font-size: clamp(1.25rem, 1.25rem + (2.25rem - 1.25rem) * (100vw - 375px) / (1180px - 375px), 2.25rem);
}
@supports (width: 100cqw) {
  .kv__text {
    font-size: clamp(1.25rem, 2.25rem / 1180px * 100cqw, 2.25rem);
  }
}
.kv__title {
  font-size: clamp(1.875rem, 1.875rem + (3.9375rem - 1.875rem) * (100vw - 375px) / (1180px - 375px), 3.9375rem);
  margin-top: 10px;
}
.kv__title rt {
  font-size: clamp(0.875rem, 0.875rem + (1.5rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1.5rem);
  text-align: center;
  letter-spacing: 0.3rem;
}
.kv__title-large {
  font-size: clamp(2.5rem, 2.5rem + (6.625rem - 2.5rem) * (100vw - 375px) / (1180px - 375px), 6.625rem);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .kv__title-large {
    margin-top: 5px;
    display: block;
  }
}
.kv__image {
  max-width: 1280px;
  width: 75%;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv__image {
    width: 80%;
  }
}
.kv__image-station {
  max-width: 884px;
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .kv__image-station {
    width: 100%;
    margin-left: 0;
  }
}
.kv__image-info {
  max-width: 487px;
  width: 40%;
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .kv__image-info {
    width: 50%;
    left: clamp(-20px, -20px + (-40px - -20px) * (100vw - 375px) / (1180px - 375px), -40px);
  }
}
.kv__image-pressrelease {
  max-width: 397px;
  width: 40%;
  border: 1px solid #383838;
  background-color: #fff;
  position: absolute;
  bottom: -80px;
  left: clamp(45%, 45% + (55% - 45%) * (100vw - 375px) / (1180px - 375px), 55%);
}
@media screen and (max-width: 768px) {
  .kv__image-pressrelease {
    width: 50%;
    position: static;
    margin: 20px 0 0 auto;
  }
}
.kv__image-pressrelease a {
  font-size: clamp(1rem, 1rem + (1.25rem - 1rem) * (100vw - 375px) / (1180px - 375px), 1.25rem);
  font-family: "din-2014", sans-serif;
  font-weight: 500;
  width: 100%;
  height: clamp(30px, 30px + (58px - 30px) * (100vw - 375px) / (1180px - 375px), 58px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-section {
  position: relative;
}
.l-section__container:not(.-full) {
  padding: 0 4.5%;
}

.deco__border {
  width: clamp(1000px, 1000px + (2752px - 1000px) * (100vw - 375px) / (1180px - 375px), 2752px);
  height: 1660px;
  display: block;
  position: absolute;
  top: clamp(-80%, -80% + (-40% - -80%) * (100vw - 375px) / (1180px - 375px), -40%);
  left: 0;
  right: 0;
  transform: translateX(-10%);
  z-index: 1;
  background: url(../images/border.png) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .deco__border {
    width: clamp(500px, 500px + (1000px - 500px) * (100vw - 375px) / (1180px - 375px), 1000px);
    top: clamp(-150%, -150% + (-100% - -150%) * (100vw - 375px) / (1180px - 375px), -100%);
    transform: translateX(0);
  }
}
.deco__border.deco_btm {
  top: clamp(-40%, -40% + (-100% - -40%) * (100vw - 375px) / (1180px - 375px), -100%);
  transform: translateX(-20%);
}
@media screen and (max-width: 768px) {
  .deco__border.deco_btm {
    top: -80%;
    transform: translateX(0);
    display: none;
  }
}

.shopinfo {
  padding-top: clamp(120px, 120px + (165px - 120px) * (100vw - 375px) / (1180px - 375px), 165px);
}
.shopinfo__container {
  position: relative;
  z-index: 2;
}
.shopinfo__container::after {
  content: "";
  width: calc(50% + clamp(100px, 100px + (250px - 100px) * (100vw - 375px) / (1180px - 375px), 250px));
  height: 2px;
  display: block;
  background-color: #707070;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .shopinfo__container::after {
    width: calc(50% + clamp(150px, 150px + (200px - 150px) * (100vw - 375px) / (1180px - 375px), 200px));
  }
}
.shopinfo__heading {
  display: flex;
  justify-content: center;
  position: relative;
}
.shopinfo__title {
  font-size: clamp(2.1875rem, 2.1875rem + (3.125rem - 2.1875rem) * (100vw - 375px) / (1180px - 375px), 3.125rem);
}
@supports (width: 100cqw) {
  .shopinfo__title {
    font-size: clamp(2.1875rem, 3.125rem / 1180px * 100cqw, 3.125rem);
  }
}
.shopinfo__title {
  color: #6CB826;
  letter-spacing: 0.4rem;
  text-align: center;
}
.shopinfo__subtitle {
  font-size: clamp(0.875rem, 0.875rem + (1.5rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1.5rem);
}
@supports (width: 100cqw) {
  .shopinfo__subtitle {
    font-size: clamp(0.875rem, 1.5rem / 1180px * 100cqw, 1.5rem);
  }
}
.shopinfo__subtitle {
  color: #5D5D5D;
  font-weight: 600;
  text-align: center;
  padding: 0 15px;
  display: inline;
  position: absolute;
  bottom: clamp(60px, 60px + (100px - 60px) * (100vw - 375px) / (1180px - 375px), 100px);
  transform: translateX(-25%) rotate(-5deg);
}
.shopinfo__subtitle::before, .shopinfo__subtitle::after {
  content: "";
  width: 2px;
  height: clamp(30px, 30px + (60px - 30px) * (100vw - 375px) / (1180px - 375px), 60px);
  display: block;
  background-color: #707070;
  position: absolute;
  top: 10px;
}
.shopinfo__subtitle::before {
  left: 0;
  transform: rotate(-30deg);
}
.shopinfo__subtitle::after {
  right: 0;
  transform: rotate(20deg);
}
.shopinfo__list-wrap {
  margin-top: clamp(40px, 40px + (80px - 40px) * (100vw - 375px) / (1180px - 375px), 80px);
}
.shopinfo__scroll-text {
  font-size: clamp(0.875rem, 0.875rem + (1rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1rem);
}
@supports (width: 100cqw) {
  .shopinfo__scroll-text {
    font-size: clamp(0.875rem, 1rem / 1180px * 100cqw, 1rem);
  }
}
.shopinfo__scroll {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shopinfo__scroll {
    margin-top: 10px;
    padding: 0 1px 5px 0;
    overflow-x: scroll;
  }
}
.shopinfo__list {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .shopinfo__list {
    width: 1000px;
  }
}
.shopinfo__col-shopname {
  width: clamp(150px, 150px + (330px - 150px) * (100vw - 375px) / (1180px - 375px), 330px);
}
@media screen and (max-width: 768px) {
  .shopinfo__col-shopname {
    width: 280px;
  }
}
.shopinfo__col-tel {
  width: clamp(140px, 140px + (190px - 140px) * (100vw - 375px) / (1180px - 375px), 190px);
}
@media screen and (max-width: 768px) {
  .shopinfo__col-tel {
    width: 170px;
  }
}
.shopinfo__col-floor {
  color: #fff;
  text-align: left;
  border-width: 1px 2px;
  border-style: solid;
  border-color: #6CB826;
  background-color: #6CB826;
}
.shopinfo__col-head {
  border-width: 1px 2px;
  border-style: solid;
  border-color: #ACD784;
  background-color: #ACD784;
}
.shopinfo__col-head .shopinfo__list-th:not(:first-child) {
  border-left: 1px solid #fff;
}
.shopinfo__col-body:nth-child(even) {
  background-color: #FFFCE2;
}
.shopinfo__list-th, .shopinfo__list-td {
  font-size: clamp(0.875rem, 0.875rem + (1rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1rem);
}
@supports (width: 100cqw) {
  .shopinfo__list-th, .shopinfo__list-td {
    font-size: clamp(0.875rem, 1rem / 1180px * 100cqw, 1rem);
  }
}
.shopinfo__list-th, .shopinfo__list-td {
  padding: 8px 5px;
}
.shopinfo__list-td {
  font-family: "M PLUS Rounded 1c", sans-serif;
  border: 1px solid #2E2E2E;
}
.shopinfo__list-td:nth-child(3), .shopinfo__list-td:nth-child(4) {
  text-align: center;
}
.shopinfo__tel, .shopinfo__link {
  color: #4B4B4B;
}
.shopinfo__tel {
  pointer-events: none;
  cursor: none;
}
@media screen and (max-width: 768px) {
  .shopinfo__tel {
    pointer-events: auto;
    cursor: pointer;
  }
}
.shopinfo__link {
  color: #6CB826;
  text-decoration: underline !important;
  margin-right: 10px;
}
.shopinfo__link.-point {
  margin-top: 3px;
  margin-right: 0;
  display: inline-block;
  vertical-align: bottom;
  text-decoration: none !important;
}
.shopinfo__link.-point img {
  max-width: 100px;
  width: 100%;
  display: block;
}
.shopinfo__note {
  max-width: 1180px;
  width: 100%;
  margin: clamp(10px, 10px + (20px - 10px) * (100vw - 375px) / (1180px - 375px), 20px) auto 0;
}
.shopinfo__note-item {
  text-indent: -1em;
  padding-left: 1em;
}
.shopinfo__update {
  font-size: clamp(1.125rem, 1.125rem + (1.875rem - 1.125rem) * (100vw - 375px) / (1180px - 375px), 1.875rem);
}
@supports (width: 100cqw) {
  .shopinfo__update {
    font-size: clamp(1.125rem, 1.875rem / 1180px * 100cqw, 1.875rem);
  }
}
.shopinfo__update {
  font-family: "din-2014", sans-serif;
  text-align: center;
  margin-top: clamp(40px, 40px + (75px - 40px) * (100vw - 375px) / (1180px - 375px), 75px);
  padding-bottom: 15px;
}

.floormap {
  padding-top: clamp(60px, 60px + (120px - 60px) * (100vw - 375px) / (1180px - 375px), 120px);
}
.floormap__container {
  position: relative;
  z-index: 2;
}
.floormap__title {
  font-size: clamp(2.1875rem, 2.1875rem + (3.125rem - 2.1875rem) * (100vw - 375px) / (1180px - 375px), 3.125rem);
}
@supports (width: 100cqw) {
  .floormap__title {
    font-size: clamp(2.1875rem, 3.125rem / 1180px * 100cqw, 3.125rem);
  }
}
.floormap__title {
  font-family: "din-2014", sans-serif;
  color: #fff;
  text-align: center;
}
.floormap__inner {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 30px + (50px - 30px) * (100vw - 375px) / (1180px - 375px), 50px) 0 clamp(40px, 40px + (150px - 40px) * (100vw - 375px) / (1180px - 375px), 150px);
  border-top-left-radius: clamp(15px, 15px + (40px - 15px) * (100vw - 375px) / (1180px - 375px), 40px);
  border-bottom-right-radius: clamp(15px, 15px + (40px - 15px) * (100vw - 375px) / (1180px - 375px), 40px);
  background-color: #6EAD1A;
}
.floormap__image {
  max-width: 1180px;
  width: 88%;
  margin: clamp(30px, 30px + (50px - 30px) * (100vw - 375px) / (1180px - 375px), 50px) auto 0;
}
.floormap__image img {
  width: 100%;
  display: block;
}

.access {
  padding-top: clamp(0, 60px + (125px - 60px) * (100vw - 375px) / (1180px - 375px), 60px);
}
.access__map {
  width: 100%;
  position: relative;
}
.access__container {
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.access__iframe {
  width: 100%;
  height: clamp(320px, 320px + (610px - 320px) * (100vw - 375px) / (1180px - 375px), 610px);
  overflow: hidden;
  position: relative;
}
.access__iframe iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.access__heading {
  width: clamp(250px, 250px + (342px - 250px) * (100vw - 375px) / (1180px - 375px), 342px);
  height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #fff;
  position: absolute;
  bottom: 23px;
  left: clamp(55%, 55% + (60% - 55%) * (100vw - 375px) / (1180px - 375px), 60%);
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .access__heading {
    display: none;
  }
}
.access__location {
  font-size: clamp(0.875rem, 0.875rem + (1rem - 0.875rem) * (100vw - 375px) / (1180px - 375px), 1rem);
}
@supports (width: 100cqw) {
  .access__location {
    font-size: clamp(0.875rem, 1rem / 1180px * 100cqw, 1rem);
  }
}
.access__location {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .access__location {
    text-align: center;
  }
}
.access__btn {
  max-width: 558px;
  width: 91%;
  margin:30px auto 50px;
}
.access__link {
  font-size: clamp(1rem, 1rem + (1.125rem - 1rem) * (100vw - 375px) / (1180px - 375px), 1.125rem);
}
@supports (width: 100cqw) {
  .access__link {
    font-size: clamp(1rem, 1.125rem / 1180px * 100cqw, 1.125rem);
  }
}
.access__link {
  font-family: "din-2014", sans-serif;
  font-weight: 500;
  color: #3C3C3C;
  width: 100%;
  height: 58px;
  border: 2px solid #3C3C3C;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: all 0.2s;
}
.access__link:hover {
  color: #fff;
  border: 2px solid #6EAD1A;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #6EAD1A;
  opacity: 1;
  transition: all 0.2s;
}/*# sourceMappingURL=style.css.map */

/**260309追加**/

.access__info{
	margin: 30px auto;
	max-width: 558px;
    width: 91%;
}
.access__info h2{
	text-align: center;
	color: #6CB826;
	font-size: clamp(2.1875rem, 3.125rem / 1180px * 100cqw, 3.125rem);
    padding-top: clamp(40px, 40px + (80px - 40px) * (100vw - 375px) / (1180px - 375px), 60px);
}
.access__inner {
	width: 80%;
    margin: 30px auto;
}
.access__inner li{
	list-style-type: square;
	padding-bottom: 10px;
}

.parking{
	z-index: 999;
}

.parking__guid {
    max-width: 1080px;
	margin: 0 auto 30px;
}
.parking__guid:not(.-full) {
    padding: 0 4.5%;
}
.parking__guid h2{
    text-align: center;
	color: #6CB826;
	font-size: clamp(2.1875rem, 3.125rem / 1180px * 100cqw, 3.125rem);
    padding-top: clamp(40px, 40px + (80px - 40px) * (100vw - 375px) / (1180px - 375px), 80px);
}
.parking__guid p{
    line-height: 2.4rem;
}
.parking_sub_title{
	text-align: center;
	font-size: clamp(0.875rem, 1.5rem / 1180px * 100cqw, 1.5rem);
	padding-top: 10px;
	font-weight: 600;
}
.parking__list{
	margin: 30px auto;
	width: 640px;
}
.parking__list ul{
    padding-left: 20px;
}
.parking__list li{
	list-style-type: circle;
}
.parking__guid table{
	width: 100%;
	margin-bottom: 10px;
}
.parking__guid table , .parking__guid td, .parking__guid th {
	border: 1px solid #595959;
	border-collapse: collapse;
	font-size: clamp(0.875rem, 1rem / 1180px * 100cqw, 1rem);
}
.parking__guid td, .parking__guid th {
	padding: 10px;
	width: 30px;
	height: 25px;
}
.parking__guid .shop_s {
	background: #FFFCE2;
}
.pc_br{
	display: block;
}
.pc_sp{
	display: none;
}

.access__footer {
  width: clamp(250px, 250px + (342px - 250px) * (100vw - 375px) / (1180px - 375px), 342px);
  height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .access__info{
	margin: 0 auto 30px;
  }
	
  .parking__guid p{
	line-height: 1.2rem;
  }
  .parking__list {
    margin: 20px auto;
    width: 100%;
  }
  .parking__guid td, .parking__guid th {
    padding: 10px 5px;
	  width: auto;
	  height: auto;
  }
  .pc_br{
	display: none;
}
  .pc_sp{
	display: block;
  }
}
