@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  background-color: #f6ede8;
  color: #0f0f0f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

.sp_br {
  display: none;
}
@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

.pc_br {
  display: block;
}
@media (max-width: 768px) {
  .pc_br {
    display: none;
  }
}

.button {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background-color: #f7f7f7;
  color: #0f0f0f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: rgb(221.5, 221.5, 221.5);
}

.card {
  position: relative;
  border: 1px solid #000000;
  overflow: hidden;
}
.card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
  border-top: 1px solid #ffffff;
}
.card__content {
  padding: 1.5rem 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .card__content {
    padding: 0.5rem 0rem;
    font-size: clamp(0.7rem, 4vw, 3rem);
    line-height: 2rem;
  }
}
.card__content p {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .card__content p {
    margin-bottom: 1rem;
  }
}
.card__title {
  color: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}
.card__title--small {
  font-size: 1.3rem;
  color: #0f0f0f;
  margin-bottom: 0rem;
}
.card__title--accent {
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
}
.card__title.line {
  color: #00c300;
}
.card__title.instagram {
  color: #E1306C;
}
.card--stacked {
  border: none;
  overflow: visible;
}
.card--stacked .card__image {
  height: 300px;
  width: auto;
  margin: 0 auto;
  border: 1px solid #000000;
}
.card--stacked .card__overlay {
  display: none;
}
.card--feature {
  border: 1px solid #000000;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  margin: 0 1rem;
}
.card--feature .card__image {
  height: 300px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.card--feature .card__content {
  padding: 0;
}
.card--sns {
  border: 1px solid #000000;
  background: #ffffff;
  text-align: center;
  padding: 1rem;
}
.card--sns p {
  margin: 0 0 0.6rem 0;
}

.scroll-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0rem; /* 共通の下マージン */
}
.scroll-text__inner {
  display: flex;
  will-change: transform;
}
.scroll-text__item {
  font-family: "Inknut Antiqua", serif;
  font-weight: 700;
  font-size: clamp(3rem, 15vw, 6.25rem);
  padding: 0 1rem; /* テキスト間のスペース */
  flex-shrink: 0; /* flexアイテムが縮まないようにする */
  color: #0f0f0f;
}
.scroll-text--with-bg {
  position: relative;
  background-image: url("../images/slider/slider-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0.5rem 0;
}
@media (max-width: 1024px) {
    .scroll-text--with-bg {
        background-attachment: scroll; 
        background-position: center center;
        background-size: cover;
    }
}
.scroll-text--with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 237, 232, 0.4);
  z-index: 1;
}
.scroll-text--with-bg .scroll-text__inner {
  position: relative;
  z-index: 2;
}
.scroll-text--reverse .scroll-text__inner {
  animation-direction: reverse;
}
.scroll-text--footer {
  margin-bottom: 0;
}
.scroll-text--footer .scroll-text__item {
  font-size: clamp(3rem, 15vw, 6.25rem); /* フッターロゴのサイズに合わせる */
}

