@charset "UTF-8";
ul li {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

main {
  font-size: 16px;
}

th,
td {
  letter-spacing: 0.1em;
}

h1,
h2,
p {
  line-height: 1.8em;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  border-left: 0.1em solid #000;
  padding-left: 1rem;
}

h2 {
  font-size: 1.25em;
  background-color: #000;
  color: #fff;
  font-weight: 400;
  padding-left: 1em;
}

p {
  font-size: 1em;
}

a {
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
}

img {
  width: 100%;
}

.wrapper,
.access {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

.mainvl {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  width: 100%;
  margin: 3em;
  max-width: 16em;
  /* ボタン幅 */
  border: 2px solid #FF1A00;
  /* 線幅・種類・色 */
  background: #fff;
  /* 背景色 */
  padding: 1em 2em;
  font-weight: bold;
  /* 文字の太さ */
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  gap: 1em;
}
.btn a {
  color: #FF1A00;
}
.btn a span {
  margin: 0.5em;
}

/* マウスオーバーした際のデザイン */
.btn:hover {
  color: #fff;
  /* 文字色 */
  background: #FF1A00;
  /* 背景色 */
}
.btn:hover a {
  color: #fff;
}

/* ボタンのスタイル */
.buttonicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1;
  background-color: #FF1A00;
  border-radius: 50%;
}

@media (any-hover: hover) {
  .buttonicon {
    transition: background-color 0.2s;
  }
  .buttonicon:hover {
    background-color: #9CCB10;
  }
}
/* 下矢印アイコンのスタイル */
.iconarrowbottom {
  rotate: 270deg;
}

.wrapper {
  margin-top: 6.25em;
}

.about-container {
  display: grid;
  place-content: center;
  grid-template-columns: minmax(0, 3fr) 0.5fr minmax(0, 3fr);
  grid-template-rows: minmax(0, 2fr) minmax(0, 1fr) 0.5fr;
}
.about-container .btn {
  grid-column: 3;
  grid-row: 3;
  place-self: center;
}

.about-img {
  grid-column: 1;
  grid-row: 1/-1;
}

.thumbnail {
  border: 0.5em solid #000;
}

.thumbnail-thumb {
  background-color: #000;
  padding: 0.5em;
  margin: 1em 0;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
}

.basic-info {
  grid-column: 3;
  grid-row: 1;
}
.basic-info h2 {
  margin: 0 0 1em 0;
}

.interior-cost,
.other-cost {
  width: 100%;
}
.interior-cost th,
.interior-cost td,
.other-cost th,
.other-cost td {
  padding: 0.5em;
}
.interior-cost th,
.other-cost th {
  width: 8em;
}

.rent {
  color: #082497;
  font-weight: 700;
}

.equipment {
  grid-column: 3;
  grid-row: 2;
}
.equipment p {
  margin: 0;
}

.basic-info th {
  background-color: #FFF0D0;
}

.detail {
  margin: 0 auto;
  width: 100%;
}
.detail h2 {
  margin: 0;
}

.detail-item {
  border-collapse: collapse;
  width: 100%;
}
.detail-item th,
.detail-item td {
  padding: 2em 1em;
  border-bottom: 0.16em solid #707070;
}
.detail-item th {
  background-color: #FFF0D0;
}

.btn-area {
  text-align: center;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 3fr) 0.5fr minmax(0, 3fr) 0.5fr;
  grid-template-rows: auto auto auto auto;
}

.store-info {
  grid-column: 1;
  grid-row: 1;
}

.store-info-itm ul {
  padding: 0%;
  margin-left: 0.5em;
}
.store-info-itm li {
  margin: 0.5em;
}

.font-area {
  letter-spacing: 0.3em;
}

.fa-square {
  margin-right: 0.5em;
}

.icn {
  grid-column: 1;
  grid-row: 3;
  width: 80%;
  place-self: center;
}

.map {
  grid-column: 3/4;
  grid-row: 1/-1;
}
.map iframe {
  display: block;
  width: 100%;
}

.buttonicon-area {
  grid-column: 4;
  grid-row: 4;
}

footer {
  background-color: #FFF0D0;
  margin-top: 6.25em;
  display: flex;
  justify-content: space-around;
  gap: 5em;
  padding: 2em;
}
footer p,
footer h3 {
  margin: 0;
  padding: 0;
}

.address,
.tel {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.1em;
}
.address dd,
.tel dd {
  margin: 0%;
}
.address dt,
.tel dt {
  font-weight: 700;
}

.fot-item {
  display: flex;
  gap: 0 2em;
}

/* ///////////////////// */
/* メディアクエリスマホデザイン */
/* ///////////////////// */
@media screen and (max-width: 540px) {
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.25em;
  }
  .buttonicon {
    left: 14.5em;
  }
  .btn {
    margin: 2em 0 3em 0;
    padding: 1em;
  }
  .wrapper {
    margin-top: 3em;
  }
  .about-container {
    display: flex;
    flex-direction: column;
  }
  table {
    margin-bottom: 2em;
  }
  .interior-cost,
  .other-cost {
    width: 100%;
    margin: 0;
  }
  .interior-cost th,
  .interior-cost td,
  .other-cost th,
  .other-cost td {
    display: block;
    width: 100%;
    padding: 0.5em 0 0.5em 0.2em;
  }
  .interior-cost th,
  .other-cost th {
    text-align: left;
  }
  .detail {
    margin: 0%;
  }
  .detail h2 {
    margin: 1em 0;
  }
  .detail-item {
    width: 100%;
    text-align: left;
  }
  .detail-item th,
  .detail-item td {
    display: block;
    border: none;
    width: 100%;
    height: auto;
    padding: 0.5em 0 0.5em 0.2em;
  }
  .access {
    display: flex;
    flex-direction: column;
  }
  .map iframe {
    display: block;
    width: 100%;
  }
  .icn {
    width: 100%;
    margin-bottom: 3em;
  }
  .buttonicon-area {
    display: flex;
    justify-content: flex-end;
  }
  footer {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .co,
  .fot-item {
    flex-direction: column;
  }
}/*# sourceMappingURL=app.css.map */