/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
.u-box {
  padding: 30rem 40rem;
  border-radius: 10rem;
  background-color: #fff;
}
.u-box__list {
  display: grid;
}
.u-box__list > li {
  padding-left: 1em;
  text-indent: -1em;
  color: var(--font-color-main);
  font-weight: 600;
  font-size: 14rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.u-box__list > li::before {
  content: "・";
}
.u-box__list > li.txt {
  color: var(--font-color-base);
}
.u-box__list > li.txt::before {
  content: none;
}
.u-box__note {
  text-indent: 0;
  margin-top: 5rem;
  color: var(--font-color-base);
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.04em;
}
.u-box__txt {
  margin-top: 13rem;
  font-weight: 600;
  font-size: 14rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: right;
}
/* PC
----------------------------------*/
@media screen and (min-width: 768px) {
  .u-box__list {
    grid-template-columns: repeat(3, minmax(0, max-content));
    justify-content: space-between;
    grid-auto-flow: row dense;
    gap: 13rem 40rem;
  }
  .u-box__list > li:nth-child(-n + 4) {
    grid-column: 1;
  }
  .u-box__list > li:nth-child(n + 5):nth-child(-n + 8) {
    grid-column: 2;
  }
  .u-box__list > li:nth-child(n + 9) {
    grid-column: 3;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 767px) {
  .u-box {
    max-width: initial;
    padding: 30rem 20rem;
  }
  .u-box__list {
    grid-template-columns: 1fr;
    gap: 13rem;
  }
}


.u-sld {
  margin: 40rem -96rem 0;
}
.u-sld .slick-list {
  overflow: visible;
}
.u-sld__item {
  padding: 0 10rem;
}
.u-sld__img {
  border-radius: 6rem;
  overflow: hidden;
}
.u-sld__cap {
  margin-top: 10rem;
  font-size: 12rem;
  line-height: 1.42;
}
/* SP
----------------------------------*/
@media screen and (max-width: 767px) {
  .u-sld {
    margin: 30rem -10rem 0;
  }
}



.u-base {
  display: grid;
  grid-template-columns: 475rem auto;
  gap: 80rem;
  margin-top: 60rem;
}
.u-base__list * + dt {
  margin-top: 39rem;
}
.u-base__list dd {
  margin-top: 10rem;
  font-weight: 500;
  font-size: 14rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.u-base__map {
  position: relative;
  height: 270rem;
  margin-top: 20rem;
  overflow: hidden;
}
.u-base__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* SP
----------------------------------*/
@media screen and (max-width: 767px) {
  .u-base {
    grid-template-columns: 1fr;
    gap: 28rem;
    margin-top: 40rem;
  }
  .u-base__list * + dt {
    margin-top: 29rem;
  }
  .u-base__list dd {
    margin-top: 9rem;
  }
  .u-base__map {
    height: 180rem;
  }
}