.gallery-scroll {
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.gallery-scroll__inner {
  display: flex;
  gap: 3.5rem;
  will-change: transform;
}
.gallery-scroll__inner img {
  flex-shrink: 0;
  height: 200px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 30;
}
.header__logo {
  font-family: "Inknut Antiqua", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f0f0f;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__logo img {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 70px;
    position: relative;
    right: 0rem;
  }
}
@media (max-width: 768px) {
  .header__logo {
    font-size: 1.5rem;
    line-height: 1.3rem;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #f6ede8;
  padding-top: 100px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 20;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.header__nav-item a {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.header__nav-item a:hover {
  color: #e2750f;
}
.header__hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 21;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
.header__hamburger-line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0f0f0f;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger-line:nth-child(1) {
  transform: translateY(-10px) rotate(0deg);
}
.header__hamburger-line:nth-child(3) {
  transform: translateY(10px) rotate(0deg);
}
.header.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
}
.header.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(0px) rotate(-45deg);
}
.header.is-active .header__nav {
  transform: translateX(0);
}

.footer {
  padding: 1rem 1rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__copyright {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
}
.footer__pagetop {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}
.footer__pagetop span {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.375rem;
}

.section {
  padding: 1rem 1rem;
}
@media (max-width: 768px) {
  .section {
    padding: 0.5rem 0.5rem;
  }
}
.section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 0 0.1rem;
  }
}
.section__title {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 3.375rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.5rem;
    margin-top: 1rem;
  }
}
.section__title::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
.section__lead, .section__text {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2;
  max-width: 900px;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .section__lead, .section__text {
    padding: 0.5rem 0.5rem;
    font-size: clamp(1rem, 4vw, 3rem);
    line-height: 2rem;
  }
}
.section--gallery {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 100vh;
}
.section--gallery--facility {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
.section--about .about__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .section--about .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.section--about .about__name {
  font-size: 3.125rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section--about .about__name {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}
.section--about .about__name-en {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section--about .about__name-en {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1rem;
  }
}
.section--about .about__bio {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section--about .about__bio {
    font-size: clamp(1rem, 4vw, 3rem);
    margin-bottom: 0rem;
  }
}
.section--about .about__story {
  font-size: 1.375rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .section--about .about__story {
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.2rem;
    font-size: clamp(1rem, 4vw, 3rem);
  }
}
.section--about .about__image-content {
  margin: 0 auto;
  padding: 4rem;
}
@media (max-width: 768px) {
  .section--about .about__image-content {
    padding: 0rem;
  }
}
.section--about .about__results {
  border: 1px solid #000000;
  padding: 2rem;
  margin: 0 8rem;
}
@media (max-width: 768px) {
  .section--about .about__results {
    margin: 0 0.1rem;
    padding: 1rem;
  }
}
.section--about .about__results .about__results-list {
  list-style: none;
}
.section--about .about__results .about__results-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.section--about .about__results .about__results-heading:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .section--about .about__results .about__results-heading {
    margin: 0;
  }
}
.section--about .about__results .about__results-item {
  display: grid;
  grid-template-columns: auto 1fr 120px;
  gap: 2rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.section--about .about__results .about__results-item:last-of-type {
  border-bottom: none;
}
@media (max-width: 768px) {
  .section--about .about__results .about__results-item {
    grid-template-columns: 1fr;
    gap: 0rem;
    font-size: 1rem;
  }
}
.section--about .about__results .about__results-item span:nth-child(3) {
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section--about .about__results .about__results-item span:nth-child(3) {
    text-align: left;
  }
}
.section--price-split {
  padding: 0.5rem 1rem;
}
.section--price-split .price-split__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 0 8rem;
}
@media (min-width: 1024px) {
  .section--price-split .price-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .section--price-split .price-split__grid {
    display: inline;
  }
}
.section--price-split .price-split__text {
  margin: 0 auto;
  text-align: center;
}
.section--price-split .price-split__text .section__title {
  text-align: center;
  font-size: clamp(2.5rem, 1vw, 5rem);
}
.section--price-split .price-split__link {
  display: inline-block;
  position: relative;
}
.section--price-split .price-split__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0f0f0f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.section--price-split .price-split__link:hover::after {
  transform: scaleX(1);
}
.section--price-split .price-split__image img {
  padding: 4rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section--price-split .price-split__image img {
    padding: 0.5rem;
    width: 70%;
  }
}
.section--access .access__map {
  margin: 2.5rem auto;
}
.section--access .access__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
.section--access .access__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border-top: 1px solid;
  margin: 0 8rem;
}
@media (max-width: 768px) {
  .section--access .access__list {
    margin: 0 0.1rem;
  }
}
.section--access .access__list dt, .section--access .access__list dd {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  text-align: left;
}
.section--access .access__list dt {
  font-size: 1.2rem;
  font-weight: 300;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .section--access .access__list dt {
    padding-right: 0rem;
  }
}
.section--access .access__list dd {
  font-size: 1rem;
  padding-left: 2rem;
}

.hero {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero__video {
  display: inline;
}
@media (max-width: 768px) {
  .hero__video {
    display: none;
  }
}
.hero__video__sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__video__sp {
    display: inline;
  }
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: "Inknut Antiqua", serif;
  font-size: 4rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero__title {
    display: none;
  }
}
.hero .scroll {
  padding-top: 60px;
  position: relative;
  text-align: center;
  top: 12rem;
  font-weight: bold;
  color: #e2750f;
}
/* @media (max-width: 768px) {
  .hero .scroll {
    top: 22rem;
  }
} */
.hero .scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 3px solid #e2750f;
  border-left: 3px solid #e2750f;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

