@import url(./reset.css);
@import url(./variable-set.css);

/*-------------------------------------------*/

body{
  background-color: var(--color-bg);
  color: var(--color-basic-text);
  font-size: var(--font-size-md);
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
.content-block{
  margin-top: calc(var(--basic-gap)*5);
}
.block-title {
  color: var(--color-basic-text);
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}
.block-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin: 20px auto 0;
}
.content-text{
    line-height: var(--basic-line-height);
}

.laundry-wrap {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.laundry-wrap h2 {
  color: var(--color-basic-text);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 200;
  letter-spacing: 0.15em;
}
.laundry-wrap p {
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  font-weight: 300;
  color: var(--color-sub-text);
}
.laundry-hours {
  border: 1px solid #888;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.laundry-hours dt {
  font-weight: normal;
}
.laundry-hours dd {
  font-weight: bold;
  font-size: 1.2em;
}

.laundry-hours span {
  height: 1px;
  background: #888;
  width: 30px;
  margin: 8px 0;
}
.laundry-img {
  height: auto;
}
@media screen and (min-width:960px) {
  .laundry-img {
    height: 600px;
  }
  .laundry-img img {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
    object-position: center;
  }
}
.machine-card {
  color: var(--color-sub-text);
}
.machine-card-icon {
  position: relative;
  width: 280px;
  height: 280px;
  border: 1.5px solid #888;
  border-radius: 50%;
}
.machine-card-badge {
  position: absolute;
  top: 25px;
  right: 10px;
  background: #fff;
  color: #000;
  padding: 6px 10px;
  font-weight: bold;
  border-radius: 4px;
  transform: rotate(8deg);
  z-index: 1;
}
.equipment-wrap h3 {
  color: var(--color-basic-text);
  font-size: 1.2em;
}
.equipment-img img {
  border-radius: 10px;
}

.pricing-wrap h3 {
  color: var(--color-basic-text);
  font-size: 1.2rem;
  border-left: 3px solid #fff;
  padding-left: 15px;
  margin-bottom: 30px;
}
.pricing-wrap dl div {
  background-color: var(--color-sub-bg);
  border-radius: 5px;
  padding: 30px;
}
.pricing-wrap dl div dt span {
  display: block;
  margin-top: 10px;
  color: var(--color-sub-text);
  font-weight: normal;
}
.pricing-wrap dl div dd {
  font-size: 1.2em;
}

.laundry-location-address p {
  line-height: 1.5;
}
.laundry-location-address p span {
  font-size: .9em;
  color: var(--color-sub-text);
}
.laundry-location-googlemap iframe {
  border-radius: 10px;
  width: 100%;
}
.laundry-location-googlemap .googlemap-botton a {
  display: inline-block;
  padding: 20px 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: .05em;
  font-weight: bold;
  border-radius: 30px;
}

/* フッター */
.footer-copy{
  font-size: var(--font-size-sm);
  text-align: center;
  border-top: solid 1px var(--color-border);
}