@charset "UTF-8";
/*color*/
/*add color*/
/*font-family*/
/*filler color*/
/*text-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*cubic*/
/* media query */
/* hover */
/* ------------------------------------------------------------
	lineHeightCrop（line-heightの不要な余白を打ち消す）のmixin。
------------------------------------------------------------ */
.p-hero {
  width: 100%;
}
.p-hero__img {
  width: 100%;
}
.p-hero__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-locnav {
  background: #4e4d3c;
  padding-top: 1px;
}
.p-locnav.mod--nobg {
  background: unset;
}
.p-locnav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-locnav__list {
    grid-template-columns: 1fr;
  }
}
.p-locnav__list .a {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding-block: 16px;
}
@media only screen and (max-width: 768px) {
  .p-locnav__list .a {
    font-size: 1.4rem;
  }
}
.p-locnav__list .a--a {
  background-color: #766456;
}
.p-locnav__list .a--a.active {
  background-color: #e6e6e6;
  color: #242424;
}
.p-locnav__list .a--b {
  background-color: #838276;
}
.p-locnav__list .a--b.active {
  background-color: #524e3f;
}
.p-locnav__list .a--c {
  background-color: #b29a8d;
}
.p-locnav__list .a--c.active {
  background-color: #e2d9d4;
  color: #242424;
}

.p-life {
  width: 100%;
  background-color: #e6e6e6;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .p-life {
    padding-block: 40px;
  }
}
.p-life__inner {
  text-align: center;
}
.p-life__ttl {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .p-life__ttl {
    font-size: 1.4rem;
  }
}
.p-life__lead {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-life__lead {
    font-size: 1.4rem;
  }
  .p-life__lead br {
    display: none;
  }
}
.p-life__img {
  max-width: 73rem;
  margin-inline: auto;
}
.p-life__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-life__cap {
  font-size: 1.2rem;
  color: #242424;
  max-width: 73rem;
  margin-inline: auto;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-life__cap {
    font-size: 1rem;
  }
}

.p-shop {
  width: 100%;
  background-color: #524e3f;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .p-shop {
    padding-block: 40px;
  }
}
.p-shop__ttl {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .p-shop__ttl {
    font-size: 2rem;
  }
}
.p-shop__lead {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-shop__lead {
    font-size: 1.4rem;
  }
  .p-shop__lead br {
    display: none;
  }
}
.p-shop__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-shop__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-shop__item--rev .p-shop__img {
  order: 2;
}
@media only screen and (max-width: 768px) {
  .p-shop__item--rev .p-shop__img {
    order: 0;
  }
}
.p-shop__item--rev .p-shop__body {
  order: 1;
}
.p-shop__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-shop__body {
  color: #fff;
}
.p-shop__sub {
  font-size: 1.8rem;
  margin-bottom: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .p-shop__sub {
    font-size: 1.4rem;
  }
}
.p-shop__name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .p-shop__name {
    font-size: 2rem;
  }
}
.p-shop__dist {
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .p-shop__dist {
    font-size: 1.2rem;
  }
}
.p-shop__txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .p-shop__txt {
    font-size: 1.4rem;
  }
}
.p-shop__gourmetGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .p-shop__gourmetGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.p-shop__gourmetItem {
  text-align: center;
}
.p-shop__cap {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 8px;
  line-height: 1.5;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-shop__cap {
    font-size: 1.2rem;
  }
}

.p-train {
  width: 100%;
  background-color: #f7f8f8;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .p-train {
    padding-block: 40px;
  }
}
.p-train__ttl {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .p-train__ttl {
    font-size: 1.4rem;
  }
}
.p-train__lead {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-train__lead {
    font-size: 1.4rem;
  }
  .p-train__lead br {
    display: none;
  }
}
.p-train__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-train__block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-train__block--rev .p-train__imgBox {
  order: 2;
}
@media only screen and (max-width: 768px) {
  .p-train__block--rev .p-train__imgBox {
    order: 0;
  }
}
.p-train__block--rev .p-train__body {
  order: 1;
}
.p-train__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-train__name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .p-train__name {
    font-size: 1.4rem;
  }
}
.p-train__txt {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-train__cap {
  font-size: 1.4rem;
  color: #242424;
  margin-top: 8px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-train__cap {
    font-size: 1.2rem;
  }
}
.p-train__cap sup {
  vertical-align: super;
  font-size: 10px;
}

.p-parkHero {
  width: 100%;
}
.p-parkHero__img {
  width: 100%;
}
.p-parkHero__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-kuriyama {
  width: 100%;
  background-color: #524e3f;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .p-kuriyama {
    padding-block: 40px;
  }
}
.p-kuriyama__inner {
  text-align: center;
}
.p-kuriyama__ttl {
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  .p-kuriyama__ttl {
    text-align: center;
  }
}
.p-kuriyama__ttl:not(:first-child) {
  margin-top: 56px;
}
.p-kuriyama__lead {
  color: #fff;
  margin-bottom: 40px;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  .p-kuriyama__lead {
    text-align: center;
  }
  .p-kuriyama__lead br {
    display: none;
  }
}
.p-kuriyama__gallery {
  display: grid;
  max-width: 1000px;
  margin-inline: auto;
}
.p-kuriyama__galleryRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-kuriyama__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-kuriyama__cap {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4rem;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-kuriyama__cap {
    font-size: 1rem;
  }
}
.p-kuriyama__etc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin-inline: auto;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .p-kuriyama__etc {
    grid-template-columns: 1fr;
  }
}