.fade-in-target {
  visibility: hidden;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2col {
  padding: 1rem;
}
@media (min-width: 768px) {
  .grid--2col {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}
.grid--3col {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .grid--3col {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.main--subpage {
  padding-top: 120px;
}

.section__outer {
  padding: 2rem 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.split-content__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .split-content__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.split-content__text {
  text-align: center;
}
.split-content__text .section-title {
  font-size: 5rem;
}
.split-content__image img {
  margin: 0 auto;
  width: 70%;
  height: auto;
}

.description-text {
  max-width: 90%;
  margin: 1rem auto;
  line-height: 2;
  text-align: center;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .description-text {
    font-size: 1rem;
  }
}

.price-page .section__title {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.price-page .price-plan {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  padding: 0 0.1rem;
}
.price-page .price-plan__gallery {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto;
}
.price-page .price-plan__image {
  border-radius: 10px;
  width: clamp(280px, 50%, 360px);
  height: auto;
}
.price-page .price-plan__image--1 {
  display: block;
  margin-left: 0;
}
.price-page .price-plan__image--2 {
  display: block;
  margin-left: auto;
  margin-top: -25%;
}
@media (max-width: 768px) {
  .price-page .price-plan__image {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-page .price-plan__image--1 {
    margin-bottom: 1rem;
  }
  .price-page .price-plan__image--2 {
    margin-top: 0;
  }
}
.price-page .price-plan__details-wrapper {
  text-align: center;
}
.price-page .price-plan__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}
.price-page .price-plan__title--main {
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.price-page .price-plan__details {
  display: flex;
  flex-direction: column;
  max-width: 753px;
  width: 100%;
  margin: 0 auto;
}
.price-page .price-plan__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
  padding: clamp(1rem, 3vw, 2rem);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 768px) {
  .price-page .price-plan__item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
  }
}
.price-page .price-plan__item .price-plan__term {
  text-align: left;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .price-page .price-plan__item .price-plan__term {
    text-align: center;
    padding-left: 0;
  }
}
.price-page .price-plan__item .price-plan__cost {
  text-align: right;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .price-page .price-plan__item .price-plan__cost {
    text-align: center;
    padding-right: 0;
  }
}
.price-page .price-plan__description {
  max-width: 713px;
  margin: 2rem auto;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  text-align: center;
}
.price-page .price-plan__description--centered {
  max-width: 531px;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
}
.price-page .price-feature {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(4rem, 10vw, 8rem);
  width: 100%;
  padding: 0 1rem;
}
.price-page .price-feature__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.price-page .price-feature__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2rem);
  text-align: center;
}
.price-page .price-feature__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .price-page .price-feature__item {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .price-page .price-feature__item--reverse {
    flex-direction: row-reverse;
  }
}
.price-page .price-feature__image {
  max-width: 555px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-page .price-feature__content {
  max-width: 719px;
  width: 100%;
}
.price-page .price-feature__text {
  font-family: "ABeeZee", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  text-align: center;
}
.price-page__contact {
  max-width: 691px;
  width: calc(100% - 2rem);
  margin: 4rem auto;
}/*# sourceMappingURL=style.css.map */

.reservation-content {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(239, 213, 137, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.reservation-text {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* 20251005追加 */

.facilities__details {
  margin: 1rem 0.3rem;
}
.facilities__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border-top: 1px solid;
  margin: 0 8rem;
}
@media (max-width: 768px) {
  .facilities__list {
    display: flex;
    margin: 0 0.1rem;
    flex-direction: column;
  }
}
.facilities__list dt {
  font-size: 1.2rem;
  font-weight: 300;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
  border-bottom: 1px solid;
}
.facilities__list dd {
  border-bottom: 1px solid;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
  border-bottom: 1px solid;
  font-size: 1rem;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .facilities__list dt {
    padding-right: 0rem;
    border-bottom: 0px solid;
    text-align: center;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .facilities__list dd {
    text-align: center;
    padding-left: 0rem;
  }
}

.section__inner__goods {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .section__inner__goods {
    max-width: 100%;
    padding: 0 0.1rem;
  }
}
.image-text__item{
  text-align: center;
  margin: 0 auto;
}
.image-text__item img{
  width: 70%;
  height: auto;
  margin: 0 auto 1rem auto;
}
@media (max-width: 768px) {
  .image-text__item img{
    width: 80%;
  }
}