.br-6 {
  border-radius: 6px;
}

.br-4 {
  border-radius: 4px;
}

.btn-copy {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 2;
  padding-top: 0.625rem;
  text-align: center;
}

.delay__15 {
  transition-delay: 0.15s;
}

.delay__30 {
  transition-delay: 0.3s;
}

.mv-img-item {
  height: 200px;
  object-fit: cover;
}

.sec-facilities__ttl-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 2.5rem;
}

.sec-facilities__ttl-img {
  width: 160px;
  margin-top: -1.25rem;
  margin-right: -0.9375rem;
}

.sec-facilities__wrap {
  position: relative;
}

.sec-facilities__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  height: 100%;
  background-color: #EDEBE7;
}

.sec-facilities__wrap .sec-facilities__row:last-of-type {
  padding-bottom: 3.75rem;
}

.sec-facilities__row {
  row-gap: 1.5rem;
  position: relative;
  padding-top: 3.75rem;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}

.sec-facilities__row > * {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.sec-facilities__item__ttl {
  font-size: 1.4285714286rem;
}

.sec-facilities__text {
  position: relative;
}

.sec-facilities__desc {
  line-height: 2;
  letter-spacing: 0.03em;
}

.sec-facilities__img {
  position: relative;
}

.reservation {
  color: #fff;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.reservation:hover {
  color: #fff;
  opacity: 1;
}

.reservation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: url(../images/oyado-eleven/reservation.jpg) no-repeat center center/cover;
  opacity: 1;
}

.reservation:hover::before {
  opacity: 0.5;
}

.reservation-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 3.5rem 1.5rem;
  position: relative;
}

.reservation-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: #707070;
  opacity: 1;
  transition: 0.3s;
  mix-blend-mode: multiply;
  z-index: 10;
}

.reservation:hover .reservation-inner::before {
  opacity: 1;
}

.reservation-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: #285328;
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}

.reservation:hover .reservation-inner::after {
  opacity: 0.4;
}

.reservation-subtext {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 100;
}

.reservation-text {
  font-size: 1.7142857143rem;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
  position: relative;
  z-index: 100;
}

.reservation-desc {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.reservation-text::after {
  content: "";
  position: relative;
  top: 0;
  margin-left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  mask: url(../images/common/icon-newtab.svg) no-repeat center center/contain;
  background-color: #fff;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .mv-img-item {
    height: auto;
  }
  .sec-facilities__wrap::before {
    display: none;
  }
  .sec-facilities__row::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #EDEBE7;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .sec-facilities__row {
    padding-top: 0;
    margin-top: 3.75rem;
    margin-bottom: 7.5rem;
  }
  .sec-facilities__wrap .sec-facilities__row:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(odd)::before {
    width: calc(50vw + 50% - 1.875rem);
    margin-left: calc(50% - 50vw);
    right: 3.125rem;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(even)::before {
    width: calc(50vw + 50% - 1.875rem);
    left: 1.875rem;
    right: unset;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(odd) .sec-facilities__item {
    padding-right: 1.25rem;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(even) .sec-facilities__item {
    padding-left: 1.25rem;
  }
  .sec-facilities__item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .sec-facilities__img {
    position: relative;
    top: -3.75rem;
  }
  .sec-facilities__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 992px) {
  .sec-facilities__ttl-img {
    width: 18.75rem;
  }
  .sec-facilities__item__ttl {
    font-size: 1.5rem;
  }
  .reservation-text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px), print {
  .sec-facilities__item {
    padding-top: 4.5625rem;
    padding-bottom: 4.5625rem;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(odd) .sec-facilities__item {
    padding-right: 3.75rem;
  }
  .sec-facilities__wrap .sec-facilities__row:nth-of-type(even) .sec-facilities__item {
    padding-left: 3.75rem;
  }
  .sec-facilities__row {
    margin-right: -1.875rem;
    margin-left: -1.875rem;
  }
  .sec-facilities__row > * {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
  .sec-facilities__img {
    width: 56%;
  }
  .sec-facilities__text {
    width: 44%;
  }
}
@media screen and (min-width: 1400px) {
  .sec-facilities__ttl-img {
    margin-top: -3.125rem;
    margin-right: -3.125rem;
    width: 30.3125rem;
  }
}
.sec-access {
  background-color: #fff;
}

.sec-access__container {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.sec-access__row {
  position: relative;
  row-gap: 3.125rem;
}

.access__item {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 0.625rem;
  border-bottom: 1px solid #B0B0B0;
  letter-spacing: 0.03em;
}

.access__item__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.access__item__link:hover {
  color: #333;
}

.access__item__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #333;
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transform: scale(1);
  transform-origin: left top;
}

.access__item__link:hover::before {
  transform: scaleX(0);
  transform-origin: right top;
}

.access__item__link .text-eng {
  font-size: 1.125rem;
}

.access__item__ttl {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  color: rgba(51, 51, 51, 0.7);
}

.access__map {
  aspect-ratio: 550/360;
  border-radius: 6px;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .sec-access {
    background-color: transparent;
    margin-bottom: 17.25rem;
  }
  .sec-access__container {
    padding-top: 5.375rem;
    padding-bottom: 6.625rem;
    position: relative;
  }
  .sec-access__row {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
  .sec-access__row > * {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .sec-access__container::before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
    width: calc(50vw + 50%);
    margin-left: calc(50% - 50vw);
    right: 1.25rem;
  }
  .sec-access__text {
    width: 48%;
  }
  .sec-access__mapwrap {
    width: 45.8%;
    position: relative;
  }
  .access__img {
    position: absolute;
    width: 299.79px;
  }
}
@media screen and (min-width: 992px) {
  .access__img {
    width: 409.71px;
  }
}
@media screen and (min-width: 1200px), print {
  .sec-access__row {
    margin-right: -2.5rem;
    margin-left: -2.5rem;
  }
  .sec-access__row > * {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .access__img {
    width: 467.76px;
  }
}
@media screen and (min-width: 1400px) {
  .access__img {
    width: 550.2px;
  }
}/*# sourceMappingURL=style-facility.css.map */