.p-koganei {
  width: 100%;
  background-color: #f7f8f8;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .p-koganei {
    padding-block: 40px;
  }
}
.p-koganei__inner {
  text-align: center;
}
.p-koganei__ttl {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.p-koganei__ttl:not(:first-child) {
  margin-top: 56px;
}
@media only screen and (max-width: 768px) {
  .p-koganei__ttl {
    font-size: 1.4rem;
  }
}
.p-koganei__lead {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-koganei__lead {
    font-size: 1.4rem;
  }
  .p-koganei__lead br {
    display: none;
  }
}
.p-koganei__gallery {
  display: grid;
}
.p-koganei__galleryRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-koganei__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-koganei__parkGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .p-koganei__parkGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.p-koganei__parkItem {
  text-align: center;
}
.p-koganei__cap {
  font-size: 1.4rem;
  color: #242424;
  margin-top: 8px;
  margin-bottom: 40px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-koganei__cap {
    font-size: 1.2rem;
  }
}

.p-childkHero {
  width: 100%;
}
.p-childkHero__img {
  width: 100%;
}
.p-childkHero__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-child {
  background: #e2d9d4;
}
.p-child__inner {
  padding-block: 80px;
}
.p-child__machi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-child__machi {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 2rem;
  }
}
.p-child__machiLeft {
  display: flex;
  flex-direction: column;
}
.p-child__mapImg {
  width: 100%;
  flex: 1;
}
.p-child__mapImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-child__mapCap {
  font-size: 1.2rem;
  color: #242424;
  text-align: right;
  margin-top: 8px;
}
.p-child__machiRight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-child__facilityLarge {
  width: 100%;
  margin-bottom: 1rem;
}
.p-child__facilityGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.p-child__facilityImg {
  width: 100%;
  overflow: hidden;
  background: #d8d9dc;
}
.p-child__facilityImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-child__facilityCap {
  font-size: 1.3rem;
  color: #242424;
  margin-top: 6px;
  text-align: right;
}
.p-child__facilityCap em {
  font-size: 1.3em;
  line-height: 1;
}
.p-child__trainInner {
  background: #fff;
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-child__trainInner {
    padding: 1rem;
  }
}
.p-child__trainCap {
  font-size: 1.3rem;
  text-align: right;
}
.p-child__trainImg {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
.p-child__trainImg img {
  width: 100%;
  height: 100%;
}
.p-child__health {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-child__health {
    margin-top: 40px;
  }
}
.p-child__healthGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 1080px) {
  .p-child__healthGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-child__healthGrid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 24px;
  }
}
.p-child__healthItem {
  border: 1px solid rgba(118, 100, 86, 0.4);
}
.p-child__healthBg {
  aspect-ratio: 299.0832/253.501;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1080px) {
  .p-child__healthBg {
    aspect-ratio: 1/1;
  }
}
@media only screen and (max-width: 768px) {
  .p-child__healthBg {
    aspect-ratio: unset;
  }
}
.p-child__healthBg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 53, 40, 0.65);
}
.p-child__healthBg::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-child__healthBg::after {
    inset: 5px;
  }
}
.p-child__healthBody {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-child__healthBody {
    padding: 20px 16px;
  }
}
.p-child__healthTtl {
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}
@media only screen and (max-width: 1080px) {
  .p-child__healthTtl {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-child__healthTtl {
    font-size: 1.6rem;
  }
}
.p-child__healthTxt {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-child__healthTxt {
    font-size: 1.2rem;
  }
}

.gmapWrap {
  position: relative;
}
.gmapWrap .gmapLoading {
  display: none;
  position: absolute;
  inset: 0;
  background: #f5f5f5;
  z-index: 10;
  align-items: center;
  justify-content: center;
}
.gmapWrap .gmapLoading::after {
  content: "";
  width: 4rem;
  height: 4rem;
  border: 3px solid #ddd;
  border-top-color: #b08255;
  border-radius: 50%;
  animation: gmapSpin 0.8s linear infinite;
}

@keyframes gmapSpin {
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=../../map/area/location.css.map */