:root {
  --color_base: #09576C;
  --color_body: #FFF9F6;
  --color_pink_01: #E95887;
  --color_pink_02: #ECA385;
  --color_red_01: #b45757;
  --color_greige_01: #E6CEC5;
  --color_orange_01: #E07D2E;
  --color_orange_02: #FF7B28;
  --color_orange_03: #FF9436;
  --color_orange_04: #FFA11F;
  --color_orange_05: #FF7F68;
  --color_yellow_01: #F4C334;
  --color_bluegreen_01: #B6D1CF;
  --headerFixedPadding: 0px;
}

/* ------------------------------------
// overwright
------------------------------------ */
#headerFixed .access {
  display: none;
}

#footer_fixed ul li.access a {
  background: #BBB;
  pointer-events: none;
}

/* ------------------------------------
// pagetitle
------------------------------------ */
.pagetitle img {
  width: clamp(14.6rem, 10.1vw, 14.6rem);
}

/* ------------------------------------
// #address
------------------------------------ */
#address {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #address {
    width: min(1200px, 100% - 3rem);
  }
}
#address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4.2vw, 6rem);
}
#address h2 {
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}
#address .nearby {
  margin-top: 5rem;
}
#address .nearby li {
  border: 1px solid var(--color_pink_01);
  border-radius: 8px;
  padding-bottom: 1rem 0.3sp;
  text-align: center;
  background: #FFF;
  padding: 1rem 1.5rem;
}
#address .nearby li + li {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #address {
    grid-template-columns: 1fr;
  }
  #address .map {
    width: 100%;
    aspect-ratio: 3/4;
    margin: 0 auto;
  }
}

/* ------------------------------------
// #byTrain
------------------------------------ */
#byTrain {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #byTrain {
    width: min(1200px, 100% - 3rem);
  }
}
#byTrain {
  margin-top: 10rem;
}
#byTrain h2 {
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  margin-bottom: 5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}
#byTrain .flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  padding-right: 6rem;
}
#byTrain .flow li .photo {
  border-radius: 15px;
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
}
#byTrain .flow li .photo::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: #FFF;
  filter: url(#doo-wap);
  z-index: 0;
}
#byTrain .flow li .photo > img {
  border-radius: 15px;
  position: relative;
}
#byTrain .flow li:not(:last-child) .photo::after {
  content: "";
  width: 6rem;
  aspect-ratio: 1;
  background: url(/lib/img/cmn/icon_alw_01.webp) no-repeat center/contain;
  display: block;
  position: absolute;
  left: calc(100% + 1rem);
  top: calc(50% - 3rem);
}
@media screen and (max-width: 1024px) {
  #byTrain .flow {
    display: grid;
    grid-template-columns: 1fr;
  }
  #byTrain .flow li {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 4rem;
  }
  #byTrain .flow li:not(:last-child) .photo::after {
    content: "";
    top: calc(100% + 1rem);
    left: calc(50% - 3rem);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  #byTrain .flow {
    max-width: 350px;
    margin: 0 auto;
  }
  #byTrain .flow li {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
  }
  #byTrain .flow li .photo {
    margin: 0 auto;
  }
  #byTrain .flow li:not(:last-child)::after {
    content: "";
    width: 6rem;
    aspect-ratio: 1;
    background: url(/lib/img/cmn/icon_alw_01.webp) no-repeat center/contain;
    display: block;
    position: absolute;
    top: calc(100% + 1rem);
    left: calc(50% - 3rem);
    transform: rotate(90deg);
  }
  #byTrain .flow li:not(:last-child) .photo::after {
    display: none;
  }
}

/* ------------------------------------
// #byCar
------------------------------------ */
#byCar {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #byCar {
    width: min(1200px, 100% - 3rem);
  }
}
#byCar {
  margin-top: 10rem;
}
#byCar h2 {
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  margin-bottom: 5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}
#byCar > p {
  text-align: center;
}
#byCar .photolist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  margin-top: 4rem;
}
#byCar .illmap {
  margin: 5rem 0;
  background: #FFF;
  padding: clamp(2rem, 3.5vw, 5rem);
  border-radius: 30px;
}
#byCar .illmap p {
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}
#byCar .illmap .map {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #byCar .photolist {
    max-width: 350px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #byCar .illmap p {
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}